2002-05-21 20:49:37 +00:00
|
|
|
//===- SimplifyCFG.cpp - CFG Simplification Pass --------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements dead code elimination and basic block merging.
|
|
|
|
//
|
|
|
|
// Specifically, this:
|
|
|
|
// * removes basic blocks with no predecessors
|
|
|
|
// * merges a basic block into its predecessor if there is only one and the
|
|
|
|
// predecessor only has one successor.
|
|
|
|
// * Eliminates PHI nodes for basic blocks with a single predecessor
|
|
|
|
// * Eliminates a basic block that only contains an unconditional branch
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Transforms/Scalar.h"
|
|
|
|
#include "llvm/Transforms/Utils/Local.h"
|
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/GlobalVariable.h"
|
|
|
|
#include "llvm/Support/CFG.h"
|
|
|
|
#include "llvm/Pass.h"
|
|
|
|
#include "Support/StatisticReporter.h"
|
|
|
|
#include <set>
|
|
|
|
|
|
|
|
static Statistic<> NumSimpl("cfgsimplify\t- Number of blocks simplified");
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
struct CFGSimplifyPass : public FunctionPass {
|
2002-06-25 16:13:24 +00:00
|
|
|
virtual bool runOnFunction(Function &F);
|
2002-05-21 20:49:37 +00:00
|
|
|
};
|
2002-07-23 18:06:35 +00:00
|
|
|
RegisterPass<CFGSimplifyPass> X("simplifycfg", "Simplify the CFG");
|
2002-05-21 20:49:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Pass *createCFGSimplificationPass() {
|
|
|
|
return new CFGSimplifyPass();
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool MarkAliveBlocks(BasicBlock *BB, std::set<BasicBlock*> &Reachable) {
|
|
|
|
if (Reachable.count(BB)) return false;
|
|
|
|
Reachable.insert(BB);
|
|
|
|
|
|
|
|
bool Changed = ConstantFoldTerminator(BB);
|
|
|
|
for (succ_iterator SI = succ_begin(BB), SE = succ_end(BB); SI != SE; ++SI)
|
|
|
|
MarkAliveBlocks(*SI, Reachable);
|
|
|
|
|
|
|
|
return Changed;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// It is possible that we may require multiple passes over the code to fully
|
|
|
|
// simplify the CFG.
|
|
|
|
//
|
2002-06-25 16:13:24 +00:00
|
|
|
bool CFGSimplifyPass::runOnFunction(Function &F) {
|
2002-05-21 20:49:37 +00:00
|
|
|
std::set<BasicBlock*> Reachable;
|
2002-06-25 16:13:24 +00:00
|
|
|
bool Changed = MarkAliveBlocks(F.begin(), Reachable);
|
2002-05-21 20:49:37 +00:00
|
|
|
|
|
|
|
// If there are unreachable blocks in the CFG...
|
2002-06-25 16:13:24 +00:00
|
|
|
if (Reachable.size() != F.size()) {
|
|
|
|
assert(Reachable.size() < F.size());
|
|
|
|
NumSimpl += F.size()-Reachable.size();
|
2002-05-21 20:49:37 +00:00
|
|
|
|
|
|
|
// Loop over all of the basic blocks that are not reachable, dropping all of
|
|
|
|
// their internal references...
|
2002-06-25 16:13:24 +00:00
|
|
|
for (Function::iterator BB = ++F.begin(), E = F.end(); BB != E; ++BB)
|
|
|
|
if (!Reachable.count(BB)) {
|
2002-05-21 20:49:37 +00:00
|
|
|
for (succ_iterator SI = succ_begin(BB), SE = succ_end(BB); SI!=SE; ++SI)
|
|
|
|
if (Reachable.count(*SI))
|
|
|
|
(*SI)->removePredecessor(BB);
|
|
|
|
BB->dropAllReferences();
|
|
|
|
}
|
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
for (Function::iterator I = ++F.begin(); I != F.end();)
|
|
|
|
if (!Reachable.count(I))
|
|
|
|
I = F.getBasicBlockList().erase(I);
|
2002-05-21 20:49:37 +00:00
|
|
|
else
|
|
|
|
++I;
|
|
|
|
|
|
|
|
Changed = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LocalChange = true;
|
|
|
|
while (LocalChange) {
|
|
|
|
LocalChange = false;
|
|
|
|
|
|
|
|
// Loop over all of the basic blocks (except the first one) and remove them
|
|
|
|
// if they are unneeded...
|
|
|
|
//
|
2002-06-25 16:13:24 +00:00
|
|
|
for (Function::iterator BBIt = ++F.begin(); BBIt != F.end(); ) {
|
|
|
|
if (SimplifyCFG(BBIt++)) {
|
2002-05-21 20:49:37 +00:00
|
|
|
LocalChange = true;
|
|
|
|
++NumSimpl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Changed |= LocalChange;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Changed;
|
|
|
|
}
|