blob: e0ef6cee4fec325a81c2d3ac5ac140468a86d9f1 [file] [log] [blame]
Andreas Neustifter76448f72009-09-01 08:48:42 +00001//===- ProfileVerifierPass.cpp - LLVM Pass to estimate profile info -------===//
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// This file implements a pass that checks profiling information for
11// plausibility.
12//
13//===----------------------------------------------------------------------===//
14#define DEBUG_TYPE "profile-verifier"
15#include "llvm/Pass.h"
16#include "llvm/Analysis/ProfileInfo.h"
17#include "llvm/Support/CommandLine.h"
18#include "llvm/Support/CFG.h"
19#include "llvm/Support/raw_ostream.h"
20#include "llvm/Support/Debug.h"
21#include <set>
22using namespace llvm;
23
Andreas Neustifter76448f72009-09-01 08:48:42 +000024static cl::opt<bool,true>
25ProfileVerifierDisableAssertions("profile-verifier-noassert",
Andreas Neustifterc2ae05a2009-09-04 17:15:10 +000026 cl::desc("Disable assertions"));
Andreas Neustifter76448f72009-09-01 08:48:42 +000027
28namespace {
29 class VISIBILITY_HIDDEN ProfileVerifierPass : public FunctionPass {
Andreas Neustifterc2ae05a2009-09-04 17:15:10 +000030
31 struct DetailedBlockInfo {
32 const BasicBlock *BB;
33 double BBWeight;
34 double inWeight;
35 int inCount;
36 double outWeight;
37 int outCount;
38 };
39
Andreas Neustifter76448f72009-09-01 08:48:42 +000040 ProfileInfo *PI;
41 std::set<const BasicBlock*> BBisVisited;
Andreas Neustifterc2ae05a2009-09-04 17:15:10 +000042 bool DisableAssertions;
43
44 // When debugging is enabled, the verifier prints a whole slew of debug
45 // information, otherwise its just the assert. These are all the helper
46 // functions.
47 bool PrintedDebugTree;
Andreas Neustifter76448f72009-09-01 08:48:42 +000048 std::set<const BasicBlock*> BBisPrinted;
Andreas Neustifterc2ae05a2009-09-04 17:15:10 +000049 void debugEntry(DetailedBlockInfo*);
Andreas Neustifter76448f72009-09-01 08:48:42 +000050 void printDebugInfo(const BasicBlock *BB);
Andreas Neustifterc2ae05a2009-09-04 17:15:10 +000051
Andreas Neustifter76448f72009-09-01 08:48:42 +000052 public:
53 static char ID; // Class identification, replacement for typeinfo
54
Andreas Neustifterc2ae05a2009-09-04 17:15:10 +000055 explicit ProfileVerifierPass (bool da = false) : FunctionPass(&ID),
56 DisableAssertions(da) {
Andreas Neustifter76448f72009-09-01 08:48:42 +000057 }
58
59 void getAnalysisUsage(AnalysisUsage &AU) const {
60 AU.setPreservesAll();
61 AU.addRequired<ProfileInfo>();
62 }
63
64 const char *getPassName() const {
65 return "Profiling information verifier";
66 }
67
68 /// run - Verify the profile information.
69 bool runOnFunction(Function &F);
70 void recurseBasicBlock(const BasicBlock *BB);
Andreas Neustifterc2ae05a2009-09-04 17:15:10 +000071
72 double ReadOrAssert(ProfileInfo::Edge);
73 void CheckValue(bool, const char*, DetailedBlockInfo*);
Andreas Neustifter76448f72009-09-01 08:48:42 +000074 };
75} // End of anonymous namespace
76
77char ProfileVerifierPass::ID = 0;
78static RegisterPass<ProfileVerifierPass>
79X("profile-verifier", "Verify profiling information", false, true);
80
81namespace llvm {
82 FunctionPass *createProfileVerifierPass() {
Andreas Neustifterc2ae05a2009-09-04 17:15:10 +000083 return new ProfileVerifierPass(ProfileVerifierDisableAssertions);
Andreas Neustifter76448f72009-09-01 08:48:42 +000084 }
85}
86
Andreas Neustifter76448f72009-09-01 08:48:42 +000087void ProfileVerifierPass::printDebugInfo(const BasicBlock *BB) {
88
89 if (BBisPrinted.find(BB) != BBisPrinted.end()) return;
90
91 double BBWeight = PI->getExecutionCount(BB);
92 if (BBWeight == ProfileInfo::MissingValue) { BBWeight = 0; }
93 double inWeight = 0;
94 int inCount = 0;
95 std::set<const BasicBlock*> ProcessedPreds;
96 for ( pred_const_iterator bbi = pred_begin(BB), bbe = pred_end(BB);
97 bbi != bbe; ++bbi ) {
98 if (ProcessedPreds.insert(*bbi).second) {
99 double EdgeWeight = PI->getEdgeWeight(PI->getEdge(*bbi,BB));
100 if (EdgeWeight == ProfileInfo::MissingValue) { EdgeWeight = 0; }
Andreas Neustifterc2ae05a2009-09-04 17:15:10 +0000101 errs()<<"calculated in-edge ("<<(*bbi)->getNameStr()<<","<<BB->getNameStr()
102 <<"): "<<EdgeWeight<<"\n";
Andreas Neustifter76448f72009-09-01 08:48:42 +0000103 inWeight += EdgeWeight;
104 inCount++;
105 }
106 }
107 double outWeight = 0;
108 int outCount = 0;
109 std::set<const BasicBlock*> ProcessedSuccs;
110 for ( succ_const_iterator bbi = succ_begin(BB), bbe = succ_end(BB);
111 bbi != bbe; ++bbi ) {
112 if (ProcessedSuccs.insert(*bbi).second) {
113 double EdgeWeight = PI->getEdgeWeight(PI->getEdge(BB,*bbi));
114 if (EdgeWeight == ProfileInfo::MissingValue) { EdgeWeight = 0; }
Andreas Neustifterc2ae05a2009-09-04 17:15:10 +0000115 errs()<<"calculated out-edge ("<<BB->getNameStr()<<","<<(*bbi)->getNameStr()
116 <<"): "<<EdgeWeight<<"\n";
Andreas Neustifter76448f72009-09-01 08:48:42 +0000117 outWeight += EdgeWeight;
118 outCount++;
119 }
120 }
Andreas Neustifterc2ae05a2009-09-04 17:15:10 +0000121 errs()<<"Block "<<BB->getNameStr()<<" in "<<BB->getParent()->getNameStr()
122 <<",BBWeight="<<BBWeight<<",inWeight="<<inWeight<<",inCount="<<inCount
123 <<",outWeight="<<outWeight<<",outCount"<<outCount<<"\n";
Andreas Neustifter76448f72009-09-01 08:48:42 +0000124
125 // mark as visited and recurse into subnodes
126 BBisPrinted.insert(BB);
127 for ( succ_const_iterator bbi = succ_begin(BB), bbe = succ_end(BB);
128 bbi != bbe; ++bbi ) {
129 printDebugInfo(*bbi);
130 }
131}
132
Andreas Neustifterc2ae05a2009-09-04 17:15:10 +0000133void ProfileVerifierPass::debugEntry (DetailedBlockInfo *DI) {
134 errs() << "TROUBLE: Block " << DI->BB->getNameStr() << " in "
135 << DI->BB->getParent()->getNameStr() << ":";
136 errs() << "BBWeight=" << DI->BBWeight << ",";
137 errs() << "inWeight=" << DI->inWeight << ",";
138 errs() << "inCount=" << DI->inCount << ",";
139 errs() << "outWeight=" << DI->outWeight << ",";
140 errs() << "outCount=" << DI->outCount << ",";
Andreas Neustifter76448f72009-09-01 08:48:42 +0000141 if (!PrintedDebugTree) {
142 PrintedDebugTree = true;
Andreas Neustifterc2ae05a2009-09-04 17:15:10 +0000143 printDebugInfo(&(DI->BB->getParent()->getEntryBlock()));
Andreas Neustifter76448f72009-09-01 08:48:42 +0000144 }
145}
Andreas Neustifter76448f72009-09-01 08:48:42 +0000146
147// compare with relative error
Andreas Neustifterc2ae05a2009-09-04 17:15:10 +0000148static bool Equals(double A, double B) {
Andreas Neustifter76448f72009-09-01 08:48:42 +0000149 double maxRelativeError = 0.0000001;
150 if (A == B)
151 return true;
152 double relativeError;
153 if (fabs(B) > fabs(A))
154 relativeError = fabs((A - B) / B);
155 else
156 relativeError = fabs((A - B) / A);
157 if (relativeError <= maxRelativeError) return true;
158 return false;
159}
160
Andreas Neustifterc2ae05a2009-09-04 17:15:10 +0000161double ProfileVerifierPass::ReadOrAssert(ProfileInfo::Edge E) {
162 const char *Message = "ASSERT:Edge has missing value";
163 double EdgeWeight = PI->getEdgeWeight(E);
164 if (EdgeWeight == ProfileInfo::MissingValue) {
165 if (DisableAssertions) {
166 errs() << Message << "\n";
167 return 0;
168 } else {
169 assert(0 && Message);
170 }
171 } else {
172 return EdgeWeight;
173 }
Andreas Neustifter76448f72009-09-01 08:48:42 +0000174}
175
Andreas Neustifterc2ae05a2009-09-04 17:15:10 +0000176void ProfileVerifierPass::CheckValue(bool Error, const char *Message, DetailedBlockInfo *DI) {
177 if (Error) {
178 DEBUG(debugEntry(DI));
179 if (DisableAssertions) {
180 errs() << Message << "\n";
181 } else {
182 assert(0 && Message);
183 }
184 }
185 return;
Andreas Neustifter76448f72009-09-01 08:48:42 +0000186}
187
188void ProfileVerifierPass::recurseBasicBlock(const BasicBlock *BB) {
189
190 if (BBisVisited.find(BB) != BBisVisited.end()) return;
191
Andreas Neustifterc2ae05a2009-09-04 17:15:10 +0000192 DetailedBlockInfo DI;
193 DI.BB = BB;
194 DI.outCount = DI.inCount = DI.inWeight = DI.outWeight = 0;
Andreas Neustifter76448f72009-09-01 08:48:42 +0000195 std::set<const BasicBlock*> ProcessedPreds;
196 for ( pred_const_iterator bbi = pred_begin(BB), bbe = pred_end(BB);
197 bbi != bbe; ++bbi ) {
198 if (ProcessedPreds.insert(*bbi).second) {
Andreas Neustifterc2ae05a2009-09-04 17:15:10 +0000199 DI.inWeight += ReadOrAssert(PI->getEdge(*bbi,BB));
200 DI.inCount++;
Andreas Neustifter76448f72009-09-01 08:48:42 +0000201 }
202 }
203
Andreas Neustifter76448f72009-09-01 08:48:42 +0000204 std::set<const BasicBlock*> ProcessedSuccs;
205 for ( succ_const_iterator bbi = succ_begin(BB), bbe = succ_end(BB);
206 bbi != bbe; ++bbi ) {
207 if (ProcessedSuccs.insert(*bbi).second) {
Andreas Neustifterc2ae05a2009-09-04 17:15:10 +0000208 DI.outWeight += ReadOrAssert(PI->getEdge(BB,*bbi));
209 DI.outCount++;
Andreas Neustifter76448f72009-09-01 08:48:42 +0000210 }
211 }
212
Andreas Neustifterc2ae05a2009-09-04 17:15:10 +0000213 DI.BBWeight = PI->getExecutionCount(BB);
214 CheckValue(DI.BBWeight == ProfileInfo::MissingValue, "ASSERT:BasicBlock has missing value", &DI);
Andreas Neustifter76448f72009-09-01 08:48:42 +0000215
Andreas Neustifterc2ae05a2009-09-04 17:15:10 +0000216 if (DI.inCount > 0) {
217 CheckValue(!Equals(DI.inWeight,DI.BBWeight), "ASSERT:inWeight and BBWeight do not match", &DI);
Andreas Neustifter76448f72009-09-01 08:48:42 +0000218 }
Andreas Neustifterc2ae05a2009-09-04 17:15:10 +0000219 if (DI.outCount > 0) {
220 CheckValue(!Equals(DI.outWeight,DI.BBWeight), "ASSERT:outWeight and BBWeight do not match", &DI);
Andreas Neustifter76448f72009-09-01 08:48:42 +0000221 }
222
223 // mark as visited and recurse into subnodes
224 BBisVisited.insert(BB);
225 for ( succ_const_iterator bbi = succ_begin(BB), bbe = succ_end(BB);
226 bbi != bbe; ++bbi ) {
227 recurseBasicBlock(*bbi);
228 }
229}
230
231bool ProfileVerifierPass::runOnFunction(Function &F) {
232 PI = &getAnalysis<ProfileInfo>();
233
234 if (PI->getExecutionCount(&F) == ProfileInfo::MissingValue) {
235 DEBUG(errs()<<"Function "<<F.getNameStr()<<" has no profile\n");
236 return false;
237 }
238
239 PrintedDebugTree = false;
240 BBisVisited.clear();
241
242 const BasicBlock *entry = &F.getEntryBlock();
243 recurseBasicBlock(entry);
244
245 if (!DisableAssertions)
246 assert((PI->getExecutionCount(&F)==PI->getExecutionCount(entry)) &&
247 "Function count and entry block count do not match");
248 return false;
249}