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

1 2

  /external/llvm/lib/IR/
BasicBlock.cpp 56 NewParent->getBasicBlockList().insert(InsertBefore, this);
58 NewParent->getBasicBlockList().push_back(this);
101 getParent()->getBasicBlockList().remove(this);
105 getParent()->getBasicBlockList().erase(this);
111 MovePos->getParent()->getBasicBlockList().splice(MovePos,
112 getParent()->getBasicBlockList(), this);
119 MovePos->getParent()->getBasicBlockList().splice(++I,
120 getParent()->getBasicBlockList(), this);
  /external/llvm/include/llvm/IR/
InstIterator.h 59 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor
67 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor
Function.h 375 const BasicBlockListType &getBasicBlockList() const { return BasicBlocks; }
376 BasicBlockListType &getBasicBlockList() { return BasicBlocks; }
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 213 F->getBasicBlockList().insert(++FI, NewNode);
235 F->getBasicBlockList().insert(++FI, NewLeaf);
353 F->getBasicBlockList().insert(Default, NewDefault);
LoopUnrollRuntime.cpp 328 F->getBasicBlockList().splice(PEnd, F->getBasicBlockList(),
BreakCriticalEdges.cpp 170 F.getBasicBlockList().insert(++FBBI, NewBB);
InlineFunction.cpp     [all...]
CodeExtractor.cpp 353 newFunction->getBasicBlockList().push_back(newRootNode);
675 Function::BasicBlockListType &oldBlocks = oldFunc->getBasicBlockList();
676 Function::BasicBlockListType &newBlocks = newFunction->getBasicBlockList();
LoopUnroll.cpp 299 Header->getParent()->getBasicBlockList().push_back(New);
LoopSimplify.cpp 394 F->getBasicBlockList().splice(InsertPos, F->getBasicBlockList(), BEBlock);
    [all...]
CloneFunction.cpp 460 NewFunc->getBasicBlockList().push_back(NewBB);
  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 285 NF->getBasicBlockList().splice(NF->begin(), Fn.getBasicBlockList());
    [all...]
ArgumentPromotion.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 542 TheFunction->getBasicBlockList().push_back(ElseBB);
553 TheFunction->getBasicBlockList().push_back(MergeBB);
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 646 TheFunction->getBasicBlockList().push_back(ElseBB);
657 TheFunction->getBasicBlockList().push_back(MergeBB);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 742 TheFunction->getBasicBlockList().push_back(ElseBB);
753 TheFunction->getBasicBlockList().push_back(MergeBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 769 TheFunction->getBasicBlockList().push_back(ElseBB);
780 TheFunction->getBasicBlockList().push_back(MergeBB);
    [all...]
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 991 TheFunction->getBasicBlockList().push_back(ElseBB);
1002 TheFunction->getBasicBlockList().push_back(MergeBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 751 TheFunction->getBasicBlockList().push_back(ElseBB);
762 TheFunction->getBasicBlockList().push_back(MergeBB);
    [all...]
toy.cpp 1031 TheFunction->getBasicBlockList().push_back(ElseBB);
1042 TheFunction->getBasicBlockList().push_back(MergeBB);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 823 F->getBasicBlockList().splice(NewPreheader, F->getBasicBlockList(),
    [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp 315 CurFn->getBasicBlockList().insertAfter(CurBB, BB);
317 CurFn->getBasicBlockList().push_back(BB);
342 CurFn->getBasicBlockList().insertAfter(insn->getParent(), block);
349 CurFn->getBasicBlockList().push_back(block);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp     [all...]

Completed in 784 milliseconds

1 2