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

1 2 3

  /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 72 BB->getInstList().pop_back(); // Remove the unreachable inst.
100 NewRetBlock->getInstList().push_back(PN);
116 BB->getInstList().pop_back(); // Remove the return insn
FlattenCFG.cpp 277 FirstCondBlock->getInstList().pop_back();
278 FirstCondBlock->getInstList()
279 .splice(FirstCondBlock->end(), CB->getInstList());
434 FirstEntryBlock->getInstList().pop_back();
435 FirstEntryBlock->getInstList()
436 .splice(FirstEntryBlock->end(), SecondEntryBlock->getInstList());
LowerInvoke.cpp 75 BB->getInstList().erase(II);
AddDiscriminators.cpp 183 for (auto &I : B.getInstList()) {
221 for (auto &I : B.getInstList()) {
LoopUnroll.cpp 97 OnlyPred->getInstList().pop_back();
104 OnlyPred->getInstList().splice(OnlyPred->end(), BB->getInstList());
359 New->getInstList().erase(NewPHI);
404 Header->getInstList().erase(PN);
517 (*BB)->getInstList().erase(Inst);
521 (*BB)->getInstList().erase(Inst);
BasicBlockUtils.cpp 57 BB->getInstList().pop_back();
150 PredBB->getInstList().pop_back();
157 PredBB->getInstList().splice(PredBB->end(), BB->getInstList());
233 ReplaceInstWithInst(From->getParent()->getInstList(), BI, To);
622 NewBB1->getInstList().insert(NewBB1->getFirstInsertionPt(), Clone1);
627 NewBB2->getInstList().insert(NewBB2->getFirstInsertionPt(), Clone2);
653 Pred->getInstList().push_back(NewRet);
666 Pred->getInstList().insert(NewRet->getIterator(), NewBC);
    [all...]
InlineFunction.cpp 205 BB->getInstList().pop_back();
229 Split->getInstList().pop_front();
    [all...]
CodeExtractor.cpp 471 codeReplacer->getInstList().push_back(GEP);
473 codeReplacer->getInstList().push_back(SI);
480 codeReplacer->getInstList().push_back(call);
496 codeReplacer->getInstList().push_back(GEP);
503 codeReplacer->getInstList().push_back(load);
718 newFuncRoot->getInstList().push_back(BranchInst::Create(header));
CloneFunction.cpp 54 NewBB->getInstList().push_back(NewInst);
381 NewBB->getInstList().push_back(NewInst);
458 NewBB->getInstList().push_back(NewInst);
700 I->getInstList().splice(I->end(), Dest->getInstList());
    [all...]
Local.cpp 582 DestBB->getInstList().splice(DestBB->begin(), PredBB->getInstList());
    [all...]
BypassSlowDivision.cpp 157 MainBB->getInstList().back().eraseFromParent();
SimplifyCFG.cpp     [all...]
  /external/llvm/lib/IR/
Instruction.cpp 31 BB->getInstList().insert(InsertBefore->getIterator(), this);
41 InsertAtEnd->getInstList().push_back(this);
72 getParent()->getInstList().remove(getIterator());
76 return getParent()->getInstList().erase(getIterator());
82 InsertPos->getParent()->getInstList().insert(InsertPos->getIterator(), this);
88 InsertPos->getParent()->getInstList().insertAfter(InsertPos->getIterator(),
96 MovePos->getParent()->getInstList().splice(
97 MovePos->getIterator(), getParent()->getInstList(), getIterator());
BasicBlock.cpp 311 getInstList().pop_front(); // Remove the PHI node
373 New->getInstList().splice(New->end(), this->getInstList(), I, end());
IRBuilder.cpp 54 BB->getInstList().insert(InsertPt, BCI);
63 Builder->GetInsertBlock()->getInstList().insert(Builder->GetInsertPoint(),CI);
75 Builder->GetInsertBlock()->getInstList().insert(Builder->GetInsertPoint(),
  /external/llvm/tools/bugpoint-passes/
TestPasses.cpp 64 CI->getParent()->getInstList().erase(CI);
  /external/llvm/include/llvm/IR/
BasicBlock.h 240 const InstListType &getInstList() const { return InstList; }
241 InstListType &getInstList() { return InstList; }
  /external/llvm/lib/Transforms/IPO/
PruneEH.cpp 214 BB->getInstList().pop_back();
234 BB->getInstList().pop_back();
  /external/llvm/examples/BrainF/
BrainF.cpp 89 BB->getInstList().push_back(cast<Instruction>(ptr_arr));
123 endbb->getInstList().push_back(CallInst::CreateFree(ptr_arr, endbb));
  /external/llvm/lib/CodeGen/
ShadowStackGCLowering.cpp 170 CallBB->getInstList().pop_back();
171 NewBB->getInstList().remove(CI);
UnreachableBlockElim.cpp 79 BB->getInstList().pop_front();
  /frameworks/compile/libbcc/lib/Renderscript/
RSInvokeHelperPass.cpp 196 auto &InstList(BB.getInstList());
  /external/llvm/lib/Transforms/Scalar/
LoopRotation.cpp 509 LastExit->getInstList().splice(BI->getIterator(), Latch->getInstList(),
TailRecursionElimination.cpp 792 BB->getInstList().erase(Ret); // Remove return.
793 BB->getInstList().erase(CI); // Remove call.
    [all...]

Completed in 3277 milliseconds

1 2 3