28 cl::desc(
"Show only simple regions in the graphviz viewer"),
36 if (!
Node->isSubRegion()) {
45 return "Not implemented";
73 Region *R =
G->getRegionFor(destBB);
75 while (R && R->getParent())
76 if (R->getParent()->getEntry() == destBB)
81 if (R && R->getEntry() == destBB && R->contains(srcBB))
82 return "constraint=false";
92 O.indent(2 * depth) <<
"subgraph cluster_" <<
static_cast<const void*
>(&R)
94 O.indent(2 * (depth + 1)) <<
"label = \"\";\n";
97 O.indent(2 * (depth + 1)) <<
"style = filled;\n";
98 O.indent(2 * (depth + 1)) <<
"color = "
99 << ((R.getDepth() * 2 % 12) + 1) <<
"\n";
102 O.indent(2 * (depth + 1)) <<
"style = solid;\n";
103 O.indent(2 * (depth + 1)) <<
"color = "
104 << ((R.getDepth() * 2 % 12) + 2) <<
"\n";
107 for (
const auto &RI : R)
112 for (
auto *BB : R.blocks())
114 O.indent(2 * (depth + 1)) <<
"Node"
118 O.indent(2 * depth) <<
"}\n";
124 O <<
"\tcolorscheme = \"paired12\"\n";
132struct RegionInfoPassGraphTraits {
133 static RegionInfo *getGraph(RegionInfoPass *RIP) {
139 :
public DOTGraphTraitsPrinterWrapperPass<
140 RegionInfoPass, false, RegionInfo *, RegionInfoPassGraphTraits> {
143 : DOTGraphTraitsPrinterWrapperPass<RegionInfoPass,
false, RegionInfo *,
144 RegionInfoPassGraphTraits>(
"reg",
ID) {
147char RegionPrinter::ID = 0;
149struct RegionOnlyPrinter
150 :
public DOTGraphTraitsPrinterWrapperPass<
151 RegionInfoPass, true, RegionInfo *, RegionInfoPassGraphTraits> {
154 : DOTGraphTraitsPrinterWrapperPass<RegionInfoPass,
true, RegionInfo *,
155 RegionInfoPassGraphTraits>(
"reg",
ID) {
158char RegionOnlyPrinter::ID = 0;
161 :
public DOTGraphTraitsViewerWrapperPass<
162 RegionInfoPass, false, RegionInfo *, RegionInfoPassGraphTraits> {
165 : DOTGraphTraitsViewerWrapperPass<RegionInfoPass,
false, RegionInfo *,
166 RegionInfoPassGraphTraits>(
"reg",
ID) {}
168char RegionViewer::ID = 0;
170struct RegionOnlyViewer
171 :
public DOTGraphTraitsViewerWrapperPass<RegionInfoPass, true, RegionInfo *,
172 RegionInfoPassGraphTraits> {
175 : DOTGraphTraitsViewerWrapperPass<RegionInfoPass,
true, RegionInfo *,
176 RegionInfoPassGraphTraits>(
"regonly",
179char RegionOnlyViewer::ID = 0;
184 "Print regions of function to 'dot' file",
true,
true)
187 RegionOnlyPrinter,
"dot-regions-only",
188 "Print regions of function to 'dot' file (with no function bodies)",
true,
195 "View regions of function (with no function bodies)",
201 return new RegionOnlyPrinter();
205 return new RegionViewer();
209 return new RegionOnlyViewer();
214 assert(RI &&
"Argument must be non-null");
220 Twine(GraphName) +
" for '" +
F->getName() +
"' function");
224 assert(
F &&
"Argument must be non-null");
225 assert(!
F->isDeclaration() &&
"Function must have an implementation");
229 auto NonConstF =
const_cast<Function *
>(
F);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
Function Alias Analysis false
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
static void viewRegionInfo(RegionInfo *RI, bool ShortNames)
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)
static bool isSimple(Instruction *I)
LLVM Basic Block Representation.
FunctionPass class - This class is used to implement most global optimizations.
raw_ostream & getOStream()
getOStream - Get the raw output stream into the graph file.
RegionT * getTopLevelRegion() const
RegionT * getRegionFor(BlockT *BB) const
Get the smallest region that contains a BasicBlock.
RegionInfo & getRegionInfo()
bool isSubRegion() const
Is this RegionNode a subregion?
BasicBlock * getNodeAs() const
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
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.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI FunctionPass * createRegionOnlyViewerPass()
LLVM_ABI FunctionPass * createRegionPrinterPass()
LLVM_ABI 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.
LLVM_ABI FunctionPass * createRegionViewerPass()
void viewRegion(llvm::RegionInfo *RI)
Open a viewer to display the GraphViz vizualization of the analysis result.
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)
DOTGraphTraits(bool isSimple=false)
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(bool isSimple=false)
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...