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

1 2

  /external/llvm/lib/IR/
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 217 I = F.getBasicBlockList().erase(I);
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 148 F->getBasicBlockList().insert(++FI, NewNode);
170 F->getBasicBlockList().insert(++FI, NewLeaf);
275 F->getBasicBlockList().insert(Default, NewDefault);
LoopUnrollRuntime.cpp 327 F->getBasicBlockList().splice(PEnd, F->getBasicBlockList(),
InlineFunction.cpp 757 Caller->getBasicBlockList().pop_back();
    [all...]
LoopSimplify.cpp 690 F->getBasicBlockList().splice(InsertPos, F->getBasicBlockList(), BEBlock);
BreakCriticalEdges.cpp 171 F.getBasicBlockList().insert(++FBBI, NewBB);
CodeExtractor.cpp 352 newFunction->getBasicBlockList().push_back(newRootNode);
676 Function::BasicBlockListType &oldBlocks = oldFunc->getBasicBlockList();
677 Function::BasicBlockListType &newBlocks = newFunction->getBasicBlockList();
LoopUnroll.cpp 276 Header->getParent()->getBasicBlockList().push_back(New);
CloneFunction.cpp 406 NewFunc->getBasicBlockList().push_back(NewBB);
  /external/llvm/include/llvm/IR/
Function.h 374 const BasicBlockListType &getBasicBlockList() const { return BasicBlocks; }
375 BasicBlockListType &getBasicBlockList() { return BasicBlocks; }
  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 319 NF->getBasicBlockList().splice(NF->begin(), Fn.getBasicBlockList());
    [all...]
ArgumentPromotion.cpp 765 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 284 CurFn->getBasicBlockList().insertAfter(CurBB, BB);
286 CurFn->getBasicBlockList().push_back(BB);
312 CurFn->getBasicBlockList().insertAfter(insn->getParent(), block);
319 CurFn->getBasicBlockList().push_back(block);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 740 TheFunction->getBasicBlockList().push_back(ElseBB);
751 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/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]

Completed in 288 milliseconds

1 2