HomeSort by relevance Sort by last modified time
    Searched refs:getInstList (Results 1 - 25 of 48) sorted by null

1 2

  /external/llvm/examples/ModuleMaker/
ModuleMaker.cpp 53 BB->getInstList().push_back(Add);
56 BB->getInstList().push_back(ReturnInst::Create(Context, Add));
  /external/llvm/lib/Transforms/Utils/
UnifyFunctionExitNodes.cpp 73 BB->getInstList().pop_back(); // Remove the unreachable inst.
101 NewRetBlock->getInstList().push_back(PN);
117 BB->getInstList().pop_back(); // Remove the return insn
FlattenCFG.cpp 276 FirstCondBlock->getInstList().pop_back();
277 FirstCondBlock->getInstList()
278 .splice(FirstCondBlock->end(), CB->getInstList());
435 FirstEntryBlock->getInstList().pop_back();
436 FirstEntryBlock->getInstList()
437 .splice(FirstEntryBlock->end(), SecondEntryBlock->getInstList());
LoopUnroll.cpp 84 OnlyPred->getInstList().pop_back();
91 OnlyPred->getInstList().splice(OnlyPred->end(), BB->getInstList());
288 New->getInstList().erase(NewPHI);
335 Header->getInstList().erase(PN);
442 (*BB)->getInstList().erase(Inst);
446 (*BB)->getInstList().erase(Inst);
InlineFunction.cpp 204 BB->getInstList().pop_back();
220 Split->getInstList().pop_front();
663 Caller->getEntryBlock().getInstList().splice(InsertPoint,
664 FirstNewBlock->getInstList(),
754 OrigBB->getInstList().splice(TheCall, FirstNewBlock->getInstList(),
    [all...]
LowerSwitch.cpp 152 NewNode->getInstList().push_back(Comp);
268 CurBlock->getInstList().erase(SI);
304 CurBlock->getInstList().erase(SI);
BasicBlockUtils.cpp 57 BB->getInstList().pop_back();
155 PredBB->getInstList().pop_back();
162 PredBB->getInstList().splice(PredBB->end(), BB->getInstList());
236 ReplaceInstWithInst(From->getParent()->getInstList(), BI, To);
565 NewBB1->getInstList().insert(NewBB1->getFirstInsertionPt(), Clone1);
570 NewBB2->getInstList().insert(NewBB2->getFirstInsertionPt(), Clone2);
596 Pred->getInstList().push_back(NewRet);
609 Pred->getInstList().insert(NewRet, NewBC);
CloneFunction.cpp 52 NewBB->getInstList().push_back(NewInst);
290 NewBB->getInstList().push_back(NewInst);
341 NewBB->getInstList().push_back(NewInst);
558 I->getInstList().splice(I->end(), Dest->getInstList());
CodeExtractor.cpp 471 codeReplacer->getInstList().push_back(GEP);
473 codeReplacer->getInstList().push_back(SI);
480 codeReplacer->getInstList().push_back(call);
497 codeReplacer->getInstList().push_back(GEP);
504 codeReplacer->getInstList().push_back(load);
717 newFuncRoot->getInstList().push_back(BranchInst::Create(header));
Local.cpp 509 DestBB->getInstList().splice(DestBB->begin(), PredBB->getInstList());
795 Succ->getInstList().splice(Succ->getFirstNonPHI(), BB->getInstList());
    [all...]
SimplifyCFG.cpp     [all...]
BypassSlowDivision.cpp 156 MainBB->getInstList().back().eraseFromParent();
LoopUnrollRuntime.cpp 174 NewBB->getInstList().erase(NewPHI);
  /external/llvm/tools/bugpoint-passes/
TestPasses.cpp 64 CI->getParent()->getInstList().erase(CI);
  /external/llvm/include/llvm/IR/
BasicBlock.h 214 const InstListType &getInstList() const { return InstList; }
215 InstListType &getInstList() { return InstList; }
  /external/llvm/lib/IR/
Instruction.cpp 34 InsertBefore->getParent()->getInstList().insert(InsertBefore, this);
46 InsertAtEnd->getInstList().push_back(this);
69 getParent()->getInstList().remove(this);
73 getParent()->getInstList().erase(this);
79 InsertPos->getParent()->getInstList().insert(InsertPos, this);
85 InsertPos->getParent()->getInstList().insertAfter(InsertPos, this);
92 MovePos->getParent()->getInstList().splice(MovePos,getParent()->getInstList(),
BasicBlock.cpp 261 getInstList().pop_front(); // Remove the PHI node
310 New->getInstList().splice(New->end(), this->getInstList(), I, end());
IRBuilder.cpp 50 BB->getInstList().insert(InsertPt, BCI);
58 Builder->GetInsertBlock()->getInstList().insert(Builder->GetInsertPoint(),CI);
  /external/llvm/lib/Transforms/IPO/
PruneEH.cpp 199 BB->getInstList().pop_back();
219 BB->getInstList().pop_back();
  /external/llvm/examples/BrainF/
BrainF.cpp 89 BB->getInstList().push_back(cast<Instruction>(ptr_arr));
125 endbb->getInstList().push_back(CallInst::CreateFree(ptr_arr, endbb));
  /external/llvm/lib/CodeGen/
ShadowStackGC.cpp 169 CallBB->getInstList().pop_back();
170 NewBB->getInstList().remove(CI);
UnreachableBlockElim.cpp 82 BB->getInstList().pop_front();
  /external/llvm/lib/Transforms/Scalar/
LoopRotation.cpp 240 LastExit->getInstList().splice(BI, Latch->getInstList(), Latch->begin(), Jmp);
TailRecursionElimination.cpp 617 BB->getInstList().erase(Ret); // Remove return.
618 BB->getInstList().erase(CI); // Remove call.
SimplifyCFGPass.cpp 93 BB->getInstList().erase(BBI++);

Completed in 696 milliseconds

1 2