blob: 258fe54bee75b956c58ffbdb19ce0ea1ca5de9a9 [file] [log] [blame]
Andrew Trick9e764222011-06-04 01:16:30 +00001//===-- BranchProbabilityInfo.cpp - Branch Probability Analysis -*- C++ -*-===//
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
Jakub Staszaka5dd5502011-07-31 03:27:24 +000014#include "llvm/Constants.h"
Chandler Carruth14edd312011-10-23 21:21:50 +000015#include "llvm/Function.h"
Andrew Trick9e764222011-06-04 01:16:30 +000016#include "llvm/Instructions.h"
Chandler Carruth99d01c52011-10-19 10:30:30 +000017#include "llvm/LLVMContext.h"
18#include "llvm/Metadata.h"
Andrew Trick9e764222011-06-04 01:16:30 +000019#include "llvm/Analysis/BranchProbabilityInfo.h"
Jakub Staszak12af93a2011-07-16 20:31:15 +000020#include "llvm/Analysis/LoopInfo.h"
Chandler Carruthde1c9bb2011-10-24 12:01:08 +000021#include "llvm/ADT/PostOrderIterator.h"
Chandler Carruth14edd312011-10-23 21:21:50 +000022#include "llvm/Support/CFG.h"
Andrew Trickf289df22011-06-11 01:05:22 +000023#include "llvm/Support/Debug.h"
Andrew Trick9e764222011-06-04 01:16:30 +000024
25using namespace llvm;
26
27INITIALIZE_PASS_BEGIN(BranchProbabilityInfo, "branch-prob",
28 "Branch Probability Analysis", false, true)
29INITIALIZE_PASS_DEPENDENCY(LoopInfo)
30INITIALIZE_PASS_END(BranchProbabilityInfo, "branch-prob",
31 "Branch Probability Analysis", false, true)
32
33char BranchProbabilityInfo::ID = 0;
34
Chandler Carruthb068bbba2011-10-24 01:40:45 +000035// Weights are for internal use only. They are used by heuristics to help to
36// estimate edges' probability. Example:
37//
38// Using "Loop Branch Heuristics" we predict weights of edges for the
39// block BB2.
40// ...
41// |
42// V
43// BB1<-+
44// | |
45// | | (Weight = 124)
46// V |
47// BB2--+
48// |
49// | (Weight = 4)
50// V
51// BB3
52//
53// Probability of the edge BB2->BB1 = 124 / (124 + 4) = 0.96875
54// Probability of the edge BB2->BB3 = 4 / (124 + 4) = 0.03125
55static const uint32_t LBH_TAKEN_WEIGHT = 124;
56static const uint32_t LBH_NONTAKEN_WEIGHT = 4;
Andrew Trick9e764222011-06-04 01:16:30 +000057
Chandler Carruthde1c9bb2011-10-24 12:01:08 +000058/// \brief Unreachable-terminating branch taken weight.
59///
60/// This is the weight for a branch being taken to a block that terminates
61/// (eventually) in unreachable. These are predicted as unlikely as possible.
62static const uint32_t UR_TAKEN_WEIGHT = 1;
63
64/// \brief Unreachable-terminating branch not-taken weight.
65///
66/// This is the weight for a branch not being taken toward a block that
67/// terminates (eventually) in unreachable. Such a branch is essentially never
68/// taken.
69static const uint32_t UR_NONTAKEN_WEIGHT = 1023;
Andrew Trick9e764222011-06-04 01:16:30 +000070
Chandler Carruthb068bbba2011-10-24 01:40:45 +000071static const uint32_t PH_TAKEN_WEIGHT = 20;
72static const uint32_t PH_NONTAKEN_WEIGHT = 12;
Andrew Trick9e764222011-06-04 01:16:30 +000073
Chandler Carruthb068bbba2011-10-24 01:40:45 +000074static const uint32_t ZH_TAKEN_WEIGHT = 20;
75static const uint32_t ZH_NONTAKEN_WEIGHT = 12;
Andrew Trick9e764222011-06-04 01:16:30 +000076
Chandler Carruthb068bbba2011-10-24 01:40:45 +000077static const uint32_t FPH_TAKEN_WEIGHT = 20;
78static const uint32_t FPH_NONTAKEN_WEIGHT = 12;
Andrew Trick9e764222011-06-04 01:16:30 +000079
Chandler Carruthb068bbba2011-10-24 01:40:45 +000080// Standard weight value. Used when none of the heuristics set weight for
81// the edge.
82static const uint32_t NORMAL_WEIGHT = 16;
Andrew Trick9e764222011-06-04 01:16:30 +000083
Chandler Carruthb068bbba2011-10-24 01:40:45 +000084// Minimum weight of an edge. Please note, that weight is NEVER 0.
85static const uint32_t MIN_WEIGHT = 1;
Andrew Trick9e764222011-06-04 01:16:30 +000086
Chandler Carruthb068bbba2011-10-24 01:40:45 +000087static uint32_t getMaxWeightFor(BasicBlock *BB) {
88 return UINT32_MAX / BB->getTerminator()->getNumSuccessors();
89}
Andrew Trick9e764222011-06-04 01:16:30 +000090
Andrew Trick9e764222011-06-04 01:16:30 +000091
Chandler Carruthde1c9bb2011-10-24 12:01:08 +000092/// \brief Calculate edge weights for successors lead to unreachable.
93///
94/// Predict that a successor which leads necessarily to an
95/// unreachable-terminated block as extremely unlikely.
96bool BranchProbabilityInfo::calcUnreachableHeuristics(BasicBlock *BB) {
97 TerminatorInst *TI = BB->getTerminator();
98 if (TI->getNumSuccessors() == 0) {
99 if (isa<UnreachableInst>(TI))
100 PostDominatedByUnreachable.insert(BB);
101 return false;
102 }
103
104 SmallPtrSet<BasicBlock *, 4> UnreachableEdges;
105 SmallPtrSet<BasicBlock *, 4> ReachableEdges;
106
107 for (succ_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) {
108 if (PostDominatedByUnreachable.count(*I))
109 UnreachableEdges.insert(*I);
110 else
111 ReachableEdges.insert(*I);
112 }
113
114 // If all successors are in the set of blocks post-dominated by unreachable,
115 // this block is too.
116 if (UnreachableEdges.size() == TI->getNumSuccessors())
117 PostDominatedByUnreachable.insert(BB);
118
119 // Skip probabilities if this block has a single successor or if all were
120 // reachable.
121 if (TI->getNumSuccessors() == 1 || UnreachableEdges.empty())
122 return false;
123
124 uint32_t UnreachableWeight =
125 std::max(UR_TAKEN_WEIGHT / UnreachableEdges.size(), MIN_WEIGHT);
126 for (SmallPtrSet<BasicBlock *, 4>::iterator I = UnreachableEdges.begin(),
127 E = UnreachableEdges.end();
128 I != E; ++I)
129 setEdgeWeight(BB, *I, UnreachableWeight);
130
131 if (ReachableEdges.empty())
132 return true;
133 uint32_t ReachableWeight =
134 std::max(UR_NONTAKEN_WEIGHT / ReachableEdges.size(), NORMAL_WEIGHT);
135 for (SmallPtrSet<BasicBlock *, 4>::iterator I = ReachableEdges.begin(),
136 E = ReachableEdges.end();
137 I != E; ++I)
138 setEdgeWeight(BB, *I, ReachableWeight);
139
140 return true;
141}
142
Chandler Carruth99d01c52011-10-19 10:30:30 +0000143// Propagate existing explicit probabilities from either profile data or
144// 'expect' intrinsic processing.
Chandler Carruthb068bbba2011-10-24 01:40:45 +0000145bool BranchProbabilityInfo::calcMetadataWeights(BasicBlock *BB) {
Chandler Carruth941aa7b2011-10-19 10:32:19 +0000146 TerminatorInst *TI = BB->getTerminator();
147 if (TI->getNumSuccessors() == 1)
148 return false;
149 if (!isa<BranchInst>(TI) && !isa<SwitchInst>(TI))
Chandler Carruth99d01c52011-10-19 10:30:30 +0000150 return false;
151
Chandler Carruth941aa7b2011-10-19 10:32:19 +0000152 MDNode *WeightsNode = TI->getMetadata(LLVMContext::MD_prof);
153 if (!WeightsNode)
Chandler Carruth99d01c52011-10-19 10:30:30 +0000154 return false;
155
Chandler Carruth941aa7b2011-10-19 10:32:19 +0000156 // Ensure there are weights for all of the successors. Note that the first
157 // operand to the metadata node is a name, not a weight.
158 if (WeightsNode->getNumOperands() != TI->getNumSuccessors() + 1)
Chandler Carruth99d01c52011-10-19 10:30:30 +0000159 return false;
160
Chandler Carruth941aa7b2011-10-19 10:32:19 +0000161 // Build up the final weights that will be used in a temporary buffer, but
162 // don't add them until all weihts are present. Each weight value is clamped
163 // to [1, getMaxWeightFor(BB)].
Chandler Carruth99d01c52011-10-19 10:30:30 +0000164 uint32_t WeightLimit = getMaxWeightFor(BB);
Chandler Carruth941aa7b2011-10-19 10:32:19 +0000165 SmallVector<uint32_t, 2> Weights;
166 Weights.reserve(TI->getNumSuccessors());
167 for (unsigned i = 1, e = WeightsNode->getNumOperands(); i != e; ++i) {
168 ConstantInt *Weight = dyn_cast<ConstantInt>(WeightsNode->getOperand(i));
169 if (!Weight)
170 return false;
171 Weights.push_back(
172 std::max<uint32_t>(1, Weight->getLimitedValue(WeightLimit)));
173 }
174 assert(Weights.size() == TI->getNumSuccessors() && "Checked above");
175 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i)
Chandler Carruthb068bbba2011-10-24 01:40:45 +0000176 setEdgeWeight(BB, TI->getSuccessor(i), Weights[i]);
Chandler Carruth99d01c52011-10-19 10:30:30 +0000177
178 return true;
179}
180
Andrew Trick9e764222011-06-04 01:16:30 +0000181// Calculate Edge Weights using "Pointer Heuristics". Predict a comparsion
182// between two pointer or pointer and NULL will fail.
Chandler Carruthb068bbba2011-10-24 01:40:45 +0000183bool BranchProbabilityInfo::calcPointerHeuristics(BasicBlock *BB) {
Andrew Trick9e764222011-06-04 01:16:30 +0000184 BranchInst * BI = dyn_cast<BranchInst>(BB->getTerminator());
185 if (!BI || !BI->isConditional())
Jakub Staszak7241caf2011-07-28 21:45:07 +0000186 return false;
Andrew Trick9e764222011-06-04 01:16:30 +0000187
188 Value *Cond = BI->getCondition();
189 ICmpInst *CI = dyn_cast<ICmpInst>(Cond);
Jakub Staszakd7932ca2011-07-15 20:51:06 +0000190 if (!CI || !CI->isEquality())
Jakub Staszak7241caf2011-07-28 21:45:07 +0000191 return false;
Andrew Trick9e764222011-06-04 01:16:30 +0000192
193 Value *LHS = CI->getOperand(0);
Andrew Trick9e764222011-06-04 01:16:30 +0000194
195 if (!LHS->getType()->isPointerTy())
Jakub Staszak7241caf2011-07-28 21:45:07 +0000196 return false;
Andrew Trick9e764222011-06-04 01:16:30 +0000197
Nick Lewycky404b53e2011-06-04 02:07:10 +0000198 assert(CI->getOperand(1)->getType()->isPointerTy());
Andrew Trick9e764222011-06-04 01:16:30 +0000199
200 BasicBlock *Taken = BI->getSuccessor(0);
201 BasicBlock *NonTaken = BI->getSuccessor(1);
202
203 // p != 0 -> isProb = true
204 // p == 0 -> isProb = false
205 // p != q -> isProb = true
206 // p == q -> isProb = false;
Jakub Staszakd7932ca2011-07-15 20:51:06 +0000207 bool isProb = CI->getPredicate() == ICmpInst::ICMP_NE;
Andrew Trick9e764222011-06-04 01:16:30 +0000208 if (!isProb)
209 std::swap(Taken, NonTaken);
210
Chandler Carruthb068bbba2011-10-24 01:40:45 +0000211 setEdgeWeight(BB, Taken, PH_TAKEN_WEIGHT);
212 setEdgeWeight(BB, NonTaken, PH_NONTAKEN_WEIGHT);
Jakub Staszak7241caf2011-07-28 21:45:07 +0000213 return true;
Andrew Trick9e764222011-06-04 01:16:30 +0000214}
215
216// Calculate Edge Weights using "Loop Branch Heuristics". Predict backedges
217// as taken, exiting edges as not-taken.
Chandler Carruthb068bbba2011-10-24 01:40:45 +0000218bool BranchProbabilityInfo::calcLoopBranchHeuristics(BasicBlock *BB) {
Andrew Trick9e764222011-06-04 01:16:30 +0000219 Loop *L = LI->getLoopFor(BB);
220 if (!L)
Jakub Staszak7241caf2011-07-28 21:45:07 +0000221 return false;
Andrew Trick9e764222011-06-04 01:16:30 +0000222
Jakub Staszakb137f162011-08-01 19:16:26 +0000223 SmallPtrSet<BasicBlock *, 8> BackEdges;
224 SmallPtrSet<BasicBlock *, 8> ExitingEdges;
225 SmallPtrSet<BasicBlock *, 8> InEdges; // Edges from header to the loop.
Jakub Staszakfa447252011-07-28 21:33:46 +0000226
Andrew Trick9e764222011-06-04 01:16:30 +0000227 for (succ_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) {
Chandler Carruth45baf6b2011-10-25 09:47:41 +0000228 if (!L->contains(*I))
229 ExitingEdges.insert(*I);
230 else if (L->getHeader() == *I)
231 BackEdges.insert(*I);
232 else
233 InEdges.insert(*I);
Andrew Trick9e764222011-06-04 01:16:30 +0000234 }
235
Andrew Trickf289df22011-06-11 01:05:22 +0000236 if (uint32_t numBackEdges = BackEdges.size()) {
237 uint32_t backWeight = LBH_TAKEN_WEIGHT / numBackEdges;
Andrew Trick9e764222011-06-04 01:16:30 +0000238 if (backWeight < NORMAL_WEIGHT)
239 backWeight = NORMAL_WEIGHT;
240
Jakub Staszakb137f162011-08-01 19:16:26 +0000241 for (SmallPtrSet<BasicBlock *, 8>::iterator EI = BackEdges.begin(),
Andrew Trick9e764222011-06-04 01:16:30 +0000242 EE = BackEdges.end(); EI != EE; ++EI) {
243 BasicBlock *Back = *EI;
Chandler Carruthb068bbba2011-10-24 01:40:45 +0000244 setEdgeWeight(BB, Back, backWeight);
Andrew Trick9e764222011-06-04 01:16:30 +0000245 }
246 }
247
Jakub Staszakfa447252011-07-28 21:33:46 +0000248 if (uint32_t numInEdges = InEdges.size()) {
249 uint32_t inWeight = LBH_TAKEN_WEIGHT / numInEdges;
250 if (inWeight < NORMAL_WEIGHT)
251 inWeight = NORMAL_WEIGHT;
252
Jakub Staszakb137f162011-08-01 19:16:26 +0000253 for (SmallPtrSet<BasicBlock *, 8>::iterator EI = InEdges.begin(),
Jakub Staszakfa447252011-07-28 21:33:46 +0000254 EE = InEdges.end(); EI != EE; ++EI) {
255 BasicBlock *Back = *EI;
Chandler Carruthb068bbba2011-10-24 01:40:45 +0000256 setEdgeWeight(BB, Back, inWeight);
Jakub Staszakfa447252011-07-28 21:33:46 +0000257 }
258 }
259
Chandler Carruth45baf6b2011-10-25 09:47:41 +0000260 if (uint32_t numExitingEdges = ExitingEdges.size()) {
261 uint32_t exitWeight = LBH_NONTAKEN_WEIGHT / numExitingEdges;
Andrew Trick9e764222011-06-04 01:16:30 +0000262 if (exitWeight < MIN_WEIGHT)
263 exitWeight = MIN_WEIGHT;
264
Jakub Staszakb137f162011-08-01 19:16:26 +0000265 for (SmallPtrSet<BasicBlock *, 8>::iterator EI = ExitingEdges.begin(),
Andrew Trick9e764222011-06-04 01:16:30 +0000266 EE = ExitingEdges.end(); EI != EE; ++EI) {
267 BasicBlock *Exiting = *EI;
Chandler Carruthb068bbba2011-10-24 01:40:45 +0000268 setEdgeWeight(BB, Exiting, exitWeight);
Andrew Trick9e764222011-06-04 01:16:30 +0000269 }
270 }
Jakub Staszak7241caf2011-07-28 21:45:07 +0000271
272 return true;
Andrew Trick9e764222011-06-04 01:16:30 +0000273}
274
Chandler Carruthb068bbba2011-10-24 01:40:45 +0000275bool BranchProbabilityInfo::calcZeroHeuristics(BasicBlock *BB) {
Jakub Staszaka5dd5502011-07-31 03:27:24 +0000276 BranchInst * BI = dyn_cast<BranchInst>(BB->getTerminator());
277 if (!BI || !BI->isConditional())
278 return false;
279
280 Value *Cond = BI->getCondition();
281 ICmpInst *CI = dyn_cast<ICmpInst>(Cond);
282 if (!CI)
283 return false;
284
Jakub Staszaka5dd5502011-07-31 03:27:24 +0000285 Value *RHS = CI->getOperand(1);
Jakub Staszaka385c202011-07-31 04:47:20 +0000286 ConstantInt *CV = dyn_cast<ConstantInt>(RHS);
Benjamin Kramer26eb8702011-09-04 23:53:04 +0000287 if (!CV)
Jakub Staszaka5dd5502011-07-31 03:27:24 +0000288 return false;
289
290 bool isProb;
Benjamin Kramer26eb8702011-09-04 23:53:04 +0000291 if (CV->isZero()) {
292 switch (CI->getPredicate()) {
293 case CmpInst::ICMP_EQ:
294 // X == 0 -> Unlikely
295 isProb = false;
296 break;
297 case CmpInst::ICMP_NE:
298 // X != 0 -> Likely
299 isProb = true;
300 break;
301 case CmpInst::ICMP_SLT:
302 // X < 0 -> Unlikely
303 isProb = false;
304 break;
305 case CmpInst::ICMP_SGT:
306 // X > 0 -> Likely
307 isProb = true;
308 break;
309 default:
310 return false;
311 }
312 } else if (CV->isOne() && CI->getPredicate() == CmpInst::ICMP_SLT) {
313 // InstCombine canonicalizes X <= 0 into X < 1.
314 // X <= 0 -> Unlikely
Jakub Staszaka5dd5502011-07-31 03:27:24 +0000315 isProb = false;
Benjamin Kramer26eb8702011-09-04 23:53:04 +0000316 } else if (CV->isAllOnesValue() && CI->getPredicate() == CmpInst::ICMP_SGT) {
317 // InstCombine canonicalizes X >= 0 into X > -1.
318 // X >= 0 -> Likely
Jakub Staszaka5dd5502011-07-31 03:27:24 +0000319 isProb = true;
Benjamin Kramer26eb8702011-09-04 23:53:04 +0000320 } else {
Jakub Staszaka5dd5502011-07-31 03:27:24 +0000321 return false;
Benjamin Kramer26eb8702011-09-04 23:53:04 +0000322 }
Jakub Staszaka5dd5502011-07-31 03:27:24 +0000323
324 BasicBlock *Taken = BI->getSuccessor(0);
325 BasicBlock *NonTaken = BI->getSuccessor(1);
326
327 if (!isProb)
328 std::swap(Taken, NonTaken);
329
Chandler Carruthb068bbba2011-10-24 01:40:45 +0000330 setEdgeWeight(BB, Taken, ZH_TAKEN_WEIGHT);
331 setEdgeWeight(BB, NonTaken, ZH_NONTAKEN_WEIGHT);
Jakub Staszaka5dd5502011-07-31 03:27:24 +0000332
333 return true;
334}
335
Chandler Carruthb068bbba2011-10-24 01:40:45 +0000336bool BranchProbabilityInfo::calcFloatingPointHeuristics(BasicBlock *BB) {
Benjamin Kramerc888aa42011-10-21 20:12:47 +0000337 BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator());
338 if (!BI || !BI->isConditional())
339 return false;
340
341 Value *Cond = BI->getCondition();
342 FCmpInst *FCmp = dyn_cast<FCmpInst>(Cond);
Benjamin Kramer675c02b2011-10-21 21:13:47 +0000343 if (!FCmp)
Benjamin Kramerc888aa42011-10-21 20:12:47 +0000344 return false;
345
Benjamin Kramer675c02b2011-10-21 21:13:47 +0000346 bool isProb;
347 if (FCmp->isEquality()) {
348 // f1 == f2 -> Unlikely
349 // f1 != f2 -> Likely
350 isProb = !FCmp->isTrueWhenEqual();
351 } else if (FCmp->getPredicate() == FCmpInst::FCMP_ORD) {
352 // !isnan -> Likely
353 isProb = true;
354 } else if (FCmp->getPredicate() == FCmpInst::FCMP_UNO) {
355 // isnan -> Unlikely
356 isProb = false;
357 } else {
358 return false;
359 }
360
Benjamin Kramerc888aa42011-10-21 20:12:47 +0000361 BasicBlock *Taken = BI->getSuccessor(0);
362 BasicBlock *NonTaken = BI->getSuccessor(1);
363
Benjamin Kramer675c02b2011-10-21 21:13:47 +0000364 if (!isProb)
Benjamin Kramerc888aa42011-10-21 20:12:47 +0000365 std::swap(Taken, NonTaken);
366
Chandler Carruthb068bbba2011-10-24 01:40:45 +0000367 setEdgeWeight(BB, Taken, FPH_TAKEN_WEIGHT);
368 setEdgeWeight(BB, NonTaken, FPH_NONTAKEN_WEIGHT);
Benjamin Kramerc888aa42011-10-21 20:12:47 +0000369
370 return true;
371}
Jakub Staszaka5dd5502011-07-31 03:27:24 +0000372
Chandler Carruthb068bbba2011-10-24 01:40:45 +0000373void BranchProbabilityInfo::getAnalysisUsage(AnalysisUsage &AU) const {
374 AU.addRequired<LoopInfo>();
375 AU.setPreservesAll();
376}
377
378bool BranchProbabilityInfo::runOnFunction(Function &F) {
379 LastF = &F; // Store the last function we ran on for printing.
380 LI = &getAnalysis<LoopInfo>();
Chandler Carruthde1c9bb2011-10-24 12:01:08 +0000381 assert(PostDominatedByUnreachable.empty());
Chandler Carruthb068bbba2011-10-24 01:40:45 +0000382
Chandler Carruthde1c9bb2011-10-24 12:01:08 +0000383 // Walk the basic blocks in post-order so that we can build up state about
384 // the successors of a block iteratively.
385 for (po_iterator<BasicBlock *> I = po_begin(&F.getEntryBlock()),
386 E = po_end(&F.getEntryBlock());
387 I != E; ++I) {
388 DEBUG(dbgs() << "Computing probabilities for " << I->getName() << "\n");
389 if (calcUnreachableHeuristics(*I))
Chandler Carruth99d01c52011-10-19 10:30:30 +0000390 continue;
Chandler Carruthde1c9bb2011-10-24 12:01:08 +0000391 if (calcMetadataWeights(*I))
Jakub Staszak7241caf2011-07-28 21:45:07 +0000392 continue;
Chandler Carruthde1c9bb2011-10-24 12:01:08 +0000393 if (calcLoopBranchHeuristics(*I))
Jakub Staszak7241caf2011-07-28 21:45:07 +0000394 continue;
Chandler Carruthde1c9bb2011-10-24 12:01:08 +0000395 if (calcPointerHeuristics(*I))
Jakub Staszaka5dd5502011-07-31 03:27:24 +0000396 continue;
Chandler Carruthde1c9bb2011-10-24 12:01:08 +0000397 if (calcZeroHeuristics(*I))
Benjamin Kramerc888aa42011-10-21 20:12:47 +0000398 continue;
Chandler Carruthde1c9bb2011-10-24 12:01:08 +0000399 calcFloatingPointHeuristics(*I);
Andrew Trick9e764222011-06-04 01:16:30 +0000400 }
Chandler Carruthde1c9bb2011-10-24 12:01:08 +0000401
402 PostDominatedByUnreachable.clear();
Andrew Trick9e764222011-06-04 01:16:30 +0000403 return false;
404}
405
Chandler Carruth14edd312011-10-23 21:21:50 +0000406void BranchProbabilityInfo::print(raw_ostream &OS, const Module *) const {
407 OS << "---- Branch Probabilities ----\n";
408 // We print the probabilities from the last function the analysis ran over,
409 // or the function it is currently running over.
410 assert(LastF && "Cannot print prior to running over a function");
411 for (Function::const_iterator BI = LastF->begin(), BE = LastF->end();
412 BI != BE; ++BI) {
413 for (succ_const_iterator SI = succ_begin(BI), SE = succ_end(BI);
414 SI != SE; ++SI) {
415 printEdgeProbability(OS << " ", BI, *SI);
416 }
417 }
418}
419
Jakub Staszak6f6baf12011-07-29 19:30:00 +0000420uint32_t BranchProbabilityInfo::getSumForBlock(const BasicBlock *BB) const {
Andrew Trickf289df22011-06-11 01:05:22 +0000421 uint32_t Sum = 0;
422
Jakub Staszak6f6baf12011-07-29 19:30:00 +0000423 for (succ_const_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) {
424 const BasicBlock *Succ = *I;
Andrew Trickf289df22011-06-11 01:05:22 +0000425 uint32_t Weight = getEdgeWeight(BB, Succ);
426 uint32_t PrevSum = Sum;
Andrew Trick9e764222011-06-04 01:16:30 +0000427
428 Sum += Weight;
429 assert(Sum > PrevSum); (void) PrevSum;
430 }
431
Andrew Trickf289df22011-06-11 01:05:22 +0000432 return Sum;
433}
434
Jakub Staszak6f6baf12011-07-29 19:30:00 +0000435bool BranchProbabilityInfo::
436isEdgeHot(const BasicBlock *Src, const BasicBlock *Dst) const {
Andrew Trickf289df22011-06-11 01:05:22 +0000437 // Hot probability is at least 4/5 = 80%
Benjamin Kramer341473c2011-10-23 11:19:14 +0000438 // FIXME: Compare against a static "hot" BranchProbability.
439 return getEdgeProbability(Src, Dst) > BranchProbability(4, 5);
Andrew Trick9e764222011-06-04 01:16:30 +0000440}
441
442BasicBlock *BranchProbabilityInfo::getHotSucc(BasicBlock *BB) const {
Andrew Trickf289df22011-06-11 01:05:22 +0000443 uint32_t Sum = 0;
444 uint32_t MaxWeight = 0;
Andrew Trick9e764222011-06-04 01:16:30 +0000445 BasicBlock *MaxSucc = 0;
446
447 for (succ_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) {
448 BasicBlock *Succ = *I;
Andrew Trickf289df22011-06-11 01:05:22 +0000449 uint32_t Weight = getEdgeWeight(BB, Succ);
450 uint32_t PrevSum = Sum;
Andrew Trick9e764222011-06-04 01:16:30 +0000451
452 Sum += Weight;
453 assert(Sum > PrevSum); (void) PrevSum;
454
455 if (Weight > MaxWeight) {
456 MaxWeight = Weight;
457 MaxSucc = Succ;
458 }
459 }
460
Benjamin Kramer341473c2011-10-23 11:19:14 +0000461 // Hot probability is at least 4/5 = 80%
462 if (BranchProbability(MaxWeight, Sum) > BranchProbability(4, 5))
Andrew Trick9e764222011-06-04 01:16:30 +0000463 return MaxSucc;
464
465 return 0;
466}
467
468// Return edge's weight. If can't find it, return DEFAULT_WEIGHT value.
Jakub Staszak6f6baf12011-07-29 19:30:00 +0000469uint32_t BranchProbabilityInfo::
470getEdgeWeight(const BasicBlock *Src, const BasicBlock *Dst) const {
Andrew Trick9e764222011-06-04 01:16:30 +0000471 Edge E(Src, Dst);
Andrew Trickf289df22011-06-11 01:05:22 +0000472 DenseMap<Edge, uint32_t>::const_iterator I = Weights.find(E);
Andrew Trick9e764222011-06-04 01:16:30 +0000473
474 if (I != Weights.end())
475 return I->second;
476
477 return DEFAULT_WEIGHT;
478}
479
Jakub Staszak6f6baf12011-07-29 19:30:00 +0000480void BranchProbabilityInfo::
481setEdgeWeight(const BasicBlock *Src, const BasicBlock *Dst, uint32_t Weight) {
Andrew Trick9e764222011-06-04 01:16:30 +0000482 Weights[std::make_pair(Src, Dst)] = Weight;
Andrew Trickf289df22011-06-11 01:05:22 +0000483 DEBUG(dbgs() << "set edge " << Src->getNameStr() << " -> "
484 << Dst->getNameStr() << " weight to " << Weight
485 << (isEdgeHot(Src, Dst) ? " [is HOT now]\n" : "\n"));
486}
487
488
489BranchProbability BranchProbabilityInfo::
Jakub Staszak6f6baf12011-07-29 19:30:00 +0000490getEdgeProbability(const BasicBlock *Src, const BasicBlock *Dst) const {
Andrew Trickf289df22011-06-11 01:05:22 +0000491
492 uint32_t N = getEdgeWeight(Src, Dst);
493 uint32_t D = getSumForBlock(Src);
494
495 return BranchProbability(N, D);
Andrew Trick9e764222011-06-04 01:16:30 +0000496}
497
498raw_ostream &
Chandler Carruth14edd312011-10-23 21:21:50 +0000499BranchProbabilityInfo::printEdgeProbability(raw_ostream &OS,
500 const BasicBlock *Src,
501 const BasicBlock *Dst) const {
Andrew Trick9e764222011-06-04 01:16:30 +0000502
Jakub Staszak7cc2b072011-06-16 20:22:37 +0000503 const BranchProbability Prob = getEdgeProbability(Src, Dst);
Andrew Trickf289df22011-06-11 01:05:22 +0000504 OS << "edge " << Src->getNameStr() << " -> " << Dst->getNameStr()
505 << " probability is " << Prob
506 << (isEdgeHot(Src, Dst) ? " [HOT edge]\n" : "\n");
Andrew Trick9e764222011-06-04 01:16:30 +0000507
508 return OS;
509}