Searched refs:InsertionPt (Results 1 – 6 of 6) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | EntryExitInstrumenter.cpp | 26 BasicBlock::iterator InsertionPt, DebugLoc DL) { in insertCall() argument 27 Module &M = *InsertionPt->getParent()->getParent()->getParent(); in insertCall() 28 LLVMContext &C = InsertionPt->getParent()->getContext(); in insertCall() 49 {GV}, "", InsertionPt); in insertCall() 58 ConstantInt::get(Type::getInt32Ty(C), 0), "", InsertionPt); in insertCall() 64 CallInst *Call = CallInst::Create(Fn, RetAddr, "", InsertionPt); in insertCall() 73 CallInst *Call = CallInst::Create(Fn, "", InsertionPt); in insertCall() 88 InsertionPt); in insertCall() 93 CallInst::Create(Fn, ArrayRef<Value *>(Args), "", InsertionPt); in insertCall()
|
| H A D | Local.cpp | 1879 auto InsertionPt = BB->getFirstInsertionPt(); in ConvertDebugDeclareToDebugValue() local 1886 if (InsertionPt != BB->end()) { in ConvertDebugDeclareToDebugValue() 1888 InsertionPt); in ConvertDebugDeclareToDebugValue() 1950 auto InsertionPt = BB->getFirstInsertionPt(); in ConvertDebugDeclareToDebugValue() local 1957 if (InsertionPt != BB->end()) { in ConvertDebugDeclareToDebugValue() 1959 InsertionPt); in ConvertDebugDeclareToDebugValue() 2109 auto InsertionPt = Parent->getFirstInsertionPt(); in insertDbgVariableRecordsForPHIs() local 2110 assert(InsertionPt != Parent->end() && "Ill-formed basic block"); in insertDbgVariableRecordsForPHIs() 2112 Parent->insertDbgRecordBefore(NewDbgII, InsertionPt); in insertDbgVariableRecordsForPHIs() 2173 auto InsertionPt = Parent->getFirstInsertionPt(); in insertDebugValuesForPHIs() local [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMFixCortexA57AES1742098Pass.cpp | 94 MachineInstr *InsertionPt; member 333 NewLoc.InsertionPt = &*NewLoc.Block->begin(); in analyzeMF() 335 << *NewLoc.InsertionPt); in analyzeMF() 378 NewLoc.InsertionPt = &*DefIt; in analyzeMF() 400 << " before: " << *FixupLoc.InsertionPt); in insertAESFixup() 413 BuildMI(*FixupLoc.Block, FixupLoc.InsertionPt, DebugLoc(), in insertAESFixup()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86LoadValueInjectionLoadHardening.cpp | 729 MachineBasicBlock::iterator InsertionPt; // ...at this point in insertFences() local 733 InsertionPt = MBB->begin(); in insertFences() 737 InsertionPt = MI; in insertFences() 747 InsertionPt = MI->getNextNode() ? MI->getNextNode() : MBB->end(); in insertFences() 748 Prev = InsertionPt == MBB->end() in insertFences() 750 : InsertionPt->getPrevNode(); in insertFences() 753 if ((InsertionPt == MBB->end() || !isFence(&*InsertionPt)) && in insertFences() 755 BuildMI(*MBB, InsertionPt, DebugLoc(), TII->get(X86::LFENCE)); in insertFences()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SILowerI1Copies.cpp | 717 auto InsertionPt = MBB.getFirstTerminator(); in getSaluInsertionAtEnd() local 719 for (auto I = InsertionPt, E = MBB.end(); I != E; ++I) { in getSaluInsertionAtEnd() 727 return InsertionPt; in getSaluInsertionAtEnd() 729 while (InsertionPt != MBB.begin()) { in getSaluInsertionAtEnd() 730 InsertionPt--; in getSaluInsertionAtEnd() 733 instrDefsUsesSCC(*InsertionPt, DefSCC, UseSCC); in getSaluInsertionAtEnd() 735 return InsertionPt; in getSaluInsertionAtEnd()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | SeparateConstOffsetFromGEP.cpp | 249 ConstantOffsetExtractor(BasicBlock::iterator InsertionPt) in ConstantOffsetExtractor() argument 250 : IP(InsertionPt), DL(InsertionPt->getDataLayout()) {} in ConstantOffsetExtractor()
|