Searched refs:InsertionPt (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DEntryExitInstrumenter.cpp23 Instruction *InsertionPt, DebugLoc DL) {
24 Module &M = *InsertionPt->getParent()->getParent()->getParent();
25 LLVMContext &C = InsertionPt->getParent()->getContext();
36 CallInst *Call = CallInst::Create(Fn, "", InsertionPt);
50 InsertionPt);
57 CallInst::Create(Fn, ArrayRef<Value *>(Args), "", InsertionPt);
22 insertCall(Function &CurFn, StringRef Func, Instruction *InsertionPt, DebugLoc DL) argument
H A DLocal.cpp1377 auto InsertionPt = BB->getFirstInsertionPt();
1384 if (InsertionPt != BB->end())
1385 Builder.insertDbgValueIntrinsic(APN, DIVar, DIExpr, NewLoc, &*InsertionPt);
1508 auto InsertionPt = Parent->getFirstInsertionPt();
1509 assert(InsertionPt != Parent->end() && "Ill-formed basic block");
1510 NewDbgII->insertBefore(&*InsertionPt);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86LoadValueInjectionLoadHardening.cpp742 MachineBasicBlock::iterator InsertionPt; // ...at this point local
746 InsertionPt = MBB->begin();
750 InsertionPt = MI;
760 InsertionPt = MI->getNextNode() ? MI->getNextNode() : MBB->end();
761 Prev = InsertionPt == MBB->end()
763 : InsertionPt->getPrevNode();
766 if ((InsertionPt == MBB->end() || !isFence(&*InsertionPt)) &&
768 BuildMI(*MBB, InsertionPt, DebugLoc(), TII->get(X86::LFENCE));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSILowerI1Copies.cpp794 auto InsertionPt = MBB.getFirstTerminator();
796 for (auto I = InsertionPt, E = MBB.end(); I != E; ++I) {
804 return InsertionPt;
806 while (InsertionPt != MBB.begin()) {
807 InsertionPt--;
810 instrDefsUsesSCC(*InsertionPt, DefSCC, UseSCC);
812 return InsertionPt;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DConstantHoisting.cpp750 Instruction *InsertionPt = findMatInsertPt(ConstUser.Inst, local
756 Base = new BitCastInst(Base, Int8PtrTy, "base_bitcast", InsertionPt);
758 Offset, "mat_gep", InsertionPt);
759 Mat = new BitCastInst(Mat, Ty, "mat_bitcast", InsertionPt);
763 "const_mat", InsertionPt);
H A DSeparateConstOffsetFromGEP.cpp247 ConstantOffsetExtractor(Instruction *InsertionPt, const DominatorTree *DT) argument
248 : IP(InsertionPt), DL(InsertionPt->getModule()->getDataLayout()), DT(DT) {

Completed in 108 milliseconds