1689a5073SDuncan P. N. Exon Smith //===- MachineBlockFrequencyInfo.cpp - MBB Frequency Analysis -------------===//
2875ebd5fSJakub Staszak //
3875ebd5fSJakub Staszak //                     The LLVM Compiler Infrastructure
4875ebd5fSJakub Staszak //
5875ebd5fSJakub Staszak // This file is distributed under the University of Illinois Open Source
6875ebd5fSJakub Staszak // License. See LICENSE.TXT for details.
7875ebd5fSJakub Staszak //
8875ebd5fSJakub Staszak //===----------------------------------------------------------------------===//
9875ebd5fSJakub Staszak //
10875ebd5fSJakub Staszak // Loops should be simplified before this analysis.
11875ebd5fSJakub Staszak //
12875ebd5fSJakub Staszak //===----------------------------------------------------------------------===//
13875ebd5fSJakub Staszak 
14875ebd5fSJakub Staszak #include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
15689a5073SDuncan P. N. Exon Smith #include "llvm/Analysis/BlockFrequencyInfoImpl.h"
16875ebd5fSJakub Staszak #include "llvm/CodeGen/MachineBranchProbabilityInfo.h"
1710be9a88SDuncan P. N. Exon Smith #include "llvm/CodeGen/MachineFunction.h"
1810be9a88SDuncan P. N. Exon Smith #include "llvm/CodeGen/MachineLoopInfo.h"
19ed0881b2SChandler Carruth #include "llvm/CodeGen/Passes.h"
20ed0881b2SChandler Carruth #include "llvm/InitializePasses.h"
2165bbcdfaSMichael Gottesman #include "llvm/Support/CommandLine.h"
2265bbcdfaSMichael Gottesman #include "llvm/Support/Debug.h"
2369317f2eSXinliang David Li #include "llvm/Support/Format.h"
2465bbcdfaSMichael Gottesman #include "llvm/Support/GraphWriter.h"
2569317f2eSXinliang David Li #include "llvm/Support/raw_ostream.h"
26875ebd5fSJakub Staszak 
27875ebd5fSJakub Staszak using namespace llvm;
28875ebd5fSJakub Staszak 
291b9dde08SChandler Carruth #define DEBUG_TYPE "block-freq"
301b9dde08SChandler Carruth 
3165bbcdfaSMichael Gottesman #ifndef NDEBUG
3265bbcdfaSMichael Gottesman 
33bc157084SXinliang David Li static cl::opt<GVDAGType> ViewMachineBlockFreqPropagationDAG(
34bc157084SXinliang David Li     "view-machine-block-freq-propagation-dags", cl::Hidden,
3565bbcdfaSMichael Gottesman     cl::desc("Pop up a window to show a dag displaying how machine block "
36748fe483SMichael Gottesman              "frequencies propagate through the CFG."),
37bc157084SXinliang David Li     cl::values(clEnumValN(GVDT_None, "none", "do not display graphs."),
38bc157084SXinliang David Li                clEnumValN(GVDT_Fraction, "fraction",
39bc157084SXinliang David Li                           "display a graph using the "
4065bbcdfaSMichael Gottesman                           "fractional block frequency representation."),
41bc157084SXinliang David Li                clEnumValN(GVDT_Integer, "integer",
42bc157084SXinliang David Li                           "display a graph using the raw "
4365bbcdfaSMichael Gottesman                           "integer fractional block frequency representation."),
4430c50f3cSXinliang David Li                clEnumValN(GVDT_Count, "count", "display a graph using the real "
4530c50f3cSXinliang David Li                                                "profile count if available."),
4630c50f3cSXinliang David Li 
4765bbcdfaSMichael Gottesman                clEnumValEnd));
4865bbcdfaSMichael Gottesman 
498dd5ce97SXinliang David Li extern cl::opt<std::string> ViewBlockFreqFuncName;
502d531580SSimon Pilgrim extern cl::opt<unsigned> ViewHotFreqPercent;
5180457ce5SXinliang David Li 
5265bbcdfaSMichael Gottesman namespace llvm {
5365bbcdfaSMichael Gottesman 
54bc157084SXinliang David Li template <> struct GraphTraits<MachineBlockFrequencyInfo *> {
55eb3958faSTim Shen   typedef const MachineBasicBlock *NodeRef;
5665bbcdfaSMichael Gottesman   typedef MachineBasicBlock::const_succ_iterator ChildIteratorType;
57b5e0f5acSTim Shen   typedef pointer_iterator<MachineFunction::const_iterator> nodes_iterator;
5865bbcdfaSMichael Gottesman 
59*f2187ed3STim Shen   static inline NodeRef getEntryNode(const MachineBlockFrequencyInfo *G) {
600ac8eb91SDuncan P. N. Exon Smith     return &G->getFunction()->front();
6165bbcdfaSMichael Gottesman   }
62748fe483SMichael Gottesman 
63*f2187ed3STim Shen   static ChildIteratorType child_begin(const NodeRef N) {
6465bbcdfaSMichael Gottesman     return N->succ_begin();
6565bbcdfaSMichael Gottesman   }
66748fe483SMichael Gottesman 
67*f2187ed3STim Shen   static ChildIteratorType child_end(const NodeRef N) { return N->succ_end(); }
68748fe483SMichael Gottesman 
6965bbcdfaSMichael Gottesman   static nodes_iterator nodes_begin(const MachineBlockFrequencyInfo *G) {
70b5e0f5acSTim Shen     return nodes_iterator(G->getFunction()->begin());
7165bbcdfaSMichael Gottesman   }
72748fe483SMichael Gottesman 
7365bbcdfaSMichael Gottesman   static nodes_iterator nodes_end(const MachineBlockFrequencyInfo *G) {
74b5e0f5acSTim Shen     return nodes_iterator(G->getFunction()->end());
7565bbcdfaSMichael Gottesman   }
7665bbcdfaSMichael Gottesman };
7765bbcdfaSMichael Gottesman 
7855415f25SXinliang David Li typedef BFIDOTGraphTraitsBase<MachineBlockFrequencyInfo,
7955415f25SXinliang David Li                               MachineBranchProbabilityInfo>
8055415f25SXinliang David Li     MBFIDOTGraphTraitsBase;
8165bbcdfaSMichael Gottesman template <>
82bc157084SXinliang David Li struct DOTGraphTraits<MachineBlockFrequencyInfo *>
8355415f25SXinliang David Li     : public MBFIDOTGraphTraitsBase {
84bc157084SXinliang David Li   explicit DOTGraphTraits(bool isSimple = false)
8555415f25SXinliang David Li       : MBFIDOTGraphTraitsBase(isSimple) {}
8665bbcdfaSMichael Gottesman 
8765bbcdfaSMichael Gottesman   std::string getNodeLabel(const MachineBasicBlock *Node,
8865bbcdfaSMichael Gottesman                            const MachineBlockFrequencyInfo *Graph) {
8955415f25SXinliang David Li     return MBFIDOTGraphTraitsBase::getNodeLabel(
9055415f25SXinliang David Li         Node, Graph, ViewMachineBlockFreqPropagationDAG);
9155415f25SXinliang David Li   }
9265bbcdfaSMichael Gottesman 
933e176c77SXinliang David Li   std::string getNodeAttributes(const MachineBasicBlock *Node,
943e176c77SXinliang David Li                                 const MachineBlockFrequencyInfo *Graph) {
953e176c77SXinliang David Li     return MBFIDOTGraphTraitsBase::getNodeAttributes(Node, Graph,
963e176c77SXinliang David Li                                                      ViewHotFreqPercent);
973e176c77SXinliang David Li   }
983e176c77SXinliang David Li 
9955415f25SXinliang David Li   std::string getEdgeAttributes(const MachineBasicBlock *Node, EdgeIter EI,
10069317f2eSXinliang David Li                                 const MachineBlockFrequencyInfo *MBFI) {
1013e176c77SXinliang David Li     return MBFIDOTGraphTraitsBase::getEdgeAttributes(
1023e176c77SXinliang David Li         Node, EI, MBFI, MBFI->getMBPI(), ViewHotFreqPercent);
10369317f2eSXinliang David Li   }
10465bbcdfaSMichael Gottesman };
10565bbcdfaSMichael Gottesman 
10665bbcdfaSMichael Gottesman } // end namespace llvm
10765bbcdfaSMichael Gottesman #endif
10865bbcdfaSMichael Gottesman 
109875ebd5fSJakub Staszak INITIALIZE_PASS_BEGIN(MachineBlockFrequencyInfo, "machine-block-freq",
110875ebd5fSJakub Staszak                       "Machine Block Frequency Analysis", true, true)
111875ebd5fSJakub Staszak INITIALIZE_PASS_DEPENDENCY(MachineBranchProbabilityInfo)
11210be9a88SDuncan P. N. Exon Smith INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo)
113875ebd5fSJakub Staszak INITIALIZE_PASS_END(MachineBlockFrequencyInfo, "machine-block-freq",
114875ebd5fSJakub Staszak                     "Machine Block Frequency Analysis", true, true)
115875ebd5fSJakub Staszak 
116875ebd5fSJakub Staszak char MachineBlockFrequencyInfo::ID = 0;
117875ebd5fSJakub Staszak 
118bc157084SXinliang David Li MachineBlockFrequencyInfo::MachineBlockFrequencyInfo()
119bc157084SXinliang David Li     : MachineFunctionPass(ID) {
120875ebd5fSJakub Staszak   initializeMachineBlockFrequencyInfoPass(*PassRegistry::getPassRegistry());
121875ebd5fSJakub Staszak }
122875ebd5fSJakub Staszak 
1233dbe1050SDuncan P. N. Exon Smith MachineBlockFrequencyInfo::~MachineBlockFrequencyInfo() {}
124875ebd5fSJakub Staszak 
125875ebd5fSJakub Staszak void MachineBlockFrequencyInfo::getAnalysisUsage(AnalysisUsage &AU) const {
126875ebd5fSJakub Staszak   AU.addRequired<MachineBranchProbabilityInfo>();
12710be9a88SDuncan P. N. Exon Smith   AU.addRequired<MachineLoopInfo>();
128875ebd5fSJakub Staszak   AU.setPreservesAll();
129875ebd5fSJakub Staszak   MachineFunctionPass::getAnalysisUsage(AU);
130875ebd5fSJakub Staszak }
131875ebd5fSJakub Staszak 
132875ebd5fSJakub Staszak bool MachineBlockFrequencyInfo::runOnMachineFunction(MachineFunction &F) {
133748fe483SMichael Gottesman   MachineBranchProbabilityInfo &MBPI =
134748fe483SMichael Gottesman       getAnalysis<MachineBranchProbabilityInfo>();
13510be9a88SDuncan P. N. Exon Smith   MachineLoopInfo &MLI = getAnalysis<MachineLoopInfo>();
1363dbe1050SDuncan P. N. Exon Smith   if (!MBFI)
1373dbe1050SDuncan P. N. Exon Smith     MBFI.reset(new ImplType);
1385e67b666SCong Hou   MBFI->calculate(F, MBPI, MLI);
13965bbcdfaSMichael Gottesman #ifndef NDEBUG
14080457ce5SXinliang David Li   if (ViewMachineBlockFreqPropagationDAG != GVDT_None &&
1418dd5ce97SXinliang David Li       (ViewBlockFreqFuncName.empty() ||
1428dd5ce97SXinliang David Li        F.getName().equals(ViewBlockFreqFuncName))) {
14365bbcdfaSMichael Gottesman     view();
14465bbcdfaSMichael Gottesman   }
14565bbcdfaSMichael Gottesman #endif
146875ebd5fSJakub Staszak   return false;
147875ebd5fSJakub Staszak }
148875ebd5fSJakub Staszak 
1493dbe1050SDuncan P. N. Exon Smith void MachineBlockFrequencyInfo::releaseMemory() { MBFI.reset(); }
1503dbe1050SDuncan P. N. Exon Smith 
15165bbcdfaSMichael Gottesman /// Pop up a ghostview window with the current block frequency propagation
15265bbcdfaSMichael Gottesman /// rendered using dot.
15365bbcdfaSMichael Gottesman void MachineBlockFrequencyInfo::view() const {
15465bbcdfaSMichael Gottesman // This code is only for debugging.
15565bbcdfaSMichael Gottesman #ifndef NDEBUG
15665bbcdfaSMichael Gottesman   ViewGraph(const_cast<MachineBlockFrequencyInfo *>(this),
15765bbcdfaSMichael Gottesman             "MachineBlockFrequencyDAGs");
15865bbcdfaSMichael Gottesman #else
159748fe483SMichael Gottesman   errs() << "MachineBlockFrequencyInfo::view is only available in debug builds "
160748fe483SMichael Gottesman             "on systems with Graphviz or gv!\n";
16165bbcdfaSMichael Gottesman #endif // NDEBUG
16265bbcdfaSMichael Gottesman }
16365bbcdfaSMichael Gottesman 
164bc157084SXinliang David Li BlockFrequency
165bc157084SXinliang David Li MachineBlockFrequencyInfo::getBlockFreq(const MachineBasicBlock *MBB) const {
1663dbe1050SDuncan P. N. Exon Smith   return MBFI ? MBFI->getBlockFreq(MBB) : 0;
167875ebd5fSJakub Staszak }
16865bbcdfaSMichael Gottesman 
16930c50f3cSXinliang David Li Optional<uint64_t> MachineBlockFrequencyInfo::getBlockProfileCount(
17030c50f3cSXinliang David Li     const MachineBasicBlock *MBB) const {
17130c50f3cSXinliang David Li   const Function *F = MBFI->getFunction()->getFunction();
17230c50f3cSXinliang David Li   return MBFI ? MBFI->getBlockProfileCount(*F, MBB) : None;
17330c50f3cSXinliang David Li }
17430c50f3cSXinliang David Li 
175f801575fSSean Silva Optional<uint64_t>
176f801575fSSean Silva MachineBlockFrequencyInfo::getProfileCountFromFreq(uint64_t Freq) const {
177f801575fSSean Silva   const Function *F = MBFI->getFunction()->getFunction();
178f801575fSSean Silva   return MBFI ? MBFI->getProfileCountFromFreq(*F, Freq) : None;
179f801575fSSean Silva }
180f801575fSSean Silva 
181936aef92SDuncan P. N. Exon Smith const MachineFunction *MachineBlockFrequencyInfo::getFunction() const {
18210be9a88SDuncan P. N. Exon Smith   return MBFI ? MBFI->getFunction() : nullptr;
18365bbcdfaSMichael Gottesman }
184fd5c4b2cSMichael Gottesman 
1853264fdd3SXinliang David Li const MachineBranchProbabilityInfo *MachineBlockFrequencyInfo::getMBPI() const {
1863264fdd3SXinliang David Li   return MBFI ? &MBFI->getBPI() : nullptr;
1873264fdd3SXinliang David Li }
1883264fdd3SXinliang David Li 
189fd5c4b2cSMichael Gottesman raw_ostream &
190fd5c4b2cSMichael Gottesman MachineBlockFrequencyInfo::printBlockFreq(raw_ostream &OS,
191fd5c4b2cSMichael Gottesman                                           const BlockFrequency Freq) const {
1923dbe1050SDuncan P. N. Exon Smith   return MBFI ? MBFI->printBlockFreq(OS, Freq) : OS;
193fd5c4b2cSMichael Gottesman }
194fd5c4b2cSMichael Gottesman 
195fd5c4b2cSMichael Gottesman raw_ostream &
196fd5c4b2cSMichael Gottesman MachineBlockFrequencyInfo::printBlockFreq(raw_ostream &OS,
197fd5c4b2cSMichael Gottesman                                           const MachineBasicBlock *MBB) const {
1983dbe1050SDuncan P. N. Exon Smith   return MBFI ? MBFI->printBlockFreq(OS, MBB) : OS;
199fd5c4b2cSMichael Gottesman }
200fd5c4b2cSMichael Gottesman 
2015e985ee5SMichael Gottesman uint64_t MachineBlockFrequencyInfo::getEntryFreq() const {
2023dbe1050SDuncan P. N. Exon Smith   return MBFI ? MBFI->getEntryFreq() : 0;
203fd5c4b2cSMichael Gottesman }
204