Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/
H A DAddressSanitizerCommon.h57 void getAddressSanitizerParams(const Triple &TargetTriple, int LongSize,
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp478 static ShadowMapping getShadowMapping(const Triple &TargetTriple, int LongSize, in getShadowMapping() argument
513 if (LongSize == 32) { in getShadowMapping()
610 void getAddressSanitizerParams(const Triple &TargetTriple, int LongSize, in getAddressSanitizerParams() argument
613 auto Mapping = getShadowMapping(TargetTriple, LongSize, IsKasan); in getAddressSanitizerParams()
786 LongSize = M.getDataLayout().getPointerSizeInBits(); in AddressSanitizer()
787 IntptrTy = Type::getIntNTy(*C, LongSize); in AddressSanitizer()
792 Mapping = getShadowMapping(TargetTriple, LongSize, this->CompileKernel); in AddressSanitizer()
881 int LongSize; member
948 int LongSize = M.getDataLayout().getPointerSizeInBits(); in ModuleAddressSanitizer() local
949 IntptrTy = Type::getIntNTy(*C, LongSize); in ModuleAddressSanitizer()
[all …]
H A DMemProfInstrumentation.cpp185 LongSize = M.getDataLayout().getPointerSizeInBits(); in MemProfiler()
186 IntptrTy = Type::getIntNTy(*C, LongSize); in MemProfiler()
213 int LongSize; member in __anonef5aa81b0111::MemProfiler
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUSwLowerLDS.cpp1124 unsigned LongSize = in initAsanInfo() local
1129 llvm::getAddressSanitizerParams(AMDGPUTM.getTargetTriple(), LongSize, false, in initAsanInfo()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp4051 unsigned LongSize = Context.getTargetInfo().getLongWidth(); in ActOnNumericConstant() local
4054 if (ResultVal.isIntN(LongSize)) { in ActOnNumericConstant()
4056 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) in ActOnNumericConstant()
4072 << (LongLongSize > LongSize ? /*will have type 'long long'*/ 0 in ActOnNumericConstant()
4076 Width = LongSize; in ActOnNumericConstant()