/external/llvm/lib/Transforms/Instrumentation/ |
D | ThreadSanitizer.cpp | 384 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()
|
D | MemorySanitizer.cpp | 620 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 …]
|
D | AddressSanitizer.cpp | 569 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/ |
D | CGCUDANV.cpp | 100 Args[0] = CGF.Builder.CreatePointerCast(ArgValues[I], VoidPtrTy); in EmitDeviceStubBody() 116 llvm::Value *Arg = CGF.Builder.CreatePointerCast(CGF.CurFn, CharPtrTy); in EmitDeviceStubBody()
|
D | CGBlocks.cpp | 2211 llvm::Value *BC = Builder.CreatePointerCast(ByrefInfoAddr, DesTy); in emitByrefStructureInit()
|
/external/llvm/include/llvm/Support/ |
D | NoFolder.h | 218 Instruction *CreatePointerCast(Constant *C, Type *DestTy) const { in CreatePointerCast() function 219 return CastInst::CreatePointerCast(C, DestTy); in CreatePointerCast()
|
D | ConstantFolder.h | 159 Constant *CreatePointerCast(Constant *C, Type *DestTy) const { in CreatePointerCast() function
|
D | TargetFolder.h | 179 Constant *CreatePointerCast(Constant *C, Type *DestTy) const { in CreatePointerCast() function
|
/external/llvm/include/llvm/IR/ |
D | InstrTypes.h | 463 static CastInst *CreatePointerCast( 471 static CastInst *CreatePointerCast(
|
D | IRBuilder.h | 1123 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/ |
D | ExceptionDemo.cpp | 895 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/ |
D | MemCpyOptimizer.cpp | 696 : CastInst::CreatePointerCast(cpyDest, cpySrc->getType(), in performCallSlotOptzn() 702 CS.setArgument(i, CastInst::CreatePointerCast(Dest, in performCallSlotOptzn()
|
D | LoopStrengthReduce.cpp | 2809 IVOper = Builder.CreatePointerCast(IVSrc, PostIncTy, "lsr.chain"); in GenerateIVChain()
|
/external/llvm/lib/IR/ |
D | Instructions.cpp | 2378 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
|
D | Core.cpp | 2231 return wrap(unwrap(B)->CreatePointerCast(unwrap(Val), unwrap(DestTy), Name)); in LLVMBuildPointerCast()
|
/external/llvm/lib/Transforms/Vectorize/ |
D | LoopVectorize.cpp | 1237 Count = BypassBuilder.CreatePointerCast(Count, IdxTy, "ptrcnt.to.int"); in createEmptyLoop()
|
/external/llvm/bindings/ocaml/llvm/ |
D | llvm.mli | 2215 See the method [llvm::LLVMBuilder::CreatePointerCast]. *)
|