Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/test/CodeGen/
H A Darm64_32.c17 int LongSize = sizeof(long); variable
/llvm-project-15.0.7/llvm/include/llvm/Transforms/Instrumentation/
H A DAddressSanitizerCommon.h51 void getAddressSanitizerParams(const Triple &TargetTriple, int LongSize,
/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp499 if (LongSize == 32) { in getShadowMapping()
594 auto Mapping = getShadowMapping(TargetTriple, LongSize, IsKasan); in getAddressSanitizerParams()
647 LongSize = M.getDataLayout().getPointerSizeInBits(); in AddressSanitizer()
648 IntptrTy = Type::getIntNTy(*C, LongSize); in AddressSanitizer()
735 int LongSize; member
788 int LongSize = M.getDataLayout().getPointerSizeInBits(); in ModuleAddressSanitizer() local
789 IntptrTy = Type::getIntNTy(*C, LongSize); in ModuleAddressSanitizer()
2414 int LongSize = M.getDataLayout().getPointerSizeInBits(); in GetAsanVersion() local
2419 Version += (LongSize == 32 && isAndroid); in GetAsanVersion()
2770 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 __anondc9a72430111::MemProfiler
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaExpr.cpp4084 unsigned LongSize = Context.getTargetInfo().getLongWidth(); in ActOnNumericConstant() local
4087 if (ResultVal.isIntN(LongSize)) { in ActOnNumericConstant()
4089 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) in ActOnNumericConstant()
4105 << (LongLongSize > LongSize ? /*will have type 'long long'*/ 0 in ActOnNumericConstant()
4109 Width = LongSize; in ActOnNumericConstant()