Home
last modified time | relevance | path

Searched refs:getBasicBlockList (Results 1 – 25 of 69) sorted by relevance

123

/external/swiftshader/third_party/LLVM/lib/VMCore/
DBasicBlock.cpp52 NewParent->getBasicBlockList().insert(InsertBefore, this); in BasicBlock()
54 NewParent->getBasicBlockList().push_back(this); in BasicBlock()
97 getParent()->getBasicBlockList().remove(this); in removeFromParent()
101 getParent()->getBasicBlockList().erase(this); in eraseFromParent()
107 MovePos->getParent()->getBasicBlockList().splice(MovePos, in moveBefore()
108 getParent()->getBasicBlockList(), this); in moveBefore()
115 MovePos->getParent()->getBasicBlockList().splice(++I, in moveAfter()
116 getParent()->getBasicBlockList(), this); in moveAfter()
/external/llvm/lib/IR/
DBasicBlock.cpp59 NewParent->getBasicBlockList().insert(InsertBefore->getIterator(), this); in insertInto()
61 NewParent->getBasicBlockList().push_back(this); in insertInto()
94 getParent()->getBasicBlockList().remove(getIterator()); in removeFromParent()
98 return getParent()->getBasicBlockList().erase(getIterator()); in eraseFromParent()
104 MovePos->getParent()->getBasicBlockList().splice( in moveBefore()
105 MovePos->getIterator(), getParent()->getBasicBlockList(), getIterator()); in moveBefore()
111 MovePos->getParent()->getBasicBlockList().splice( in moveAfter()
112 ++MovePos->getIterator(), getParent()->getBasicBlockList(), in moveAfter()
/external/llvm/lib/Transforms/Utils/
DCloneFunction.cpp443 NewFunc->getBasicBlockList().push_back(NewBB); in CloneAndPruneIntoFromInst()
706 F->getBasicBlockList().splice(Before->getIterator(), F->getBasicBlockList(), in cloneLoopWithPreheader()
708 F->getBasicBlockList().splice(Before->getIterator(), F->getBasicBlockList(), in cloneLoopWithPreheader()
DLowerSwitch.cpp284 F->getBasicBlockList().insert(++OrigBlock->getIterator(), NewNode); in switchConvert()
301 F->getBasicBlockList().insert(++OrigBlock->getIterator(), NewLeaf); in newLeafBlock()
497 F->getBasicBlockList().insert(Default->getIterator(), NewDefault); in processSwitchInst()
DCodeExtractor.cpp343 newFunction->getBasicBlockList().push_back(newRootNode); in constructFunction()
663 Function::BasicBlockListType &oldBlocks = oldFunc->getBasicBlockList(); in moveCodeToFunction()
664 Function::BasicBlockListType &newBlocks = newFunction->getBasicBlockList(); in moveCodeToFunction()
DLoopUnrollRuntime.cpp615 F->getBasicBlockList().splice(InsertBot->getIterator(), in UnrollRuntimeLoopRemainder()
616 F->getBasicBlockList(), in UnrollRuntimeLoopRemainder()
DBreakCriticalEdges.cpp143 F.getBasicBlockList().insert(++FBBI, NewBB); in SplitCriticalEdge()
DLoopSimplify.cpp390 F->getBasicBlockList().splice(InsertPos, F->getBasicBlockList(), BEBlock); in insertUniqueBackedgeBlock()
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DInstIterator.h59 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor in InstIterator()
67 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor in InstIterator()
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
DLowerSwitch.cpp160 F->getBasicBlockList().insert(++FI, NewNode); in switchConvert()
182 F->getBasicBlockList().insert(++FI, NewLeaf); in newLeafBlock()
293 F->getBasicBlockList().insert(Default, NewDefault); in processSwitchInst()
DInlineFunction.cpp1160 Caller->getBasicBlockList().pop_back(); in InlineFunction()
1224 Caller->getBasicBlockList().splice(AfterCallBB, Caller->getBasicBlockList(), in InlineFunction()
1306 Caller->getBasicBlockList().erase(CalleeEntry); in InlineFunction()
DCodeExtractor.cpp305 newFunction->getBasicBlockList().push_back(newRootNode); in constructFunction()
627 Function::BasicBlockListType &oldBlocks = oldFunc->getBasicBlockList(); in moveCodeToFunction()
628 Function::BasicBlockListType &newBlocks = newFunction->getBasicBlockList(); in moveCodeToFunction()
DLoopSimplify.cpp665 F->getBasicBlockList().splice(InsertPos, F->getBasicBlockList(), BEBlock); in InsertUniqueBackedgeBlock()
/external/llvm/include/llvm/IR/
DInstIterator.h58 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor in InstIterator()
66 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor in InstIterator()
DFunction.h484 const BasicBlockListType &getBasicBlockList() const { return BasicBlocks; }
485 BasicBlockListType &getBasicBlockList() { return BasicBlocks; }
/external/swiftshader/third_party/LLVM/include/llvm/
DFunction.h335 const BasicBlockListType &getBasicBlockList() const { return BasicBlocks; }
336 BasicBlockListType &getBasicBlockList() { return BasicBlocks; }
/external/llvm/lib/Transforms/IPO/
DDeadArgumentElimination.cpp213 NF->getBasicBlockList().splice(NF->begin(), Fn.getBasicBlockList()); in DeleteDeadVarargs()
961 NF->getBasicBlockList().splice(NF->begin(), F->getBasicBlockList()); in RemoveDeadStuffFromFunction()
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
DDeadArgumentElimination.cpp274 NF->getBasicBlockList().splice(NF->begin(), Fn.getBasicBlockList()); in DeleteDeadVarargs()
895 NF->getBasicBlockList().splice(NF->begin(), F->getBasicBlockList()); in RemoveDeadStuffFromFunction()
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DBasicBlockPlacement.cpp113 Function::BasicBlockListType &Blocks = BB->getParent()->getBasicBlockList(); in PlaceBlocks()
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DFunction.h508 const BasicBlockListType &getBasicBlockList() const { return BasicBlocks; } in getBasicBlockList() function
509 BasicBlockListType &getBasicBlockList() { return BasicBlocks; } in getBasicBlockList() function
/external/llvm/unittests/ExecutionEngine/Orc/
DOrcCAPITest.cpp32 Main->getBasicBlockList().push_back(BasicBlock::Create(Context)); in createTestModule()
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
Dtoy.cpp540 TheFunction->getBasicBlockList().push_back(ElseBB); in Codegen()
551 TheFunction->getBasicBlockList().push_back(MergeBB); in Codegen()
/external/llvm/examples/Kaleidoscope/Chapter5/
Dtoy.cpp638 TheFunction->getBasicBlockList().push_back(ElseBB); in codegen()
650 TheFunction->getBasicBlockList().push_back(MergeBB); in codegen()
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
Dtoy.cpp644 TheFunction->getBasicBlockList().push_back(ElseBB); in Codegen()
655 TheFunction->getBasicBlockList().push_back(MergeBB); in Codegen()
/external/clang/lib/CodeGen/
DCGStmt.cpp411 CurFn->getBasicBlockList().insertAfter(CurBB->getIterator(), BB); in EmitBlock()
413 CurFn->getBasicBlockList().push_back(BB); in EmitBlock()
438 CurFn->getBasicBlockList().insertAfter(insn->getParent()->getIterator(), in EmitBlockAfterUses()
446 CurFn->getBasicBlockList().push_back(block); in EmitBlockAfterUses()
1151 CurFn->getBasicBlockList().push_back(CaseRangeBlock); in EmitCaseStmtRange()

123