blob: 6b33ef8f32c4c86d5d0848d93f095b8a40213eef [file] [log] [blame]
Chris Lattner927fec32004-02-11 06:10:05 +00001//===- ProfileInfoLoaderPass.cpp - LLVM Pass to load profile info ---------===//
Misha Brukman2b37d7c2005-04-21 21:13:18 +00002//
Chris Lattner927fec32004-02-11 06:10:05 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman2b37d7c2005-04-21 21:13:18 +00007//
Chris Lattner927fec32004-02-11 06:10:05 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements a concrete implementation of profiling information that
11// loads the information from a profile dump file.
12//
13//===----------------------------------------------------------------------===//
Andreas Neustifterda5ea942009-09-01 19:08:51 +000014#define DEBUG_TYPE "profile-loader"
Chris Lattner96ab5ca2004-03-08 22:04:08 +000015#include "llvm/BasicBlock.h"
16#include "llvm/InstrTypes.h"
Daniel Dunbaree166382009-08-05 15:55:56 +000017#include "llvm/Module.h"
Chris Lattner927fec32004-02-11 06:10:05 +000018#include "llvm/Pass.h"
Jeff Cohen534927d2005-01-08 22:01:16 +000019#include "llvm/Analysis/Passes.h"
Chris Lattner927fec32004-02-11 06:10:05 +000020#include "llvm/Analysis/ProfileInfo.h"
21#include "llvm/Analysis/ProfileInfoLoader.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000022#include "llvm/Support/CommandLine.h"
Reid Spencerd7d83db2007-02-05 23:42:17 +000023#include "llvm/Support/Compiler.h"
Andreas Neustifterda5ea942009-09-01 19:08:51 +000024#include "llvm/Support/CFG.h"
25#include "llvm/Support/Debug.h"
Chris Lattnera81d29b2009-08-23 07:33:14 +000026#include "llvm/Support/raw_ostream.h"
Andreas Neustifterda5ea942009-09-01 19:08:51 +000027#include "llvm/Support/Format.h"
28#include "llvm/ADT/Statistic.h"
29#include "llvm/ADT/SmallSet.h"
30#include <set>
Chris Lattner927fec32004-02-11 06:10:05 +000031using namespace llvm;
32
Andreas Neustifterda5ea942009-09-01 19:08:51 +000033STATISTIC(NumEdgesRead, "The # of edges read.");
34
Dan Gohman844731a2008-05-13 00:00:25 +000035static cl::opt<std::string>
36ProfileInfoFilename("profile-info-file", cl::init("llvmprof.out"),
37 cl::value_desc("filename"),
38 cl::desc("Profile file loaded by -profile-loader"));
Chris Lattner945871d2004-02-11 18:21:05 +000039
Dan Gohman844731a2008-05-13 00:00:25 +000040namespace {
Reid Spencerd7d83db2007-02-05 23:42:17 +000041 class VISIBILITY_HIDDEN LoaderPass : public ModulePass, public ProfileInfo {
Chris Lattner927fec32004-02-11 06:10:05 +000042 std::string Filename;
Andreas Neustifterda5ea942009-09-01 19:08:51 +000043 std::set<Edge> SpanningTree;
44 std::set<const BasicBlock*> BBisUnvisited;
Chris Lattner927fec32004-02-11 06:10:05 +000045 public:
Devang Patel19974732007-05-03 01:11:54 +000046 static char ID; // Class identification, replacement for typeinfo
Dan Gohmanc2bbfc12007-08-01 15:32:29 +000047 explicit LoaderPass(const std::string &filename = "")
Dan Gohmanae73dc12008-09-04 17:05:41 +000048 : ModulePass(&ID), Filename(filename) {
Chris Lattner945871d2004-02-11 18:21:05 +000049 if (filename.empty()) Filename = ProfileInfoFilename;
50 }
Chris Lattner927fec32004-02-11 06:10:05 +000051
52 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
53 AU.setPreservesAll();
54 }
55
56 virtual const char *getPassName() const {
57 return "Profiling information loader";
58 }
59
Andreas Neustifterda5ea942009-09-01 19:08:51 +000060 // recurseBasicBlock() - Calculates the edge weights for as much basic
61 // blocks as possbile.
62 virtual void recurseBasicBlock(const BasicBlock *BB);
63 virtual void readEdgeOrRemember(Edge, Edge&, unsigned &, unsigned &);
Andreas Neustifter7fd70612009-09-09 17:51:39 +000064 virtual unsigned readEdge(ProfileInfo::Edge, std::vector<unsigned>,
65 unsigned, Function*);
Andreas Neustifterda5ea942009-09-01 19:08:51 +000066
Chris Lattner927fec32004-02-11 06:10:05 +000067 /// run - Load the profile information from the specified file.
Chris Lattnerb12914b2004-09-20 04:48:05 +000068 virtual bool runOnModule(Module &M);
Chris Lattner927fec32004-02-11 06:10:05 +000069 };
Chris Lattner927fec32004-02-11 06:10:05 +000070} // End of anonymous namespace
71
Dan Gohman844731a2008-05-13 00:00:25 +000072char LoaderPass::ID = 0;
73static RegisterPass<LoaderPass>
74X("profile-loader", "Load profile information from llvmprof.out", false, true);
75
76static RegisterAnalysisGroup<ProfileInfo> Y(X);
77
Jeff Cohen6e400f72005-01-10 03:56:27 +000078ModulePass *llvm::createProfileLoaderPass() { return new LoaderPass(); }
Chris Lattner927fec32004-02-11 06:10:05 +000079
80/// createProfileLoaderPass - This function returns a Pass that loads the
81/// profiling information for the module from the specified filename, making it
82/// available to the optimizers.
83Pass *llvm::createProfileLoaderPass(const std::string &Filename) {
84 return new LoaderPass(Filename);
85}
86
Andreas Neustifterda5ea942009-09-01 19:08:51 +000087void LoaderPass::readEdgeOrRemember(Edge edge, Edge &tocalc,
88 unsigned &uncalc, unsigned &count) {
89 double w;
90 if ((w = getEdgeWeight(edge)) == MissingValue) {
91 tocalc = edge;
92 uncalc++;
93 } else {
94 count+=w;
95 }
96}
97
98// recurseBasicBlock - Visits all neighbours of a block and then tries to
99// calculate the missing edge values.
100void LoaderPass::recurseBasicBlock(const BasicBlock *BB) {
101
102 // break recursion if already visited
103 if (BBisUnvisited.find(BB) == BBisUnvisited.end()) return;
104 BBisUnvisited.erase(BB);
105 if (!BB) return;
106
107 for (succ_const_iterator bbi = succ_begin(BB), bbe = succ_end(BB);
108 bbi != bbe; ++bbi) {
109 recurseBasicBlock(*bbi);
110 }
111 for (pred_const_iterator bbi = pred_begin(BB), bbe = pred_end(BB);
112 bbi != bbe; ++bbi) {
113 recurseBasicBlock(*bbi);
114 }
115
116 Edge edgetocalc;
117 unsigned uncalculated = 0;
118
119 // collect weights of all incoming and outgoing edges, rememer edges that
120 // have no value
121 unsigned incount = 0;
122 SmallSet<const BasicBlock*,8> pred_visited;
123 pred_const_iterator bbi = pred_begin(BB), bbe = pred_end(BB);
124 if (bbi==bbe) {
125 readEdgeOrRemember(getEdge(0, BB),edgetocalc,uncalculated,incount);
126 }
127 for (;bbi != bbe; ++bbi) {
128 if (pred_visited.insert(*bbi)) {
129 readEdgeOrRemember(getEdge(*bbi, BB),edgetocalc,uncalculated,incount);
130 }
131 }
132
133 unsigned outcount = 0;
134 SmallSet<const BasicBlock*,8> succ_visited;
135 succ_const_iterator sbbi = succ_begin(BB), sbbe = succ_end(BB);
136 if (sbbi==sbbe) {
137 readEdgeOrRemember(getEdge(BB, 0),edgetocalc,uncalculated,outcount);
138 }
139 for (;sbbi != sbbe; ++sbbi) {
140 if (succ_visited.insert(*sbbi)) {
141 readEdgeOrRemember(getEdge(BB, *sbbi),edgetocalc,uncalculated,outcount);
142 }
143 }
144
145 // if exactly one edge weight was missing, calculate it and remove it from
146 // spanning tree
147 if (uncalculated == 1) {
148 if (incount < outcount) {
149 EdgeInformation[BB->getParent()][edgetocalc] = outcount-incount;
150 } else {
151 EdgeInformation[BB->getParent()][edgetocalc] = incount-outcount;
152 }
153 DEBUG(errs() << "--Calc Edge Counter for " << edgetocalc << ": "
154 << format("%g", getEdgeWeight(edgetocalc)) << "\n");
155 SpanningTree.erase(edgetocalc);
156 }
157}
158
Andreas Neustifter7fd70612009-09-09 17:51:39 +0000159unsigned LoaderPass::readEdge(ProfileInfo::Edge e, std::vector<unsigned> ECs,
160 unsigned ei, Function *F) {
161 if (ei < ECs.size()) {
162 double weight = ECs[ei];
163 if (weight != ~0U) {
164 EdgeInformation[F][e] += weight;
165 DEBUG(errs()<<"--Read Edge Counter for " << e
166 <<" (# "<<ei<<"): "<<(unsigned)getEdgeWeight(e)<<"\n");
167 } else {
168 // This happens only when loading edges for optimal edge profiling.
169 SpanningTree.insert(e);
170 }
Benjamin Kramer17568252009-09-09 18:03:46 +0000171 return ei++;
Andreas Neustifterda5ea942009-09-01 19:08:51 +0000172 } else {
Andreas Neustifter7fd70612009-09-09 17:51:39 +0000173 return ei;
Andreas Neustifterda5ea942009-09-01 19:08:51 +0000174 }
175}
176
Chris Lattnerb12914b2004-09-20 04:48:05 +0000177bool LoaderPass::runOnModule(Module &M) {
Chris Lattner62e84f32004-03-08 21:30:35 +0000178 ProfileInfoLoader PIL("profile-loader", Filename, M);
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000179
Daniel Dunbarcaaa4932009-08-08 17:43:09 +0000180 EdgeInformation.clear();
Daniel Dunbaree166382009-08-05 15:55:56 +0000181 std::vector<unsigned> ECs = PIL.getRawEdgeCounts();
Daniel Dunbarcaaa4932009-08-08 17:43:09 +0000182 if (ECs.size() > 0) {
183 unsigned ei = 0;
184 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
185 if (F->isDeclaration()) continue;
Andreas Neustifter7fd70612009-09-09 17:51:39 +0000186 DEBUG(errs()<<"Working on "<<F->getNameStr()<<"\n");
187 ei = readEdge(getEdge(0,&F->getEntryBlock()), ECs, ei, F);
Daniel Dunbarcaaa4932009-08-08 17:43:09 +0000188 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
189 // Okay, we have to add a counter of each outgoing edge. If the
190 // outgoing edge is not critical don't split it, just insert the counter
191 // in the source or destination of the edge.
192 TerminatorInst *TI = BB->getTerminator();
193 for (unsigned s = 0, e = TI->getNumSuccessors(); s != e; ++s) {
Andreas Neustifter7fd70612009-09-09 17:51:39 +0000194 ei = readEdge(getEdge(BB,TI->getSuccessor(s)), ECs, ei, F);
Daniel Dunbarcaaa4932009-08-08 17:43:09 +0000195 }
Chris Lattner96ab5ca2004-03-08 22:04:08 +0000196 }
Chris Lattner96ab5ca2004-03-08 22:04:08 +0000197 }
Daniel Dunbarcaaa4932009-08-08 17:43:09 +0000198 if (ei != ECs.size()) {
Chris Lattnera81d29b2009-08-23 07:33:14 +0000199 errs() << "WARNING: profile information is inconsistent with "
200 << "the current program!\n";
Daniel Dunbarcaaa4932009-08-08 17:43:09 +0000201 }
Andreas Neustifterda5ea942009-09-01 19:08:51 +0000202 NumEdgesRead = ei;
203 }
204
205 ECs = PIL.getRawOptimalEdgeCounts();
206 if (ECs.size() > 0) {
207 unsigned ei = 0;
208 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
209 if (F->isDeclaration()) continue;
210 DEBUG(errs()<<"Working on "<<F->getNameStr()<<"\n");
Andreas Neustifter7fd70612009-09-09 17:51:39 +0000211 ei = readEdge(getEdge(0,&F->getEntryBlock()), ECs, ei, F);
Andreas Neustifterda5ea942009-09-01 19:08:51 +0000212 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
213 TerminatorInst *TI = BB->getTerminator();
214 if (TI->getNumSuccessors() == 0) {
Andreas Neustifter7fd70612009-09-09 17:51:39 +0000215 ei = readEdge(getEdge(BB,0), ECs, ei, F);
Andreas Neustifterda5ea942009-09-01 19:08:51 +0000216 }
217 for (unsigned s = 0, e = TI->getNumSuccessors(); s != e; ++s) {
Andreas Neustifter7fd70612009-09-09 17:51:39 +0000218 ei = readEdge(getEdge(BB,TI->getSuccessor(s)), ECs, ei, F);
Andreas Neustifterda5ea942009-09-01 19:08:51 +0000219 }
220 }
221 while (SpanningTree.size() > 0) {
222#if 0
223 unsigned size = SpanningTree.size();
224#endif
225 BBisUnvisited.clear();
226 for (std::set<Edge>::iterator ei = SpanningTree.begin(),
227 ee = SpanningTree.end(); ei != ee; ++ei) {
228 BBisUnvisited.insert(ei->first);
229 BBisUnvisited.insert(ei->second);
230 }
231 while (BBisUnvisited.size() > 0) {
232 recurseBasicBlock(*BBisUnvisited.begin());
233 }
234#if 0
235 if (SpanningTree.size() == size) {
236 DEBUG(errs()<<"{");
237 for (std::set<Edge>::iterator ei = SpanningTree.begin(),
238 ee = SpanningTree.end(); ei != ee; ++ei) {
239 DEBUG(errs()<<"("<<(ei->first?ei->first->getName():"0")<<","
240 <<(ei->second?ei->second->getName():"0")<<"),");
241 }
242 assert(0 && "No edge calculated!");
243 }
244#endif
245 }
246 }
247 if (ei != ECs.size()) {
248 errs() << "WARNING: profile information is inconsistent with "
249 << "the current program!\n";
250 }
251 NumEdgesRead = ei;
Daniel Dunbarc9008c52009-08-05 21:51:16 +0000252 }
Daniel Dunbarcaaa4932009-08-08 17:43:09 +0000253
254 BlockInformation.clear();
255 std::vector<unsigned> BCs = PIL.getRawBlockCounts();
256 if (BCs.size() > 0) {
257 unsigned bi = 0;
258 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
259 if (F->isDeclaration()) continue;
260 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
261 if (bi < BCs.size())
Chris Lattner273a4882009-09-09 16:00:57 +0000262 BlockInformation[F][BB] = BCs[bi++];
Daniel Dunbarcaaa4932009-08-08 17:43:09 +0000263 }
264 if (bi != BCs.size()) {
Chris Lattnera81d29b2009-08-23 07:33:14 +0000265 errs() << "WARNING: profile information is inconsistent with "
266 << "the current program!\n";
Daniel Dunbarcaaa4932009-08-08 17:43:09 +0000267 }
268 }
269
270 FunctionInformation.clear();
271 std::vector<unsigned> FCs = PIL.getRawFunctionCounts();
272 if (FCs.size() > 0) {
273 unsigned fi = 0;
274 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
275 if (F->isDeclaration()) continue;
276 if (fi < FCs.size())
Chris Lattner273a4882009-09-09 16:00:57 +0000277 FunctionInformation[F] = FCs[fi++];
Daniel Dunbarcaaa4932009-08-08 17:43:09 +0000278 }
279 if (fi != FCs.size()) {
Chris Lattnera81d29b2009-08-23 07:33:14 +0000280 errs() << "WARNING: profile information is inconsistent with "
281 << "the current program!\n";
Daniel Dunbarcaaa4932009-08-08 17:43:09 +0000282 }
Chris Lattner945871d2004-02-11 18:21:05 +0000283 }
Chris Lattner96ab5ca2004-03-08 22:04:08 +0000284
Chris Lattner927fec32004-02-11 06:10:05 +0000285 return false;
286}