Home
last modified time | relevance | path

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

1234

/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-10.0/llvm/lib/IR/
DBasicBlock.cpp58 NewParent->getBasicBlockList().insert(InsertBefore->getIterator(), this); in insertInto()
60 NewParent->getBasicBlockList().push_back(this); in insertInto()
118 getParent()->getBasicBlockList().remove(getIterator()); in removeFromParent()
122 return getParent()->getBasicBlockList().erase(getIterator()); in eraseFromParent()
128 MovePos->getParent()->getBasicBlockList().splice( in moveBefore()
129 MovePos->getIterator(), getParent()->getBasicBlockList(), getIterator()); in moveBefore()
135 MovePos->getParent()->getBasicBlockList().splice( in moveAfter()
136 ++MovePos->getIterator(), getParent()->getBasicBlockList(), in moveAfter()
/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-10.0/llvm/include/llvm/IR/
DInstIterator.h61 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor in InstIterator()
69 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor in InstIterator()
DFunction.h668 const BasicBlockListType &getBasicBlockList() const { return BasicBlocks; } in getBasicBlockList() function
669 BasicBlockListType &getBasicBlockList() { return BasicBlocks; } in getBasicBlockList() function
/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()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DCloneFunction.cpp499 NewFunc->getBasicBlockList().push_back(NewBB); in CloneAndPruneIntoFromInst()
825 F->getBasicBlockList().splice(Before->getIterator(), F->getBasicBlockList(), in cloneLoopWithPreheader()
827 F->getBasicBlockList().splice(Before->getIterator(), F->getBasicBlockList(), in cloneLoopWithPreheader()
DLowerSwitch.cpp322 F->getBasicBlockList().insert(++OrigBlock->getIterator(), NewNode); in switchConvert()
340 F->getBasicBlockList().insert(++OrigBlock->getIterator(), NewLeaf); in newLeafBlock()
598 F->getBasicBlockList().insert(Default->getIterator(), NewDefault); in processSwitchInst()
DLoopUnrollPeel.cpp747 F->getBasicBlockList().splice(InsertTop->getIterator(), in peelLoop()
748 F->getBasicBlockList(), in peelLoop()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
DSpeculateAnalyses.cpp70 return llvm::all_of(F.getBasicBlockList(), [](const BasicBlock &BB) { in isStraightLine()
140 for (auto &Block : F.getBasicBlockList()) in rearrangeBB()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DInlineSimple.cpp60 const auto &BBs = CS.getCaller()->getBasicBlockList(); in getInlineCost()
DDeadArgumentElimination.cpp230 NF->getBasicBlockList().splice(NF->begin(), Fn.getBasicBlockList()); in DeleteDeadVarargs()
1011 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-10.0/llvm/lib/Target/AMDGPU/
DAMDGPURewriteOutArguments.cpp383 NewFunc->getBasicBlockList().splice(NewFunc->begin(), F.getBasicBlockList()); in runOnFunction()
DAMDGPUInline.cpp204 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()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/CFGuard/
DCFGuard.cpp267 for (BasicBlock &BB : F.getBasicBlockList()) { in runOnFunction()
/external/llvm/examples/Kaleidoscope/Chapter5/
Dtoy.cpp638 TheFunction->getBasicBlockList().push_back(ElseBB); in codegen()
650 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()

1234