LLVM  8.0.1
MachineBlockFrequencyInfo.cpp
Go to the documentation of this file.
1 //===- MachineBlockFrequencyInfo.cpp - MBB Frequency Analysis -------------===//
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 // Loops should be simplified before this analysis.
11 //
12 //===----------------------------------------------------------------------===//
13 
15 #include "llvm/ADT/DenseMap.h"
16 #include "llvm/ADT/None.h"
17 #include "llvm/ADT/iterator.h"
23 #include "llvm/Pass.h"
26 #include <string>
27 
28 using namespace llvm;
29 
30 #define DEBUG_TYPE "machine-block-freq"
31 
33  "view-machine-block-freq-propagation-dags", cl::Hidden,
34  cl::desc("Pop up a window to show a dag displaying how machine block "
35  "frequencies propagate through the CFG."),
36  cl::values(clEnumValN(GVDT_None, "none", "do not display graphs."),
37  clEnumValN(GVDT_Fraction, "fraction",
38  "display a graph using the "
39  "fractional block frequency representation."),
40  clEnumValN(GVDT_Integer, "integer",
41  "display a graph using the raw "
42  "integer fractional block frequency representation."),
43  clEnumValN(GVDT_Count, "count", "display a graph using the real "
44  "profile count if available.")));
45 
46 // Similar option above, but used to control BFI display only after MBP pass
48  "view-block-layout-with-bfi", cl::Hidden,
49  cl::desc(
50  "Pop up a window to show a dag displaying MBP layout and associated "
51  "block frequencies of the CFG."),
52  cl::values(clEnumValN(GVDT_None, "none", "do not display graphs."),
53  clEnumValN(GVDT_Fraction, "fraction",
54  "display a graph using the "
55  "fractional block frequency representation."),
56  clEnumValN(GVDT_Integer, "integer",
57  "display a graph using the raw "
58  "integer fractional block frequency representation."),
59  clEnumValN(GVDT_Count, "count",
60  "display a graph using the real "
61  "profile count if available.")));
62 
63 // Command line option to specify the name of the function for CFG dump
64 // Defined in Analysis/BlockFrequencyInfo.cpp: -view-bfi-func-name=
66 
67 // Command line option to specify hot frequency threshold.
68 // Defined in Analysis/BlockFrequencyInfo.cpp: -view-hot-freq-perc=
70 
72  "print-machine-bfi", cl::init(false), cl::Hidden,
73  cl::desc("Print the machine block frequency info."));
74 
75 // Command line option to specify the name of the function for block frequency
76 // dump. Defined in Analysis/BlockFrequencyInfo.cpp.
78 
79 static GVDAGType getGVDT() {
82 
84 }
85 
86 namespace llvm {
87 
88 template <> struct GraphTraits<MachineBlockFrequencyInfo *> {
89  using NodeRef = const MachineBasicBlock *;
92 
94  return &G->getFunction()->front();
95  }
96 
98  return N->succ_begin();
99  }
100 
101  static ChildIteratorType child_end(const NodeRef N) { return N->succ_end(); }
102 
104  return nodes_iterator(G->getFunction()->begin());
105  }
106 
108  return nodes_iterator(G->getFunction()->end());
109  }
110 };
111 
115 
116 template <>
117 struct DOTGraphTraits<MachineBlockFrequencyInfo *>
118  : public MBFIDOTGraphTraitsBase {
119  const MachineFunction *CurFunc = nullptr;
121 
122  explicit DOTGraphTraits(bool isSimple = false)
124 
125  std::string getNodeLabel(const MachineBasicBlock *Node,
126  const MachineBlockFrequencyInfo *Graph) {
127  int layout_order = -1;
128  // Attach additional ordering information if 'isSimple' is false.
129  if (!isSimple()) {
130  const MachineFunction *F = Node->getParent();
131  if (!CurFunc || F != CurFunc) {
132  if (CurFunc)
133  LayoutOrderMap.clear();
134 
135  CurFunc = F;
136  int O = 0;
137  for (auto MBI = F->begin(); MBI != F->end(); ++MBI, ++O) {
138  LayoutOrderMap[&*MBI] = O;
139  }
140  }
141  layout_order = LayoutOrderMap[Node];
142  }
143  return MBFIDOTGraphTraitsBase::getNodeLabel(Node, Graph, getGVDT(),
144  layout_order);
145  }
146 
147  std::string getNodeAttributes(const MachineBasicBlock *Node,
148  const MachineBlockFrequencyInfo *Graph) {
150  ViewHotFreqPercent);
151  }
152 
153  std::string getEdgeAttributes(const MachineBasicBlock *Node, EdgeIter EI,
154  const MachineBlockFrequencyInfo *MBFI) {
156  Node, EI, MBFI, MBFI->getMBPI(), ViewHotFreqPercent);
157  }
158 };
159 
160 } // end namespace llvm
161 
163  "Machine Block Frequency Analysis", true, true)
167  "Machine Block Frequency Analysis", true, true)
168 
169 char MachineBlockFrequencyInfo::ID = 0;
170 
171 MachineBlockFrequencyInfo::MachineBlockFrequencyInfo()
172  : MachineFunctionPass(ID) {
174 }
175 
177 
181  AU.setPreservesAll();
183 }
184 
186  const MachineFunction &F, const MachineBranchProbabilityInfo &MBPI,
187  const MachineLoopInfo &MLI) {
188  if (!MBFI)
189  MBFI.reset(new ImplType);
190  MBFI->calculate(F, MBPI, MLI);
192  (ViewBlockFreqFuncName.empty() ||
193  F.getName().equals(ViewBlockFreqFuncName))) {
194  view("MachineBlockFrequencyDAGS." + F.getName());
195  }
196  if (PrintMachineBlockFreq &&
197  (PrintBlockFreqFuncName.empty() ||
199  MBFI->print(dbgs());
200  }
201 }
202 
205  getAnalysis<MachineBranchProbabilityInfo>();
206  MachineLoopInfo &MLI = getAnalysis<MachineLoopInfo>();
207  calculate(F, MBPI, MLI);
208  return false;
209 }
210 
212 
213 /// Pop up a ghostview window with the current block frequency propagation
214 /// rendered using dot.
216  // This code is only for debugging.
217  ViewGraph(const_cast<MachineBlockFrequencyInfo *>(this), Name, isSimple);
218 }
219 
222  return MBFI ? MBFI->getBlockFreq(MBB) : 0;
223 }
224 
226  const MachineBasicBlock *MBB) const {
227  const Function &F = MBFI->getFunction()->getFunction();
228  return MBFI ? MBFI->getBlockProfileCount(F, MBB) : None;
229 }
230 
233  const Function &F = MBFI->getFunction()->getFunction();
234  return MBFI ? MBFI->getProfileCountFromFreq(F, Freq) : None;
235 }
236 
237 bool
239  assert(MBFI && "Expected analysis to be available");
240  return MBFI->isIrrLoopHeader(MBB);
241 }
242 
244  return MBFI ? MBFI->getFunction() : nullptr;
245 }
246 
248  return MBFI ? &MBFI->getBPI() : nullptr;
249 }
250 
251 raw_ostream &
253  const BlockFrequency Freq) const {
254  return MBFI ? MBFI->printBlockFreq(OS, Freq) : OS;
255 }
256 
257 raw_ostream &
259  const MachineBasicBlock *MBB) const {
260  return MBFI ? MBFI->printBlockFreq(OS, MBB) : OS;
261 }
262 
264  return MBFI ? MBFI->getEntryFreq() : 0;
265 }
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
std::string getNodeAttributes(const MachineBasicBlock *Node, const MachineBlockFrequencyInfo *Graph)
This class represents lattice values for constants.
Definition: AllocatorList.h:24
cl::opt< unsigned > ViewHotFreqPercent
static ChildIteratorType child_end(const NodeRef N)
MachineBlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation to estimate machine basic b...
F(f)
static GVDAGType getGVDT()
static ChildIteratorType child_begin(const NodeRef N)
*ViewGraph Emit a dot run run gv on the postscript *then cleanup For use from the debugger *void ViewGraph(const GraphType &G, const Twine &Name, bool ShortNames=false, const Twine &Title="", GraphProgram::Name Program=GraphProgram::DOT)
Definition: GraphWriter.h:367
Machine Block Frequency Analysis
AnalysisUsage & addRequired()
INITIALIZE_PASS_BEGIN(MachineBlockFrequencyInfo, DEBUG_TYPE, "Machine Block Frequency Analysis", true, true) INITIALIZE_PASS_END(MachineBlockFrequencyInfo
#define INITIALIZE_PASS_DEPENDENCY(depName)
Definition: PassSupport.h:51
amdgpu Simplify well known AMD library false Value Value const Twine & Name
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition: Twine.h:81
void view(const Twine &Name, bool isSimple=true) const
Pop up a ghostview window with the current block frequency propagation rendered using dot...
std::string getNodeLabel(const MachineBasicBlock *Node, const MachineBlockFrequencyInfo *Graph)
std::string getNodeLabel(NodeRef Node, const BlockFrequencyInfoT *Graph, GVDAGType GType, int layout_order=-1)
cl::opt< GVDAGType > ViewBlockLayoutWithBFI("view-block-layout-with-bfi", cl::Hidden, cl::desc("Pop up a window to show a dag displaying MBP layout and associated " "block frequencies of the CFG."), cl::values(clEnumValN(GVDT_None, "none", "do not display graphs."), clEnumValN(GVDT_Fraction, "fraction", "display a graph using the " "fractional block frequency representation."), clEnumValN(GVDT_Integer, "integer", "display a graph using the raw " "integer fractional block frequency representation."), clEnumValN(GVDT_Count, "count", "display a graph using the real " "profile count if available.")))
static bool isSimple(Instruction *I)
Optional< uint64_t > getBlockProfileCount(const MachineBasicBlock *MBB) const
COFF::MachineTypes Machine
Definition: COFFYAML.cpp:363
static cl::opt< bool > PrintMachineBlockFreq("print-machine-bfi", cl::init(false), cl::Hidden, cl::desc("Print the machine block frequency info."))
std::string getEdgeAttributes(const MachineBasicBlock *Node, EdgeIter EI, const MachineBlockFrequencyInfo *MBFI)
StringRef getName() const
getName - Return the name of the corresponding LLVM function.
static nodes_iterator nodes_begin(const MachineBlockFrequencyInfo *G)
static NodeRef getEntryNode(const MachineBlockFrequencyInfo *G)
initializer< Ty > init(const Ty &Val)
Definition: CommandLine.h:423
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
#define DEBUG_TYPE
cl::opt< std::string > PrintBlockFreqFuncName
ValuesClass values(OptsTy... Options)
Helper to build a ValuesClass by forwarding a variable number of arguments as an initializer list to ...
Definition: CommandLine.h:643
BlockFrequency getBlockFreq(const MachineBasicBlock *MBB) const
getblockFreq - Return block frequency.
raw_ostream & printBlockFreq(raw_ostream &OS, const BlockFrequency Freq) const
Represent the analysis usage information of a pass.
MachineBasicBlock::const_succ_iterator ChildIteratorType
std::vector< MachineBasicBlock * >::const_iterator const_succ_iterator
DenseMap< const MachineBasicBlock *, int > LayoutOrderMap
const MachineBranchProbabilityInfo * getMBPI() const
const MachineBasicBlock & front() const
const MachineFunction * getFunction() const
std::string getEdgeAttributes(NodeRef Node, EdgeIter EI, const BlockFrequencyInfoT *BFI, const BranchProbabilityInfoT *BPI, unsigned HotPercentThreshold=0)
INITIALIZE_PASS_END(RegBankSelect, DEBUG_TYPE, "Assign register bank of generic virtual registers", false, false) RegBankSelect
void initializeMachineBlockFrequencyInfoPass(PassRegistry &)
DOTGraphTraits - Template class that can be specialized to customize how graphs are converted to &#39;dot...
std::string getNodeAttributes(NodeRef Node, const BlockFrequencyInfoT *Graph, unsigned HotPercentThreshold=0)
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - This function should be overriden by passes that need analysis information to do t...
const DataFlowGraph & G
Definition: RDFGraph.cpp:211
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:133
void setPreservesAll()
Set by analyses that do not transform their input at all.
void releaseMemory() override
releaseMemory() - This member can be implemented by a pass if it wants to be able to release its memo...
LLVM_NODISCARD LLVM_ATTRIBUTE_ALWAYS_INLINE bool equals(StringRef RHS) const
equals - Check for string equality, this is more efficient than compare() when the relative ordering ...
Definition: StringRef.h:169
static cl::opt< GVDAGType > ViewMachineBlockFreqPropagationDAG("view-machine-block-freq-propagation-dags", cl::Hidden, cl::desc("Pop up a window to show a dag displaying how machine block " "frequencies propagate through the CFG."), cl::values(clEnumValN(GVDT_None, "none", "do not display graphs."), clEnumValN(GVDT_Fraction, "fraction", "display a graph using the " "fractional block frequency representation."), clEnumValN(GVDT_Integer, "integer", "display a graph using the raw " "integer fractional block frequency representation."), clEnumValN(GVDT_Count, "count", "display a graph using the real " "profile count if available.")))
#define clEnumValN(ENUMVAL, FLAGNAME, DESC)
Definition: CommandLine.h:618
const MachineFunction * getParent() const
Return the MachineFunction containing this basic block.
bool runOnMachineFunction(MachineFunction &F) override
runOnMachineFunction - This method must be overloaded to perform the desired machine code transformat...
#define N
typename GTraits::ChildIteratorType EdgeIter
static nodes_iterator nodes_end(const MachineBlockFrequencyInfo *G)
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
cl::opt< std::string > ViewBlockFreqFuncName
Optional< uint64_t > getProfileCountFromFreq(uint64_t Freq) const
bool isIrrLoopHeader(const MachineBasicBlock *MBB)
This class implements an extremely fast bulk output stream that can only output to a stream...
Definition: raw_ostream.h:46
void calculate(const MachineFunction &F, const MachineBranchProbabilityInfo &MBPI, const MachineLoopInfo &MLI)
calculate - compute block frequency info for the given function.
Shared implementation for block frequency analysis.
Machine Block Frequency true