Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/Instrumentation/
DSanitizerCoverage.cpp151 Type *Int32PtrTy = PointerType::getUnqual(IRB.getInt32Ty()); in runOnModule() local
161 M.getOrInsertFunction(kSanCovName, VoidTy, Int32PtrTy, nullptr)); in runOnModule()
163 M.getOrInsertFunction(kSanCovWithCheckName, VoidTy, Int32PtrTy, nullptr)); in runOnModule()
172 kSanCovModuleInitName, Type::getVoidTy(*C), Int32PtrTy, IntptrTy, in runOnModule()
182 M.getOrInsertFunction(kSanCovTraceEnter, VoidTy, Int32PtrTy, nullptr)); in runOnModule()
184 M.getOrInsertFunction(kSanCovTraceBB, VoidTy, Int32PtrTy, nullptr)); in runOnModule()
215 IRB.CreatePointerCast(RealGuardArray, Int32PtrTy)); in runOnModule()
243 SanCovModuleInit, IRB.CreatePointerCast(RealGuardArray, Int32PtrTy), in runOnModule()
370 Type *Int32PtrTy = PointerType::getUnqual(IRB.getInt32Ty()); in InjectCoverageAtBlock() local
371 GuardP = IRB.CreateIntToPtr(GuardP, Int32PtrTy); in InjectCoverageAtBlock()
DAddressSanitizer.cpp598 PointerType *Int32PtrTy = PointerType::getUnqual(IRBRet.getInt32Ty()); in unpoisonDynamicAlloca() local
603 Zero, IRBRet.CreateIntToPtr(AllocaCall.LeftRzAddr, Int32PtrTy)); in unpoisonDynamicAlloca()
605 IRBRet.CreateIntToPtr(PartialRzAddr, Int32PtrTy)); in unpoisonDynamicAlloca()
607 Zero, IRBRet.CreateIntToPtr(AllocaCall.RightRzAddr, Int32PtrTy)); in unpoisonDynamicAlloca()
2019 PointerType *Int32PtrTy = PointerType::getUnqual(IRB.getInt32Ty()); in handleDynamicAllocaCall() local
2071 IRB.CreateIntToPtr(AllocaCall.LeftRzAddr, Int32PtrTy)); in handleDynamicAllocaCall()
2081 IRB.CreateIntToPtr(PartialRzShadowAddr, Int32PtrTy)); in handleDynamicAllocaCall()
2091 IRB.CreateIntToPtr(AllocaCall.RightRzAddr, Int32PtrTy)); in handleDynamicAllocaCall()
/external/llvm/unittests/IR/
DInstructionsTest.cpp190 Type *Int32PtrTy = PointerType::get(Int32Ty, 0); in TEST() local
202 Type *V2Int32PtrTy = VectorType::get(Int32PtrTy, 2); in TEST()
203 Type *V4Int32PtrTy = VectorType::get(Int32PtrTy, 4); in TEST()
225 EXPECT_FALSE(CastInst::isBitCastable(Int32PtrTy, Int32PtrAS1Ty)); in TEST()
226 EXPECT_FALSE(CastInst::isBitCastable(Int32PtrAS1Ty, Int32PtrTy)); in TEST()
239 EXPECT_FALSE(CastInst::isBitCastable(Int32PtrTy, V2Int32PtrTy)); in TEST()
240 EXPECT_FALSE(CastInst::isBitCastable(V2Int32PtrTy, Int32PtrTy)); in TEST()
242 EXPECT_TRUE(CastInst::isBitCastable(Int32PtrTy, Int64PtrTy)); in TEST()
DConstantsTest.cpp129 Type *Int32PtrTy = Type::getInt32PtrTy(C); in TEST() local
132 VectorType *Int32PtrVecTy = VectorType::get(Int32PtrTy, 4); in TEST()
141 EXPECT_EQ(Constant::getNullValue(Int32PtrTy), in TEST()
143 Constant::getNullValue(Int8PtrTy), Int32PtrTy)); in TEST()
/external/llvm/lib/Transforms/IPO/
DLowerBitSets.cpp199 Type *Int32PtrTy; member
251 Int32PtrTy = PointerType::getUnqual(Int32Ty); in doInitialization()