From 7eb01bfc1645abbed0ee898a5df7ff9e4f407c38 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 23 Aug 2008 23:39:31 +0000 Subject: improve encapsulation of the BBExecutable set. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55271 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Scalar/SCCP.cpp | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'lib/Transforms/Scalar/SCCP.cpp') diff --git a/lib/Transforms/Scalar/SCCP.cpp b/lib/Transforms/Scalar/SCCP.cpp index e299950..ed0f727 100644 --- a/lib/Transforms/Scalar/SCCP.cpp +++ b/lib/Transforms/Scalar/SCCP.cpp @@ -224,10 +224,8 @@ public: /// should be rerun. bool ResolvedUndefsIn(Function &F); - /// getExecutableBlocks - Once we have solved for constants, return the set of - /// blocks that is known to be executable. - DenseSet &getExecutableBlocks() { - return BBExecutable; + bool isBlockExecutable(BasicBlock *BB) const { + return BBExecutable.count(BB); } /// getValueMapping - Once we have solved for constants, return the mapping of @@ -1550,12 +1548,11 @@ bool SCCP::runOnFunction(Function &F) { // delete their contents now. Note that we cannot actually delete the blocks, // as we cannot modify the CFG of the function. // - DenseSet &ExecutableBBs = Solver.getExecutableBlocks(); SmallVector Insts; std::map &Values = Solver.getValueMapping(); for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) - if (!ExecutableBBs.count(BB)) { + if (!Solver.isBlockExecutable(BB)) { DOUT << " BasicBlock Dead:" << *BB; ++NumDeadBlocks; @@ -1695,7 +1692,6 @@ bool IPSCCP::runOnModule(Module &M) { // Iterate over all of the instructions in the module, replacing them with // constants if we have found them to be of constant values. // - DenseSet &ExecutableBBs = Solver.getExecutableBlocks(); SmallVector Insts; SmallVector BlocksToErase; std::map &Values = Solver.getValueMapping(); @@ -1718,7 +1714,7 @@ bool IPSCCP::runOnModule(Module &M) { } for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) - if (!ExecutableBBs.count(BB)) { + if (!Solver.isBlockExecutable(BB)) { DOUT << " BasicBlock Dead:" << *BB; ++IPNumDeadBlocks; -- cgit v1.1