blob: 2b39d47e5fafad801d674dab3c3da466c78d4f40 [file] [log] [blame]
Bill Wendlinge1c54262012-08-15 12:22:35 +00001//===-- BranchProbabilityInfo.cpp - Branch Probability Analysis -----------===//
Andrew Trick49371f32011-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 Carruthed0881b2012-12-03 16:50:05 +000014#include "llvm/Analysis/BranchProbabilityInfo.h"
15#include "llvm/ADT/PostOrderIterator.h"
16#include "llvm/Analysis/LoopInfo.h"
Chandler Carruth1305dc32014-03-04 11:45:46 +000017#include "llvm/IR/CFG.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000018#include "llvm/IR/Constants.h"
19#include "llvm/IR/Function.h"
20#include "llvm/IR/Instructions.h"
21#include "llvm/IR/LLVMContext.h"
22#include "llvm/IR/Metadata.h"
Andrew Trick3d4e64b2011-06-11 01:05:22 +000023#include "llvm/Support/Debug.h"
Andrew Trick49371f32011-06-04 01:16:30 +000024
25using namespace llvm;
26
Chandler Carruthf1221bd2014-04-22 02:48:03 +000027#define DEBUG_TYPE "branch-prob"
28
Andrew Trick49371f32011-06-04 01:16:30 +000029INITIALIZE_PASS_BEGIN(BranchProbabilityInfo, "branch-prob",
30 "Branch Probability Analysis", false, true)
31INITIALIZE_PASS_DEPENDENCY(LoopInfo)
32INITIALIZE_PASS_END(BranchProbabilityInfo, "branch-prob",
33 "Branch Probability Analysis", false, true)
34
35char BranchProbabilityInfo::ID = 0;
36
Chandler Carruth7a0094a2011-10-24 01:40:45 +000037// Weights are for internal use only. They are used by heuristics to help to
38// estimate edges' probability. Example:
39//
40// Using "Loop Branch Heuristics" we predict weights of edges for the
41// block BB2.
42// ...
43// |
44// V
45// BB1<-+
46// | |
47// | | (Weight = 124)
48// V |
49// BB2--+
50// |
51// | (Weight = 4)
52// V
53// BB3
54//
55// Probability of the edge BB2->BB1 = 124 / (124 + 4) = 0.96875
56// Probability of the edge BB2->BB3 = 4 / (124 + 4) = 0.03125
57static const uint32_t LBH_TAKEN_WEIGHT = 124;
58static const uint32_t LBH_NONTAKEN_WEIGHT = 4;
Andrew Trick49371f32011-06-04 01:16:30 +000059
Chandler Carruth7111f452011-10-24 12:01:08 +000060/// \brief Unreachable-terminating branch taken weight.
61///
62/// This is the weight for a branch being taken to a block that terminates
63/// (eventually) in unreachable. These are predicted as unlikely as possible.
64static const uint32_t UR_TAKEN_WEIGHT = 1;
65
66/// \brief Unreachable-terminating branch not-taken weight.
67///
68/// This is the weight for a branch not being taken toward a block that
69/// terminates (eventually) in unreachable. Such a branch is essentially never
Chandler Carruthb024aa02011-12-22 09:26:37 +000070/// taken. Set the weight to an absurdly high value so that nested loops don't
71/// easily subsume it.
72static const uint32_t UR_NONTAKEN_WEIGHT = 1024*1024 - 1;
Andrew Trick49371f32011-06-04 01:16:30 +000073
Diego Novilloc6399532013-05-24 12:26:52 +000074/// \brief Weight for a branch taken going into a cold block.
75///
76/// This is the weight for a branch taken toward a block marked
77/// cold. A block is marked cold if it's postdominated by a
78/// block containing a call to a cold function. Cold functions
79/// are those marked with attribute 'cold'.
80static const uint32_t CC_TAKEN_WEIGHT = 4;
81
82/// \brief Weight for a branch not-taken into a cold block.
83///
84/// This is the weight for a branch not taken toward a block marked
85/// cold.
86static const uint32_t CC_NONTAKEN_WEIGHT = 64;
87
Chandler Carruth7a0094a2011-10-24 01:40:45 +000088static const uint32_t PH_TAKEN_WEIGHT = 20;
89static const uint32_t PH_NONTAKEN_WEIGHT = 12;
Andrew Trick49371f32011-06-04 01:16:30 +000090
Chandler Carruth7a0094a2011-10-24 01:40:45 +000091static const uint32_t ZH_TAKEN_WEIGHT = 20;
92static const uint32_t ZH_NONTAKEN_WEIGHT = 12;
Andrew Trick49371f32011-06-04 01:16:30 +000093
Chandler Carruth7a0094a2011-10-24 01:40:45 +000094static const uint32_t FPH_TAKEN_WEIGHT = 20;
95static const uint32_t FPH_NONTAKEN_WEIGHT = 12;
Andrew Trick49371f32011-06-04 01:16:30 +000096
Bill Wendlinge1c54262012-08-15 12:22:35 +000097/// \brief Invoke-terminating normal branch taken weight
98///
99/// This is the weight for branching to the normal destination of an invoke
100/// instruction. We expect this to happen most of the time. Set the weight to an
101/// absurdly high value so that nested loops subsume it.
102static const uint32_t IH_TAKEN_WEIGHT = 1024 * 1024 - 1;
103
104/// \brief Invoke-terminating normal branch not-taken weight.
105///
106/// This is the weight for branching to the unwind destination of an invoke
107/// instruction. This is essentially never taken.
108static const uint32_t IH_NONTAKEN_WEIGHT = 1;
109
Chandler Carruth7a0094a2011-10-24 01:40:45 +0000110// Standard weight value. Used when none of the heuristics set weight for
111// the edge.
112static const uint32_t NORMAL_WEIGHT = 16;
Andrew Trick49371f32011-06-04 01:16:30 +0000113
Chandler Carruth7a0094a2011-10-24 01:40:45 +0000114// Minimum weight of an edge. Please note, that weight is NEVER 0.
115static const uint32_t MIN_WEIGHT = 1;
Andrew Trick49371f32011-06-04 01:16:30 +0000116
Chandler Carruth7a0094a2011-10-24 01:40:45 +0000117static uint32_t getMaxWeightFor(BasicBlock *BB) {
118 return UINT32_MAX / BB->getTerminator()->getNumSuccessors();
119}
Andrew Trick49371f32011-06-04 01:16:30 +0000120
Andrew Trick49371f32011-06-04 01:16:30 +0000121
Chandler Carruth7111f452011-10-24 12:01:08 +0000122/// \brief Calculate edge weights for successors lead to unreachable.
123///
124/// Predict that a successor which leads necessarily to an
125/// unreachable-terminated block as extremely unlikely.
126bool BranchProbabilityInfo::calcUnreachableHeuristics(BasicBlock *BB) {
127 TerminatorInst *TI = BB->getTerminator();
128 if (TI->getNumSuccessors() == 0) {
129 if (isa<UnreachableInst>(TI))
130 PostDominatedByUnreachable.insert(BB);
131 return false;
132 }
133
Manman Rencf104462012-08-24 18:14:27 +0000134 SmallVector<unsigned, 4> UnreachableEdges;
135 SmallVector<unsigned, 4> ReachableEdges;
Chandler Carruth7111f452011-10-24 12:01:08 +0000136
137 for (succ_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) {
138 if (PostDominatedByUnreachable.count(*I))
Manman Rencf104462012-08-24 18:14:27 +0000139 UnreachableEdges.push_back(I.getSuccessorIndex());
Chandler Carruth7111f452011-10-24 12:01:08 +0000140 else
Manman Rencf104462012-08-24 18:14:27 +0000141 ReachableEdges.push_back(I.getSuccessorIndex());
Chandler Carruth7111f452011-10-24 12:01:08 +0000142 }
143
144 // If all successors are in the set of blocks post-dominated by unreachable,
145 // this block is too.
146 if (UnreachableEdges.size() == TI->getNumSuccessors())
147 PostDominatedByUnreachable.insert(BB);
148
149 // Skip probabilities if this block has a single successor or if all were
150 // reachable.
151 if (TI->getNumSuccessors() == 1 || UnreachableEdges.empty())
152 return false;
153
154 uint32_t UnreachableWeight =
Manman Rencf104462012-08-24 18:14:27 +0000155 std::max(UR_TAKEN_WEIGHT / (unsigned)UnreachableEdges.size(), MIN_WEIGHT);
Craig Topperaf0dea12013-07-04 01:31:24 +0000156 for (SmallVectorImpl<unsigned>::iterator I = UnreachableEdges.begin(),
157 E = UnreachableEdges.end();
Chandler Carruth7111f452011-10-24 12:01:08 +0000158 I != E; ++I)
159 setEdgeWeight(BB, *I, UnreachableWeight);
160
161 if (ReachableEdges.empty())
162 return true;
163 uint32_t ReachableWeight =
Manman Rencf104462012-08-24 18:14:27 +0000164 std::max(UR_NONTAKEN_WEIGHT / (unsigned)ReachableEdges.size(),
165 NORMAL_WEIGHT);
Craig Topperaf0dea12013-07-04 01:31:24 +0000166 for (SmallVectorImpl<unsigned>::iterator I = ReachableEdges.begin(),
167 E = ReachableEdges.end();
Chandler Carruth7111f452011-10-24 12:01:08 +0000168 I != E; ++I)
169 setEdgeWeight(BB, *I, ReachableWeight);
170
171 return true;
172}
173
Chandler Carruthd27a7a92011-10-19 10:30:30 +0000174// Propagate existing explicit probabilities from either profile data or
175// 'expect' intrinsic processing.
Chandler Carruth7a0094a2011-10-24 01:40:45 +0000176bool BranchProbabilityInfo::calcMetadataWeights(BasicBlock *BB) {
Chandler Carruthdeac50c2011-10-19 10:32:19 +0000177 TerminatorInst *TI = BB->getTerminator();
178 if (TI->getNumSuccessors() == 1)
179 return false;
180 if (!isa<BranchInst>(TI) && !isa<SwitchInst>(TI))
Chandler Carruthd27a7a92011-10-19 10:30:30 +0000181 return false;
182
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +0000183 MDNode *WeightsNode = TI->getMetadata(LLVMContext::MD_prof);
Chandler Carruthdeac50c2011-10-19 10:32:19 +0000184 if (!WeightsNode)
Chandler Carruthd27a7a92011-10-19 10:30:30 +0000185 return false;
186
Chandler Carruthdeac50c2011-10-19 10:32:19 +0000187 // Ensure there are weights for all of the successors. Note that the first
188 // operand to the metadata node is a name, not a weight.
189 if (WeightsNode->getNumOperands() != TI->getNumSuccessors() + 1)
Chandler Carruthd27a7a92011-10-19 10:30:30 +0000190 return false;
191
Chandler Carruthdeac50c2011-10-19 10:32:19 +0000192 // Build up the final weights that will be used in a temporary buffer, but
193 // don't add them until all weihts are present. Each weight value is clamped
194 // to [1, getMaxWeightFor(BB)].
Chandler Carruthd27a7a92011-10-19 10:30:30 +0000195 uint32_t WeightLimit = getMaxWeightFor(BB);
Chandler Carruthdeac50c2011-10-19 10:32:19 +0000196 SmallVector<uint32_t, 2> Weights;
197 Weights.reserve(TI->getNumSuccessors());
198 for (unsigned i = 1, e = WeightsNode->getNumOperands(); i != e; ++i) {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000199 ConstantInt *Weight =
200 mdconst::dyn_extract<ConstantInt>(WeightsNode->getOperand(i));
Chandler Carruthdeac50c2011-10-19 10:32:19 +0000201 if (!Weight)
202 return false;
203 Weights.push_back(
204 std::max<uint32_t>(1, Weight->getLimitedValue(WeightLimit)));
205 }
206 assert(Weights.size() == TI->getNumSuccessors() && "Checked above");
207 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i)
Manman Rencf104462012-08-24 18:14:27 +0000208 setEdgeWeight(BB, i, Weights[i]);
Chandler Carruthd27a7a92011-10-19 10:30:30 +0000209
210 return true;
211}
212
Diego Novilloc6399532013-05-24 12:26:52 +0000213/// \brief Calculate edge weights for edges leading to cold blocks.
214///
215/// A cold block is one post-dominated by a block with a call to a
216/// cold function. Those edges are unlikely to be taken, so we give
217/// them relatively low weight.
218///
219/// Return true if we could compute the weights for cold edges.
220/// Return false, otherwise.
221bool BranchProbabilityInfo::calcColdCallHeuristics(BasicBlock *BB) {
222 TerminatorInst *TI = BB->getTerminator();
223 if (TI->getNumSuccessors() == 0)
224 return false;
225
226 // Determine which successors are post-dominated by a cold block.
227 SmallVector<unsigned, 4> ColdEdges;
Diego Novilloc6399532013-05-24 12:26:52 +0000228 SmallVector<unsigned, 4> NormalEdges;
Diego Novilloc6399532013-05-24 12:26:52 +0000229 for (succ_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I)
230 if (PostDominatedByColdCall.count(*I))
231 ColdEdges.push_back(I.getSuccessorIndex());
232 else
233 NormalEdges.push_back(I.getSuccessorIndex());
234
235 // If all successors are in the set of blocks post-dominated by cold calls,
236 // this block is in the set post-dominated by cold calls.
237 if (ColdEdges.size() == TI->getNumSuccessors())
238 PostDominatedByColdCall.insert(BB);
239 else {
240 // Otherwise, if the block itself contains a cold function, add it to the
241 // set of blocks postdominated by a cold call.
242 assert(!PostDominatedByColdCall.count(BB));
243 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
244 if (CallInst *CI = dyn_cast<CallInst>(I))
245 if (CI->hasFnAttr(Attribute::Cold)) {
246 PostDominatedByColdCall.insert(BB);
247 break;
248 }
249 }
250
251 // Skip probabilities if this block has a single successor.
252 if (TI->getNumSuccessors() == 1 || ColdEdges.empty())
253 return false;
254
255 uint32_t ColdWeight =
256 std::max(CC_TAKEN_WEIGHT / (unsigned) ColdEdges.size(), MIN_WEIGHT);
Craig Topperaf0dea12013-07-04 01:31:24 +0000257 for (SmallVectorImpl<unsigned>::iterator I = ColdEdges.begin(),
258 E = ColdEdges.end();
Diego Novilloc6399532013-05-24 12:26:52 +0000259 I != E; ++I)
260 setEdgeWeight(BB, *I, ColdWeight);
261
262 if (NormalEdges.empty())
263 return true;
264 uint32_t NormalWeight = std::max(
265 CC_NONTAKEN_WEIGHT / (unsigned) NormalEdges.size(), NORMAL_WEIGHT);
Craig Topperaf0dea12013-07-04 01:31:24 +0000266 for (SmallVectorImpl<unsigned>::iterator I = NormalEdges.begin(),
267 E = NormalEdges.end();
Diego Novilloc6399532013-05-24 12:26:52 +0000268 I != E; ++I)
269 setEdgeWeight(BB, *I, NormalWeight);
270
271 return true;
272}
273
Andrew Trick49371f32011-06-04 01:16:30 +0000274// Calculate Edge Weights using "Pointer Heuristics". Predict a comparsion
275// between two pointer or pointer and NULL will fail.
Chandler Carruth7a0094a2011-10-24 01:40:45 +0000276bool BranchProbabilityInfo::calcPointerHeuristics(BasicBlock *BB) {
Andrew Trick49371f32011-06-04 01:16:30 +0000277 BranchInst * BI = dyn_cast<BranchInst>(BB->getTerminator());
278 if (!BI || !BI->isConditional())
Jakub Staszakd07b2e12011-07-28 21:45:07 +0000279 return false;
Andrew Trick49371f32011-06-04 01:16:30 +0000280
281 Value *Cond = BI->getCondition();
282 ICmpInst *CI = dyn_cast<ICmpInst>(Cond);
Jakub Staszakabb236f2011-07-15 20:51:06 +0000283 if (!CI || !CI->isEquality())
Jakub Staszakd07b2e12011-07-28 21:45:07 +0000284 return false;
Andrew Trick49371f32011-06-04 01:16:30 +0000285
286 Value *LHS = CI->getOperand(0);
Andrew Trick49371f32011-06-04 01:16:30 +0000287
288 if (!LHS->getType()->isPointerTy())
Jakub Staszakd07b2e12011-07-28 21:45:07 +0000289 return false;
Andrew Trick49371f32011-06-04 01:16:30 +0000290
Nick Lewycky75b20532011-06-04 02:07:10 +0000291 assert(CI->getOperand(1)->getType()->isPointerTy());
Andrew Trick49371f32011-06-04 01:16:30 +0000292
Andrew Trick49371f32011-06-04 01:16:30 +0000293 // p != 0 -> isProb = true
294 // p == 0 -> isProb = false
295 // p != q -> isProb = true
296 // p == q -> isProb = false;
Manman Rencf104462012-08-24 18:14:27 +0000297 unsigned TakenIdx = 0, NonTakenIdx = 1;
Jakub Staszakabb236f2011-07-15 20:51:06 +0000298 bool isProb = CI->getPredicate() == ICmpInst::ICMP_NE;
Andrew Trick49371f32011-06-04 01:16:30 +0000299 if (!isProb)
Manman Rencf104462012-08-24 18:14:27 +0000300 std::swap(TakenIdx, NonTakenIdx);
Andrew Trick49371f32011-06-04 01:16:30 +0000301
Manman Rencf104462012-08-24 18:14:27 +0000302 setEdgeWeight(BB, TakenIdx, PH_TAKEN_WEIGHT);
303 setEdgeWeight(BB, NonTakenIdx, PH_NONTAKEN_WEIGHT);
Jakub Staszakd07b2e12011-07-28 21:45:07 +0000304 return true;
Andrew Trick49371f32011-06-04 01:16:30 +0000305}
306
307// Calculate Edge Weights using "Loop Branch Heuristics". Predict backedges
308// as taken, exiting edges as not-taken.
Chandler Carruth7a0094a2011-10-24 01:40:45 +0000309bool BranchProbabilityInfo::calcLoopBranchHeuristics(BasicBlock *BB) {
Andrew Trick49371f32011-06-04 01:16:30 +0000310 Loop *L = LI->getLoopFor(BB);
311 if (!L)
Jakub Staszakd07b2e12011-07-28 21:45:07 +0000312 return false;
Andrew Trick49371f32011-06-04 01:16:30 +0000313
Manman Rencf104462012-08-24 18:14:27 +0000314 SmallVector<unsigned, 8> BackEdges;
315 SmallVector<unsigned, 8> ExitingEdges;
316 SmallVector<unsigned, 8> InEdges; // Edges from header to the loop.
Jakub Staszakbcb3c652011-07-28 21:33:46 +0000317
Andrew Trick49371f32011-06-04 01:16:30 +0000318 for (succ_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) {
Chandler Carruth32f46e72011-10-25 09:47:41 +0000319 if (!L->contains(*I))
Manman Rencf104462012-08-24 18:14:27 +0000320 ExitingEdges.push_back(I.getSuccessorIndex());
Chandler Carruth32f46e72011-10-25 09:47:41 +0000321 else if (L->getHeader() == *I)
Manman Rencf104462012-08-24 18:14:27 +0000322 BackEdges.push_back(I.getSuccessorIndex());
Chandler Carruth32f46e72011-10-25 09:47:41 +0000323 else
Manman Rencf104462012-08-24 18:14:27 +0000324 InEdges.push_back(I.getSuccessorIndex());
Andrew Trick49371f32011-06-04 01:16:30 +0000325 }
326
Akira Hatanaka5638b892014-04-14 16:56:19 +0000327 if (BackEdges.empty() && ExitingEdges.empty())
328 return false;
329
Andrew Trick3d4e64b2011-06-11 01:05:22 +0000330 if (uint32_t numBackEdges = BackEdges.size()) {
331 uint32_t backWeight = LBH_TAKEN_WEIGHT / numBackEdges;
Andrew Trick49371f32011-06-04 01:16:30 +0000332 if (backWeight < NORMAL_WEIGHT)
333 backWeight = NORMAL_WEIGHT;
334
Craig Topperaf0dea12013-07-04 01:31:24 +0000335 for (SmallVectorImpl<unsigned>::iterator EI = BackEdges.begin(),
Andrew Trick49371f32011-06-04 01:16:30 +0000336 EE = BackEdges.end(); EI != EE; ++EI) {
Manman Rencf104462012-08-24 18:14:27 +0000337 setEdgeWeight(BB, *EI, backWeight);
Andrew Trick49371f32011-06-04 01:16:30 +0000338 }
339 }
340
Jakub Staszakbcb3c652011-07-28 21:33:46 +0000341 if (uint32_t numInEdges = InEdges.size()) {
342 uint32_t inWeight = LBH_TAKEN_WEIGHT / numInEdges;
343 if (inWeight < NORMAL_WEIGHT)
344 inWeight = NORMAL_WEIGHT;
345
Craig Topperaf0dea12013-07-04 01:31:24 +0000346 for (SmallVectorImpl<unsigned>::iterator EI = InEdges.begin(),
Jakub Staszakbcb3c652011-07-28 21:33:46 +0000347 EE = InEdges.end(); EI != EE; ++EI) {
Manman Rencf104462012-08-24 18:14:27 +0000348 setEdgeWeight(BB, *EI, inWeight);
Jakub Staszakbcb3c652011-07-28 21:33:46 +0000349 }
350 }
351
Chandler Carruth32f46e72011-10-25 09:47:41 +0000352 if (uint32_t numExitingEdges = ExitingEdges.size()) {
353 uint32_t exitWeight = LBH_NONTAKEN_WEIGHT / numExitingEdges;
Andrew Trick49371f32011-06-04 01:16:30 +0000354 if (exitWeight < MIN_WEIGHT)
355 exitWeight = MIN_WEIGHT;
356
Craig Topperaf0dea12013-07-04 01:31:24 +0000357 for (SmallVectorImpl<unsigned>::iterator EI = ExitingEdges.begin(),
Andrew Trick49371f32011-06-04 01:16:30 +0000358 EE = ExitingEdges.end(); EI != EE; ++EI) {
Manman Rencf104462012-08-24 18:14:27 +0000359 setEdgeWeight(BB, *EI, exitWeight);
Andrew Trick49371f32011-06-04 01:16:30 +0000360 }
361 }
Jakub Staszakd07b2e12011-07-28 21:45:07 +0000362
363 return true;
Andrew Trick49371f32011-06-04 01:16:30 +0000364}
365
Chandler Carruth7a0094a2011-10-24 01:40:45 +0000366bool BranchProbabilityInfo::calcZeroHeuristics(BasicBlock *BB) {
Jakub Staszak17af66a2011-07-31 03:27:24 +0000367 BranchInst * BI = dyn_cast<BranchInst>(BB->getTerminator());
368 if (!BI || !BI->isConditional())
369 return false;
370
371 Value *Cond = BI->getCondition();
372 ICmpInst *CI = dyn_cast<ICmpInst>(Cond);
373 if (!CI)
374 return false;
375
Jakub Staszak17af66a2011-07-31 03:27:24 +0000376 Value *RHS = CI->getOperand(1);
Jakub Staszakbfb1ae22011-07-31 04:47:20 +0000377 ConstantInt *CV = dyn_cast<ConstantInt>(RHS);
Benjamin Kramer0ca1ad02011-09-04 23:53:04 +0000378 if (!CV)
Jakub Staszak17af66a2011-07-31 03:27:24 +0000379 return false;
380
381 bool isProb;
Benjamin Kramer0ca1ad02011-09-04 23:53:04 +0000382 if (CV->isZero()) {
383 switch (CI->getPredicate()) {
384 case CmpInst::ICMP_EQ:
385 // X == 0 -> Unlikely
386 isProb = false;
387 break;
388 case CmpInst::ICMP_NE:
389 // X != 0 -> Likely
390 isProb = true;
391 break;
392 case CmpInst::ICMP_SLT:
393 // X < 0 -> Unlikely
394 isProb = false;
395 break;
396 case CmpInst::ICMP_SGT:
397 // X > 0 -> Likely
398 isProb = true;
399 break;
400 default:
401 return false;
402 }
403 } else if (CV->isOne() && CI->getPredicate() == CmpInst::ICMP_SLT) {
404 // InstCombine canonicalizes X <= 0 into X < 1.
405 // X <= 0 -> Unlikely
Jakub Staszak17af66a2011-07-31 03:27:24 +0000406 isProb = false;
Hal Finkel4d949302013-11-01 10:58:22 +0000407 } else if (CV->isAllOnesValue()) {
408 switch (CI->getPredicate()) {
409 case CmpInst::ICMP_EQ:
410 // X == -1 -> Unlikely
411 isProb = false;
412 break;
413 case CmpInst::ICMP_NE:
414 // X != -1 -> Likely
415 isProb = true;
416 break;
417 case CmpInst::ICMP_SGT:
418 // InstCombine canonicalizes X >= 0 into X > -1.
419 // X >= 0 -> Likely
420 isProb = true;
421 break;
422 default:
423 return false;
424 }
Benjamin Kramer0ca1ad02011-09-04 23:53:04 +0000425 } else {
Jakub Staszak17af66a2011-07-31 03:27:24 +0000426 return false;
Benjamin Kramer0ca1ad02011-09-04 23:53:04 +0000427 }
Jakub Staszak17af66a2011-07-31 03:27:24 +0000428
Manman Rencf104462012-08-24 18:14:27 +0000429 unsigned TakenIdx = 0, NonTakenIdx = 1;
Jakub Staszak17af66a2011-07-31 03:27:24 +0000430
431 if (!isProb)
Manman Rencf104462012-08-24 18:14:27 +0000432 std::swap(TakenIdx, NonTakenIdx);
Jakub Staszak17af66a2011-07-31 03:27:24 +0000433
Manman Rencf104462012-08-24 18:14:27 +0000434 setEdgeWeight(BB, TakenIdx, ZH_TAKEN_WEIGHT);
435 setEdgeWeight(BB, NonTakenIdx, ZH_NONTAKEN_WEIGHT);
Jakub Staszak17af66a2011-07-31 03:27:24 +0000436
437 return true;
438}
439
Chandler Carruth7a0094a2011-10-24 01:40:45 +0000440bool BranchProbabilityInfo::calcFloatingPointHeuristics(BasicBlock *BB) {
Benjamin Kramer1e731a12011-10-21 20:12:47 +0000441 BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator());
442 if (!BI || !BI->isConditional())
443 return false;
444
445 Value *Cond = BI->getCondition();
446 FCmpInst *FCmp = dyn_cast<FCmpInst>(Cond);
Benjamin Kramer606a50a2011-10-21 21:13:47 +0000447 if (!FCmp)
Benjamin Kramer1e731a12011-10-21 20:12:47 +0000448 return false;
449
Benjamin Kramer606a50a2011-10-21 21:13:47 +0000450 bool isProb;
451 if (FCmp->isEquality()) {
452 // f1 == f2 -> Unlikely
453 // f1 != f2 -> Likely
454 isProb = !FCmp->isTrueWhenEqual();
455 } else if (FCmp->getPredicate() == FCmpInst::FCMP_ORD) {
456 // !isnan -> Likely
457 isProb = true;
458 } else if (FCmp->getPredicate() == FCmpInst::FCMP_UNO) {
459 // isnan -> Unlikely
460 isProb = false;
461 } else {
462 return false;
463 }
464
Manman Rencf104462012-08-24 18:14:27 +0000465 unsigned TakenIdx = 0, NonTakenIdx = 1;
Benjamin Kramer1e731a12011-10-21 20:12:47 +0000466
Benjamin Kramer606a50a2011-10-21 21:13:47 +0000467 if (!isProb)
Manman Rencf104462012-08-24 18:14:27 +0000468 std::swap(TakenIdx, NonTakenIdx);
Benjamin Kramer1e731a12011-10-21 20:12:47 +0000469
Manman Rencf104462012-08-24 18:14:27 +0000470 setEdgeWeight(BB, TakenIdx, FPH_TAKEN_WEIGHT);
471 setEdgeWeight(BB, NonTakenIdx, FPH_NONTAKEN_WEIGHT);
Benjamin Kramer1e731a12011-10-21 20:12:47 +0000472
473 return true;
474}
Jakub Staszak17af66a2011-07-31 03:27:24 +0000475
Bill Wendlinge1c54262012-08-15 12:22:35 +0000476bool BranchProbabilityInfo::calcInvokeHeuristics(BasicBlock *BB) {
477 InvokeInst *II = dyn_cast<InvokeInst>(BB->getTerminator());
478 if (!II)
479 return false;
480
Manman Rencf104462012-08-24 18:14:27 +0000481 setEdgeWeight(BB, 0/*Index for Normal*/, IH_TAKEN_WEIGHT);
482 setEdgeWeight(BB, 1/*Index for Unwind*/, IH_NONTAKEN_WEIGHT);
Bill Wendlinge1c54262012-08-15 12:22:35 +0000483 return true;
484}
485
Chandler Carruth7a0094a2011-10-24 01:40:45 +0000486void BranchProbabilityInfo::getAnalysisUsage(AnalysisUsage &AU) const {
487 AU.addRequired<LoopInfo>();
488 AU.setPreservesAll();
489}
490
491bool BranchProbabilityInfo::runOnFunction(Function &F) {
Michael Gottesmanfb9164f2013-12-14 02:24:25 +0000492 DEBUG(dbgs() << "---- Branch Probability Info : " << F.getName()
493 << " ----\n\n");
Chandler Carruth7a0094a2011-10-24 01:40:45 +0000494 LastF = &F; // Store the last function we ran on for printing.
495 LI = &getAnalysis<LoopInfo>();
Chandler Carruth7111f452011-10-24 12:01:08 +0000496 assert(PostDominatedByUnreachable.empty());
Diego Novilloc6399532013-05-24 12:26:52 +0000497 assert(PostDominatedByColdCall.empty());
Chandler Carruth7a0094a2011-10-24 01:40:45 +0000498
Chandler Carruth7111f452011-10-24 12:01:08 +0000499 // Walk the basic blocks in post-order so that we can build up state about
500 // the successors of a block iteratively.
501 for (po_iterator<BasicBlock *> I = po_begin(&F.getEntryBlock()),
502 E = po_end(&F.getEntryBlock());
503 I != E; ++I) {
504 DEBUG(dbgs() << "Computing probabilities for " << I->getName() << "\n");
505 if (calcUnreachableHeuristics(*I))
Chandler Carruthd27a7a92011-10-19 10:30:30 +0000506 continue;
Chandler Carruth7111f452011-10-24 12:01:08 +0000507 if (calcMetadataWeights(*I))
Jakub Staszakd07b2e12011-07-28 21:45:07 +0000508 continue;
Diego Novilloc6399532013-05-24 12:26:52 +0000509 if (calcColdCallHeuristics(*I))
510 continue;
Chandler Carruth7111f452011-10-24 12:01:08 +0000511 if (calcLoopBranchHeuristics(*I))
Jakub Staszakd07b2e12011-07-28 21:45:07 +0000512 continue;
Chandler Carruth7111f452011-10-24 12:01:08 +0000513 if (calcPointerHeuristics(*I))
Jakub Staszak17af66a2011-07-31 03:27:24 +0000514 continue;
Chandler Carruth7111f452011-10-24 12:01:08 +0000515 if (calcZeroHeuristics(*I))
Benjamin Kramer1e731a12011-10-21 20:12:47 +0000516 continue;
Bill Wendlinge1c54262012-08-15 12:22:35 +0000517 if (calcFloatingPointHeuristics(*I))
518 continue;
519 calcInvokeHeuristics(*I);
Andrew Trick49371f32011-06-04 01:16:30 +0000520 }
Chandler Carruth7111f452011-10-24 12:01:08 +0000521
522 PostDominatedByUnreachable.clear();
Diego Novilloc6399532013-05-24 12:26:52 +0000523 PostDominatedByColdCall.clear();
Andrew Trick49371f32011-06-04 01:16:30 +0000524 return false;
525}
526
Chandler Carruth1c8ace02011-10-23 21:21:50 +0000527void BranchProbabilityInfo::print(raw_ostream &OS, const Module *) const {
528 OS << "---- Branch Probabilities ----\n";
529 // We print the probabilities from the last function the analysis ran over,
530 // or the function it is currently running over.
531 assert(LastF && "Cannot print prior to running over a function");
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000532 for (Function::const_iterator BI = LastF->begin(), BE = LastF->end();
533 BI != BE; ++BI) {
534 for (succ_const_iterator SI = succ_begin(BI), SE = succ_end(BI);
535 SI != SE; ++SI) {
536 printEdgeProbability(OS << " ", BI, *SI);
537 }
538 }
Chandler Carruth1c8ace02011-10-23 21:21:50 +0000539}
540
Jakub Staszakefd94c82011-07-29 19:30:00 +0000541uint32_t BranchProbabilityInfo::getSumForBlock(const BasicBlock *BB) const {
Andrew Trick3d4e64b2011-06-11 01:05:22 +0000542 uint32_t Sum = 0;
543
Jakub Staszakefd94c82011-07-29 19:30:00 +0000544 for (succ_const_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) {
Manman Rencf104462012-08-24 18:14:27 +0000545 uint32_t Weight = getEdgeWeight(BB, I.getSuccessorIndex());
Andrew Trick3d4e64b2011-06-11 01:05:22 +0000546 uint32_t PrevSum = Sum;
Andrew Trick49371f32011-06-04 01:16:30 +0000547
548 Sum += Weight;
549 assert(Sum > PrevSum); (void) PrevSum;
550 }
551
Andrew Trick3d4e64b2011-06-11 01:05:22 +0000552 return Sum;
553}
554
Jakub Staszakefd94c82011-07-29 19:30:00 +0000555bool BranchProbabilityInfo::
556isEdgeHot(const BasicBlock *Src, const BasicBlock *Dst) const {
Andrew Trick3d4e64b2011-06-11 01:05:22 +0000557 // Hot probability is at least 4/5 = 80%
Benjamin Kramer929f53f2011-10-23 11:19:14 +0000558 // FIXME: Compare against a static "hot" BranchProbability.
559 return getEdgeProbability(Src, Dst) > BranchProbability(4, 5);
Andrew Trick49371f32011-06-04 01:16:30 +0000560}
561
562BasicBlock *BranchProbabilityInfo::getHotSucc(BasicBlock *BB) const {
Andrew Trick3d4e64b2011-06-11 01:05:22 +0000563 uint32_t Sum = 0;
564 uint32_t MaxWeight = 0;
Craig Topper9f008862014-04-15 04:59:12 +0000565 BasicBlock *MaxSucc = nullptr;
Andrew Trick49371f32011-06-04 01:16:30 +0000566
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000567 for (succ_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) {
568 BasicBlock *Succ = *I;
Andrew Trick3d4e64b2011-06-11 01:05:22 +0000569 uint32_t Weight = getEdgeWeight(BB, Succ);
570 uint32_t PrevSum = Sum;
Andrew Trick49371f32011-06-04 01:16:30 +0000571
572 Sum += Weight;
573 assert(Sum > PrevSum); (void) PrevSum;
574
575 if (Weight > MaxWeight) {
576 MaxWeight = Weight;
577 MaxSucc = Succ;
578 }
579 }
580
Benjamin Kramer929f53f2011-10-23 11:19:14 +0000581 // Hot probability is at least 4/5 = 80%
582 if (BranchProbability(MaxWeight, Sum) > BranchProbability(4, 5))
Andrew Trick49371f32011-06-04 01:16:30 +0000583 return MaxSucc;
584
Craig Topper9f008862014-04-15 04:59:12 +0000585 return nullptr;
Andrew Trick49371f32011-06-04 01:16:30 +0000586}
587
Manman Rencf104462012-08-24 18:14:27 +0000588/// Get the raw edge weight for the edge. If can't find it, return
589/// DEFAULT_WEIGHT value. Here an edge is specified using PredBlock and an index
590/// to the successors.
Jakub Staszakefd94c82011-07-29 19:30:00 +0000591uint32_t BranchProbabilityInfo::
Manman Rencf104462012-08-24 18:14:27 +0000592getEdgeWeight(const BasicBlock *Src, unsigned IndexInSuccessors) const {
593 DenseMap<Edge, uint32_t>::const_iterator I =
594 Weights.find(std::make_pair(Src, IndexInSuccessors));
Andrew Trick49371f32011-06-04 01:16:30 +0000595
596 if (I != Weights.end())
597 return I->second;
598
599 return DEFAULT_WEIGHT;
600}
601
Duncan P. N. Exon Smith37bd5292014-04-11 23:20:52 +0000602uint32_t BranchProbabilityInfo::getEdgeWeight(const BasicBlock *Src,
603 succ_const_iterator Dst) const {
604 return getEdgeWeight(Src, Dst.getSuccessorIndex());
Michael Gottesmanfb9164f2013-12-14 02:24:25 +0000605}
606
Manman Rencf104462012-08-24 18:14:27 +0000607/// Get the raw edge weight calculated for the block pair. This returns the sum
608/// of all raw edge weights from Src to Dst.
609uint32_t BranchProbabilityInfo::
610getEdgeWeight(const BasicBlock *Src, const BasicBlock *Dst) const {
611 uint32_t Weight = 0;
612 DenseMap<Edge, uint32_t>::const_iterator MapI;
613 for (succ_const_iterator I = succ_begin(Src), E = succ_end(Src); I != E; ++I)
614 if (*I == Dst) {
615 MapI = Weights.find(std::make_pair(Src, I.getSuccessorIndex()));
616 if (MapI != Weights.end())
617 Weight += MapI->second;
618 }
619 return (Weight == 0) ? DEFAULT_WEIGHT : Weight;
Andrew Trick3d4e64b2011-06-11 01:05:22 +0000620}
621
Manman Rencf104462012-08-24 18:14:27 +0000622/// Set the edge weight for a given edge specified by PredBlock and an index
623/// to the successors.
624void BranchProbabilityInfo::
625setEdgeWeight(const BasicBlock *Src, unsigned IndexInSuccessors,
626 uint32_t Weight) {
627 Weights[std::make_pair(Src, IndexInSuccessors)] = Weight;
628 DEBUG(dbgs() << "set edge " << Src->getName() << " -> "
629 << IndexInSuccessors << " successor weight to "
630 << Weight << "\n");
631}
Andrew Trick3d4e64b2011-06-11 01:05:22 +0000632
Manman Rencf104462012-08-24 18:14:27 +0000633/// Get an edge's probability, relative to other out-edges from Src.
634BranchProbability BranchProbabilityInfo::
635getEdgeProbability(const BasicBlock *Src, unsigned IndexInSuccessors) const {
636 uint32_t N = getEdgeWeight(Src, IndexInSuccessors);
637 uint32_t D = getSumForBlock(Src);
638
639 return BranchProbability(N, D);
640}
641
642/// Get the probability of going from Src to Dst. It returns the sum of all
643/// probabilities for edges from Src to Dst.
Andrew Trick3d4e64b2011-06-11 01:05:22 +0000644BranchProbability BranchProbabilityInfo::
Jakub Staszakefd94c82011-07-29 19:30:00 +0000645getEdgeProbability(const BasicBlock *Src, const BasicBlock *Dst) const {
Andrew Trick3d4e64b2011-06-11 01:05:22 +0000646
647 uint32_t N = getEdgeWeight(Src, Dst);
648 uint32_t D = getSumForBlock(Src);
649
650 return BranchProbability(N, D);
Andrew Trick49371f32011-06-04 01:16:30 +0000651}
652
653raw_ostream &
Chandler Carruth1c8ace02011-10-23 21:21:50 +0000654BranchProbabilityInfo::printEdgeProbability(raw_ostream &OS,
655 const BasicBlock *Src,
656 const BasicBlock *Dst) const {
Andrew Trick49371f32011-06-04 01:16:30 +0000657
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000658 const BranchProbability Prob = getEdgeProbability(Src, Dst);
Benjamin Kramer1f97a5a2011-11-15 16:27:03 +0000659 OS << "edge " << Src->getName() << " -> " << Dst->getName()
Andrew Trick3d4e64b2011-06-11 01:05:22 +0000660 << " probability is " << Prob
661 << (isEdgeHot(Src, Dst) ? " [HOT edge]\n" : "\n");
Andrew Trick49371f32011-06-04 01:16:30 +0000662
663 return OS;
664}