/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | BasicBlock.cpp | 52 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/ |
D | BasicBlock.cpp | 59 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/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | InstIterator.h | 59 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor in InstIterator() 67 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor in InstIterator()
|
/external/llvm/include/llvm/IR/ |
D | InstIterator.h | 58 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor in InstIterator() 66 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor in InstIterator()
|
D | Function.h | 484 const BasicBlockListType &getBasicBlockList() const { return BasicBlocks; } 485 BasicBlockListType &getBasicBlockList() { return BasicBlocks; }
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/ |
D | LowerSwitch.cpp | 160 F->getBasicBlockList().insert(++FI, NewNode); in switchConvert() 182 F->getBasicBlockList().insert(++FI, NewLeaf); in newLeafBlock() 293 F->getBasicBlockList().insert(Default, NewDefault); in processSwitchInst()
|
D | InlineFunction.cpp | 1160 Caller->getBasicBlockList().pop_back(); in InlineFunction() 1224 Caller->getBasicBlockList().splice(AfterCallBB, Caller->getBasicBlockList(), in InlineFunction() 1306 Caller->getBasicBlockList().erase(CalleeEntry); in InlineFunction()
|
D | CodeExtractor.cpp | 305 newFunction->getBasicBlockList().push_back(newRootNode); in constructFunction() 627 Function::BasicBlockListType &oldBlocks = oldFunc->getBasicBlockList(); in moveCodeToFunction() 628 Function::BasicBlockListType &newBlocks = newFunction->getBasicBlockList(); in moveCodeToFunction()
|
D | LoopSimplify.cpp | 665 F->getBasicBlockList().splice(InsertPos, F->getBasicBlockList(), BEBlock); in InsertUniqueBackedgeBlock()
|
/external/llvm/lib/Transforms/Utils/ |
D | CloneFunction.cpp | 443 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()
|
D | LowerSwitch.cpp | 284 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()
|
D | CodeExtractor.cpp | 343 newFunction->getBasicBlockList().push_back(newRootNode); in constructFunction() 663 Function::BasicBlockListType &oldBlocks = oldFunc->getBasicBlockList(); in moveCodeToFunction() 664 Function::BasicBlockListType &newBlocks = newFunction->getBasicBlockList(); in moveCodeToFunction()
|
D | LoopUnrollRuntime.cpp | 615 F->getBasicBlockList().splice(InsertBot->getIterator(), in UnrollRuntimeLoopRemainder() 616 F->getBasicBlockList(), in UnrollRuntimeLoopRemainder()
|
D | BreakCriticalEdges.cpp | 143 F.getBasicBlockList().insert(++FBBI, NewBB); in SplitCriticalEdge()
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
D | Function.h | 335 const BasicBlockListType &getBasicBlockList() const { return BasicBlocks; } 336 BasicBlockListType &getBasicBlockList() { return BasicBlocks; }
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/ |
D | BasicBlockPlacement.cpp | 113 Function::BasicBlockListType &Blocks = BB->getParent()->getBasicBlockList(); in PlaceBlocks()
|
D | SimplifyCFGPass.cpp | 201 I = F.getBasicBlockList().erase(I); in RemoveUnreachableBlocksFromFn()
|
/external/llvm/lib/Transforms/IPO/ |
D | DeadArgumentElimination.cpp | 213 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/ |
D | DeadArgumentElimination.cpp | 274 NF->getBasicBlockList().splice(NF->begin(), Fn.getBasicBlockList()); in DeleteDeadVarargs() 895 NF->getBasicBlockList().splice(NF->begin(), F->getBasicBlockList()); in RemoveDeadStuffFromFunction()
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Function.h | 508 const BasicBlockListType &getBasicBlockList() const { return BasicBlocks; } in getBasicBlockList() function 509 BasicBlockListType &getBasicBlockList() { return BasicBlocks; } in getBasicBlockList() function
|
/external/llvm/unittests/ExecutionEngine/Orc/ |
D | OrcCAPITest.cpp | 32 Main->getBasicBlockList().push_back(BasicBlock::Create(Context)); in createTestModule()
|
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 540 TheFunction->getBasicBlockList().push_back(ElseBB); in Codegen() 551 TheFunction->getBasicBlockList().push_back(MergeBB); in Codegen()
|
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 644 TheFunction->getBasicBlockList().push_back(ElseBB); in Codegen() 655 TheFunction->getBasicBlockList().push_back(MergeBB); in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 638 TheFunction->getBasicBlockList().push_back(ElseBB); in codegen() 650 TheFunction->getBasicBlockList().push_back(MergeBB); in codegen()
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 411 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()
|