Home
last modified time | relevance | path

Searched refs:addInstructions (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/llvm/tools/llvm-exegesis/lib/
H A DSnippetRepetitor.cpp34 Entry.addInstructions(Instructions); in Repeat()
93 Loop.addInstructions(Instructions); in Repeat()
H A DAssembler.h51 void addInstructions(ArrayRef<MCInst> Insts, const DebugLoc &DL = DebugLoc());
H A DAssembler.cpp47 BBF.addInstructions(SetRegisterCode); in generateSnippetSetupCode()
118 void BasicBlockFiller::addInstructions(ArrayRef<MCInst> Insts, in addInstructions() function in llvm::exegesis::BasicBlockFiller
/llvm-project-15.0.7/bolt/lib/Passes/
H A DCMOVConversion.cpp252 BB->addInstructions(ConditionalSucc->begin(), ConditionalSucc->end()); in runOnFunction()
257 BB->addInstructions(UnconditionalSucc->begin(), UnconditionalSucc->end()); in runOnFunction()
H A DPatchEntries.cpp121 PatchFunction->addBasicBlock()->addInstructions(Seq); in runOnFunctions()
H A DIndirectCallPromotion.cpp780 IndCallBlock.addInstructions(ICPcode.front().second.begin(), in rewriteCall()
785 IndCallBlock.addInstructions(TailInsts.begin(), TailInsts.end()); in rewriteCall()
796 TBB->addInstructions(Insts.begin(), Insts.end()); in rewriteCall()
803 NewBBs.back()->addInstructions(MovedInst.begin(), MovedInst.end()); in rewriteCall()
H A DLongJmp.cpp42 StubBB.addInstructions(Seq.begin(), Seq.end()); in relaxStubToShortJmp()
50 StubBB.addInstructions(Seq.begin(), Seq.end()); in relaxStubToLongJmp()
H A DValidateInternalCalls.cpp121 NewBB->addInstructions(MovedInsts.begin(), MovedInsts.end()); in fixCFGForPIC()
H A DInstrumentation.cpp503 NewBB->addInstructions(Iter->begin(), Iter->end()); in instrumentFunction()
600 BBs.back()->addInstructions(Instrs.begin(), Instrs.end()); in createAuxiliaryFunctions()
H A DRetpolineInsertion.cpp123 BB1.addInstructions(Seq.begin(), Seq.end()); in createNewRetpoline()
H A DTailDuplication.cpp536 NewBB->addInstructions(CurBB->begin(), CurBB->end()); in duplicateBlocks()
H A DBinaryPasses.cpp1769 CurBB->addInstructions(CmpJCC); in runOnFunctions()
1783 OneByteMemcpyBB->addInstructions(OneByteMemcpy); in runOnFunctions()
/llvm-project-15.0.7/bolt/include/bolt/Core/
H A DBinaryBasicBlock.h485 template <typename Itr> void addInstructions(Itr Begin, Itr End) { in addInstructions() function
491 template <typename RangeTy> void addInstructions(RangeTy R) { in addInstructions() function
/llvm-project-15.0.7/bolt/lib/Core/
H A DBinaryBasicBlock.cpp622 NewBlock->addInstructions(II, end()); in splitAt()