Home
last modified time | relevance | path

Searched refs:UnreachableBlocks (Results 1 – 3 of 3) sorted by relevance

/external/llvm/lib/Transforms/Utils/
DUnifyFunctionExitNodes.cpp52 std::vector<BasicBlock*> UnreachableBlocks; in runOnFunction() local
57 UnreachableBlocks.push_back(&I); in runOnFunction()
60 if (UnreachableBlocks.empty()) { in runOnFunction()
62 } else if (UnreachableBlocks.size() == 1) { in runOnFunction()
63 UnreachableBlock = UnreachableBlocks.front(); in runOnFunction()
69 for (BasicBlock *BB : UnreachableBlocks) { in runOnFunction()
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
DUnifyFunctionExitNodes.cpp54 std::vector<BasicBlock*> UnreachableBlocks; in runOnFunction() local
61 UnreachableBlocks.push_back(I); in runOnFunction()
81 if (UnreachableBlocks.empty()) { in runOnFunction()
83 } else if (UnreachableBlocks.size() == 1) { in runOnFunction()
84 UnreachableBlock = UnreachableBlocks.front(); in runOnFunction()
90 for (std::vector<BasicBlock*>::iterator I = UnreachableBlocks.begin(), in runOnFunction()
91 E = UnreachableBlocks.end(); I != E; ++I) { in runOnFunction()
/external/llvm/lib/CodeGen/
DAnalysis.cpp684 SmallVector<const MachineBasicBlock *, 16> UnreachableBlocks; in getFuncletMembership() local
693 UnreachableBlocks.push_back(&MBB); in getFuncletMembership()
717 for (const MachineBasicBlock *MBB : UnreachableBlocks) in getFuncletMembership()