blob: 58ccad89d508b1a89c623a41f50b49f267244c47 [file] [log] [blame]
Eugene Zelenko38c02bc2017-07-21 21:37:46 +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"
Geoff Berryeed65312017-11-01 15:16:50 +000016#include "llvm/ADT/SCCIterator.h"
Eugene Zelenko38c02bc2017-07-21 21:37:46 +000017#include "llvm/ADT/STLExtras.h"
18#include "llvm/ADT/SmallVector.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000019#include "llvm/Analysis/LoopInfo.h"
John Brawnda4a68a2017-06-08 09:44:40 +000020#include "llvm/Analysis/TargetLibraryInfo.h"
Eugene Zelenko38c02bc2017-07-21 21:37:46 +000021#include "llvm/IR/Attributes.h"
22#include "llvm/IR/BasicBlock.h"
Chandler Carruth1305dc32014-03-04 11:45:46 +000023#include "llvm/IR/CFG.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000024#include "llvm/IR/Constants.h"
25#include "llvm/IR/Function.h"
Eugene Zelenko38c02bc2017-07-21 21:37:46 +000026#include "llvm/IR/InstrTypes.h"
27#include "llvm/IR/Instruction.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000028#include "llvm/IR/Instructions.h"
29#include "llvm/IR/LLVMContext.h"
30#include "llvm/IR/Metadata.h"
Eugene Zelenko38c02bc2017-07-21 21:37:46 +000031#include "llvm/IR/PassManager.h"
32#include "llvm/IR/Type.h"
33#include "llvm/IR/Value.h"
34#include "llvm/Pass.h"
35#include "llvm/Support/BranchProbability.h"
36#include "llvm/Support/Casting.h"
Andrew Trick3d4e64b2011-06-11 01:05:22 +000037#include "llvm/Support/Debug.h"
Benjamin Kramer16132e62015-03-23 18:07:13 +000038#include "llvm/Support/raw_ostream.h"
Eugene Zelenko38c02bc2017-07-21 21:37:46 +000039#include <cassert>
40#include <cstdint>
41#include <iterator>
42#include <utility>
Andrew Trick49371f32011-06-04 01:16:30 +000043
44using namespace llvm;
45
Chandler Carruthf1221bd2014-04-22 02:48:03 +000046#define DEBUG_TYPE "branch-prob"
47
Hiroshi Yamauchi63e17eb2017-08-26 00:31:00 +000048static cl::opt<bool> PrintBranchProb(
49 "print-bpi", cl::init(false), cl::Hidden,
50 cl::desc("Print the branch probability info."));
51
52cl::opt<std::string> PrintBranchProbFuncName(
53 "print-bpi-func-name", cl::Hidden,
54 cl::desc("The option to specify the name of the function "
55 "whose branch probability info is printed."));
56
Cong Houab23bfb2015-07-15 22:48:29 +000057INITIALIZE_PASS_BEGIN(BranchProbabilityInfoWrapperPass, "branch-prob",
Andrew Trick49371f32011-06-04 01:16:30 +000058 "Branch Probability Analysis", false, true)
Chandler Carruth4f8f3072015-01-17 14:16:18 +000059INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
John Brawnda4a68a2017-06-08 09:44:40 +000060INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
Cong Houab23bfb2015-07-15 22:48:29 +000061INITIALIZE_PASS_END(BranchProbabilityInfoWrapperPass, "branch-prob",
Andrew Trick49371f32011-06-04 01:16:30 +000062 "Branch Probability Analysis", false, true)
63
Cong Houab23bfb2015-07-15 22:48:29 +000064char BranchProbabilityInfoWrapperPass::ID = 0;
Andrew Trick49371f32011-06-04 01:16:30 +000065
Chandler Carruth7a0094a2011-10-24 01:40:45 +000066// Weights are for internal use only. They are used by heuristics to help to
67// estimate edges' probability. Example:
68//
69// Using "Loop Branch Heuristics" we predict weights of edges for the
70// block BB2.
71// ...
72// |
73// V
74// BB1<-+
75// | |
76// | | (Weight = 124)
77// V |
78// BB2--+
79// |
80// | (Weight = 4)
81// V
82// BB3
83//
84// Probability of the edge BB2->BB1 = 124 / (124 + 4) = 0.96875
85// Probability of the edge BB2->BB3 = 4 / (124 + 4) = 0.03125
86static const uint32_t LBH_TAKEN_WEIGHT = 124;
87static const uint32_t LBH_NONTAKEN_WEIGHT = 4;
Andrew Trick49371f32011-06-04 01:16:30 +000088
Serguei Katkovba831f72017-05-18 06:11:56 +000089/// \brief Unreachable-terminating branch taken probability.
Chandler Carruth7111f452011-10-24 12:01:08 +000090///
Serguei Katkovba831f72017-05-18 06:11:56 +000091/// This is the probability for a branch being taken to a block that terminates
Chandler Carruth7111f452011-10-24 12:01:08 +000092/// (eventually) in unreachable. These are predicted as unlikely as possible.
Serguei Katkovba831f72017-05-18 06:11:56 +000093/// All reachable probability will equally share the remaining part.
94static const BranchProbability UR_TAKEN_PROB = BranchProbability::getRaw(1);
Serguei Katkov2616bbb2017-04-17 04:33:04 +000095
Diego Novilloc6399532013-05-24 12:26:52 +000096/// \brief Weight for a branch taken going into a cold block.
97///
98/// This is the weight for a branch taken toward a block marked
99/// cold. A block is marked cold if it's postdominated by a
100/// block containing a call to a cold function. Cold functions
101/// are those marked with attribute 'cold'.
102static const uint32_t CC_TAKEN_WEIGHT = 4;
103
104/// \brief Weight for a branch not-taken into a cold block.
105///
106/// This is the weight for a branch not taken toward a block marked
107/// cold.
108static const uint32_t CC_NONTAKEN_WEIGHT = 64;
109
Chandler Carruth7a0094a2011-10-24 01:40:45 +0000110static const uint32_t PH_TAKEN_WEIGHT = 20;
111static const uint32_t PH_NONTAKEN_WEIGHT = 12;
Andrew Trick49371f32011-06-04 01:16:30 +0000112
Chandler Carruth7a0094a2011-10-24 01:40:45 +0000113static const uint32_t ZH_TAKEN_WEIGHT = 20;
114static const uint32_t ZH_NONTAKEN_WEIGHT = 12;
Andrew Trick49371f32011-06-04 01:16:30 +0000115
Chandler Carruth7a0094a2011-10-24 01:40:45 +0000116static const uint32_t FPH_TAKEN_WEIGHT = 20;
117static const uint32_t FPH_NONTAKEN_WEIGHT = 12;
Andrew Trick49371f32011-06-04 01:16:30 +0000118
Bill Wendlinge1c54262012-08-15 12:22:35 +0000119/// \brief Invoke-terminating normal branch taken weight
120///
121/// This is the weight for branching to the normal destination of an invoke
122/// instruction. We expect this to happen most of the time. Set the weight to an
123/// absurdly high value so that nested loops subsume it.
124static const uint32_t IH_TAKEN_WEIGHT = 1024 * 1024 - 1;
125
126/// \brief Invoke-terminating normal branch not-taken weight.
127///
128/// This is the weight for branching to the unwind destination of an invoke
129/// instruction. This is essentially never taken.
130static const uint32_t IH_NONTAKEN_WEIGHT = 1;
131
Serguei Katkovecebc3d2017-04-12 05:42:14 +0000132/// \brief Add \p BB to PostDominatedByUnreachable set if applicable.
133void
134BranchProbabilityInfo::updatePostDominatedByUnreachable(const BasicBlock *BB) {
Mehdi Aminia7978772016-04-07 21:59:28 +0000135 const TerminatorInst *TI = BB->getTerminator();
Chandler Carruth7111f452011-10-24 12:01:08 +0000136 if (TI->getNumSuccessors() == 0) {
Sanjoy Das432c1c32016-04-18 19:01:28 +0000137 if (isa<UnreachableInst>(TI) ||
138 // If this block is terminated by a call to
139 // @llvm.experimental.deoptimize then treat it like an unreachable since
140 // the @llvm.experimental.deoptimize call is expected to practically
141 // never execute.
142 BB->getTerminatingDeoptimizeCall())
Chandler Carruth7111f452011-10-24 12:01:08 +0000143 PostDominatedByUnreachable.insert(BB);
Serguei Katkovecebc3d2017-04-12 05:42:14 +0000144 return;
Chandler Carruth7111f452011-10-24 12:01:08 +0000145 }
146
Serguei Katkovecebc3d2017-04-12 05:42:14 +0000147 // If the terminator is an InvokeInst, check only the normal destination block
148 // as the unwind edge of InvokeInst is also very unlikely taken.
149 if (auto *II = dyn_cast<InvokeInst>(TI)) {
150 if (PostDominatedByUnreachable.count(II->getNormalDest()))
151 PostDominatedByUnreachable.insert(BB);
152 return;
153 }
154
155 for (auto *I : successors(BB))
156 // If any of successor is not post dominated then BB is also not.
157 if (!PostDominatedByUnreachable.count(I))
158 return;
159
160 PostDominatedByUnreachable.insert(BB);
161}
162
163/// \brief Add \p BB to PostDominatedByColdCall set if applicable.
164void
165BranchProbabilityInfo::updatePostDominatedByColdCall(const BasicBlock *BB) {
166 assert(!PostDominatedByColdCall.count(BB));
167 const TerminatorInst *TI = BB->getTerminator();
168 if (TI->getNumSuccessors() == 0)
169 return;
170
171 // If all of successor are post dominated then BB is also done.
172 if (llvm::all_of(successors(BB), [&](const BasicBlock *SuccBB) {
173 return PostDominatedByColdCall.count(SuccBB);
174 })) {
175 PostDominatedByColdCall.insert(BB);
176 return;
177 }
178
179 // If the terminator is an InvokeInst, check only the normal destination
180 // block as the unwind edge of InvokeInst is also very unlikely taken.
181 if (auto *II = dyn_cast<InvokeInst>(TI))
182 if (PostDominatedByColdCall.count(II->getNormalDest())) {
183 PostDominatedByColdCall.insert(BB);
184 return;
185 }
186
187 // Otherwise, if the block itself contains a cold function, add it to the
188 // set of blocks post-dominated by a cold call.
189 for (auto &I : *BB)
190 if (const CallInst *CI = dyn_cast<CallInst>(&I))
191 if (CI->hasFnAttr(Attribute::Cold)) {
192 PostDominatedByColdCall.insert(BB);
193 return;
194 }
195}
196
197/// \brief Calculate edge weights for successors lead to unreachable.
198///
199/// Predict that a successor which leads necessarily to an
200/// unreachable-terminated block as extremely unlikely.
201bool BranchProbabilityInfo::calcUnreachableHeuristics(const BasicBlock *BB) {
202 const TerminatorInst *TI = BB->getTerminator();
Serguei Katkov11d9c4f2017-04-17 06:39:47 +0000203 assert(TI->getNumSuccessors() > 1 && "expected more than one successor!");
204
205 // Return false here so that edge weights for InvokeInst could be decided
206 // in calcInvokeHeuristics().
207 if (isa<InvokeInst>(TI))
Serguei Katkovecebc3d2017-04-12 05:42:14 +0000208 return false;
209
Manman Rencf104462012-08-24 18:14:27 +0000210 SmallVector<unsigned, 4> UnreachableEdges;
211 SmallVector<unsigned, 4> ReachableEdges;
Chandler Carruth7111f452011-10-24 12:01:08 +0000212
Serguei Katkovecebc3d2017-04-12 05:42:14 +0000213 for (succ_const_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I)
Chandler Carruth7111f452011-10-24 12:01:08 +0000214 if (PostDominatedByUnreachable.count(*I))
Manman Rencf104462012-08-24 18:14:27 +0000215 UnreachableEdges.push_back(I.getSuccessorIndex());
Chandler Carruth7111f452011-10-24 12:01:08 +0000216 else
Manman Rencf104462012-08-24 18:14:27 +0000217 ReachableEdges.push_back(I.getSuccessorIndex());
Chandler Carruth7111f452011-10-24 12:01:08 +0000218
Serguei Katkov11d9c4f2017-04-17 06:39:47 +0000219 // Skip probabilities if all were reachable.
220 if (UnreachableEdges.empty())
Serguei Katkovecebc3d2017-04-12 05:42:14 +0000221 return false;
Jun Bum Lima23e5f72015-12-21 22:00:51 +0000222
Cong Houe93b8e12015-12-22 18:56:14 +0000223 if (ReachableEdges.empty()) {
224 BranchProbability Prob(1, UnreachableEdges.size());
225 for (unsigned SuccIdx : UnreachableEdges)
226 setEdgeProbability(BB, SuccIdx, Prob);
Chandler Carruth7111f452011-10-24 12:01:08 +0000227 return true;
Cong Houe93b8e12015-12-22 18:56:14 +0000228 }
229
Serguei Katkovba831f72017-05-18 06:11:56 +0000230 auto UnreachableProb = UR_TAKEN_PROB;
231 auto ReachableProb =
232 (BranchProbability::getOne() - UR_TAKEN_PROB * UnreachableEdges.size()) /
233 ReachableEdges.size();
Cong Houe93b8e12015-12-22 18:56:14 +0000234
235 for (unsigned SuccIdx : UnreachableEdges)
236 setEdgeProbability(BB, SuccIdx, UnreachableProb);
237 for (unsigned SuccIdx : ReachableEdges)
238 setEdgeProbability(BB, SuccIdx, ReachableProb);
Chandler Carruth7111f452011-10-24 12:01:08 +0000239
240 return true;
241}
242
Chandler Carruthd27a7a92011-10-19 10:30:30 +0000243// Propagate existing explicit probabilities from either profile data or
Serguei Katkov2616bbb2017-04-17 04:33:04 +0000244// 'expect' intrinsic processing. Examine metadata against unreachable
245// heuristic. The probability of the edge coming to unreachable block is
246// set to min of metadata and unreachable heuristic.
Mehdi Aminia7978772016-04-07 21:59:28 +0000247bool BranchProbabilityInfo::calcMetadataWeights(const BasicBlock *BB) {
248 const TerminatorInst *TI = BB->getTerminator();
Serguei Katkov11d9c4f2017-04-17 06:39:47 +0000249 assert(TI->getNumSuccessors() > 1 && "expected more than one successor!");
Rong Xu15848e52017-08-23 21:36:02 +0000250 if (!(isa<BranchInst>(TI) || isa<SwitchInst>(TI) || isa<IndirectBrInst>(TI)))
Chandler Carruthd27a7a92011-10-19 10:30:30 +0000251 return false;
252
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +0000253 MDNode *WeightsNode = TI->getMetadata(LLVMContext::MD_prof);
Chandler Carruthdeac50c2011-10-19 10:32:19 +0000254 if (!WeightsNode)
Chandler Carruthd27a7a92011-10-19 10:30:30 +0000255 return false;
256
Diego Novillode5b8012015-05-07 17:22:06 +0000257 // Check that the number of successors is manageable.
258 assert(TI->getNumSuccessors() < UINT32_MAX && "Too many successors");
259
Chandler Carruthdeac50c2011-10-19 10:32:19 +0000260 // Ensure there are weights for all of the successors. Note that the first
261 // operand to the metadata node is a name, not a weight.
262 if (WeightsNode->getNumOperands() != TI->getNumSuccessors() + 1)
Chandler Carruthd27a7a92011-10-19 10:30:30 +0000263 return false;
264
Diego Novillode5b8012015-05-07 17:22:06 +0000265 // Build up the final weights that will be used in a temporary buffer.
266 // Compute the sum of all weights to later decide whether they need to
267 // be scaled to fit in 32 bits.
268 uint64_t WeightSum = 0;
Chandler Carruthdeac50c2011-10-19 10:32:19 +0000269 SmallVector<uint32_t, 2> Weights;
Serguei Katkov2616bbb2017-04-17 04:33:04 +0000270 SmallVector<unsigned, 2> UnreachableIdxs;
271 SmallVector<unsigned, 2> ReachableIdxs;
Chandler Carruthdeac50c2011-10-19 10:32:19 +0000272 Weights.reserve(TI->getNumSuccessors());
273 for (unsigned i = 1, e = WeightsNode->getNumOperands(); i != e; ++i) {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000274 ConstantInt *Weight =
275 mdconst::dyn_extract<ConstantInt>(WeightsNode->getOperand(i));
Chandler Carruthdeac50c2011-10-19 10:32:19 +0000276 if (!Weight)
277 return false;
Diego Novillode5b8012015-05-07 17:22:06 +0000278 assert(Weight->getValue().getActiveBits() <= 32 &&
279 "Too many bits for uint32_t");
280 Weights.push_back(Weight->getZExtValue());
281 WeightSum += Weights.back();
Serguei Katkov2616bbb2017-04-17 04:33:04 +0000282 if (PostDominatedByUnreachable.count(TI->getSuccessor(i - 1)))
283 UnreachableIdxs.push_back(i - 1);
284 else
285 ReachableIdxs.push_back(i - 1);
Chandler Carruthdeac50c2011-10-19 10:32:19 +0000286 }
287 assert(Weights.size() == TI->getNumSuccessors() && "Checked above");
Diego Novillode5b8012015-05-07 17:22:06 +0000288
289 // If the sum of weights does not fit in 32 bits, scale every weight down
290 // accordingly.
291 uint64_t ScalingFactor =
292 (WeightSum > UINT32_MAX) ? WeightSum / UINT32_MAX + 1 : 1;
293
Serguei Katkov2616bbb2017-04-17 04:33:04 +0000294 if (ScalingFactor > 1) {
295 WeightSum = 0;
296 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i) {
297 Weights[i] /= ScalingFactor;
298 WeightSum += Weights[i];
299 }
Diego Novillode5b8012015-05-07 17:22:06 +0000300 }
Serguei Katkov63c9c812017-05-12 07:50:06 +0000301 assert(WeightSum <= UINT32_MAX &&
302 "Expected weights to scale down to 32 bits");
Cong Hou6a2c71a2015-12-22 23:45:55 +0000303
Serguei Katkov2616bbb2017-04-17 04:33:04 +0000304 if (WeightSum == 0 || ReachableIdxs.size() == 0) {
Cong Hou6a2c71a2015-12-22 23:45:55 +0000305 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i)
Serguei Katkov2616bbb2017-04-17 04:33:04 +0000306 Weights[i] = 1;
307 WeightSum = TI->getNumSuccessors();
Cong Hou6a2c71a2015-12-22 23:45:55 +0000308 }
Cong Houe93b8e12015-12-22 18:56:14 +0000309
Serguei Katkov2616bbb2017-04-17 04:33:04 +0000310 // Set the probability.
311 SmallVector<BranchProbability, 2> BP;
312 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i)
313 BP.push_back({ Weights[i], static_cast<uint32_t>(WeightSum) });
314
315 // Examine the metadata against unreachable heuristic.
316 // If the unreachable heuristic is more strong then we use it for this edge.
317 if (UnreachableIdxs.size() > 0 && ReachableIdxs.size() > 0) {
318 auto ToDistribute = BranchProbability::getZero();
Serguei Katkovba831f72017-05-18 06:11:56 +0000319 auto UnreachableProb = UR_TAKEN_PROB;
Serguei Katkov2616bbb2017-04-17 04:33:04 +0000320 for (auto i : UnreachableIdxs)
321 if (UnreachableProb < BP[i]) {
322 ToDistribute += BP[i] - UnreachableProb;
323 BP[i] = UnreachableProb;
324 }
325
326 // If we modified the probability of some edges then we must distribute
327 // the difference between reachable blocks.
328 if (ToDistribute > BranchProbability::getZero()) {
329 BranchProbability PerEdge = ToDistribute / ReachableIdxs.size();
Serguei Katkov63c9c812017-05-12 07:50:06 +0000330 for (auto i : ReachableIdxs)
Serguei Katkov2616bbb2017-04-17 04:33:04 +0000331 BP[i] += PerEdge;
Serguei Katkov2616bbb2017-04-17 04:33:04 +0000332 }
333 }
334
335 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i)
336 setEdgeProbability(BB, i, BP[i]);
337
Chandler Carruthd27a7a92011-10-19 10:30:30 +0000338 return true;
339}
340
Diego Novilloc6399532013-05-24 12:26:52 +0000341/// \brief Calculate edge weights for edges leading to cold blocks.
342///
343/// A cold block is one post-dominated by a block with a call to a
344/// cold function. Those edges are unlikely to be taken, so we give
345/// them relatively low weight.
346///
347/// Return true if we could compute the weights for cold edges.
348/// Return false, otherwise.
Mehdi Aminia7978772016-04-07 21:59:28 +0000349bool BranchProbabilityInfo::calcColdCallHeuristics(const BasicBlock *BB) {
350 const TerminatorInst *TI = BB->getTerminator();
Serguei Katkov11d9c4f2017-04-17 06:39:47 +0000351 assert(TI->getNumSuccessors() > 1 && "expected more than one successor!");
352
353 // Return false here so that edge weights for InvokeInst could be decided
354 // in calcInvokeHeuristics().
355 if (isa<InvokeInst>(TI))
Diego Novilloc6399532013-05-24 12:26:52 +0000356 return false;
357
358 // Determine which successors are post-dominated by a cold block.
359 SmallVector<unsigned, 4> ColdEdges;
Diego Novilloc6399532013-05-24 12:26:52 +0000360 SmallVector<unsigned, 4> NormalEdges;
Mehdi Aminia7978772016-04-07 21:59:28 +0000361 for (succ_const_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I)
Diego Novilloc6399532013-05-24 12:26:52 +0000362 if (PostDominatedByColdCall.count(*I))
363 ColdEdges.push_back(I.getSuccessorIndex());
364 else
365 NormalEdges.push_back(I.getSuccessorIndex());
366
Serguei Katkov11d9c4f2017-04-17 06:39:47 +0000367 // Skip probabilities if no cold edges.
368 if (ColdEdges.empty())
Diego Novilloc6399532013-05-24 12:26:52 +0000369 return false;
370
Cong Houe93b8e12015-12-22 18:56:14 +0000371 if (NormalEdges.empty()) {
372 BranchProbability Prob(1, ColdEdges.size());
373 for (unsigned SuccIdx : ColdEdges)
374 setEdgeProbability(BB, SuccIdx, Prob);
Diego Novilloc6399532013-05-24 12:26:52 +0000375 return true;
Cong Houe93b8e12015-12-22 18:56:14 +0000376 }
377
Vedant Kumara4bd1462016-12-17 01:02:08 +0000378 auto ColdProb = BranchProbability::getBranchProbability(
379 CC_TAKEN_WEIGHT,
380 (CC_TAKEN_WEIGHT + CC_NONTAKEN_WEIGHT) * uint64_t(ColdEdges.size()));
381 auto NormalProb = BranchProbability::getBranchProbability(
382 CC_NONTAKEN_WEIGHT,
383 (CC_TAKEN_WEIGHT + CC_NONTAKEN_WEIGHT) * uint64_t(NormalEdges.size()));
Cong Houe93b8e12015-12-22 18:56:14 +0000384
385 for (unsigned SuccIdx : ColdEdges)
386 setEdgeProbability(BB, SuccIdx, ColdProb);
387 for (unsigned SuccIdx : NormalEdges)
388 setEdgeProbability(BB, SuccIdx, NormalProb);
Diego Novilloc6399532013-05-24 12:26:52 +0000389
390 return true;
391}
392
Andrew Trick49371f32011-06-04 01:16:30 +0000393// Calculate Edge Weights using "Pointer Heuristics". Predict a comparsion
394// between two pointer or pointer and NULL will fail.
Mehdi Aminia7978772016-04-07 21:59:28 +0000395bool BranchProbabilityInfo::calcPointerHeuristics(const BasicBlock *BB) {
396 const BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator());
Andrew Trick49371f32011-06-04 01:16:30 +0000397 if (!BI || !BI->isConditional())
Jakub Staszakd07b2e12011-07-28 21:45:07 +0000398 return false;
Andrew Trick49371f32011-06-04 01:16:30 +0000399
400 Value *Cond = BI->getCondition();
401 ICmpInst *CI = dyn_cast<ICmpInst>(Cond);
Jakub Staszakabb236f2011-07-15 20:51:06 +0000402 if (!CI || !CI->isEquality())
Jakub Staszakd07b2e12011-07-28 21:45:07 +0000403 return false;
Andrew Trick49371f32011-06-04 01:16:30 +0000404
405 Value *LHS = CI->getOperand(0);
Andrew Trick49371f32011-06-04 01:16:30 +0000406
407 if (!LHS->getType()->isPointerTy())
Jakub Staszakd07b2e12011-07-28 21:45:07 +0000408 return false;
Andrew Trick49371f32011-06-04 01:16:30 +0000409
Nick Lewycky75b20532011-06-04 02:07:10 +0000410 assert(CI->getOperand(1)->getType()->isPointerTy());
Andrew Trick49371f32011-06-04 01:16:30 +0000411
Andrew Trick49371f32011-06-04 01:16:30 +0000412 // p != 0 -> isProb = true
413 // p == 0 -> isProb = false
414 // p != q -> isProb = true
415 // p == q -> isProb = false;
Manman Rencf104462012-08-24 18:14:27 +0000416 unsigned TakenIdx = 0, NonTakenIdx = 1;
Jakub Staszakabb236f2011-07-15 20:51:06 +0000417 bool isProb = CI->getPredicate() == ICmpInst::ICMP_NE;
Andrew Trick49371f32011-06-04 01:16:30 +0000418 if (!isProb)
Manman Rencf104462012-08-24 18:14:27 +0000419 std::swap(TakenIdx, NonTakenIdx);
Andrew Trick49371f32011-06-04 01:16:30 +0000420
Cong Houe93b8e12015-12-22 18:56:14 +0000421 BranchProbability TakenProb(PH_TAKEN_WEIGHT,
422 PH_TAKEN_WEIGHT + PH_NONTAKEN_WEIGHT);
423 setEdgeProbability(BB, TakenIdx, TakenProb);
424 setEdgeProbability(BB, NonTakenIdx, TakenProb.getCompl());
Jakub Staszakd07b2e12011-07-28 21:45:07 +0000425 return true;
Andrew Trick49371f32011-06-04 01:16:30 +0000426}
427
Geoff Berryeed65312017-11-01 15:16:50 +0000428static int getSCCNum(const BasicBlock *BB,
429 const BranchProbabilityInfo::SccInfo &SccI) {
430 auto SccIt = SccI.SccNums.find(BB);
431 if (SccIt == SccI.SccNums.end())
432 return -1;
433 return SccIt->second;
434}
435
436// Consider any block that is an entry point to the SCC as a header.
437static bool isSCCHeader(const BasicBlock *BB, int SccNum,
438 BranchProbabilityInfo::SccInfo &SccI) {
439 assert(getSCCNum(BB, SccI) == SccNum);
440
441 // Lazily compute the set of headers for a given SCC and cache the results
442 // in the SccHeaderMap.
443 if (SccI.SccHeaders.size() <= static_cast<unsigned>(SccNum))
444 SccI.SccHeaders.resize(SccNum + 1);
445 auto &HeaderMap = SccI.SccHeaders[SccNum];
446 bool Inserted;
447 BranchProbabilityInfo::SccHeaderMap::iterator HeaderMapIt;
448 std::tie(HeaderMapIt, Inserted) = HeaderMap.insert(std::make_pair(BB, false));
449 if (Inserted) {
450 bool IsHeader = llvm::any_of(make_range(pred_begin(BB), pred_end(BB)),
451 [&](const BasicBlock *Pred) {
452 return getSCCNum(Pred, SccI) != SccNum;
453 });
454 HeaderMapIt->second = IsHeader;
455 return IsHeader;
456 } else
457 return HeaderMapIt->second;
458}
459
Andrew Trick49371f32011-06-04 01:16:30 +0000460// Calculate Edge Weights using "Loop Branch Heuristics". Predict backedges
461// as taken, exiting edges as not-taken.
Mehdi Aminia7978772016-04-07 21:59:28 +0000462bool BranchProbabilityInfo::calcLoopBranchHeuristics(const BasicBlock *BB,
Geoff Berryeed65312017-11-01 15:16:50 +0000463 const LoopInfo &LI,
464 SccInfo &SccI) {
465 int SccNum;
Cong Houab23bfb2015-07-15 22:48:29 +0000466 Loop *L = LI.getLoopFor(BB);
Geoff Berryeed65312017-11-01 15:16:50 +0000467 if (!L) {
468 SccNum = getSCCNum(BB, SccI);
469 if (SccNum < 0)
470 return false;
471 }
Andrew Trick49371f32011-06-04 01:16:30 +0000472
Manman Rencf104462012-08-24 18:14:27 +0000473 SmallVector<unsigned, 8> BackEdges;
474 SmallVector<unsigned, 8> ExitingEdges;
475 SmallVector<unsigned, 8> InEdges; // Edges from header to the loop.
Jakub Staszakbcb3c652011-07-28 21:33:46 +0000476
Mehdi Aminia7978772016-04-07 21:59:28 +0000477 for (succ_const_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) {
Geoff Berryeed65312017-11-01 15:16:50 +0000478 // Use LoopInfo if we have it, otherwise fall-back to SCC info to catch
479 // irreducible loops.
480 if (L) {
481 if (!L->contains(*I))
482 ExitingEdges.push_back(I.getSuccessorIndex());
483 else if (L->getHeader() == *I)
484 BackEdges.push_back(I.getSuccessorIndex());
485 else
486 InEdges.push_back(I.getSuccessorIndex());
487 } else {
488 if (getSCCNum(*I, SccI) != SccNum)
489 ExitingEdges.push_back(I.getSuccessorIndex());
490 else if (isSCCHeader(*I, SccNum, SccI))
491 BackEdges.push_back(I.getSuccessorIndex());
492 else
493 InEdges.push_back(I.getSuccessorIndex());
494 }
Andrew Trick49371f32011-06-04 01:16:30 +0000495 }
496
Akira Hatanaka5638b892014-04-14 16:56:19 +0000497 if (BackEdges.empty() && ExitingEdges.empty())
498 return false;
499
Cong Houe93b8e12015-12-22 18:56:14 +0000500 // Collect the sum of probabilities of back-edges/in-edges/exiting-edges, and
501 // normalize them so that they sum up to one.
Benjamin Kramer1d67ac52016-06-17 13:15:10 +0000502 BranchProbability Probs[] = {BranchProbability::getZero(),
503 BranchProbability::getZero(),
504 BranchProbability::getZero()};
Cong Houe93b8e12015-12-22 18:56:14 +0000505 unsigned Denom = (BackEdges.empty() ? 0 : LBH_TAKEN_WEIGHT) +
506 (InEdges.empty() ? 0 : LBH_TAKEN_WEIGHT) +
507 (ExitingEdges.empty() ? 0 : LBH_NONTAKEN_WEIGHT);
508 if (!BackEdges.empty())
509 Probs[0] = BranchProbability(LBH_TAKEN_WEIGHT, Denom);
510 if (!InEdges.empty())
511 Probs[1] = BranchProbability(LBH_TAKEN_WEIGHT, Denom);
512 if (!ExitingEdges.empty())
513 Probs[2] = BranchProbability(LBH_NONTAKEN_WEIGHT, Denom);
Andrew Trick49371f32011-06-04 01:16:30 +0000514
Cong Houe93b8e12015-12-22 18:56:14 +0000515 if (uint32_t numBackEdges = BackEdges.size()) {
516 auto Prob = Probs[0] / numBackEdges;
517 for (unsigned SuccIdx : BackEdges)
518 setEdgeProbability(BB, SuccIdx, Prob);
Andrew Trick49371f32011-06-04 01:16:30 +0000519 }
520
Jakub Staszakbcb3c652011-07-28 21:33:46 +0000521 if (uint32_t numInEdges = InEdges.size()) {
Cong Houe93b8e12015-12-22 18:56:14 +0000522 auto Prob = Probs[1] / numInEdges;
523 for (unsigned SuccIdx : InEdges)
524 setEdgeProbability(BB, SuccIdx, Prob);
Jakub Staszakbcb3c652011-07-28 21:33:46 +0000525 }
526
Chandler Carruth32f46e72011-10-25 09:47:41 +0000527 if (uint32_t numExitingEdges = ExitingEdges.size()) {
Cong Houe93b8e12015-12-22 18:56:14 +0000528 auto Prob = Probs[2] / numExitingEdges;
529 for (unsigned SuccIdx : ExitingEdges)
530 setEdgeProbability(BB, SuccIdx, Prob);
Andrew Trick49371f32011-06-04 01:16:30 +0000531 }
Jakub Staszakd07b2e12011-07-28 21:45:07 +0000532
533 return true;
Andrew Trick49371f32011-06-04 01:16:30 +0000534}
535
John Brawnda4a68a2017-06-08 09:44:40 +0000536bool BranchProbabilityInfo::calcZeroHeuristics(const BasicBlock *BB,
537 const TargetLibraryInfo *TLI) {
Mehdi Aminia7978772016-04-07 21:59:28 +0000538 const BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator());
Jakub Staszak17af66a2011-07-31 03:27:24 +0000539 if (!BI || !BI->isConditional())
540 return false;
541
542 Value *Cond = BI->getCondition();
543 ICmpInst *CI = dyn_cast<ICmpInst>(Cond);
544 if (!CI)
545 return false;
546
Jakub Staszak17af66a2011-07-31 03:27:24 +0000547 Value *RHS = CI->getOperand(1);
Jakub Staszakbfb1ae22011-07-31 04:47:20 +0000548 ConstantInt *CV = dyn_cast<ConstantInt>(RHS);
Benjamin Kramer0ca1ad02011-09-04 23:53:04 +0000549 if (!CV)
Jakub Staszak17af66a2011-07-31 03:27:24 +0000550 return false;
551
Daniel Jaspera73f3d52015-04-15 06:24:07 +0000552 // If the LHS is the result of AND'ing a value with a single bit bitmask,
553 // we don't have information about probabilities.
554 if (Instruction *LHS = dyn_cast<Instruction>(CI->getOperand(0)))
555 if (LHS->getOpcode() == Instruction::And)
556 if (ConstantInt *AndRHS = dyn_cast<ConstantInt>(LHS->getOperand(1)))
Craig Topper4e22ee62017-08-04 16:59:29 +0000557 if (AndRHS->getValue().isPowerOf2())
Daniel Jaspera73f3d52015-04-15 06:24:07 +0000558 return false;
559
John Brawnda4a68a2017-06-08 09:44:40 +0000560 // Check if the LHS is the return value of a library function
561 LibFunc Func = NumLibFuncs;
562 if (TLI)
563 if (CallInst *Call = dyn_cast<CallInst>(CI->getOperand(0)))
564 if (Function *CalledFn = Call->getCalledFunction())
565 TLI->getLibFunc(*CalledFn, Func);
566
Jakub Staszak17af66a2011-07-31 03:27:24 +0000567 bool isProb;
John Brawnda4a68a2017-06-08 09:44:40 +0000568 if (Func == LibFunc_strcasecmp ||
569 Func == LibFunc_strcmp ||
570 Func == LibFunc_strncasecmp ||
571 Func == LibFunc_strncmp ||
572 Func == LibFunc_memcmp) {
573 // strcmp and similar functions return zero, negative, or positive, if the
574 // first string is equal, less, or greater than the second. We consider it
575 // likely that the strings are not equal, so a comparison with zero is
576 // probably false, but also a comparison with any other number is also
577 // probably false given that what exactly is returned for nonzero values is
578 // not specified. Any kind of comparison other than equality we know
579 // nothing about.
580 switch (CI->getPredicate()) {
581 case CmpInst::ICMP_EQ:
582 isProb = false;
583 break;
584 case CmpInst::ICMP_NE:
585 isProb = true;
586 break;
587 default:
588 return false;
589 }
590 } else if (CV->isZero()) {
Benjamin Kramer0ca1ad02011-09-04 23:53:04 +0000591 switch (CI->getPredicate()) {
592 case CmpInst::ICMP_EQ:
593 // X == 0 -> Unlikely
594 isProb = false;
595 break;
596 case CmpInst::ICMP_NE:
597 // X != 0 -> Likely
598 isProb = true;
599 break;
600 case CmpInst::ICMP_SLT:
601 // X < 0 -> Unlikely
602 isProb = false;
603 break;
604 case CmpInst::ICMP_SGT:
605 // X > 0 -> Likely
606 isProb = true;
607 break;
608 default:
609 return false;
610 }
611 } else if (CV->isOne() && CI->getPredicate() == CmpInst::ICMP_SLT) {
612 // InstCombine canonicalizes X <= 0 into X < 1.
613 // X <= 0 -> Unlikely
Jakub Staszak17af66a2011-07-31 03:27:24 +0000614 isProb = false;
Craig Topper79ab6432017-07-06 18:39:47 +0000615 } else if (CV->isMinusOne()) {
Hal Finkel4d949302013-11-01 10:58:22 +0000616 switch (CI->getPredicate()) {
617 case CmpInst::ICMP_EQ:
618 // X == -1 -> Unlikely
619 isProb = false;
620 break;
621 case CmpInst::ICMP_NE:
622 // X != -1 -> Likely
623 isProb = true;
624 break;
625 case CmpInst::ICMP_SGT:
626 // InstCombine canonicalizes X >= 0 into X > -1.
627 // X >= 0 -> Likely
628 isProb = true;
629 break;
630 default:
631 return false;
632 }
Benjamin Kramer0ca1ad02011-09-04 23:53:04 +0000633 } else {
Jakub Staszak17af66a2011-07-31 03:27:24 +0000634 return false;
Benjamin Kramer0ca1ad02011-09-04 23:53:04 +0000635 }
Jakub Staszak17af66a2011-07-31 03:27:24 +0000636
Manman Rencf104462012-08-24 18:14:27 +0000637 unsigned TakenIdx = 0, NonTakenIdx = 1;
Jakub Staszak17af66a2011-07-31 03:27:24 +0000638
639 if (!isProb)
Manman Rencf104462012-08-24 18:14:27 +0000640 std::swap(TakenIdx, NonTakenIdx);
Jakub Staszak17af66a2011-07-31 03:27:24 +0000641
Cong Houe93b8e12015-12-22 18:56:14 +0000642 BranchProbability TakenProb(ZH_TAKEN_WEIGHT,
643 ZH_TAKEN_WEIGHT + ZH_NONTAKEN_WEIGHT);
644 setEdgeProbability(BB, TakenIdx, TakenProb);
645 setEdgeProbability(BB, NonTakenIdx, TakenProb.getCompl());
Jakub Staszak17af66a2011-07-31 03:27:24 +0000646 return true;
647}
648
Mehdi Aminia7978772016-04-07 21:59:28 +0000649bool BranchProbabilityInfo::calcFloatingPointHeuristics(const BasicBlock *BB) {
650 const BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator());
Benjamin Kramer1e731a12011-10-21 20:12:47 +0000651 if (!BI || !BI->isConditional())
652 return false;
653
654 Value *Cond = BI->getCondition();
655 FCmpInst *FCmp = dyn_cast<FCmpInst>(Cond);
Benjamin Kramer606a50a2011-10-21 21:13:47 +0000656 if (!FCmp)
Benjamin Kramer1e731a12011-10-21 20:12:47 +0000657 return false;
658
Benjamin Kramer606a50a2011-10-21 21:13:47 +0000659 bool isProb;
660 if (FCmp->isEquality()) {
661 // f1 == f2 -> Unlikely
662 // f1 != f2 -> Likely
663 isProb = !FCmp->isTrueWhenEqual();
664 } else if (FCmp->getPredicate() == FCmpInst::FCMP_ORD) {
665 // !isnan -> Likely
666 isProb = true;
667 } else if (FCmp->getPredicate() == FCmpInst::FCMP_UNO) {
668 // isnan -> Unlikely
669 isProb = false;
670 } else {
671 return false;
672 }
673
Manman Rencf104462012-08-24 18:14:27 +0000674 unsigned TakenIdx = 0, NonTakenIdx = 1;
Benjamin Kramer1e731a12011-10-21 20:12:47 +0000675
Benjamin Kramer606a50a2011-10-21 21:13:47 +0000676 if (!isProb)
Manman Rencf104462012-08-24 18:14:27 +0000677 std::swap(TakenIdx, NonTakenIdx);
Benjamin Kramer1e731a12011-10-21 20:12:47 +0000678
Cong Houe93b8e12015-12-22 18:56:14 +0000679 BranchProbability TakenProb(FPH_TAKEN_WEIGHT,
680 FPH_TAKEN_WEIGHT + FPH_NONTAKEN_WEIGHT);
681 setEdgeProbability(BB, TakenIdx, TakenProb);
682 setEdgeProbability(BB, NonTakenIdx, TakenProb.getCompl());
Benjamin Kramer1e731a12011-10-21 20:12:47 +0000683 return true;
684}
Jakub Staszak17af66a2011-07-31 03:27:24 +0000685
Mehdi Aminia7978772016-04-07 21:59:28 +0000686bool BranchProbabilityInfo::calcInvokeHeuristics(const BasicBlock *BB) {
687 const InvokeInst *II = dyn_cast<InvokeInst>(BB->getTerminator());
Bill Wendlinge1c54262012-08-15 12:22:35 +0000688 if (!II)
689 return false;
690
Cong Houe93b8e12015-12-22 18:56:14 +0000691 BranchProbability TakenProb(IH_TAKEN_WEIGHT,
692 IH_TAKEN_WEIGHT + IH_NONTAKEN_WEIGHT);
693 setEdgeProbability(BB, 0 /*Index for Normal*/, TakenProb);
694 setEdgeProbability(BB, 1 /*Index for Unwind*/, TakenProb.getCompl());
Bill Wendlinge1c54262012-08-15 12:22:35 +0000695 return true;
696}
697
Pete Cooperb9d2e342015-05-28 19:43:06 +0000698void BranchProbabilityInfo::releaseMemory() {
Cong Houe93b8e12015-12-22 18:56:14 +0000699 Probs.clear();
Pete Cooperb9d2e342015-05-28 19:43:06 +0000700}
701
Cong Houab23bfb2015-07-15 22:48:29 +0000702void BranchProbabilityInfo::print(raw_ostream &OS) const {
Chandler Carruth1c8ace02011-10-23 21:21:50 +0000703 OS << "---- Branch Probabilities ----\n";
704 // We print the probabilities from the last function the analysis ran over,
705 // or the function it is currently running over.
706 assert(LastF && "Cannot print prior to running over a function");
Duncan P. N. Exon Smith5a82c912015-10-10 00:53:03 +0000707 for (const auto &BI : *LastF) {
708 for (succ_const_iterator SI = succ_begin(&BI), SE = succ_end(&BI); SI != SE;
709 ++SI) {
710 printEdgeProbability(OS << " ", &BI, *SI);
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000711 }
712 }
Chandler Carruth1c8ace02011-10-23 21:21:50 +0000713}
714
Jakub Staszakefd94c82011-07-29 19:30:00 +0000715bool BranchProbabilityInfo::
716isEdgeHot(const BasicBlock *Src, const BasicBlock *Dst) const {
Andrew Trick3d4e64b2011-06-11 01:05:22 +0000717 // Hot probability is at least 4/5 = 80%
Benjamin Kramer929f53f2011-10-23 11:19:14 +0000718 // FIXME: Compare against a static "hot" BranchProbability.
719 return getEdgeProbability(Src, Dst) > BranchProbability(4, 5);
Andrew Trick49371f32011-06-04 01:16:30 +0000720}
721
Mehdi Aminia7978772016-04-07 21:59:28 +0000722const BasicBlock *
723BranchProbabilityInfo::getHotSucc(const BasicBlock *BB) const {
Cong Houe93b8e12015-12-22 18:56:14 +0000724 auto MaxProb = BranchProbability::getZero();
Mehdi Aminia7978772016-04-07 21:59:28 +0000725 const BasicBlock *MaxSucc = nullptr;
Andrew Trick49371f32011-06-04 01:16:30 +0000726
Mehdi Aminia7978772016-04-07 21:59:28 +0000727 for (succ_const_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) {
728 const BasicBlock *Succ = *I;
Cong Houe93b8e12015-12-22 18:56:14 +0000729 auto Prob = getEdgeProbability(BB, Succ);
730 if (Prob > MaxProb) {
731 MaxProb = Prob;
Andrew Trick49371f32011-06-04 01:16:30 +0000732 MaxSucc = Succ;
733 }
734 }
735
Benjamin Kramer929f53f2011-10-23 11:19:14 +0000736 // Hot probability is at least 4/5 = 80%
Cong Houe93b8e12015-12-22 18:56:14 +0000737 if (MaxProb > BranchProbability(4, 5))
Andrew Trick49371f32011-06-04 01:16:30 +0000738 return MaxSucc;
739
Craig Topper9f008862014-04-15 04:59:12 +0000740 return nullptr;
Andrew Trick49371f32011-06-04 01:16:30 +0000741}
742
Cong Houe93b8e12015-12-22 18:56:14 +0000743/// Get the raw edge probability for the edge. If can't find it, return a
744/// default probability 1/N where N is the number of successors. Here an edge is
745/// specified using PredBlock and an
746/// index to the successors.
747BranchProbability
748BranchProbabilityInfo::getEdgeProbability(const BasicBlock *Src,
749 unsigned IndexInSuccessors) const {
750 auto I = Probs.find(std::make_pair(Src, IndexInSuccessors));
Andrew Trick49371f32011-06-04 01:16:30 +0000751
Cong Houe93b8e12015-12-22 18:56:14 +0000752 if (I != Probs.end())
Andrew Trick49371f32011-06-04 01:16:30 +0000753 return I->second;
754
Cong Houe93b8e12015-12-22 18:56:14 +0000755 return {1,
756 static_cast<uint32_t>(std::distance(succ_begin(Src), succ_end(Src)))};
Andrew Trick49371f32011-06-04 01:16:30 +0000757}
758
Cong Houd97c1002015-12-01 05:29:22 +0000759BranchProbability
760BranchProbabilityInfo::getEdgeProbability(const BasicBlock *Src,
761 succ_const_iterator Dst) const {
762 return getEdgeProbability(Src, Dst.getSuccessorIndex());
763}
764
Cong Houe93b8e12015-12-22 18:56:14 +0000765/// Get the raw edge probability calculated for the block pair. This returns the
766/// sum of all raw edge probabilities from Src to Dst.
767BranchProbability
768BranchProbabilityInfo::getEdgeProbability(const BasicBlock *Src,
769 const BasicBlock *Dst) const {
770 auto Prob = BranchProbability::getZero();
771 bool FoundProb = false;
772 for (succ_const_iterator I = succ_begin(Src), E = succ_end(Src); I != E; ++I)
773 if (*I == Dst) {
774 auto MapI = Probs.find(std::make_pair(Src, I.getSuccessorIndex()));
775 if (MapI != Probs.end()) {
776 FoundProb = true;
777 Prob += MapI->second;
778 }
779 }
780 uint32_t succ_num = std::distance(succ_begin(Src), succ_end(Src));
781 return FoundProb ? Prob : BranchProbability(1, succ_num);
782}
783
784/// Set the edge probability for a given edge specified by PredBlock and an
785/// index to the successors.
786void BranchProbabilityInfo::setEdgeProbability(const BasicBlock *Src,
787 unsigned IndexInSuccessors,
788 BranchProbability Prob) {
789 Probs[std::make_pair(Src, IndexInSuccessors)] = Prob;
Igor Laevskyee40d1e2016-07-15 14:31:16 +0000790 Handles.insert(BasicBlockCallbackVH(Src, this));
Cong Houe93b8e12015-12-22 18:56:14 +0000791 DEBUG(dbgs() << "set edge " << Src->getName() << " -> " << IndexInSuccessors
792 << " successor probability to " << Prob << "\n");
793}
794
Andrew Trick49371f32011-06-04 01:16:30 +0000795raw_ostream &
Chandler Carruth1c8ace02011-10-23 21:21:50 +0000796BranchProbabilityInfo::printEdgeProbability(raw_ostream &OS,
797 const BasicBlock *Src,
798 const BasicBlock *Dst) const {
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000799 const BranchProbability Prob = getEdgeProbability(Src, Dst);
Benjamin Kramer1f97a5a2011-11-15 16:27:03 +0000800 OS << "edge " << Src->getName() << " -> " << Dst->getName()
Andrew Trick3d4e64b2011-06-11 01:05:22 +0000801 << " probability is " << Prob
802 << (isEdgeHot(Src, Dst) ? " [HOT edge]\n" : "\n");
Andrew Trick49371f32011-06-04 01:16:30 +0000803
804 return OS;
805}
Cong Houab23bfb2015-07-15 22:48:29 +0000806
Igor Laevskyee40d1e2016-07-15 14:31:16 +0000807void BranchProbabilityInfo::eraseBlock(const BasicBlock *BB) {
808 for (auto I = Probs.begin(), E = Probs.end(); I != E; ++I) {
809 auto Key = I->first;
810 if (Key.first == BB)
811 Probs.erase(Key);
812 }
813}
814
John Brawnda4a68a2017-06-08 09:44:40 +0000815void BranchProbabilityInfo::calculate(const Function &F, const LoopInfo &LI,
816 const TargetLibraryInfo *TLI) {
Cong Houab23bfb2015-07-15 22:48:29 +0000817 DEBUG(dbgs() << "---- Branch Probability Info : " << F.getName()
818 << " ----\n\n");
819 LastF = &F; // Store the last function we ran on for printing.
820 assert(PostDominatedByUnreachable.empty());
821 assert(PostDominatedByColdCall.empty());
822
Geoff Berryeed65312017-11-01 15:16:50 +0000823 // Record SCC numbers of blocks in the CFG to identify irreducible loops.
824 // FIXME: We could only calculate this if the CFG is known to be irreducible
825 // (perhaps cache this info in LoopInfo if we can easily calculate it there?).
826 int SccNum = 0;
827 SccInfo SccI;
828 for (scc_iterator<const Function *> It = scc_begin(&F); !It.isAtEnd();
829 ++It, ++SccNum) {
830 // Ignore single-block SCCs since they either aren't loops or LoopInfo will
831 // catch them.
832 const std::vector<const BasicBlock *> &Scc = *It;
833 if (Scc.size() == 1)
834 continue;
835
836 DEBUG(dbgs() << "BPI: SCC " << SccNum << ":");
837 for (auto *BB : Scc) {
838 DEBUG(dbgs() << " " << BB->getName());
839 SccI.SccNums[BB] = SccNum;
840 }
841 DEBUG(dbgs() << "\n");
842 }
843
Cong Houab23bfb2015-07-15 22:48:29 +0000844 // Walk the basic blocks in post-order so that we can build up state about
845 // the successors of a block iteratively.
846 for (auto BB : post_order(&F.getEntryBlock())) {
847 DEBUG(dbgs() << "Computing probabilities for " << BB->getName() << "\n");
Serguei Katkovecebc3d2017-04-12 05:42:14 +0000848 updatePostDominatedByUnreachable(BB);
849 updatePostDominatedByColdCall(BB);
Serguei Katkov11d9c4f2017-04-17 06:39:47 +0000850 // If there is no at least two successors, no sense to set probability.
851 if (BB->getTerminator()->getNumSuccessors() < 2)
852 continue;
Cong Houab23bfb2015-07-15 22:48:29 +0000853 if (calcMetadataWeights(BB))
854 continue;
Serguei Katkov2616bbb2017-04-17 04:33:04 +0000855 if (calcUnreachableHeuristics(BB))
856 continue;
Cong Houab23bfb2015-07-15 22:48:29 +0000857 if (calcColdCallHeuristics(BB))
858 continue;
Geoff Berryeed65312017-11-01 15:16:50 +0000859 if (calcLoopBranchHeuristics(BB, LI, SccI))
Cong Houab23bfb2015-07-15 22:48:29 +0000860 continue;
861 if (calcPointerHeuristics(BB))
862 continue;
John Brawnda4a68a2017-06-08 09:44:40 +0000863 if (calcZeroHeuristics(BB, TLI))
Cong Houab23bfb2015-07-15 22:48:29 +0000864 continue;
865 if (calcFloatingPointHeuristics(BB))
866 continue;
867 calcInvokeHeuristics(BB);
868 }
869
870 PostDominatedByUnreachable.clear();
871 PostDominatedByColdCall.clear();
Hiroshi Yamauchi63e17eb2017-08-26 00:31:00 +0000872
873 if (PrintBranchProb &&
874 (PrintBranchProbFuncName.empty() ||
875 F.getName().equals(PrintBranchProbFuncName))) {
876 print(dbgs());
877 }
Cong Houab23bfb2015-07-15 22:48:29 +0000878}
879
880void BranchProbabilityInfoWrapperPass::getAnalysisUsage(
881 AnalysisUsage &AU) const {
882 AU.addRequired<LoopInfoWrapperPass>();
John Brawnda4a68a2017-06-08 09:44:40 +0000883 AU.addRequired<TargetLibraryInfoWrapperPass>();
Cong Houab23bfb2015-07-15 22:48:29 +0000884 AU.setPreservesAll();
885}
886
887bool BranchProbabilityInfoWrapperPass::runOnFunction(Function &F) {
888 const LoopInfo &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
John Brawnda4a68a2017-06-08 09:44:40 +0000889 const TargetLibraryInfo &TLI = getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
890 BPI.calculate(F, LI, &TLI);
Cong Houab23bfb2015-07-15 22:48:29 +0000891 return false;
892}
893
894void BranchProbabilityInfoWrapperPass::releaseMemory() { BPI.releaseMemory(); }
895
896void BranchProbabilityInfoWrapperPass::print(raw_ostream &OS,
897 const Module *) const {
898 BPI.print(OS);
899}
Xinliang David Li6e5dd412016-05-05 02:59:57 +0000900
Chandler Carruthdab4eae2016-11-23 17:53:26 +0000901AnalysisKey BranchProbabilityAnalysis::Key;
Xinliang David Li6e5dd412016-05-05 02:59:57 +0000902BranchProbabilityInfo
Sean Silva36e0d012016-08-09 00:28:15 +0000903BranchProbabilityAnalysis::run(Function &F, FunctionAnalysisManager &AM) {
Xinliang David Li6e5dd412016-05-05 02:59:57 +0000904 BranchProbabilityInfo BPI;
John Brawnda4a68a2017-06-08 09:44:40 +0000905 BPI.calculate(F, AM.getResult<LoopAnalysis>(F), &AM.getResult<TargetLibraryAnalysis>(F));
Xinliang David Li6e5dd412016-05-05 02:59:57 +0000906 return BPI;
907}
908
909PreservedAnalyses
Sean Silva36e0d012016-08-09 00:28:15 +0000910BranchProbabilityPrinterPass::run(Function &F, FunctionAnalysisManager &AM) {
Xinliang David Li6e5dd412016-05-05 02:59:57 +0000911 OS << "Printing analysis results of BPI for function "
912 << "'" << F.getName() << "':"
913 << "\n";
914 AM.getResult<BranchProbabilityAnalysis>(F).print(OS);
915 return PreservedAnalyses::all();
916}