Home
last modified time | relevance | path

Searched refs:LongSize (Results 1 – 4 of 4) sorted by relevance

/openbsd/gnu/llvm/llvm/include/llvm/Transforms/Instrumentation/
H A DAddressSanitizerCommon.h51 void getAddressSanitizerParams(const Triple &TargetTriple, int LongSize,
/openbsd/gnu/llvm/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp509 if (LongSize == 32) { in getShadowMapping()
606 auto Mapping = getShadowMapping(TargetTriple, LongSize, IsKasan); in getAddressSanitizerParams()
659 LongSize = M.getDataLayout().getPointerSizeInBits(); in AddressSanitizer()
660 IntptrTy = Type::getIntNTy(*C, LongSize); in AddressSanitizer()
747 int LongSize; member
806 int LongSize = M.getDataLayout().getPointerSizeInBits(); in ModuleAddressSanitizer() local
807 IntptrTy = Type::getIntNTy(*C, LongSize); in ModuleAddressSanitizer()
2448 int LongSize = M.getDataLayout().getPointerSizeInBits(); in GetAsanVersion() local
2453 Version += (LongSize == 32 && isAndroid); in GetAsanVersion()
2822 if (LongSize != 32) return false; in LooksLikeCodeInBug11395()
[all …]
H A DMemProfiler.cpp168 LongSize = M.getDataLayout().getPointerSizeInBits(); in MemProfiler()
169 IntptrTy = Type::getIntNTy(*C, LongSize); in MemProfiler()
195 int LongSize; member in __anon4e56afe00111::MemProfiler
/openbsd/gnu/llvm/clang/lib/Sema/
H A DSemaExpr.cpp4078 unsigned LongSize = Context.getTargetInfo().getLongWidth(); in ActOnNumericConstant() local
4081 if (ResultVal.isIntN(LongSize)) { in ActOnNumericConstant()
4083 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) in ActOnNumericConstant()
4099 << (LongLongSize > LongSize ? /*will have type 'long long'*/ 0 in ActOnNumericConstant()
4103 Width = LongSize; in ActOnNumericConstant()