LLVM 23.0.0git
DDGPrinter.h
Go to the documentation of this file.
1//===- llvm/Analysis/DDGPrinter.h -------------------------------*- C++ -*-===//
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//===----------------------------------------------------------------------===//
10//
11// This file defines the DOT printer for the Data-Dependence Graph (DDG).
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_ANALYSIS_DDGPRINTER_H
16#define LLVM_ANALYSIS_DDGPRINTER_H
17
18#include "llvm/Analysis/DDG.h"
20
21namespace llvm {
22class LPMUpdater;
23class Loop;
24
25//===--------------------------------------------------------------------===//
26// Implementation of DDG DOT Printer for a loop.
27//===--------------------------------------------------------------------===//
28class DDGDotPrinterPass : public RequiredPassInfoMixin<DDGDotPrinterPass> {
29public:
32};
33
34//===--------------------------------------------------------------------===//
35// Specialization of DOTGraphTraits.
36//===--------------------------------------------------------------------===//
37template <>
39 : public DefaultDOTGraphTraits {
40
41 DOTGraphTraits(bool IsSimple = false) : DefaultDOTGraphTraits(IsSimple) {}
42
43 /// Generate a title for the graph in DOT format
44 std::string getGraphName(const DataDependenceGraph *G) {
45 assert(G && "expected a valid pointer to the graph.");
46 return "DDG for '" + std::string(G->getName()) + "'";
47 }
48
49 /// Print a DDG node either in concise form (-ddg-dot-only) or
50 /// verbose mode (-ddg-dot).
51 std::string getNodeLabel(const DDGNode *Node,
52 const DataDependenceGraph *Graph);
53
54 /// Print attributes of an edge in the DDG graph. If the edge
55 /// is a MemoryDependence edge, then detailed dependence info
56 /// available from DependenceAnalysis is displayed.
57 std::string
58 getEdgeAttributes(const DDGNode *Node,
60 const DataDependenceGraph *G);
61
62 /// Do not print nodes that are part of a pi-block separately. They
63 /// will be printed when their containing pi-block is being printed.
64 bool isNodeHidden(const DDGNode *Node, const DataDependenceGraph *G);
65
66 /// Return DOT attributes for a node (e.g. border and fill for pi-blocks).
67 static std::string getNodeAttributes(const DDGNode *Node,
68 const DataDependenceGraph *G);
69
70private:
71 /// Print a DDG node in concise form.
72 static std::string getSimpleNodeLabel(const DDGNode *Node,
73 const DataDependenceGraph *G);
74
75 /// Print a DDG node with more information including containing instructions
76 /// and detailed information about the dependence edges.
77 static std::string getVerboseNodeLabel(const DDGNode *Node,
78 const DataDependenceGraph *G);
79
80 /// Print a DDG edge in concise form.
81 static std::string getSimpleEdgeAttributes(const DDGNode *Src,
82 const DDGEdge *Edge,
83 const DataDependenceGraph *G);
84
85 /// Print a DDG edge with more information including detailed information
86 /// about the dependence edges.
87 static std::string getVerboseEdgeAttributes(const DDGNode *Src,
88 const DDGEdge *Edge,
89 const DataDependenceGraph *G);
90};
91
93
94} // namespace llvm
95
96#endif // LLVM_ANALYSIS_DDGPRINTER_H
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
aarch64 promote const
#define I(x, y, z)
Definition MD5.cpp:57
#define G(x, y, z)
Definition MD5.cpp:55
static std::string getNodeLabel(const ValueInfo &VI, GlobalValueSummary *GVS)
std::pair< BasicBlock *, BasicBlock * > Edge
PreservedAnalyses run(Loop &L, LoopAnalysisManager &AM, LoopStandardAnalysisResults &AR, LPMUpdater &U)
Data Dependency Graph Edge.
Definition DDG.h:210
Data Dependence Graph Node The graph can represent the following types of nodes:
Definition DDG.h:45
Data Dependency Graph.
Definition DDG.h:303
This class provides an interface for updating the loop pass manager based on mutations to the loop ne...
Represents a single loop in the control flow graph.
Definition LoopInfo.h:40
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
This is an optimization pass for GlobalISel generic memory operations.
DOTGraphTraits< const DataDependenceGraph * > DDGDotGraphTraits
Definition DDGPrinter.h:92
AnalysisManager< Loop, LoopStandardAnalysisResults & > LoopAnalysisManager
The loop analysis manager.
DOTGraphTraits - Template class that can be specialized to customize how graphs are converted to 'dot...
DefaultDOTGraphTraits - This class provides the default implementations of all of the DOTGraphTraits ...
The adaptor from a function pass to a loop pass computes these analyses and makes them available to t...
A CRTP mix-in for passes that should not be skipped.