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

1 2

  /external/llvm/lib/IR/
BasicBlock.cpp 59 NewParent->getBasicBlockList().insert(InsertBefore, this);
61 NewParent->getBasicBlockList().push_back(this);
94 getParent()->getBasicBlockList().remove(this);
98 return getParent()->getBasicBlockList().erase(this);
104 MovePos->getParent()->getBasicBlockList().splice(MovePos,
105 getParent()->getBasicBlockList(), this);
112 MovePos->getParent()->getBasicBlockList().splice(++I,
113 getParent()->getBasicBlockList(), this);
  /external/llvm/include/llvm/IR/
InstIterator.h 58 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor
66 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor
Function.h 380 const BasicBlockListType &getBasicBlockList() const { return BasicBlocks; }
381 BasicBlockListType &getBasicBlockList() { return BasicBlocks; }
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 282 F->getBasicBlockList().insert(++FI, NewNode);
302 F->getBasicBlockList().insert(++FI, NewLeaf);
497 F->getBasicBlockList().insert(Default, NewDefault);
LoopUnrollRuntime.cpp 401 F->getBasicBlockList().splice(PEnd, F->getBasicBlockList(), NewBlocks[0],
BreakCriticalEdges.cpp 161 F.getBasicBlockList().insert(++FBBI, NewBB);
InlineFunction.cpp     [all...]
CodeExtractor.cpp 353 newFunction->getBasicBlockList().push_back(newRootNode);
673 Function::BasicBlockListType &oldBlocks = oldFunc->getBasicBlockList();
674 Function::BasicBlockListType &newBlocks = newFunction->getBasicBlockList();
LoopSimplify.cpp 399 F->getBasicBlockList().splice(InsertPos, F->getBasicBlockList(), BEBlock);
    [all...]
LoopUnroll.cpp 318 Header->getParent()->getBasicBlockList().push_back(New);
  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 290 NF->getBasicBlockList().splice(NF->begin(), Fn.getBasicBlockList());
    [all...]
ArgumentPromotion.cpp     [all...]
  /frameworks/compile/libbcc/lib/Renderscript/
RSInvokeHelperPass.cpp 194 auto &BBList(F.getBasicBlockList());
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 602 TheFunction->getBasicBlockList().push_back(ElseBB);
614 TheFunction->getBasicBlockList().push_back(MergeBB);
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 710 TheFunction->getBasicBlockList().push_back(ElseBB);
722 TheFunction->getBasicBlockList().push_back(MergeBB);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 815 TheFunction->getBasicBlockList().push_back(ElseBB);
827 TheFunction->getBasicBlockList().push_back(MergeBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 1014 TheFunction->getBasicBlockList().push_back(ElseBB);
1026 TheFunction->getBasicBlockList().push_back(MergeBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 768 TheFunction->getBasicBlockList().push_back(ElseBB);
779 TheFunction->getBasicBlockList().push_back(MergeBB);
    [all...]
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 990 TheFunction->getBasicBlockList().push_back(ElseBB);
1001 TheFunction->getBasicBlockList().push_back(MergeBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 750 TheFunction->getBasicBlockList().push_back(ElseBB);
761 TheFunction->getBasicBlockList().push_back(MergeBB);
    [all...]
toy.cpp 1030 TheFunction->getBasicBlockList().push_back(ElseBB);
1041 TheFunction->getBasicBlockList().push_back(MergeBB);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 833 F->getBasicBlockList().splice(NewPreheader, F->getBasicBlockList()
    [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp 353 CurFn->getBasicBlockList().insertAfter(CurBB, BB);
355 CurFn->getBasicBlockList().push_back(BB);
380 CurFn->getBasicBlockList().insertAfter(insn->getParent(), block);
387 CurFn->getBasicBlockList().push_back(block);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]

Completed in 1726 milliseconds

1 2