1 //===- GraphPrinters.cpp - DOT printers for various graph types -----------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines several printers for various different types of graphs used
11 // by the LLVM infrastructure. It uses the generic graph interface to convert
12 // the graph into a .dot graph. These graphs can then be processed with the
13 // "dot" tool to convert them to postscript or some other suitable format.
15 //===----------------------------------------------------------------------===//
17 #include "llvm/Support/GraphWriter.h"
18 #include "llvm/Pass.h"
19 #include "llvm/Value.h"
20 #include "llvm/Analysis/CallGraph.h"
21 #include "llvm/Analysis/Dominators.h"
22 #include "llvm/Support/ToolOutputFile.h"
25 template<typename GraphType
>
26 static void WriteGraphToFile(raw_ostream
&O
, const std::string
&GraphName
,
27 const GraphType
>
) {
28 std::string Filename
= GraphName
+ ".dot";
29 O
<< "Writing '" << Filename
<< "'...";
31 tool_output_file
F(Filename
.c_str(), ErrInfo
);
33 if (ErrInfo
.empty()) {
34 WriteGraph(F
.os(), GT
);
36 if (!F
.os().has_error()) {
42 O
<< " error opening file for writing!\n";
47 //===----------------------------------------------------------------------===//
49 //===----------------------------------------------------------------------===//
53 struct DOTGraphTraits
<CallGraph
*> : public DefaultDOTGraphTraits
{
55 DOTGraphTraits (bool isSimple
=false) : DefaultDOTGraphTraits(isSimple
) {}
57 static std::string
getGraphName(CallGraph
*F
) {
61 static std::string
getNodeLabel(CallGraphNode
*Node
, CallGraph
*Graph
) {
62 if (Node
->getFunction())
63 return ((Value
*)Node
->getFunction())->getName();
65 return "external node";
72 struct CallGraphPrinter
: public ModulePass
{
73 static char ID
; // Pass ID, replacement for typeid
74 CallGraphPrinter() : ModulePass(ID
) {}
76 virtual bool runOnModule(Module
&M
) {
77 WriteGraphToFile(llvm::errs(), "callgraph", &getAnalysis
<CallGraph
>());
81 void print(raw_ostream
&OS
, const llvm::Module
*) const {}
83 virtual void getAnalysisUsage(AnalysisUsage
&AU
) const {
84 AU
.addRequired
<CallGraph
>();
90 char CallGraphPrinter::ID
= 0;
91 static RegisterPass
<CallGraphPrinter
> P2("dot-callgraph",
92 "Print Call Graph to 'dot' file");
94 //===----------------------------------------------------------------------===//
95 // DomInfoPrinter Pass
96 //===----------------------------------------------------------------------===//
99 class DomInfoPrinter
: public FunctionPass
{
101 static char ID
; // Pass identification, replacement for typeid
102 DomInfoPrinter() : FunctionPass(ID
) {}
104 virtual void getAnalysisUsage(AnalysisUsage
&AU
) const {
105 AU
.setPreservesAll();
106 AU
.addRequired
<DominatorTree
>();
107 AU
.addRequired
<DominanceFrontier
>();
111 virtual bool runOnFunction(Function
&F
) {
112 DominatorTree
&DT
= getAnalysis
<DominatorTree
>();
114 DominanceFrontier
&DF
= getAnalysis
<DominanceFrontier
>();
121 char DomInfoPrinter::ID
= 0;
122 static RegisterPass
<DomInfoPrinter
>
123 DIP("print-dom-info", "Dominator Info Printer", true, true);