blob: b2e4617720ff53f3bb100aa0d1dbd719fad4a042 [file] [log] [blame]
Dan Gohman60cb69e2008-11-19 23:18:57 +00001//===-- ScheduleDAGPrinter.cpp - Implement ScheduleDAG::viewGraph() -------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This implements the ScheduleDAG::viewGraph method.
11//
12//===----------------------------------------------------------------------===//
13
Dan Gohman60cb69e2008-11-19 23:18:57 +000014#include "llvm/CodeGen/ScheduleDAG.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/ADT/DenseSet.h"
16#include "llvm/ADT/StringExtras.h"
Dan Gohman60cb69e2008-11-19 23:18:57 +000017#include "llvm/CodeGen/MachineConstantPool.h"
18#include "llvm/CodeGen/MachineFunction.h"
19#include "llvm/CodeGen/MachineModuleInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000020#include "llvm/IR/Constants.h"
Dan Gohman60cb69e2008-11-19 23:18:57 +000021#include "llvm/Support/Debug.h"
22#include "llvm/Support/GraphWriter.h"
23#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000024#include "llvm/Target/TargetRegisterInfo.h"
Dan Gohman60cb69e2008-11-19 23:18:57 +000025#include <fstream>
26using namespace llvm;
27
28namespace llvm {
29 template<>
30 struct DOTGraphTraits<ScheduleDAG*> : public DefaultDOTGraphTraits {
Tobias Grosser90d33402009-11-30 12:38:13 +000031
32 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {}
33
Dan Gohman60cb69e2008-11-19 23:18:57 +000034 static std::string getGraphName(const ScheduleDAG *G) {
Craig Toppera538d832012-08-22 06:07:19 +000035 return G->MF.getName();
Dan Gohman60cb69e2008-11-19 23:18:57 +000036 }
37
38 static bool renderGraphFromBottomUp() {
39 return true;
40 }
Andrew Trick5297d8d2012-03-07 00:18:15 +000041
Andrew Trickb36388a2013-01-25 07:45:25 +000042 static bool isNodeHidden(const SUnit *Node) {
43 return (Node->NumPreds > 10 || Node->NumSuccs > 10);
44 }
45
Dan Gohman60cb69e2008-11-19 23:18:57 +000046 static bool hasNodeAddressLabel(const SUnit *Node,
47 const ScheduleDAG *Graph) {
48 return true;
49 }
Andrew Trick5297d8d2012-03-07 00:18:15 +000050
Dan Gohman60cb69e2008-11-19 23:18:57 +000051 /// If you want to override the dot attributes printed for a particular
52 /// edge, override this method.
Dan Gohmancb6accf2008-12-16 00:55:00 +000053 static std::string getEdgeAttributes(const SUnit *Node,
Tobias Grosser3ac86892011-02-27 04:11:03 +000054 SUnitIterator EI,
55 const ScheduleDAG *Graph) {
Dan Gohman67b35bd2008-11-21 02:18:56 +000056 if (EI.isArtificialDep())
Dan Gohman60cb69e2008-11-19 23:18:57 +000057 return "color=cyan,style=dashed";
58 if (EI.isCtrlDep())
59 return "color=blue,style=dashed";
60 return "";
61 }
Andrew Trick5297d8d2012-03-07 00:18:15 +000062
Dan Gohman60cb69e2008-11-19 23:18:57 +000063
Tobias Grosserdd7f2e72009-11-30 12:38:47 +000064 std::string getNodeLabel(const SUnit *Node, const ScheduleDAG *Graph);
Dan Gohman60cb69e2008-11-19 23:18:57 +000065 static std::string getNodeAttributes(const SUnit *N,
66 const ScheduleDAG *Graph) {
67 return "shape=Mrecord";
68 }
69
70 static void addCustomGraphFeatures(ScheduleDAG *G,
71 GraphWriter<ScheduleDAG*> &GW) {
72 return G->addCustomGraphFeatures(GW);
73 }
74 };
75}
76
77std::string DOTGraphTraits<ScheduleDAG*>::getNodeLabel(const SUnit *SU,
Tobias Grosserdd7f2e72009-11-30 12:38:47 +000078 const ScheduleDAG *G) {
Dan Gohman60cb69e2008-11-19 23:18:57 +000079 return G->getGraphNodeLabel(SU);
80}
81
82/// viewGraph - Pop up a ghostview window with the reachable parts of the DAG
83/// rendered using 'dot'.
84///
Andrew Trick1b2324d2012-03-07 00:18:22 +000085void ScheduleDAG::viewGraph(const Twine &Name, const Twine &Title) {
86 // This code is only for debugging!
Dan Gohman60cb69e2008-11-19 23:18:57 +000087#ifndef NDEBUG
Andrew Trick1b2324d2012-03-07 00:18:22 +000088 ViewGraph(this, Name, false, Title);
Dan Gohman60cb69e2008-11-19 23:18:57 +000089#else
Daniel Dunbar34ee2032009-08-23 08:50:52 +000090 errs() << "ScheduleDAG::viewGraph is only available in debug builds on "
91 << "systems with Graphviz or gv!\n";
Dan Gohman60cb69e2008-11-19 23:18:57 +000092#endif // NDEBUG
93}
Andrew Trick1b2324d2012-03-07 00:18:22 +000094
95/// Out-of-line implementation with no arguments is handy for gdb.
96void ScheduleDAG::viewGraph() {
97 viewGraph(getDAGName(), "Scheduling-Units Graph for " + getDAGName());
98}