Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/Instrumentation/
DAddressSanitizer.cpp360 static ShadowMapping getShadowMapping(Triple &TargetTriple, int LongSize, in getShadowMapping() argument
380 if (LongSize == 32) { in getShadowMapping()
528 int LongSize; member
1619 int LongSize = M.getDataLayout().getPointerSizeInBits(); in runOnModule() local
1620 IntptrTy = Type::getIntNTy(*C, LongSize); in runOnModule()
1622 Mapping = getShadowMapping(TargetTriple, LongSize, CompileKernel); in runOnModule()
1704 LongSize = M.getDataLayout().getPointerSizeInBits(); in doInitialization()
1705 IntptrTy = Type::getIntNTy(*C, LongSize); in doInitialization()
1715 Mapping = getShadowMapping(TargetTriple, LongSize, CompileKernel); in doInitialization()
1888 if (LongSize != 32) return false; in LooksLikeCodeInBug11395()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/
DAddressSanitizer.cpp483 static ShadowMapping getShadowMapping(Triple &TargetTriple, int LongSize, in getShadowMapping() argument
511 if (LongSize == 32) { in getShadowMapping()
701 int LongSize; member
2238 int LongSize = M.getDataLayout().getPointerSizeInBits(); in GetAsanVersion() local
2243 Version += (LongSize == 32 && isAndroid); in GetAsanVersion()
2249 int LongSize = M.getDataLayout().getPointerSizeInBits(); in runOnModule() local
2250 IntptrTy = Type::getIntNTy(*C, LongSize); in runOnModule()
2252 Mapping = getShadowMapping(TargetTriple, LongSize, CompileKernel); in runOnModule()
2372 LongSize = M.getDataLayout().getPointerSizeInBits(); in doInitialization()
2373 IntptrTy = Type::getIntNTy(*C, LongSize); in doInitialization()
[all …]
/external/clang/lib/Sema/
DSemaExpr.cpp3457 unsigned LongSize = Context.getTargetInfo().getLongWidth(); in ActOnNumericConstant() local
3460 if (ResultVal.isIntN(LongSize)) { in ActOnNumericConstant()
3462 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) in ActOnNumericConstant()
3478 << (LongLongSize > LongSize ? /*will have type 'long long'*/ 0 in ActOnNumericConstant()
3482 Width = LongSize; in ActOnNumericConstant()