Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/
H A DAddressSanitizerCommon.h57 void getAddressSanitizerParams(const Triple &TargetTriple, int LongSize,
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp511 if (LongSize == 32) { in getShadowMapping()
608 auto Mapping = getShadowMapping(TargetTriple, LongSize, IsKasan); in getAddressSanitizerParams()
670 LongSize = M.getDataLayout().getPointerSizeInBits(); in AddressSanitizer()
671 IntptrTy = Type::getIntNTy(*C, LongSize); in AddressSanitizer()
760 int LongSize; member
826 int LongSize = M.getDataLayout().getPointerSizeInBits(); in ModuleAddressSanitizer() local
827 IntptrTy = Type::getIntNTy(*C, LongSize); in ModuleAddressSanitizer()
2627 int LongSize = M.getDataLayout().getPointerSizeInBits(); in GetAsanVersion() local
2632 Version += (LongSize == 32 && isAndroid); in GetAsanVersion()
2998 if (LongSize != 32) return false; in LooksLikeCodeInBug11395()
[all …]
H A DMemProfiler.cpp183 LongSize = M.getDataLayout().getPointerSizeInBits(); in MemProfiler()
184 IntptrTy = Type::getIntNTy(*C, LongSize); in MemProfiler()
211 int LongSize; member in __anon8af1de490111::MemProfiler
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp4255 unsigned LongSize = Context.getTargetInfo().getLongWidth(); in ActOnNumericConstant() local
4258 if (ResultVal.isIntN(LongSize)) { in ActOnNumericConstant()
4260 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) in ActOnNumericConstant()
4276 << (LongLongSize > LongSize ? /*will have type 'long long'*/ 0 in ActOnNumericConstant()
4280 Width = LongSize; in ActOnNumericConstant()