blob: 345938115871d51c33e3c40d3fa8e4b2cd81a853 [file] [log] [blame]
Chris Lattner23ebd752003-08-31 19:23:41 +00001//===- PrintSCC.cpp - Enumerate SCCs in some key graphs -------------------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Vikram S. Advec405daf2002-11-04 14:20:22 +00009//
10// This file provides passes to print out SCCs in a CFG or a CallGraph.
11// Normally, you would not use these passes; instead, you would use the
Chris Lattner55b2eb32003-08-31 20:01:57 +000012// scc_iterator directly to enumerate SCCs and process them in some way. These
13// passes serve three purposes:
14//
15// (1) As a reference for how to use the scc_iterator.
Vikram S. Advec405daf2002-11-04 14:20:22 +000016// (2) To print out the SCCs for a CFG or a CallGraph:
17// analyze -cfgscc to print the SCCs in each CFG of a module.
18// analyze -cfgscc -stats to print the #SCCs and the maximum SCC size.
19// analyze -cfgscc -debug > /dev/null to watch the algorithm in action.
20//
21// and similarly:
22// analyze -callscc [-stats] [-debug] to print SCCs in the CallGraph
23//
Chris Lattner55b2eb32003-08-31 20:01:57 +000024// (3) To test the scc_iterator.
Chris Lattner23ebd752003-08-31 19:23:41 +000025//
Vikram S. Advec405daf2002-11-04 14:20:22 +000026//===----------------------------------------------------------------------===//
27
28#include "llvm/Pass.h"
29#include "llvm/Module.h"
Vikram S. Advec405daf2002-11-04 14:20:22 +000030#include "llvm/Analysis/CallGraph.h"
31#include "llvm/Support/CFG.h"
Chris Lattner55b2eb32003-08-31 20:01:57 +000032#include "Support/SCCIterator.h"
Vikram S. Advec405daf2002-11-04 14:20:22 +000033
34namespace {
Chris Lattner8d0a23a2003-08-31 19:27:11 +000035 struct CFGSCC : public FunctionPass {
36 bool runOnFunction(Function& func);
37
38 void print(std::ostream &O) const { }
39
40 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
41 AU.setPreservesAll();
Chris Lattner23ebd752003-08-31 19:23:41 +000042 }
Chris Lattner8d0a23a2003-08-31 19:27:11 +000043 };
Vikram S. Advec405daf2002-11-04 14:20:22 +000044
Chris Lattner8d0a23a2003-08-31 19:27:11 +000045 struct CallGraphSCC : public Pass {
46 // run - Print out SCCs in the call graph for the specified module.
47 bool run(Module &M);
Vikram S. Advec405daf2002-11-04 14:20:22 +000048
Chris Lattner8d0a23a2003-08-31 19:27:11 +000049 void print(std::ostream &O) const { }
Vikram S. Advec405daf2002-11-04 14:20:22 +000050
Chris Lattner8d0a23a2003-08-31 19:27:11 +000051 // getAnalysisUsage - This pass requires the CallGraph.
52 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
53 AU.setPreservesAll();
54 AU.addRequired<CallGraph>();
Chris Lattner23ebd752003-08-31 19:23:41 +000055 }
Chris Lattner8d0a23a2003-08-31 19:27:11 +000056 };
Vikram S. Advec405daf2002-11-04 14:20:22 +000057
Chris Lattner23ebd752003-08-31 19:23:41 +000058 RegisterAnalysis<CFGSCC>
59 Y("cfgscc", "Print SCCs of each function CFG");
Vikram S. Advec405daf2002-11-04 14:20:22 +000060
Chris Lattner23ebd752003-08-31 19:23:41 +000061 RegisterAnalysis<CallGraphSCC>
62 Z("callscc", "Print SCCs of the Call Graph");
Vikram S. Advec405daf2002-11-04 14:20:22 +000063}
Chris Lattner8d0a23a2003-08-31 19:27:11 +000064
65bool CFGSCC::runOnFunction(Function &F) {
66 unsigned sccNum = 0;
67 std::cout << "SCCs for Function " << F.getName() << " in PostOrder:";
Chris Lattner55b2eb32003-08-31 20:01:57 +000068 for (scc_iterator<Function*> SCCI = scc_begin(&F),
69 E = scc_end(&F); SCCI != E; ++SCCI) {
Chris Lattner729d73d2003-08-31 19:55:06 +000070 std::vector<BasicBlock*> &nextSCC = *SCCI;
Chris Lattner8d0a23a2003-08-31 19:27:11 +000071 std::cout << "\nSCC #" << ++sccNum << " : ";
Chris Lattner9f2a06e2003-08-31 19:51:38 +000072 for (std::vector<BasicBlock*>::const_iterator I = nextSCC.begin(),
Chris Lattner8d0a23a2003-08-31 19:27:11 +000073 E = nextSCC.end(); I != E; ++I)
74 std::cout << (*I)->getName() << ", ";
Chris Lattner9f2a06e2003-08-31 19:51:38 +000075 if (nextSCC.size() == 1 && SCCI.hasLoop())
Chris Lattner8d0a23a2003-08-31 19:27:11 +000076 std::cout << " (Has self-loop).";
77 }
78 std::cout << "\n";
79
80 return true;
81}
82
83
84// run - Print out SCCs in the call graph for the specified module.
85bool CallGraphSCC::run(Module &M) {
86 CallGraphNode* rootNode = getAnalysis<CallGraph>().getRoot();
87 unsigned sccNum = 0;
88 std::cout << "SCCs for the program in PostOrder:";
Chris Lattner55b2eb32003-08-31 20:01:57 +000089 for (scc_iterator<CallGraphNode*> SCCI = scc_begin(rootNode),
90 E = scc_end(rootNode); SCCI != E; ++SCCI) {
Chris Lattner729d73d2003-08-31 19:55:06 +000091 const std::vector<CallGraphNode*> &nextSCC = *SCCI;
Chris Lattner8d0a23a2003-08-31 19:27:11 +000092 std::cout << "\nSCC #" << ++sccNum << " : ";
Chris Lattner9f2a06e2003-08-31 19:51:38 +000093 for (std::vector<CallGraphNode*>::const_iterator I = nextSCC.begin(),
Chris Lattner8d0a23a2003-08-31 19:27:11 +000094 E = nextSCC.end(); I != E; ++I)
95 std::cout << ((*I)->getFunction() ? (*I)->getFunction()->getName()
96 : std::string("Indirect CallGraph node")) << ", ";
Chris Lattner9f2a06e2003-08-31 19:51:38 +000097 if (nextSCC.size() == 1 && SCCI.hasLoop())
Chris Lattner8d0a23a2003-08-31 19:27:11 +000098 std::cout << " (Has self-loop).";
99 }
100 std::cout << "\n";
101
102 return true;
103}