HomeSort by relevance Sort by last modified time
    Searched refs:getInstList (Results 1 - 25 of 45) 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
LoopUnroll.cpp 84 OnlyPred->getInstList().pop_back();
91 OnlyPred->getInstList().splice(OnlyPred->end(), BB->getInstList());
284 New->getInstList().erase(NewPHI);
331 Header->getInstList().erase(PN);
436 (*BB)->getInstList().erase(Inst);
440 (*BB)->getInstList().erase(Inst);
BasicBlockUtils.cpp 56 BB->getInstList().pop_back();
154 PredBB->getInstList().pop_back();
161 PredBB->getInstList().splice(PredBB->end(), BB->getInstList());
235 ReplaceInstWithInst(From->getParent()->getInstList(), BI, To);
580 NewBB1->getInstList().insert(NewBB1->getFirstInsertionPt(), Clone1);
585 NewBB2->getInstList().insert(NewBB2->getFirstInsertionPt(), Clone2);
657 Pred->getInstList().push_back(NewRet);
InlineFunction.cpp 191 BB->getInstList().pop_back();
207 Split->getInstList().pop_front();
653 Caller->getEntryBlock().getInstList().splice(InsertPoint,
654 FirstNewBlock->getInstList(),
725 OrigBB->getInstList().splice(TheCall, FirstNewBlock->getInstList(),
    [all...]
LowerSwitch.cpp 164 NewNode->getInstList().push_back(Comp);
286 CurBlock->getInstList().erase(SI);
322 CurBlock->getInstList().erase(SI);
CloneFunction.cpp 52 NewBB->getInstList().push_back(NewInst);
287 NewBB->getInstList().push_back(NewInst);
338 NewBB->getInstList().push_back(NewInst);
555 I->getInstList().splice(I->end(), Dest->getInstList());
CodeExtractor.cpp 424 codeReplacer->getInstList().push_back(GEP);
426 codeReplacer->getInstList().push_back(SI);
433 codeReplacer->getInstList().push_back(call);
450 codeReplacer->getInstList().push_back(GEP);
457 codeReplacer->getInstList().push_back(load);
701 newFuncRoot->getInstList().push_back(BranchInst::Create(header));
Local.cpp 463 DestBB->getInstList().splice(DestBB->begin(), PredBB->getInstList());
625 Succ->getInstList().splice(Succ->getFirstNonPHI(), BB->getInstList());
    [all...]
LoopUnrollRuntime.cpp 174 NewBB->getInstList().erase(NewPHI);
SimplifyCFG.cpp     [all...]
  /external/llvm/tools/bugpoint-passes/
TestPasses.cpp 64 CI->getParent()->getInstList().erase(CI);
  /external/llvm/lib/VMCore/
Instruction.cpp 33 InsertBefore->getParent()->getInstList().insert(InsertBefore, this);
45 InsertAtEnd->getInstList().push_back(this);
68 getParent()->getInstList().remove(this);
72 getParent()->getInstList().erase(this);
78 InsertPos->getParent()->getInstList().insert(InsertPos, this);
84 InsertPos->getParent()->getInstList().insertAfter(InsertPos, this);
91 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/include/llvm/
BasicBlock.h 201 /// getInstList() - Return the underlying instruction list container. You
204 const InstListType &getInstList() const { return InstList; }
205 InstListType &getInstList() { return InstList; }
  /external/llvm/lib/Transforms/IPO/
PruneEH.cpp 197 BB->getInstList().pop_back();
217 BB->getInstList().pop_back();
  /external/llvm/lib/Transforms/Scalar/
SimplifyCFGPass.cpp 86 BB->getInstList().erase(BBI++);
106 BB->getInstList().erase(II);
LoopRotation.cpp 233 LastExit->getInstList().splice(BI, Latch->getInstList(), Latch->begin(), Jmp);
TailRecursionElimination.cpp 580 BB->getInstList().erase(Ret); // Remove return.
581 BB->getInstList().erase(CI); // Remove call.
  /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/clang/lib/CodeGen/
CGCleanup.cpp 423 Pred->getInstList().splice(Pred->end(), Entry->getInstList());
766 NormalExit->getInstList().push_back(InstsToAppend[I]);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombine.h 239 BB->getInstList().insert(&Old, New); // Insert inst

Completed in 408 milliseconds

1 2