Naming consistency.
[oota-llvm.git] / lib / CodeGen / SelectionDAG / SelectionDAGPrinter.cpp
1 //===-- SelectionDAGPrinter.cpp - Implement SelectionDAG::viewGraph() -----===//
2 //
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 //===----------------------------------------------------------------------===//
9 //
10 // This implements the SelectionDAG::viewGraph method.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/Constants.h"
15 #include "llvm/Function.h"
16 #include "llvm/Assembly/Writer.h"
17 #include "llvm/CodeGen/SelectionDAG.h"
18 #include "llvm/CodeGen/MachineConstantPool.h"
19 #include "llvm/CodeGen/MachineFunction.h"
20 #include "llvm/Target/MRegisterInfo.h"
21 #include "llvm/Target/TargetMachine.h"
22 #include "llvm/Support/GraphWriter.h"
23 #include "llvm/ADT/StringExtras.h"
24 #include "llvm/Config/config.h"
25 #include <fstream>
26 #include <sstream>
27 using namespace llvm;
28
29 namespace llvm {
30   template<>
31   struct DOTGraphTraits<SelectionDAG*> : public DefaultDOTGraphTraits {
32     static std::string getGraphName(const SelectionDAG *G) {
33       return G->getMachineFunction().getFunction()->getName();
34     }
35
36     static bool renderGraphFromBottomUp() {
37       return true;
38     }
39     
40     static bool hasNodeAddressLabel(const SDNode *Node,
41                                     const SelectionDAG *Graph) {
42       return true;
43     }
44
45     static std::string getNodeLabel(const SDNode *Node,
46                                     const SelectionDAG *Graph);
47     static std::string getNodeAttributes(const SDNode *N,
48                                          const SelectionDAG *Graph) {
49 #ifndef NDEBUG
50       const std::string &Attrs = Graph->getGraphAttrs(N);
51       if (!Attrs.empty()) {
52         if (Attrs.find("shape=") == std::string::npos)
53           return std::string("shape=Mrecord,") + Attrs;
54         else
55           return Attrs;
56       }
57 #endif
58       return "shape=Mrecord";
59     }
60
61     static void addCustomGraphFeatures(SelectionDAG *G,
62                                        GraphWriter<SelectionDAG*> &GW) {
63       GW.emitSimpleNode(0, "plaintext=circle", "GraphRoot");
64       GW.emitEdge(0, -1, G->getRoot().Val, -1, "");
65     }
66   };
67 }
68
69 std::string DOTGraphTraits<SelectionDAG*>::getNodeLabel(const SDNode *Node,
70                                                         const SelectionDAG *G) {
71   std::string Op = Node->getOperationName(G);
72
73   for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
74     if (Node->getValueType(i) == MVT::Other)
75       Op += ":ch";
76     else
77       Op = Op + ":" + MVT::getValueTypeString(Node->getValueType(i));
78     
79   if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(Node)) {
80     Op += ": " + utostr(CSDN->getValue());
81   } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(Node)) {
82     Op += ": " + ftostr(CSDN->getValue());
83   } else if (const GlobalAddressSDNode *GADN =
84              dyn_cast<GlobalAddressSDNode>(Node)) {
85     int offset = GADN->getOffset();
86     Op += ": " + GADN->getGlobal()->getName();
87     if (offset > 0)
88       Op += "+" + itostr(offset);
89     else
90       Op += itostr(offset);
91   } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(Node)) {
92     Op += " " + itostr(FIDN->getIndex());
93   } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Node)){
94     if (CP->isMachineConstantPoolEntry()) {
95       std::ostringstream SS;
96       CP->getMachineCPVal()->print(SS);
97       Op += "<" + SS.str() + ">";
98     } else {
99       if (ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
100         Op += "<" + ftostr(CFP->getValue()) + ">";
101       else if (ConstantInt *CI = dyn_cast<ConstantInt>(CP->getConstVal()))
102         Op += "<" + utostr(CI->getZExtValue()) + ">";
103       else {
104         std::ostringstream SS;
105         WriteAsOperand(SS, CP->getConstVal(), false);
106         Op += "<" + SS.str() + ">";
107       }
108     }
109   } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(Node)) {
110     Op = "BB: ";
111     const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
112     if (LBB)
113       Op += LBB->getName();
114     //Op += " " + (const void*)BBDN->getBasicBlock();
115   } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(Node)) {
116     if (G && R->getReg() != 0 && MRegisterInfo::isPhysicalRegister(R->getReg())) {
117       Op = Op + " " + G->getTarget().getRegisterInfo()->getName(R->getReg());
118     } else {
119       Op += " #" + utostr(R->getReg());
120     }
121   } else if (const ExternalSymbolSDNode *ES =
122              dyn_cast<ExternalSymbolSDNode>(Node)) {
123     Op += "'" + std::string(ES->getSymbol()) + "'";
124   } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(Node)) {
125     if (M->getValue())
126       Op += "<" + M->getValue()->getName() + ":" + itostr(M->getOffset()) + ">";
127     else
128       Op += "<null:" + itostr(M->getOffset()) + ">";
129   } else if (const VTSDNode *N = dyn_cast<VTSDNode>(Node)) {
130     Op = Op + " VT=" + getValueTypeString(N->getVT());
131   } else if (const StringSDNode *N = dyn_cast<StringSDNode>(Node)) {
132     Op = Op + "\"" + N->getValue() + "\"";
133   } else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(Node)) {
134     bool doExt = true;
135     switch (LD->getExtensionType()) {
136     default: doExt = false; break;
137     case ISD::EXTLOAD:
138       Op = Op + "<anyext ";
139       break;
140     case ISD::SEXTLOAD:
141       Op = Op + " <sext ";
142       break;
143     case ISD::ZEXTLOAD:
144       Op = Op + " <zext ";
145       break;
146     }
147     if (doExt)
148       Op = Op + MVT::getValueTypeString(LD->getLoadedVT()) + ">";
149
150     if (LD->getAddressingMode() == ISD::PRE_INDEXED)
151       Op = Op + "<pre>";
152     else if (LD->getAddressingMode() == ISD::POST_INDEXED)
153       Op = Op + "<post>";
154   }
155   
156   return Op;
157 }
158
159
160 /// viewGraph - Pop up a ghostview window with the reachable parts of the DAG
161 /// rendered using 'dot'.
162 ///
163 void SelectionDAG::viewGraph() {
164 // This code is only for debugging!
165 #ifndef NDEBUG
166   ViewGraph(this, "dag." + getMachineFunction().getFunction()->getName());
167 #else
168   std::cerr << "SelectionDAG::viewGraph is only available in debug builds on "
169             << "systems with Graphviz or gv!\n";
170 #endif  // NDEBUG
171 }
172
173
174 /// clearGraphAttrs - Clear all previously defined node graph attributes.
175 /// Intended to be used from a debugging tool (eg. gdb).
176 void SelectionDAG::clearGraphAttrs() {
177 #ifndef NDEBUG
178   NodeGraphAttrs.clear();
179 #else
180   std::cerr << "SelectionDAG::clearGraphAttrs is only available in debug builds"
181             << " on systems with Graphviz or gv!\n";
182 #endif
183 }
184
185
186 /// setGraphAttrs - Set graph attributes for a node. (eg. "color=red".)
187 ///
188 void SelectionDAG::setGraphAttrs(const SDNode *N, const char *Attrs) {
189 #ifndef NDEBUG
190   NodeGraphAttrs[N] = Attrs;
191 #else
192   std::cerr << "SelectionDAG::setGraphAttrs is only available in debug builds"
193             << " on systems with Graphviz or gv!\n";
194 #endif
195 }
196
197
198 /// getGraphAttrs - Get graph attributes for a node. (eg. "color=red".)
199 /// Used from getNodeAttributes.
200 const std::string SelectionDAG::getGraphAttrs(const SDNode *N) const {
201 #ifndef NDEBUG
202   std::map<const SDNode *, std::string>::const_iterator I =
203     NodeGraphAttrs.find(N);
204     
205   if (I != NodeGraphAttrs.end())
206     return I->second;
207   else
208     return "";
209 #else
210   std::cerr << "SelectionDAG::getGraphAttrs is only available in debug builds"
211             << " on systems with Graphviz or gv!\n";
212   return std::string("");
213 #endif
214 }
215
216 /// setGraphColor - Convenience for setting node color attribute.
217 ///
218 void SelectionDAG::setGraphColor(const SDNode *N, const char *Color) {
219 #ifndef NDEBUG
220   NodeGraphAttrs[N] = std::string("color=") + Color;
221 #else
222   std::cerr << "SelectionDAG::setGraphColor is only available in debug builds"
223             << " on systems with Graphviz or gv!\n";
224 #endif
225 }
226