2003-09-01 03:23:41 +08:00
|
|
|
//===- PrintSCC.cpp - Enumerate SCCs in some key graphs -------------------===//
|
2005-04-22 05:13:18 +08:00
|
|
|
//
|
2003-10-21 03:43:21 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:44:31 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 05:13:18 +08:00
|
|
|
//
|
2003-10-21 03:43:21 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-11-04 22:20:22 +08: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-09-01 04:01:57 +08: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 22:20:22 +08:00
|
|
|
// (2) To print out the SCCs for a CFG or a CallGraph:
|
2008-09-23 20:47:39 +08:00
|
|
|
// analyze -print-cfg-sccs to print the SCCs in each CFG of a module.
|
|
|
|
// analyze -print-cfg-sccs -stats to print the #SCCs and the maximum SCC size.
|
|
|
|
// analyze -print-cfg-sccs -debug > /dev/null to watch the algorithm in action.
|
2005-04-22 05:13:18 +08:00
|
|
|
//
|
2002-11-04 22:20:22 +08:00
|
|
|
// and similarly:
|
2008-09-23 20:47:39 +08:00
|
|
|
// analyze -print-callgraph-sccs [-stats] [-debug] to print SCCs in the CallGraph
|
2005-04-22 05:13:18 +08:00
|
|
|
//
|
2003-09-01 04:01:57 +08:00
|
|
|
// (3) To test the scc_iterator.
|
2003-09-01 03:23:41 +08:00
|
|
|
//
|
2002-11-04 22:20:22 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-12-04 18:44:52 +08:00
|
|
|
#include "llvm/ADT/SCCIterator.h"
|
2002-11-04 22:20:22 +08:00
|
|
|
#include "llvm/Analysis/CallGraph.h"
|
2014-03-04 19:45:46 +08:00
|
|
|
#include "llvm/IR/CFG.h"
|
2013-01-02 19:36:10 +08:00
|
|
|
#include "llvm/IR/Module.h"
|
2012-12-04 18:44:52 +08:00
|
|
|
#include "llvm/Pass.h"
|
2009-07-16 23:30:09 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2004-09-20 12:44:31 +08:00
|
|
|
using namespace llvm;
|
2003-11-12 06:41:34 +08:00
|
|
|
|
2002-11-04 22:20:22 +08:00
|
|
|
namespace {
|
2003-09-01 03:27:11 +08:00
|
|
|
struct CFGSCC : public FunctionPass {
|
2007-05-03 09:11:54 +08:00
|
|
|
static char ID; // Pass identification, replacement for typeid
|
2010-08-07 02:33:48 +08:00
|
|
|
CFGSCC() : FunctionPass(ID) {}
|
2014-03-08 16:27:28 +08:00
|
|
|
bool runOnFunction(Function& func) override;
|
2002-11-04 22:20:22 +08:00
|
|
|
|
2014-04-25 12:24:47 +08:00
|
|
|
void print(raw_ostream &O, const Module* = nullptr) const override { }
|
2002-11-04 22:20:22 +08:00
|
|
|
|
2014-03-08 16:27:28 +08:00
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
2003-09-01 03:27:11 +08:00
|
|
|
AU.setPreservesAll();
|
2003-09-01 03:23:41 +08:00
|
|
|
}
|
2003-09-01 03:27:11 +08:00
|
|
|
};
|
2002-11-04 22:20:22 +08:00
|
|
|
|
2004-09-20 12:44:31 +08:00
|
|
|
struct CallGraphSCC : public ModulePass {
|
2007-05-03 09:11:54 +08:00
|
|
|
static char ID; // Pass identification, replacement for typeid
|
2010-08-07 02:33:48 +08:00
|
|
|
CallGraphSCC() : ModulePass(ID) {}
|
2007-05-02 05:15:47 +08:00
|
|
|
|
2003-09-01 03:27:11 +08:00
|
|
|
// run - Print out SCCs in the call graph for the specified module.
|
2014-03-08 16:27:28 +08:00
|
|
|
bool runOnModule(Module &M) override;
|
2002-11-04 22:20:22 +08:00
|
|
|
|
2014-04-25 12:24:47 +08:00
|
|
|
void print(raw_ostream &O, const Module* = nullptr) const override { }
|
2002-11-04 22:20:22 +08:00
|
|
|
|
2003-09-01 03:27:11 +08:00
|
|
|
// getAnalysisUsage - This pass requires the CallGraph.
|
2014-03-08 16:27:28 +08:00
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
2003-09-01 03:27:11 +08:00
|
|
|
AU.setPreservesAll();
|
2013-11-26 12:19:30 +08:00
|
|
|
AU.addRequired<CallGraphWrapperPass>();
|
2003-09-01 03:27:11 +08:00
|
|
|
}
|
|
|
|
};
|
2010-08-20 09:00:03 +08:00
|
|
|
}
|
2002-11-04 22:20:22 +08:00
|
|
|
|
2010-08-20 09:00:03 +08:00
|
|
|
char CFGSCC::ID = 0;
|
|
|
|
static RegisterPass<CFGSCC>
|
|
|
|
Y("print-cfg-sccs", "Print SCCs of each function CFG");
|
2002-11-04 22:20:22 +08:00
|
|
|
|
2010-08-20 09:00:03 +08:00
|
|
|
char CallGraphSCC::ID = 0;
|
|
|
|
static RegisterPass<CallGraphSCC>
|
|
|
|
Z("print-callgraph-sccs", "Print SCCs of the Call Graph");
|
2003-09-01 03:27:11 +08:00
|
|
|
|
|
|
|
bool CFGSCC::runOnFunction(Function &F) {
|
|
|
|
unsigned sccNum = 0;
|
2010-08-20 09:03:44 +08:00
|
|
|
errs() << "SCCs for Function " << F.getName() << " in PostOrder:";
|
2014-02-05 03:19:07 +08:00
|
|
|
for (scc_iterator<Function*> SCCI = scc_begin(&F); !SCCI.isAtEnd(); ++SCCI) {
|
2014-04-26 02:24:50 +08:00
|
|
|
const std::vector<BasicBlock *> &nextSCC = *SCCI;
|
2010-08-20 09:03:44 +08:00
|
|
|
errs() << "\nSCC #" << ++sccNum << " : ";
|
2003-09-01 03:51:38 +08:00
|
|
|
for (std::vector<BasicBlock*>::const_iterator I = nextSCC.begin(),
|
2003-09-01 03:27:11 +08:00
|
|
|
E = nextSCC.end(); I != E; ++I)
|
2010-08-20 09:03:44 +08:00
|
|
|
errs() << (*I)->getName() << ", ";
|
2003-09-01 03:51:38 +08:00
|
|
|
if (nextSCC.size() == 1 && SCCI.hasLoop())
|
2010-08-20 09:03:44 +08:00
|
|
|
errs() << " (Has self-loop).";
|
2003-09-01 03:27:11 +08:00
|
|
|
}
|
2010-08-20 09:03:44 +08:00
|
|
|
errs() << "\n";
|
2003-09-01 03:27:11 +08:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// run - Print out SCCs in the call graph for the specified module.
|
2004-09-20 12:44:31 +08:00
|
|
|
bool CallGraphSCC::runOnModule(Module &M) {
|
2013-11-27 09:32:17 +08:00
|
|
|
CallGraph &CG = getAnalysis<CallGraphWrapperPass>().getCallGraph();
|
2003-09-01 03:27:11 +08:00
|
|
|
unsigned sccNum = 0;
|
2010-08-20 09:03:44 +08:00
|
|
|
errs() << "SCCs for the program in PostOrder:";
|
2014-02-05 03:19:07 +08:00
|
|
|
for (scc_iterator<CallGraph*> SCCI = scc_begin(&CG); !SCCI.isAtEnd();
|
|
|
|
++SCCI) {
|
2003-09-01 03:55:06 +08:00
|
|
|
const std::vector<CallGraphNode*> &nextSCC = *SCCI;
|
2010-08-20 09:03:44 +08:00
|
|
|
errs() << "\nSCC #" << ++sccNum << " : ";
|
2003-09-01 03:51:38 +08:00
|
|
|
for (std::vector<CallGraphNode*>::const_iterator I = nextSCC.begin(),
|
2003-09-01 03:27:11 +08:00
|
|
|
E = nextSCC.end(); I != E; ++I)
|
2011-11-16 00:27:03 +08:00
|
|
|
errs() << ((*I)->getFunction() ? (*I)->getFunction()->getName()
|
|
|
|
: "external node") << ", ";
|
2003-09-01 03:51:38 +08:00
|
|
|
if (nextSCC.size() == 1 && SCCI.hasLoop())
|
2010-08-20 09:03:44 +08:00
|
|
|
errs() << " (Has self-loop).";
|
2003-09-01 03:27:11 +08:00
|
|
|
}
|
2010-08-20 09:03:44 +08:00
|
|
|
errs() << "\n";
|
2003-09-01 03:27:11 +08:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|