Home
last modified time | relevance | path

Searched refs:CreatePointerCast (Results 1 – 17 of 17) sorted by relevance

/external/llvm/lib/Transforms/Instrumentation/
DThreadSanitizer.cpp384 IRB.CreatePointerCast(Addr, IRB.getInt8PtrTy()), in instrumentLoadOrStore()
385 IRB.CreatePointerCast(StoredValue, IRB.getInt8PtrTy())); in instrumentLoadOrStore()
390 IRB.CreateCall(OnAccessFunc, IRB.CreatePointerCast(Addr, IRB.getInt8PtrTy())); in instrumentLoadOrStore()
445 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy), in instrumentAtomic()
460 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy), in instrumentAtomic()
478 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy), in instrumentAtomic()
492 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy), in instrumentAtomic()
DMemorySanitizer.cpp620 IRB.CreateAnd(IRB.CreatePointerCast(Addr, MS.IntptrTy), in getShadowPtr()
631 IRB.CreateAnd(IRB.CreatePointerCast(Addr, MS.IntptrTy), in getOriginPtr()
646 Value *Base = IRB.CreatePointerCast(MS.ParamTLS, MS.IntptrTy); in getShadowPtrForArgument()
656 Value *Base = IRB.CreatePointerCast(MS.ParamOriginTLS, MS.IntptrTy); in getOriginPtrForArgument()
664 Value *Base = IRB.CreatePointerCast(MS.RetvalTLS, MS.IntptrTy); in getShadowPtrForRetval()
1148 A = IRB.CreatePointerCast(A, Sa->getType()); in handleEqualityComparison()
1149 B = IRB.CreatePointerCast(B, Sb->getType()); in handleEqualityComparison()
1221 A = IRB.CreatePointerCast(A, Sa->getType()); in handleRelationalComparisonExact()
1222 B = IRB.CreatePointerCast(B, Sb->getType()); in handleRelationalComparisonExact()
1332 IRB.CreatePointerCast(I.getArgOperand(0), IRB.getInt8PtrTy()), in visitMemMoveInst()
[all …]
DAddressSanitizer.cpp569 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy); in instrumentMemIntrinsicParam()
662 IRB.CreateAdd(IRB.CreatePointerCast(Addr, IntptrTy), in instrumentMop()
719 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy); in instrumentAddress()
987 IRB.CreatePointerCast(AllGlobals, IntptrTy), in runOnModule()
998 IRB.CreatePointerCast(AllGlobals, IntptrTy), in runOnModule()
1312 Value *OrigStackBase = IRB.CreatePointerCast(MyAlloca, IntptrTy); in poisonStack()
1366 Value *Description = IRB.CreatePointerCast(StackDescriptionGlobal, in poisonStack()
1404 Value *AddrArg = IRB.CreatePointerCast(V, IntptrTy); in poisonAlloca()
/external/clang/lib/CodeGen/
DCGCUDANV.cpp100 Args[0] = CGF.Builder.CreatePointerCast(ArgValues[I], VoidPtrTy); in EmitDeviceStubBody()
116 llvm::Value *Arg = CGF.Builder.CreatePointerCast(CGF.CurFn, CharPtrTy); in EmitDeviceStubBody()
DCGBlocks.cpp2211 llvm::Value *BC = Builder.CreatePointerCast(ByrefInfoAddr, DesTy); in emitByrefStructureInit()
/external/llvm/include/llvm/Support/
DNoFolder.h218 Instruction *CreatePointerCast(Constant *C, Type *DestTy) const { in CreatePointerCast() function
219 return CastInst::CreatePointerCast(C, DestTy); in CreatePointerCast()
DConstantFolder.h159 Constant *CreatePointerCast(Constant *C, Type *DestTy) const { in CreatePointerCast() function
DTargetFolder.h179 Constant *CreatePointerCast(Constant *C, Type *DestTy) const { in CreatePointerCast() function
/external/llvm/include/llvm/IR/
DInstrTypes.h463 static CastInst *CreatePointerCast(
471 static CastInst *CreatePointerCast(
DIRBuilder.h1123 Value *CreatePointerCast(Value *V, Type *DestTy,
1128 return Insert(Folder.CreatePointerCast(VC, DestTy), Name);
1129 return Insert(CastInst::CreatePointerCast(V, DestTy), Name);
/external/llvm/examples/ExceptionDemo/
DExceptionDemo.cpp895 llvm::Value *cast = builder.CreatePointerCast(stringVar, in generateStringPrint()
1267 builder.CreatePointerCast(unwindException, in createCatchWrappedInvokeFunction()
1300 llvm::Value *typeInfoThrown = builder.CreatePointerCast( in createCatchWrappedInvokeFunction()
/external/llvm/lib/Transforms/Scalar/
DMemCpyOptimizer.cpp696 : CastInst::CreatePointerCast(cpyDest, cpySrc->getType(), in performCallSlotOptzn()
702 CS.setArgument(i, CastInst::CreatePointerCast(Dest, in performCallSlotOptzn()
DLoopStrengthReduce.cpp2809 IVOper = Builder.CreatePointerCast(IVSrc, PostIncTy, "lsr.chain"); in GenerateIVChain()
/external/llvm/lib/IR/
DInstructions.cpp2378 CastInst *CastInst::CreatePointerCast(Value *S, Type *Ty, in CreatePointerCast() function in CastInst
2391 CastInst *CastInst::CreatePointerCast(Value *S, Type *Ty, in CreatePointerCast() function in CastInst
DCore.cpp2231 return wrap(unwrap(B)->CreatePointerCast(unwrap(Val), unwrap(DestTy), Name)); in LLVMBuildPointerCast()
/external/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp1237 Count = BypassBuilder.CreatePointerCast(Count, IdxTy, "ptrcnt.to.int"); in createEmptyLoop()
/external/llvm/bindings/ocaml/llvm/
Dllvm.mli2215 See the method [llvm::LLVMBuilder::CreatePointerCast]. *)