blob: 34ebd488b8d799ac68e35e4e622f1f54163a49f3 [file] [log] [blame]
Michael Gottesman748fe482013-12-03 20:21:17 +00001//====------ MachineBlockFrequencyInfo.cpp - MBB Frequency Analysis ------====//
Jakub Staszak27131172011-07-16 20:23:20 +00002//
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
Jakub Staszak875ebd52011-07-25 19:25:40 +000014#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/Analysis/BlockFrequencyImpl.h"
Jakub Staszak27131172011-07-16 20:23:20 +000016#include "llvm/CodeGen/MachineBranchProbabilityInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000017#include "llvm/CodeGen/Passes.h"
18#include "llvm/InitializePasses.h"
Michael Gottesman65bbcdf2013-12-03 00:49:33 +000019#include "llvm/Support/CommandLine.h"
20#include "llvm/Support/Debug.h"
21#include "llvm/Support/GraphWriter.h"
Jakub Staszak27131172011-07-16 20:23:20 +000022
23using namespace llvm;
24
Michael Gottesman65bbcdf2013-12-03 00:49:33 +000025#ifndef NDEBUG
26enum GVDAGType {
27 GVDT_None,
28 GVDT_Fraction,
29 GVDT_Integer
30};
31
32static cl::opt<GVDAGType>
33ViewMachineBlockFreqPropagationDAG("view-machine-block-freq-propagation-dags",
34 cl::Hidden,
35 cl::desc("Pop up a window to show a dag displaying how machine block "
Michael Gottesman748fe482013-12-03 20:21:17 +000036 "frequencies propagate through the CFG."),
Michael Gottesman65bbcdf2013-12-03 00:49:33 +000037 cl::values(
38 clEnumValN(GVDT_None, "none",
39 "do not display graphs."),
40 clEnumValN(GVDT_Fraction, "fraction", "display a graph using the "
41 "fractional block frequency representation."),
42 clEnumValN(GVDT_Integer, "integer", "display a graph using the raw "
43 "integer fractional block frequency representation."),
44 clEnumValEnd));
45
46namespace llvm {
47
48template <>
49struct GraphTraits<MachineBlockFrequencyInfo *> {
50 typedef const MachineBasicBlock NodeType;
51 typedef MachineBasicBlock::const_succ_iterator ChildIteratorType;
52 typedef MachineFunction::const_iterator nodes_iterator;
53
Michael Gottesman748fe482013-12-03 20:21:17 +000054 static inline
55 const NodeType *getEntryNode(const MachineBlockFrequencyInfo *G) {
Michael Gottesman65bbcdf2013-12-03 00:49:33 +000056 return G->getFunction()->begin();
57 }
Michael Gottesman748fe482013-12-03 20:21:17 +000058
Michael Gottesman65bbcdf2013-12-03 00:49:33 +000059 static ChildIteratorType child_begin(const NodeType *N) {
60 return N->succ_begin();
61 }
Michael Gottesman748fe482013-12-03 20:21:17 +000062
Michael Gottesman65bbcdf2013-12-03 00:49:33 +000063 static ChildIteratorType child_end(const NodeType *N) {
64 return N->succ_end();
65 }
Michael Gottesman748fe482013-12-03 20:21:17 +000066
Michael Gottesman65bbcdf2013-12-03 00:49:33 +000067 static nodes_iterator nodes_begin(const MachineBlockFrequencyInfo *G) {
68 return G->getFunction()->begin();
69 }
Michael Gottesman748fe482013-12-03 20:21:17 +000070
Michael Gottesman65bbcdf2013-12-03 00:49:33 +000071 static nodes_iterator nodes_end(const MachineBlockFrequencyInfo *G) {
72 return G->getFunction()->end();
73 }
74};
75
76template<>
Michael Gottesman748fe482013-12-03 20:21:17 +000077struct DOTGraphTraits<MachineBlockFrequencyInfo*> :
78 public DefaultDOTGraphTraits {
Michael Gottesman65bbcdf2013-12-03 00:49:33 +000079 explicit DOTGraphTraits(bool isSimple=false) :
80 DefaultDOTGraphTraits(isSimple) {}
81
82 static std::string getGraphName(const MachineBlockFrequencyInfo *G) {
83 return G->getFunction()->getName();
84 }
85
86 std::string getNodeLabel(const MachineBasicBlock *Node,
87 const MachineBlockFrequencyInfo *Graph) {
88 std::string Result;
89 raw_string_ostream OS(Result);
90
91 OS << Node->getName().str() << ":";
92 switch (ViewMachineBlockFreqPropagationDAG) {
93 case GVDT_Fraction:
Michael Gottesmanb0c1ed82013-12-14 00:25:42 +000094 Graph->printBlockFreq(OS, Node);
Michael Gottesman65bbcdf2013-12-03 00:49:33 +000095 break;
96 case GVDT_Integer:
97 OS << Graph->getBlockFreq(Node).getFrequency();
98 break;
99 case GVDT_None:
100 llvm_unreachable("If we are not supposed to render a graph we should "
101 "never reach this point.");
102 }
103
104 return Result;
105 }
106};
107
108
109} // end namespace llvm
110#endif
111
Jakub Staszak875ebd52011-07-25 19:25:40 +0000112INITIALIZE_PASS_BEGIN(MachineBlockFrequencyInfo, "machine-block-freq",
Jakub Staszak27131172011-07-16 20:23:20 +0000113 "Machine Block Frequency Analysis", true, true)
114INITIALIZE_PASS_DEPENDENCY(MachineBranchProbabilityInfo)
Jakub Staszak875ebd52011-07-25 19:25:40 +0000115INITIALIZE_PASS_END(MachineBlockFrequencyInfo, "machine-block-freq",
Jakub Staszak27131172011-07-16 20:23:20 +0000116 "Machine Block Frequency Analysis", true, true)
117
Jakub Staszak875ebd52011-07-25 19:25:40 +0000118char MachineBlockFrequencyInfo::ID = 0;
Jakub Staszak27131172011-07-16 20:23:20 +0000119
120
Michael Gottesman748fe482013-12-03 20:21:17 +0000121MachineBlockFrequencyInfo::
122MachineBlockFrequencyInfo() :MachineFunctionPass(ID) {
Jakub Staszak875ebd52011-07-25 19:25:40 +0000123 initializeMachineBlockFrequencyInfoPass(*PassRegistry::getPassRegistry());
Jakub Staszak27131172011-07-16 20:23:20 +0000124 MBFI = new BlockFrequencyImpl<MachineBasicBlock, MachineFunction,
125 MachineBranchProbabilityInfo>();
126}
127
Jakub Staszak875ebd52011-07-25 19:25:40 +0000128MachineBlockFrequencyInfo::~MachineBlockFrequencyInfo() {
Jakub Staszak27131172011-07-16 20:23:20 +0000129 delete MBFI;
130}
131
Jakub Staszak875ebd52011-07-25 19:25:40 +0000132void MachineBlockFrequencyInfo::getAnalysisUsage(AnalysisUsage &AU) const {
Jakub Staszak27131172011-07-16 20:23:20 +0000133 AU.addRequired<MachineBranchProbabilityInfo>();
134 AU.setPreservesAll();
Jakub Staszakcb7c0a42011-07-21 22:59:09 +0000135 MachineFunctionPass::getAnalysisUsage(AU);
Jakub Staszak27131172011-07-16 20:23:20 +0000136}
137
Jakub Staszak875ebd52011-07-25 19:25:40 +0000138bool MachineBlockFrequencyInfo::runOnMachineFunction(MachineFunction &F) {
Michael Gottesman748fe482013-12-03 20:21:17 +0000139 MachineBranchProbabilityInfo &MBPI =
140 getAnalysis<MachineBranchProbabilityInfo>();
Jakub Staszak27131172011-07-16 20:23:20 +0000141 MBFI->doFunction(&F, &MBPI);
Michael Gottesman65bbcdf2013-12-03 00:49:33 +0000142#ifndef NDEBUG
143 if (ViewMachineBlockFreqPropagationDAG != GVDT_None) {
144 view();
145 }
146#endif
Jakub Staszak27131172011-07-16 20:23:20 +0000147 return false;
148}
149
Michael Gottesman65bbcdf2013-12-03 00:49:33 +0000150/// Pop up a ghostview window with the current block frequency propagation
151/// rendered using dot.
152void MachineBlockFrequencyInfo::view() const {
153// This code is only for debugging.
154#ifndef NDEBUG
155 ViewGraph(const_cast<MachineBlockFrequencyInfo *>(this),
156 "MachineBlockFrequencyDAGs");
157#else
Michael Gottesman748fe482013-12-03 20:21:17 +0000158 errs() << "MachineBlockFrequencyInfo::view is only available in debug builds "
159 "on systems with Graphviz or gv!\n";
Michael Gottesman65bbcdf2013-12-03 00:49:33 +0000160#endif // NDEBUG
161}
162
Jakub Staszaka60d1302011-08-03 21:30:57 +0000163BlockFrequency MachineBlockFrequencyInfo::
Jakub Staszak96f8c552011-12-20 20:03:10 +0000164getBlockFreq(const MachineBasicBlock *MBB) const {
Jakub Staszak27131172011-07-16 20:23:20 +0000165 return MBFI->getBlockFreq(MBB);
166}
Michael Gottesman65bbcdf2013-12-03 00:49:33 +0000167
168MachineFunction *MachineBlockFrequencyInfo::getFunction() const {
169 return MBFI->Fn;
170}
Michael Gottesmanfd5c4b22013-12-14 00:06:03 +0000171
172raw_ostream &
173MachineBlockFrequencyInfo::printBlockFreq(raw_ostream &OS,
174 const BlockFrequency Freq) const {
175 return MBFI->printBlockFreq(OS, Freq);
176}
177
178raw_ostream &
179MachineBlockFrequencyInfo::printBlockFreq(raw_ostream &OS,
180 const MachineBasicBlock *MBB) const {
181 return MBFI->printBlockFreq(OS, MBB);
182}
183
184uint64_t MachineBlockFrequencyInfo::getEntryFrequency() const {
185 return MBFI->getEntryFrequency();
186}