Bill Wendling | e1c5426 | 2012-08-15 12:22:35 +0000 | [diff] [blame] | 1 | //===-- BranchProbabilityInfo.cpp - Branch Probability Analysis -----------===// |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // Loops should be simplified before this analysis. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 14 | #include "llvm/Analysis/BranchProbabilityInfo.h" |
| 15 | #include "llvm/ADT/PostOrderIterator.h" |
| 16 | #include "llvm/Analysis/LoopInfo.h" |
Chandler Carruth | 1305dc3 | 2014-03-04 11:45:46 +0000 | [diff] [blame] | 17 | #include "llvm/IR/CFG.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 18 | #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 Trick | 3d4e64b | 2011-06-11 01:05:22 +0000 | [diff] [blame] | 23 | #include "llvm/Support/Debug.h" |
Benjamin Kramer | 16132e6 | 2015-03-23 18:07:13 +0000 | [diff] [blame] | 24 | #include "llvm/Support/raw_ostream.h" |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 25 | |
| 26 | using namespace llvm; |
| 27 | |
Chandler Carruth | f1221bd | 2014-04-22 02:48:03 +0000 | [diff] [blame] | 28 | #define DEBUG_TYPE "branch-prob" |
| 29 | |
Cong Hou | ab23bfb | 2015-07-15 22:48:29 +0000 | [diff] [blame] | 30 | INITIALIZE_PASS_BEGIN(BranchProbabilityInfoWrapperPass, "branch-prob", |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 31 | "Branch Probability Analysis", false, true) |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 32 | INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass) |
Cong Hou | ab23bfb | 2015-07-15 22:48:29 +0000 | [diff] [blame] | 33 | INITIALIZE_PASS_END(BranchProbabilityInfoWrapperPass, "branch-prob", |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 34 | "Branch Probability Analysis", false, true) |
| 35 | |
Cong Hou | ab23bfb | 2015-07-15 22:48:29 +0000 | [diff] [blame] | 36 | char BranchProbabilityInfoWrapperPass::ID = 0; |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 37 | |
Chandler Carruth | 7a0094a | 2011-10-24 01:40:45 +0000 | [diff] [blame] | 38 | // 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 |
| 58 | static const uint32_t LBH_TAKEN_WEIGHT = 124; |
| 59 | static const uint32_t LBH_NONTAKEN_WEIGHT = 4; |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 60 | |
Chandler Carruth | 7111f45 | 2011-10-24 12:01:08 +0000 | [diff] [blame] | 61 | /// \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. |
| 65 | static 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 Carruth | b024aa0 | 2011-12-22 09:26:37 +0000 | [diff] [blame] | 71 | /// taken. Set the weight to an absurdly high value so that nested loops don't |
| 72 | /// easily subsume it. |
| 73 | static const uint32_t UR_NONTAKEN_WEIGHT = 1024*1024 - 1; |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 74 | |
Diego Novillo | c639953 | 2013-05-24 12:26:52 +0000 | [diff] [blame] | 75 | /// \brief Weight for a branch taken going into a cold block. |
| 76 | /// |
| 77 | /// This is the weight for a branch taken toward a block marked |
| 78 | /// cold. A block is marked cold if it's postdominated by a |
| 79 | /// block containing a call to a cold function. Cold functions |
| 80 | /// are those marked with attribute 'cold'. |
| 81 | static const uint32_t CC_TAKEN_WEIGHT = 4; |
| 82 | |
| 83 | /// \brief Weight for a branch not-taken into a cold block. |
| 84 | /// |
| 85 | /// This is the weight for a branch not taken toward a block marked |
| 86 | /// cold. |
| 87 | static const uint32_t CC_NONTAKEN_WEIGHT = 64; |
| 88 | |
Chandler Carruth | 7a0094a | 2011-10-24 01:40:45 +0000 | [diff] [blame] | 89 | static const uint32_t PH_TAKEN_WEIGHT = 20; |
| 90 | static const uint32_t PH_NONTAKEN_WEIGHT = 12; |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 91 | |
Chandler Carruth | 7a0094a | 2011-10-24 01:40:45 +0000 | [diff] [blame] | 92 | static const uint32_t ZH_TAKEN_WEIGHT = 20; |
| 93 | static const uint32_t ZH_NONTAKEN_WEIGHT = 12; |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 94 | |
Chandler Carruth | 7a0094a | 2011-10-24 01:40:45 +0000 | [diff] [blame] | 95 | static const uint32_t FPH_TAKEN_WEIGHT = 20; |
| 96 | static const uint32_t FPH_NONTAKEN_WEIGHT = 12; |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 97 | |
Bill Wendling | e1c5426 | 2012-08-15 12:22:35 +0000 | [diff] [blame] | 98 | /// \brief Invoke-terminating normal branch taken weight |
| 99 | /// |
| 100 | /// This is the weight for branching to the normal destination of an invoke |
| 101 | /// instruction. We expect this to happen most of the time. Set the weight to an |
| 102 | /// absurdly high value so that nested loops subsume it. |
| 103 | static const uint32_t IH_TAKEN_WEIGHT = 1024 * 1024 - 1; |
| 104 | |
| 105 | /// \brief Invoke-terminating normal branch not-taken weight. |
| 106 | /// |
| 107 | /// This is the weight for branching to the unwind destination of an invoke |
| 108 | /// instruction. This is essentially never taken. |
| 109 | static const uint32_t IH_NONTAKEN_WEIGHT = 1; |
| 110 | |
Chandler Carruth | 7111f45 | 2011-10-24 12:01:08 +0000 | [diff] [blame] | 111 | /// \brief Calculate edge weights for successors lead to unreachable. |
| 112 | /// |
| 113 | /// Predict that a successor which leads necessarily to an |
| 114 | /// unreachable-terminated block as extremely unlikely. |
Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 115 | bool BranchProbabilityInfo::calcUnreachableHeuristics(const BasicBlock *BB) { |
| 116 | const TerminatorInst *TI = BB->getTerminator(); |
Chandler Carruth | 7111f45 | 2011-10-24 12:01:08 +0000 | [diff] [blame] | 117 | if (TI->getNumSuccessors() == 0) { |
Sanjoy Das | 432c1c3 | 2016-04-18 19:01:28 +0000 | [diff] [blame] | 118 | if (isa<UnreachableInst>(TI) || |
| 119 | // If this block is terminated by a call to |
| 120 | // @llvm.experimental.deoptimize then treat it like an unreachable since |
| 121 | // the @llvm.experimental.deoptimize call is expected to practically |
| 122 | // never execute. |
| 123 | BB->getTerminatingDeoptimizeCall()) |
Chandler Carruth | 7111f45 | 2011-10-24 12:01:08 +0000 | [diff] [blame] | 124 | PostDominatedByUnreachable.insert(BB); |
| 125 | return false; |
| 126 | } |
| 127 | |
Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 128 | SmallVector<unsigned, 4> UnreachableEdges; |
| 129 | SmallVector<unsigned, 4> ReachableEdges; |
Chandler Carruth | 7111f45 | 2011-10-24 12:01:08 +0000 | [diff] [blame] | 130 | |
Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 131 | for (succ_const_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) { |
Chandler Carruth | 7111f45 | 2011-10-24 12:01:08 +0000 | [diff] [blame] | 132 | if (PostDominatedByUnreachable.count(*I)) |
Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 133 | UnreachableEdges.push_back(I.getSuccessorIndex()); |
Chandler Carruth | 7111f45 | 2011-10-24 12:01:08 +0000 | [diff] [blame] | 134 | else |
Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 135 | ReachableEdges.push_back(I.getSuccessorIndex()); |
Chandler Carruth | 7111f45 | 2011-10-24 12:01:08 +0000 | [diff] [blame] | 136 | } |
| 137 | |
| 138 | // If all successors are in the set of blocks post-dominated by unreachable, |
| 139 | // this block is too. |
| 140 | if (UnreachableEdges.size() == TI->getNumSuccessors()) |
| 141 | PostDominatedByUnreachable.insert(BB); |
| 142 | |
| 143 | // Skip probabilities if this block has a single successor or if all were |
| 144 | // reachable. |
| 145 | if (TI->getNumSuccessors() == 1 || UnreachableEdges.empty()) |
| 146 | return false; |
| 147 | |
Jun Bum Lim | a23e5f7 | 2015-12-21 22:00:51 +0000 | [diff] [blame] | 148 | // If the terminator is an InvokeInst, check only the normal destination block |
| 149 | // as the unwind edge of InvokeInst is also very unlikely taken. |
| 150 | if (auto *II = dyn_cast<InvokeInst>(TI)) |
| 151 | if (PostDominatedByUnreachable.count(II->getNormalDest())) { |
| 152 | PostDominatedByUnreachable.insert(BB); |
| 153 | // Return false here so that edge weights for InvokeInst could be decided |
| 154 | // in calcInvokeHeuristics(). |
| 155 | return false; |
| 156 | } |
| 157 | |
Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 158 | if (ReachableEdges.empty()) { |
| 159 | BranchProbability Prob(1, UnreachableEdges.size()); |
| 160 | for (unsigned SuccIdx : UnreachableEdges) |
| 161 | setEdgeProbability(BB, SuccIdx, Prob); |
Chandler Carruth | 7111f45 | 2011-10-24 12:01:08 +0000 | [diff] [blame] | 162 | return true; |
Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | BranchProbability UnreachableProb(UR_TAKEN_WEIGHT, |
| 166 | (UR_TAKEN_WEIGHT + UR_NONTAKEN_WEIGHT) * |
| 167 | UnreachableEdges.size()); |
| 168 | BranchProbability ReachableProb(UR_NONTAKEN_WEIGHT, |
| 169 | (UR_TAKEN_WEIGHT + UR_NONTAKEN_WEIGHT) * |
| 170 | ReachableEdges.size()); |
| 171 | |
| 172 | for (unsigned SuccIdx : UnreachableEdges) |
| 173 | setEdgeProbability(BB, SuccIdx, UnreachableProb); |
| 174 | for (unsigned SuccIdx : ReachableEdges) |
| 175 | setEdgeProbability(BB, SuccIdx, ReachableProb); |
Chandler Carruth | 7111f45 | 2011-10-24 12:01:08 +0000 | [diff] [blame] | 176 | |
| 177 | return true; |
| 178 | } |
| 179 | |
Chandler Carruth | d27a7a9 | 2011-10-19 10:30:30 +0000 | [diff] [blame] | 180 | // Propagate existing explicit probabilities from either profile data or |
| 181 | // 'expect' intrinsic processing. |
Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 182 | bool BranchProbabilityInfo::calcMetadataWeights(const BasicBlock *BB) { |
| 183 | const TerminatorInst *TI = BB->getTerminator(); |
Chandler Carruth | deac50c | 2011-10-19 10:32:19 +0000 | [diff] [blame] | 184 | if (TI->getNumSuccessors() == 1) |
| 185 | return false; |
| 186 | if (!isa<BranchInst>(TI) && !isa<SwitchInst>(TI)) |
Chandler Carruth | d27a7a9 | 2011-10-19 10:30:30 +0000 | [diff] [blame] | 187 | return false; |
| 188 | |
Duncan P. N. Exon Smith | de36e80 | 2014-11-11 21:30:22 +0000 | [diff] [blame] | 189 | MDNode *WeightsNode = TI->getMetadata(LLVMContext::MD_prof); |
Chandler Carruth | deac50c | 2011-10-19 10:32:19 +0000 | [diff] [blame] | 190 | if (!WeightsNode) |
Chandler Carruth | d27a7a9 | 2011-10-19 10:30:30 +0000 | [diff] [blame] | 191 | return false; |
| 192 | |
Diego Novillo | de5b801 | 2015-05-07 17:22:06 +0000 | [diff] [blame] | 193 | // Check that the number of successors is manageable. |
| 194 | assert(TI->getNumSuccessors() < UINT32_MAX && "Too many successors"); |
| 195 | |
Chandler Carruth | deac50c | 2011-10-19 10:32:19 +0000 | [diff] [blame] | 196 | // Ensure there are weights for all of the successors. Note that the first |
| 197 | // operand to the metadata node is a name, not a weight. |
| 198 | if (WeightsNode->getNumOperands() != TI->getNumSuccessors() + 1) |
Chandler Carruth | d27a7a9 | 2011-10-19 10:30:30 +0000 | [diff] [blame] | 199 | return false; |
| 200 | |
Diego Novillo | de5b801 | 2015-05-07 17:22:06 +0000 | [diff] [blame] | 201 | // Build up the final weights that will be used in a temporary buffer. |
| 202 | // Compute the sum of all weights to later decide whether they need to |
| 203 | // be scaled to fit in 32 bits. |
| 204 | uint64_t WeightSum = 0; |
Chandler Carruth | deac50c | 2011-10-19 10:32:19 +0000 | [diff] [blame] | 205 | SmallVector<uint32_t, 2> Weights; |
| 206 | Weights.reserve(TI->getNumSuccessors()); |
| 207 | for (unsigned i = 1, e = WeightsNode->getNumOperands(); i != e; ++i) { |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 208 | ConstantInt *Weight = |
| 209 | mdconst::dyn_extract<ConstantInt>(WeightsNode->getOperand(i)); |
Chandler Carruth | deac50c | 2011-10-19 10:32:19 +0000 | [diff] [blame] | 210 | if (!Weight) |
| 211 | return false; |
Diego Novillo | de5b801 | 2015-05-07 17:22:06 +0000 | [diff] [blame] | 212 | assert(Weight->getValue().getActiveBits() <= 32 && |
| 213 | "Too many bits for uint32_t"); |
| 214 | Weights.push_back(Weight->getZExtValue()); |
| 215 | WeightSum += Weights.back(); |
Chandler Carruth | deac50c | 2011-10-19 10:32:19 +0000 | [diff] [blame] | 216 | } |
| 217 | assert(Weights.size() == TI->getNumSuccessors() && "Checked above"); |
Diego Novillo | de5b801 | 2015-05-07 17:22:06 +0000 | [diff] [blame] | 218 | |
| 219 | // If the sum of weights does not fit in 32 bits, scale every weight down |
| 220 | // accordingly. |
| 221 | uint64_t ScalingFactor = |
| 222 | (WeightSum > UINT32_MAX) ? WeightSum / UINT32_MAX + 1 : 1; |
| 223 | |
| 224 | WeightSum = 0; |
| 225 | for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i) { |
Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 226 | Weights[i] /= ScalingFactor; |
| 227 | WeightSum += Weights[i]; |
Diego Novillo | de5b801 | 2015-05-07 17:22:06 +0000 | [diff] [blame] | 228 | } |
Cong Hou | 6a2c71a | 2015-12-22 23:45:55 +0000 | [diff] [blame] | 229 | |
| 230 | if (WeightSum == 0) { |
| 231 | for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i) |
| 232 | setEdgeProbability(BB, i, {1, e}); |
| 233 | } else { |
| 234 | for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i) |
| 235 | setEdgeProbability(BB, i, {Weights[i], static_cast<uint32_t>(WeightSum)}); |
| 236 | } |
Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 237 | |
Diego Novillo | de5b801 | 2015-05-07 17:22:06 +0000 | [diff] [blame] | 238 | assert(WeightSum <= UINT32_MAX && |
| 239 | "Expected weights to scale down to 32 bits"); |
Chandler Carruth | d27a7a9 | 2011-10-19 10:30:30 +0000 | [diff] [blame] | 240 | |
| 241 | return true; |
| 242 | } |
| 243 | |
Diego Novillo | c639953 | 2013-05-24 12:26:52 +0000 | [diff] [blame] | 244 | /// \brief Calculate edge weights for edges leading to cold blocks. |
| 245 | /// |
| 246 | /// A cold block is one post-dominated by a block with a call to a |
| 247 | /// cold function. Those edges are unlikely to be taken, so we give |
| 248 | /// them relatively low weight. |
| 249 | /// |
| 250 | /// Return true if we could compute the weights for cold edges. |
| 251 | /// Return false, otherwise. |
Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 252 | bool BranchProbabilityInfo::calcColdCallHeuristics(const BasicBlock *BB) { |
| 253 | const TerminatorInst *TI = BB->getTerminator(); |
Diego Novillo | c639953 | 2013-05-24 12:26:52 +0000 | [diff] [blame] | 254 | if (TI->getNumSuccessors() == 0) |
| 255 | return false; |
| 256 | |
| 257 | // Determine which successors are post-dominated by a cold block. |
| 258 | SmallVector<unsigned, 4> ColdEdges; |
Diego Novillo | c639953 | 2013-05-24 12:26:52 +0000 | [diff] [blame] | 259 | SmallVector<unsigned, 4> NormalEdges; |
Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 260 | for (succ_const_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) |
Diego Novillo | c639953 | 2013-05-24 12:26:52 +0000 | [diff] [blame] | 261 | if (PostDominatedByColdCall.count(*I)) |
| 262 | ColdEdges.push_back(I.getSuccessorIndex()); |
| 263 | else |
| 264 | NormalEdges.push_back(I.getSuccessorIndex()); |
| 265 | |
| 266 | // If all successors are in the set of blocks post-dominated by cold calls, |
| 267 | // this block is in the set post-dominated by cold calls. |
| 268 | if (ColdEdges.size() == TI->getNumSuccessors()) |
| 269 | PostDominatedByColdCall.insert(BB); |
| 270 | else { |
| 271 | // Otherwise, if the block itself contains a cold function, add it to the |
| 272 | // set of blocks postdominated by a cold call. |
| 273 | assert(!PostDominatedByColdCall.count(BB)); |
Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 274 | for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
| 275 | if (const CallInst *CI = dyn_cast<CallInst>(I)) |
Diego Novillo | c639953 | 2013-05-24 12:26:52 +0000 | [diff] [blame] | 276 | if (CI->hasFnAttr(Attribute::Cold)) { |
| 277 | PostDominatedByColdCall.insert(BB); |
| 278 | break; |
| 279 | } |
| 280 | } |
| 281 | |
Jun Bum Lim | 3822939 | 2016-09-23 17:26:14 +0000 | [diff] [blame] | 282 | if (auto *II = dyn_cast<InvokeInst>(TI)) { |
| 283 | // If the terminator is an InvokeInst, consider only the normal destination |
| 284 | // block. |
| 285 | if (PostDominatedByColdCall.count(II->getNormalDest())) |
| 286 | PostDominatedByColdCall.insert(BB); |
| 287 | // Return false here so that edge weights for InvokeInst could be decided |
| 288 | // in calcInvokeHeuristics(). |
| 289 | return false; |
| 290 | } |
| 291 | |
Diego Novillo | c639953 | 2013-05-24 12:26:52 +0000 | [diff] [blame] | 292 | // Skip probabilities if this block has a single successor. |
| 293 | if (TI->getNumSuccessors() == 1 || ColdEdges.empty()) |
| 294 | return false; |
| 295 | |
Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 296 | if (NormalEdges.empty()) { |
| 297 | BranchProbability Prob(1, ColdEdges.size()); |
| 298 | for (unsigned SuccIdx : ColdEdges) |
| 299 | setEdgeProbability(BB, SuccIdx, Prob); |
Diego Novillo | c639953 | 2013-05-24 12:26:52 +0000 | [diff] [blame] | 300 | return true; |
Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 301 | } |
| 302 | |
| 303 | BranchProbability ColdProb(CC_TAKEN_WEIGHT, |
| 304 | (CC_TAKEN_WEIGHT + CC_NONTAKEN_WEIGHT) * |
| 305 | ColdEdges.size()); |
| 306 | BranchProbability NormalProb(CC_NONTAKEN_WEIGHT, |
| 307 | (CC_TAKEN_WEIGHT + CC_NONTAKEN_WEIGHT) * |
| 308 | NormalEdges.size()); |
| 309 | |
| 310 | for (unsigned SuccIdx : ColdEdges) |
| 311 | setEdgeProbability(BB, SuccIdx, ColdProb); |
| 312 | for (unsigned SuccIdx : NormalEdges) |
| 313 | setEdgeProbability(BB, SuccIdx, NormalProb); |
Diego Novillo | c639953 | 2013-05-24 12:26:52 +0000 | [diff] [blame] | 314 | |
| 315 | return true; |
| 316 | } |
| 317 | |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 318 | // Calculate Edge Weights using "Pointer Heuristics". Predict a comparsion |
| 319 | // between two pointer or pointer and NULL will fail. |
Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 320 | bool BranchProbabilityInfo::calcPointerHeuristics(const BasicBlock *BB) { |
| 321 | const BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator()); |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 322 | if (!BI || !BI->isConditional()) |
Jakub Staszak | d07b2e1 | 2011-07-28 21:45:07 +0000 | [diff] [blame] | 323 | return false; |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 324 | |
| 325 | Value *Cond = BI->getCondition(); |
| 326 | ICmpInst *CI = dyn_cast<ICmpInst>(Cond); |
Jakub Staszak | abb236f | 2011-07-15 20:51:06 +0000 | [diff] [blame] | 327 | if (!CI || !CI->isEquality()) |
Jakub Staszak | d07b2e1 | 2011-07-28 21:45:07 +0000 | [diff] [blame] | 328 | return false; |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 329 | |
| 330 | Value *LHS = CI->getOperand(0); |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 331 | |
| 332 | if (!LHS->getType()->isPointerTy()) |
Jakub Staszak | d07b2e1 | 2011-07-28 21:45:07 +0000 | [diff] [blame] | 333 | return false; |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 334 | |
Nick Lewycky | 75b2053 | 2011-06-04 02:07:10 +0000 | [diff] [blame] | 335 | assert(CI->getOperand(1)->getType()->isPointerTy()); |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 336 | |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 337 | // p != 0 -> isProb = true |
| 338 | // p == 0 -> isProb = false |
| 339 | // p != q -> isProb = true |
| 340 | // p == q -> isProb = false; |
Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 341 | unsigned TakenIdx = 0, NonTakenIdx = 1; |
Jakub Staszak | abb236f | 2011-07-15 20:51:06 +0000 | [diff] [blame] | 342 | bool isProb = CI->getPredicate() == ICmpInst::ICMP_NE; |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 343 | if (!isProb) |
Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 344 | std::swap(TakenIdx, NonTakenIdx); |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 345 | |
Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 346 | BranchProbability TakenProb(PH_TAKEN_WEIGHT, |
| 347 | PH_TAKEN_WEIGHT + PH_NONTAKEN_WEIGHT); |
| 348 | setEdgeProbability(BB, TakenIdx, TakenProb); |
| 349 | setEdgeProbability(BB, NonTakenIdx, TakenProb.getCompl()); |
Jakub Staszak | d07b2e1 | 2011-07-28 21:45:07 +0000 | [diff] [blame] | 350 | return true; |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 351 | } |
| 352 | |
| 353 | // Calculate Edge Weights using "Loop Branch Heuristics". Predict backedges |
| 354 | // as taken, exiting edges as not-taken. |
Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 355 | bool BranchProbabilityInfo::calcLoopBranchHeuristics(const BasicBlock *BB, |
Cong Hou | ab23bfb | 2015-07-15 22:48:29 +0000 | [diff] [blame] | 356 | const LoopInfo &LI) { |
| 357 | Loop *L = LI.getLoopFor(BB); |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 358 | if (!L) |
Jakub Staszak | d07b2e1 | 2011-07-28 21:45:07 +0000 | [diff] [blame] | 359 | return false; |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 360 | |
Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 361 | SmallVector<unsigned, 8> BackEdges; |
| 362 | SmallVector<unsigned, 8> ExitingEdges; |
| 363 | SmallVector<unsigned, 8> InEdges; // Edges from header to the loop. |
Jakub Staszak | bcb3c65 | 2011-07-28 21:33:46 +0000 | [diff] [blame] | 364 | |
Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 365 | for (succ_const_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) { |
Chandler Carruth | 32f46e7 | 2011-10-25 09:47:41 +0000 | [diff] [blame] | 366 | if (!L->contains(*I)) |
Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 367 | ExitingEdges.push_back(I.getSuccessorIndex()); |
Chandler Carruth | 32f46e7 | 2011-10-25 09:47:41 +0000 | [diff] [blame] | 368 | else if (L->getHeader() == *I) |
Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 369 | BackEdges.push_back(I.getSuccessorIndex()); |
Chandler Carruth | 32f46e7 | 2011-10-25 09:47:41 +0000 | [diff] [blame] | 370 | else |
Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 371 | InEdges.push_back(I.getSuccessorIndex()); |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 372 | } |
| 373 | |
Akira Hatanaka | 5638b89 | 2014-04-14 16:56:19 +0000 | [diff] [blame] | 374 | if (BackEdges.empty() && ExitingEdges.empty()) |
| 375 | return false; |
| 376 | |
Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 377 | // Collect the sum of probabilities of back-edges/in-edges/exiting-edges, and |
| 378 | // normalize them so that they sum up to one. |
Benjamin Kramer | 1d67ac5 | 2016-06-17 13:15:10 +0000 | [diff] [blame] | 379 | BranchProbability Probs[] = {BranchProbability::getZero(), |
| 380 | BranchProbability::getZero(), |
| 381 | BranchProbability::getZero()}; |
Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 382 | unsigned Denom = (BackEdges.empty() ? 0 : LBH_TAKEN_WEIGHT) + |
| 383 | (InEdges.empty() ? 0 : LBH_TAKEN_WEIGHT) + |
| 384 | (ExitingEdges.empty() ? 0 : LBH_NONTAKEN_WEIGHT); |
| 385 | if (!BackEdges.empty()) |
| 386 | Probs[0] = BranchProbability(LBH_TAKEN_WEIGHT, Denom); |
| 387 | if (!InEdges.empty()) |
| 388 | Probs[1] = BranchProbability(LBH_TAKEN_WEIGHT, Denom); |
| 389 | if (!ExitingEdges.empty()) |
| 390 | Probs[2] = BranchProbability(LBH_NONTAKEN_WEIGHT, Denom); |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 391 | |
Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 392 | if (uint32_t numBackEdges = BackEdges.size()) { |
| 393 | auto Prob = Probs[0] / numBackEdges; |
| 394 | for (unsigned SuccIdx : BackEdges) |
| 395 | setEdgeProbability(BB, SuccIdx, Prob); |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 396 | } |
| 397 | |
Jakub Staszak | bcb3c65 | 2011-07-28 21:33:46 +0000 | [diff] [blame] | 398 | if (uint32_t numInEdges = InEdges.size()) { |
Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 399 | auto Prob = Probs[1] / numInEdges; |
| 400 | for (unsigned SuccIdx : InEdges) |
| 401 | setEdgeProbability(BB, SuccIdx, Prob); |
Jakub Staszak | bcb3c65 | 2011-07-28 21:33:46 +0000 | [diff] [blame] | 402 | } |
| 403 | |
Chandler Carruth | 32f46e7 | 2011-10-25 09:47:41 +0000 | [diff] [blame] | 404 | if (uint32_t numExitingEdges = ExitingEdges.size()) { |
Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 405 | auto Prob = Probs[2] / numExitingEdges; |
| 406 | for (unsigned SuccIdx : ExitingEdges) |
| 407 | setEdgeProbability(BB, SuccIdx, Prob); |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 408 | } |
Jakub Staszak | d07b2e1 | 2011-07-28 21:45:07 +0000 | [diff] [blame] | 409 | |
| 410 | return true; |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 411 | } |
| 412 | |
Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 413 | bool BranchProbabilityInfo::calcZeroHeuristics(const BasicBlock *BB) { |
| 414 | const BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator()); |
Jakub Staszak | 17af66a | 2011-07-31 03:27:24 +0000 | [diff] [blame] | 415 | if (!BI || !BI->isConditional()) |
| 416 | return false; |
| 417 | |
| 418 | Value *Cond = BI->getCondition(); |
| 419 | ICmpInst *CI = dyn_cast<ICmpInst>(Cond); |
| 420 | if (!CI) |
| 421 | return false; |
| 422 | |
Jakub Staszak | 17af66a | 2011-07-31 03:27:24 +0000 | [diff] [blame] | 423 | Value *RHS = CI->getOperand(1); |
Jakub Staszak | bfb1ae2 | 2011-07-31 04:47:20 +0000 | [diff] [blame] | 424 | ConstantInt *CV = dyn_cast<ConstantInt>(RHS); |
Benjamin Kramer | 0ca1ad0 | 2011-09-04 23:53:04 +0000 | [diff] [blame] | 425 | if (!CV) |
Jakub Staszak | 17af66a | 2011-07-31 03:27:24 +0000 | [diff] [blame] | 426 | return false; |
| 427 | |
Daniel Jasper | a73f3d5 | 2015-04-15 06:24:07 +0000 | [diff] [blame] | 428 | // If the LHS is the result of AND'ing a value with a single bit bitmask, |
| 429 | // we don't have information about probabilities. |
| 430 | if (Instruction *LHS = dyn_cast<Instruction>(CI->getOperand(0))) |
| 431 | if (LHS->getOpcode() == Instruction::And) |
| 432 | if (ConstantInt *AndRHS = dyn_cast<ConstantInt>(LHS->getOperand(1))) |
| 433 | if (AndRHS->getUniqueInteger().isPowerOf2()) |
| 434 | return false; |
| 435 | |
Jakub Staszak | 17af66a | 2011-07-31 03:27:24 +0000 | [diff] [blame] | 436 | bool isProb; |
Benjamin Kramer | 0ca1ad0 | 2011-09-04 23:53:04 +0000 | [diff] [blame] | 437 | if (CV->isZero()) { |
| 438 | switch (CI->getPredicate()) { |
| 439 | case CmpInst::ICMP_EQ: |
| 440 | // X == 0 -> Unlikely |
| 441 | isProb = false; |
| 442 | break; |
| 443 | case CmpInst::ICMP_NE: |
| 444 | // X != 0 -> Likely |
| 445 | isProb = true; |
| 446 | break; |
| 447 | case CmpInst::ICMP_SLT: |
| 448 | // X < 0 -> Unlikely |
| 449 | isProb = false; |
| 450 | break; |
| 451 | case CmpInst::ICMP_SGT: |
| 452 | // X > 0 -> Likely |
| 453 | isProb = true; |
| 454 | break; |
| 455 | default: |
| 456 | return false; |
| 457 | } |
| 458 | } else if (CV->isOne() && CI->getPredicate() == CmpInst::ICMP_SLT) { |
| 459 | // InstCombine canonicalizes X <= 0 into X < 1. |
| 460 | // X <= 0 -> Unlikely |
Jakub Staszak | 17af66a | 2011-07-31 03:27:24 +0000 | [diff] [blame] | 461 | isProb = false; |
Hal Finkel | 4d94930 | 2013-11-01 10:58:22 +0000 | [diff] [blame] | 462 | } else if (CV->isAllOnesValue()) { |
| 463 | switch (CI->getPredicate()) { |
| 464 | case CmpInst::ICMP_EQ: |
| 465 | // X == -1 -> Unlikely |
| 466 | isProb = false; |
| 467 | break; |
| 468 | case CmpInst::ICMP_NE: |
| 469 | // X != -1 -> Likely |
| 470 | isProb = true; |
| 471 | break; |
| 472 | case CmpInst::ICMP_SGT: |
| 473 | // InstCombine canonicalizes X >= 0 into X > -1. |
| 474 | // X >= 0 -> Likely |
| 475 | isProb = true; |
| 476 | break; |
| 477 | default: |
| 478 | return false; |
| 479 | } |
Benjamin Kramer | 0ca1ad0 | 2011-09-04 23:53:04 +0000 | [diff] [blame] | 480 | } else { |
Jakub Staszak | 17af66a | 2011-07-31 03:27:24 +0000 | [diff] [blame] | 481 | return false; |
Benjamin Kramer | 0ca1ad0 | 2011-09-04 23:53:04 +0000 | [diff] [blame] | 482 | } |
Jakub Staszak | 17af66a | 2011-07-31 03:27:24 +0000 | [diff] [blame] | 483 | |
Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 484 | unsigned TakenIdx = 0, NonTakenIdx = 1; |
Jakub Staszak | 17af66a | 2011-07-31 03:27:24 +0000 | [diff] [blame] | 485 | |
| 486 | if (!isProb) |
Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 487 | std::swap(TakenIdx, NonTakenIdx); |
Jakub Staszak | 17af66a | 2011-07-31 03:27:24 +0000 | [diff] [blame] | 488 | |
Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 489 | BranchProbability TakenProb(ZH_TAKEN_WEIGHT, |
| 490 | ZH_TAKEN_WEIGHT + ZH_NONTAKEN_WEIGHT); |
| 491 | setEdgeProbability(BB, TakenIdx, TakenProb); |
| 492 | setEdgeProbability(BB, NonTakenIdx, TakenProb.getCompl()); |
Jakub Staszak | 17af66a | 2011-07-31 03:27:24 +0000 | [diff] [blame] | 493 | return true; |
| 494 | } |
| 495 | |
Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 496 | bool BranchProbabilityInfo::calcFloatingPointHeuristics(const BasicBlock *BB) { |
| 497 | const BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator()); |
Benjamin Kramer | 1e731a1 | 2011-10-21 20:12:47 +0000 | [diff] [blame] | 498 | if (!BI || !BI->isConditional()) |
| 499 | return false; |
| 500 | |
| 501 | Value *Cond = BI->getCondition(); |
| 502 | FCmpInst *FCmp = dyn_cast<FCmpInst>(Cond); |
Benjamin Kramer | 606a50a | 2011-10-21 21:13:47 +0000 | [diff] [blame] | 503 | if (!FCmp) |
Benjamin Kramer | 1e731a1 | 2011-10-21 20:12:47 +0000 | [diff] [blame] | 504 | return false; |
| 505 | |
Benjamin Kramer | 606a50a | 2011-10-21 21:13:47 +0000 | [diff] [blame] | 506 | bool isProb; |
| 507 | if (FCmp->isEquality()) { |
| 508 | // f1 == f2 -> Unlikely |
| 509 | // f1 != f2 -> Likely |
| 510 | isProb = !FCmp->isTrueWhenEqual(); |
| 511 | } else if (FCmp->getPredicate() == FCmpInst::FCMP_ORD) { |
| 512 | // !isnan -> Likely |
| 513 | isProb = true; |
| 514 | } else if (FCmp->getPredicate() == FCmpInst::FCMP_UNO) { |
| 515 | // isnan -> Unlikely |
| 516 | isProb = false; |
| 517 | } else { |
| 518 | return false; |
| 519 | } |
| 520 | |
Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 521 | unsigned TakenIdx = 0, NonTakenIdx = 1; |
Benjamin Kramer | 1e731a1 | 2011-10-21 20:12:47 +0000 | [diff] [blame] | 522 | |
Benjamin Kramer | 606a50a | 2011-10-21 21:13:47 +0000 | [diff] [blame] | 523 | if (!isProb) |
Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 524 | std::swap(TakenIdx, NonTakenIdx); |
Benjamin Kramer | 1e731a1 | 2011-10-21 20:12:47 +0000 | [diff] [blame] | 525 | |
Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 526 | BranchProbability TakenProb(FPH_TAKEN_WEIGHT, |
| 527 | FPH_TAKEN_WEIGHT + FPH_NONTAKEN_WEIGHT); |
| 528 | setEdgeProbability(BB, TakenIdx, TakenProb); |
| 529 | setEdgeProbability(BB, NonTakenIdx, TakenProb.getCompl()); |
Benjamin Kramer | 1e731a1 | 2011-10-21 20:12:47 +0000 | [diff] [blame] | 530 | return true; |
| 531 | } |
Jakub Staszak | 17af66a | 2011-07-31 03:27:24 +0000 | [diff] [blame] | 532 | |
Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 533 | bool BranchProbabilityInfo::calcInvokeHeuristics(const BasicBlock *BB) { |
| 534 | const InvokeInst *II = dyn_cast<InvokeInst>(BB->getTerminator()); |
Bill Wendling | e1c5426 | 2012-08-15 12:22:35 +0000 | [diff] [blame] | 535 | if (!II) |
| 536 | return false; |
| 537 | |
Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 538 | BranchProbability TakenProb(IH_TAKEN_WEIGHT, |
| 539 | IH_TAKEN_WEIGHT + IH_NONTAKEN_WEIGHT); |
| 540 | setEdgeProbability(BB, 0 /*Index for Normal*/, TakenProb); |
| 541 | setEdgeProbability(BB, 1 /*Index for Unwind*/, TakenProb.getCompl()); |
Bill Wendling | e1c5426 | 2012-08-15 12:22:35 +0000 | [diff] [blame] | 542 | return true; |
| 543 | } |
| 544 | |
Pete Cooper | b9d2e34 | 2015-05-28 19:43:06 +0000 | [diff] [blame] | 545 | void BranchProbabilityInfo::releaseMemory() { |
Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 546 | Probs.clear(); |
Pete Cooper | b9d2e34 | 2015-05-28 19:43:06 +0000 | [diff] [blame] | 547 | } |
| 548 | |
Cong Hou | ab23bfb | 2015-07-15 22:48:29 +0000 | [diff] [blame] | 549 | void BranchProbabilityInfo::print(raw_ostream &OS) const { |
Chandler Carruth | 1c8ace0 | 2011-10-23 21:21:50 +0000 | [diff] [blame] | 550 | OS << "---- Branch Probabilities ----\n"; |
| 551 | // We print the probabilities from the last function the analysis ran over, |
| 552 | // or the function it is currently running over. |
| 553 | assert(LastF && "Cannot print prior to running over a function"); |
Duncan P. N. Exon Smith | 5a82c91 | 2015-10-10 00:53:03 +0000 | [diff] [blame] | 554 | for (const auto &BI : *LastF) { |
| 555 | for (succ_const_iterator SI = succ_begin(&BI), SE = succ_end(&BI); SI != SE; |
| 556 | ++SI) { |
| 557 | printEdgeProbability(OS << " ", &BI, *SI); |
Duncan P. N. Exon Smith | 6c99015 | 2014-07-21 17:06:51 +0000 | [diff] [blame] | 558 | } |
| 559 | } |
Chandler Carruth | 1c8ace0 | 2011-10-23 21:21:50 +0000 | [diff] [blame] | 560 | } |
| 561 | |
Jakub Staszak | efd94c8 | 2011-07-29 19:30:00 +0000 | [diff] [blame] | 562 | bool BranchProbabilityInfo:: |
| 563 | isEdgeHot(const BasicBlock *Src, const BasicBlock *Dst) const { |
Andrew Trick | 3d4e64b | 2011-06-11 01:05:22 +0000 | [diff] [blame] | 564 | // Hot probability is at least 4/5 = 80% |
Benjamin Kramer | 929f53f | 2011-10-23 11:19:14 +0000 | [diff] [blame] | 565 | // FIXME: Compare against a static "hot" BranchProbability. |
| 566 | return getEdgeProbability(Src, Dst) > BranchProbability(4, 5); |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 567 | } |
| 568 | |
Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 569 | const BasicBlock * |
| 570 | BranchProbabilityInfo::getHotSucc(const BasicBlock *BB) const { |
Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 571 | auto MaxProb = BranchProbability::getZero(); |
Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 572 | const BasicBlock *MaxSucc = nullptr; |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 573 | |
Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 574 | for (succ_const_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) { |
| 575 | const BasicBlock *Succ = *I; |
Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 576 | auto Prob = getEdgeProbability(BB, Succ); |
| 577 | if (Prob > MaxProb) { |
| 578 | MaxProb = Prob; |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 579 | MaxSucc = Succ; |
| 580 | } |
| 581 | } |
| 582 | |
Benjamin Kramer | 929f53f | 2011-10-23 11:19:14 +0000 | [diff] [blame] | 583 | // Hot probability is at least 4/5 = 80% |
Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 584 | if (MaxProb > BranchProbability(4, 5)) |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 585 | return MaxSucc; |
| 586 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 587 | return nullptr; |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 588 | } |
| 589 | |
Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 590 | /// Get the raw edge probability for the edge. If can't find it, return a |
| 591 | /// default probability 1/N where N is the number of successors. Here an edge is |
| 592 | /// specified using PredBlock and an |
| 593 | /// index to the successors. |
| 594 | BranchProbability |
| 595 | BranchProbabilityInfo::getEdgeProbability(const BasicBlock *Src, |
| 596 | unsigned IndexInSuccessors) const { |
| 597 | auto I = Probs.find(std::make_pair(Src, IndexInSuccessors)); |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 598 | |
Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 599 | if (I != Probs.end()) |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 600 | return I->second; |
| 601 | |
Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 602 | return {1, |
| 603 | static_cast<uint32_t>(std::distance(succ_begin(Src), succ_end(Src)))}; |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 604 | } |
| 605 | |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 606 | BranchProbability |
| 607 | BranchProbabilityInfo::getEdgeProbability(const BasicBlock *Src, |
| 608 | succ_const_iterator Dst) const { |
| 609 | return getEdgeProbability(Src, Dst.getSuccessorIndex()); |
| 610 | } |
| 611 | |
Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 612 | /// Get the raw edge probability calculated for the block pair. This returns the |
| 613 | /// sum of all raw edge probabilities from Src to Dst. |
| 614 | BranchProbability |
| 615 | BranchProbabilityInfo::getEdgeProbability(const BasicBlock *Src, |
| 616 | const BasicBlock *Dst) const { |
| 617 | auto Prob = BranchProbability::getZero(); |
| 618 | bool FoundProb = false; |
| 619 | for (succ_const_iterator I = succ_begin(Src), E = succ_end(Src); I != E; ++I) |
| 620 | if (*I == Dst) { |
| 621 | auto MapI = Probs.find(std::make_pair(Src, I.getSuccessorIndex())); |
| 622 | if (MapI != Probs.end()) { |
| 623 | FoundProb = true; |
| 624 | Prob += MapI->second; |
| 625 | } |
| 626 | } |
| 627 | uint32_t succ_num = std::distance(succ_begin(Src), succ_end(Src)); |
| 628 | return FoundProb ? Prob : BranchProbability(1, succ_num); |
| 629 | } |
| 630 | |
| 631 | /// Set the edge probability for a given edge specified by PredBlock and an |
| 632 | /// index to the successors. |
| 633 | void BranchProbabilityInfo::setEdgeProbability(const BasicBlock *Src, |
| 634 | unsigned IndexInSuccessors, |
| 635 | BranchProbability Prob) { |
| 636 | Probs[std::make_pair(Src, IndexInSuccessors)] = Prob; |
Igor Laevsky | ee40d1e | 2016-07-15 14:31:16 +0000 | [diff] [blame] | 637 | Handles.insert(BasicBlockCallbackVH(Src, this)); |
Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 638 | DEBUG(dbgs() << "set edge " << Src->getName() << " -> " << IndexInSuccessors |
| 639 | << " successor probability to " << Prob << "\n"); |
| 640 | } |
| 641 | |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 642 | raw_ostream & |
Chandler Carruth | 1c8ace0 | 2011-10-23 21:21:50 +0000 | [diff] [blame] | 643 | BranchProbabilityInfo::printEdgeProbability(raw_ostream &OS, |
| 644 | const BasicBlock *Src, |
| 645 | const BasicBlock *Dst) const { |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 646 | |
Jakub Staszak | 12a43bd | 2011-06-16 20:22:37 +0000 | [diff] [blame] | 647 | const BranchProbability Prob = getEdgeProbability(Src, Dst); |
Benjamin Kramer | 1f97a5a | 2011-11-15 16:27:03 +0000 | [diff] [blame] | 648 | OS << "edge " << Src->getName() << " -> " << Dst->getName() |
Andrew Trick | 3d4e64b | 2011-06-11 01:05:22 +0000 | [diff] [blame] | 649 | << " probability is " << Prob |
| 650 | << (isEdgeHot(Src, Dst) ? " [HOT edge]\n" : "\n"); |
Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 651 | |
| 652 | return OS; |
| 653 | } |
Cong Hou | ab23bfb | 2015-07-15 22:48:29 +0000 | [diff] [blame] | 654 | |
Igor Laevsky | ee40d1e | 2016-07-15 14:31:16 +0000 | [diff] [blame] | 655 | void BranchProbabilityInfo::eraseBlock(const BasicBlock *BB) { |
| 656 | for (auto I = Probs.begin(), E = Probs.end(); I != E; ++I) { |
| 657 | auto Key = I->first; |
| 658 | if (Key.first == BB) |
| 659 | Probs.erase(Key); |
| 660 | } |
| 661 | } |
| 662 | |
Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 663 | void BranchProbabilityInfo::calculate(const Function &F, const LoopInfo &LI) { |
Cong Hou | ab23bfb | 2015-07-15 22:48:29 +0000 | [diff] [blame] | 664 | DEBUG(dbgs() << "---- Branch Probability Info : " << F.getName() |
| 665 | << " ----\n\n"); |
| 666 | LastF = &F; // Store the last function we ran on for printing. |
| 667 | assert(PostDominatedByUnreachable.empty()); |
| 668 | assert(PostDominatedByColdCall.empty()); |
| 669 | |
| 670 | // Walk the basic blocks in post-order so that we can build up state about |
| 671 | // the successors of a block iteratively. |
| 672 | for (auto BB : post_order(&F.getEntryBlock())) { |
| 673 | DEBUG(dbgs() << "Computing probabilities for " << BB->getName() << "\n"); |
| 674 | if (calcUnreachableHeuristics(BB)) |
| 675 | continue; |
| 676 | if (calcMetadataWeights(BB)) |
| 677 | continue; |
| 678 | if (calcColdCallHeuristics(BB)) |
| 679 | continue; |
| 680 | if (calcLoopBranchHeuristics(BB, LI)) |
| 681 | continue; |
| 682 | if (calcPointerHeuristics(BB)) |
| 683 | continue; |
| 684 | if (calcZeroHeuristics(BB)) |
| 685 | continue; |
| 686 | if (calcFloatingPointHeuristics(BB)) |
| 687 | continue; |
| 688 | calcInvokeHeuristics(BB); |
| 689 | } |
| 690 | |
| 691 | PostDominatedByUnreachable.clear(); |
| 692 | PostDominatedByColdCall.clear(); |
| 693 | } |
| 694 | |
| 695 | void BranchProbabilityInfoWrapperPass::getAnalysisUsage( |
| 696 | AnalysisUsage &AU) const { |
| 697 | AU.addRequired<LoopInfoWrapperPass>(); |
| 698 | AU.setPreservesAll(); |
| 699 | } |
| 700 | |
| 701 | bool BranchProbabilityInfoWrapperPass::runOnFunction(Function &F) { |
| 702 | const LoopInfo &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo(); |
| 703 | BPI.calculate(F, LI); |
| 704 | return false; |
| 705 | } |
| 706 | |
| 707 | void BranchProbabilityInfoWrapperPass::releaseMemory() { BPI.releaseMemory(); } |
| 708 | |
| 709 | void BranchProbabilityInfoWrapperPass::print(raw_ostream &OS, |
| 710 | const Module *) const { |
| 711 | BPI.print(OS); |
| 712 | } |
Xinliang David Li | 6e5dd41 | 2016-05-05 02:59:57 +0000 | [diff] [blame] | 713 | |
| 714 | char BranchProbabilityAnalysis::PassID; |
| 715 | BranchProbabilityInfo |
Sean Silva | 36e0d01 | 2016-08-09 00:28:15 +0000 | [diff] [blame] | 716 | BranchProbabilityAnalysis::run(Function &F, FunctionAnalysisManager &AM) { |
Xinliang David Li | 6e5dd41 | 2016-05-05 02:59:57 +0000 | [diff] [blame] | 717 | BranchProbabilityInfo BPI; |
| 718 | BPI.calculate(F, AM.getResult<LoopAnalysis>(F)); |
| 719 | return BPI; |
| 720 | } |
| 721 | |
| 722 | PreservedAnalyses |
Sean Silva | 36e0d01 | 2016-08-09 00:28:15 +0000 | [diff] [blame] | 723 | BranchProbabilityPrinterPass::run(Function &F, FunctionAnalysisManager &AM) { |
Xinliang David Li | 6e5dd41 | 2016-05-05 02:59:57 +0000 | [diff] [blame] | 724 | OS << "Printing analysis results of BPI for function " |
| 725 | << "'" << F.getName() << "':" |
| 726 | << "\n"; |
| 727 | AM.getResult<BranchProbabilityAnalysis>(F).print(OS); |
| 728 | return PreservedAnalyses::all(); |
| 729 | } |