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