blob: 54c148ed29303cb0817a6b010ecd4e9e63a38bcf [file] [log] [blame]
Bill Wendling0c34ae82012-08-15 12:22:35 +00001//===-- BranchProbabilityInfo.cpp - Branch Probability Analysis -----------===//
Andrew Trick9e764222011-06-04 01:16:30 +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
Chandler Carruthd04a8d42012-12-03 16:50:05 +000014#include "llvm/Analysis/BranchProbabilityInfo.h"
15#include "llvm/ADT/PostOrderIterator.h"
16#include "llvm/Analysis/LoopInfo.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000017#include "llvm/IR/Constants.h"
18#include "llvm/IR/Function.h"
19#include "llvm/IR/Instructions.h"
20#include "llvm/IR/LLVMContext.h"
21#include "llvm/IR/Metadata.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
Chandler Carruth51f40a72011-12-22 09:26:37 +000068/// taken. Set the weight to an absurdly high value so that nested loops don't
69/// easily subsume it.
70static const uint32_t UR_NONTAKEN_WEIGHT = 1024*1024 - 1;
Andrew Trick9e764222011-06-04 01:16:30 +000071
Diego Novillo77226a02013-05-24 12:26:52 +000072/// \brief Weight for a branch taken going into a cold block.
73///
74/// This is the weight for a branch taken toward a block marked
75/// cold. A block is marked cold if it's postdominated by a
76/// block containing a call to a cold function. Cold functions
77/// are those marked with attribute 'cold'.
78static const uint32_t CC_TAKEN_WEIGHT = 4;
79
80/// \brief Weight for a branch not-taken into a cold block.
81///
82/// This is the weight for a branch not taken toward a block marked
83/// cold.
84static const uint32_t CC_NONTAKEN_WEIGHT = 64;
85
Chandler Carruthb068bbba2011-10-24 01:40:45 +000086static const uint32_t PH_TAKEN_WEIGHT = 20;
87static const uint32_t PH_NONTAKEN_WEIGHT = 12;
Andrew Trick9e764222011-06-04 01:16:30 +000088
Chandler Carruthb068bbba2011-10-24 01:40:45 +000089static const uint32_t ZH_TAKEN_WEIGHT = 20;
90static const uint32_t ZH_NONTAKEN_WEIGHT = 12;
Andrew Trick9e764222011-06-04 01:16:30 +000091
Chandler Carruthb068bbba2011-10-24 01:40:45 +000092static const uint32_t FPH_TAKEN_WEIGHT = 20;
93static const uint32_t FPH_NONTAKEN_WEIGHT = 12;
Andrew Trick9e764222011-06-04 01:16:30 +000094
Bill Wendling0c34ae82012-08-15 12:22:35 +000095/// \brief Invoke-terminating normal branch taken weight
96///
97/// This is the weight for branching to the normal destination of an invoke
98/// instruction. We expect this to happen most of the time. Set the weight to an
99/// absurdly high value so that nested loops subsume it.
100static const uint32_t IH_TAKEN_WEIGHT = 1024 * 1024 - 1;
101
102/// \brief Invoke-terminating normal branch not-taken weight.
103///
104/// This is the weight for branching to the unwind destination of an invoke
105/// instruction. This is essentially never taken.
106static const uint32_t IH_NONTAKEN_WEIGHT = 1;
107
Chandler Carruthb068bbba2011-10-24 01:40:45 +0000108// Standard weight value. Used when none of the heuristics set weight for
109// the edge.
110static const uint32_t NORMAL_WEIGHT = 16;
Andrew Trick9e764222011-06-04 01:16:30 +0000111
Chandler Carruthb068bbba2011-10-24 01:40:45 +0000112// Minimum weight of an edge. Please note, that weight is NEVER 0.
113static const uint32_t MIN_WEIGHT = 1;
Andrew Trick9e764222011-06-04 01:16:30 +0000114
Chandler Carruthb068bbba2011-10-24 01:40:45 +0000115static uint32_t getMaxWeightFor(BasicBlock *BB) {
116 return UINT32_MAX / BB->getTerminator()->getNumSuccessors();
117}
Andrew Trick9e764222011-06-04 01:16:30 +0000118
Andrew Trick9e764222011-06-04 01:16:30 +0000119
Chandler Carruthde1c9bb2011-10-24 12:01:08 +0000120/// \brief Calculate edge weights for successors lead to unreachable.
121///
122/// Predict that a successor which leads necessarily to an
123/// unreachable-terminated block as extremely unlikely.
124bool BranchProbabilityInfo::calcUnreachableHeuristics(BasicBlock *BB) {
125 TerminatorInst *TI = BB->getTerminator();
126 if (TI->getNumSuccessors() == 0) {
127 if (isa<UnreachableInst>(TI))
128 PostDominatedByUnreachable.insert(BB);
129 return false;
130 }
131
Manman Ren1a710fd2012-08-24 18:14:27 +0000132 SmallVector<unsigned, 4> UnreachableEdges;
133 SmallVector<unsigned, 4> ReachableEdges;
Chandler Carruthde1c9bb2011-10-24 12:01:08 +0000134
135 for (succ_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) {
136 if (PostDominatedByUnreachable.count(*I))
Manman Ren1a710fd2012-08-24 18:14:27 +0000137 UnreachableEdges.push_back(I.getSuccessorIndex());
Chandler Carruthde1c9bb2011-10-24 12:01:08 +0000138 else
Manman Ren1a710fd2012-08-24 18:14:27 +0000139 ReachableEdges.push_back(I.getSuccessorIndex());
Chandler Carruthde1c9bb2011-10-24 12:01:08 +0000140 }
141
142 // If all successors are in the set of blocks post-dominated by unreachable,
143 // this block is too.
144 if (UnreachableEdges.size() == TI->getNumSuccessors())
145 PostDominatedByUnreachable.insert(BB);
146
147 // Skip probabilities if this block has a single successor or if all were
148 // reachable.
149 if (TI->getNumSuccessors() == 1 || UnreachableEdges.empty())
150 return false;
151
152 uint32_t UnreachableWeight =
Manman Ren1a710fd2012-08-24 18:14:27 +0000153 std::max(UR_TAKEN_WEIGHT / (unsigned)UnreachableEdges.size(), MIN_WEIGHT);
154 for (SmallVector<unsigned, 4>::iterator I = UnreachableEdges.begin(),
155 E = UnreachableEdges.end();
Chandler Carruthde1c9bb2011-10-24 12:01:08 +0000156 I != E; ++I)
157 setEdgeWeight(BB, *I, UnreachableWeight);
158
159 if (ReachableEdges.empty())
160 return true;
161 uint32_t ReachableWeight =
Manman Ren1a710fd2012-08-24 18:14:27 +0000162 std::max(UR_NONTAKEN_WEIGHT / (unsigned)ReachableEdges.size(),
163 NORMAL_WEIGHT);
164 for (SmallVector<unsigned, 4>::iterator I = ReachableEdges.begin(),
165 E = ReachableEdges.end();
Chandler Carruthde1c9bb2011-10-24 12:01:08 +0000166 I != E; ++I)
167 setEdgeWeight(BB, *I, ReachableWeight);
168
169 return true;
170}
171
Chandler Carruth99d01c52011-10-19 10:30:30 +0000172// Propagate existing explicit probabilities from either profile data or
173// 'expect' intrinsic processing.
Chandler Carruthb068bbba2011-10-24 01:40:45 +0000174bool BranchProbabilityInfo::calcMetadataWeights(BasicBlock *BB) {
Chandler Carruth941aa7b2011-10-19 10:32:19 +0000175 TerminatorInst *TI = BB->getTerminator();
176 if (TI->getNumSuccessors() == 1)
177 return false;
178 if (!isa<BranchInst>(TI) && !isa<SwitchInst>(TI))
Chandler Carruth99d01c52011-10-19 10:30:30 +0000179 return false;
180
Chandler Carruth941aa7b2011-10-19 10:32:19 +0000181 MDNode *WeightsNode = TI->getMetadata(LLVMContext::MD_prof);
182 if (!WeightsNode)
Chandler Carruth99d01c52011-10-19 10:30:30 +0000183 return false;
184
Chandler Carruth941aa7b2011-10-19 10:32:19 +0000185 // Ensure there are weights for all of the successors. Note that the first
186 // operand to the metadata node is a name, not a weight.
187 if (WeightsNode->getNumOperands() != TI->getNumSuccessors() + 1)
Chandler Carruth99d01c52011-10-19 10:30:30 +0000188 return false;
189
Chandler Carruth941aa7b2011-10-19 10:32:19 +0000190 // Build up the final weights that will be used in a temporary buffer, but
191 // don't add them until all weihts are present. Each weight value is clamped
192 // to [1, getMaxWeightFor(BB)].
Chandler Carruth99d01c52011-10-19 10:30:30 +0000193 uint32_t WeightLimit = getMaxWeightFor(BB);
Chandler Carruth941aa7b2011-10-19 10:32:19 +0000194 SmallVector<uint32_t, 2> Weights;
195 Weights.reserve(TI->getNumSuccessors());
196 for (unsigned i = 1, e = WeightsNode->getNumOperands(); i != e; ++i) {
197 ConstantInt *Weight = dyn_cast<ConstantInt>(WeightsNode->getOperand(i));
198 if (!Weight)
199 return false;
200 Weights.push_back(
201 std::max<uint32_t>(1, Weight->getLimitedValue(WeightLimit)));
202 }
203 assert(Weights.size() == TI->getNumSuccessors() && "Checked above");
204 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i)
Manman Ren1a710fd2012-08-24 18:14:27 +0000205 setEdgeWeight(BB, i, Weights[i]);
Chandler Carruth99d01c52011-10-19 10:30:30 +0000206
207 return true;
208}
209
Diego Novillo77226a02013-05-24 12:26:52 +0000210/// \brief Calculate edge weights for edges leading to cold blocks.
211///
212/// A cold block is one post-dominated by a block with a call to a
213/// cold function. Those edges are unlikely to be taken, so we give
214/// them relatively low weight.
215///
216/// Return true if we could compute the weights for cold edges.
217/// Return false, otherwise.
218bool BranchProbabilityInfo::calcColdCallHeuristics(BasicBlock *BB) {
219 TerminatorInst *TI = BB->getTerminator();
220 if (TI->getNumSuccessors() == 0)
221 return false;
222
223 // Determine which successors are post-dominated by a cold block.
224 SmallVector<unsigned, 4> ColdEdges;
225 ColdEdges.reserve(TI->getNumSuccessors());
226 SmallVector<unsigned, 4> NormalEdges;
227 NormalEdges.reserve(TI->getNumSuccessors());
228 for (succ_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I)
229 if (PostDominatedByColdCall.count(*I))
230 ColdEdges.push_back(I.getSuccessorIndex());
231 else
232 NormalEdges.push_back(I.getSuccessorIndex());
233
234 // If all successors are in the set of blocks post-dominated by cold calls,
235 // this block is in the set post-dominated by cold calls.
236 if (ColdEdges.size() == TI->getNumSuccessors())
237 PostDominatedByColdCall.insert(BB);
238 else {
239 // Otherwise, if the block itself contains a cold function, add it to the
240 // set of blocks postdominated by a cold call.
241 assert(!PostDominatedByColdCall.count(BB));
242 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
243 if (CallInst *CI = dyn_cast<CallInst>(I))
244 if (CI->hasFnAttr(Attribute::Cold)) {
245 PostDominatedByColdCall.insert(BB);
246 break;
247 }
248 }
249
250 // Skip probabilities if this block has a single successor.
251 if (TI->getNumSuccessors() == 1 || ColdEdges.empty())
252 return false;
253
254 uint32_t ColdWeight =
255 std::max(CC_TAKEN_WEIGHT / (unsigned) ColdEdges.size(), MIN_WEIGHT);
256 for (SmallVector<unsigned, 4>::iterator I = ColdEdges.begin(),
257 E = ColdEdges.end();
258 I != E; ++I)
259 setEdgeWeight(BB, *I, ColdWeight);
260
261 if (NormalEdges.empty())
262 return true;
263 uint32_t NormalWeight = std::max(
264 CC_NONTAKEN_WEIGHT / (unsigned) NormalEdges.size(), NORMAL_WEIGHT);
265 for (SmallVector<unsigned, 4>::iterator I = NormalEdges.begin(),
266 E = NormalEdges.end();
267 I != E; ++I)
268 setEdgeWeight(BB, *I, NormalWeight);
269
270 return true;
271}
272
Andrew Trick9e764222011-06-04 01:16:30 +0000273// Calculate Edge Weights using "Pointer Heuristics". Predict a comparsion
274// between two pointer or pointer and NULL will fail.
Chandler Carruthb068bbba2011-10-24 01:40:45 +0000275bool BranchProbabilityInfo::calcPointerHeuristics(BasicBlock *BB) {
Andrew Trick9e764222011-06-04 01:16:30 +0000276 BranchInst * BI = dyn_cast<BranchInst>(BB->getTerminator());
277 if (!BI || !BI->isConditional())
Jakub Staszak7241caf2011-07-28 21:45:07 +0000278 return false;
Andrew Trick9e764222011-06-04 01:16:30 +0000279
280 Value *Cond = BI->getCondition();
281 ICmpInst *CI = dyn_cast<ICmpInst>(Cond);
Jakub Staszakd7932ca2011-07-15 20:51:06 +0000282 if (!CI || !CI->isEquality())
Jakub Staszak7241caf2011-07-28 21:45:07 +0000283 return false;
Andrew Trick9e764222011-06-04 01:16:30 +0000284
285 Value *LHS = CI->getOperand(0);
Andrew Trick9e764222011-06-04 01:16:30 +0000286
287 if (!LHS->getType()->isPointerTy())
Jakub Staszak7241caf2011-07-28 21:45:07 +0000288 return false;
Andrew Trick9e764222011-06-04 01:16:30 +0000289
Nick Lewycky404b53e2011-06-04 02:07:10 +0000290 assert(CI->getOperand(1)->getType()->isPointerTy());
Andrew Trick9e764222011-06-04 01:16:30 +0000291
Andrew Trick9e764222011-06-04 01:16:30 +0000292 // p != 0 -> isProb = true
293 // p == 0 -> isProb = false
294 // p != q -> isProb = true
295 // p == q -> isProb = false;
Manman Ren1a710fd2012-08-24 18:14:27 +0000296 unsigned TakenIdx = 0, NonTakenIdx = 1;
Jakub Staszakd7932ca2011-07-15 20:51:06 +0000297 bool isProb = CI->getPredicate() == ICmpInst::ICMP_NE;
Andrew Trick9e764222011-06-04 01:16:30 +0000298 if (!isProb)
Manman Ren1a710fd2012-08-24 18:14:27 +0000299 std::swap(TakenIdx, NonTakenIdx);
Andrew Trick9e764222011-06-04 01:16:30 +0000300
Manman Ren1a710fd2012-08-24 18:14:27 +0000301 setEdgeWeight(BB, TakenIdx, PH_TAKEN_WEIGHT);
302 setEdgeWeight(BB, NonTakenIdx, PH_NONTAKEN_WEIGHT);
Jakub Staszak7241caf2011-07-28 21:45:07 +0000303 return true;
Andrew Trick9e764222011-06-04 01:16:30 +0000304}
305
306// Calculate Edge Weights using "Loop Branch Heuristics". Predict backedges
307// as taken, exiting edges as not-taken.
Chandler Carruthb068bbba2011-10-24 01:40:45 +0000308bool BranchProbabilityInfo::calcLoopBranchHeuristics(BasicBlock *BB) {
Andrew Trick9e764222011-06-04 01:16:30 +0000309 Loop *L = LI->getLoopFor(BB);
310 if (!L)
Jakub Staszak7241caf2011-07-28 21:45:07 +0000311 return false;
Andrew Trick9e764222011-06-04 01:16:30 +0000312
Manman Ren1a710fd2012-08-24 18:14:27 +0000313 SmallVector<unsigned, 8> BackEdges;
314 SmallVector<unsigned, 8> ExitingEdges;
315 SmallVector<unsigned, 8> InEdges; // Edges from header to the loop.
Jakub Staszakfa447252011-07-28 21:33:46 +0000316
Andrew Trick9e764222011-06-04 01:16:30 +0000317 for (succ_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) {
Chandler Carruth45baf6b2011-10-25 09:47:41 +0000318 if (!L->contains(*I))
Manman Ren1a710fd2012-08-24 18:14:27 +0000319 ExitingEdges.push_back(I.getSuccessorIndex());
Chandler Carruth45baf6b2011-10-25 09:47:41 +0000320 else if (L->getHeader() == *I)
Manman Ren1a710fd2012-08-24 18:14:27 +0000321 BackEdges.push_back(I.getSuccessorIndex());
Chandler Carruth45baf6b2011-10-25 09:47:41 +0000322 else
Manman Ren1a710fd2012-08-24 18:14:27 +0000323 InEdges.push_back(I.getSuccessorIndex());
Andrew Trick9e764222011-06-04 01:16:30 +0000324 }
325
Andrew Trickf289df22011-06-11 01:05:22 +0000326 if (uint32_t numBackEdges = BackEdges.size()) {
327 uint32_t backWeight = LBH_TAKEN_WEIGHT / numBackEdges;
Andrew Trick9e764222011-06-04 01:16:30 +0000328 if (backWeight < NORMAL_WEIGHT)
329 backWeight = NORMAL_WEIGHT;
330
Manman Ren1a710fd2012-08-24 18:14:27 +0000331 for (SmallVector<unsigned, 8>::iterator EI = BackEdges.begin(),
Andrew Trick9e764222011-06-04 01:16:30 +0000332 EE = BackEdges.end(); EI != EE; ++EI) {
Manman Ren1a710fd2012-08-24 18:14:27 +0000333 setEdgeWeight(BB, *EI, backWeight);
Andrew Trick9e764222011-06-04 01:16:30 +0000334 }
335 }
336
Jakub Staszakfa447252011-07-28 21:33:46 +0000337 if (uint32_t numInEdges = InEdges.size()) {
338 uint32_t inWeight = LBH_TAKEN_WEIGHT / numInEdges;
339 if (inWeight < NORMAL_WEIGHT)
340 inWeight = NORMAL_WEIGHT;
341
Manman Ren1a710fd2012-08-24 18:14:27 +0000342 for (SmallVector<unsigned, 8>::iterator EI = InEdges.begin(),
Jakub Staszakfa447252011-07-28 21:33:46 +0000343 EE = InEdges.end(); EI != EE; ++EI) {
Manman Ren1a710fd2012-08-24 18:14:27 +0000344 setEdgeWeight(BB, *EI, inWeight);
Jakub Staszakfa447252011-07-28 21:33:46 +0000345 }
346 }
347
Chandler Carruth45baf6b2011-10-25 09:47:41 +0000348 if (uint32_t numExitingEdges = ExitingEdges.size()) {
349 uint32_t exitWeight = LBH_NONTAKEN_WEIGHT / numExitingEdges;
Andrew Trick9e764222011-06-04 01:16:30 +0000350 if (exitWeight < MIN_WEIGHT)
351 exitWeight = MIN_WEIGHT;
352
Manman Ren1a710fd2012-08-24 18:14:27 +0000353 for (SmallVector<unsigned, 8>::iterator EI = ExitingEdges.begin(),
Andrew Trick9e764222011-06-04 01:16:30 +0000354 EE = ExitingEdges.end(); EI != EE; ++EI) {
Manman Ren1a710fd2012-08-24 18:14:27 +0000355 setEdgeWeight(BB, *EI, exitWeight);
Andrew Trick9e764222011-06-04 01:16:30 +0000356 }
357 }
Jakub Staszak7241caf2011-07-28 21:45:07 +0000358
359 return true;
Andrew Trick9e764222011-06-04 01:16:30 +0000360}
361
Chandler Carruthb068bbba2011-10-24 01:40:45 +0000362bool BranchProbabilityInfo::calcZeroHeuristics(BasicBlock *BB) {
Jakub Staszaka5dd5502011-07-31 03:27:24 +0000363 BranchInst * BI = dyn_cast<BranchInst>(BB->getTerminator());
364 if (!BI || !BI->isConditional())
365 return false;
366
367 Value *Cond = BI->getCondition();
368 ICmpInst *CI = dyn_cast<ICmpInst>(Cond);
369 if (!CI)
370 return false;
371
Jakub Staszaka5dd5502011-07-31 03:27:24 +0000372 Value *RHS = CI->getOperand(1);
Jakub Staszaka385c202011-07-31 04:47:20 +0000373 ConstantInt *CV = dyn_cast<ConstantInt>(RHS);
Benjamin Kramer26eb8702011-09-04 23:53:04 +0000374 if (!CV)
Jakub Staszaka5dd5502011-07-31 03:27:24 +0000375 return false;
376
377 bool isProb;
Benjamin Kramer26eb8702011-09-04 23:53:04 +0000378 if (CV->isZero()) {
379 switch (CI->getPredicate()) {
380 case CmpInst::ICMP_EQ:
381 // X == 0 -> Unlikely
382 isProb = false;
383 break;
384 case CmpInst::ICMP_NE:
385 // X != 0 -> Likely
386 isProb = true;
387 break;
388 case CmpInst::ICMP_SLT:
389 // X < 0 -> Unlikely
390 isProb = false;
391 break;
392 case CmpInst::ICMP_SGT:
393 // X > 0 -> Likely
394 isProb = true;
395 break;
396 default:
397 return false;
398 }
399 } else if (CV->isOne() && CI->getPredicate() == CmpInst::ICMP_SLT) {
400 // InstCombine canonicalizes X <= 0 into X < 1.
401 // X <= 0 -> Unlikely
Jakub Staszaka5dd5502011-07-31 03:27:24 +0000402 isProb = false;
Benjamin Kramer26eb8702011-09-04 23:53:04 +0000403 } else if (CV->isAllOnesValue() && CI->getPredicate() == CmpInst::ICMP_SGT) {
404 // InstCombine canonicalizes X >= 0 into X > -1.
405 // X >= 0 -> Likely
Jakub Staszaka5dd5502011-07-31 03:27:24 +0000406 isProb = true;
Benjamin Kramer26eb8702011-09-04 23:53:04 +0000407 } else {
Jakub Staszaka5dd5502011-07-31 03:27:24 +0000408 return false;
Benjamin Kramer26eb8702011-09-04 23:53:04 +0000409 }
Jakub Staszaka5dd5502011-07-31 03:27:24 +0000410
Manman Ren1a710fd2012-08-24 18:14:27 +0000411 unsigned TakenIdx = 0, NonTakenIdx = 1;
Jakub Staszaka5dd5502011-07-31 03:27:24 +0000412
413 if (!isProb)
Manman Ren1a710fd2012-08-24 18:14:27 +0000414 std::swap(TakenIdx, NonTakenIdx);
Jakub Staszaka5dd5502011-07-31 03:27:24 +0000415
Manman Ren1a710fd2012-08-24 18:14:27 +0000416 setEdgeWeight(BB, TakenIdx, ZH_TAKEN_WEIGHT);
417 setEdgeWeight(BB, NonTakenIdx, ZH_NONTAKEN_WEIGHT);
Jakub Staszaka5dd5502011-07-31 03:27:24 +0000418
419 return true;
420}
421
Chandler Carruthb068bbba2011-10-24 01:40:45 +0000422bool BranchProbabilityInfo::calcFloatingPointHeuristics(BasicBlock *BB) {
Benjamin Kramerc888aa42011-10-21 20:12:47 +0000423 BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator());
424 if (!BI || !BI->isConditional())
425 return false;
426
427 Value *Cond = BI->getCondition();
428 FCmpInst *FCmp = dyn_cast<FCmpInst>(Cond);
Benjamin Kramer675c02b2011-10-21 21:13:47 +0000429 if (!FCmp)
Benjamin Kramerc888aa42011-10-21 20:12:47 +0000430 return false;
431
Benjamin Kramer675c02b2011-10-21 21:13:47 +0000432 bool isProb;
433 if (FCmp->isEquality()) {
434 // f1 == f2 -> Unlikely
435 // f1 != f2 -> Likely
436 isProb = !FCmp->isTrueWhenEqual();
437 } else if (FCmp->getPredicate() == FCmpInst::FCMP_ORD) {
438 // !isnan -> Likely
439 isProb = true;
440 } else if (FCmp->getPredicate() == FCmpInst::FCMP_UNO) {
441 // isnan -> Unlikely
442 isProb = false;
443 } else {
444 return false;
445 }
446
Manman Ren1a710fd2012-08-24 18:14:27 +0000447 unsigned TakenIdx = 0, NonTakenIdx = 1;
Benjamin Kramerc888aa42011-10-21 20:12:47 +0000448
Benjamin Kramer675c02b2011-10-21 21:13:47 +0000449 if (!isProb)
Manman Ren1a710fd2012-08-24 18:14:27 +0000450 std::swap(TakenIdx, NonTakenIdx);
Benjamin Kramerc888aa42011-10-21 20:12:47 +0000451
Manman Ren1a710fd2012-08-24 18:14:27 +0000452 setEdgeWeight(BB, TakenIdx, FPH_TAKEN_WEIGHT);
453 setEdgeWeight(BB, NonTakenIdx, FPH_NONTAKEN_WEIGHT);
Benjamin Kramerc888aa42011-10-21 20:12:47 +0000454
455 return true;
456}
Jakub Staszaka5dd5502011-07-31 03:27:24 +0000457
Bill Wendling0c34ae82012-08-15 12:22:35 +0000458bool BranchProbabilityInfo::calcInvokeHeuristics(BasicBlock *BB) {
459 InvokeInst *II = dyn_cast<InvokeInst>(BB->getTerminator());
460 if (!II)
461 return false;
462
Manman Ren1a710fd2012-08-24 18:14:27 +0000463 setEdgeWeight(BB, 0/*Index for Normal*/, IH_TAKEN_WEIGHT);
464 setEdgeWeight(BB, 1/*Index for Unwind*/, IH_NONTAKEN_WEIGHT);
Bill Wendling0c34ae82012-08-15 12:22:35 +0000465 return true;
466}
467
Chandler Carruthb068bbba2011-10-24 01:40:45 +0000468void BranchProbabilityInfo::getAnalysisUsage(AnalysisUsage &AU) const {
469 AU.addRequired<LoopInfo>();
470 AU.setPreservesAll();
471}
472
473bool BranchProbabilityInfo::runOnFunction(Function &F) {
474 LastF = &F; // Store the last function we ran on for printing.
475 LI = &getAnalysis<LoopInfo>();
Chandler Carruthde1c9bb2011-10-24 12:01:08 +0000476 assert(PostDominatedByUnreachable.empty());
Diego Novillo77226a02013-05-24 12:26:52 +0000477 assert(PostDominatedByColdCall.empty());
Chandler Carruthb068bbba2011-10-24 01:40:45 +0000478
Chandler Carruthde1c9bb2011-10-24 12:01:08 +0000479 // Walk the basic blocks in post-order so that we can build up state about
480 // the successors of a block iteratively.
481 for (po_iterator<BasicBlock *> I = po_begin(&F.getEntryBlock()),
482 E = po_end(&F.getEntryBlock());
483 I != E; ++I) {
484 DEBUG(dbgs() << "Computing probabilities for " << I->getName() << "\n");
485 if (calcUnreachableHeuristics(*I))
Chandler Carruth99d01c52011-10-19 10:30:30 +0000486 continue;
Chandler Carruthde1c9bb2011-10-24 12:01:08 +0000487 if (calcMetadataWeights(*I))
Jakub Staszak7241caf2011-07-28 21:45:07 +0000488 continue;
Diego Novillo77226a02013-05-24 12:26:52 +0000489 if (calcColdCallHeuristics(*I))
490 continue;
Chandler Carruthde1c9bb2011-10-24 12:01:08 +0000491 if (calcLoopBranchHeuristics(*I))
Jakub Staszak7241caf2011-07-28 21:45:07 +0000492 continue;
Chandler Carruthde1c9bb2011-10-24 12:01:08 +0000493 if (calcPointerHeuristics(*I))
Jakub Staszaka5dd5502011-07-31 03:27:24 +0000494 continue;
Chandler Carruthde1c9bb2011-10-24 12:01:08 +0000495 if (calcZeroHeuristics(*I))
Benjamin Kramerc888aa42011-10-21 20:12:47 +0000496 continue;
Bill Wendling0c34ae82012-08-15 12:22:35 +0000497 if (calcFloatingPointHeuristics(*I))
498 continue;
499 calcInvokeHeuristics(*I);
Andrew Trick9e764222011-06-04 01:16:30 +0000500 }
Chandler Carruthde1c9bb2011-10-24 12:01:08 +0000501
502 PostDominatedByUnreachable.clear();
Diego Novillo77226a02013-05-24 12:26:52 +0000503 PostDominatedByColdCall.clear();
Andrew Trick9e764222011-06-04 01:16:30 +0000504 return false;
505}
506
Chandler Carruth14edd312011-10-23 21:21:50 +0000507void BranchProbabilityInfo::print(raw_ostream &OS, const Module *) const {
508 OS << "---- Branch Probabilities ----\n";
509 // We print the probabilities from the last function the analysis ran over,
510 // or the function it is currently running over.
511 assert(LastF && "Cannot print prior to running over a function");
512 for (Function::const_iterator BI = LastF->begin(), BE = LastF->end();
513 BI != BE; ++BI) {
514 for (succ_const_iterator SI = succ_begin(BI), SE = succ_end(BI);
515 SI != SE; ++SI) {
516 printEdgeProbability(OS << " ", BI, *SI);
517 }
518 }
519}
520
Jakub Staszak6f6baf12011-07-29 19:30:00 +0000521uint32_t BranchProbabilityInfo::getSumForBlock(const BasicBlock *BB) const {
Andrew Trickf289df22011-06-11 01:05:22 +0000522 uint32_t Sum = 0;
523
Jakub Staszak6f6baf12011-07-29 19:30:00 +0000524 for (succ_const_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) {
Manman Ren1a710fd2012-08-24 18:14:27 +0000525 uint32_t Weight = getEdgeWeight(BB, I.getSuccessorIndex());
Andrew Trickf289df22011-06-11 01:05:22 +0000526 uint32_t PrevSum = Sum;
Andrew Trick9e764222011-06-04 01:16:30 +0000527
528 Sum += Weight;
529 assert(Sum > PrevSum); (void) PrevSum;
530 }
531
Andrew Trickf289df22011-06-11 01:05:22 +0000532 return Sum;
533}
534
Jakub Staszak6f6baf12011-07-29 19:30:00 +0000535bool BranchProbabilityInfo::
536isEdgeHot(const BasicBlock *Src, const BasicBlock *Dst) const {
Andrew Trickf289df22011-06-11 01:05:22 +0000537 // Hot probability is at least 4/5 = 80%
Benjamin Kramer341473c2011-10-23 11:19:14 +0000538 // FIXME: Compare against a static "hot" BranchProbability.
539 return getEdgeProbability(Src, Dst) > BranchProbability(4, 5);
Andrew Trick9e764222011-06-04 01:16:30 +0000540}
541
542BasicBlock *BranchProbabilityInfo::getHotSucc(BasicBlock *BB) const {
Andrew Trickf289df22011-06-11 01:05:22 +0000543 uint32_t Sum = 0;
544 uint32_t MaxWeight = 0;
Andrew Trick9e764222011-06-04 01:16:30 +0000545 BasicBlock *MaxSucc = 0;
546
547 for (succ_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) {
548 BasicBlock *Succ = *I;
Andrew Trickf289df22011-06-11 01:05:22 +0000549 uint32_t Weight = getEdgeWeight(BB, Succ);
550 uint32_t PrevSum = Sum;
Andrew Trick9e764222011-06-04 01:16:30 +0000551
552 Sum += Weight;
553 assert(Sum > PrevSum); (void) PrevSum;
554
555 if (Weight > MaxWeight) {
556 MaxWeight = Weight;
557 MaxSucc = Succ;
558 }
559 }
560
Benjamin Kramer341473c2011-10-23 11:19:14 +0000561 // Hot probability is at least 4/5 = 80%
562 if (BranchProbability(MaxWeight, Sum) > BranchProbability(4, 5))
Andrew Trick9e764222011-06-04 01:16:30 +0000563 return MaxSucc;
564
565 return 0;
566}
567
Manman Ren1a710fd2012-08-24 18:14:27 +0000568/// Get the raw edge weight for the edge. If can't find it, return
569/// DEFAULT_WEIGHT value. Here an edge is specified using PredBlock and an index
570/// to the successors.
Jakub Staszak6f6baf12011-07-29 19:30:00 +0000571uint32_t BranchProbabilityInfo::
Manman Ren1a710fd2012-08-24 18:14:27 +0000572getEdgeWeight(const BasicBlock *Src, unsigned IndexInSuccessors) const {
573 DenseMap<Edge, uint32_t>::const_iterator I =
574 Weights.find(std::make_pair(Src, IndexInSuccessors));
Andrew Trick9e764222011-06-04 01:16:30 +0000575
576 if (I != Weights.end())
577 return I->second;
578
579 return DEFAULT_WEIGHT;
580}
581
Manman Ren1a710fd2012-08-24 18:14:27 +0000582/// Get the raw edge weight calculated for the block pair. This returns the sum
583/// of all raw edge weights from Src to Dst.
584uint32_t BranchProbabilityInfo::
585getEdgeWeight(const BasicBlock *Src, const BasicBlock *Dst) const {
586 uint32_t Weight = 0;
587 DenseMap<Edge, uint32_t>::const_iterator MapI;
588 for (succ_const_iterator I = succ_begin(Src), E = succ_end(Src); I != E; ++I)
589 if (*I == Dst) {
590 MapI = Weights.find(std::make_pair(Src, I.getSuccessorIndex()));
591 if (MapI != Weights.end())
592 Weight += MapI->second;
593 }
594 return (Weight == 0) ? DEFAULT_WEIGHT : Weight;
Andrew Trickf289df22011-06-11 01:05:22 +0000595}
596
Manman Ren1a710fd2012-08-24 18:14:27 +0000597/// Set the edge weight for a given edge specified by PredBlock and an index
598/// to the successors.
599void BranchProbabilityInfo::
600setEdgeWeight(const BasicBlock *Src, unsigned IndexInSuccessors,
601 uint32_t Weight) {
602 Weights[std::make_pair(Src, IndexInSuccessors)] = Weight;
603 DEBUG(dbgs() << "set edge " << Src->getName() << " -> "
604 << IndexInSuccessors << " successor weight to "
605 << Weight << "\n");
606}
Andrew Trickf289df22011-06-11 01:05:22 +0000607
Manman Ren1a710fd2012-08-24 18:14:27 +0000608/// Get an edge's probability, relative to other out-edges from Src.
609BranchProbability BranchProbabilityInfo::
610getEdgeProbability(const BasicBlock *Src, unsigned IndexInSuccessors) const {
611 uint32_t N = getEdgeWeight(Src, IndexInSuccessors);
612 uint32_t D = getSumForBlock(Src);
613
614 return BranchProbability(N, D);
615}
616
617/// Get the probability of going from Src to Dst. It returns the sum of all
618/// probabilities for edges from Src to Dst.
Andrew Trickf289df22011-06-11 01:05:22 +0000619BranchProbability BranchProbabilityInfo::
Jakub Staszak6f6baf12011-07-29 19:30:00 +0000620getEdgeProbability(const BasicBlock *Src, const BasicBlock *Dst) const {
Andrew Trickf289df22011-06-11 01:05:22 +0000621
622 uint32_t N = getEdgeWeight(Src, Dst);
623 uint32_t D = getSumForBlock(Src);
624
625 return BranchProbability(N, D);
Andrew Trick9e764222011-06-04 01:16:30 +0000626}
627
628raw_ostream &
Chandler Carruth14edd312011-10-23 21:21:50 +0000629BranchProbabilityInfo::printEdgeProbability(raw_ostream &OS,
630 const BasicBlock *Src,
631 const BasicBlock *Dst) const {
Andrew Trick9e764222011-06-04 01:16:30 +0000632
Jakub Staszak7cc2b072011-06-16 20:22:37 +0000633 const BranchProbability Prob = getEdgeProbability(Src, Dst);
Benjamin Kramera7b0cb72011-11-15 16:27:03 +0000634 OS << "edge " << Src->getName() << " -> " << Dst->getName()
Andrew Trickf289df22011-06-11 01:05:22 +0000635 << " probability is " << Prob
636 << (isEdgeHot(Src, Dst) ? " [HOT edge]\n" : "\n");
Andrew Trick9e764222011-06-04 01:16:30 +0000637
638 return OS;
639}