| 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 | // | 
| Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | 
|  | 4 | // See https://llvm.org/LICENSE.txt for license information. | 
|  | 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 6 | // | 
|  | 7 | //===----------------------------------------------------------------------===// | 
|  | 8 | // | 
|  | 9 | // Loops should be simplified before this analysis. | 
|  | 10 | // | 
|  | 11 | //===----------------------------------------------------------------------===// | 
|  | 12 |  | 
| Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 13 | #include "llvm/Analysis/BranchProbabilityInfo.h" | 
|  | 14 | #include "llvm/ADT/PostOrderIterator.h" | 
| Geoff Berry | eed6531 | 2017-11-01 15:16:50 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/SCCIterator.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" | 
| Taewook Oh | 2da205d | 2019-12-02 10:15:22 -0800 | [diff] [blame] | 19 | #include "llvm/Analysis/PostDominators.h" | 
| John Brawn | da4a68a | 2017-06-08 09:44:40 +0000 | [diff] [blame] | 20 | #include "llvm/Analysis/TargetLibraryInfo.h" | 
| Eugene Zelenko | 38c02bc | 2017-07-21 21:37:46 +0000 | [diff] [blame] | 21 | #include "llvm/IR/Attributes.h" | 
|  | 22 | #include "llvm/IR/BasicBlock.h" | 
| Chandler Carruth | 1305dc3 | 2014-03-04 11:45:46 +0000 | [diff] [blame] | 23 | #include "llvm/IR/CFG.h" | 
| Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 24 | #include "llvm/IR/Constants.h" | 
| Mikael Holmen | 2ca1689 | 2018-05-17 09:05:40 +0000 | [diff] [blame] | 25 | #include "llvm/IR/Dominators.h" | 
| Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 26 | #include "llvm/IR/Function.h" | 
| Eugene Zelenko | 38c02bc | 2017-07-21 21:37:46 +0000 | [diff] [blame] | 27 | #include "llvm/IR/InstrTypes.h" | 
|  | 28 | #include "llvm/IR/Instruction.h" | 
| Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 29 | #include "llvm/IR/Instructions.h" | 
|  | 30 | #include "llvm/IR/LLVMContext.h" | 
|  | 31 | #include "llvm/IR/Metadata.h" | 
| Eugene Zelenko | 38c02bc | 2017-07-21 21:37:46 +0000 | [diff] [blame] | 32 | #include "llvm/IR/PassManager.h" | 
|  | 33 | #include "llvm/IR/Type.h" | 
|  | 34 | #include "llvm/IR/Value.h" | 
| Reid Kleckner | 05da2fe | 2019-11-13 13:15:01 -0800 | [diff] [blame] | 35 | #include "llvm/InitializePasses.h" | 
| Eugene Zelenko | 38c02bc | 2017-07-21 21:37:46 +0000 | [diff] [blame] | 36 | #include "llvm/Pass.h" | 
|  | 37 | #include "llvm/Support/BranchProbability.h" | 
|  | 38 | #include "llvm/Support/Casting.h" | 
| Reid Kleckner | 4c1a1d3 | 2019-11-14 15:15:48 -0800 | [diff] [blame] | 39 | #include "llvm/Support/CommandLine.h" | 
| Andrew Trick | 3d4e64b | 2011-06-11 01:05:22 +0000 | [diff] [blame] | 40 | #include "llvm/Support/Debug.h" | 
| Benjamin Kramer | 16132e6 | 2015-03-23 18:07:13 +0000 | [diff] [blame] | 41 | #include "llvm/Support/raw_ostream.h" | 
| Eugene Zelenko | 38c02bc | 2017-07-21 21:37:46 +0000 | [diff] [blame] | 42 | #include <cassert> | 
|  | 43 | #include <cstdint> | 
|  | 44 | #include <iterator> | 
|  | 45 | #include <utility> | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 46 |  | 
|  | 47 | using namespace llvm; | 
|  | 48 |  | 
| Chandler Carruth | f1221bd | 2014-04-22 02:48:03 +0000 | [diff] [blame] | 49 | #define DEBUG_TYPE "branch-prob" | 
|  | 50 |  | 
| Hiroshi Yamauchi | 63e17eb | 2017-08-26 00:31:00 +0000 | [diff] [blame] | 51 | static cl::opt<bool> PrintBranchProb( | 
|  | 52 | "print-bpi", cl::init(false), cl::Hidden, | 
|  | 53 | cl::desc("Print the branch probability info.")); | 
|  | 54 |  | 
|  | 55 | cl::opt<std::string> PrintBranchProbFuncName( | 
|  | 56 | "print-bpi-func-name", cl::Hidden, | 
|  | 57 | cl::desc("The option to specify the name of the function " | 
|  | 58 | "whose branch probability info is printed.")); | 
|  | 59 |  | 
| Cong Hou | ab23bfb | 2015-07-15 22:48:29 +0000 | [diff] [blame] | 60 | INITIALIZE_PASS_BEGIN(BranchProbabilityInfoWrapperPass, "branch-prob", | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 61 | "Branch Probability Analysis", false, true) | 
| Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 62 | INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass) | 
| John Brawn | da4a68a | 2017-06-08 09:44:40 +0000 | [diff] [blame] | 63 | INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass) | 
| Cong Hou | ab23bfb | 2015-07-15 22:48:29 +0000 | [diff] [blame] | 64 | INITIALIZE_PASS_END(BranchProbabilityInfoWrapperPass, "branch-prob", | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 65 | "Branch Probability Analysis", false, true) | 
|  | 66 |  | 
| Reid Kleckner | 05da2fe | 2019-11-13 13:15:01 -0800 | [diff] [blame] | 67 | BranchProbabilityInfoWrapperPass::BranchProbabilityInfoWrapperPass() | 
|  | 68 | : FunctionPass(ID) { | 
|  | 69 | initializeBranchProbabilityInfoWrapperPassPass( | 
|  | 70 | *PassRegistry::getPassRegistry()); | 
|  | 71 | } | 
|  | 72 |  | 
| Cong Hou | ab23bfb | 2015-07-15 22:48:29 +0000 | [diff] [blame] | 73 | char BranchProbabilityInfoWrapperPass::ID = 0; | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 74 |  | 
| Chandler Carruth | 7a0094a | 2011-10-24 01:40:45 +0000 | [diff] [blame] | 75 | // Weights are for internal use only. They are used by heuristics to help to | 
|  | 76 | // estimate edges' probability. Example: | 
|  | 77 | // | 
|  | 78 | // Using "Loop Branch Heuristics" we predict weights of edges for the | 
|  | 79 | // block BB2. | 
|  | 80 | //         ... | 
|  | 81 | //          | | 
|  | 82 | //          V | 
|  | 83 | //         BB1<-+ | 
|  | 84 | //          |   | | 
|  | 85 | //          |   | (Weight = 124) | 
|  | 86 | //          V   | | 
|  | 87 | //         BB2--+ | 
|  | 88 | //          | | 
|  | 89 | //          | (Weight = 4) | 
|  | 90 | //          V | 
|  | 91 | //         BB3 | 
|  | 92 | // | 
|  | 93 | // Probability of the edge BB2->BB1 = 124 / (124 + 4) = 0.96875 | 
|  | 94 | // Probability of the edge BB2->BB3 = 4 / (124 + 4) = 0.03125 | 
|  | 95 | static const uint32_t LBH_TAKEN_WEIGHT = 124; | 
|  | 96 | static const uint32_t LBH_NONTAKEN_WEIGHT = 4; | 
| John Brawn | 29bbed3 | 2018-02-23 17:17:31 +0000 | [diff] [blame] | 97 | // Unlikely edges within a loop are half as likely as other edges | 
|  | 98 | static const uint32_t LBH_UNLIKELY_WEIGHT = 62; | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 99 |  | 
| Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 100 | /// Unreachable-terminating branch taken probability. | 
| Chandler Carruth | 7111f45 | 2011-10-24 12:01:08 +0000 | [diff] [blame] | 101 | /// | 
| Serguei Katkov | ba831f7 | 2017-05-18 06:11:56 +0000 | [diff] [blame] | 102 | /// 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] | 103 | /// (eventually) in unreachable. These are predicted as unlikely as possible. | 
| Serguei Katkov | ba831f7 | 2017-05-18 06:11:56 +0000 | [diff] [blame] | 104 | /// All reachable probability will equally share the remaining part. | 
|  | 105 | static const BranchProbability UR_TAKEN_PROB = BranchProbability::getRaw(1); | 
| Serguei Katkov | 2616bbb | 2017-04-17 04:33:04 +0000 | [diff] [blame] | 106 |  | 
| Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 107 | /// Weight for a branch taken going into a cold block. | 
| Diego Novillo | c639953 | 2013-05-24 12:26:52 +0000 | [diff] [blame] | 108 | /// | 
|  | 109 | /// This is the weight for a branch taken toward a block marked | 
|  | 110 | /// cold.  A block is marked cold if it's postdominated by a | 
|  | 111 | /// block containing a call to a cold function.  Cold functions | 
|  | 112 | /// are those marked with attribute 'cold'. | 
|  | 113 | static const uint32_t CC_TAKEN_WEIGHT = 4; | 
|  | 114 |  | 
| Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 115 | /// Weight for a branch not-taken into a cold block. | 
| Diego Novillo | c639953 | 2013-05-24 12:26:52 +0000 | [diff] [blame] | 116 | /// | 
|  | 117 | /// This is the weight for a branch not taken toward a block marked | 
|  | 118 | /// cold. | 
|  | 119 | static const uint32_t CC_NONTAKEN_WEIGHT = 64; | 
|  | 120 |  | 
| Chandler Carruth | 7a0094a | 2011-10-24 01:40:45 +0000 | [diff] [blame] | 121 | static const uint32_t PH_TAKEN_WEIGHT = 20; | 
|  | 122 | static const uint32_t PH_NONTAKEN_WEIGHT = 12; | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 123 |  | 
| Chandler Carruth | 7a0094a | 2011-10-24 01:40:45 +0000 | [diff] [blame] | 124 | static const uint32_t ZH_TAKEN_WEIGHT = 20; | 
|  | 125 | static const uint32_t ZH_NONTAKEN_WEIGHT = 12; | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 126 |  | 
| Chandler Carruth | 7a0094a | 2011-10-24 01:40:45 +0000 | [diff] [blame] | 127 | static const uint32_t FPH_TAKEN_WEIGHT = 20; | 
|  | 128 | static const uint32_t FPH_NONTAKEN_WEIGHT = 12; | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 129 |  | 
| Guozhi Wei | b329e07 | 2019-09-10 17:25:11 +0000 | [diff] [blame] | 130 | /// This is the probability for an ordered floating point comparison. | 
|  | 131 | static const uint32_t FPH_ORD_WEIGHT = 1024 * 1024 - 1; | 
|  | 132 | /// This is the probability for an unordered floating point comparison, it means | 
|  | 133 | /// one or two of the operands are NaN. Usually it is used to test for an | 
|  | 134 | /// exceptional case, so the result is unlikely. | 
|  | 135 | static const uint32_t FPH_UNO_WEIGHT = 1; | 
|  | 136 |  | 
| Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 137 | /// Invoke-terminating normal branch taken weight | 
| Bill Wendling | e1c5426 | 2012-08-15 12:22:35 +0000 | [diff] [blame] | 138 | /// | 
|  | 139 | /// This is the weight for branching to the normal destination of an invoke | 
|  | 140 | /// instruction. We expect this to happen most of the time. Set the weight to an | 
|  | 141 | /// absurdly high value so that nested loops subsume it. | 
|  | 142 | static const uint32_t IH_TAKEN_WEIGHT = 1024 * 1024 - 1; | 
|  | 143 |  | 
| Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 144 | /// Invoke-terminating normal branch not-taken weight. | 
| Bill Wendling | e1c5426 | 2012-08-15 12:22:35 +0000 | [diff] [blame] | 145 | /// | 
|  | 146 | /// This is the weight for branching to the unwind destination of an invoke | 
|  | 147 | /// instruction. This is essentially never taken. | 
|  | 148 | static const uint32_t IH_NONTAKEN_WEIGHT = 1; | 
|  | 149 |  | 
| Taewook Oh | 2da205d | 2019-12-02 10:15:22 -0800 | [diff] [blame] | 150 | static void UpdatePDTWorklist(const BasicBlock *BB, PostDominatorTree *PDT, | 
|  | 151 | SmallVectorImpl<const BasicBlock *> &WorkList, | 
|  | 152 | SmallPtrSetImpl<const BasicBlock *> &TargetSet) { | 
|  | 153 | SmallVector<BasicBlock *, 8> Descendants; | 
|  | 154 | SmallPtrSet<const BasicBlock *, 16> NewItems; | 
| Chandler Carruth | 7111f45 | 2011-10-24 12:01:08 +0000 | [diff] [blame] | 155 |  | 
| Taewook Oh | 2da205d | 2019-12-02 10:15:22 -0800 | [diff] [blame] | 156 | PDT->getDescendants(const_cast<BasicBlock *>(BB), Descendants); | 
|  | 157 | for (auto *BB : Descendants) | 
|  | 158 | if (TargetSet.insert(BB).second) | 
|  | 159 | for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) | 
|  | 160 | if (!TargetSet.count(*PI)) | 
|  | 161 | NewItems.insert(*PI); | 
|  | 162 | WorkList.insert(WorkList.end(), NewItems.begin(), NewItems.end()); | 
| Serguei Katkov | ecebc3d | 2017-04-12 05:42:14 +0000 | [diff] [blame] | 163 | } | 
|  | 164 |  | 
| Taewook Oh | 2da205d | 2019-12-02 10:15:22 -0800 | [diff] [blame] | 165 | /// Compute a set of basic blocks that are post-dominated by unreachables. | 
|  | 166 | void BranchProbabilityInfo::computePostDominatedByUnreachable( | 
|  | 167 | const Function &F, PostDominatorTree *PDT) { | 
|  | 168 | SmallVector<const BasicBlock *, 8> WorkList; | 
|  | 169 | for (auto &BB : F) { | 
|  | 170 | const Instruction *TI = BB.getTerminator(); | 
|  | 171 | if (TI->getNumSuccessors() == 0) { | 
|  | 172 | if (isa<UnreachableInst>(TI) || | 
|  | 173 | // If this block is terminated by a call to | 
|  | 174 | // @llvm.experimental.deoptimize then treat it like an unreachable | 
|  | 175 | // since the @llvm.experimental.deoptimize call is expected to | 
|  | 176 | // practically never execute. | 
|  | 177 | BB.getTerminatingDeoptimizeCall()) | 
|  | 178 | UpdatePDTWorklist(&BB, PDT, WorkList, PostDominatedByUnreachable); | 
|  | 179 | } | 
| Serguei Katkov | ecebc3d | 2017-04-12 05:42:14 +0000 | [diff] [blame] | 180 | } | 
|  | 181 |  | 
| Taewook Oh | 2da205d | 2019-12-02 10:15:22 -0800 | [diff] [blame] | 182 | while (!WorkList.empty()) { | 
|  | 183 | const BasicBlock *BB = WorkList.pop_back_val(); | 
|  | 184 | if (PostDominatedByUnreachable.count(BB)) | 
|  | 185 | continue; | 
|  | 186 | // If the terminator is an InvokeInst, check only the normal destination | 
|  | 187 | // block as the unwind edge of InvokeInst is also very unlikely taken. | 
|  | 188 | if (auto *II = dyn_cast<InvokeInst>(BB->getTerminator())) { | 
|  | 189 | if (PostDominatedByUnreachable.count(II->getNormalDest())) | 
|  | 190 | UpdatePDTWorklist(BB, PDT, WorkList, PostDominatedByUnreachable); | 
| Serguei Katkov | ecebc3d | 2017-04-12 05:42:14 +0000 | [diff] [blame] | 191 | } | 
| Taewook Oh | 2da205d | 2019-12-02 10:15:22 -0800 | [diff] [blame] | 192 | // If all the successors are unreachable, BB is unreachable as well. | 
|  | 193 | else if (!successors(BB).empty() && | 
|  | 194 | llvm::all_of(successors(BB), [this](const BasicBlock *Succ) { | 
|  | 195 | return PostDominatedByUnreachable.count(Succ); | 
|  | 196 | })) | 
|  | 197 | UpdatePDTWorklist(BB, PDT, WorkList, PostDominatedByUnreachable); | 
|  | 198 | } | 
|  | 199 | } | 
| Serguei Katkov | ecebc3d | 2017-04-12 05:42:14 +0000 | [diff] [blame] | 200 |  | 
| Taewook Oh | 2da205d | 2019-12-02 10:15:22 -0800 | [diff] [blame] | 201 | /// compute a set of basic blocks that are post-dominated by ColdCalls. | 
|  | 202 | void BranchProbabilityInfo::computePostDominatedByColdCall( | 
|  | 203 | const Function &F, PostDominatorTree *PDT) { | 
|  | 204 | SmallVector<const BasicBlock *, 8> WorkList; | 
|  | 205 | for (auto &BB : F) | 
|  | 206 | for (auto &I : BB) | 
|  | 207 | if (const CallInst *CI = dyn_cast<CallInst>(&I)) | 
|  | 208 | if (CI->hasFnAttr(Attribute::Cold)) | 
|  | 209 | UpdatePDTWorklist(&BB, PDT, WorkList, PostDominatedByColdCall); | 
|  | 210 |  | 
|  | 211 | while (!WorkList.empty()) { | 
|  | 212 | const BasicBlock *BB = WorkList.pop_back_val(); | 
|  | 213 |  | 
|  | 214 | // If the terminator is an InvokeInst, check only the normal destination | 
|  | 215 | // block as the unwind edge of InvokeInst is also very unlikely taken. | 
|  | 216 | if (auto *II = dyn_cast<InvokeInst>(BB->getTerminator())) { | 
|  | 217 | if (PostDominatedByColdCall.count(II->getNormalDest())) | 
|  | 218 | UpdatePDTWorklist(BB, PDT, WorkList, PostDominatedByColdCall); | 
|  | 219 | } | 
|  | 220 | // If all of successor are post dominated then BB is also done. | 
|  | 221 | else if (!successors(BB).empty() && | 
|  | 222 | llvm::all_of(successors(BB), [this](const BasicBlock *Succ) { | 
|  | 223 | return PostDominatedByColdCall.count(Succ); | 
|  | 224 | })) | 
|  | 225 | UpdatePDTWorklist(BB, PDT, WorkList, PostDominatedByColdCall); | 
|  | 226 | } | 
| Serguei Katkov | ecebc3d | 2017-04-12 05:42:14 +0000 | [diff] [blame] | 227 | } | 
|  | 228 |  | 
| Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 229 | /// Calculate edge weights for successors lead to unreachable. | 
| Serguei Katkov | ecebc3d | 2017-04-12 05:42:14 +0000 | [diff] [blame] | 230 | /// | 
|  | 231 | /// Predict that a successor which leads necessarily to an | 
|  | 232 | /// unreachable-terminated block as extremely unlikely. | 
|  | 233 | bool BranchProbabilityInfo::calcUnreachableHeuristics(const BasicBlock *BB) { | 
| Chandler Carruth | edb12a8 | 2018-10-15 10:04:59 +0000 | [diff] [blame] | 234 | const Instruction *TI = BB->getTerminator(); | 
| Artur Pilipenko | 4d063e7 | 2018-06-08 13:03:21 +0000 | [diff] [blame] | 235 | (void) TI; | 
| Serguei Katkov | 11d9c4f | 2017-04-17 06:39:47 +0000 | [diff] [blame] | 236 | assert(TI->getNumSuccessors() > 1 && "expected more than one successor!"); | 
| Artur Pilipenko | 4d063e7 | 2018-06-08 13:03:21 +0000 | [diff] [blame] | 237 | assert(!isa<InvokeInst>(TI) && | 
|  | 238 | "Invokes should have already been handled by calcInvokeHeuristics"); | 
| Serguei Katkov | ecebc3d | 2017-04-12 05:42:14 +0000 | [diff] [blame] | 239 |  | 
| Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 240 | SmallVector<unsigned, 4> UnreachableEdges; | 
|  | 241 | SmallVector<unsigned, 4> ReachableEdges; | 
| Chandler Carruth | 7111f45 | 2011-10-24 12:01:08 +0000 | [diff] [blame] | 242 |  | 
| Serguei Katkov | ecebc3d | 2017-04-12 05:42:14 +0000 | [diff] [blame] | 243 | 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] | 244 | if (PostDominatedByUnreachable.count(*I)) | 
| Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 245 | UnreachableEdges.push_back(I.getSuccessorIndex()); | 
| Chandler Carruth | 7111f45 | 2011-10-24 12:01:08 +0000 | [diff] [blame] | 246 | else | 
| Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 247 | ReachableEdges.push_back(I.getSuccessorIndex()); | 
| Chandler Carruth | 7111f45 | 2011-10-24 12:01:08 +0000 | [diff] [blame] | 248 |  | 
| Serguei Katkov | 11d9c4f | 2017-04-17 06:39:47 +0000 | [diff] [blame] | 249 | // Skip probabilities if all were reachable. | 
|  | 250 | if (UnreachableEdges.empty()) | 
| Serguei Katkov | ecebc3d | 2017-04-12 05:42:14 +0000 | [diff] [blame] | 251 | return false; | 
| Jun Bum Lim | a23e5f7 | 2015-12-21 22:00:51 +0000 | [diff] [blame] | 252 |  | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 253 | if (ReachableEdges.empty()) { | 
|  | 254 | BranchProbability Prob(1, UnreachableEdges.size()); | 
|  | 255 | for (unsigned SuccIdx : UnreachableEdges) | 
|  | 256 | setEdgeProbability(BB, SuccIdx, Prob); | 
| Chandler Carruth | 7111f45 | 2011-10-24 12:01:08 +0000 | [diff] [blame] | 257 | return true; | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 258 | } | 
|  | 259 |  | 
| Serguei Katkov | ba831f7 | 2017-05-18 06:11:56 +0000 | [diff] [blame] | 260 | auto UnreachableProb = UR_TAKEN_PROB; | 
|  | 261 | auto ReachableProb = | 
|  | 262 | (BranchProbability::getOne() - UR_TAKEN_PROB * UnreachableEdges.size()) / | 
|  | 263 | ReachableEdges.size(); | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 264 |  | 
|  | 265 | for (unsigned SuccIdx : UnreachableEdges) | 
|  | 266 | setEdgeProbability(BB, SuccIdx, UnreachableProb); | 
|  | 267 | for (unsigned SuccIdx : ReachableEdges) | 
|  | 268 | setEdgeProbability(BB, SuccIdx, ReachableProb); | 
| Chandler Carruth | 7111f45 | 2011-10-24 12:01:08 +0000 | [diff] [blame] | 269 |  | 
|  | 270 | return true; | 
|  | 271 | } | 
|  | 272 |  | 
| Chandler Carruth | d27a7a9 | 2011-10-19 10:30:30 +0000 | [diff] [blame] | 273 | // Propagate existing explicit probabilities from either profile data or | 
| Serguei Katkov | 2616bbb | 2017-04-17 04:33:04 +0000 | [diff] [blame] | 274 | // 'expect' intrinsic processing. Examine metadata against unreachable | 
|  | 275 | // heuristic. The probability of the edge coming to unreachable block is | 
|  | 276 | // set to min of metadata and unreachable heuristic. | 
| Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 277 | bool BranchProbabilityInfo::calcMetadataWeights(const BasicBlock *BB) { | 
| Chandler Carruth | edb12a8 | 2018-10-15 10:04:59 +0000 | [diff] [blame] | 278 | const Instruction *TI = BB->getTerminator(); | 
| Serguei Katkov | 11d9c4f | 2017-04-17 06:39:47 +0000 | [diff] [blame] | 279 | assert(TI->getNumSuccessors() > 1 && "expected more than one successor!"); | 
| Rong Xu | 15848e5 | 2017-08-23 21:36:02 +0000 | [diff] [blame] | 280 | if (!(isa<BranchInst>(TI) || isa<SwitchInst>(TI) || isa<IndirectBrInst>(TI))) | 
| Chandler Carruth | d27a7a9 | 2011-10-19 10:30:30 +0000 | [diff] [blame] | 281 | return false; | 
|  | 282 |  | 
| Duncan P. N. Exon Smith | de36e80 | 2014-11-11 21:30:22 +0000 | [diff] [blame] | 283 | MDNode *WeightsNode = TI->getMetadata(LLVMContext::MD_prof); | 
| Chandler Carruth | deac50c | 2011-10-19 10:32:19 +0000 | [diff] [blame] | 284 | if (!WeightsNode) | 
| Chandler Carruth | d27a7a9 | 2011-10-19 10:30:30 +0000 | [diff] [blame] | 285 | return false; | 
|  | 286 |  | 
| Diego Novillo | de5b801 | 2015-05-07 17:22:06 +0000 | [diff] [blame] | 287 | // Check that the number of successors is manageable. | 
|  | 288 | assert(TI->getNumSuccessors() < UINT32_MAX && "Too many successors"); | 
|  | 289 |  | 
| Chandler Carruth | deac50c | 2011-10-19 10:32:19 +0000 | [diff] [blame] | 290 | // Ensure there are weights for all of the successors. Note that the first | 
|  | 291 | // operand to the metadata node is a name, not a weight. | 
|  | 292 | if (WeightsNode->getNumOperands() != TI->getNumSuccessors() + 1) | 
| Chandler Carruth | d27a7a9 | 2011-10-19 10:30:30 +0000 | [diff] [blame] | 293 | return false; | 
|  | 294 |  | 
| Diego Novillo | de5b801 | 2015-05-07 17:22:06 +0000 | [diff] [blame] | 295 | // Build up the final weights that will be used in a temporary buffer. | 
|  | 296 | // Compute the sum of all weights to later decide whether they need to | 
|  | 297 | // be scaled to fit in 32 bits. | 
|  | 298 | uint64_t WeightSum = 0; | 
| Chandler Carruth | deac50c | 2011-10-19 10:32:19 +0000 | [diff] [blame] | 299 | SmallVector<uint32_t, 2> Weights; | 
| Serguei Katkov | 2616bbb | 2017-04-17 04:33:04 +0000 | [diff] [blame] | 300 | SmallVector<unsigned, 2> UnreachableIdxs; | 
|  | 301 | SmallVector<unsigned, 2> ReachableIdxs; | 
| Chandler Carruth | deac50c | 2011-10-19 10:32:19 +0000 | [diff] [blame] | 302 | Weights.reserve(TI->getNumSuccessors()); | 
|  | 303 | 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] | 304 | ConstantInt *Weight = | 
|  | 305 | mdconst::dyn_extract<ConstantInt>(WeightsNode->getOperand(i)); | 
| Chandler Carruth | deac50c | 2011-10-19 10:32:19 +0000 | [diff] [blame] | 306 | if (!Weight) | 
|  | 307 | return false; | 
| Diego Novillo | de5b801 | 2015-05-07 17:22:06 +0000 | [diff] [blame] | 308 | assert(Weight->getValue().getActiveBits() <= 32 && | 
|  | 309 | "Too many bits for uint32_t"); | 
|  | 310 | Weights.push_back(Weight->getZExtValue()); | 
|  | 311 | WeightSum += Weights.back(); | 
| Serguei Katkov | 2616bbb | 2017-04-17 04:33:04 +0000 | [diff] [blame] | 312 | if (PostDominatedByUnreachable.count(TI->getSuccessor(i - 1))) | 
|  | 313 | UnreachableIdxs.push_back(i - 1); | 
|  | 314 | else | 
|  | 315 | ReachableIdxs.push_back(i - 1); | 
| Chandler Carruth | deac50c | 2011-10-19 10:32:19 +0000 | [diff] [blame] | 316 | } | 
|  | 317 | assert(Weights.size() == TI->getNumSuccessors() && "Checked above"); | 
| Diego Novillo | de5b801 | 2015-05-07 17:22:06 +0000 | [diff] [blame] | 318 |  | 
|  | 319 | // If the sum of weights does not fit in 32 bits, scale every weight down | 
|  | 320 | // accordingly. | 
|  | 321 | uint64_t ScalingFactor = | 
|  | 322 | (WeightSum > UINT32_MAX) ? WeightSum / UINT32_MAX + 1 : 1; | 
|  | 323 |  | 
| Serguei Katkov | 2616bbb | 2017-04-17 04:33:04 +0000 | [diff] [blame] | 324 | if (ScalingFactor > 1) { | 
|  | 325 | WeightSum = 0; | 
|  | 326 | for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i) { | 
|  | 327 | Weights[i] /= ScalingFactor; | 
|  | 328 | WeightSum += Weights[i]; | 
|  | 329 | } | 
| Diego Novillo | de5b801 | 2015-05-07 17:22:06 +0000 | [diff] [blame] | 330 | } | 
| Serguei Katkov | 63c9c81 | 2017-05-12 07:50:06 +0000 | [diff] [blame] | 331 | assert(WeightSum <= UINT32_MAX && | 
|  | 332 | "Expected weights to scale down to 32 bits"); | 
| Cong Hou | 6a2c71a | 2015-12-22 23:45:55 +0000 | [diff] [blame] | 333 |  | 
| Serguei Katkov | 2616bbb | 2017-04-17 04:33:04 +0000 | [diff] [blame] | 334 | if (WeightSum == 0 || ReachableIdxs.size() == 0) { | 
| Cong Hou | 6a2c71a | 2015-12-22 23:45:55 +0000 | [diff] [blame] | 335 | for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i) | 
| Serguei Katkov | 2616bbb | 2017-04-17 04:33:04 +0000 | [diff] [blame] | 336 | Weights[i] = 1; | 
|  | 337 | WeightSum = TI->getNumSuccessors(); | 
| Cong Hou | 6a2c71a | 2015-12-22 23:45:55 +0000 | [diff] [blame] | 338 | } | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 339 |  | 
| Serguei Katkov | 2616bbb | 2017-04-17 04:33:04 +0000 | [diff] [blame] | 340 | // Set the probability. | 
|  | 341 | SmallVector<BranchProbability, 2> BP; | 
|  | 342 | for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i) | 
|  | 343 | BP.push_back({ Weights[i], static_cast<uint32_t>(WeightSum) }); | 
|  | 344 |  | 
|  | 345 | // Examine the metadata against unreachable heuristic. | 
|  | 346 | // If the unreachable heuristic is more strong then we use it for this edge. | 
|  | 347 | if (UnreachableIdxs.size() > 0 && ReachableIdxs.size() > 0) { | 
|  | 348 | auto ToDistribute = BranchProbability::getZero(); | 
| Serguei Katkov | ba831f7 | 2017-05-18 06:11:56 +0000 | [diff] [blame] | 349 | auto UnreachableProb = UR_TAKEN_PROB; | 
| Serguei Katkov | 2616bbb | 2017-04-17 04:33:04 +0000 | [diff] [blame] | 350 | for (auto i : UnreachableIdxs) | 
|  | 351 | if (UnreachableProb < BP[i]) { | 
|  | 352 | ToDistribute += BP[i] - UnreachableProb; | 
|  | 353 | BP[i] = UnreachableProb; | 
|  | 354 | } | 
|  | 355 |  | 
|  | 356 | // If we modified the probability of some edges then we must distribute | 
|  | 357 | // the difference between reachable blocks. | 
|  | 358 | if (ToDistribute > BranchProbability::getZero()) { | 
|  | 359 | BranchProbability PerEdge = ToDistribute / ReachableIdxs.size(); | 
| Serguei Katkov | 63c9c81 | 2017-05-12 07:50:06 +0000 | [diff] [blame] | 360 | for (auto i : ReachableIdxs) | 
| Serguei Katkov | 2616bbb | 2017-04-17 04:33:04 +0000 | [diff] [blame] | 361 | BP[i] += PerEdge; | 
| Serguei Katkov | 2616bbb | 2017-04-17 04:33:04 +0000 | [diff] [blame] | 362 | } | 
|  | 363 | } | 
|  | 364 |  | 
|  | 365 | for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i) | 
|  | 366 | setEdgeProbability(BB, i, BP[i]); | 
|  | 367 |  | 
| Chandler Carruth | d27a7a9 | 2011-10-19 10:30:30 +0000 | [diff] [blame] | 368 | return true; | 
|  | 369 | } | 
|  | 370 |  | 
| Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 371 | /// Calculate edge weights for edges leading to cold blocks. | 
| Diego Novillo | c639953 | 2013-05-24 12:26:52 +0000 | [diff] [blame] | 372 | /// | 
|  | 373 | /// A cold block is one post-dominated by  a block with a call to a | 
|  | 374 | /// cold function.  Those edges are unlikely to be taken, so we give | 
|  | 375 | /// them relatively low weight. | 
|  | 376 | /// | 
|  | 377 | /// Return true if we could compute the weights for cold edges. | 
|  | 378 | /// Return false, otherwise. | 
| Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 379 | bool BranchProbabilityInfo::calcColdCallHeuristics(const BasicBlock *BB) { | 
| Chandler Carruth | edb12a8 | 2018-10-15 10:04:59 +0000 | [diff] [blame] | 380 | const Instruction *TI = BB->getTerminator(); | 
| Artur Pilipenko | 4d063e7 | 2018-06-08 13:03:21 +0000 | [diff] [blame] | 381 | (void) TI; | 
| Serguei Katkov | 11d9c4f | 2017-04-17 06:39:47 +0000 | [diff] [blame] | 382 | assert(TI->getNumSuccessors() > 1 && "expected more than one successor!"); | 
| Artur Pilipenko | 4d063e7 | 2018-06-08 13:03:21 +0000 | [diff] [blame] | 383 | assert(!isa<InvokeInst>(TI) && | 
|  | 384 | "Invokes should have already been handled by calcInvokeHeuristics"); | 
| Diego Novillo | c639953 | 2013-05-24 12:26:52 +0000 | [diff] [blame] | 385 |  | 
|  | 386 | // Determine which successors are post-dominated by a cold block. | 
|  | 387 | SmallVector<unsigned, 4> ColdEdges; | 
| Diego Novillo | c639953 | 2013-05-24 12:26:52 +0000 | [diff] [blame] | 388 | SmallVector<unsigned, 4> NormalEdges; | 
| Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 389 | 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] | 390 | if (PostDominatedByColdCall.count(*I)) | 
|  | 391 | ColdEdges.push_back(I.getSuccessorIndex()); | 
|  | 392 | else | 
|  | 393 | NormalEdges.push_back(I.getSuccessorIndex()); | 
|  | 394 |  | 
| Serguei Katkov | 11d9c4f | 2017-04-17 06:39:47 +0000 | [diff] [blame] | 395 | // Skip probabilities if no cold edges. | 
|  | 396 | if (ColdEdges.empty()) | 
| Diego Novillo | c639953 | 2013-05-24 12:26:52 +0000 | [diff] [blame] | 397 | return false; | 
|  | 398 |  | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 399 | if (NormalEdges.empty()) { | 
|  | 400 | BranchProbability Prob(1, ColdEdges.size()); | 
|  | 401 | for (unsigned SuccIdx : ColdEdges) | 
|  | 402 | setEdgeProbability(BB, SuccIdx, Prob); | 
| Diego Novillo | c639953 | 2013-05-24 12:26:52 +0000 | [diff] [blame] | 403 | return true; | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 404 | } | 
|  | 405 |  | 
| Vedant Kumar | a4bd146 | 2016-12-17 01:02:08 +0000 | [diff] [blame] | 406 | auto ColdProb = BranchProbability::getBranchProbability( | 
|  | 407 | CC_TAKEN_WEIGHT, | 
|  | 408 | (CC_TAKEN_WEIGHT + CC_NONTAKEN_WEIGHT) * uint64_t(ColdEdges.size())); | 
|  | 409 | auto NormalProb = BranchProbability::getBranchProbability( | 
|  | 410 | CC_NONTAKEN_WEIGHT, | 
|  | 411 | (CC_TAKEN_WEIGHT + CC_NONTAKEN_WEIGHT) * uint64_t(NormalEdges.size())); | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 412 |  | 
|  | 413 | for (unsigned SuccIdx : ColdEdges) | 
|  | 414 | setEdgeProbability(BB, SuccIdx, ColdProb); | 
|  | 415 | for (unsigned SuccIdx : NormalEdges) | 
|  | 416 | setEdgeProbability(BB, SuccIdx, NormalProb); | 
| Diego Novillo | c639953 | 2013-05-24 12:26:52 +0000 | [diff] [blame] | 417 |  | 
|  | 418 | return true; | 
|  | 419 | } | 
|  | 420 |  | 
| Vedant Kumar | 1a8456d | 2018-03-02 18:57:02 +0000 | [diff] [blame] | 421 | // Calculate Edge Weights using "Pointer Heuristics". Predict a comparison | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 422 | // between two pointer or pointer and NULL will fail. | 
| Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 423 | bool BranchProbabilityInfo::calcPointerHeuristics(const BasicBlock *BB) { | 
|  | 424 | const BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator()); | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 425 | if (!BI || !BI->isConditional()) | 
| Jakub Staszak | d07b2e1 | 2011-07-28 21:45:07 +0000 | [diff] [blame] | 426 | return false; | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 427 |  | 
|  | 428 | Value *Cond = BI->getCondition(); | 
|  | 429 | ICmpInst *CI = dyn_cast<ICmpInst>(Cond); | 
| Jakub Staszak | abb236f | 2011-07-15 20:51:06 +0000 | [diff] [blame] | 430 | if (!CI || !CI->isEquality()) | 
| Jakub Staszak | d07b2e1 | 2011-07-28 21:45:07 +0000 | [diff] [blame] | 431 | return false; | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 432 |  | 
|  | 433 | Value *LHS = CI->getOperand(0); | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 434 |  | 
|  | 435 | if (!LHS->getType()->isPointerTy()) | 
| Jakub Staszak | d07b2e1 | 2011-07-28 21:45:07 +0000 | [diff] [blame] | 436 | return false; | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 437 |  | 
| Nick Lewycky | 75b2053 | 2011-06-04 02:07:10 +0000 | [diff] [blame] | 438 | assert(CI->getOperand(1)->getType()->isPointerTy()); | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 439 |  | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 440 | // p != 0   ->   isProb = true | 
|  | 441 | // p == 0   ->   isProb = false | 
|  | 442 | // p != q   ->   isProb = true | 
|  | 443 | // p == q   ->   isProb = false; | 
| Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 444 | unsigned TakenIdx = 0, NonTakenIdx = 1; | 
| Jakub Staszak | abb236f | 2011-07-15 20:51:06 +0000 | [diff] [blame] | 445 | bool isProb = CI->getPredicate() == ICmpInst::ICMP_NE; | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 446 | if (!isProb) | 
| Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 447 | std::swap(TakenIdx, NonTakenIdx); | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 448 |  | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 449 | BranchProbability TakenProb(PH_TAKEN_WEIGHT, | 
|  | 450 | PH_TAKEN_WEIGHT + PH_NONTAKEN_WEIGHT); | 
|  | 451 | setEdgeProbability(BB, TakenIdx, TakenProb); | 
|  | 452 | setEdgeProbability(BB, NonTakenIdx, TakenProb.getCompl()); | 
| Jakub Staszak | d07b2e1 | 2011-07-28 21:45:07 +0000 | [diff] [blame] | 453 | return true; | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 454 | } | 
|  | 455 |  | 
| Geoff Berry | eed6531 | 2017-11-01 15:16:50 +0000 | [diff] [blame] | 456 | static int getSCCNum(const BasicBlock *BB, | 
|  | 457 | const BranchProbabilityInfo::SccInfo &SccI) { | 
|  | 458 | auto SccIt = SccI.SccNums.find(BB); | 
|  | 459 | if (SccIt == SccI.SccNums.end()) | 
|  | 460 | return -1; | 
|  | 461 | return SccIt->second; | 
|  | 462 | } | 
|  | 463 |  | 
|  | 464 | // Consider any block that is an entry point to the SCC as a header. | 
|  | 465 | static bool isSCCHeader(const BasicBlock *BB, int SccNum, | 
|  | 466 | BranchProbabilityInfo::SccInfo &SccI) { | 
|  | 467 | assert(getSCCNum(BB, SccI) == SccNum); | 
|  | 468 |  | 
|  | 469 | // Lazily compute the set of headers for a given SCC and cache the results | 
|  | 470 | // in the SccHeaderMap. | 
|  | 471 | if (SccI.SccHeaders.size() <= static_cast<unsigned>(SccNum)) | 
|  | 472 | SccI.SccHeaders.resize(SccNum + 1); | 
|  | 473 | auto &HeaderMap = SccI.SccHeaders[SccNum]; | 
|  | 474 | bool Inserted; | 
|  | 475 | BranchProbabilityInfo::SccHeaderMap::iterator HeaderMapIt; | 
|  | 476 | std::tie(HeaderMapIt, Inserted) = HeaderMap.insert(std::make_pair(BB, false)); | 
|  | 477 | if (Inserted) { | 
|  | 478 | bool IsHeader = llvm::any_of(make_range(pred_begin(BB), pred_end(BB)), | 
|  | 479 | [&](const BasicBlock *Pred) { | 
|  | 480 | return getSCCNum(Pred, SccI) != SccNum; | 
|  | 481 | }); | 
|  | 482 | HeaderMapIt->second = IsHeader; | 
|  | 483 | return IsHeader; | 
|  | 484 | } else | 
|  | 485 | return HeaderMapIt->second; | 
|  | 486 | } | 
|  | 487 |  | 
| John Brawn | 29bbed3 | 2018-02-23 17:17:31 +0000 | [diff] [blame] | 488 | // Compute the unlikely successors to the block BB in the loop L, specifically | 
|  | 489 | // those that are unlikely because this is a loop, and add them to the | 
|  | 490 | // UnlikelyBlocks set. | 
|  | 491 | static void | 
|  | 492 | computeUnlikelySuccessors(const BasicBlock *BB, Loop *L, | 
|  | 493 | SmallPtrSetImpl<const BasicBlock*> &UnlikelyBlocks) { | 
|  | 494 | // Sometimes in a loop we have a branch whose condition is made false by | 
|  | 495 | // taking it. This is typically something like | 
|  | 496 | //  int n = 0; | 
|  | 497 | //  while (...) { | 
|  | 498 | //    if (++n >= MAX) { | 
|  | 499 | //      n = 0; | 
|  | 500 | //    } | 
|  | 501 | //  } | 
|  | 502 | // In this sort of situation taking the branch means that at the very least it | 
|  | 503 | // won't be taken again in the next iteration of the loop, so we should | 
|  | 504 | // consider it less likely than a typical branch. | 
|  | 505 | // | 
|  | 506 | // We detect this by looking back through the graph of PHI nodes that sets the | 
|  | 507 | // value that the condition depends on, and seeing if we can reach a successor | 
|  | 508 | // block which can be determined to make the condition false. | 
|  | 509 | // | 
|  | 510 | // FIXME: We currently consider unlikely blocks to be half as likely as other | 
|  | 511 | // blocks, but if we consider the example above the likelyhood is actually | 
|  | 512 | // 1/MAX. We could therefore be more precise in how unlikely we consider | 
|  | 513 | // blocks to be, but it would require more careful examination of the form | 
|  | 514 | // of the comparison expression. | 
|  | 515 | const BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator()); | 
|  | 516 | if (!BI || !BI->isConditional()) | 
|  | 517 | return; | 
|  | 518 |  | 
|  | 519 | // Check if the branch is based on an instruction compared with a constant | 
|  | 520 | CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition()); | 
|  | 521 | if (!CI || !isa<Instruction>(CI->getOperand(0)) || | 
|  | 522 | !isa<Constant>(CI->getOperand(1))) | 
|  | 523 | return; | 
|  | 524 |  | 
|  | 525 | // Either the instruction must be a PHI, or a chain of operations involving | 
|  | 526 | // constants that ends in a PHI which we can then collapse into a single value | 
|  | 527 | // if the PHI value is known. | 
|  | 528 | Instruction *CmpLHS = dyn_cast<Instruction>(CI->getOperand(0)); | 
|  | 529 | PHINode *CmpPHI = dyn_cast<PHINode>(CmpLHS); | 
|  | 530 | Constant *CmpConst = dyn_cast<Constant>(CI->getOperand(1)); | 
|  | 531 | // Collect the instructions until we hit a PHI | 
| Benjamin Kramer | 7f68a30 | 2018-06-15 21:06:43 +0000 | [diff] [blame] | 532 | SmallVector<BinaryOperator *, 1> InstChain; | 
| John Brawn | 29bbed3 | 2018-02-23 17:17:31 +0000 | [diff] [blame] | 533 | while (!CmpPHI && CmpLHS && isa<BinaryOperator>(CmpLHS) && | 
|  | 534 | isa<Constant>(CmpLHS->getOperand(1))) { | 
|  | 535 | // Stop if the chain extends outside of the loop | 
|  | 536 | if (!L->contains(CmpLHS)) | 
|  | 537 | return; | 
| Benjamin Kramer | 7f68a30 | 2018-06-15 21:06:43 +0000 | [diff] [blame] | 538 | InstChain.push_back(cast<BinaryOperator>(CmpLHS)); | 
| John Brawn | 29bbed3 | 2018-02-23 17:17:31 +0000 | [diff] [blame] | 539 | CmpLHS = dyn_cast<Instruction>(CmpLHS->getOperand(0)); | 
|  | 540 | if (CmpLHS) | 
|  | 541 | CmpPHI = dyn_cast<PHINode>(CmpLHS); | 
|  | 542 | } | 
|  | 543 | if (!CmpPHI || !L->contains(CmpPHI)) | 
|  | 544 | return; | 
|  | 545 |  | 
|  | 546 | // Trace the phi node to find all values that come from successors of BB | 
|  | 547 | SmallPtrSet<PHINode*, 8> VisitedInsts; | 
|  | 548 | SmallVector<PHINode*, 8> WorkList; | 
|  | 549 | WorkList.push_back(CmpPHI); | 
|  | 550 | VisitedInsts.insert(CmpPHI); | 
|  | 551 | while (!WorkList.empty()) { | 
|  | 552 | PHINode *P = WorkList.back(); | 
|  | 553 | WorkList.pop_back(); | 
|  | 554 | for (BasicBlock *B : P->blocks()) { | 
|  | 555 | // Skip blocks that aren't part of the loop | 
|  | 556 | if (!L->contains(B)) | 
|  | 557 | continue; | 
|  | 558 | Value *V = P->getIncomingValueForBlock(B); | 
|  | 559 | // If the source is a PHI add it to the work list if we haven't | 
|  | 560 | // already visited it. | 
|  | 561 | if (PHINode *PN = dyn_cast<PHINode>(V)) { | 
|  | 562 | if (VisitedInsts.insert(PN).second) | 
|  | 563 | WorkList.push_back(PN); | 
|  | 564 | continue; | 
|  | 565 | } | 
|  | 566 | // If this incoming value is a constant and B is a successor of BB, then | 
|  | 567 | // we can constant-evaluate the compare to see if it makes the branch be | 
|  | 568 | // taken or not. | 
|  | 569 | Constant *CmpLHSConst = dyn_cast<Constant>(V); | 
|  | 570 | if (!CmpLHSConst || | 
|  | 571 | std::find(succ_begin(BB), succ_end(BB), B) == succ_end(BB)) | 
|  | 572 | continue; | 
|  | 573 | // First collapse InstChain | 
| Benjamin Kramer | 7f68a30 | 2018-06-15 21:06:43 +0000 | [diff] [blame] | 574 | for (Instruction *I : llvm::reverse(InstChain)) { | 
| John Brawn | 29bbed3 | 2018-02-23 17:17:31 +0000 | [diff] [blame] | 575 | CmpLHSConst = ConstantExpr::get(I->getOpcode(), CmpLHSConst, | 
| Benjamin Kramer | 7f68a30 | 2018-06-15 21:06:43 +0000 | [diff] [blame] | 576 | cast<Constant>(I->getOperand(1)), true); | 
| John Brawn | 29bbed3 | 2018-02-23 17:17:31 +0000 | [diff] [blame] | 577 | if (!CmpLHSConst) | 
|  | 578 | break; | 
|  | 579 | } | 
|  | 580 | if (!CmpLHSConst) | 
|  | 581 | continue; | 
|  | 582 | // Now constant-evaluate the compare | 
|  | 583 | Constant *Result = ConstantExpr::getCompare(CI->getPredicate(), | 
|  | 584 | CmpLHSConst, CmpConst, true); | 
|  | 585 | // If the result means we don't branch to the block then that block is | 
|  | 586 | // unlikely. | 
|  | 587 | if (Result && | 
|  | 588 | ((Result->isZeroValue() && B == BI->getSuccessor(0)) || | 
|  | 589 | (Result->isOneValue() && B == BI->getSuccessor(1)))) | 
|  | 590 | UnlikelyBlocks.insert(B); | 
|  | 591 | } | 
|  | 592 | } | 
|  | 593 | } | 
|  | 594 |  | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 595 | // Calculate Edge Weights using "Loop Branch Heuristics". Predict backedges | 
|  | 596 | // as taken, exiting edges as not-taken. | 
| Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 597 | bool BranchProbabilityInfo::calcLoopBranchHeuristics(const BasicBlock *BB, | 
| Geoff Berry | eed6531 | 2017-11-01 15:16:50 +0000 | [diff] [blame] | 598 | const LoopInfo &LI, | 
|  | 599 | SccInfo &SccI) { | 
|  | 600 | int SccNum; | 
| Cong Hou | ab23bfb | 2015-07-15 22:48:29 +0000 | [diff] [blame] | 601 | Loop *L = LI.getLoopFor(BB); | 
| Geoff Berry | eed6531 | 2017-11-01 15:16:50 +0000 | [diff] [blame] | 602 | if (!L) { | 
|  | 603 | SccNum = getSCCNum(BB, SccI); | 
|  | 604 | if (SccNum < 0) | 
|  | 605 | return false; | 
|  | 606 | } | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 607 |  | 
| John Brawn | 29bbed3 | 2018-02-23 17:17:31 +0000 | [diff] [blame] | 608 | SmallPtrSet<const BasicBlock*, 8> UnlikelyBlocks; | 
|  | 609 | if (L) | 
|  | 610 | computeUnlikelySuccessors(BB, L, UnlikelyBlocks); | 
|  | 611 |  | 
| Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 612 | SmallVector<unsigned, 8> BackEdges; | 
|  | 613 | SmallVector<unsigned, 8> ExitingEdges; | 
|  | 614 | SmallVector<unsigned, 8> InEdges; // Edges from header to the loop. | 
| John Brawn | 29bbed3 | 2018-02-23 17:17:31 +0000 | [diff] [blame] | 615 | SmallVector<unsigned, 8> UnlikelyEdges; | 
| Jakub Staszak | bcb3c65 | 2011-07-28 21:33:46 +0000 | [diff] [blame] | 616 |  | 
| Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 617 | for (succ_const_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) { | 
| Geoff Berry | eed6531 | 2017-11-01 15:16:50 +0000 | [diff] [blame] | 618 | // Use LoopInfo if we have it, otherwise fall-back to SCC info to catch | 
|  | 619 | // irreducible loops. | 
|  | 620 | if (L) { | 
| John Brawn | 29bbed3 | 2018-02-23 17:17:31 +0000 | [diff] [blame] | 621 | if (UnlikelyBlocks.count(*I) != 0) | 
|  | 622 | UnlikelyEdges.push_back(I.getSuccessorIndex()); | 
|  | 623 | else if (!L->contains(*I)) | 
| Geoff Berry | eed6531 | 2017-11-01 15:16:50 +0000 | [diff] [blame] | 624 | ExitingEdges.push_back(I.getSuccessorIndex()); | 
|  | 625 | else if (L->getHeader() == *I) | 
|  | 626 | BackEdges.push_back(I.getSuccessorIndex()); | 
|  | 627 | else | 
|  | 628 | InEdges.push_back(I.getSuccessorIndex()); | 
|  | 629 | } else { | 
|  | 630 | if (getSCCNum(*I, SccI) != SccNum) | 
|  | 631 | ExitingEdges.push_back(I.getSuccessorIndex()); | 
|  | 632 | else if (isSCCHeader(*I, SccNum, SccI)) | 
|  | 633 | BackEdges.push_back(I.getSuccessorIndex()); | 
|  | 634 | else | 
|  | 635 | InEdges.push_back(I.getSuccessorIndex()); | 
|  | 636 | } | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 637 | } | 
|  | 638 |  | 
| John Brawn | 29bbed3 | 2018-02-23 17:17:31 +0000 | [diff] [blame] | 639 | if (BackEdges.empty() && ExitingEdges.empty() && UnlikelyEdges.empty()) | 
| Akira Hatanaka | 5638b89 | 2014-04-14 16:56:19 +0000 | [diff] [blame] | 640 | return false; | 
|  | 641 |  | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 642 | // Collect the sum of probabilities of back-edges/in-edges/exiting-edges, and | 
|  | 643 | // normalize them so that they sum up to one. | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 644 | unsigned Denom = (BackEdges.empty() ? 0 : LBH_TAKEN_WEIGHT) + | 
|  | 645 | (InEdges.empty() ? 0 : LBH_TAKEN_WEIGHT) + | 
| John Brawn | 29bbed3 | 2018-02-23 17:17:31 +0000 | [diff] [blame] | 646 | (UnlikelyEdges.empty() ? 0 : LBH_UNLIKELY_WEIGHT) + | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 647 | (ExitingEdges.empty() ? 0 : LBH_NONTAKEN_WEIGHT); | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 648 |  | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 649 | if (uint32_t numBackEdges = BackEdges.size()) { | 
| John Brawn | 29bbed3 | 2018-02-23 17:17:31 +0000 | [diff] [blame] | 650 | BranchProbability TakenProb = BranchProbability(LBH_TAKEN_WEIGHT, Denom); | 
|  | 651 | auto Prob = TakenProb / numBackEdges; | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 652 | for (unsigned SuccIdx : BackEdges) | 
|  | 653 | setEdgeProbability(BB, SuccIdx, Prob); | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 654 | } | 
|  | 655 |  | 
| Jakub Staszak | bcb3c65 | 2011-07-28 21:33:46 +0000 | [diff] [blame] | 656 | if (uint32_t numInEdges = InEdges.size()) { | 
| John Brawn | 29bbed3 | 2018-02-23 17:17:31 +0000 | [diff] [blame] | 657 | BranchProbability TakenProb = BranchProbability(LBH_TAKEN_WEIGHT, Denom); | 
|  | 658 | auto Prob = TakenProb / numInEdges; | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 659 | for (unsigned SuccIdx : InEdges) | 
|  | 660 | setEdgeProbability(BB, SuccIdx, Prob); | 
| Jakub Staszak | bcb3c65 | 2011-07-28 21:33:46 +0000 | [diff] [blame] | 661 | } | 
|  | 662 |  | 
| Chandler Carruth | 32f46e7 | 2011-10-25 09:47:41 +0000 | [diff] [blame] | 663 | if (uint32_t numExitingEdges = ExitingEdges.size()) { | 
| John Brawn | 29bbed3 | 2018-02-23 17:17:31 +0000 | [diff] [blame] | 664 | BranchProbability NotTakenProb = BranchProbability(LBH_NONTAKEN_WEIGHT, | 
|  | 665 | Denom); | 
|  | 666 | auto Prob = NotTakenProb / numExitingEdges; | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 667 | for (unsigned SuccIdx : ExitingEdges) | 
|  | 668 | setEdgeProbability(BB, SuccIdx, Prob); | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 669 | } | 
| Jakub Staszak | d07b2e1 | 2011-07-28 21:45:07 +0000 | [diff] [blame] | 670 |  | 
| John Brawn | 29bbed3 | 2018-02-23 17:17:31 +0000 | [diff] [blame] | 671 | if (uint32_t numUnlikelyEdges = UnlikelyEdges.size()) { | 
|  | 672 | BranchProbability UnlikelyProb = BranchProbability(LBH_UNLIKELY_WEIGHT, | 
|  | 673 | Denom); | 
|  | 674 | auto Prob = UnlikelyProb / numUnlikelyEdges; | 
|  | 675 | for (unsigned SuccIdx : UnlikelyEdges) | 
|  | 676 | setEdgeProbability(BB, SuccIdx, Prob); | 
|  | 677 | } | 
|  | 678 |  | 
| Jakub Staszak | d07b2e1 | 2011-07-28 21:45:07 +0000 | [diff] [blame] | 679 | return true; | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 680 | } | 
|  | 681 |  | 
| John Brawn | da4a68a | 2017-06-08 09:44:40 +0000 | [diff] [blame] | 682 | bool BranchProbabilityInfo::calcZeroHeuristics(const BasicBlock *BB, | 
|  | 683 | const TargetLibraryInfo *TLI) { | 
| Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 684 | const BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator()); | 
| Jakub Staszak | 17af66a | 2011-07-31 03:27:24 +0000 | [diff] [blame] | 685 | if (!BI || !BI->isConditional()) | 
|  | 686 | return false; | 
|  | 687 |  | 
|  | 688 | Value *Cond = BI->getCondition(); | 
|  | 689 | ICmpInst *CI = dyn_cast<ICmpInst>(Cond); | 
|  | 690 | if (!CI) | 
|  | 691 | return false; | 
|  | 692 |  | 
| Sam Parker | 0b53e84 | 2019-02-15 11:50:21 +0000 | [diff] [blame] | 693 | auto GetConstantInt = [](Value *V) { | 
|  | 694 | if (auto *I = dyn_cast<BitCastInst>(V)) | 
|  | 695 | return dyn_cast<ConstantInt>(I->getOperand(0)); | 
|  | 696 | return dyn_cast<ConstantInt>(V); | 
|  | 697 | }; | 
|  | 698 |  | 
| Jakub Staszak | 17af66a | 2011-07-31 03:27:24 +0000 | [diff] [blame] | 699 | Value *RHS = CI->getOperand(1); | 
| Sam Parker | 0b53e84 | 2019-02-15 11:50:21 +0000 | [diff] [blame] | 700 | ConstantInt *CV = GetConstantInt(RHS); | 
| Benjamin Kramer | 0ca1ad0 | 2011-09-04 23:53:04 +0000 | [diff] [blame] | 701 | if (!CV) | 
| Jakub Staszak | 17af66a | 2011-07-31 03:27:24 +0000 | [diff] [blame] | 702 | return false; | 
|  | 703 |  | 
| Daniel Jasper | a73f3d5 | 2015-04-15 06:24:07 +0000 | [diff] [blame] | 704 | // If the LHS is the result of AND'ing a value with a single bit bitmask, | 
|  | 705 | // we don't have information about probabilities. | 
|  | 706 | if (Instruction *LHS = dyn_cast<Instruction>(CI->getOperand(0))) | 
|  | 707 | if (LHS->getOpcode() == Instruction::And) | 
|  | 708 | if (ConstantInt *AndRHS = dyn_cast<ConstantInt>(LHS->getOperand(1))) | 
| Craig Topper | 4e22ee6 | 2017-08-04 16:59:29 +0000 | [diff] [blame] | 709 | if (AndRHS->getValue().isPowerOf2()) | 
| Daniel Jasper | a73f3d5 | 2015-04-15 06:24:07 +0000 | [diff] [blame] | 710 | return false; | 
|  | 711 |  | 
| John Brawn | da4a68a | 2017-06-08 09:44:40 +0000 | [diff] [blame] | 712 | // Check if the LHS is the return value of a library function | 
|  | 713 | LibFunc Func = NumLibFuncs; | 
|  | 714 | if (TLI) | 
|  | 715 | if (CallInst *Call = dyn_cast<CallInst>(CI->getOperand(0))) | 
|  | 716 | if (Function *CalledFn = Call->getCalledFunction()) | 
|  | 717 | TLI->getLibFunc(*CalledFn, Func); | 
|  | 718 |  | 
| Jakub Staszak | 17af66a | 2011-07-31 03:27:24 +0000 | [diff] [blame] | 719 | bool isProb; | 
| John Brawn | da4a68a | 2017-06-08 09:44:40 +0000 | [diff] [blame] | 720 | if (Func == LibFunc_strcasecmp || | 
|  | 721 | Func == LibFunc_strcmp || | 
|  | 722 | Func == LibFunc_strncasecmp || | 
|  | 723 | Func == LibFunc_strncmp || | 
|  | 724 | Func == LibFunc_memcmp) { | 
|  | 725 | // strcmp and similar functions return zero, negative, or positive, if the | 
|  | 726 | // first string is equal, less, or greater than the second. We consider it | 
|  | 727 | // likely that the strings are not equal, so a comparison with zero is | 
|  | 728 | // probably false, but also a comparison with any other number is also | 
|  | 729 | // probably false given that what exactly is returned for nonzero values is | 
|  | 730 | // not specified. Any kind of comparison other than equality we know | 
|  | 731 | // nothing about. | 
|  | 732 | switch (CI->getPredicate()) { | 
|  | 733 | case CmpInst::ICMP_EQ: | 
|  | 734 | isProb = false; | 
|  | 735 | break; | 
|  | 736 | case CmpInst::ICMP_NE: | 
|  | 737 | isProb = true; | 
|  | 738 | break; | 
|  | 739 | default: | 
|  | 740 | return false; | 
|  | 741 | } | 
|  | 742 | } else if (CV->isZero()) { | 
| Benjamin Kramer | 0ca1ad0 | 2011-09-04 23:53:04 +0000 | [diff] [blame] | 743 | switch (CI->getPredicate()) { | 
|  | 744 | case CmpInst::ICMP_EQ: | 
|  | 745 | // X == 0   ->  Unlikely | 
|  | 746 | isProb = false; | 
|  | 747 | break; | 
|  | 748 | case CmpInst::ICMP_NE: | 
|  | 749 | // X != 0   ->  Likely | 
|  | 750 | isProb = true; | 
|  | 751 | break; | 
|  | 752 | case CmpInst::ICMP_SLT: | 
|  | 753 | // X < 0   ->  Unlikely | 
|  | 754 | isProb = false; | 
|  | 755 | break; | 
|  | 756 | case CmpInst::ICMP_SGT: | 
|  | 757 | // X > 0   ->  Likely | 
|  | 758 | isProb = true; | 
|  | 759 | break; | 
|  | 760 | default: | 
|  | 761 | return false; | 
|  | 762 | } | 
|  | 763 | } else if (CV->isOne() && CI->getPredicate() == CmpInst::ICMP_SLT) { | 
|  | 764 | // InstCombine canonicalizes X <= 0 into X < 1. | 
|  | 765 | // X <= 0   ->  Unlikely | 
| Jakub Staszak | 17af66a | 2011-07-31 03:27:24 +0000 | [diff] [blame] | 766 | isProb = false; | 
| Craig Topper | 79ab643 | 2017-07-06 18:39:47 +0000 | [diff] [blame] | 767 | } else if (CV->isMinusOne()) { | 
| Hal Finkel | 4d94930 | 2013-11-01 10:58:22 +0000 | [diff] [blame] | 768 | switch (CI->getPredicate()) { | 
|  | 769 | case CmpInst::ICMP_EQ: | 
|  | 770 | // X == -1  ->  Unlikely | 
|  | 771 | isProb = false; | 
|  | 772 | break; | 
|  | 773 | case CmpInst::ICMP_NE: | 
|  | 774 | // X != -1  ->  Likely | 
|  | 775 | isProb = true; | 
|  | 776 | break; | 
|  | 777 | case CmpInst::ICMP_SGT: | 
|  | 778 | // InstCombine canonicalizes X >= 0 into X > -1. | 
|  | 779 | // X >= 0   ->  Likely | 
|  | 780 | isProb = true; | 
|  | 781 | break; | 
|  | 782 | default: | 
|  | 783 | return false; | 
|  | 784 | } | 
| Benjamin Kramer | 0ca1ad0 | 2011-09-04 23:53:04 +0000 | [diff] [blame] | 785 | } else { | 
| Jakub Staszak | 17af66a | 2011-07-31 03:27:24 +0000 | [diff] [blame] | 786 | return false; | 
| Benjamin Kramer | 0ca1ad0 | 2011-09-04 23:53:04 +0000 | [diff] [blame] | 787 | } | 
| Jakub Staszak | 17af66a | 2011-07-31 03:27:24 +0000 | [diff] [blame] | 788 |  | 
| Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 789 | unsigned TakenIdx = 0, NonTakenIdx = 1; | 
| Jakub Staszak | 17af66a | 2011-07-31 03:27:24 +0000 | [diff] [blame] | 790 |  | 
|  | 791 | if (!isProb) | 
| Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 792 | std::swap(TakenIdx, NonTakenIdx); | 
| Jakub Staszak | 17af66a | 2011-07-31 03:27:24 +0000 | [diff] [blame] | 793 |  | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 794 | BranchProbability TakenProb(ZH_TAKEN_WEIGHT, | 
|  | 795 | ZH_TAKEN_WEIGHT + ZH_NONTAKEN_WEIGHT); | 
|  | 796 | setEdgeProbability(BB, TakenIdx, TakenProb); | 
|  | 797 | setEdgeProbability(BB, NonTakenIdx, TakenProb.getCompl()); | 
| Jakub Staszak | 17af66a | 2011-07-31 03:27:24 +0000 | [diff] [blame] | 798 | return true; | 
|  | 799 | } | 
|  | 800 |  | 
| Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 801 | bool BranchProbabilityInfo::calcFloatingPointHeuristics(const BasicBlock *BB) { | 
|  | 802 | const BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator()); | 
| Benjamin Kramer | 1e731a1 | 2011-10-21 20:12:47 +0000 | [diff] [blame] | 803 | if (!BI || !BI->isConditional()) | 
|  | 804 | return false; | 
|  | 805 |  | 
|  | 806 | Value *Cond = BI->getCondition(); | 
|  | 807 | FCmpInst *FCmp = dyn_cast<FCmpInst>(Cond); | 
| Benjamin Kramer | 606a50a | 2011-10-21 21:13:47 +0000 | [diff] [blame] | 808 | if (!FCmp) | 
| Benjamin Kramer | 1e731a1 | 2011-10-21 20:12:47 +0000 | [diff] [blame] | 809 | return false; | 
|  | 810 |  | 
| Guozhi Wei | b329e07 | 2019-09-10 17:25:11 +0000 | [diff] [blame] | 811 | uint32_t TakenWeight = FPH_TAKEN_WEIGHT; | 
|  | 812 | uint32_t NontakenWeight = FPH_NONTAKEN_WEIGHT; | 
| Benjamin Kramer | 606a50a | 2011-10-21 21:13:47 +0000 | [diff] [blame] | 813 | bool isProb; | 
|  | 814 | if (FCmp->isEquality()) { | 
|  | 815 | // f1 == f2 -> Unlikely | 
|  | 816 | // f1 != f2 -> Likely | 
|  | 817 | isProb = !FCmp->isTrueWhenEqual(); | 
|  | 818 | } else if (FCmp->getPredicate() == FCmpInst::FCMP_ORD) { | 
|  | 819 | // !isnan -> Likely | 
|  | 820 | isProb = true; | 
| Guozhi Wei | b329e07 | 2019-09-10 17:25:11 +0000 | [diff] [blame] | 821 | TakenWeight = FPH_ORD_WEIGHT; | 
|  | 822 | NontakenWeight = FPH_UNO_WEIGHT; | 
| Benjamin Kramer | 606a50a | 2011-10-21 21:13:47 +0000 | [diff] [blame] | 823 | } else if (FCmp->getPredicate() == FCmpInst::FCMP_UNO) { | 
|  | 824 | // isnan -> Unlikely | 
|  | 825 | isProb = false; | 
| Guozhi Wei | b329e07 | 2019-09-10 17:25:11 +0000 | [diff] [blame] | 826 | TakenWeight = FPH_ORD_WEIGHT; | 
|  | 827 | NontakenWeight = FPH_UNO_WEIGHT; | 
| Benjamin Kramer | 606a50a | 2011-10-21 21:13:47 +0000 | [diff] [blame] | 828 | } else { | 
|  | 829 | return false; | 
|  | 830 | } | 
|  | 831 |  | 
| Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 832 | unsigned TakenIdx = 0, NonTakenIdx = 1; | 
| Benjamin Kramer | 1e731a1 | 2011-10-21 20:12:47 +0000 | [diff] [blame] | 833 |  | 
| Benjamin Kramer | 606a50a | 2011-10-21 21:13:47 +0000 | [diff] [blame] | 834 | if (!isProb) | 
| Manman Ren | cf10446 | 2012-08-24 18:14:27 +0000 | [diff] [blame] | 835 | std::swap(TakenIdx, NonTakenIdx); | 
| Benjamin Kramer | 1e731a1 | 2011-10-21 20:12:47 +0000 | [diff] [blame] | 836 |  | 
| Guozhi Wei | b329e07 | 2019-09-10 17:25:11 +0000 | [diff] [blame] | 837 | BranchProbability TakenProb(TakenWeight, TakenWeight + NontakenWeight); | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 838 | setEdgeProbability(BB, TakenIdx, TakenProb); | 
|  | 839 | setEdgeProbability(BB, NonTakenIdx, TakenProb.getCompl()); | 
| Benjamin Kramer | 1e731a1 | 2011-10-21 20:12:47 +0000 | [diff] [blame] | 840 | return true; | 
|  | 841 | } | 
| Jakub Staszak | 17af66a | 2011-07-31 03:27:24 +0000 | [diff] [blame] | 842 |  | 
| Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 843 | bool BranchProbabilityInfo::calcInvokeHeuristics(const BasicBlock *BB) { | 
|  | 844 | const InvokeInst *II = dyn_cast<InvokeInst>(BB->getTerminator()); | 
| Bill Wendling | e1c5426 | 2012-08-15 12:22:35 +0000 | [diff] [blame] | 845 | if (!II) | 
|  | 846 | return false; | 
|  | 847 |  | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 848 | BranchProbability TakenProb(IH_TAKEN_WEIGHT, | 
|  | 849 | IH_TAKEN_WEIGHT + IH_NONTAKEN_WEIGHT); | 
|  | 850 | setEdgeProbability(BB, 0 /*Index for Normal*/, TakenProb); | 
|  | 851 | setEdgeProbability(BB, 1 /*Index for Unwind*/, TakenProb.getCompl()); | 
| Bill Wendling | e1c5426 | 2012-08-15 12:22:35 +0000 | [diff] [blame] | 852 | return true; | 
|  | 853 | } | 
|  | 854 |  | 
| Pete Cooper | b9d2e34 | 2015-05-28 19:43:06 +0000 | [diff] [blame] | 855 | void BranchProbabilityInfo::releaseMemory() { | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 856 | Probs.clear(); | 
| Pete Cooper | b9d2e34 | 2015-05-28 19:43:06 +0000 | [diff] [blame] | 857 | } | 
|  | 858 |  | 
| Cong Hou | ab23bfb | 2015-07-15 22:48:29 +0000 | [diff] [blame] | 859 | void BranchProbabilityInfo::print(raw_ostream &OS) const { | 
| Chandler Carruth | 1c8ace0 | 2011-10-23 21:21:50 +0000 | [diff] [blame] | 860 | OS << "---- Branch Probabilities ----\n"; | 
|  | 861 | // We print the probabilities from the last function the analysis ran over, | 
|  | 862 | // or the function it is currently running over. | 
|  | 863 | 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] | 864 | for (const auto &BI : *LastF) { | 
|  | 865 | for (succ_const_iterator SI = succ_begin(&BI), SE = succ_end(&BI); SI != SE; | 
|  | 866 | ++SI) { | 
|  | 867 | printEdgeProbability(OS << "  ", &BI, *SI); | 
| Duncan P. N. Exon Smith | 6c99015 | 2014-07-21 17:06:51 +0000 | [diff] [blame] | 868 | } | 
|  | 869 | } | 
| Chandler Carruth | 1c8ace0 | 2011-10-23 21:21:50 +0000 | [diff] [blame] | 870 | } | 
|  | 871 |  | 
| Jakub Staszak | efd94c8 | 2011-07-29 19:30:00 +0000 | [diff] [blame] | 872 | bool BranchProbabilityInfo:: | 
|  | 873 | isEdgeHot(const BasicBlock *Src, const BasicBlock *Dst) const { | 
| Andrew Trick | 3d4e64b | 2011-06-11 01:05:22 +0000 | [diff] [blame] | 874 | // Hot probability is at least 4/5 = 80% | 
| Benjamin Kramer | 929f53f | 2011-10-23 11:19:14 +0000 | [diff] [blame] | 875 | // FIXME: Compare against a static "hot" BranchProbability. | 
|  | 876 | return getEdgeProbability(Src, Dst) > BranchProbability(4, 5); | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 877 | } | 
|  | 878 |  | 
| Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 879 | const BasicBlock * | 
|  | 880 | BranchProbabilityInfo::getHotSucc(const BasicBlock *BB) const { | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 881 | auto MaxProb = BranchProbability::getZero(); | 
| Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 882 | const BasicBlock *MaxSucc = nullptr; | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 883 |  | 
| Mehdi Amini | a797877 | 2016-04-07 21:59:28 +0000 | [diff] [blame] | 884 | for (succ_const_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) { | 
|  | 885 | const BasicBlock *Succ = *I; | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 886 | auto Prob = getEdgeProbability(BB, Succ); | 
|  | 887 | if (Prob > MaxProb) { | 
|  | 888 | MaxProb = Prob; | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 889 | MaxSucc = Succ; | 
|  | 890 | } | 
|  | 891 | } | 
|  | 892 |  | 
| Benjamin Kramer | 929f53f | 2011-10-23 11:19:14 +0000 | [diff] [blame] | 893 | // Hot probability is at least 4/5 = 80% | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 894 | if (MaxProb > BranchProbability(4, 5)) | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 895 | return MaxSucc; | 
|  | 896 |  | 
| Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 897 | return nullptr; | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 898 | } | 
|  | 899 |  | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 900 | /// Get the raw edge probability for the edge. If can't find it, return a | 
|  | 901 | /// default probability 1/N where N is the number of successors. Here an edge is | 
|  | 902 | /// specified using PredBlock and an | 
|  | 903 | /// index to the successors. | 
|  | 904 | BranchProbability | 
|  | 905 | BranchProbabilityInfo::getEdgeProbability(const BasicBlock *Src, | 
|  | 906 | unsigned IndexInSuccessors) const { | 
|  | 907 | auto I = Probs.find(std::make_pair(Src, IndexInSuccessors)); | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 908 |  | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 909 | if (I != Probs.end()) | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 910 | return I->second; | 
|  | 911 |  | 
| Vedant Kumar | e0b5f86 | 2018-05-10 23:01:54 +0000 | [diff] [blame] | 912 | return {1, static_cast<uint32_t>(succ_size(Src))}; | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 913 | } | 
|  | 914 |  | 
| Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 915 | BranchProbability | 
|  | 916 | BranchProbabilityInfo::getEdgeProbability(const BasicBlock *Src, | 
|  | 917 | succ_const_iterator Dst) const { | 
|  | 918 | return getEdgeProbability(Src, Dst.getSuccessorIndex()); | 
|  | 919 | } | 
|  | 920 |  | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 921 | /// Get the raw edge probability calculated for the block pair. This returns the | 
|  | 922 | /// sum of all raw edge probabilities from Src to Dst. | 
|  | 923 | BranchProbability | 
|  | 924 | BranchProbabilityInfo::getEdgeProbability(const BasicBlock *Src, | 
|  | 925 | const BasicBlock *Dst) const { | 
|  | 926 | auto Prob = BranchProbability::getZero(); | 
|  | 927 | bool FoundProb = false; | 
|  | 928 | for (succ_const_iterator I = succ_begin(Src), E = succ_end(Src); I != E; ++I) | 
|  | 929 | if (*I == Dst) { | 
|  | 930 | auto MapI = Probs.find(std::make_pair(Src, I.getSuccessorIndex())); | 
|  | 931 | if (MapI != Probs.end()) { | 
|  | 932 | FoundProb = true; | 
|  | 933 | Prob += MapI->second; | 
|  | 934 | } | 
|  | 935 | } | 
|  | 936 | uint32_t succ_num = std::distance(succ_begin(Src), succ_end(Src)); | 
|  | 937 | return FoundProb ? Prob : BranchProbability(1, succ_num); | 
|  | 938 | } | 
|  | 939 |  | 
|  | 940 | /// Set the edge probability for a given edge specified by PredBlock and an | 
|  | 941 | /// index to the successors. | 
|  | 942 | void BranchProbabilityInfo::setEdgeProbability(const BasicBlock *Src, | 
|  | 943 | unsigned IndexInSuccessors, | 
|  | 944 | BranchProbability Prob) { | 
|  | 945 | Probs[std::make_pair(Src, IndexInSuccessors)] = Prob; | 
| Igor Laevsky | ee40d1e | 2016-07-15 14:31:16 +0000 | [diff] [blame] | 946 | Handles.insert(BasicBlockCallbackVH(Src, this)); | 
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 947 | LLVM_DEBUG(dbgs() << "set edge " << Src->getName() << " -> " | 
|  | 948 | << IndexInSuccessors << " successor probability to " << Prob | 
|  | 949 | << "\n"); | 
| Cong Hou | e93b8e1 | 2015-12-22 18:56:14 +0000 | [diff] [blame] | 950 | } | 
|  | 951 |  | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 952 | raw_ostream & | 
| Chandler Carruth | 1c8ace0 | 2011-10-23 21:21:50 +0000 | [diff] [blame] | 953 | BranchProbabilityInfo::printEdgeProbability(raw_ostream &OS, | 
|  | 954 | const BasicBlock *Src, | 
|  | 955 | const BasicBlock *Dst) const { | 
| Jakub Staszak | 12a43bd | 2011-06-16 20:22:37 +0000 | [diff] [blame] | 956 | const BranchProbability Prob = getEdgeProbability(Src, Dst); | 
| Benjamin Kramer | 1f97a5a | 2011-11-15 16:27:03 +0000 | [diff] [blame] | 957 | OS << "edge " << Src->getName() << " -> " << Dst->getName() | 
| Andrew Trick | 3d4e64b | 2011-06-11 01:05:22 +0000 | [diff] [blame] | 958 | << " probability is " << Prob | 
|  | 959 | << (isEdgeHot(Src, Dst) ? " [HOT edge]\n" : "\n"); | 
| Andrew Trick | 49371f3 | 2011-06-04 01:16:30 +0000 | [diff] [blame] | 960 |  | 
|  | 961 | return OS; | 
|  | 962 | } | 
| Cong Hou | ab23bfb | 2015-07-15 22:48:29 +0000 | [diff] [blame] | 963 |  | 
| Igor Laevsky | ee40d1e | 2016-07-15 14:31:16 +0000 | [diff] [blame] | 964 | void BranchProbabilityInfo::eraseBlock(const BasicBlock *BB) { | 
|  | 965 | for (auto I = Probs.begin(), E = Probs.end(); I != E; ++I) { | 
|  | 966 | auto Key = I->first; | 
|  | 967 | if (Key.first == BB) | 
|  | 968 | Probs.erase(Key); | 
|  | 969 | } | 
|  | 970 | } | 
|  | 971 |  | 
| John Brawn | da4a68a | 2017-06-08 09:44:40 +0000 | [diff] [blame] | 972 | void BranchProbabilityInfo::calculate(const Function &F, const LoopInfo &LI, | 
|  | 973 | const TargetLibraryInfo *TLI) { | 
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 974 | LLVM_DEBUG(dbgs() << "---- Branch Probability Info : " << F.getName() | 
|  | 975 | << " ----\n\n"); | 
| Cong Hou | ab23bfb | 2015-07-15 22:48:29 +0000 | [diff] [blame] | 976 | LastF = &F; // Store the last function we ran on for printing. | 
|  | 977 | assert(PostDominatedByUnreachable.empty()); | 
|  | 978 | assert(PostDominatedByColdCall.empty()); | 
|  | 979 |  | 
| Geoff Berry | eed6531 | 2017-11-01 15:16:50 +0000 | [diff] [blame] | 980 | // Record SCC numbers of blocks in the CFG to identify irreducible loops. | 
|  | 981 | // FIXME: We could only calculate this if the CFG is known to be irreducible | 
|  | 982 | // (perhaps cache this info in LoopInfo if we can easily calculate it there?). | 
|  | 983 | int SccNum = 0; | 
|  | 984 | SccInfo SccI; | 
|  | 985 | for (scc_iterator<const Function *> It = scc_begin(&F); !It.isAtEnd(); | 
|  | 986 | ++It, ++SccNum) { | 
|  | 987 | // Ignore single-block SCCs since they either aren't loops or LoopInfo will | 
|  | 988 | // catch them. | 
|  | 989 | const std::vector<const BasicBlock *> &Scc = *It; | 
|  | 990 | if (Scc.size() == 1) | 
|  | 991 | continue; | 
|  | 992 |  | 
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 993 | LLVM_DEBUG(dbgs() << "BPI: SCC " << SccNum << ":"); | 
| Geoff Berry | eed6531 | 2017-11-01 15:16:50 +0000 | [diff] [blame] | 994 | for (auto *BB : Scc) { | 
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 995 | LLVM_DEBUG(dbgs() << " " << BB->getName()); | 
| Geoff Berry | eed6531 | 2017-11-01 15:16:50 +0000 | [diff] [blame] | 996 | SccI.SccNums[BB] = SccNum; | 
|  | 997 | } | 
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 998 | LLVM_DEBUG(dbgs() << "\n"); | 
| Geoff Berry | eed6531 | 2017-11-01 15:16:50 +0000 | [diff] [blame] | 999 | } | 
|  | 1000 |  | 
| Taewook Oh | 2da205d | 2019-12-02 10:15:22 -0800 | [diff] [blame] | 1001 | std::unique_ptr<PostDominatorTree> PDT = | 
|  | 1002 | std::make_unique<PostDominatorTree>(const_cast<Function &>(F)); | 
|  | 1003 | computePostDominatedByUnreachable(F, PDT.get()); | 
|  | 1004 | computePostDominatedByColdCall(F, PDT.get()); | 
|  | 1005 |  | 
| Cong Hou | ab23bfb | 2015-07-15 22:48:29 +0000 | [diff] [blame] | 1006 | // Walk the basic blocks in post-order so that we can build up state about | 
|  | 1007 | // the successors of a block iteratively. | 
|  | 1008 | for (auto BB : post_order(&F.getEntryBlock())) { | 
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1009 | LLVM_DEBUG(dbgs() << "Computing probabilities for " << BB->getName() | 
|  | 1010 | << "\n"); | 
| Serguei Katkov | 11d9c4f | 2017-04-17 06:39:47 +0000 | [diff] [blame] | 1011 | // If there is no at least two successors, no sense to set probability. | 
|  | 1012 | if (BB->getTerminator()->getNumSuccessors() < 2) | 
|  | 1013 | continue; | 
| Cong Hou | ab23bfb | 2015-07-15 22:48:29 +0000 | [diff] [blame] | 1014 | if (calcMetadataWeights(BB)) | 
|  | 1015 | continue; | 
| Artur Pilipenko | 4d063e7 | 2018-06-08 13:03:21 +0000 | [diff] [blame] | 1016 | if (calcInvokeHeuristics(BB)) | 
|  | 1017 | continue; | 
| Serguei Katkov | 2616bbb | 2017-04-17 04:33:04 +0000 | [diff] [blame] | 1018 | if (calcUnreachableHeuristics(BB)) | 
|  | 1019 | continue; | 
| Cong Hou | ab23bfb | 2015-07-15 22:48:29 +0000 | [diff] [blame] | 1020 | if (calcColdCallHeuristics(BB)) | 
|  | 1021 | continue; | 
| Geoff Berry | eed6531 | 2017-11-01 15:16:50 +0000 | [diff] [blame] | 1022 | if (calcLoopBranchHeuristics(BB, LI, SccI)) | 
| Cong Hou | ab23bfb | 2015-07-15 22:48:29 +0000 | [diff] [blame] | 1023 | continue; | 
|  | 1024 | if (calcPointerHeuristics(BB)) | 
|  | 1025 | continue; | 
| John Brawn | da4a68a | 2017-06-08 09:44:40 +0000 | [diff] [blame] | 1026 | if (calcZeroHeuristics(BB, TLI)) | 
| Cong Hou | ab23bfb | 2015-07-15 22:48:29 +0000 | [diff] [blame] | 1027 | continue; | 
|  | 1028 | if (calcFloatingPointHeuristics(BB)) | 
|  | 1029 | continue; | 
| Cong Hou | ab23bfb | 2015-07-15 22:48:29 +0000 | [diff] [blame] | 1030 | } | 
|  | 1031 |  | 
|  | 1032 | PostDominatedByUnreachable.clear(); | 
|  | 1033 | PostDominatedByColdCall.clear(); | 
| Hiroshi Yamauchi | 63e17eb | 2017-08-26 00:31:00 +0000 | [diff] [blame] | 1034 |  | 
|  | 1035 | if (PrintBranchProb && | 
|  | 1036 | (PrintBranchProbFuncName.empty() || | 
|  | 1037 | F.getName().equals(PrintBranchProbFuncName))) { | 
|  | 1038 | print(dbgs()); | 
|  | 1039 | } | 
| Cong Hou | ab23bfb | 2015-07-15 22:48:29 +0000 | [diff] [blame] | 1040 | } | 
|  | 1041 |  | 
|  | 1042 | void BranchProbabilityInfoWrapperPass::getAnalysisUsage( | 
|  | 1043 | AnalysisUsage &AU) const { | 
| Mikael Holmen | 2ca1689 | 2018-05-17 09:05:40 +0000 | [diff] [blame] | 1044 | // We require DT so it's available when LI is available. The LI updating code | 
|  | 1045 | // asserts that DT is also present so if we don't make sure that we have DT | 
|  | 1046 | // here, that assert will trigger. | 
|  | 1047 | AU.addRequired<DominatorTreeWrapperPass>(); | 
| Cong Hou | ab23bfb | 2015-07-15 22:48:29 +0000 | [diff] [blame] | 1048 | AU.addRequired<LoopInfoWrapperPass>(); | 
| John Brawn | da4a68a | 2017-06-08 09:44:40 +0000 | [diff] [blame] | 1049 | AU.addRequired<TargetLibraryInfoWrapperPass>(); | 
| Cong Hou | ab23bfb | 2015-07-15 22:48:29 +0000 | [diff] [blame] | 1050 | AU.setPreservesAll(); | 
|  | 1051 | } | 
|  | 1052 |  | 
|  | 1053 | bool BranchProbabilityInfoWrapperPass::runOnFunction(Function &F) { | 
|  | 1054 | const LoopInfo &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo(); | 
| Teresa Johnson | 9c27b59 | 2019-09-07 03:09:36 +0000 | [diff] [blame] | 1055 | const TargetLibraryInfo &TLI = | 
|  | 1056 | getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(F); | 
| John Brawn | da4a68a | 2017-06-08 09:44:40 +0000 | [diff] [blame] | 1057 | BPI.calculate(F, LI, &TLI); | 
| Cong Hou | ab23bfb | 2015-07-15 22:48:29 +0000 | [diff] [blame] | 1058 | return false; | 
|  | 1059 | } | 
|  | 1060 |  | 
|  | 1061 | void BranchProbabilityInfoWrapperPass::releaseMemory() { BPI.releaseMemory(); } | 
|  | 1062 |  | 
|  | 1063 | void BranchProbabilityInfoWrapperPass::print(raw_ostream &OS, | 
|  | 1064 | const Module *) const { | 
|  | 1065 | BPI.print(OS); | 
|  | 1066 | } | 
| Xinliang David Li | 6e5dd41 | 2016-05-05 02:59:57 +0000 | [diff] [blame] | 1067 |  | 
| Chandler Carruth | dab4eae | 2016-11-23 17:53:26 +0000 | [diff] [blame] | 1068 | AnalysisKey BranchProbabilityAnalysis::Key; | 
| Xinliang David Li | 6e5dd41 | 2016-05-05 02:59:57 +0000 | [diff] [blame] | 1069 | BranchProbabilityInfo | 
| Sean Silva | 36e0d01 | 2016-08-09 00:28:15 +0000 | [diff] [blame] | 1070 | BranchProbabilityAnalysis::run(Function &F, FunctionAnalysisManager &AM) { | 
| Xinliang David Li | 6e5dd41 | 2016-05-05 02:59:57 +0000 | [diff] [blame] | 1071 | BranchProbabilityInfo BPI; | 
| John Brawn | da4a68a | 2017-06-08 09:44:40 +0000 | [diff] [blame] | 1072 | BPI.calculate(F, AM.getResult<LoopAnalysis>(F), &AM.getResult<TargetLibraryAnalysis>(F)); | 
| Xinliang David Li | 6e5dd41 | 2016-05-05 02:59:57 +0000 | [diff] [blame] | 1073 | return BPI; | 
|  | 1074 | } | 
|  | 1075 |  | 
|  | 1076 | PreservedAnalyses | 
| Sean Silva | 36e0d01 | 2016-08-09 00:28:15 +0000 | [diff] [blame] | 1077 | BranchProbabilityPrinterPass::run(Function &F, FunctionAnalysisManager &AM) { | 
| Xinliang David Li | 6e5dd41 | 2016-05-05 02:59:57 +0000 | [diff] [blame] | 1078 | OS << "Printing analysis results of BPI for function " | 
|  | 1079 | << "'" << F.getName() << "':" | 
|  | 1080 | << "\n"; | 
|  | 1081 | AM.getResult<BranchProbabilityAnalysis>(F).print(OS); | 
|  | 1082 | return PreservedAnalyses::all(); | 
|  | 1083 | } |