Home
last modified time | relevance | path

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

12345

/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/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DBasicBlock.cpp59 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/
DInstIterator.h59 : 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/
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/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()
/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()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DInstIterator.h62 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor in InstIterator()
70 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor in InstIterator()
DFunction.h619 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/
DCloneFunction.cpp484 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()
DLowerSwitch.cpp297 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/
DFunction.h335 const BasicBlockListType &getBasicBlockList() const { return BasicBlocks; }
336 BasicBlockListType &getBasicBlockList() { return BasicBlocks; }
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DBasicBlockPlacement.cpp113 Function::BasicBlockListType &Blocks = BB->getParent()->getBasicBlockList(); in PlaceBlocks()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
DInlineSimple.cpp60 const auto &BBs = CS.getCaller()->getBasicBlockList(); in getInlineCost()
DDeadArgumentElimination.cpp231 NF->getBasicBlockList().splice(NF->begin(), Fn.getBasicBlockList()); in DeleteDeadVarargs()
1007 NF->getBasicBlockList().splice(NF->begin(), F->getBasicBlockList()); in RemoveDeadStuffFromFunction()
/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-7.0/llvm/lib/Target/AMDGPU/
DAMDGPURewriteOutArguments.cpp383 NewFunc->getBasicBlockList().splice(NewFunc->begin(), F.getBasicBlockList()); in runOnFunction()
DAMDGPUInline.cpp193 const auto &BBs = Caller->getBasicBlockList(); in getInlineCost()
/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()

12345