1 //===-- SelectionDAGPrinter.cpp - Implement SelectionDAG::viewGraph() -----===// 2 // 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 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This implements the SelectionDAG::viewGraph method. 10 // 11 //===----------------------------------------------------------------------===// 12 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" 25 using namespace llvm; 26 27 #define DEBUG_TYPE "dag-printer" 28 29 namespace llvm { 30 template<> 31 struct DOTGraphTraits<SelectionDAG*> : public DefaultDOTGraphTraits { 32 33 explicit DOTGraphTraits(bool isSimple=false) : 34 DefaultDOTGraphTraits(isSimple) {} 35 36 static bool hasEdgeDestLabels() { 37 return true; 38 } 39 40 static unsigned numEdgeDestLabels(const void *Node) { 41 return ((const SDNode *) Node)->getNumValues(); 42 } 43 44 static std::string getEdgeDestLabel(const void *Node, unsigned i) { 45 return ((const SDNode *) Node)->getValueType(i).getEVTString(); 46 } 47 48 template<typename EdgeIter> 49 static std::string getEdgeSourceLabel(const void *Node, EdgeIter I) { 50 return itostr(I - SDNodeIterator::begin((const SDNode *) Node)); 51 } 52 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) { 58 return true; 59 } 60 61 /// getEdgeTarget - If edgeTargetsEdgeSource returns true, this method is 62 /// called to determine which outgoing edge of Node is the target of this 63 /// edge. 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()); 69 return NI; 70 } 71 72 static std::string getGraphName(const SelectionDAG *G) { 73 return G->getMachineFunction().getName(); 74 } 75 76 static bool renderGraphFromBottomUp() { 77 return true; 78 } 79 80 static std::string getNodeIdentifierLabel(const SDNode *Node, 81 const SelectionDAG *Graph) { 82 std::string R; 83 raw_string_ostream OS(R); 84 #ifndef NDEBUG 85 OS << 't' << Node->PersistentId; 86 #else 87 OS << static_cast<const void *>(Node); 88 #endif 89 return R; 90 } 91 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(); 99 if (VT == MVT::Glue) 100 return "color=red,style=bold"; 101 else if (VT == MVT::Other) 102 return "color=blue,style=dashed"; 103 return ""; 104 } 105 106 107 static std::string getSimpleNodeLabel(const SDNode *Node, 108 const SelectionDAG *G) { 109 std::string Result = Node->getOperationName(G); 110 { 111 raw_string_ostream OS(Result); 112 Node->print_details(OS, G); 113 } 114 return Result; 115 } 116 std::string getNodeLabel(const SDNode *Node, const SelectionDAG *Graph); 117 static std::string getNodeAttributes(const SDNode *N, 118 const SelectionDAG *Graph) { 119 #ifndef NDEBUG 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; 124 else 125 return Attrs; 126 } 127 #endif 128 return "shape=Mrecord"; 129 } 130 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"); 137 } 138 }; 139 } 140 141 std::string DOTGraphTraits<SelectionDAG*>::getNodeLabel(const SDNode *Node, 142 const SelectionDAG *G) { 143 return DOTGraphTraits<SelectionDAG*>::getSimpleNodeLabel(Node, G); 144 } 145 146 147 /// viewGraph - Pop up a ghostview window with the reachable parts of the DAG 148 /// rendered using 'dot'. 149 /// 150 void SelectionDAG::viewGraph(const std::string &Title) { 151 // This code is only for debugging! 152 #ifndef NDEBUG 153 ViewGraph(this, "dag." + getMachineFunction().getName(), 154 false, Title); 155 #else 156 errs() << "SelectionDAG::viewGraph is only available in debug builds on " 157 << "systems with Graphviz or gv!\n"; 158 #endif // NDEBUG 159 } 160 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() { 164 viewGraph(""); 165 } 166 167 /// clearGraphAttrs - Clear all previously defined node graph attributes. 168 /// Intended to be used from a debugging tool (eg. gdb). 169 void SelectionDAG::clearGraphAttrs() { 170 #ifndef NDEBUG 171 NodeGraphAttrs.clear(); 172 #else 173 errs() << "SelectionDAG::clearGraphAttrs is only available in debug builds" 174 << " on systems with Graphviz or gv!\n"; 175 #endif 176 } 177 178 179 /// setGraphAttrs - Set graph attributes for a node. (eg. "color=red".) 180 /// 181 void SelectionDAG::setGraphAttrs(const SDNode *N, const char *Attrs) { 182 #ifndef NDEBUG 183 NodeGraphAttrs[N] = Attrs; 184 #else 185 errs() << "SelectionDAG::setGraphAttrs is only available in debug builds" 186 << " on systems with Graphviz or gv!\n"; 187 #endif 188 } 189 190 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 { 194 #ifndef NDEBUG 195 std::map<const SDNode *, std::string>::const_iterator I = 196 NodeGraphAttrs.find(N); 197 198 if (I != NodeGraphAttrs.end()) 199 return I->second; 200 else 201 return ""; 202 #else 203 errs() << "SelectionDAG::getGraphAttrs is only available in debug builds" 204 << " on systems with Graphviz or gv!\n"; 205 return std::string(); 206 #endif 207 } 208 209 /// setGraphColor - Convenience for setting node color attribute. 210 /// 211 void SelectionDAG::setGraphColor(const SDNode *N, const char *Color) { 212 #ifndef NDEBUG 213 NodeGraphAttrs[N] = std::string("color=") + Color; 214 #else 215 errs() << "SelectionDAG::setGraphColor is only available in debug builds" 216 << " on systems with Graphviz or gv!\n"; 217 #endif 218 } 219 220 /// setSubgraphColorHelper - Implement setSubgraphColor. Return 221 /// whether we truncated the search. 222 /// 223 bool SelectionDAG::setSubgraphColorHelper(SDNode *N, const char *Color, DenseSet<SDNode *> &visited, 224 int level, bool &printed) { 225 bool hit_limit = false; 226 227 #ifndef NDEBUG 228 if (level >= 20) { 229 if (!printed) { 230 printed = true; 231 LLVM_DEBUG(dbgs() << "setSubgraphColor hit max level\n"); 232 } 233 return true; 234 } 235 236 unsigned oldSize = visited.size(); 237 visited.insert(N); 238 if (visited.size() != oldSize) { 239 setGraphColor(N, Color); 240 for(SDNodeIterator i = SDNodeIterator::begin(N), iend = SDNodeIterator::end(N); 241 i != iend; 242 ++i) { 243 hit_limit = setSubgraphColorHelper(*i, Color, visited, level+1, printed) || hit_limit; 244 } 245 } 246 #else 247 errs() << "SelectionDAG::setSubgraphColor is only available in debug builds" 248 << " on systems with Graphviz or gv!\n"; 249 #endif 250 return hit_limit; 251 } 252 253 /// setSubgraphColor - Convenience for setting subgraph color attribute. 254 /// 255 void SelectionDAG::setSubgraphColor(SDNode *N, const char *Color) { 256 #ifndef NDEBUG 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); 265 } 266 } 267 268 #else 269 errs() << "SelectionDAG::setSubgraphColor is only available in debug builds" 270 << " on systems with Graphviz or gv!\n"; 271 #endif 272 } 273 274 std::string ScheduleDAGSDNodes::getGraphNodeLabel(const SUnit *SU) const { 275 std::string s; 276 raw_string_ostream O(s); 277 O << "SU(" << SU->NodeNum << "): "; 278 if (SU->getNode()) { 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()) 287 O << "\n "; 288 } 289 } else { 290 O << "CROSS RC COPY"; 291 } 292 return O.str(); 293 } 294 295 void ScheduleDAGSDNodes::getCustomGraphFeatures(GraphWriter<ScheduleDAG*> &GW) const { 296 if (DAG) { 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"); 303 } 304 } 305