HomeSort by relevance Sort by last modified time
    Searched refs:getInstList (Results 1 - 25 of 47) 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 277 FirstCondBlock->getInstList().pop_back();
278 FirstCondBlock->getInstList()
279 .splice(FirstCondBlock->end(), CB->getInstList());
435 FirstEntryBlock->getInstList().pop_back();
436 FirstEntryBlock->getInstList()
437 .splice(FirstEntryBlock->end(), SecondEntryBlock->getInstList());
LowerInvoke.cpp 75 BB->getInstList().erase(II);
LoopUnroll.cpp 90 OnlyPred->getInstList().pop_back();
97 OnlyPred->getInstList().splice(OnlyPred->end(), BB->getInstList());
311 New->getInstList().erase(NewPHI);
358 Header->getInstList().erase(PN);
469 (*BB)->getInstList().erase(Inst);
473 (*BB)->getInstList().erase(Inst);
InlineFunction.cpp 184 BB->getInstList().pop_back();
201 Split->getInstList().pop_front();
688 Caller->getEntryBlock().getInstList().splice(InsertPoint,
689 FirstNewBlock->getInstList(),
    [all...]
BasicBlockUtils.cpp 57 BB->getInstList().pop_back();
155 PredBB->getInstList().pop_back();
162 PredBB->getInstList().splice(PredBB->end(), BB->getInstList());
238 ReplaceInstWithInst(From->getParent()->getInstList(), BI, To);
589 NewBB1->getInstList().insert(NewBB1->getFirstInsertionPt(), Clone1);
594 NewBB2->getInstList().insert(NewBB2->getFirstInsertionPt(), Clone2);
620 Pred->getInstList().push_back(NewRet);
633 Pred->getInstList().insert(NewRet, NewBC);
    [all...]
CloneFunction.cpp 53 NewBB->getInstList().push_back(NewInst);
344 NewBB->getInstList().push_back(NewInst);
395 NewBB->getInstList().push_back(NewInst);
612 I->getInstList().splice(I->end(), Dest->getInstList());
LowerSwitch.cpp 217 NewNode->getInstList().push_back(Comp);
340 CurBlock->getInstList().erase(SI);
395 CurBlock->getInstList().erase(SI);
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);
716 newFuncRoot->getInstList().push_back(BranchInst::Create(header));
SimplifyCFG.cpp     [all...]
Local.cpp 510 DestBB->getInstList().splice(DestBB->begin(), PredBB->getInstList());
791 Succ->getInstList().splice(Succ->getFirstNonPHI(), BB->getInstList());
    [all...]
BypassSlowDivision.cpp 157 MainBB->getInstList().back().eraseFromParent();
LoopUnrollRuntime.cpp 175 NewBB->getInstList().erase(NewPHI);
  /external/llvm/tools/bugpoint-passes/
TestPasses.cpp 64 CI->getParent()->getInstList().erase(CI);
  /external/llvm/lib/IR/
Instruction.cpp 34 InsertBefore->getParent()->getInstList().insert(InsertBefore, this);
50 InsertAtEnd->getInstList().push_back(this);
73 getParent()->getInstList().remove(this);
77 getParent()->getInstList().erase(this);
83 InsertPos->getParent()->getInstList().insert(InsertPos, this);
89 InsertPos->getParent()->getInstList().insertAfter(InsertPos, this);
96 MovePos->getParent()->getInstList().splice(MovePos,getParent()->getInstList(),
BasicBlock.cpp 265 getInstList().pop_front(); // Remove the PHI node
314 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/include/llvm/IR/
BasicBlock.h 219 const InstListType &getInstList() const { return InstList; }
220 InstListType &getInstList() { return InstList; }
  /external/llvm/lib/Transforms/IPO/
PruneEH.cpp 200 BB->getInstList().pop_back();
220 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 170 CallBB->getInstList().pop_back();
171 NewBB->getInstList().remove(CI);
UnreachableBlockElim.cpp 80 BB->getInstList().pop_front();
  /external/llvm/lib/Transforms/Scalar/
LoopRotation.cpp 264 LastExit->getInstList().splice(BI, Latch->getInstList(), Latch->begin(), Jmp);
TailRecursionElimination.cpp 792 BB->getInstList().erase(Ret); // Remove return.
793 BB->getInstList().erase(CI); // Remove call.
    [all...]

Completed in 465 milliseconds

1 2