blob: 0dc4475ca0e2934726097a4de0e9929d8eea4b4f [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"
Benjamin Kramer16132e62015-03-23 18:07:13 +000024#include "llvm/Support/raw_ostream.h"
Andrew Trick49371f32011-06-04 01:16:30 +000025
26using namespace llvm;
27
Chandler Carruthf1221bd2014-04-22 02:48:03 +000028#define DEBUG_TYPE "branch-prob"
29
Cong Houab23bfb2015-07-15 22:48:29 +000030INITIALIZE_PASS_BEGIN(BranchProbabilityInfoWrapperPass, "branch-prob",
Andrew Trick49371f32011-06-04 01:16:30 +000031 "Branch Probability Analysis", false, true)
Chandler Carruth4f8f3072015-01-17 14:16:18 +000032INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
Cong Houab23bfb2015-07-15 22:48:29 +000033INITIALIZE_PASS_END(BranchProbabilityInfoWrapperPass, "branch-prob",
Andrew Trick49371f32011-06-04 01:16:30 +000034 "Branch Probability Analysis", false, true)
35
Cong Houab23bfb2015-07-15 22:48:29 +000036char BranchProbabilityInfoWrapperPass::ID = 0;
Andrew Trick49371f32011-06-04 01:16:30 +000037
Chandler Carruth7a0094a2011-10-24 01:40:45 +000038// Weights are for internal use only. They are used by heuristics to help to
39// estimate edges' probability. Example:
40//
41// Using "Loop Branch Heuristics" we predict weights of edges for the
42// block BB2.
43// ...
44// |
45// V
46// BB1<-+
47// | |
48// | | (Weight = 124)
49// V |
50// BB2--+
51// |
52// | (Weight = 4)
53// V
54// BB3
55//
56// Probability of the edge BB2->BB1 = 124 / (124 + 4) = 0.96875
57// Probability of the edge BB2->BB3 = 4 / (124 + 4) = 0.03125
58static const uint32_t LBH_TAKEN_WEIGHT = 124;
59static const uint32_t LBH_NONTAKEN_WEIGHT = 4;
Andrew Trick49371f32011-06-04 01:16:30 +000060
Chandler Carruth7111f452011-10-24 12:01:08 +000061/// \brief Unreachable-terminating branch taken weight.
62///
63/// This is the weight for a branch being taken to a block that terminates
64/// (eventually) in unreachable. These are predicted as unlikely as possible.
65static const uint32_t UR_TAKEN_WEIGHT = 1;
66
67/// \brief Unreachable-terminating branch not-taken weight.
68///
69/// This is the weight for a branch not being taken toward a block that
70/// terminates (eventually) in unreachable. Such a branch is essentially never
Chandler Carruthb024aa02011-12-22 09:26:37 +000071/// taken. Set the weight to an absurdly high value so that nested loops don't
72/// easily subsume it.
73static const uint32_t UR_NONTAKEN_WEIGHT = 1024*1024 - 1;
Andrew Trick49371f32011-06-04 01:16:30 +000074
Serguei Katkov2616bbb2017-04-17 04:33:04 +000075/// \brief Returns the branch probability for unreachable edge according to
76/// heuristic.
77///
78/// This is the branch probability being taken to a block that terminates
79/// (eventually) in unreachable. These are predicted as unlikely as possible.
80static BranchProbability getUnreachableProbability(uint64_t UnreachableCount) {
81 assert(UnreachableCount > 0 && "UnreachableCount must be > 0");
82 return BranchProbability::getBranchProbability(
83 UR_TAKEN_WEIGHT,
84 (UR_TAKEN_WEIGHT + UR_NONTAKEN_WEIGHT) * UnreachableCount);
85}
86
87/// \brief Returns the branch probability for reachable edge according to
88/// heuristic.
89///
90/// This is the branch probability not being taken toward a block that
91/// terminates (eventually) in unreachable. Such a branch is essentially never
92/// taken. Set the weight to an absurdly high value so that nested loops don't
93/// easily subsume it.
94static BranchProbability getReachableProbability(uint64_t ReachableCount) {
95 assert(ReachableCount > 0 && "ReachableCount must be > 0");
96 return BranchProbability::getBranchProbability(
97 UR_NONTAKEN_WEIGHT,
98 (UR_TAKEN_WEIGHT + UR_NONTAKEN_WEIGHT) * ReachableCount);
99}
100
Diego Novilloc6399532013-05-24 12:26:52 +0000101/// \brief Weight for a branch taken going into a cold block.
102///
103/// This is the weight for a branch taken toward a block marked
104/// cold. A block is marked cold if it's postdominated by a
105/// block containing a call to a cold function. Cold functions
106/// are those marked with attribute 'cold'.
107static const uint32_t CC_TAKEN_WEIGHT = 4;
108
109/// \brief Weight for a branch not-taken into a cold block.
110///
111/// This is the weight for a branch not taken toward a block marked
112/// cold.
113static const uint32_t CC_NONTAKEN_WEIGHT = 64;
114
Chandler Carruth7a0094a2011-10-24 01:40:45 +0000115static const uint32_t PH_TAKEN_WEIGHT = 20;
116static const uint32_t PH_NONTAKEN_WEIGHT = 12;
Andrew Trick49371f32011-06-04 01:16:30 +0000117
Chandler Carruth7a0094a2011-10-24 01:40:45 +0000118static const uint32_t ZH_TAKEN_WEIGHT = 20;
119static const uint32_t ZH_NONTAKEN_WEIGHT = 12;
Andrew Trick49371f32011-06-04 01:16:30 +0000120
Chandler Carruth7a0094a2011-10-24 01:40:45 +0000121static const uint32_t FPH_TAKEN_WEIGHT = 20;
122static const uint32_t FPH_NONTAKEN_WEIGHT = 12;
Andrew Trick49371f32011-06-04 01:16:30 +0000123
Bill Wendlinge1c54262012-08-15 12:22:35 +0000124/// \brief Invoke-terminating normal branch taken weight
125///
126/// This is the weight for branching to the normal destination of an invoke
127/// instruction. We expect this to happen most of the time. Set the weight to an
128/// absurdly high value so that nested loops subsume it.
129static const uint32_t IH_TAKEN_WEIGHT = 1024 * 1024 - 1;
130
131/// \brief Invoke-terminating normal branch not-taken weight.
132///
133/// This is the weight for branching to the unwind destination of an invoke
134/// instruction. This is essentially never taken.
135static const uint32_t IH_NONTAKEN_WEIGHT = 1;
136
Serguei Katkovecebc3d2017-04-12 05:42:14 +0000137/// \brief Add \p BB to PostDominatedByUnreachable set if applicable.
138void
139BranchProbabilityInfo::updatePostDominatedByUnreachable(const BasicBlock *BB) {
Mehdi Aminia7978772016-04-07 21:59:28 +0000140 const TerminatorInst *TI = BB->getTerminator();
Chandler Carruth7111f452011-10-24 12:01:08 +0000141 if (TI->getNumSuccessors() == 0) {
Sanjoy Das432c1c32016-04-18 19:01:28 +0000142 if (isa<UnreachableInst>(TI) ||
143 // If this block is terminated by a call to
144 // @llvm.experimental.deoptimize then treat it like an unreachable since
145 // the @llvm.experimental.deoptimize call is expected to practically
146 // never execute.
147 BB->getTerminatingDeoptimizeCall())
Chandler Carruth7111f452011-10-24 12:01:08 +0000148 PostDominatedByUnreachable.insert(BB);
Serguei Katkovecebc3d2017-04-12 05:42:14 +0000149 return;
Chandler Carruth7111f452011-10-24 12:01:08 +0000150 }
151
Serguei Katkovecebc3d2017-04-12 05:42:14 +0000152 // If the terminator is an InvokeInst, check only the normal destination block
153 // as the unwind edge of InvokeInst is also very unlikely taken.
154 if (auto *II = dyn_cast<InvokeInst>(TI)) {
155 if (PostDominatedByUnreachable.count(II->getNormalDest()))
156 PostDominatedByUnreachable.insert(BB);
157 return;
158 }
159
160 for (auto *I : successors(BB))
161 // If any of successor is not post dominated then BB is also not.
162 if (!PostDominatedByUnreachable.count(I))
163 return;
164
165 PostDominatedByUnreachable.insert(BB);
166}
167
168/// \brief Add \p BB to PostDominatedByColdCall set if applicable.
169void
170BranchProbabilityInfo::updatePostDominatedByColdCall(const BasicBlock *BB) {
171 assert(!PostDominatedByColdCall.count(BB));
172 const TerminatorInst *TI = BB->getTerminator();
173 if (TI->getNumSuccessors() == 0)
174 return;
175
176 // If all of successor are post dominated then BB is also done.
177 if (llvm::all_of(successors(BB), [&](const BasicBlock *SuccBB) {
178 return PostDominatedByColdCall.count(SuccBB);
179 })) {
180 PostDominatedByColdCall.insert(BB);
181 return;
182 }
183
184 // If the terminator is an InvokeInst, check only the normal destination
185 // block as the unwind edge of InvokeInst is also very unlikely taken.
186 if (auto *II = dyn_cast<InvokeInst>(TI))
187 if (PostDominatedByColdCall.count(II->getNormalDest())) {
188 PostDominatedByColdCall.insert(BB);
189 return;
190 }
191
192 // Otherwise, if the block itself contains a cold function, add it to the
193 // set of blocks post-dominated by a cold call.
194 for (auto &I : *BB)
195 if (const CallInst *CI = dyn_cast<CallInst>(&I))
196 if (CI->hasFnAttr(Attribute::Cold)) {
197 PostDominatedByColdCall.insert(BB);
198 return;
199 }
200}
201
202/// \brief Calculate edge weights for successors lead to unreachable.
203///
204/// Predict that a successor which leads necessarily to an
205/// unreachable-terminated block as extremely unlikely.
206bool BranchProbabilityInfo::calcUnreachableHeuristics(const BasicBlock *BB) {
207 const TerminatorInst *TI = BB->getTerminator();
Serguei Katkov11d9c4f2017-04-17 06:39:47 +0000208 assert(TI->getNumSuccessors() > 1 && "expected more than one successor!");
209
210 // Return false here so that edge weights for InvokeInst could be decided
211 // in calcInvokeHeuristics().
212 if (isa<InvokeInst>(TI))
Serguei Katkovecebc3d2017-04-12 05:42:14 +0000213 return false;
214
Manman Rencf104462012-08-24 18:14:27 +0000215 SmallVector<unsigned, 4> UnreachableEdges;
216 SmallVector<unsigned, 4> ReachableEdges;
Chandler Carruth7111f452011-10-24 12:01:08 +0000217
Serguei Katkovecebc3d2017-04-12 05:42:14 +0000218 for (succ_const_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I)
Chandler Carruth7111f452011-10-24 12:01:08 +0000219 if (PostDominatedByUnreachable.count(*I))
Manman Rencf104462012-08-24 18:14:27 +0000220 UnreachableEdges.push_back(I.getSuccessorIndex());
Chandler Carruth7111f452011-10-24 12:01:08 +0000221 else
Manman Rencf104462012-08-24 18:14:27 +0000222 ReachableEdges.push_back(I.getSuccessorIndex());
Chandler Carruth7111f452011-10-24 12:01:08 +0000223
Serguei Katkov11d9c4f2017-04-17 06:39:47 +0000224 // Skip probabilities if all were reachable.
225 if (UnreachableEdges.empty())
Serguei Katkovecebc3d2017-04-12 05:42:14 +0000226 return false;
Jun Bum Lima23e5f72015-12-21 22:00:51 +0000227
Cong Houe93b8e12015-12-22 18:56:14 +0000228 if (ReachableEdges.empty()) {
229 BranchProbability Prob(1, UnreachableEdges.size());
230 for (unsigned SuccIdx : UnreachableEdges)
231 setEdgeProbability(BB, SuccIdx, Prob);
Chandler Carruth7111f452011-10-24 12:01:08 +0000232 return true;
Cong Houe93b8e12015-12-22 18:56:14 +0000233 }
234
Serguei Katkov2616bbb2017-04-17 04:33:04 +0000235 auto UnreachableProb = getUnreachableProbability(UnreachableEdges.size());
236 auto ReachableProb = getReachableProbability(ReachableEdges.size());
Cong Houe93b8e12015-12-22 18:56:14 +0000237
238 for (unsigned SuccIdx : UnreachableEdges)
239 setEdgeProbability(BB, SuccIdx, UnreachableProb);
240 for (unsigned SuccIdx : ReachableEdges)
241 setEdgeProbability(BB, SuccIdx, ReachableProb);
Chandler Carruth7111f452011-10-24 12:01:08 +0000242
243 return true;
244}
245
Chandler Carruthd27a7a92011-10-19 10:30:30 +0000246// Propagate existing explicit probabilities from either profile data or
Serguei Katkov2616bbb2017-04-17 04:33:04 +0000247// 'expect' intrinsic processing. Examine metadata against unreachable
248// heuristic. The probability of the edge coming to unreachable block is
249// set to min of metadata and unreachable heuristic.
Mehdi Aminia7978772016-04-07 21:59:28 +0000250bool BranchProbabilityInfo::calcMetadataWeights(const BasicBlock *BB) {
251 const TerminatorInst *TI = BB->getTerminator();
Serguei Katkov11d9c4f2017-04-17 06:39:47 +0000252 assert(TI->getNumSuccessors() > 1 && "expected more than one successor!");
Chandler Carruthdeac50c2011-10-19 10:32:19 +0000253 if (!isa<BranchInst>(TI) && !isa<SwitchInst>(TI))
Chandler Carruthd27a7a92011-10-19 10:30:30 +0000254 return false;
255
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +0000256 MDNode *WeightsNode = TI->getMetadata(LLVMContext::MD_prof);
Chandler Carruthdeac50c2011-10-19 10:32:19 +0000257 if (!WeightsNode)
Chandler Carruthd27a7a92011-10-19 10:30:30 +0000258 return false;
259
Diego Novillode5b8012015-05-07 17:22:06 +0000260 // Check that the number of successors is manageable.
261 assert(TI->getNumSuccessors() < UINT32_MAX && "Too many successors");
262
Chandler Carruthdeac50c2011-10-19 10:32:19 +0000263 // Ensure there are weights for all of the successors. Note that the first
264 // operand to the metadata node is a name, not a weight.
265 if (WeightsNode->getNumOperands() != TI->getNumSuccessors() + 1)
Chandler Carruthd27a7a92011-10-19 10:30:30 +0000266 return false;
267
Diego Novillode5b8012015-05-07 17:22:06 +0000268 // Build up the final weights that will be used in a temporary buffer.
269 // Compute the sum of all weights to later decide whether they need to
270 // be scaled to fit in 32 bits.
271 uint64_t WeightSum = 0;
Chandler Carruthdeac50c2011-10-19 10:32:19 +0000272 SmallVector<uint32_t, 2> Weights;
Serguei Katkov2616bbb2017-04-17 04:33:04 +0000273 SmallVector<unsigned, 2> UnreachableIdxs;
274 SmallVector<unsigned, 2> ReachableIdxs;
Chandler Carruthdeac50c2011-10-19 10:32:19 +0000275 Weights.reserve(TI->getNumSuccessors());
276 for (unsigned i = 1, e = WeightsNode->getNumOperands(); i != e; ++i) {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000277 ConstantInt *Weight =
278 mdconst::dyn_extract<ConstantInt>(WeightsNode->getOperand(i));
Chandler Carruthdeac50c2011-10-19 10:32:19 +0000279 if (!Weight)
280 return false;
Diego Novillode5b8012015-05-07 17:22:06 +0000281 assert(Weight->getValue().getActiveBits() <= 32 &&
282 "Too many bits for uint32_t");
283 Weights.push_back(Weight->getZExtValue());
284 WeightSum += Weights.back();
Serguei Katkov2616bbb2017-04-17 04:33:04 +0000285 if (PostDominatedByUnreachable.count(TI->getSuccessor(i - 1)))
286 UnreachableIdxs.push_back(i - 1);
287 else
288 ReachableIdxs.push_back(i - 1);
Chandler Carruthdeac50c2011-10-19 10:32:19 +0000289 }
290 assert(Weights.size() == TI->getNumSuccessors() && "Checked above");
Diego Novillode5b8012015-05-07 17:22:06 +0000291
292 // If the sum of weights does not fit in 32 bits, scale every weight down
293 // accordingly.
294 uint64_t ScalingFactor =
295 (WeightSum > UINT32_MAX) ? WeightSum / UINT32_MAX + 1 : 1;
296
Serguei Katkov2616bbb2017-04-17 04:33:04 +0000297 if (ScalingFactor > 1) {
298 WeightSum = 0;
299 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i) {
300 Weights[i] /= ScalingFactor;
301 WeightSum += Weights[i];
302 }
Diego Novillode5b8012015-05-07 17:22:06 +0000303 }
Cong Hou6a2c71a2015-12-22 23:45:55 +0000304
Serguei Katkov2616bbb2017-04-17 04:33:04 +0000305 if (WeightSum == 0 || ReachableIdxs.size() == 0) {
Cong Hou6a2c71a2015-12-22 23:45:55 +0000306 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i)
Serguei Katkov2616bbb2017-04-17 04:33:04 +0000307 Weights[i] = 1;
308 WeightSum = TI->getNumSuccessors();
Cong Hou6a2c71a2015-12-22 23:45:55 +0000309 }
Cong Houe93b8e12015-12-22 18:56:14 +0000310
Serguei Katkov2616bbb2017-04-17 04:33:04 +0000311 // Set the probability.
312 SmallVector<BranchProbability, 2> BP;
313 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i)
314 BP.push_back({ Weights[i], static_cast<uint32_t>(WeightSum) });
315
316 // Examine the metadata against unreachable heuristic.
317 // If the unreachable heuristic is more strong then we use it for this edge.
318 if (UnreachableIdxs.size() > 0 && ReachableIdxs.size() > 0) {
319 auto ToDistribute = BranchProbability::getZero();
320 auto UnreachableProb = getUnreachableProbability(UnreachableIdxs.size());
321 for (auto i : UnreachableIdxs)
322 if (UnreachableProb < BP[i]) {
323 ToDistribute += BP[i] - UnreachableProb;
324 BP[i] = UnreachableProb;
325 }
326
327 // If we modified the probability of some edges then we must distribute
328 // the difference between reachable blocks.
329 if (ToDistribute > BranchProbability::getZero()) {
330 BranchProbability PerEdge = ToDistribute / ReachableIdxs.size();
331 for (auto i : ReachableIdxs) {
332 BP[i] += PerEdge;
333 ToDistribute -= PerEdge;
334 }
335 // Tail goes to the first reachable edge.
336 BP[ReachableIdxs[0]] += ToDistribute;
337 }
338 }
339
340 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i)
341 setEdgeProbability(BB, i, BP[i]);
342
Diego Novillode5b8012015-05-07 17:22:06 +0000343 assert(WeightSum <= UINT32_MAX &&
344 "Expected weights to scale down to 32 bits");
Chandler Carruthd27a7a92011-10-19 10:30:30 +0000345
346 return true;
347}
348
Diego Novilloc6399532013-05-24 12:26:52 +0000349/// \brief Calculate edge weights for edges leading to cold blocks.
350///
351/// A cold block is one post-dominated by a block with a call to a
352/// cold function. Those edges are unlikely to be taken, so we give
353/// them relatively low weight.
354///
355/// Return true if we could compute the weights for cold edges.
356/// Return false, otherwise.
Mehdi Aminia7978772016-04-07 21:59:28 +0000357bool BranchProbabilityInfo::calcColdCallHeuristics(const BasicBlock *BB) {
358 const TerminatorInst *TI = BB->getTerminator();
Serguei Katkov11d9c4f2017-04-17 06:39:47 +0000359 assert(TI->getNumSuccessors() > 1 && "expected more than one successor!");
360
361 // Return false here so that edge weights for InvokeInst could be decided
362 // in calcInvokeHeuristics().
363 if (isa<InvokeInst>(TI))
Diego Novilloc6399532013-05-24 12:26:52 +0000364 return false;
365
366 // Determine which successors are post-dominated by a cold block.
367 SmallVector<unsigned, 4> ColdEdges;
Diego Novilloc6399532013-05-24 12:26:52 +0000368 SmallVector<unsigned, 4> NormalEdges;
Mehdi Aminia7978772016-04-07 21:59:28 +0000369 for (succ_const_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I)
Diego Novilloc6399532013-05-24 12:26:52 +0000370 if (PostDominatedByColdCall.count(*I))
371 ColdEdges.push_back(I.getSuccessorIndex());
372 else
373 NormalEdges.push_back(I.getSuccessorIndex());
374
Serguei Katkov11d9c4f2017-04-17 06:39:47 +0000375 // Skip probabilities if no cold edges.
376 if (ColdEdges.empty())
Diego Novilloc6399532013-05-24 12:26:52 +0000377 return false;
378
Cong Houe93b8e12015-12-22 18:56:14 +0000379 if (NormalEdges.empty()) {
380 BranchProbability Prob(1, ColdEdges.size());
381 for (unsigned SuccIdx : ColdEdges)
382 setEdgeProbability(BB, SuccIdx, Prob);
Diego Novilloc6399532013-05-24 12:26:52 +0000383 return true;
Cong Houe93b8e12015-12-22 18:56:14 +0000384 }
385
Vedant Kumara4bd1462016-12-17 01:02:08 +0000386 auto ColdProb = BranchProbability::getBranchProbability(
387 CC_TAKEN_WEIGHT,
388 (CC_TAKEN_WEIGHT + CC_NONTAKEN_WEIGHT) * uint64_t(ColdEdges.size()));
389 auto NormalProb = BranchProbability::getBranchProbability(
390 CC_NONTAKEN_WEIGHT,
391 (CC_TAKEN_WEIGHT + CC_NONTAKEN_WEIGHT) * uint64_t(NormalEdges.size()));
Cong Houe93b8e12015-12-22 18:56:14 +0000392
393 for (unsigned SuccIdx : ColdEdges)
394 setEdgeProbability(BB, SuccIdx, ColdProb);
395 for (unsigned SuccIdx : NormalEdges)
396 setEdgeProbability(BB, SuccIdx, NormalProb);
Diego Novilloc6399532013-05-24 12:26:52 +0000397
398 return true;
399}
400
Andrew Trick49371f32011-06-04 01:16:30 +0000401// Calculate Edge Weights using "Pointer Heuristics". Predict a comparsion
402// between two pointer or pointer and NULL will fail.
Mehdi Aminia7978772016-04-07 21:59:28 +0000403bool BranchProbabilityInfo::calcPointerHeuristics(const BasicBlock *BB) {
404 const BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator());
Andrew Trick49371f32011-06-04 01:16:30 +0000405 if (!BI || !BI->isConditional())
Jakub Staszakd07b2e12011-07-28 21:45:07 +0000406 return false;
Andrew Trick49371f32011-06-04 01:16:30 +0000407
408 Value *Cond = BI->getCondition();
409 ICmpInst *CI = dyn_cast<ICmpInst>(Cond);
Jakub Staszakabb236f2011-07-15 20:51:06 +0000410 if (!CI || !CI->isEquality())
Jakub Staszakd07b2e12011-07-28 21:45:07 +0000411 return false;
Andrew Trick49371f32011-06-04 01:16:30 +0000412
413 Value *LHS = CI->getOperand(0);
Andrew Trick49371f32011-06-04 01:16:30 +0000414
415 if (!LHS->getType()->isPointerTy())
Jakub Staszakd07b2e12011-07-28 21:45:07 +0000416 return false;
Andrew Trick49371f32011-06-04 01:16:30 +0000417
Nick Lewycky75b20532011-06-04 02:07:10 +0000418 assert(CI->getOperand(1)->getType()->isPointerTy());
Andrew Trick49371f32011-06-04 01:16:30 +0000419
Andrew Trick49371f32011-06-04 01:16:30 +0000420 // p != 0 -> isProb = true
421 // p == 0 -> isProb = false
422 // p != q -> isProb = true
423 // p == q -> isProb = false;
Manman Rencf104462012-08-24 18:14:27 +0000424 unsigned TakenIdx = 0, NonTakenIdx = 1;
Jakub Staszakabb236f2011-07-15 20:51:06 +0000425 bool isProb = CI->getPredicate() == ICmpInst::ICMP_NE;
Andrew Trick49371f32011-06-04 01:16:30 +0000426 if (!isProb)
Manman Rencf104462012-08-24 18:14:27 +0000427 std::swap(TakenIdx, NonTakenIdx);
Andrew Trick49371f32011-06-04 01:16:30 +0000428
Cong Houe93b8e12015-12-22 18:56:14 +0000429 BranchProbability TakenProb(PH_TAKEN_WEIGHT,
430 PH_TAKEN_WEIGHT + PH_NONTAKEN_WEIGHT);
431 setEdgeProbability(BB, TakenIdx, TakenProb);
432 setEdgeProbability(BB, NonTakenIdx, TakenProb.getCompl());
Jakub Staszakd07b2e12011-07-28 21:45:07 +0000433 return true;
Andrew Trick49371f32011-06-04 01:16:30 +0000434}
435
436// Calculate Edge Weights using "Loop Branch Heuristics". Predict backedges
437// as taken, exiting edges as not-taken.
Mehdi Aminia7978772016-04-07 21:59:28 +0000438bool BranchProbabilityInfo::calcLoopBranchHeuristics(const BasicBlock *BB,
Cong Houab23bfb2015-07-15 22:48:29 +0000439 const LoopInfo &LI) {
440 Loop *L = LI.getLoopFor(BB);
Andrew Trick49371f32011-06-04 01:16:30 +0000441 if (!L)
Jakub Staszakd07b2e12011-07-28 21:45:07 +0000442 return false;
Andrew Trick49371f32011-06-04 01:16:30 +0000443
Manman Rencf104462012-08-24 18:14:27 +0000444 SmallVector<unsigned, 8> BackEdges;
445 SmallVector<unsigned, 8> ExitingEdges;
446 SmallVector<unsigned, 8> InEdges; // Edges from header to the loop.
Jakub Staszakbcb3c652011-07-28 21:33:46 +0000447
Mehdi Aminia7978772016-04-07 21:59:28 +0000448 for (succ_const_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) {
Chandler Carruth32f46e72011-10-25 09:47:41 +0000449 if (!L->contains(*I))
Manman Rencf104462012-08-24 18:14:27 +0000450 ExitingEdges.push_back(I.getSuccessorIndex());
Chandler Carruth32f46e72011-10-25 09:47:41 +0000451 else if (L->getHeader() == *I)
Manman Rencf104462012-08-24 18:14:27 +0000452 BackEdges.push_back(I.getSuccessorIndex());
Chandler Carruth32f46e72011-10-25 09:47:41 +0000453 else
Manman Rencf104462012-08-24 18:14:27 +0000454 InEdges.push_back(I.getSuccessorIndex());
Andrew Trick49371f32011-06-04 01:16:30 +0000455 }
456
Akira Hatanaka5638b892014-04-14 16:56:19 +0000457 if (BackEdges.empty() && ExitingEdges.empty())
458 return false;
459
Cong Houe93b8e12015-12-22 18:56:14 +0000460 // Collect the sum of probabilities of back-edges/in-edges/exiting-edges, and
461 // normalize them so that they sum up to one.
Benjamin Kramer1d67ac52016-06-17 13:15:10 +0000462 BranchProbability Probs[] = {BranchProbability::getZero(),
463 BranchProbability::getZero(),
464 BranchProbability::getZero()};
Cong Houe93b8e12015-12-22 18:56:14 +0000465 unsigned Denom = (BackEdges.empty() ? 0 : LBH_TAKEN_WEIGHT) +
466 (InEdges.empty() ? 0 : LBH_TAKEN_WEIGHT) +
467 (ExitingEdges.empty() ? 0 : LBH_NONTAKEN_WEIGHT);
468 if (!BackEdges.empty())
469 Probs[0] = BranchProbability(LBH_TAKEN_WEIGHT, Denom);
470 if (!InEdges.empty())
471 Probs[1] = BranchProbability(LBH_TAKEN_WEIGHT, Denom);
472 if (!ExitingEdges.empty())
473 Probs[2] = BranchProbability(LBH_NONTAKEN_WEIGHT, Denom);
Andrew Trick49371f32011-06-04 01:16:30 +0000474
Cong Houe93b8e12015-12-22 18:56:14 +0000475 if (uint32_t numBackEdges = BackEdges.size()) {
476 auto Prob = Probs[0] / numBackEdges;
477 for (unsigned SuccIdx : BackEdges)
478 setEdgeProbability(BB, SuccIdx, Prob);
Andrew Trick49371f32011-06-04 01:16:30 +0000479 }
480
Jakub Staszakbcb3c652011-07-28 21:33:46 +0000481 if (uint32_t numInEdges = InEdges.size()) {
Cong Houe93b8e12015-12-22 18:56:14 +0000482 auto Prob = Probs[1] / numInEdges;
483 for (unsigned SuccIdx : InEdges)
484 setEdgeProbability(BB, SuccIdx, Prob);
Jakub Staszakbcb3c652011-07-28 21:33:46 +0000485 }
486
Chandler Carruth32f46e72011-10-25 09:47:41 +0000487 if (uint32_t numExitingEdges = ExitingEdges.size()) {
Cong Houe93b8e12015-12-22 18:56:14 +0000488 auto Prob = Probs[2] / numExitingEdges;
489 for (unsigned SuccIdx : ExitingEdges)
490 setEdgeProbability(BB, SuccIdx, Prob);
Andrew Trick49371f32011-06-04 01:16:30 +0000491 }
Jakub Staszakd07b2e12011-07-28 21:45:07 +0000492
493 return true;
Andrew Trick49371f32011-06-04 01:16:30 +0000494}
495
Mehdi Aminia7978772016-04-07 21:59:28 +0000496bool BranchProbabilityInfo::calcZeroHeuristics(const BasicBlock *BB) {
497 const BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator());
Jakub Staszak17af66a2011-07-31 03:27:24 +0000498 if (!BI || !BI->isConditional())
499 return false;
500
501 Value *Cond = BI->getCondition();
502 ICmpInst *CI = dyn_cast<ICmpInst>(Cond);
503 if (!CI)
504 return false;
505
Jakub Staszak17af66a2011-07-31 03:27:24 +0000506 Value *RHS = CI->getOperand(1);
Jakub Staszakbfb1ae22011-07-31 04:47:20 +0000507 ConstantInt *CV = dyn_cast<ConstantInt>(RHS);
Benjamin Kramer0ca1ad02011-09-04 23:53:04 +0000508 if (!CV)
Jakub Staszak17af66a2011-07-31 03:27:24 +0000509 return false;
510
Daniel Jaspera73f3d52015-04-15 06:24:07 +0000511 // If the LHS is the result of AND'ing a value with a single bit bitmask,
512 // we don't have information about probabilities.
513 if (Instruction *LHS = dyn_cast<Instruction>(CI->getOperand(0)))
514 if (LHS->getOpcode() == Instruction::And)
515 if (ConstantInt *AndRHS = dyn_cast<ConstantInt>(LHS->getOperand(1)))
516 if (AndRHS->getUniqueInteger().isPowerOf2())
517 return false;
518
Jakub Staszak17af66a2011-07-31 03:27:24 +0000519 bool isProb;
Benjamin Kramer0ca1ad02011-09-04 23:53:04 +0000520 if (CV->isZero()) {
521 switch (CI->getPredicate()) {
522 case CmpInst::ICMP_EQ:
523 // X == 0 -> Unlikely
524 isProb = false;
525 break;
526 case CmpInst::ICMP_NE:
527 // X != 0 -> Likely
528 isProb = true;
529 break;
530 case CmpInst::ICMP_SLT:
531 // X < 0 -> Unlikely
532 isProb = false;
533 break;
534 case CmpInst::ICMP_SGT:
535 // X > 0 -> Likely
536 isProb = true;
537 break;
538 default:
539 return false;
540 }
541 } else if (CV->isOne() && CI->getPredicate() == CmpInst::ICMP_SLT) {
542 // InstCombine canonicalizes X <= 0 into X < 1.
543 // X <= 0 -> Unlikely
Jakub Staszak17af66a2011-07-31 03:27:24 +0000544 isProb = false;
Hal Finkel4d949302013-11-01 10:58:22 +0000545 } else if (CV->isAllOnesValue()) {
546 switch (CI->getPredicate()) {
547 case CmpInst::ICMP_EQ:
548 // X == -1 -> Unlikely
549 isProb = false;
550 break;
551 case CmpInst::ICMP_NE:
552 // X != -1 -> Likely
553 isProb = true;
554 break;
555 case CmpInst::ICMP_SGT:
556 // InstCombine canonicalizes X >= 0 into X > -1.
557 // X >= 0 -> Likely
558 isProb = true;
559 break;
560 default:
561 return false;
562 }
Benjamin Kramer0ca1ad02011-09-04 23:53:04 +0000563 } else {
Jakub Staszak17af66a2011-07-31 03:27:24 +0000564 return false;
Benjamin Kramer0ca1ad02011-09-04 23:53:04 +0000565 }
Jakub Staszak17af66a2011-07-31 03:27:24 +0000566
Manman Rencf104462012-08-24 18:14:27 +0000567 unsigned TakenIdx = 0, NonTakenIdx = 1;
Jakub Staszak17af66a2011-07-31 03:27:24 +0000568
569 if (!isProb)
Manman Rencf104462012-08-24 18:14:27 +0000570 std::swap(TakenIdx, NonTakenIdx);
Jakub Staszak17af66a2011-07-31 03:27:24 +0000571
Cong Houe93b8e12015-12-22 18:56:14 +0000572 BranchProbability TakenProb(ZH_TAKEN_WEIGHT,
573 ZH_TAKEN_WEIGHT + ZH_NONTAKEN_WEIGHT);
574 setEdgeProbability(BB, TakenIdx, TakenProb);
575 setEdgeProbability(BB, NonTakenIdx, TakenProb.getCompl());
Jakub Staszak17af66a2011-07-31 03:27:24 +0000576 return true;
577}
578
Mehdi Aminia7978772016-04-07 21:59:28 +0000579bool BranchProbabilityInfo::calcFloatingPointHeuristics(const BasicBlock *BB) {
580 const BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator());
Benjamin Kramer1e731a12011-10-21 20:12:47 +0000581 if (!BI || !BI->isConditional())
582 return false;
583
584 Value *Cond = BI->getCondition();
585 FCmpInst *FCmp = dyn_cast<FCmpInst>(Cond);
Benjamin Kramer606a50a2011-10-21 21:13:47 +0000586 if (!FCmp)
Benjamin Kramer1e731a12011-10-21 20:12:47 +0000587 return false;
588
Benjamin Kramer606a50a2011-10-21 21:13:47 +0000589 bool isProb;
590 if (FCmp->isEquality()) {
591 // f1 == f2 -> Unlikely
592 // f1 != f2 -> Likely
593 isProb = !FCmp->isTrueWhenEqual();
594 } else if (FCmp->getPredicate() == FCmpInst::FCMP_ORD) {
595 // !isnan -> Likely
596 isProb = true;
597 } else if (FCmp->getPredicate() == FCmpInst::FCMP_UNO) {
598 // isnan -> Unlikely
599 isProb = false;
600 } else {
601 return false;
602 }
603
Manman Rencf104462012-08-24 18:14:27 +0000604 unsigned TakenIdx = 0, NonTakenIdx = 1;
Benjamin Kramer1e731a12011-10-21 20:12:47 +0000605
Benjamin Kramer606a50a2011-10-21 21:13:47 +0000606 if (!isProb)
Manman Rencf104462012-08-24 18:14:27 +0000607 std::swap(TakenIdx, NonTakenIdx);
Benjamin Kramer1e731a12011-10-21 20:12:47 +0000608
Cong Houe93b8e12015-12-22 18:56:14 +0000609 BranchProbability TakenProb(FPH_TAKEN_WEIGHT,
610 FPH_TAKEN_WEIGHT + FPH_NONTAKEN_WEIGHT);
611 setEdgeProbability(BB, TakenIdx, TakenProb);
612 setEdgeProbability(BB, NonTakenIdx, TakenProb.getCompl());
Benjamin Kramer1e731a12011-10-21 20:12:47 +0000613 return true;
614}
Jakub Staszak17af66a2011-07-31 03:27:24 +0000615
Mehdi Aminia7978772016-04-07 21:59:28 +0000616bool BranchProbabilityInfo::calcInvokeHeuristics(const BasicBlock *BB) {
617 const InvokeInst *II = dyn_cast<InvokeInst>(BB->getTerminator());
Bill Wendlinge1c54262012-08-15 12:22:35 +0000618 if (!II)
619 return false;
620
Cong Houe93b8e12015-12-22 18:56:14 +0000621 BranchProbability TakenProb(IH_TAKEN_WEIGHT,
622 IH_TAKEN_WEIGHT + IH_NONTAKEN_WEIGHT);
623 setEdgeProbability(BB, 0 /*Index for Normal*/, TakenProb);
624 setEdgeProbability(BB, 1 /*Index for Unwind*/, TakenProb.getCompl());
Bill Wendlinge1c54262012-08-15 12:22:35 +0000625 return true;
626}
627
Pete Cooperb9d2e342015-05-28 19:43:06 +0000628void BranchProbabilityInfo::releaseMemory() {
Cong Houe93b8e12015-12-22 18:56:14 +0000629 Probs.clear();
Pete Cooperb9d2e342015-05-28 19:43:06 +0000630}
631
Cong Houab23bfb2015-07-15 22:48:29 +0000632void BranchProbabilityInfo::print(raw_ostream &OS) const {
Chandler Carruth1c8ace02011-10-23 21:21:50 +0000633 OS << "---- Branch Probabilities ----\n";
634 // We print the probabilities from the last function the analysis ran over,
635 // or the function it is currently running over.
636 assert(LastF && "Cannot print prior to running over a function");
Duncan P. N. Exon Smith5a82c912015-10-10 00:53:03 +0000637 for (const auto &BI : *LastF) {
638 for (succ_const_iterator SI = succ_begin(&BI), SE = succ_end(&BI); SI != SE;
639 ++SI) {
640 printEdgeProbability(OS << " ", &BI, *SI);
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000641 }
642 }
Chandler Carruth1c8ace02011-10-23 21:21:50 +0000643}
644
Jakub Staszakefd94c82011-07-29 19:30:00 +0000645bool BranchProbabilityInfo::
646isEdgeHot(const BasicBlock *Src, const BasicBlock *Dst) const {
Andrew Trick3d4e64b2011-06-11 01:05:22 +0000647 // Hot probability is at least 4/5 = 80%
Benjamin Kramer929f53f2011-10-23 11:19:14 +0000648 // FIXME: Compare against a static "hot" BranchProbability.
649 return getEdgeProbability(Src, Dst) > BranchProbability(4, 5);
Andrew Trick49371f32011-06-04 01:16:30 +0000650}
651
Mehdi Aminia7978772016-04-07 21:59:28 +0000652const BasicBlock *
653BranchProbabilityInfo::getHotSucc(const BasicBlock *BB) const {
Cong Houe93b8e12015-12-22 18:56:14 +0000654 auto MaxProb = BranchProbability::getZero();
Mehdi Aminia7978772016-04-07 21:59:28 +0000655 const BasicBlock *MaxSucc = nullptr;
Andrew Trick49371f32011-06-04 01:16:30 +0000656
Mehdi Aminia7978772016-04-07 21:59:28 +0000657 for (succ_const_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) {
658 const BasicBlock *Succ = *I;
Cong Houe93b8e12015-12-22 18:56:14 +0000659 auto Prob = getEdgeProbability(BB, Succ);
660 if (Prob > MaxProb) {
661 MaxProb = Prob;
Andrew Trick49371f32011-06-04 01:16:30 +0000662 MaxSucc = Succ;
663 }
664 }
665
Benjamin Kramer929f53f2011-10-23 11:19:14 +0000666 // Hot probability is at least 4/5 = 80%
Cong Houe93b8e12015-12-22 18:56:14 +0000667 if (MaxProb > BranchProbability(4, 5))
Andrew Trick49371f32011-06-04 01:16:30 +0000668 return MaxSucc;
669
Craig Topper9f008862014-04-15 04:59:12 +0000670 return nullptr;
Andrew Trick49371f32011-06-04 01:16:30 +0000671}
672
Cong Houe93b8e12015-12-22 18:56:14 +0000673/// Get the raw edge probability for the edge. If can't find it, return a
674/// default probability 1/N where N is the number of successors. Here an edge is
675/// specified using PredBlock and an
676/// index to the successors.
677BranchProbability
678BranchProbabilityInfo::getEdgeProbability(const BasicBlock *Src,
679 unsigned IndexInSuccessors) const {
680 auto I = Probs.find(std::make_pair(Src, IndexInSuccessors));
Andrew Trick49371f32011-06-04 01:16:30 +0000681
Cong Houe93b8e12015-12-22 18:56:14 +0000682 if (I != Probs.end())
Andrew Trick49371f32011-06-04 01:16:30 +0000683 return I->second;
684
Cong Houe93b8e12015-12-22 18:56:14 +0000685 return {1,
686 static_cast<uint32_t>(std::distance(succ_begin(Src), succ_end(Src)))};
Andrew Trick49371f32011-06-04 01:16:30 +0000687}
688
Cong Houd97c1002015-12-01 05:29:22 +0000689BranchProbability
690BranchProbabilityInfo::getEdgeProbability(const BasicBlock *Src,
691 succ_const_iterator Dst) const {
692 return getEdgeProbability(Src, Dst.getSuccessorIndex());
693}
694
Cong Houe93b8e12015-12-22 18:56:14 +0000695/// Get the raw edge probability calculated for the block pair. This returns the
696/// sum of all raw edge probabilities from Src to Dst.
697BranchProbability
698BranchProbabilityInfo::getEdgeProbability(const BasicBlock *Src,
699 const BasicBlock *Dst) const {
700 auto Prob = BranchProbability::getZero();
701 bool FoundProb = false;
702 for (succ_const_iterator I = succ_begin(Src), E = succ_end(Src); I != E; ++I)
703 if (*I == Dst) {
704 auto MapI = Probs.find(std::make_pair(Src, I.getSuccessorIndex()));
705 if (MapI != Probs.end()) {
706 FoundProb = true;
707 Prob += MapI->second;
708 }
709 }
710 uint32_t succ_num = std::distance(succ_begin(Src), succ_end(Src));
711 return FoundProb ? Prob : BranchProbability(1, succ_num);
712}
713
714/// Set the edge probability for a given edge specified by PredBlock and an
715/// index to the successors.
716void BranchProbabilityInfo::setEdgeProbability(const BasicBlock *Src,
717 unsigned IndexInSuccessors,
718 BranchProbability Prob) {
719 Probs[std::make_pair(Src, IndexInSuccessors)] = Prob;
Igor Laevskyee40d1e2016-07-15 14:31:16 +0000720 Handles.insert(BasicBlockCallbackVH(Src, this));
Cong Houe93b8e12015-12-22 18:56:14 +0000721 DEBUG(dbgs() << "set edge " << Src->getName() << " -> " << IndexInSuccessors
722 << " successor probability to " << Prob << "\n");
723}
724
Andrew Trick49371f32011-06-04 01:16:30 +0000725raw_ostream &
Chandler Carruth1c8ace02011-10-23 21:21:50 +0000726BranchProbabilityInfo::printEdgeProbability(raw_ostream &OS,
727 const BasicBlock *Src,
728 const BasicBlock *Dst) const {
Andrew Trick49371f32011-06-04 01:16:30 +0000729
Jakub Staszak12a43bd2011-06-16 20:22:37 +0000730 const BranchProbability Prob = getEdgeProbability(Src, Dst);
Benjamin Kramer1f97a5a2011-11-15 16:27:03 +0000731 OS << "edge " << Src->getName() << " -> " << Dst->getName()
Andrew Trick3d4e64b2011-06-11 01:05:22 +0000732 << " probability is " << Prob
733 << (isEdgeHot(Src, Dst) ? " [HOT edge]\n" : "\n");
Andrew Trick49371f32011-06-04 01:16:30 +0000734
735 return OS;
736}
Cong Houab23bfb2015-07-15 22:48:29 +0000737
Igor Laevskyee40d1e2016-07-15 14:31:16 +0000738void BranchProbabilityInfo::eraseBlock(const BasicBlock *BB) {
739 for (auto I = Probs.begin(), E = Probs.end(); I != E; ++I) {
740 auto Key = I->first;
741 if (Key.first == BB)
742 Probs.erase(Key);
743 }
744}
745
Mehdi Aminia7978772016-04-07 21:59:28 +0000746void BranchProbabilityInfo::calculate(const Function &F, const LoopInfo &LI) {
Cong Houab23bfb2015-07-15 22:48:29 +0000747 DEBUG(dbgs() << "---- Branch Probability Info : " << F.getName()
748 << " ----\n\n");
749 LastF = &F; // Store the last function we ran on for printing.
750 assert(PostDominatedByUnreachable.empty());
751 assert(PostDominatedByColdCall.empty());
752
753 // Walk the basic blocks in post-order so that we can build up state about
754 // the successors of a block iteratively.
755 for (auto BB : post_order(&F.getEntryBlock())) {
756 DEBUG(dbgs() << "Computing probabilities for " << BB->getName() << "\n");
Serguei Katkovecebc3d2017-04-12 05:42:14 +0000757 updatePostDominatedByUnreachable(BB);
758 updatePostDominatedByColdCall(BB);
Serguei Katkov11d9c4f2017-04-17 06:39:47 +0000759 // If there is no at least two successors, no sense to set probability.
760 if (BB->getTerminator()->getNumSuccessors() < 2)
761 continue;
Cong Houab23bfb2015-07-15 22:48:29 +0000762 if (calcMetadataWeights(BB))
763 continue;
Serguei Katkov2616bbb2017-04-17 04:33:04 +0000764 if (calcUnreachableHeuristics(BB))
765 continue;
Cong Houab23bfb2015-07-15 22:48:29 +0000766 if (calcColdCallHeuristics(BB))
767 continue;
768 if (calcLoopBranchHeuristics(BB, LI))
769 continue;
770 if (calcPointerHeuristics(BB))
771 continue;
772 if (calcZeroHeuristics(BB))
773 continue;
774 if (calcFloatingPointHeuristics(BB))
775 continue;
776 calcInvokeHeuristics(BB);
777 }
778
779 PostDominatedByUnreachable.clear();
780 PostDominatedByColdCall.clear();
781}
782
783void BranchProbabilityInfoWrapperPass::getAnalysisUsage(
784 AnalysisUsage &AU) const {
785 AU.addRequired<LoopInfoWrapperPass>();
786 AU.setPreservesAll();
787}
788
789bool BranchProbabilityInfoWrapperPass::runOnFunction(Function &F) {
790 const LoopInfo &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
791 BPI.calculate(F, LI);
792 return false;
793}
794
795void BranchProbabilityInfoWrapperPass::releaseMemory() { BPI.releaseMemory(); }
796
797void BranchProbabilityInfoWrapperPass::print(raw_ostream &OS,
798 const Module *) const {
799 BPI.print(OS);
800}
Xinliang David Li6e5dd412016-05-05 02:59:57 +0000801
Chandler Carruthdab4eae2016-11-23 17:53:26 +0000802AnalysisKey BranchProbabilityAnalysis::Key;
Xinliang David Li6e5dd412016-05-05 02:59:57 +0000803BranchProbabilityInfo
Sean Silva36e0d012016-08-09 00:28:15 +0000804BranchProbabilityAnalysis::run(Function &F, FunctionAnalysisManager &AM) {
Xinliang David Li6e5dd412016-05-05 02:59:57 +0000805 BranchProbabilityInfo BPI;
806 BPI.calculate(F, AM.getResult<LoopAnalysis>(F));
807 return BPI;
808}
809
810PreservedAnalyses
Sean Silva36e0d012016-08-09 00:28:15 +0000811BranchProbabilityPrinterPass::run(Function &F, FunctionAnalysisManager &AM) {
Xinliang David Li6e5dd412016-05-05 02:59:57 +0000812 OS << "Printing analysis results of BPI for function "
813 << "'" << F.getName() << "':"
814 << "\n";
815 AM.getResult<BranchProbabilityAnalysis>(F).print(OS);
816 return PreservedAnalyses::all();
817}