2003-08-31 19:23:41 +00:00
|
|
|
//===- PrintSCC.cpp - Enumerate SCCs in some key graphs -------------------===//
|
2002-11-04 14:20:22 +00:00
|
|
|
//
|
|
|
|
// This file provides passes to print out SCCs in a CFG or a CallGraph.
|
|
|
|
// Normally, you would not use these passes; instead, you would use the
|
2003-08-31 20:01:57 +00:00
|
|
|
// scc_iterator directly to enumerate SCCs and process them in some way. These
|
|
|
|
// passes serve three purposes:
|
|
|
|
//
|
|
|
|
// (1) As a reference for how to use the scc_iterator.
|
2002-11-04 14:20:22 +00:00
|
|
|
// (2) To print out the SCCs for a CFG or a CallGraph:
|
|
|
|
// analyze -cfgscc to print the SCCs in each CFG of a module.
|
|
|
|
// analyze -cfgscc -stats to print the #SCCs and the maximum SCC size.
|
|
|
|
// analyze -cfgscc -debug > /dev/null to watch the algorithm in action.
|
|
|
|
//
|
|
|
|
// and similarly:
|
|
|
|
// analyze -callscc [-stats] [-debug] to print SCCs in the CallGraph
|
|
|
|
//
|
2003-08-31 20:01:57 +00:00
|
|
|
// (3) To test the scc_iterator.
|
2003-08-31 19:23:41 +00:00
|
|
|
//
|
2002-11-04 14:20:22 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Pass.h"
|
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/Analysis/CallGraph.h"
|
|
|
|
#include "llvm/Support/CFG.h"
|
2003-08-31 20:01:57 +00:00
|
|
|
#include "Support/SCCIterator.h"
|
2002-11-04 14:20:22 +00:00
|
|
|
|
|
|
|
namespace {
|
2003-08-31 19:27:11 +00:00
|
|
|
struct CFGSCC : public FunctionPass {
|
|
|
|
bool runOnFunction(Function& func);
|
2002-11-04 14:20:22 +00:00
|
|
|
|
2003-08-31 19:27:11 +00:00
|
|
|
void print(std::ostream &O) const { }
|
2002-11-04 14:20:22 +00:00
|
|
|
|
2003-08-31 19:27:11 +00:00
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
2003-08-31 19:23:41 +00:00
|
|
|
}
|
2003-08-31 19:27:11 +00:00
|
|
|
};
|
2002-11-04 14:20:22 +00:00
|
|
|
|
2003-08-31 19:27:11 +00:00
|
|
|
struct CallGraphSCC : public Pass {
|
|
|
|
// run - Print out SCCs in the call graph for the specified module.
|
|
|
|
bool run(Module &M);
|
2002-11-04 14:20:22 +00:00
|
|
|
|
2003-08-31 19:27:11 +00:00
|
|
|
void print(std::ostream &O) const { }
|
2002-11-04 14:20:22 +00:00
|
|
|
|
2003-08-31 19:27:11 +00:00
|
|
|
// getAnalysisUsage - This pass requires the CallGraph.
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
|
|
|
AU.addRequired<CallGraph>();
|
|
|
|
}
|
|
|
|
};
|
2002-11-04 14:20:22 +00:00
|
|
|
|
2003-08-31 19:23:41 +00:00
|
|
|
RegisterAnalysis<CFGSCC>
|
|
|
|
Y("cfgscc", "Print SCCs of each function CFG");
|
2002-11-04 14:20:22 +00:00
|
|
|
|
2003-08-31 19:23:41 +00:00
|
|
|
RegisterAnalysis<CallGraphSCC>
|
|
|
|
Z("callscc", "Print SCCs of the Call Graph");
|
2002-11-04 14:20:22 +00:00
|
|
|
}
|
2003-08-31 19:27:11 +00:00
|
|
|
|
|
|
|
bool CFGSCC::runOnFunction(Function &F) {
|
|
|
|
unsigned sccNum = 0;
|
|
|
|
std::cout << "SCCs for Function " << F.getName() << " in PostOrder:";
|
2003-08-31 20:01:57 +00:00
|
|
|
for (scc_iterator<Function*> SCCI = scc_begin(&F),
|
|
|
|
E = scc_end(&F); SCCI != E; ++SCCI) {
|
2003-08-31 19:55:06 +00:00
|
|
|
std::vector<BasicBlock*> &nextSCC = *SCCI;
|
2003-08-31 19:27:11 +00:00
|
|
|
std::cout << "\nSCC #" << ++sccNum << " : ";
|
2003-08-31 19:51:38 +00:00
|
|
|
for (std::vector<BasicBlock*>::const_iterator I = nextSCC.begin(),
|
2003-08-31 19:27:11 +00:00
|
|
|
E = nextSCC.end(); I != E; ++I)
|
|
|
|
std::cout << (*I)->getName() << ", ";
|
2003-08-31 19:51:38 +00:00
|
|
|
if (nextSCC.size() == 1 && SCCI.hasLoop())
|
2003-08-31 19:27:11 +00:00
|
|
|
std::cout << " (Has self-loop).";
|
|
|
|
}
|
|
|
|
std::cout << "\n";
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// run - Print out SCCs in the call graph for the specified module.
|
|
|
|
bool CallGraphSCC::run(Module &M) {
|
|
|
|
CallGraphNode* rootNode = getAnalysis<CallGraph>().getRoot();
|
|
|
|
unsigned sccNum = 0;
|
|
|
|
std::cout << "SCCs for the program in PostOrder:";
|
2003-08-31 20:01:57 +00:00
|
|
|
for (scc_iterator<CallGraphNode*> SCCI = scc_begin(rootNode),
|
|
|
|
E = scc_end(rootNode); SCCI != E; ++SCCI) {
|
2003-08-31 19:55:06 +00:00
|
|
|
const std::vector<CallGraphNode*> &nextSCC = *SCCI;
|
2003-08-31 19:27:11 +00:00
|
|
|
std::cout << "\nSCC #" << ++sccNum << " : ";
|
2003-08-31 19:51:38 +00:00
|
|
|
for (std::vector<CallGraphNode*>::const_iterator I = nextSCC.begin(),
|
2003-08-31 19:27:11 +00:00
|
|
|
E = nextSCC.end(); I != E; ++I)
|
|
|
|
std::cout << ((*I)->getFunction() ? (*I)->getFunction()->getName()
|
|
|
|
: std::string("Indirect CallGraph node")) << ", ";
|
2003-08-31 19:51:38 +00:00
|
|
|
if (nextSCC.size() == 1 && SCCI.hasLoop())
|
2003-08-31 19:27:11 +00:00
|
|
|
std::cout << " (Has self-loop).";
|
|
|
|
}
|
|
|
|
std::cout << "\n";
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|