LLVM 19.0.0git
RegionPrinter.cpp
Go to the documentation of this file.
1//===- RegionPrinter.cpp - Print regions tree pass ------------------------===//
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// Print out the region tree of a function using dotty/graphviz.
9//===----------------------------------------------------------------------===//
10
18#ifndef NDEBUG
20#endif
21
22using namespace llvm;
23
24//===----------------------------------------------------------------------===//
25/// onlySimpleRegion - Show only the simple regions in the RegionViewer.
26static cl::opt<bool>
27onlySimpleRegions("only-simple-regions",
28 cl::desc("Show only simple regions in the graphviz viewer"),
30 cl::init(false));
31
32namespace llvm {
33
35 RegionNode *Graph) {
36 if (!Node->isSubRegion()) {
37 BasicBlock *BB = Node->getNodeAs<BasicBlock>();
38
39 if (isSimple())
41 else
43 }
44
45 return "Not implemented";
46}
47
48template <>
50
51 DOTGraphTraits (bool isSimple = false)
53
54 static std::string getGraphName(const RegionInfo *) { return "Region Graph"; }
55
56 std::string getNodeLabel(RegionNode *Node, RegionInfo *G) {
58 Node, reinterpret_cast<RegionNode *>(G->getTopLevelRegion()));
59 }
60
61 std::string getEdgeAttributes(RegionNode *srcNode,
63 RegionInfo *G) {
64 RegionNode *destNode = *CI;
65
66 if (srcNode->isSubRegion() || destNode->isSubRegion())
67 return "";
68
69 // In case of a backedge, do not use it to define the layout of the nodes.
70 BasicBlock *srcBB = srcNode->getNodeAs<BasicBlock>();
71 BasicBlock *destBB = destNode->getNodeAs<BasicBlock>();
72
73 Region *R = G->getRegionFor(destBB);
74
75 while (R && R->getParent())
76 if (R->getParent()->getEntry() == destBB)
77 R = R->getParent();
78 else
79 break;
80
81 if (R && R->getEntry() == destBB && R->contains(srcBB))
82 return "constraint=false";
83
84 return "";
85 }
86
87 // Print the cluster of the subregions. This groups the single basic blocks
88 // and adds a different background color for each group.
90 unsigned depth = 0) {
91 raw_ostream &O = GW.getOStream();
92 O.indent(2 * depth) << "subgraph cluster_" << static_cast<const void*>(&R)
93 << " {\n";
94 O.indent(2 * (depth + 1)) << "label = \"\";\n";
95
96 if (!onlySimpleRegions || R.isSimple()) {
97 O.indent(2 * (depth + 1)) << "style = filled;\n";
98 O.indent(2 * (depth + 1)) << "color = "
99 << ((R.getDepth() * 2 % 12) + 1) << "\n";
100
101 } else {
102 O.indent(2 * (depth + 1)) << "style = solid;\n";
103 O.indent(2 * (depth + 1)) << "color = "
104 << ((R.getDepth() * 2 % 12) + 2) << "\n";
105 }
106
107 for (const auto &RI : R)
108 printRegionCluster(*RI, GW, depth + 1);
109
110 const RegionInfo &RI = *static_cast<const RegionInfo*>(R.getRegionInfo());
111
112 for (auto *BB : R.blocks())
113 if (RI.getRegionFor(BB) == &R)
114 O.indent(2 * (depth + 1)) << "Node"
115 << static_cast<const void*>(RI.getTopLevelRegion()->getBBNode(BB))
116 << ";\n";
117
118 O.indent(2 * depth) << "}\n";
119 }
120
123 raw_ostream &O = GW.getOStream();
124 O << "\tcolorscheme = \"paired12\"\n";
125 printRegionCluster(*G->getTopLevelRegion(), GW, 4);
126 }
127};
128} // end namespace llvm
129
130namespace {
131
132struct RegionInfoPassGraphTraits {
133 static RegionInfo *getGraph(RegionInfoPass *RIP) {
134 return &RIP->getRegionInfo();
135 }
136};
137
138struct RegionPrinter
140 RegionInfoPass, false, RegionInfo *, RegionInfoPassGraphTraits> {
141 static char ID;
142 RegionPrinter()
144 RegionInfoPassGraphTraits>("reg", ID) {
146 }
147};
148char RegionPrinter::ID = 0;
149
150struct RegionOnlyPrinter
152 RegionInfoPass, true, RegionInfo *, RegionInfoPassGraphTraits> {
153 static char ID;
154 RegionOnlyPrinter()
156 RegionInfoPassGraphTraits>("reg", ID) {
158 }
159};
160char RegionOnlyPrinter::ID = 0;
161
162struct RegionViewer
164 RegionInfoPass, false, RegionInfo *, RegionInfoPassGraphTraits> {
165 static char ID;
166 RegionViewer()
168 RegionInfoPassGraphTraits>("reg", ID) {
170 }
171};
172char RegionViewer::ID = 0;
173
174struct RegionOnlyViewer
175 : public DOTGraphTraitsViewerWrapperPass<RegionInfoPass, true, RegionInfo *,
176 RegionInfoPassGraphTraits> {
177 static char ID;
178 RegionOnlyViewer()
180 RegionInfoPassGraphTraits>("regonly",
181 ID) {
183 }
184};
185char RegionOnlyViewer::ID = 0;
186
187} //end anonymous namespace
188
189INITIALIZE_PASS(RegionPrinter, "dot-regions",
190 "Print regions of function to 'dot' file", true, true)
191
193 RegionOnlyPrinter, "dot-regions-only",
194 "Print regions of function to 'dot' file (with no function bodies)", true,
195 true)
196
197INITIALIZE_PASS(RegionViewer, "view-regions", "View regions of function",
198 true, true)
199
200INITIALIZE_PASS(RegionOnlyViewer, "view-regions-only",
201 "View regions of function (with no function bodies)",
202 true, true)
203
204FunctionPass *llvm::createRegionPrinterPass() { return new RegionPrinter(); }
205
207 return new RegionOnlyPrinter();
208}
209
211 return new RegionViewer();
212}
213
215 return new RegionOnlyViewer();
216}
217
218#ifndef NDEBUG
219static void viewRegionInfo(RegionInfo *RI, bool ShortNames) {
220 assert(RI && "Argument must be non-null");
221
222 llvm::Function *F = RI->getTopLevelRegion()->getEntry()->getParent();
223 std::string GraphName = DOTGraphTraits<RegionInfo *>::getGraphName(RI);
224
225 llvm::ViewGraph(RI, "reg", ShortNames,
226 Twine(GraphName) + " for '" + F->getName() + "' function");
227}
228
229static void invokeFunctionPass(const Function *F, FunctionPass *ViewerPass) {
230 assert(F && "Argument must be non-null");
231 assert(!F->isDeclaration() && "Function must have an implementation");
232
233 // The viewer and analysis passes do not modify anything, so we can safely
234 // remove the const qualifier
235 auto NonConstF = const_cast<Function *>(F);
236
237 llvm::legacy::FunctionPassManager FPM(NonConstF->getParent());
238 FPM.add(ViewerPass);
239 FPM.doInitialization();
240 FPM.run(*NonConstF);
241 FPM.doFinalization();
242}
243
245
248}
249
251
254}
255#endif
basic Basic Alias true
Performs the initial survey of the specified function
#define F(x, y, z)
Definition: MD5.cpp:55
#define G(x, y, z)
Definition: MD5.cpp:56
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
Definition: PassSupport.h:38
regions
Definition: RegionInfo.cpp:167
static void viewRegionInfo(RegionInfo *RI, bool ShortNames)
dot regions only
dot regions Print regions of function to dot file(with no function bodies)"
static cl::opt< bool > onlySimpleRegions("only-simple-regions", cl::desc("Show only simple regions in the graphviz viewer"), cl::Hidden, cl::init(false))
onlySimpleRegion - Show only the simple regions in the RegionViewer.
static void invokeFunctionPass(const Function *F, FunctionPass *ViewerPass)
dot regions Print regions of function to dot true
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
static bool isSimple(Instruction *I)
LLVM Basic Block Representation.
Definition: BasicBlock.h:60
FunctionPass class - This class is used to implement most global optimizations.
Definition: Pass.h:311
raw_ostream & getOStream()
getOStream - Get the raw output stream into the graph file.
Definition: GraphWriter.h:353
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
RegionT * getTopLevelRegion() const
Definition: RegionInfo.h:866
RegionT * getRegionFor(BlockT *BB) const
Get the smallest region that contains a BasicBlock.
RegionInfo & getRegionInfo()
Definition: RegionInfo.h:951
bool isSubRegion() const
Is this RegionNode a subregion?
Definition: RegionInfo.h:188
T * getNodeAs() const
Get the content of this RegionNode.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition: Twine.h:81
FunctionPassManager manages FunctionPasses.
bool run(Function &F)
run - Execute all of the passes scheduled for execution.
void add(Pass *P) override
Add a pass to the queue of passes to run.
bool doInitialization()
doInitialization - Run all of the initializers for the function passes.
bool doFinalization()
doFinalization - Run all of the finalizers for the function passes.
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
TargetPassConfig.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition: CallingConv.h:24
initializer< Ty > init(const Ty &Val)
Definition: CommandLine.h:450
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
void initializeRegionViewerPass(PassRegistry &)
FunctionPass * createRegionOnlyViewerPass()
FunctionPass * createRegionPrinterPass()
void initializeRegionOnlyPrinterPass(PassRegistry &)
void initializeRegionOnlyViewerPass(PassRegistry &)
FunctionPass * createRegionOnlyPrinterPass()
void ViewGraph(const GraphType &G, const Twine &Name, bool ShortNames=false, const Twine &Title="", GraphProgram::Name Program=GraphProgram::DOT)
ViewGraph - Emit a dot graph, run 'dot', run gv on the postscript file, then cleanup.
Definition: GraphWriter.h:427
FunctionPass * createRegionViewerPass()
void viewRegion(llvm::RegionInfo *RI)
Open a viewer to display the GraphViz vizualization of the analysis result.
void initializeRegionPrinterPass(PassRegistry &)
void viewRegionOnly(llvm::RegionInfo *RI)
Open a viewer to display the GraphViz vizualization of the analysis result.
static void addCustomGraphFeatures(const RegionInfo *G, GraphWriter< RegionInfo * > &GW)
std::string getNodeLabel(RegionNode *Node, RegionInfo *G)
std::string getEdgeAttributes(RegionNode *srcNode, GraphTraits< RegionInfo * >::ChildIteratorType CI, RegionInfo *G)
static void printRegionCluster(const Region &R, GraphWriter< RegionInfo * > &GW, unsigned depth=0)
static std::string getGraphName(const RegionInfo *)
DOTGraphTraits - Template class that can be specialized to customize how graphs are converted to 'dot...
std::string getNodeLabel(const void *, const GraphType &)
getNodeLabel - Given a node and a pointer to the top level graph, return the label to print in the no...