Searched refs:InsertionPt (Results 1 – 5 of 5) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | EntryExitInstrumenter.cpp | 22 Instruction *InsertionPt, DebugLoc DL) { in insertCall() argument 23 Module &M = *InsertionPt->getParent()->getParent()->getParent(); in insertCall() 24 LLVMContext &C = InsertionPt->getParent()->getContext(); in insertCall() 35 CallInst *Call = CallInst::Create(Fn, "", InsertionPt); in insertCall() 49 InsertionPt); in insertCall() 56 CallInst::Create(Fn, ArrayRef<Value *>(Args), "", InsertionPt); in insertCall()
|
D | Local.cpp | 1367 auto InsertionPt = BB->getFirstInsertionPt(); in ConvertDebugDeclareToDebugValue() local 1374 if (InsertionPt != BB->end()) in ConvertDebugDeclareToDebugValue() 1375 Builder.insertDbgValueIntrinsic(APN, DIVar, DIExpr, NewLoc, &*InsertionPt); in ConvertDebugDeclareToDebugValue() 1491 auto InsertionPt = Parent->getFirstInsertionPt(); in insertDebugValuesForPHIs() local 1492 assert(InsertionPt != Parent->end() && "Ill-formed basic block"); in insertDebugValuesForPHIs() 1493 NewDbgII->insertBefore(&*InsertionPt); in insertDebugValuesForPHIs()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | SILowerI1Copies.cpp | 789 auto InsertionPt = MBB.getFirstTerminator(); in getSaluInsertionAtEnd() local 791 for (auto I = InsertionPt, E = MBB.end(); I != E; ++I) { in getSaluInsertionAtEnd() 799 return InsertionPt; in getSaluInsertionAtEnd() 801 while (InsertionPt != MBB.begin()) { in getSaluInsertionAtEnd() 802 InsertionPt--; in getSaluInsertionAtEnd() 805 instrDefsUsesSCC(*InsertionPt, DefSCC, UseSCC); in getSaluInsertionAtEnd() 807 return InsertionPt; in getSaluInsertionAtEnd()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | ConstantHoisting.cpp | 746 Instruction *InsertionPt = findMatInsertPt(ConstUser.Inst, in emitBaseConstants() local 752 Base = new BitCastInst(Base, Int8PtrTy, "base_bitcast", InsertionPt); in emitBaseConstants() 754 Offset, "mat_gep", InsertionPt); in emitBaseConstants() 755 Mat = new BitCastInst(Mat, Ty, "mat_bitcast", InsertionPt); in emitBaseConstants() 759 "const_mat", InsertionPt); in emitBaseConstants()
|
D | SeparateConstOffsetFromGEP.cpp | 247 ConstantOffsetExtractor(Instruction *InsertionPt, const DominatorTree *DT) in ConstantOffsetExtractor() argument 248 : IP(InsertionPt), DL(InsertionPt->getModule()->getDataLayout()), DT(DT) { in ConstantOffsetExtractor()
|