/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-7.0/llvm/lib/IR/ |
D | BasicBlock.cpp | 59 NewParent->getBasicBlockList().insert(InsertBefore->getIterator(), this); in insertInto() 61 NewParent->getBasicBlockList().push_back(this); in insertInto() 112 getParent()->getBasicBlockList().remove(getIterator()); in removeFromParent() 116 return getParent()->getBasicBlockList().erase(getIterator()); in eraseFromParent() 122 MovePos->getParent()->getBasicBlockList().splice( in moveBefore() 123 MovePos->getIterator(), getParent()->getBasicBlockList(), getIterator()); in moveBefore() 129 MovePos->getParent()->getBasicBlockList().splice( in moveAfter() 130 ++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/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()
|
/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()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | InstIterator.h | 62 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor in InstIterator() 70 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor in InstIterator()
|
D | Function.h | 619 const BasicBlockListType &getBasicBlockList() const { return BasicBlocks; } in getBasicBlockList() function 620 BasicBlockListType &getBasicBlockList() { return BasicBlocks; } in getBasicBlockList() function
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
D | CloneFunction.cpp | 484 NewFunc->getBasicBlockList().push_back(NewBB); in CloneAndPruneIntoFromInst() 788 F->getBasicBlockList().splice(Before->getIterator(), F->getBasicBlockList(), in cloneLoopWithPreheader() 790 F->getBasicBlockList().splice(Before->getIterator(), F->getBasicBlockList(), in cloneLoopWithPreheader()
|
D | LowerSwitch.cpp | 297 F->getBasicBlockList().insert(++OrigBlock->getIterator(), NewNode); in switchConvert() 313 F->getBasicBlockList().insert(++OrigBlock->getIterator(), NewLeaf); in newLeafBlock() 531 F->getBasicBlockList().insert(Default->getIterator(), NewDefault); in processSwitchInst()
|
/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()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/ |
D | InlineSimple.cpp | 60 const auto &BBs = CS.getCaller()->getBasicBlockList(); in getInlineCost()
|
D | DeadArgumentElimination.cpp | 231 NF->getBasicBlockList().splice(NF->begin(), Fn.getBasicBlockList()); in DeleteDeadVarargs() 1007 NF->getBasicBlockList().splice(NF->begin(), F->getBasicBlockList()); in RemoveDeadStuffFromFunction()
|
/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-7.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPURewriteOutArguments.cpp | 383 NewFunc->getBasicBlockList().splice(NewFunc->begin(), F.getBasicBlockList()); in runOnFunction()
|
D | AMDGPUInline.cpp | 193 const auto &BBs = Caller->getBasicBlockList(); in getInlineCost()
|
/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()
|