1 //===-- SelectionDAGPrinter.cpp - Implement SelectionDAG::viewGraph() -----===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This implements the SelectionDAG::viewGraph method.
11 //===----------------------------------------------------------------------===//
13 #include "ScheduleDAGSDNodes.h"
14 #include "llvm/ADT/DenseSet.h"
15 #include "llvm/ADT/StringExtras.h"
16 #include "llvm/CodeGen/MachineConstantPool.h"
17 #include "llvm/CodeGen/MachineFunction.h"
18 #include "llvm/CodeGen/SelectionDAG.h"
19 #include "llvm/CodeGen/TargetRegisterInfo.h"
20 #include "llvm/IR/Constants.h"
21 #include "llvm/Support/Debug.h"
22 #include "llvm/Support/GraphWriter.h"
23 #include "llvm/Support/raw_ostream.h"
24 #include "llvm/Target/TargetMachine.h"
27 #define DEBUG_TYPE "dag-printer"
31 struct DOTGraphTraits
<SelectionDAG
*> : public DefaultDOTGraphTraits
{
33 explicit DOTGraphTraits(bool isSimple
=false) :
34 DefaultDOTGraphTraits(isSimple
) {}
36 static bool hasEdgeDestLabels() {
40 static unsigned numEdgeDestLabels(const void *Node
) {
41 return ((const SDNode
*) Node
)->getNumValues();
44 static std::string
getEdgeDestLabel(const void *Node
, unsigned i
) {
45 return ((const SDNode
*) Node
)->getValueType(i
).getEVTString();
48 template<typename EdgeIter
>
49 static std::string
getEdgeSourceLabel(const void *Node
, EdgeIter I
) {
50 return itostr(I
- SDNodeIterator::begin((const SDNode
*) Node
));
53 /// edgeTargetsEdgeSource - This method returns true if this outgoing edge
54 /// should actually target another edge source, not a node. If this method
55 /// is implemented, getEdgeTarget should be implemented.
56 template<typename EdgeIter
>
57 static bool edgeTargetsEdgeSource(const void *Node
, EdgeIter I
) {
61 /// getEdgeTarget - If edgeTargetsEdgeSource returns true, this method is
62 /// called to determine which outgoing edge of Node is the target of this
64 template<typename EdgeIter
>
65 static EdgeIter
getEdgeTarget(const void *Node
, EdgeIter I
) {
66 SDNode
*TargetNode
= *I
;
67 SDNodeIterator NI
= SDNodeIterator::begin(TargetNode
);
68 std::advance(NI
, I
.getNode()->getOperand(I
.getOperand()).getResNo());
72 static std::string
getGraphName(const SelectionDAG
*G
) {
73 return G
->getMachineFunction().getName();
76 static bool renderGraphFromBottomUp() {
80 static std::string
getNodeIdentifierLabel(const SDNode
*Node
,
81 const SelectionDAG
*Graph
) {
83 raw_string_ostream
OS(R
);
85 OS
<< 't' << Node
->PersistentId
;
87 OS
<< static_cast<const void *>(Node
);
92 /// If you want to override the dot attributes printed for a particular
93 /// edge, override this method.
94 template<typename EdgeIter
>
95 static std::string
getEdgeAttributes(const void *Node
, EdgeIter EI
,
96 const SelectionDAG
*Graph
) {
97 SDValue Op
= EI
.getNode()->getOperand(EI
.getOperand());
98 EVT VT
= Op
.getValueType();
100 return "color=red,style=bold";
101 else if (VT
== MVT::Other
)
102 return "color=blue,style=dashed";
107 static std::string
getSimpleNodeLabel(const SDNode
*Node
,
108 const SelectionDAG
*G
) {
109 std::string Result
= Node
->getOperationName(G
);
111 raw_string_ostream
OS(Result
);
112 Node
->print_details(OS
, G
);
116 std::string
getNodeLabel(const SDNode
*Node
, const SelectionDAG
*Graph
);
117 static std::string
getNodeAttributes(const SDNode
*N
,
118 const SelectionDAG
*Graph
) {
120 const std::string
&Attrs
= Graph
->getGraphAttrs(N
);
121 if (!Attrs
.empty()) {
122 if (Attrs
.find("shape=") == std::string::npos
)
123 return std::string("shape=Mrecord,") + Attrs
;
128 return "shape=Mrecord";
131 static void addCustomGraphFeatures(SelectionDAG
*G
,
132 GraphWriter
<SelectionDAG
*> &GW
) {
133 GW
.emitSimpleNode(nullptr, "plaintext=circle", "GraphRoot");
134 if (G
->getRoot().getNode())
135 GW
.emitEdge(nullptr, -1, G
->getRoot().getNode(), G
->getRoot().getResNo(),
136 "color=blue,style=dashed");
141 std::string DOTGraphTraits
<SelectionDAG
*>::getNodeLabel(const SDNode
*Node
,
142 const SelectionDAG
*G
) {
143 return DOTGraphTraits
<SelectionDAG
*>::getSimpleNodeLabel(Node
, G
);
147 /// viewGraph - Pop up a ghostview window with the reachable parts of the DAG
148 /// rendered using 'dot'.
150 void SelectionDAG::viewGraph(const std::string
&Title
) {
151 // This code is only for debugging!
153 ViewGraph(this, "dag." + getMachineFunction().getName(),
156 errs() << "SelectionDAG::viewGraph is only available in debug builds on "
157 << "systems with Graphviz or gv!\n";
161 // This overload is defined out-of-line here instead of just using a
162 // default parameter because this is easiest for gdb to call.
163 void SelectionDAG::viewGraph() {
167 /// clearGraphAttrs - Clear all previously defined node graph attributes.
168 /// Intended to be used from a debugging tool (eg. gdb).
169 void SelectionDAG::clearGraphAttrs() {
171 NodeGraphAttrs
.clear();
173 errs() << "SelectionDAG::clearGraphAttrs is only available in debug builds"
174 << " on systems with Graphviz or gv!\n";
179 /// setGraphAttrs - Set graph attributes for a node. (eg. "color=red".)
181 void SelectionDAG::setGraphAttrs(const SDNode
*N
, const char *Attrs
) {
183 NodeGraphAttrs
[N
] = Attrs
;
185 errs() << "SelectionDAG::setGraphAttrs is only available in debug builds"
186 << " on systems with Graphviz or gv!\n";
191 /// getGraphAttrs - Get graph attributes for a node. (eg. "color=red".)
192 /// Used from getNodeAttributes.
193 const std::string
SelectionDAG::getGraphAttrs(const SDNode
*N
) const {
195 std::map
<const SDNode
*, std::string
>::const_iterator I
=
196 NodeGraphAttrs
.find(N
);
198 if (I
!= NodeGraphAttrs
.end())
203 errs() << "SelectionDAG::getGraphAttrs is only available in debug builds"
204 << " on systems with Graphviz or gv!\n";
205 return std::string();
209 /// setGraphColor - Convenience for setting node color attribute.
211 void SelectionDAG::setGraphColor(const SDNode
*N
, const char *Color
) {
213 NodeGraphAttrs
[N
] = std::string("color=") + Color
;
215 errs() << "SelectionDAG::setGraphColor is only available in debug builds"
216 << " on systems with Graphviz or gv!\n";
220 /// setSubgraphColorHelper - Implement setSubgraphColor. Return
221 /// whether we truncated the search.
223 bool SelectionDAG::setSubgraphColorHelper(SDNode
*N
, const char *Color
, DenseSet
<SDNode
*> &visited
,
224 int level
, bool &printed
) {
225 bool hit_limit
= false;
231 LLVM_DEBUG(dbgs() << "setSubgraphColor hit max level\n");
236 unsigned oldSize
= visited
.size();
238 if (visited
.size() != oldSize
) {
239 setGraphColor(N
, Color
);
240 for(SDNodeIterator i
= SDNodeIterator::begin(N
), iend
= SDNodeIterator::end(N
);
243 hit_limit
= setSubgraphColorHelper(*i
, Color
, visited
, level
+1, printed
) || hit_limit
;
247 errs() << "SelectionDAG::setSubgraphColor is only available in debug builds"
248 << " on systems with Graphviz or gv!\n";
253 /// setSubgraphColor - Convenience for setting subgraph color attribute.
255 void SelectionDAG::setSubgraphColor(SDNode
*N
, const char *Color
) {
257 DenseSet
<SDNode
*> visited
;
258 bool printed
= false;
259 if (setSubgraphColorHelper(N
, Color
, visited
, 0, printed
)) {
260 // Visually mark that we hit the limit
261 if (strcmp(Color
, "red") == 0) {
262 setSubgraphColorHelper(N
, "blue", visited
, 0, printed
);
263 } else if (strcmp(Color
, "yellow") == 0) {
264 setSubgraphColorHelper(N
, "green", visited
, 0, printed
);
269 errs() << "SelectionDAG::setSubgraphColor is only available in debug builds"
270 << " on systems with Graphviz or gv!\n";
274 std::string
ScheduleDAGSDNodes::getGraphNodeLabel(const SUnit
*SU
) const {
276 raw_string_ostream
O(s
);
277 O
<< "SU(" << SU
->NodeNum
<< "): ";
279 SmallVector
<SDNode
*, 4> GluedNodes
;
280 for (SDNode
*N
= SU
->getNode(); N
; N
= N
->getGluedNode())
281 GluedNodes
.push_back(N
);
282 while (!GluedNodes
.empty()) {
283 O
<< DOTGraphTraits
<SelectionDAG
*>
284 ::getSimpleNodeLabel(GluedNodes
.back(), DAG
);
285 GluedNodes
.pop_back();
286 if (!GluedNodes
.empty())
290 O
<< "CROSS RC COPY";
295 void ScheduleDAGSDNodes::getCustomGraphFeatures(GraphWriter
<ScheduleDAG
*> &GW
) const {
297 // Draw a special "GraphRoot" node to indicate the root of the graph.
298 GW
.emitSimpleNode(nullptr, "plaintext=circle", "GraphRoot");
299 const SDNode
*N
= DAG
->getRoot().getNode();
300 if (N
&& N
->getNodeId() != -1)
301 GW
.emitEdge(nullptr, -1, &SUnits
[N
->getNodeId()], -1,
302 "color=blue,style=dashed");