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

  /external/llvm/lib/VMCore/
BasicBlock.cpp 52 NewParent->getBasicBlockList().insert(InsertBefore, this);
54 NewParent->getBasicBlockList().push_back(this);
97 getParent()->getBasicBlockList().remove(this);
101 getParent()->getBasicBlockList().erase(this);
107 MovePos->getParent()->getBasicBlockList().splice(MovePos,
108 getParent()->getBasicBlockList(), this);
115 MovePos->getParent()->getBasicBlockList().splice(++I,
116 getParent()->getBasicBlockList(), this);
  /external/llvm/include/llvm/Support/
InstIterator.h 59 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor
67 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor
  /external/llvm/lib/Transforms/Scalar/
BasicBlockPlacement.cpp 113 Function::BasicBlockListType &Blocks = BB->getParent()->getBasicBlockList();
SimplifyCFGPass.cpp 201 I = F.getBasicBlockList().erase(I);
LoopUnswitch.cpp 826 F->getBasicBlockList().splice(NewPreheader, F->getBasicBlockList(),
    [all...]
SCCP.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 160 F->getBasicBlockList().insert(++FI, NewNode);
182 F->getBasicBlockList().insert(++FI, NewLeaf);
293 F->getBasicBlockList().insert(Default, NewDefault);
LoopUnrollRuntime.cpp 325 F->getBasicBlockList().splice(PEnd, F->getBasicBlockList(),
InlineFunction.cpp 728 Caller->getBasicBlockList().pop_back();
792 Caller->getBasicBlockList().splice(AfterCallBB, Caller->getBasicBlockList(),
    [all...]
LoopSimplify.cpp 682 F->getBasicBlockList().splice(InsertPos, F->getBasicBlockList(), BEBlock);
BreakCriticalEdges.cpp 197 F.getBasicBlockList().insert(++FBBI, NewBB);
CodeExtractor.cpp 305 newFunction->getBasicBlockList().push_back(newRootNode);
628 Function::BasicBlockListType &oldBlocks = oldFunc->getBasicBlockList();
629 Function::BasicBlockListType &newBlocks = newFunction->getBasicBlockList();
LoopUnroll.cpp 272 Header->getParent()->getBasicBlockList().push_back(New);
CloneFunction.cpp 403 NewFunc->getBasicBlockList().push_back(NewBB);
  /external/llvm/include/llvm/
Function.h 331 const BasicBlockListType &getBasicBlockList() const { return BasicBlocks; }
332 BasicBlockListType &getBasicBlockList() { return BasicBlocks; }
  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 274 NF->getBasicBlockList().splice(NF->begin(), Fn.getBasicBlockList());
    [all...]
ArgumentPromotion.cpp 771 NF->getBasicBlockList().splice(NF->begin(), F->getBasicBlockList());
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 540 TheFunction->getBasicBlockList().push_back(ElseBB);
551 TheFunction->getBasicBlockList().push_back(MergeBB);
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 644 TheFunction->getBasicBlockList().push_back(ElseBB);
655 TheFunction->getBasicBlockList().push_back(MergeBB);
  /external/clang/lib/CodeGen/
CGStmt.cpp 258 CurFn->getBasicBlockList().insertAfter(CurBB, BB);
260 CurFn->getBasicBlockList().push_back(BB);
286 CurFn->getBasicBlockList().insertAfter(insn->getParent(), block);
293 CurFn->getBasicBlockList().push_back(block);
863 CurFn->getBasicBlockList().push_back(CaseRangeBlock);
    [all...]
CodeGenFunction.cpp 151 return CGF.CurFn->getBasicBlockList().push_back(BB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 740 TheFunction->getBasicBlockList().push_back(ElseBB);
751 TheFunction->getBasicBlockList().push_back(MergeBB);
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.mli     [all...]

Completed in 381 milliseconds