Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 1 | //===- LoopReroll.cpp - Loop rerolling pass -------------------------------===// |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +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 | // This pass implements a simple loop reroller. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 14 | #include "llvm/ADT/APInt.h" |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/BitVector.h" |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/DenseMap.h" |
| 17 | #include "llvm/ADT/DenseSet.h" |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/MapVector.h" |
Chandler Carruth | 8a8cd2b | 2014-01-07 11:48:04 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/STLExtras.h" |
Florian Hahn | a1cc848 | 2018-06-12 11:16:56 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/SmallPtrSet.h" |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/SmallVector.h" |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/Statistic.h" |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 23 | #include "llvm/Analysis/AliasAnalysis.h" |
| 24 | #include "llvm/Analysis/AliasSetTracker.h" |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 25 | #include "llvm/Analysis/LoopInfo.h" |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 26 | #include "llvm/Analysis/LoopPass.h" |
| 27 | #include "llvm/Analysis/ScalarEvolution.h" |
| 28 | #include "llvm/Analysis/ScalarEvolutionExpander.h" |
| 29 | #include "llvm/Analysis/ScalarEvolutionExpressions.h" |
Benjamin Kramer | 799003b | 2015-03-23 19:32:43 +0000 | [diff] [blame] | 30 | #include "llvm/Analysis/TargetLibraryInfo.h" |
David Blaikie | 31b98d2 | 2018-06-04 21:23:21 +0000 | [diff] [blame] | 31 | #include "llvm/Transforms/Utils/Local.h" |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 32 | #include "llvm/Analysis/ValueTracking.h" |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 33 | #include "llvm/IR/BasicBlock.h" |
| 34 | #include "llvm/IR/Constants.h" |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 35 | #include "llvm/IR/DataLayout.h" |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 36 | #include "llvm/IR/DerivedTypes.h" |
Chandler Carruth | 5ad5f15 | 2014-01-13 09:26:24 +0000 | [diff] [blame] | 37 | #include "llvm/IR/Dominators.h" |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 38 | #include "llvm/IR/IRBuilder.h" |
| 39 | #include "llvm/IR/InstrTypes.h" |
| 40 | #include "llvm/IR/Instruction.h" |
| 41 | #include "llvm/IR/Instructions.h" |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 42 | #include "llvm/IR/IntrinsicInst.h" |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 43 | #include "llvm/IR/Intrinsics.h" |
| 44 | #include "llvm/IR/Module.h" |
| 45 | #include "llvm/IR/Type.h" |
| 46 | #include "llvm/IR/Use.h" |
| 47 | #include "llvm/IR/User.h" |
| 48 | #include "llvm/IR/Value.h" |
| 49 | #include "llvm/Pass.h" |
| 50 | #include "llvm/Support/Casting.h" |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 51 | #include "llvm/Support/CommandLine.h" |
| 52 | #include "llvm/Support/Debug.h" |
| 53 | #include "llvm/Support/raw_ostream.h" |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 54 | #include "llvm/Transforms/Scalar.h" |
David Blaikie | a373d18 | 2018-03-28 17:44:36 +0000 | [diff] [blame] | 55 | #include "llvm/Transforms/Utils.h" |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 56 | #include "llvm/Transforms/Utils/BasicBlockUtils.h" |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 57 | #include "llvm/Transforms/Utils/LoopUtils.h" |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 58 | #include <cassert> |
| 59 | #include <cstddef> |
| 60 | #include <cstdint> |
| 61 | #include <cstdlib> |
| 62 | #include <iterator> |
| 63 | #include <map> |
| 64 | #include <utility> |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 65 | |
| 66 | using namespace llvm; |
| 67 | |
Chandler Carruth | 964daaa | 2014-04-22 02:55:47 +0000 | [diff] [blame] | 68 | #define DEBUG_TYPE "loop-reroll" |
| 69 | |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 70 | STATISTIC(NumRerolledLoops, "Number of rerolled loops"); |
| 71 | |
| 72 | static cl::opt<unsigned> |
James Molloy | e805ad9 | 2015-02-12 15:54:14 +0000 | [diff] [blame] | 73 | NumToleratedFailedMatches("reroll-num-tolerated-failed-matches", cl::init(400), |
| 74 | cl::Hidden, |
| 75 | cl::desc("The maximum number of failures to tolerate" |
| 76 | " during fuzzy matching. (default: 400)")); |
| 77 | |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 78 | // This loop re-rolling transformation aims to transform loops like this: |
| 79 | // |
| 80 | // int foo(int a); |
| 81 | // void bar(int *x) { |
| 82 | // for (int i = 0; i < 500; i += 3) { |
| 83 | // foo(i); |
| 84 | // foo(i+1); |
| 85 | // foo(i+2); |
| 86 | // } |
| 87 | // } |
| 88 | // |
| 89 | // into a loop like this: |
| 90 | // |
| 91 | // void bar(int *x) { |
| 92 | // for (int i = 0; i < 500; ++i) |
| 93 | // foo(i); |
| 94 | // } |
| 95 | // |
| 96 | // It does this by looking for loops that, besides the latch code, are composed |
| 97 | // of isomorphic DAGs of instructions, with each DAG rooted at some increment |
| 98 | // to the induction variable, and where each DAG is isomorphic to the DAG |
| 99 | // rooted at the induction variable (excepting the sub-DAGs which root the |
| 100 | // other induction-variable increments). In other words, we're looking for loop |
| 101 | // bodies of the form: |
| 102 | // |
| 103 | // %iv = phi [ (preheader, ...), (body, %iv.next) ] |
| 104 | // f(%iv) |
| 105 | // %iv.1 = add %iv, 1 <-- a root increment |
| 106 | // f(%iv.1) |
| 107 | // %iv.2 = add %iv, 2 <-- a root increment |
| 108 | // f(%iv.2) |
| 109 | // %iv.scale_m_1 = add %iv, scale-1 <-- a root increment |
| 110 | // f(%iv.scale_m_1) |
| 111 | // ... |
| 112 | // %iv.next = add %iv, scale |
| 113 | // %cmp = icmp(%iv, ...) |
| 114 | // br %cmp, header, exit |
| 115 | // |
| 116 | // where each f(i) is a set of instructions that, collectively, are a function |
| 117 | // only of i (and other loop-invariant values). |
| 118 | // |
| 119 | // As a special case, we can also reroll loops like this: |
| 120 | // |
| 121 | // int foo(int); |
| 122 | // void bar(int *x) { |
| 123 | // for (int i = 0; i < 500; ++i) { |
| 124 | // x[3*i] = foo(0); |
| 125 | // x[3*i+1] = foo(0); |
| 126 | // x[3*i+2] = foo(0); |
| 127 | // } |
| 128 | // } |
| 129 | // |
| 130 | // into this: |
| 131 | // |
| 132 | // void bar(int *x) { |
| 133 | // for (int i = 0; i < 1500; ++i) |
| 134 | // x[i] = foo(0); |
| 135 | // } |
| 136 | // |
| 137 | // in which case, we're looking for inputs like this: |
| 138 | // |
| 139 | // %iv = phi [ (preheader, ...), (body, %iv.next) ] |
| 140 | // %scaled.iv = mul %iv, scale |
| 141 | // f(%scaled.iv) |
| 142 | // %scaled.iv.1 = add %scaled.iv, 1 |
| 143 | // f(%scaled.iv.1) |
| 144 | // %scaled.iv.2 = add %scaled.iv, 2 |
| 145 | // f(%scaled.iv.2) |
| 146 | // %scaled.iv.scale_m_1 = add %scaled.iv, scale-1 |
| 147 | // f(%scaled.iv.scale_m_1) |
| 148 | // ... |
| 149 | // %iv.next = add %iv, 1 |
| 150 | // %cmp = icmp(%iv, ...) |
| 151 | // br %cmp, header, exit |
| 152 | |
| 153 | namespace { |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 154 | |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 155 | enum IterationLimits { |
Elena Demikhovsky | 9914dbd | 2016-02-22 09:38:28 +0000 | [diff] [blame] | 156 | /// The maximum number of iterations that we'll try and reroll. |
| 157 | IL_MaxRerollIterations = 32, |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 158 | /// The bitvector index used by loop induction variables and other |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 159 | /// instructions that belong to all iterations. |
| 160 | IL_All, |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 161 | IL_End |
| 162 | }; |
| 163 | |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 164 | class LoopReroll : public LoopPass { |
| 165 | public: |
| 166 | static char ID; // Pass ID, replacement for typeid |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 167 | |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 168 | LoopReroll() : LoopPass(ID) { |
| 169 | initializeLoopRerollPass(*PassRegistry::getPassRegistry()); |
| 170 | } |
| 171 | |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 172 | bool runOnLoop(Loop *L, LPPassManager &LPM) override; |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 173 | |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 174 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
Chandler Carruth | b98f63d | 2015-01-15 10:41:28 +0000 | [diff] [blame] | 175 | AU.addRequired<TargetLibraryInfoWrapperPass>(); |
Chandler Carruth | 31088a9 | 2016-02-19 10:45:18 +0000 | [diff] [blame] | 176 | getLoopAnalysisUsage(AU); |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 177 | } |
| 178 | |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 179 | protected: |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 180 | AliasAnalysis *AA; |
| 181 | LoopInfo *LI; |
| 182 | ScalarEvolution *SE; |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 183 | TargetLibraryInfo *TLI; |
| 184 | DominatorTree *DT; |
Justin Bogner | 843fb20 | 2015-12-15 19:40:57 +0000 | [diff] [blame] | 185 | bool PreserveLCSSA; |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 186 | |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 187 | using SmallInstructionVector = SmallVector<Instruction *, 16>; |
Craig Topper | 6199828 | 2018-06-09 05:04:20 +0000 | [diff] [blame] | 188 | using SmallInstructionSet = SmallPtrSet<Instruction *, 16>; |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 189 | |
Lawrence Hu | dc8a83b | 2015-07-24 22:01:49 +0000 | [diff] [blame] | 190 | // Map between induction variable and its increment |
| 191 | DenseMap<Instruction *, int64_t> IVToIncMap; |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 192 | |
Lawrence Hu | 1befea2 | 2016-04-30 00:51:22 +0000 | [diff] [blame] | 193 | // For loop with multiple induction variable, remember the one used only to |
| 194 | // control the loop. |
| 195 | Instruction *LoopControlIV; |
Lawrence Hu | dc8a83b | 2015-07-24 22:01:49 +0000 | [diff] [blame] | 196 | |
| 197 | // A chain of isomorphic instructions, identified by a single-use PHI |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 198 | // representing a reduction. Only the last value may be used outside the |
| 199 | // loop. |
| 200 | struct SimpleLoopReduction { |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 201 | SimpleLoopReduction(Instruction *P, Loop *L) : Instructions(1, P) { |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 202 | assert(isa<PHINode>(P) && "First reduction instruction must be a PHI"); |
| 203 | add(L); |
| 204 | } |
| 205 | |
| 206 | bool valid() const { |
| 207 | return Valid; |
| 208 | } |
| 209 | |
| 210 | Instruction *getPHI() const { |
| 211 | assert(Valid && "Using invalid reduction"); |
| 212 | return Instructions.front(); |
| 213 | } |
| 214 | |
| 215 | Instruction *getReducedValue() const { |
| 216 | assert(Valid && "Using invalid reduction"); |
| 217 | return Instructions.back(); |
| 218 | } |
| 219 | |
| 220 | Instruction *get(size_t i) const { |
| 221 | assert(Valid && "Using invalid reduction"); |
| 222 | return Instructions[i+1]; |
| 223 | } |
| 224 | |
| 225 | Instruction *operator [] (size_t i) const { return get(i); } |
| 226 | |
| 227 | // The size, ignoring the initial PHI. |
| 228 | size_t size() const { |
| 229 | assert(Valid && "Using invalid reduction"); |
| 230 | return Instructions.size()-1; |
| 231 | } |
| 232 | |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 233 | using iterator = SmallInstructionVector::iterator; |
| 234 | using const_iterator = SmallInstructionVector::const_iterator; |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 235 | |
| 236 | iterator begin() { |
| 237 | assert(Valid && "Using invalid reduction"); |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 238 | return std::next(Instructions.begin()); |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | const_iterator begin() const { |
| 242 | assert(Valid && "Using invalid reduction"); |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 243 | return std::next(Instructions.begin()); |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | iterator end() { return Instructions.end(); } |
| 247 | const_iterator end() const { return Instructions.end(); } |
| 248 | |
| 249 | protected: |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 250 | bool Valid = false; |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 251 | SmallInstructionVector Instructions; |
| 252 | |
| 253 | void add(Loop *L); |
| 254 | }; |
| 255 | |
| 256 | // The set of all reductions, and state tracking of possible reductions |
| 257 | // during loop instruction processing. |
| 258 | struct ReductionTracker { |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 259 | using SmallReductionVector = SmallVector<SimpleLoopReduction, 16>; |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 260 | |
| 261 | // Add a new possible reduction. |
NAKAMURA Takumi | d0e13af | 2014-10-28 11:54:52 +0000 | [diff] [blame] | 262 | void addSLR(SimpleLoopReduction &SLR) { PossibleReds.push_back(SLR); } |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 263 | |
| 264 | // Setup to track possible reductions corresponding to the provided |
| 265 | // rerolling scale. Only reductions with a number of non-PHI instructions |
| 266 | // that is divisible by the scale are considered. Three instructions sets |
| 267 | // are filled in: |
| 268 | // - A set of all possible instructions in eligible reductions. |
| 269 | // - A set of all PHIs in eligible reductions |
NAKAMURA Takumi | d0e13af | 2014-10-28 11:54:52 +0000 | [diff] [blame] | 270 | // - A set of all reduced values (last instructions) in eligible |
| 271 | // reductions. |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 272 | void restrictToScale(uint64_t Scale, |
| 273 | SmallInstructionSet &PossibleRedSet, |
| 274 | SmallInstructionSet &PossibleRedPHISet, |
| 275 | SmallInstructionSet &PossibleRedLastSet) { |
| 276 | PossibleRedIdx.clear(); |
| 277 | PossibleRedIter.clear(); |
| 278 | Reds.clear(); |
| 279 | |
| 280 | for (unsigned i = 0, e = PossibleReds.size(); i != e; ++i) |
| 281 | if (PossibleReds[i].size() % Scale == 0) { |
| 282 | PossibleRedLastSet.insert(PossibleReds[i].getReducedValue()); |
| 283 | PossibleRedPHISet.insert(PossibleReds[i].getPHI()); |
NAKAMURA Takumi | 335a7bc | 2014-10-28 11:53:30 +0000 | [diff] [blame] | 284 | |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 285 | PossibleRedSet.insert(PossibleReds[i].getPHI()); |
| 286 | PossibleRedIdx[PossibleReds[i].getPHI()] = i; |
NAKAMURA Takumi | 5af50a5 | 2014-10-28 11:54:05 +0000 | [diff] [blame] | 287 | for (Instruction *J : PossibleReds[i]) { |
| 288 | PossibleRedSet.insert(J); |
| 289 | PossibleRedIdx[J] = i; |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 290 | } |
| 291 | } |
| 292 | } |
| 293 | |
| 294 | // The functions below are used while processing the loop instructions. |
| 295 | |
| 296 | // Are the two instructions both from reductions, and furthermore, from |
| 297 | // the same reduction? |
| 298 | bool isPairInSame(Instruction *J1, Instruction *J2) { |
| 299 | DenseMap<Instruction *, int>::iterator J1I = PossibleRedIdx.find(J1); |
| 300 | if (J1I != PossibleRedIdx.end()) { |
| 301 | DenseMap<Instruction *, int>::iterator J2I = PossibleRedIdx.find(J2); |
| 302 | if (J2I != PossibleRedIdx.end() && J1I->second == J2I->second) |
| 303 | return true; |
| 304 | } |
| 305 | |
| 306 | return false; |
| 307 | } |
| 308 | |
| 309 | // The two provided instructions, the first from the base iteration, and |
| 310 | // the second from iteration i, form a matched pair. If these are part of |
| 311 | // a reduction, record that fact. |
| 312 | void recordPair(Instruction *J1, Instruction *J2, unsigned i) { |
| 313 | if (PossibleRedIdx.count(J1)) { |
| 314 | assert(PossibleRedIdx.count(J2) && |
| 315 | "Recording reduction vs. non-reduction instruction?"); |
| 316 | |
| 317 | PossibleRedIter[J1] = 0; |
| 318 | PossibleRedIter[J2] = i; |
| 319 | |
| 320 | int Idx = PossibleRedIdx[J1]; |
| 321 | assert(Idx == PossibleRedIdx[J2] && |
| 322 | "Recording pair from different reductions?"); |
Hal Finkel | 67107ea | 2013-11-17 01:21:54 +0000 | [diff] [blame] | 323 | Reds.insert(Idx); |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 324 | } |
| 325 | } |
| 326 | |
| 327 | // The functions below can be called after we've finished processing all |
| 328 | // instructions in the loop, and we know which reductions were selected. |
| 329 | |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 330 | bool validateSelected(); |
| 331 | void replaceSelected(); |
| 332 | |
| 333 | protected: |
| 334 | // The vector of all possible reductions (for any scale). |
| 335 | SmallReductionVector PossibleReds; |
| 336 | |
| 337 | DenseMap<Instruction *, int> PossibleRedIdx; |
| 338 | DenseMap<Instruction *, int> PossibleRedIter; |
| 339 | DenseSet<int> Reds; |
| 340 | }; |
| 341 | |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 342 | // A DAGRootSet models an induction variable being used in a rerollable |
| 343 | // loop. For example, |
| 344 | // |
| 345 | // x[i*3+0] = y1 |
| 346 | // x[i*3+1] = y2 |
| 347 | // x[i*3+2] = y3 |
| 348 | // |
Lawrence Hu | dc8a83b | 2015-07-24 22:01:49 +0000 | [diff] [blame] | 349 | // Base instruction -> i*3 |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 350 | // +---+----+ |
| 351 | // / | \ |
| 352 | // ST[y1] +1 +2 <-- Roots |
| 353 | // | | |
| 354 | // ST[y2] ST[y3] |
| 355 | // |
| 356 | // There may be multiple DAGRoots, for example: |
| 357 | // |
| 358 | // x[i*2+0] = ... (1) |
| 359 | // x[i*2+1] = ... (1) |
| 360 | // x[i*2+4] = ... (2) |
| 361 | // x[i*2+5] = ... (2) |
| 362 | // x[(i+1234)*2+5678] = ... (3) |
| 363 | // x[(i+1234)*2+5679] = ... (3) |
| 364 | // |
| 365 | // The loop will be rerolled by adding a new loop induction variable, |
| 366 | // one for the Base instruction in each DAGRootSet. |
| 367 | // |
| 368 | struct DAGRootSet { |
| 369 | Instruction *BaseInst; |
| 370 | SmallInstructionVector Roots; |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 371 | |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 372 | // The instructions between IV and BaseInst (but not including BaseInst). |
| 373 | SmallInstructionSet SubsumedInsts; |
| 374 | }; |
| 375 | |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 376 | // The set of all DAG roots, and state tracking of all roots |
| 377 | // for a particular induction variable. |
| 378 | struct DAGRootTracker { |
| 379 | DAGRootTracker(LoopReroll *Parent, Loop *L, Instruction *IV, |
| 380 | ScalarEvolution *SE, AliasAnalysis *AA, |
Justin Bogner | 843fb20 | 2015-12-15 19:40:57 +0000 | [diff] [blame] | 381 | TargetLibraryInfo *TLI, DominatorTree *DT, LoopInfo *LI, |
| 382 | bool PreserveLCSSA, |
Lawrence Hu | 1befea2 | 2016-04-30 00:51:22 +0000 | [diff] [blame] | 383 | DenseMap<Instruction *, int64_t> &IncrMap, |
| 384 | Instruction *LoopCtrlIV) |
Justin Bogner | 843fb20 | 2015-12-15 19:40:57 +0000 | [diff] [blame] | 385 | : Parent(Parent), L(L), SE(SE), AA(AA), TLI(TLI), DT(DT), LI(LI), |
Lawrence Hu | 1befea2 | 2016-04-30 00:51:22 +0000 | [diff] [blame] | 386 | PreserveLCSSA(PreserveLCSSA), IV(IV), IVToIncMap(IncrMap), |
| 387 | LoopControlIV(LoopCtrlIV) {} |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 388 | |
| 389 | /// Stage 1: Find all the DAG roots for the induction variable. |
| 390 | bool findRoots(); |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 391 | |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 392 | /// Stage 2: Validate if the found roots are valid. |
| 393 | bool validate(ReductionTracker &Reductions); |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 394 | |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 395 | /// Stage 3: Assuming validate() returned true, perform the |
| 396 | /// replacement. |
Eli Friedman | 203eaaf | 2018-06-22 22:58:55 +0000 | [diff] [blame] | 397 | /// @param BackedgeTakenCount The backedge-taken count of L. |
| 398 | void replace(const SCEV *BackedgeTakenCount); |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 399 | |
| 400 | protected: |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 401 | using UsesTy = MapVector<Instruction *, BitVector>; |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 402 | |
Eli Friedman | c0bba1a | 2016-11-21 22:35:34 +0000 | [diff] [blame] | 403 | void findRootsRecursive(Instruction *IVU, |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 404 | SmallInstructionSet SubsumedInsts); |
| 405 | bool findRootsBase(Instruction *IVU, SmallInstructionSet SubsumedInsts); |
| 406 | bool collectPossibleRoots(Instruction *Base, |
| 407 | std::map<int64_t,Instruction*> &Roots); |
Eli Friedman | c0bba1a | 2016-11-21 22:35:34 +0000 | [diff] [blame] | 408 | bool validateRootSet(DAGRootSet &DRS); |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 409 | |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 410 | bool collectUsedInstructions(SmallInstructionSet &PossibleRedSet); |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 411 | void collectInLoopUserSet(const SmallInstructionVector &Roots, |
| 412 | const SmallInstructionSet &Exclude, |
| 413 | const SmallInstructionSet &Final, |
| 414 | DenseSet<Instruction *> &Users); |
| 415 | void collectInLoopUserSet(Instruction *Root, |
| 416 | const SmallInstructionSet &Exclude, |
| 417 | const SmallInstructionSet &Final, |
| 418 | DenseSet<Instruction *> &Users); |
| 419 | |
James Molloy | e805ad9 | 2015-02-12 15:54:14 +0000 | [diff] [blame] | 420 | UsesTy::iterator nextInstr(int Val, UsesTy &In, |
| 421 | const SmallInstructionSet &Exclude, |
| 422 | UsesTy::iterator *StartI=nullptr); |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 423 | bool isBaseInst(Instruction *I); |
| 424 | bool isRootInst(Instruction *I); |
James Molloy | e805ad9 | 2015-02-12 15:54:14 +0000 | [diff] [blame] | 425 | bool instrDependsOn(Instruction *I, |
| 426 | UsesTy::iterator Start, |
| 427 | UsesTy::iterator End); |
Eli Friedman | 203eaaf | 2018-06-22 22:58:55 +0000 | [diff] [blame] | 428 | void replaceIV(DAGRootSet &DRS, const SCEV *Start, const SCEV *IncrExpr); |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 429 | |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 430 | LoopReroll *Parent; |
| 431 | |
| 432 | // Members of Parent, replicated here for brevity. |
| 433 | Loop *L; |
| 434 | ScalarEvolution *SE; |
| 435 | AliasAnalysis *AA; |
| 436 | TargetLibraryInfo *TLI; |
Justin Bogner | 843fb20 | 2015-12-15 19:40:57 +0000 | [diff] [blame] | 437 | DominatorTree *DT; |
| 438 | LoopInfo *LI; |
| 439 | bool PreserveLCSSA; |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 440 | |
| 441 | // The loop induction variable. |
| 442 | Instruction *IV; |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 443 | |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 444 | // Loop step amount. |
Lawrence Hu | dc8a83b | 2015-07-24 22:01:49 +0000 | [diff] [blame] | 445 | int64_t Inc; |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 446 | |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 447 | // Loop reroll count; if Inc == 1, this records the scaling applied |
| 448 | // to the indvar: a[i*2+0] = ...; a[i*2+1] = ... ; |
| 449 | // If Inc is not 1, Scale = Inc. |
| 450 | uint64_t Scale; |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 451 | |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 452 | // The roots themselves. |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 453 | SmallVector<DAGRootSet,16> RootSets; |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 454 | |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 455 | // All increment instructions for IV. |
| 456 | SmallInstructionVector LoopIncs; |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 457 | |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 458 | // Map of all instructions in the loop (in order) to the iterations |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 459 | // they are used in (or specially, IL_All for instructions |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 460 | // used in the loop increment mechanism). |
| 461 | UsesTy Uses; |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 462 | |
Lawrence Hu | dc8a83b | 2015-07-24 22:01:49 +0000 | [diff] [blame] | 463 | // Map between induction variable and its increment |
| 464 | DenseMap<Instruction *, int64_t> &IVToIncMap; |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 465 | |
Lawrence Hu | 1befea2 | 2016-04-30 00:51:22 +0000 | [diff] [blame] | 466 | Instruction *LoopControlIV; |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 467 | }; |
| 468 | |
Lawrence Hu | 1befea2 | 2016-04-30 00:51:22 +0000 | [diff] [blame] | 469 | // Check if it is a compare-like instruction whose user is a branch |
| 470 | bool isCompareUsedByBranch(Instruction *I) { |
| 471 | auto *TI = I->getParent()->getTerminator(); |
| 472 | if (!isa<BranchInst>(TI) || !isa<CmpInst>(I)) |
| 473 | return false; |
| 474 | return I->hasOneUse() && TI->getOperand(0) == I; |
| 475 | }; |
| 476 | |
| 477 | bool isLoopControlIV(Loop *L, Instruction *IV); |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 478 | void collectPossibleIVs(Loop *L, SmallInstructionVector &PossibleIVs); |
| 479 | void collectPossibleReductions(Loop *L, |
| 480 | ReductionTracker &Reductions); |
Eli Friedman | 203eaaf | 2018-06-22 22:58:55 +0000 | [diff] [blame] | 481 | bool reroll(Instruction *IV, Loop *L, BasicBlock *Header, |
| 482 | const SCEV *BackedgeTakenCount, ReductionTracker &Reductions); |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 483 | }; |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 484 | |
| 485 | } // end anonymous namespace |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 486 | |
| 487 | char LoopReroll::ID = 0; |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 488 | |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 489 | INITIALIZE_PASS_BEGIN(LoopReroll, "loop-reroll", "Reroll loops", false, false) |
Chandler Carruth | 31088a9 | 2016-02-19 10:45:18 +0000 | [diff] [blame] | 490 | INITIALIZE_PASS_DEPENDENCY(LoopPass) |
Chandler Carruth | b98f63d | 2015-01-15 10:41:28 +0000 | [diff] [blame] | 491 | INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass) |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 492 | INITIALIZE_PASS_END(LoopReroll, "loop-reroll", "Reroll loops", false, false) |
| 493 | |
| 494 | Pass *llvm::createLoopRerollPass() { |
| 495 | return new LoopReroll; |
| 496 | } |
| 497 | |
| 498 | // Returns true if the provided instruction is used outside the given loop. |
| 499 | // This operates like Instruction::isUsedOutsideOfBlock, but considers PHIs in |
| 500 | // non-loop blocks to be outside the loop. |
| 501 | static bool hasUsesOutsideLoop(Instruction *I, Loop *L) { |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 502 | for (User *U : I->users()) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 503 | if (!L->contains(cast<Instruction>(U))) |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 504 | return true; |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 505 | } |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 506 | return false; |
| 507 | } |
| 508 | |
Lawrence Hu | 1befea2 | 2016-04-30 00:51:22 +0000 | [diff] [blame] | 509 | // Check if an IV is only used to control the loop. There are two cases: |
| 510 | // 1. It only has one use which is loop increment, and the increment is only |
Lawrence Hu | e58a814 | 2016-05-10 21:16:49 +0000 | [diff] [blame] | 511 | // used by comparison and the PHI (could has sext with nsw in between), and the |
| 512 | // comparison is only used by branch. |
Lawrence Hu | 1befea2 | 2016-04-30 00:51:22 +0000 | [diff] [blame] | 513 | // 2. It is used by loop increment and the comparison, the loop increment is |
| 514 | // only used by the PHI, and the comparison is used only by the branch. |
| 515 | bool LoopReroll::isLoopControlIV(Loop *L, Instruction *IV) { |
Lawrence Hu | 1befea2 | 2016-04-30 00:51:22 +0000 | [diff] [blame] | 516 | unsigned IVUses = IV->getNumUses(); |
| 517 | if (IVUses != 2 && IVUses != 1) |
| 518 | return false; |
| 519 | |
| 520 | for (auto *User : IV->users()) { |
| 521 | int32_t IncOrCmpUses = User->getNumUses(); |
| 522 | bool IsCompInst = isCompareUsedByBranch(cast<Instruction>(User)); |
| 523 | |
| 524 | // User can only have one or two uses. |
| 525 | if (IncOrCmpUses != 2 && IncOrCmpUses != 1) |
| 526 | return false; |
| 527 | |
| 528 | // Case 1 |
| 529 | if (IVUses == 1) { |
| 530 | // The only user must be the loop increment. |
| 531 | // The loop increment must have two uses. |
| 532 | if (IsCompInst || IncOrCmpUses != 2) |
| 533 | return false; |
| 534 | } |
| 535 | |
| 536 | // Case 2 |
| 537 | if (IVUses == 2 && IncOrCmpUses != 1) |
| 538 | return false; |
| 539 | |
| 540 | // The users of the IV must be a binary operation or a comparison |
| 541 | if (auto *BO = dyn_cast<BinaryOperator>(User)) { |
| 542 | if (BO->getOpcode() == Instruction::Add) { |
| 543 | // Loop Increment |
| 544 | // User of Loop Increment should be either PHI or CMP |
| 545 | for (auto *UU : User->users()) { |
| 546 | if (PHINode *PN = dyn_cast<PHINode>(UU)) { |
| 547 | if (PN != IV) |
| 548 | return false; |
| 549 | } |
Lawrence Hu | e58a814 | 2016-05-10 21:16:49 +0000 | [diff] [blame] | 550 | // Must be a CMP or an ext (of a value with nsw) then CMP |
| 551 | else { |
| 552 | Instruction *UUser = dyn_cast<Instruction>(UU); |
| 553 | // Skip SExt if we are extending an nsw value |
| 554 | // TODO: Allow ZExt too |
Zvi Rackover | d942397 | 2017-04-18 14:55:43 +0000 | [diff] [blame] | 555 | if (BO->hasNoSignedWrap() && UUser && UUser->hasOneUse() && |
Lawrence Hu | e58a814 | 2016-05-10 21:16:49 +0000 | [diff] [blame] | 556 | isa<SExtInst>(UUser)) |
| 557 | UUser = dyn_cast<Instruction>(*(UUser->user_begin())); |
| 558 | if (!isCompareUsedByBranch(UUser)) |
| 559 | return false; |
| 560 | } |
Lawrence Hu | 1befea2 | 2016-04-30 00:51:22 +0000 | [diff] [blame] | 561 | } |
| 562 | } else |
| 563 | return false; |
| 564 | // Compare : can only have one use, and must be branch |
| 565 | } else if (!IsCompInst) |
| 566 | return false; |
| 567 | } |
| 568 | return true; |
| 569 | } |
| 570 | |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 571 | // Collect the list of loop induction variables with respect to which it might |
| 572 | // be possible to reroll the loop. |
| 573 | void LoopReroll::collectPossibleIVs(Loop *L, |
| 574 | SmallInstructionVector &PossibleIVs) { |
| 575 | BasicBlock *Header = L->getHeader(); |
| 576 | for (BasicBlock::iterator I = Header->begin(), |
| 577 | IE = Header->getFirstInsertionPt(); I != IE; ++I) { |
| 578 | if (!isa<PHINode>(I)) |
| 579 | continue; |
Lawrence Hu | d3d5106 | 2016-01-25 19:43:45 +0000 | [diff] [blame] | 580 | if (!I->getType()->isIntegerTy() && !I->getType()->isPointerTy()) |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 581 | continue; |
| 582 | |
| 583 | if (const SCEVAddRecExpr *PHISCEV = |
Duncan P. N. Exon Smith | be4d8cb | 2015-10-13 19:26:58 +0000 | [diff] [blame] | 584 | dyn_cast<SCEVAddRecExpr>(SE->getSCEV(&*I))) { |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 585 | if (PHISCEV->getLoop() != L) |
| 586 | continue; |
| 587 | if (!PHISCEV->isAffine()) |
| 588 | continue; |
Eli Friedman | 203eaaf | 2018-06-22 22:58:55 +0000 | [diff] [blame] | 589 | auto IncSCEV = dyn_cast<SCEVConstant>(PHISCEV->getStepRecurrence(*SE)); |
Lawrence Hu | d3d5106 | 2016-01-25 19:43:45 +0000 | [diff] [blame] | 590 | if (IncSCEV) { |
Duncan P. N. Exon Smith | be4d8cb | 2015-10-13 19:26:58 +0000 | [diff] [blame] | 591 | IVToIncMap[&*I] = IncSCEV->getValue()->getSExtValue(); |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 592 | LLVM_DEBUG(dbgs() << "LRR: Possible IV: " << *I << " = " << *PHISCEV |
| 593 | << "\n"); |
Lawrence Hu | 1befea2 | 2016-04-30 00:51:22 +0000 | [diff] [blame] | 594 | |
| 595 | if (isLoopControlIV(L, &*I)) { |
| 596 | assert(!LoopControlIV && "Found two loop control only IV"); |
| 597 | LoopControlIV = &(*I); |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 598 | LLVM_DEBUG(dbgs() << "LRR: Possible loop control only IV: " << *I |
| 599 | << " = " << *PHISCEV << "\n"); |
Lawrence Hu | 1befea2 | 2016-04-30 00:51:22 +0000 | [diff] [blame] | 600 | } else |
| 601 | PossibleIVs.push_back(&*I); |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 602 | } |
| 603 | } |
| 604 | } |
| 605 | } |
| 606 | |
| 607 | // Add the remainder of the reduction-variable chain to the instruction vector |
| 608 | // (the initial PHINode has already been added). If successful, the object is |
| 609 | // marked as valid. |
| 610 | void LoopReroll::SimpleLoopReduction::add(Loop *L) { |
| 611 | assert(!Valid && "Cannot add to an already-valid chain"); |
| 612 | |
| 613 | // The reduction variable must be a chain of single-use instructions |
| 614 | // (including the PHI), except for the last value (which is used by the PHI |
| 615 | // and also outside the loop). |
| 616 | Instruction *C = Instructions.front(); |
James Molloy | 4c7deb2 | 2015-02-16 17:01:52 +0000 | [diff] [blame] | 617 | if (C->user_empty()) |
| 618 | return; |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 619 | |
| 620 | do { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 621 | C = cast<Instruction>(*C->user_begin()); |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 622 | if (C->hasOneUse()) { |
| 623 | if (!C->isBinaryOp()) |
| 624 | return; |
| 625 | |
| 626 | if (!(isa<PHINode>(Instructions.back()) || |
| 627 | C->isSameOperationAs(Instructions.back()))) |
| 628 | return; |
| 629 | |
| 630 | Instructions.push_back(C); |
| 631 | } |
| 632 | } while (C->hasOneUse()); |
| 633 | |
| 634 | if (Instructions.size() < 2 || |
| 635 | !C->isSameOperationAs(Instructions.back()) || |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 636 | C->use_empty()) |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 637 | return; |
| 638 | |
| 639 | // C is now the (potential) last instruction in the reduction chain. |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 640 | for (User *U : C->users()) { |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 641 | // The only in-loop user can be the initial PHI. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 642 | if (L->contains(cast<Instruction>(U))) |
| 643 | if (cast<Instruction>(U) != Instructions.front()) |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 644 | return; |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 645 | } |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 646 | |
| 647 | Instructions.push_back(C); |
| 648 | Valid = true; |
| 649 | } |
| 650 | |
| 651 | // Collect the vector of possible reduction variables. |
| 652 | void LoopReroll::collectPossibleReductions(Loop *L, |
| 653 | ReductionTracker &Reductions) { |
| 654 | BasicBlock *Header = L->getHeader(); |
| 655 | for (BasicBlock::iterator I = Header->begin(), |
| 656 | IE = Header->getFirstInsertionPt(); I != IE; ++I) { |
| 657 | if (!isa<PHINode>(I)) |
| 658 | continue; |
| 659 | if (!I->getType()->isSingleValueType()) |
| 660 | continue; |
| 661 | |
Duncan P. N. Exon Smith | be4d8cb | 2015-10-13 19:26:58 +0000 | [diff] [blame] | 662 | SimpleLoopReduction SLR(&*I, L); |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 663 | if (!SLR.valid()) |
| 664 | continue; |
| 665 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 666 | LLVM_DEBUG(dbgs() << "LRR: Possible reduction: " << *I << " (with " |
| 667 | << SLR.size() << " chained instructions)\n"); |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 668 | Reductions.addSLR(SLR); |
| 669 | } |
| 670 | } |
| 671 | |
| 672 | // Collect the set of all users of the provided root instruction. This set of |
| 673 | // users contains not only the direct users of the root instruction, but also |
| 674 | // all users of those users, and so on. There are two exceptions: |
| 675 | // |
| 676 | // 1. Instructions in the set of excluded instructions are never added to the |
| 677 | // use set (even if they are users). This is used, for example, to exclude |
| 678 | // including root increments in the use set of the primary IV. |
| 679 | // |
| 680 | // 2. Instructions in the set of final instructions are added to the use set |
| 681 | // if they are users, but their users are not added. This is used, for |
| 682 | // example, to prevent a reduction update from forcing all later reduction |
| 683 | // updates into the use set. |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 684 | void LoopReroll::DAGRootTracker::collectInLoopUserSet( |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 685 | Instruction *Root, const SmallInstructionSet &Exclude, |
| 686 | const SmallInstructionSet &Final, |
| 687 | DenseSet<Instruction *> &Users) { |
| 688 | SmallInstructionVector Queue(1, Root); |
| 689 | while (!Queue.empty()) { |
| 690 | Instruction *I = Queue.pop_back_val(); |
| 691 | if (!Users.insert(I).second) |
| 692 | continue; |
| 693 | |
| 694 | if (!Final.count(I)) |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 695 | for (Use &U : I->uses()) { |
| 696 | Instruction *User = cast<Instruction>(U.getUser()); |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 697 | if (PHINode *PN = dyn_cast<PHINode>(User)) { |
| 698 | // Ignore "wrap-around" uses to PHIs of this loop's header. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 699 | if (PN->getIncomingBlock(U) == L->getHeader()) |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 700 | continue; |
| 701 | } |
NAKAMURA Takumi | 335a7bc | 2014-10-28 11:53:30 +0000 | [diff] [blame] | 702 | |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 703 | if (L->contains(User) && !Exclude.count(User)) { |
| 704 | Queue.push_back(User); |
| 705 | } |
| 706 | } |
| 707 | |
| 708 | // We also want to collect single-user "feeder" values. |
| 709 | for (User::op_iterator OI = I->op_begin(), |
| 710 | OIE = I->op_end(); OI != OIE; ++OI) { |
| 711 | if (Instruction *Op = dyn_cast<Instruction>(*OI)) |
| 712 | if (Op->hasOneUse() && L->contains(Op) && !Exclude.count(Op) && |
| 713 | !Final.count(Op)) |
| 714 | Queue.push_back(Op); |
| 715 | } |
| 716 | } |
| 717 | } |
| 718 | |
| 719 | // Collect all of the users of all of the provided root instructions (combined |
| 720 | // into a single set). |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 721 | void LoopReroll::DAGRootTracker::collectInLoopUserSet( |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 722 | const SmallInstructionVector &Roots, |
| 723 | const SmallInstructionSet &Exclude, |
| 724 | const SmallInstructionSet &Final, |
| 725 | DenseSet<Instruction *> &Users) { |
Benjamin Kramer | 135f735 | 2016-06-26 12:28:59 +0000 | [diff] [blame] | 726 | for (Instruction *Root : Roots) |
| 727 | collectInLoopUserSet(Root, Exclude, Final, Users); |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 728 | } |
| 729 | |
Sanjoy Das | ab73c9d | 2016-07-19 00:23:54 +0000 | [diff] [blame] | 730 | static bool isUnorderedLoadStore(Instruction *I) { |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 731 | if (LoadInst *LI = dyn_cast<LoadInst>(I)) |
Sanjoy Das | ab73c9d | 2016-07-19 00:23:54 +0000 | [diff] [blame] | 732 | return LI->isUnordered(); |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 733 | if (StoreInst *SI = dyn_cast<StoreInst>(I)) |
Sanjoy Das | ab73c9d | 2016-07-19 00:23:54 +0000 | [diff] [blame] | 734 | return SI->isUnordered(); |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 735 | if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I)) |
| 736 | return !MI->isVolatile(); |
| 737 | return false; |
| 738 | } |
| 739 | |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 740 | /// Return true if IVU is a "simple" arithmetic operation. |
| 741 | /// This is used for narrowing the search space for DAGRoots; only arithmetic |
| 742 | /// and GEPs can be part of a DAGRoot. |
| 743 | static bool isSimpleArithmeticOp(User *IVU) { |
| 744 | if (Instruction *I = dyn_cast<Instruction>(IVU)) { |
| 745 | switch (I->getOpcode()) { |
| 746 | default: return false; |
| 747 | case Instruction::Add: |
| 748 | case Instruction::Sub: |
| 749 | case Instruction::Mul: |
| 750 | case Instruction::Shl: |
| 751 | case Instruction::AShr: |
| 752 | case Instruction::LShr: |
| 753 | case Instruction::GetElementPtr: |
| 754 | case Instruction::Trunc: |
| 755 | case Instruction::ZExt: |
| 756 | case Instruction::SExt: |
| 757 | return true; |
| 758 | } |
| 759 | } |
| 760 | return false; |
| 761 | } |
| 762 | |
| 763 | static bool isLoopIncrement(User *U, Instruction *IV) { |
| 764 | BinaryOperator *BO = dyn_cast<BinaryOperator>(U); |
Lawrence Hu | d3d5106 | 2016-01-25 19:43:45 +0000 | [diff] [blame] | 765 | |
| 766 | if ((BO && BO->getOpcode() != Instruction::Add) || |
| 767 | (!BO && !isa<GetElementPtrInst>(U))) |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 768 | return false; |
| 769 | |
Lawrence Hu | d3d5106 | 2016-01-25 19:43:45 +0000 | [diff] [blame] | 770 | for (auto *UU : U->users()) { |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 771 | PHINode *PN = dyn_cast<PHINode>(UU); |
| 772 | if (PN && PN == IV) |
| 773 | return true; |
| 774 | } |
| 775 | return false; |
| 776 | } |
| 777 | |
| 778 | bool LoopReroll::DAGRootTracker:: |
| 779 | collectPossibleRoots(Instruction *Base, std::map<int64_t,Instruction*> &Roots) { |
| 780 | SmallInstructionVector BaseUsers; |
| 781 | |
| 782 | for (auto *I : Base->users()) { |
| 783 | ConstantInt *CI = nullptr; |
| 784 | |
| 785 | if (isLoopIncrement(I, IV)) { |
| 786 | LoopIncs.push_back(cast<Instruction>(I)); |
| 787 | continue; |
| 788 | } |
| 789 | |
| 790 | // The root nodes must be either GEPs, ORs or ADDs. |
| 791 | if (auto *BO = dyn_cast<BinaryOperator>(I)) { |
| 792 | if (BO->getOpcode() == Instruction::Add || |
| 793 | BO->getOpcode() == Instruction::Or) |
| 794 | CI = dyn_cast<ConstantInt>(BO->getOperand(1)); |
| 795 | } else if (auto *GEP = dyn_cast<GetElementPtrInst>(I)) { |
| 796 | Value *LastOperand = GEP->getOperand(GEP->getNumOperands()-1); |
| 797 | CI = dyn_cast<ConstantInt>(LastOperand); |
| 798 | } |
| 799 | |
| 800 | if (!CI) { |
| 801 | if (Instruction *II = dyn_cast<Instruction>(I)) { |
| 802 | BaseUsers.push_back(II); |
| 803 | continue; |
| 804 | } else { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 805 | LLVM_DEBUG(dbgs() << "LRR: Aborting due to non-instruction: " << *I |
| 806 | << "\n"); |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 807 | return false; |
| 808 | } |
| 809 | } |
| 810 | |
Lawrence Hu | dc8a83b | 2015-07-24 22:01:49 +0000 | [diff] [blame] | 811 | int64_t V = std::abs(CI->getValue().getSExtValue()); |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 812 | if (Roots.find(V) != Roots.end()) |
| 813 | // No duplicates, please. |
| 814 | return false; |
| 815 | |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 816 | Roots[V] = cast<Instruction>(I); |
| 817 | } |
| 818 | |
Eli Friedman | c0bba1a | 2016-11-21 22:35:34 +0000 | [diff] [blame] | 819 | // Make sure we have at least two roots. |
| 820 | if (Roots.empty() || (Roots.size() == 1 && BaseUsers.empty())) |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 821 | return false; |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 822 | |
| 823 | // If we found non-loop-inc, non-root users of Base, assume they are |
| 824 | // for the zeroth root index. This is because "add %a, 0" gets optimized |
| 825 | // away. |
James Molloy | e32d806 | 2015-02-16 17:02:00 +0000 | [diff] [blame] | 826 | if (BaseUsers.size()) { |
| 827 | if (Roots.find(0) != Roots.end()) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 828 | LLVM_DEBUG(dbgs() << "LRR: Multiple roots found for base - aborting!\n"); |
James Molloy | e32d806 | 2015-02-16 17:02:00 +0000 | [diff] [blame] | 829 | return false; |
| 830 | } |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 831 | Roots[0] = Base; |
James Molloy | e32d806 | 2015-02-16 17:02:00 +0000 | [diff] [blame] | 832 | } |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 833 | |
| 834 | // Calculate the number of users of the base, or lowest indexed, iteration. |
| 835 | unsigned NumBaseUses = BaseUsers.size(); |
| 836 | if (NumBaseUses == 0) |
| 837 | NumBaseUses = Roots.begin()->second->getNumUses(); |
Lawrence Hu | dc8a83b | 2015-07-24 22:01:49 +0000 | [diff] [blame] | 838 | |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 839 | // Check that every node has the same number of users. |
| 840 | for (auto &KV : Roots) { |
| 841 | if (KV.first == 0) |
| 842 | continue; |
Davide Italiano | 80fe987 | 2017-04-18 21:42:21 +0000 | [diff] [blame] | 843 | if (!KV.second->hasNUses(NumBaseUses)) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 844 | LLVM_DEBUG(dbgs() << "LRR: Aborting - Root and Base #users not the same: " |
| 845 | << "#Base=" << NumBaseUses |
| 846 | << ", #Root=" << KV.second->getNumUses() << "\n"); |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 847 | return false; |
| 848 | } |
| 849 | } |
| 850 | |
Lawrence Hu | dc8a83b | 2015-07-24 22:01:49 +0000 | [diff] [blame] | 851 | return true; |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 852 | } |
| 853 | |
Eli Friedman | c0bba1a | 2016-11-21 22:35:34 +0000 | [diff] [blame] | 854 | void LoopReroll::DAGRootTracker:: |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 855 | findRootsRecursive(Instruction *I, SmallInstructionSet SubsumedInsts) { |
| 856 | // Does the user look like it could be part of a root set? |
| 857 | // All its users must be simple arithmetic ops. |
Davide Italiano | 80fe987 | 2017-04-18 21:42:21 +0000 | [diff] [blame] | 858 | if (I->hasNUsesOrMore(IL_MaxRerollIterations + 1)) |
Eli Friedman | c0bba1a | 2016-11-21 22:35:34 +0000 | [diff] [blame] | 859 | return; |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 860 | |
Eli Friedman | c0bba1a | 2016-11-21 22:35:34 +0000 | [diff] [blame] | 861 | if (I != IV && findRootsBase(I, SubsumedInsts)) |
| 862 | return; |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 863 | |
| 864 | SubsumedInsts.insert(I); |
| 865 | |
| 866 | for (User *V : I->users()) { |
Eli Friedman | c0bba1a | 2016-11-21 22:35:34 +0000 | [diff] [blame] | 867 | Instruction *I = cast<Instruction>(V); |
David Majnemer | 0d955d0 | 2016-08-11 22:21:41 +0000 | [diff] [blame] | 868 | if (is_contained(LoopIncs, I)) |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 869 | continue; |
| 870 | |
Eli Friedman | c0bba1a | 2016-11-21 22:35:34 +0000 | [diff] [blame] | 871 | if (!isSimpleArithmeticOp(I)) |
| 872 | continue; |
| 873 | |
| 874 | // The recursive call makes a copy of SubsumedInsts. |
| 875 | findRootsRecursive(I, SubsumedInsts); |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 876 | } |
Eli Friedman | c0bba1a | 2016-11-21 22:35:34 +0000 | [diff] [blame] | 877 | } |
| 878 | |
| 879 | bool LoopReroll::DAGRootTracker::validateRootSet(DAGRootSet &DRS) { |
| 880 | if (DRS.Roots.empty()) |
| 881 | return false; |
| 882 | |
| 883 | // Consider a DAGRootSet with N-1 roots (so N different values including |
| 884 | // BaseInst). |
| 885 | // Define d = Roots[0] - BaseInst, which should be the same as |
| 886 | // Roots[I] - Roots[I-1] for all I in [1..N). |
| 887 | // Define D = BaseInst@J - BaseInst@J-1, where "@J" means the value at the |
| 888 | // loop iteration J. |
| 889 | // |
| 890 | // Now, For the loop iterations to be consecutive: |
| 891 | // D = d * N |
| 892 | const auto *ADR = dyn_cast<SCEVAddRecExpr>(SE->getSCEV(DRS.BaseInst)); |
| 893 | if (!ADR) |
| 894 | return false; |
| 895 | unsigned N = DRS.Roots.size() + 1; |
| 896 | const SCEV *StepSCEV = SE->getMinusSCEV(SE->getSCEV(DRS.Roots[0]), ADR); |
| 897 | const SCEV *ScaleSCEV = SE->getConstant(StepSCEV->getType(), N); |
| 898 | if (ADR->getStepRecurrence(*SE) != SE->getMulExpr(StepSCEV, ScaleSCEV)) |
| 899 | return false; |
| 900 | |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 901 | return true; |
| 902 | } |
| 903 | |
| 904 | bool LoopReroll::DAGRootTracker:: |
| 905 | findRootsBase(Instruction *IVU, SmallInstructionSet SubsumedInsts) { |
Eli Friedman | c0bba1a | 2016-11-21 22:35:34 +0000 | [diff] [blame] | 906 | // The base of a RootSet must be an AddRec, so it can be erased. |
| 907 | const auto *IVU_ADR = dyn_cast<SCEVAddRecExpr>(SE->getSCEV(IVU)); |
| 908 | if (!IVU_ADR || IVU_ADR->getLoop() != L) |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 909 | return false; |
| 910 | |
| 911 | std::map<int64_t, Instruction*> V; |
| 912 | if (!collectPossibleRoots(IVU, V)) |
| 913 | return false; |
| 914 | |
Lawrence Hu | dc8a83b | 2015-07-24 22:01:49 +0000 | [diff] [blame] | 915 | // If we didn't get a root for index zero, then IVU must be |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 916 | // subsumed. |
| 917 | if (V.find(0) == V.end()) |
| 918 | SubsumedInsts.insert(IVU); |
| 919 | |
| 920 | // Partition the vector into monotonically increasing indexes. |
| 921 | DAGRootSet DRS; |
| 922 | DRS.BaseInst = nullptr; |
| 923 | |
Eli Friedman | c0bba1a | 2016-11-21 22:35:34 +0000 | [diff] [blame] | 924 | SmallVector<DAGRootSet, 16> PotentialRootSets; |
| 925 | |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 926 | for (auto &KV : V) { |
| 927 | if (!DRS.BaseInst) { |
| 928 | DRS.BaseInst = KV.second; |
| 929 | DRS.SubsumedInsts = SubsumedInsts; |
| 930 | } else if (DRS.Roots.empty()) { |
| 931 | DRS.Roots.push_back(KV.second); |
| 932 | } else if (V.find(KV.first - 1) != V.end()) { |
| 933 | DRS.Roots.push_back(KV.second); |
| 934 | } else { |
| 935 | // Linear sequence terminated. |
Eli Friedman | c0bba1a | 2016-11-21 22:35:34 +0000 | [diff] [blame] | 936 | if (!validateRootSet(DRS)) |
| 937 | return false; |
| 938 | |
| 939 | // Construct a new DAGRootSet with the next sequence. |
| 940 | PotentialRootSets.push_back(DRS); |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 941 | DRS.BaseInst = KV.second; |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 942 | DRS.Roots.clear(); |
| 943 | } |
| 944 | } |
Eli Friedman | c0bba1a | 2016-11-21 22:35:34 +0000 | [diff] [blame] | 945 | |
| 946 | if (!validateRootSet(DRS)) |
| 947 | return false; |
| 948 | |
| 949 | PotentialRootSets.push_back(DRS); |
| 950 | |
| 951 | RootSets.append(PotentialRootSets.begin(), PotentialRootSets.end()); |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 952 | |
| 953 | return true; |
| 954 | } |
| 955 | |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 956 | bool LoopReroll::DAGRootTracker::findRoots() { |
Lawrence Hu | dc8a83b | 2015-07-24 22:01:49 +0000 | [diff] [blame] | 957 | Inc = IVToIncMap[IV]; |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 958 | |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 959 | assert(RootSets.empty() && "Unclean state!"); |
Lawrence Hu | dc8a83b | 2015-07-24 22:01:49 +0000 | [diff] [blame] | 960 | if (std::abs(Inc) == 1) { |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 961 | for (auto *IVU : IV->users()) { |
| 962 | if (isLoopIncrement(IVU, IV)) |
| 963 | LoopIncs.push_back(cast<Instruction>(IVU)); |
| 964 | } |
Eli Friedman | c0bba1a | 2016-11-21 22:35:34 +0000 | [diff] [blame] | 965 | findRootsRecursive(IV, SmallInstructionSet()); |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 966 | LoopIncs.push_back(IV); |
| 967 | } else { |
| 968 | if (!findRootsBase(IV, SmallInstructionSet())) |
| 969 | return false; |
| 970 | } |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 971 | |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 972 | // Ensure all sets have the same size. |
| 973 | if (RootSets.empty()) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 974 | LLVM_DEBUG(dbgs() << "LRR: Aborting because no root sets found!\n"); |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 975 | return false; |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 976 | } |
| 977 | for (auto &V : RootSets) { |
| 978 | if (V.Roots.empty() || V.Roots.size() != RootSets[0].Roots.size()) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 979 | LLVM_DEBUG( |
| 980 | dbgs() |
| 981 | << "LRR: Aborting because not all root sets have the same size\n"); |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 982 | return false; |
| 983 | } |
| 984 | } |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 985 | |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 986 | Scale = RootSets[0].Roots.size() + 1; |
| 987 | |
| 988 | if (Scale > IL_MaxRerollIterations) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 989 | LLVM_DEBUG(dbgs() << "LRR: Aborting - too many iterations found. " |
| 990 | << "#Found=" << Scale |
| 991 | << ", #Max=" << IL_MaxRerollIterations << "\n"); |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 992 | return false; |
| 993 | } |
| 994 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 995 | LLVM_DEBUG(dbgs() << "LRR: Successfully found roots: Scale=" << Scale |
| 996 | << "\n"); |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 997 | |
| 998 | return true; |
| 999 | } |
| 1000 | |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1001 | bool LoopReroll::DAGRootTracker::collectUsedInstructions(SmallInstructionSet &PossibleRedSet) { |
| 1002 | // Populate the MapVector with all instructions in the block, in order first, |
| 1003 | // so we can iterate over the contents later in perfect order. |
| 1004 | for (auto &I : *L->getHeader()) { |
| 1005 | Uses[&I].resize(IL_End); |
| 1006 | } |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1007 | |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1008 | SmallInstructionSet Exclude; |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 1009 | for (auto &DRS : RootSets) { |
| 1010 | Exclude.insert(DRS.Roots.begin(), DRS.Roots.end()); |
| 1011 | Exclude.insert(DRS.SubsumedInsts.begin(), DRS.SubsumedInsts.end()); |
| 1012 | Exclude.insert(DRS.BaseInst); |
| 1013 | } |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1014 | Exclude.insert(LoopIncs.begin(), LoopIncs.end()); |
| 1015 | |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 1016 | for (auto &DRS : RootSets) { |
| 1017 | DenseSet<Instruction*> VBase; |
| 1018 | collectInLoopUserSet(DRS.BaseInst, Exclude, PossibleRedSet, VBase); |
| 1019 | for (auto *I : VBase) { |
| 1020 | Uses[I].set(0); |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1021 | } |
| 1022 | |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 1023 | unsigned Idx = 1; |
| 1024 | for (auto *Root : DRS.Roots) { |
| 1025 | DenseSet<Instruction*> V; |
| 1026 | collectInLoopUserSet(Root, Exclude, PossibleRedSet, V); |
| 1027 | |
| 1028 | // While we're here, check the use sets are the same size. |
| 1029 | if (V.size() != VBase.size()) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1030 | LLVM_DEBUG(dbgs() << "LRR: Aborting - use sets are different sizes\n"); |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 1031 | return false; |
| 1032 | } |
| 1033 | |
| 1034 | for (auto *I : V) { |
| 1035 | Uses[I].set(Idx); |
| 1036 | } |
| 1037 | ++Idx; |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1038 | } |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 1039 | |
| 1040 | // Make sure our subsumed instructions are remembered too. |
| 1041 | for (auto *I : DRS.SubsumedInsts) { |
| 1042 | Uses[I].set(IL_All); |
| 1043 | } |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1044 | } |
| 1045 | |
| 1046 | // Make sure the loop increments are also accounted for. |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 1047 | |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1048 | Exclude.clear(); |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 1049 | for (auto &DRS : RootSets) { |
| 1050 | Exclude.insert(DRS.Roots.begin(), DRS.Roots.end()); |
| 1051 | Exclude.insert(DRS.SubsumedInsts.begin(), DRS.SubsumedInsts.end()); |
| 1052 | Exclude.insert(DRS.BaseInst); |
| 1053 | } |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1054 | |
| 1055 | DenseSet<Instruction*> V; |
| 1056 | collectInLoopUserSet(LoopIncs, Exclude, PossibleRedSet, V); |
| 1057 | for (auto *I : V) { |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 1058 | Uses[I].set(IL_All); |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1059 | } |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1060 | |
| 1061 | return true; |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1062 | } |
| 1063 | |
James Molloy | e805ad9 | 2015-02-12 15:54:14 +0000 | [diff] [blame] | 1064 | /// Get the next instruction in "In" that is a member of set Val. |
| 1065 | /// Start searching from StartI, and do not return anything in Exclude. |
| 1066 | /// If StartI is not given, start from In.begin(). |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1067 | LoopReroll::DAGRootTracker::UsesTy::iterator |
| 1068 | LoopReroll::DAGRootTracker::nextInstr(int Val, UsesTy &In, |
James Molloy | e805ad9 | 2015-02-12 15:54:14 +0000 | [diff] [blame] | 1069 | const SmallInstructionSet &Exclude, |
| 1070 | UsesTy::iterator *StartI) { |
| 1071 | UsesTy::iterator I = StartI ? *StartI : In.begin(); |
| 1072 | while (I != In.end() && (I->second.test(Val) == 0 || |
| 1073 | Exclude.count(I->first) != 0)) |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1074 | ++I; |
| 1075 | return I; |
| 1076 | } |
| 1077 | |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 1078 | bool LoopReroll::DAGRootTracker::isBaseInst(Instruction *I) { |
| 1079 | for (auto &DRS : RootSets) { |
| 1080 | if (DRS.BaseInst == I) |
| 1081 | return true; |
| 1082 | } |
| 1083 | return false; |
| 1084 | } |
| 1085 | |
| 1086 | bool LoopReroll::DAGRootTracker::isRootInst(Instruction *I) { |
| 1087 | for (auto &DRS : RootSets) { |
David Majnemer | 0d955d0 | 2016-08-11 22:21:41 +0000 | [diff] [blame] | 1088 | if (is_contained(DRS.Roots, I)) |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 1089 | return true; |
| 1090 | } |
| 1091 | return false; |
| 1092 | } |
| 1093 | |
James Molloy | e805ad9 | 2015-02-12 15:54:14 +0000 | [diff] [blame] | 1094 | /// Return true if instruction I depends on any instruction between |
| 1095 | /// Start and End. |
| 1096 | bool LoopReroll::DAGRootTracker::instrDependsOn(Instruction *I, |
| 1097 | UsesTy::iterator Start, |
| 1098 | UsesTy::iterator End) { |
| 1099 | for (auto *U : I->users()) { |
| 1100 | for (auto It = Start; It != End; ++It) |
| 1101 | if (U == It->first) |
| 1102 | return true; |
| 1103 | } |
| 1104 | return false; |
| 1105 | } |
| 1106 | |
Weiming Zhao | 310770a | 2015-09-28 17:03:23 +0000 | [diff] [blame] | 1107 | static bool isIgnorableInst(const Instruction *I) { |
| 1108 | if (isa<DbgInfoIntrinsic>(I)) |
| 1109 | return true; |
| 1110 | const IntrinsicInst* II = dyn_cast<IntrinsicInst>(I); |
| 1111 | if (!II) |
| 1112 | return false; |
| 1113 | switch (II->getIntrinsicID()) { |
| 1114 | default: |
| 1115 | return false; |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 1116 | case Intrinsic::annotation: |
Weiming Zhao | 310770a | 2015-09-28 17:03:23 +0000 | [diff] [blame] | 1117 | case Intrinsic::ptr_annotation: |
| 1118 | case Intrinsic::var_annotation: |
| 1119 | // TODO: the following intrinsics may also be whitelisted: |
| 1120 | // lifetime_start, lifetime_end, invariant_start, invariant_end |
| 1121 | return true; |
| 1122 | } |
| 1123 | return false; |
| 1124 | } |
| 1125 | |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1126 | bool LoopReroll::DAGRootTracker::validate(ReductionTracker &Reductions) { |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1127 | // We now need to check for equivalence of the use graph of each root with |
| 1128 | // that of the primary induction variable (excluding the roots). Our goal |
| 1129 | // here is not to solve the full graph isomorphism problem, but rather to |
| 1130 | // catch common cases without a lot of work. As a result, we will assume |
| 1131 | // that the relative order of the instructions in each unrolled iteration |
| 1132 | // is the same (although we will not make an assumption about how the |
| 1133 | // different iterations are intermixed). Note that while the order must be |
| 1134 | // the same, the instructions may not be in the same basic block. |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1135 | |
| 1136 | // An array of just the possible reductions for this scale factor. When we |
| 1137 | // collect the set of all users of some root instructions, these reduction |
| 1138 | // instructions are treated as 'final' (their uses are not considered). |
| 1139 | // This is important because we don't want the root use set to search down |
| 1140 | // the reduction chain. |
| 1141 | SmallInstructionSet PossibleRedSet; |
| 1142 | SmallInstructionSet PossibleRedLastSet; |
| 1143 | SmallInstructionSet PossibleRedPHISet; |
| 1144 | Reductions.restrictToScale(Scale, PossibleRedSet, |
| 1145 | PossibleRedPHISet, PossibleRedLastSet); |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1146 | |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1147 | // Populate "Uses" with where each instruction is used. |
| 1148 | if (!collectUsedInstructions(PossibleRedSet)) |
| 1149 | return false; |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1150 | |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1151 | // Make sure we mark the reduction PHIs as used in all iterations. |
| 1152 | for (auto *I : PossibleRedPHISet) { |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 1153 | Uses[I].set(IL_All); |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1154 | } |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1155 | |
Lawrence Hu | 1befea2 | 2016-04-30 00:51:22 +0000 | [diff] [blame] | 1156 | // Make sure we mark loop-control-only PHIs as used in all iterations. See |
| 1157 | // comment above LoopReroll::isLoopControlIV for more information. |
| 1158 | BasicBlock *Header = L->getHeader(); |
| 1159 | if (LoopControlIV && LoopControlIV != IV) { |
| 1160 | for (auto *U : LoopControlIV->users()) { |
| 1161 | Instruction *IVUser = dyn_cast<Instruction>(U); |
| 1162 | // IVUser could be loop increment or compare |
| 1163 | Uses[IVUser].set(IL_All); |
| 1164 | for (auto *UU : IVUser->users()) { |
| 1165 | Instruction *UUser = dyn_cast<Instruction>(UU); |
| 1166 | // UUser could be compare, PHI or branch |
| 1167 | Uses[UUser].set(IL_All); |
Lawrence Hu | e58a814 | 2016-05-10 21:16:49 +0000 | [diff] [blame] | 1168 | // Skip SExt |
| 1169 | if (isa<SExtInst>(UUser)) { |
| 1170 | UUser = dyn_cast<Instruction>(*(UUser->user_begin())); |
| 1171 | Uses[UUser].set(IL_All); |
| 1172 | } |
Lawrence Hu | 1befea2 | 2016-04-30 00:51:22 +0000 | [diff] [blame] | 1173 | // Is UUser a compare instruction? |
| 1174 | if (UU->hasOneUse()) { |
| 1175 | Instruction *BI = dyn_cast<BranchInst>(*UUser->user_begin()); |
| 1176 | if (BI == cast<BranchInst>(Header->getTerminator())) |
| 1177 | Uses[BI].set(IL_All); |
| 1178 | } |
| 1179 | } |
| 1180 | } |
| 1181 | } |
| 1182 | |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1183 | // Make sure all instructions in the loop are in one and only one |
| 1184 | // set. |
| 1185 | for (auto &KV : Uses) { |
Weiming Zhao | 310770a | 2015-09-28 17:03:23 +0000 | [diff] [blame] | 1186 | if (KV.second.count() != 1 && !isIgnorableInst(KV.first)) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1187 | LLVM_DEBUG( |
| 1188 | dbgs() << "LRR: Aborting - instruction is not used in 1 iteration: " |
| 1189 | << *KV.first << " (#uses=" << KV.second.count() << ")\n"); |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1190 | return false; |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1191 | } |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1192 | } |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1193 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1194 | LLVM_DEBUG(for (auto &KV |
| 1195 | : Uses) { |
| 1196 | dbgs() << "LRR: " << KV.second.find_first() << "\t" << *KV.first << "\n"; |
| 1197 | }); |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1198 | |
| 1199 | for (unsigned Iter = 1; Iter < Scale; ++Iter) { |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1200 | // In addition to regular aliasing information, we need to look for |
| 1201 | // instructions from later (future) iterations that have side effects |
| 1202 | // preventing us from reordering them past other instructions with side |
| 1203 | // effects. |
| 1204 | bool FutureSideEffects = false; |
| 1205 | AliasSetTracker AST(*AA); |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1206 | // The map between instructions in f(%iv.(i+1)) and f(%iv). |
| 1207 | DenseMap<Value *, Value *> BaseMap; |
| 1208 | |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1209 | // Compare iteration Iter to the base. |
James Molloy | e805ad9 | 2015-02-12 15:54:14 +0000 | [diff] [blame] | 1210 | SmallInstructionSet Visited; |
| 1211 | auto BaseIt = nextInstr(0, Uses, Visited); |
| 1212 | auto RootIt = nextInstr(Iter, Uses, Visited); |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1213 | auto LastRootIt = Uses.begin(); |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1214 | |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1215 | while (BaseIt != Uses.end() && RootIt != Uses.end()) { |
| 1216 | Instruction *BaseInst = BaseIt->first; |
| 1217 | Instruction *RootInst = RootIt->first; |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1218 | |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1219 | // Skip over the IV or root instructions; only match their users. |
| 1220 | bool Continue = false; |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 1221 | if (isBaseInst(BaseInst)) { |
James Molloy | e805ad9 | 2015-02-12 15:54:14 +0000 | [diff] [blame] | 1222 | Visited.insert(BaseInst); |
| 1223 | BaseIt = nextInstr(0, Uses, Visited); |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1224 | Continue = true; |
| 1225 | } |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 1226 | if (isRootInst(RootInst)) { |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1227 | LastRootIt = RootIt; |
James Molloy | e805ad9 | 2015-02-12 15:54:14 +0000 | [diff] [blame] | 1228 | Visited.insert(RootInst); |
| 1229 | RootIt = nextInstr(Iter, Uses, Visited); |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1230 | Continue = true; |
| 1231 | } |
| 1232 | if (Continue) continue; |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1233 | |
James Molloy | e805ad9 | 2015-02-12 15:54:14 +0000 | [diff] [blame] | 1234 | if (!BaseInst->isSameOperationAs(RootInst)) { |
| 1235 | // Last chance saloon. We don't try and solve the full isomorphism |
| 1236 | // problem, but try and at least catch the case where two instructions |
| 1237 | // *of different types* are round the wrong way. We won't be able to |
| 1238 | // efficiently tell, given two ADD instructions, which way around we |
| 1239 | // should match them, but given an ADD and a SUB, we can at least infer |
| 1240 | // which one is which. |
| 1241 | // |
| 1242 | // This should allow us to deal with a greater subset of the isomorphism |
| 1243 | // problem. It does however change a linear algorithm into a quadratic |
| 1244 | // one, so limit the number of probes we do. |
| 1245 | auto TryIt = RootIt; |
| 1246 | unsigned N = NumToleratedFailedMatches; |
| 1247 | while (TryIt != Uses.end() && |
| 1248 | !BaseInst->isSameOperationAs(TryIt->first) && |
| 1249 | N--) { |
| 1250 | ++TryIt; |
| 1251 | TryIt = nextInstr(Iter, Uses, Visited, &TryIt); |
| 1252 | } |
| 1253 | |
| 1254 | if (TryIt == Uses.end() || TryIt == RootIt || |
| 1255 | instrDependsOn(TryIt->first, RootIt, TryIt)) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1256 | LLVM_DEBUG(dbgs() << "LRR: iteration root match failed at " |
| 1257 | << *BaseInst << " vs. " << *RootInst << "\n"); |
James Molloy | e805ad9 | 2015-02-12 15:54:14 +0000 | [diff] [blame] | 1258 | return false; |
| 1259 | } |
Lawrence Hu | dc8a83b | 2015-07-24 22:01:49 +0000 | [diff] [blame] | 1260 | |
James Molloy | e805ad9 | 2015-02-12 15:54:14 +0000 | [diff] [blame] | 1261 | RootIt = TryIt; |
| 1262 | RootInst = TryIt->first; |
| 1263 | } |
| 1264 | |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1265 | // All instructions between the last root and this root |
Lawrence Hu | dc8a83b | 2015-07-24 22:01:49 +0000 | [diff] [blame] | 1266 | // may belong to some other iteration. If they belong to a |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1267 | // future iteration, then they're dangerous to alias with. |
Lawrence Hu | dc8a83b | 2015-07-24 22:01:49 +0000 | [diff] [blame] | 1268 | // |
James Molloy | e805ad9 | 2015-02-12 15:54:14 +0000 | [diff] [blame] | 1269 | // Note that because we allow a limited amount of flexibility in the order |
| 1270 | // that we visit nodes, LastRootIt might be *before* RootIt, in which |
| 1271 | // case we've already checked this set of instructions so we shouldn't |
| 1272 | // do anything. |
| 1273 | for (; LastRootIt < RootIt; ++LastRootIt) { |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1274 | Instruction *I = LastRootIt->first; |
| 1275 | if (LastRootIt->second.find_first() < (int)Iter) |
| 1276 | continue; |
| 1277 | if (I->mayWriteToMemory()) |
| 1278 | AST.add(I); |
| 1279 | // Note: This is specifically guarded by a check on isa<PHINode>, |
| 1280 | // which while a valid (somewhat arbitrary) micro-optimization, is |
| 1281 | // needed because otherwise isSafeToSpeculativelyExecute returns |
| 1282 | // false on PHI nodes. |
Sanjoy Das | ab73c9d | 2016-07-19 00:23:54 +0000 | [diff] [blame] | 1283 | if (!isa<PHINode>(I) && !isUnorderedLoadStore(I) && |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1284 | !isSafeToSpeculativelyExecute(I)) |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1285 | // Intervening instructions cause side effects. |
| 1286 | FutureSideEffects = true; |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1287 | } |
| 1288 | |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1289 | // Make sure that this instruction, which is in the use set of this |
| 1290 | // root instruction, does not also belong to the base set or the set of |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1291 | // some other root instruction. |
| 1292 | if (RootIt->second.count() > 1) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1293 | LLVM_DEBUG(dbgs() << "LRR: iteration root match failed at " << *BaseInst |
| 1294 | << " vs. " << *RootInst << " (prev. case overlap)\n"); |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1295 | return false; |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1296 | } |
| 1297 | |
| 1298 | // Make sure that we don't alias with any instruction in the alias set |
| 1299 | // tracker. If we do, then we depend on a future iteration, and we |
| 1300 | // can't reroll. |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1301 | if (RootInst->mayReadFromMemory()) |
| 1302 | for (auto &K : AST) { |
| 1303 | if (K.aliasesUnknownInst(RootInst, *AA)) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1304 | LLVM_DEBUG(dbgs() << "LRR: iteration root match failed at " |
| 1305 | << *BaseInst << " vs. " << *RootInst |
| 1306 | << " (depends on future store)\n"); |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1307 | return false; |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1308 | } |
| 1309 | } |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1310 | |
| 1311 | // If we've past an instruction from a future iteration that may have |
| 1312 | // side effects, and this instruction might also, then we can't reorder |
| 1313 | // them, and this matching fails. As an exception, we allow the alias |
Sanjoy Das | ab73c9d | 2016-07-19 00:23:54 +0000 | [diff] [blame] | 1314 | // set tracker to handle regular (unordered) load/store dependencies. |
| 1315 | if (FutureSideEffects && ((!isUnorderedLoadStore(BaseInst) && |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1316 | !isSafeToSpeculativelyExecute(BaseInst)) || |
Sanjoy Das | ab73c9d | 2016-07-19 00:23:54 +0000 | [diff] [blame] | 1317 | (!isUnorderedLoadStore(RootInst) && |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1318 | !isSafeToSpeculativelyExecute(RootInst)))) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1319 | LLVM_DEBUG(dbgs() << "LRR: iteration root match failed at " << *BaseInst |
| 1320 | << " vs. " << *RootInst |
| 1321 | << " (side effects prevent reordering)\n"); |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1322 | return false; |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1323 | } |
| 1324 | |
| 1325 | // For instructions that are part of a reduction, if the operation is |
| 1326 | // associative, then don't bother matching the operands (because we |
| 1327 | // already know that the instructions are isomorphic, and the order |
| 1328 | // within the iteration does not matter). For non-associative reductions, |
| 1329 | // we do need to match the operands, because we need to reject |
| 1330 | // out-of-order instructions within an iteration! |
| 1331 | // For example (assume floating-point addition), we need to reject this: |
| 1332 | // x += a[i]; x += b[i]; |
| 1333 | // x += a[i+1]; x += b[i+1]; |
| 1334 | // x += b[i+2]; x += a[i+2]; |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1335 | bool InReduction = Reductions.isPairInSame(BaseInst, RootInst); |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1336 | |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1337 | if (!(InReduction && BaseInst->isAssociative())) { |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1338 | bool Swapped = false, SomeOpMatched = false; |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1339 | for (unsigned j = 0; j < BaseInst->getNumOperands(); ++j) { |
| 1340 | Value *Op2 = RootInst->getOperand(j); |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1341 | |
| 1342 | // If this is part of a reduction (and the operation is not |
| 1343 | // associatve), then we match all operands, but not those that are |
| 1344 | // part of the reduction. |
| 1345 | if (InReduction) |
| 1346 | if (Instruction *Op2I = dyn_cast<Instruction>(Op2)) |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1347 | if (Reductions.isPairInSame(RootInst, Op2I)) |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1348 | continue; |
| 1349 | |
| 1350 | DenseMap<Value *, Value *>::iterator BMI = BaseMap.find(Op2); |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 1351 | if (BMI != BaseMap.end()) { |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1352 | Op2 = BMI->second; |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 1353 | } else { |
| 1354 | for (auto &DRS : RootSets) { |
| 1355 | if (DRS.Roots[Iter-1] == (Instruction*) Op2) { |
| 1356 | Op2 = DRS.BaseInst; |
| 1357 | break; |
| 1358 | } |
| 1359 | } |
| 1360 | } |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1361 | |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1362 | if (BaseInst->getOperand(Swapped ? unsigned(!j) : j) != Op2) { |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1363 | // If we've not already decided to swap the matched operands, and |
| 1364 | // we've not already matched our first operand (note that we could |
| 1365 | // have skipped matching the first operand because it is part of a |
| 1366 | // reduction above), and the instruction is commutative, then try |
| 1367 | // the swapped match. |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1368 | if (!Swapped && BaseInst->isCommutative() && !SomeOpMatched && |
| 1369 | BaseInst->getOperand(!j) == Op2) { |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1370 | Swapped = true; |
| 1371 | } else { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1372 | LLVM_DEBUG(dbgs() |
| 1373 | << "LRR: iteration root match failed at " << *BaseInst |
| 1374 | << " vs. " << *RootInst << " (operand " << j << ")\n"); |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1375 | return false; |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1376 | } |
| 1377 | } |
| 1378 | |
| 1379 | SomeOpMatched = true; |
| 1380 | } |
| 1381 | } |
| 1382 | |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1383 | if ((!PossibleRedLastSet.count(BaseInst) && |
| 1384 | hasUsesOutsideLoop(BaseInst, L)) || |
| 1385 | (!PossibleRedLastSet.count(RootInst) && |
| 1386 | hasUsesOutsideLoop(RootInst, L))) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1387 | LLVM_DEBUG(dbgs() << "LRR: iteration root match failed at " << *BaseInst |
| 1388 | << " vs. " << *RootInst << " (uses outside loop)\n"); |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1389 | return false; |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1390 | } |
| 1391 | |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1392 | Reductions.recordPair(BaseInst, RootInst, Iter); |
| 1393 | BaseMap.insert(std::make_pair(RootInst, BaseInst)); |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1394 | |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1395 | LastRootIt = RootIt; |
James Molloy | e805ad9 | 2015-02-12 15:54:14 +0000 | [diff] [blame] | 1396 | Visited.insert(BaseInst); |
| 1397 | Visited.insert(RootInst); |
| 1398 | BaseIt = nextInstr(0, Uses, Visited); |
| 1399 | RootIt = nextInstr(Iter, Uses, Visited); |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1400 | } |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 1401 | assert(BaseIt == Uses.end() && RootIt == Uses.end() && |
| 1402 | "Mismatched set sizes!"); |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1403 | } |
| 1404 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1405 | LLVM_DEBUG(dbgs() << "LRR: Matched all iteration increments for " << *IV |
| 1406 | << "\n"); |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1407 | |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1408 | return true; |
| 1409 | } |
| 1410 | |
Eli Friedman | 203eaaf | 2018-06-22 22:58:55 +0000 | [diff] [blame] | 1411 | void LoopReroll::DAGRootTracker::replace(const SCEV *BackedgeTakenCount) { |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1412 | BasicBlock *Header = L->getHeader(); |
Eli Friedman | 203eaaf | 2018-06-22 22:58:55 +0000 | [diff] [blame] | 1413 | |
| 1414 | // Compute the start and increment for each BaseInst before we start erasing |
| 1415 | // instructions. |
| 1416 | SmallVector<const SCEV *, 8> StartExprs; |
| 1417 | SmallVector<const SCEV *, 8> IncrExprs; |
| 1418 | for (auto &DRS : RootSets) { |
| 1419 | const SCEVAddRecExpr *IVSCEV = |
| 1420 | cast<SCEVAddRecExpr>(SE->getSCEV(DRS.BaseInst)); |
| 1421 | StartExprs.push_back(IVSCEV->getStart()); |
| 1422 | IncrExprs.push_back(SE->getMinusSCEV(SE->getSCEV(DRS.Roots[0]), IVSCEV)); |
| 1423 | } |
| 1424 | |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1425 | // Remove instructions associated with non-base iterations. |
Duncan P. N. Exon Smith | 5c001c3 | 2016-08-30 00:13:12 +0000 | [diff] [blame] | 1426 | for (BasicBlock::reverse_iterator J = Header->rbegin(), JE = Header->rend(); |
| 1427 | J != JE;) { |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1428 | unsigned I = Uses[&*J].find_first(); |
James Molloy | f147359 | 2015-02-11 09:19:47 +0000 | [diff] [blame] | 1429 | if (I > 0 && I < IL_All) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1430 | LLVM_DEBUG(dbgs() << "LRR: removing: " << *J << "\n"); |
Duncan P. N. Exon Smith | 5c001c3 | 2016-08-30 00:13:12 +0000 | [diff] [blame] | 1431 | J++->eraseFromParent(); |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1432 | continue; |
| 1433 | } |
| 1434 | |
| 1435 | ++J; |
| 1436 | } |
| 1437 | |
Eli Friedman | 203eaaf | 2018-06-22 22:58:55 +0000 | [diff] [blame] | 1438 | // Rewrite each BaseInst using SCEV. |
| 1439 | for (size_t i = 0, e = RootSets.size(); i != e; ++i) |
| 1440 | // Insert the new induction variable. |
| 1441 | replaceIV(RootSets[i], StartExprs[i], IncrExprs[i]); |
Lawrence Hu | 1befea2 | 2016-04-30 00:51:22 +0000 | [diff] [blame] | 1442 | |
Eli Friedman | 203eaaf | 2018-06-22 22:58:55 +0000 | [diff] [blame] | 1443 | { // Limit the lifetime of SCEVExpander. |
| 1444 | BranchInst *BI = cast<BranchInst>(Header->getTerminator()); |
| 1445 | const DataLayout &DL = Header->getModule()->getDataLayout(); |
| 1446 | SCEVExpander Expander(*SE, DL, "reroll"); |
| 1447 | auto Zero = SE->getZero(BackedgeTakenCount->getType()); |
| 1448 | auto One = SE->getOne(BackedgeTakenCount->getType()); |
| 1449 | auto NewIVSCEV = SE->getAddRecExpr(Zero, One, L, SCEV::FlagAnyWrap); |
| 1450 | Value *NewIV = |
| 1451 | Expander.expandCodeFor(NewIVSCEV, BackedgeTakenCount->getType(), |
| 1452 | Header->getFirstNonPHIOrDbg()); |
| 1453 | // FIXME: This arithmetic can overflow. |
| 1454 | auto TripCount = SE->getAddExpr(BackedgeTakenCount, One); |
| 1455 | auto ScaledTripCount = SE->getMulExpr( |
| 1456 | TripCount, SE->getConstant(BackedgeTakenCount->getType(), Scale)); |
| 1457 | auto ScaledBECount = SE->getMinusSCEV(ScaledTripCount, One); |
| 1458 | Value *TakenCount = |
| 1459 | Expander.expandCodeFor(ScaledBECount, BackedgeTakenCount->getType(), |
| 1460 | Header->getFirstNonPHIOrDbg()); |
| 1461 | Value *Cond = |
| 1462 | new ICmpInst(BI, CmpInst::ICMP_EQ, NewIV, TakenCount, "exitcond"); |
| 1463 | BI->setCondition(Cond); |
| 1464 | |
| 1465 | if (BI->getSuccessor(1) != Header) |
| 1466 | BI->swapSuccessors(); |
| 1467 | } |
Lawrence Hu | b917cd9 | 2016-01-25 19:36:30 +0000 | [diff] [blame] | 1468 | |
| 1469 | SimplifyInstructionsInBlock(Header, TLI); |
| 1470 | DeleteDeadPHIs(Header, TLI); |
Lawrence Hu | 84b6195 | 2016-01-25 18:53:39 +0000 | [diff] [blame] | 1471 | } |
| 1472 | |
Eli Friedman | 203eaaf | 2018-06-22 22:58:55 +0000 | [diff] [blame] | 1473 | void LoopReroll::DAGRootTracker::replaceIV(DAGRootSet &DRS, |
| 1474 | const SCEV *Start, |
| 1475 | const SCEV *IncrExpr) { |
Lawrence Hu | d3d5106 | 2016-01-25 19:43:45 +0000 | [diff] [blame] | 1476 | BasicBlock *Header = L->getHeader(); |
Eli Friedman | 203eaaf | 2018-06-22 22:58:55 +0000 | [diff] [blame] | 1477 | Instruction *Inst = DRS.BaseInst; |
Lawrence Hu | d3d5106 | 2016-01-25 19:43:45 +0000 | [diff] [blame] | 1478 | |
Lawrence Hu | d3d5106 | 2016-01-25 19:43:45 +0000 | [diff] [blame] | 1479 | const SCEV *NewIVSCEV = |
| 1480 | SE->getAddRecExpr(Start, IncrExpr, L, SCEV::FlagAnyWrap); |
| 1481 | |
| 1482 | { // Limit the lifetime of SCEVExpander. |
| 1483 | const DataLayout &DL = Header->getModule()->getDataLayout(); |
| 1484 | SCEVExpander Expander(*SE, DL, "reroll"); |
Eli Friedman | c0bba1a | 2016-11-21 22:35:34 +0000 | [diff] [blame] | 1485 | Value *NewIV = Expander.expandCodeFor(NewIVSCEV, Inst->getType(), |
| 1486 | Header->getFirstNonPHIOrDbg()); |
Lawrence Hu | d3d5106 | 2016-01-25 19:43:45 +0000 | [diff] [blame] | 1487 | |
| 1488 | for (auto &KV : Uses) |
| 1489 | if (KV.second.find_first() == 0) |
| 1490 | KV.first->replaceUsesOfWith(Inst, NewIV); |
Lawrence Hu | d3d5106 | 2016-01-25 19:43:45 +0000 | [diff] [blame] | 1491 | } |
| 1492 | } |
| 1493 | |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1494 | // Validate the selected reductions. All iterations must have an isomorphic |
| 1495 | // part of the reduction chain and, for non-associative reductions, the chain |
| 1496 | // entries must appear in order. |
| 1497 | bool LoopReroll::ReductionTracker::validateSelected() { |
| 1498 | // For a non-associative reduction, the chain entries must appear in order. |
Benjamin Kramer | 135f735 | 2016-06-26 12:28:59 +0000 | [diff] [blame] | 1499 | for (int i : Reds) { |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1500 | int PrevIter = 0, BaseCount = 0, Count = 0; |
NAKAMURA Takumi | 5af50a5 | 2014-10-28 11:54:05 +0000 | [diff] [blame] | 1501 | for (Instruction *J : PossibleReds[i]) { |
| 1502 | // Note that all instructions in the chain must have been found because |
| 1503 | // all instructions in the function must have been assigned to some |
| 1504 | // iteration. |
| 1505 | int Iter = PossibleRedIter[J]; |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1506 | if (Iter != PrevIter && Iter != PrevIter + 1 && |
| 1507 | !PossibleReds[i].getReducedValue()->isAssociative()) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1508 | LLVM_DEBUG(dbgs() << "LRR: Out-of-order non-associative reduction: " |
| 1509 | << J << "\n"); |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1510 | return false; |
| 1511 | } |
| 1512 | |
| 1513 | if (Iter != PrevIter) { |
| 1514 | if (Count != BaseCount) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1515 | LLVM_DEBUG(dbgs() |
| 1516 | << "LRR: Iteration " << PrevIter << " reduction use count " |
| 1517 | << Count << " is not equal to the base use count " |
| 1518 | << BaseCount << "\n"); |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1519 | return false; |
| 1520 | } |
| 1521 | |
| 1522 | Count = 0; |
| 1523 | } |
| 1524 | |
| 1525 | ++Count; |
| 1526 | if (Iter == 0) |
| 1527 | ++BaseCount; |
| 1528 | |
| 1529 | PrevIter = Iter; |
| 1530 | } |
| 1531 | } |
| 1532 | |
| 1533 | return true; |
| 1534 | } |
| 1535 | |
| 1536 | // For all selected reductions, remove all parts except those in the first |
| 1537 | // iteration (and the PHI). Replace outside uses of the reduced value with uses |
| 1538 | // of the first-iteration reduced value (in other words, reroll the selected |
| 1539 | // reductions). |
| 1540 | void LoopReroll::ReductionTracker::replaceSelected() { |
| 1541 | // Fixup reductions to refer to the last instruction associated with the |
| 1542 | // first iteration (not the last). |
Benjamin Kramer | 135f735 | 2016-06-26 12:28:59 +0000 | [diff] [blame] | 1543 | for (int i : Reds) { |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1544 | int j = 0; |
| 1545 | for (int e = PossibleReds[i].size(); j != e; ++j) |
| 1546 | if (PossibleRedIter[PossibleReds[i][j]] != 0) { |
| 1547 | --j; |
| 1548 | break; |
| 1549 | } |
| 1550 | |
| 1551 | // Replace users with the new end-of-chain value. |
| 1552 | SmallInstructionVector Users; |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1553 | for (User *U : PossibleReds[i].getReducedValue()->users()) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1554 | Users.push_back(cast<Instruction>(U)); |
James Molloy | 64419d4 | 2015-01-29 21:52:03 +0000 | [diff] [blame] | 1555 | } |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1556 | |
Benjamin Kramer | 135f735 | 2016-06-26 12:28:59 +0000 | [diff] [blame] | 1557 | for (Instruction *User : Users) |
| 1558 | User->replaceUsesOfWith(PossibleReds[i].getReducedValue(), |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1559 | PossibleReds[i][j]); |
| 1560 | } |
| 1561 | } |
| 1562 | |
| 1563 | // Reroll the provided loop with respect to the provided induction variable. |
| 1564 | // Generally, we're looking for a loop like this: |
| 1565 | // |
| 1566 | // %iv = phi [ (preheader, ...), (body, %iv.next) ] |
| 1567 | // f(%iv) |
| 1568 | // %iv.1 = add %iv, 1 <-- a root increment |
| 1569 | // f(%iv.1) |
| 1570 | // %iv.2 = add %iv, 2 <-- a root increment |
| 1571 | // f(%iv.2) |
| 1572 | // %iv.scale_m_1 = add %iv, scale-1 <-- a root increment |
| 1573 | // f(%iv.scale_m_1) |
| 1574 | // ... |
| 1575 | // %iv.next = add %iv, scale |
| 1576 | // %cmp = icmp(%iv, ...) |
| 1577 | // br %cmp, header, exit |
| 1578 | // |
| 1579 | // Notably, we do not require that f(%iv), f(%iv.1), etc. be isolated groups of |
| 1580 | // instructions. In other words, the instructions in f(%iv), f(%iv.1), etc. can |
| 1581 | // be intermixed with eachother. The restriction imposed by this algorithm is |
| 1582 | // that the relative order of the isomorphic instructions in f(%iv), f(%iv.1), |
| 1583 | // etc. be the same. |
| 1584 | // |
| 1585 | // First, we collect the use set of %iv, excluding the other increment roots. |
| 1586 | // This gives us f(%iv). Then we iterate over the loop instructions (scale-1) |
| 1587 | // times, having collected the use set of f(%iv.(i+1)), during which we: |
| 1588 | // - Ensure that the next unmatched instruction in f(%iv) is isomorphic to |
| 1589 | // the next unmatched instruction in f(%iv.(i+1)). |
| 1590 | // - Ensure that both matched instructions don't have any external users |
| 1591 | // (with the exception of last-in-chain reduction instructions). |
| 1592 | // - Track the (aliasing) write set, and other side effects, of all |
| 1593 | // instructions that belong to future iterations that come before the matched |
| 1594 | // instructions. If the matched instructions read from that write set, then |
| 1595 | // f(%iv) or f(%iv.(i+1)) has some dependency on instructions in |
| 1596 | // f(%iv.(j+1)) for some j > i, and we cannot reroll the loop. Similarly, |
| 1597 | // if any of these future instructions had side effects (could not be |
| 1598 | // speculatively executed), and so do the matched instructions, when we |
| 1599 | // cannot reorder those side-effect-producing instructions, and rerolling |
| 1600 | // fails. |
| 1601 | // |
| 1602 | // Finally, we make sure that all loop instructions are either loop increment |
| 1603 | // roots, belong to simple latch code, parts of validated reductions, part of |
| 1604 | // f(%iv) or part of some f(%iv.i). If all of that is true (and all reductions |
| 1605 | // have been validated), then we reroll the loop. |
| 1606 | bool LoopReroll::reroll(Instruction *IV, Loop *L, BasicBlock *Header, |
Eli Friedman | 203eaaf | 2018-06-22 22:58:55 +0000 | [diff] [blame] | 1607 | const SCEV *BackedgeTakenCount, |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1608 | ReductionTracker &Reductions) { |
Justin Bogner | 843fb20 | 2015-12-15 19:40:57 +0000 | [diff] [blame] | 1609 | DAGRootTracker DAGRoots(this, L, IV, SE, AA, TLI, DT, LI, PreserveLCSSA, |
Lawrence Hu | 1befea2 | 2016-04-30 00:51:22 +0000 | [diff] [blame] | 1610 | IVToIncMap, LoopControlIV); |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1611 | |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1612 | if (!DAGRoots.findRoots()) |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1613 | return false; |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1614 | LLVM_DEBUG(dbgs() << "LRR: Found all root induction increments for: " << *IV |
| 1615 | << "\n"); |
Lawrence Hu | dc8a83b | 2015-07-24 22:01:49 +0000 | [diff] [blame] | 1616 | |
James Molloy | 5f255eb | 2015-01-29 13:48:05 +0000 | [diff] [blame] | 1617 | if (!DAGRoots.validate(Reductions)) |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1618 | return false; |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1619 | if (!Reductions.validateSelected()) |
| 1620 | return false; |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1621 | // At this point, we've validated the rerolling, and we're committed to |
| 1622 | // making changes! |
| 1623 | |
| 1624 | Reductions.replaceSelected(); |
Eli Friedman | 203eaaf | 2018-06-22 22:58:55 +0000 | [diff] [blame] | 1625 | DAGRoots.replace(BackedgeTakenCount); |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1626 | |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1627 | ++NumRerolledLoops; |
| 1628 | return true; |
| 1629 | } |
| 1630 | |
| 1631 | bool LoopReroll::runOnLoop(Loop *L, LPPassManager &LPM) { |
Andrew Kaylor | aa641a5 | 2016-04-22 22:06:11 +0000 | [diff] [blame] | 1632 | if (skipLoop(L)) |
Paul Robinson | af4e64d | 2014-02-06 00:07:05 +0000 | [diff] [blame] | 1633 | return false; |
| 1634 | |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 1635 | AA = &getAnalysis<AAResultsWrapperPass>().getAAResults(); |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 1636 | LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo(); |
Chandler Carruth | 2f1fd16 | 2015-08-17 02:08:17 +0000 | [diff] [blame] | 1637 | SE = &getAnalysis<ScalarEvolutionWrapperPass>().getSE(); |
Chandler Carruth | b98f63d | 2015-01-15 10:41:28 +0000 | [diff] [blame] | 1638 | TLI = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(); |
Chandler Carruth | 7352302 | 2014-01-13 13:07:17 +0000 | [diff] [blame] | 1639 | DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree(); |
Justin Bogner | 843fb20 | 2015-12-15 19:40:57 +0000 | [diff] [blame] | 1640 | PreserveLCSSA = mustPreserveAnalysisID(LCSSAID); |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1641 | |
| 1642 | BasicBlock *Header = L->getHeader(); |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1643 | LLVM_DEBUG(dbgs() << "LRR: F[" << Header->getParent()->getName() << "] Loop %" |
| 1644 | << Header->getName() << " (" << L->getNumBlocks() |
| 1645 | << " block(s))\n"); |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1646 | |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1647 | // For now, we'll handle only single BB loops. |
| 1648 | if (L->getNumBlocks() > 1) |
Zinovy Nis | 07ac2bd | 2016-03-22 13:50:57 +0000 | [diff] [blame] | 1649 | return false; |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1650 | |
| 1651 | if (!SE->hasLoopInvariantBackedgeTakenCount(L)) |
Zinovy Nis | 07ac2bd | 2016-03-22 13:50:57 +0000 | [diff] [blame] | 1652 | return false; |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1653 | |
Eli Friedman | 203eaaf | 2018-06-22 22:58:55 +0000 | [diff] [blame] | 1654 | const SCEV *BackedgeTakenCount = SE->getBackedgeTakenCount(L); |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1655 | LLVM_DEBUG(dbgs() << "\n Before Reroll:\n" << *(L->getHeader()) << "\n"); |
Eli Friedman | 203eaaf | 2018-06-22 22:58:55 +0000 | [diff] [blame] | 1656 | LLVM_DEBUG(dbgs() << "LRR: backedge-taken count = " << *BackedgeTakenCount |
| 1657 | << "\n"); |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1658 | |
| 1659 | // First, we need to find the induction variable with respect to which we can |
| 1660 | // reroll (there may be several possible options). |
| 1661 | SmallInstructionVector PossibleIVs; |
Lawrence Hu | dc8a83b | 2015-07-24 22:01:49 +0000 | [diff] [blame] | 1662 | IVToIncMap.clear(); |
Lawrence Hu | 1befea2 | 2016-04-30 00:51:22 +0000 | [diff] [blame] | 1663 | LoopControlIV = nullptr; |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1664 | collectPossibleIVs(L, PossibleIVs); |
| 1665 | |
| 1666 | if (PossibleIVs.empty()) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1667 | LLVM_DEBUG(dbgs() << "LRR: No possible IVs found\n"); |
Zinovy Nis | 07ac2bd | 2016-03-22 13:50:57 +0000 | [diff] [blame] | 1668 | return false; |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1669 | } |
| 1670 | |
| 1671 | ReductionTracker Reductions; |
| 1672 | collectPossibleReductions(L, Reductions); |
Zinovy Nis | 07ac2bd | 2016-03-22 13:50:57 +0000 | [diff] [blame] | 1673 | bool Changed = false; |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1674 | |
| 1675 | // For each possible IV, collect the associated possible set of 'root' nodes |
| 1676 | // (i+1, i+2, etc.). |
Benjamin Kramer | 135f735 | 2016-06-26 12:28:59 +0000 | [diff] [blame] | 1677 | for (Instruction *PossibleIV : PossibleIVs) |
Eli Friedman | 203eaaf | 2018-06-22 22:58:55 +0000 | [diff] [blame] | 1678 | if (reroll(PossibleIV, L, Header, BackedgeTakenCount, Reductions)) { |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1679 | Changed = true; |
| 1680 | break; |
| 1681 | } |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1682 | LLVM_DEBUG(dbgs() << "\n After Reroll:\n" << *(L->getHeader()) << "\n"); |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1683 | |
Zinovy Nis | 07ac2bd | 2016-03-22 13:50:57 +0000 | [diff] [blame] | 1684 | // Trip count of L has changed so SE must be re-evaluated. |
| 1685 | if (Changed) |
| 1686 | SE->forgetLoop(L); |
| 1687 | |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 1688 | return Changed; |
| 1689 | } |