blob: 6d2750f5e2eb2931b9683e1e5863c4fb8aab08a3 [file] [log] [blame]
Chris Lattnerac859db2002-10-07 18:38:01 +00001//===- GraphPrinters.cpp - DOT printers for various graph types -----------===//
John Criswell7c0e0222003-10-20 17:47: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//===----------------------------------------------------------------------===//
Chris Lattnerac859db2002-10-07 18:38:01 +00009//
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.
14//
15//===----------------------------------------------------------------------===//
16
17#include "Support/GraphWriter.h"
18#include "llvm/Pass.h"
Chris Lattner3b395372003-10-22 16:02:58 +000019#include "llvm/Value.h"
Chris Lattnerf7482542002-11-04 02:55:30 +000020#include "llvm/Analysis/CallGraph.h"
Chris Lattnerac859db2002-10-07 18:38:01 +000021#include <fstream>
22
Brian Gaeked0fde302003-11-11 22:41:34 +000023namespace llvm {
24
Chris Lattnerac859db2002-10-07 18:38:01 +000025template<typename GraphType>
26static void WriteGraphToFile(std::ostream &O, const std::string &GraphName,
27 const GraphType &GT) {
28 std::string Filename = GraphName + ".dot";
29 O << "Writing '" << Filename << "'...";
30 std::ofstream F(Filename.c_str());
31
32 if (F.good())
33 WriteGraph(F, GT);
34 else
35 O << " error opening file for writing!";
36 O << "\n";
37}
38
39
Chris Lattnerf7482542002-11-04 02:55:30 +000040//===----------------------------------------------------------------------===//
41// Call Graph Printer
42//===----------------------------------------------------------------------===//
43
44template<>
45struct DOTGraphTraits<CallGraph*> : public DefaultDOTGraphTraits {
46 static std::string getGraphName(CallGraph *F) {
47 return "Call Graph";
48 }
49
50 static std::string getNodeLabel(CallGraphNode *Node, CallGraph *Graph) {
51 if (Node->getFunction())
Chris Lattner3b395372003-10-22 16:02:58 +000052 return ((Value*)Node->getFunction())->getName();
Chris Lattnerf7482542002-11-04 02:55:30 +000053 else
54 return "Indirect call node";
55 }
56};
57
58
59namespace {
60 struct CallGraphPrinter : public Pass {
61 virtual bool run(Module &M) {
62 WriteGraphToFile(std::cerr, "callgraph", &getAnalysis<CallGraph>());
63 return false;
64 }
65
66 void print(std::ostream &OS) const {}
67
68 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
69 AU.addRequired<CallGraph>();
70 AU.setPreservesAll();
71 }
72 };
73
74 RegisterAnalysis<CallGraphPrinter> P2("print-callgraph",
75 "Print Call Graph to 'dot' file");
76};
Brian Gaeked0fde302003-11-11 22:41:34 +000077
78} // End llvm namespace