Dan Gohman | 0a40ad9 | 2009-04-16 03:18:22 +0000 | [diff] [blame] | 1 | //===- LoopStrengthReduce.cpp - Strength Reduce IVs in Loops --------------===// |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Dan Gohman | 97f70ad | 2009-05-19 20:37:36 +0000 | [diff] [blame] | 10 | // This transformation analyzes and transforms the induction variables (and |
| 11 | // computations derived from them) into forms suitable for efficient execution |
| 12 | // on the target. |
| 13 | // |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 14 | // This pass performs a strength reduction on array references inside loops that |
Dan Gohman | 97f70ad | 2009-05-19 20:37:36 +0000 | [diff] [blame] | 15 | // have as one or more of their components the loop induction variable, it |
| 16 | // rewrites expressions to take advantage of scaled-index addressing modes |
| 17 | // available on the target, and it performs a variety of other optimizations |
| 18 | // related to loop induction variables. |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 19 | // |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 20 | // Terminology note: this code has a lot of handling for "post-increment" or |
| 21 | // "post-inc" users. This is not talking about post-increment addressing modes; |
| 22 | // it is instead talking about code like this: |
| 23 | // |
| 24 | // %i = phi [ 0, %entry ], [ %i.next, %latch ] |
| 25 | // ... |
| 26 | // %i.next = add %i, 1 |
| 27 | // %c = icmp eq %i.next, %n |
| 28 | // |
| 29 | // The SCEV for %i is {0,+,1}<%L>. The SCEV for %i.next is {1,+,1}<%L>, however |
| 30 | // it's useful to think about these as the same register, with some uses using |
Sanjoy Das | 7041fb1 | 2015-03-27 06:01:56 +0000 | [diff] [blame] | 31 | // the value of the register before the add and some using it after. In this |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 32 | // example, the icmp is a post-increment user, since it uses %i.next, which is |
| 33 | // the value of the induction variable after the increment. The other common |
| 34 | // case of post-increment users is users outside the loop. |
| 35 | // |
| 36 | // TODO: More sophistication in the way Formulae are generated and filtered. |
| 37 | // |
| 38 | // TODO: Handle multiple loops at a time. |
| 39 | // |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 40 | // TODO: Should the addressing mode BaseGV be changed to a ConstantExpr instead |
| 41 | // of a GlobalValue? |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 42 | // |
| 43 | // TODO: When truncation is free, truncate ICmp users' operands to make it a |
| 44 | // smaller encoding (on x86 at least). |
| 45 | // |
| 46 | // TODO: When a negated register is used by an add (such as in a list of |
| 47 | // multiple base registers, or as the increment expression in an addrec), |
| 48 | // we may not actually need both reg and (-1 * reg) in registers; the |
| 49 | // negation can be implemented by using a sub instead of an add. The |
| 50 | // lack of support for taking this into consideration when making |
| 51 | // register pressure decisions is partly worked around by the "Special" |
| 52 | // use kind. |
| 53 | // |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 54 | //===----------------------------------------------------------------------===// |
| 55 | |
Dehao Chen | 6132ee8 | 2016-07-18 21:41:50 +0000 | [diff] [blame] | 56 | #include "llvm/Transforms/Scalar/LoopStrengthReduce.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 57 | #include "llvm/ADT/DenseSet.h" |
Benjamin Kramer | 62fb0cf | 2014-03-15 17:17:48 +0000 | [diff] [blame] | 58 | #include "llvm/ADT/Hashing.h" |
Chandler Carruth | 8a8cd2b | 2014-01-07 11:48:04 +0000 | [diff] [blame] | 59 | #include "llvm/ADT/STLExtras.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 60 | #include "llvm/ADT/SetVector.h" |
| 61 | #include "llvm/ADT/SmallBitVector.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 62 | #include "llvm/Analysis/IVUsers.h" |
Devang Patel | b0743b5 | 2007-03-06 21:14:09 +0000 | [diff] [blame] | 63 | #include "llvm/Analysis/LoopPass.h" |
Dehao Chen | 6132ee8 | 2016-07-18 21:41:50 +0000 | [diff] [blame] | 64 | #include "llvm/Analysis/LoopPassManager.h" |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 65 | #include "llvm/Analysis/ScalarEvolutionExpander.h" |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 66 | #include "llvm/Analysis/TargetTransformInfo.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 67 | #include "llvm/IR/Constants.h" |
| 68 | #include "llvm/IR/DerivedTypes.h" |
Chandler Carruth | 5ad5f15 | 2014-01-13 09:26:24 +0000 | [diff] [blame] | 69 | #include "llvm/IR/Dominators.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 70 | #include "llvm/IR/Instructions.h" |
| 71 | #include "llvm/IR/IntrinsicInst.h" |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 72 | #include "llvm/IR/Module.h" |
Chandler Carruth | 4220e9c | 2014-03-04 11:17:44 +0000 | [diff] [blame] | 73 | #include "llvm/IR/ValueHandle.h" |
Andrew Trick | 5812439 | 2011-09-27 00:44:14 +0000 | [diff] [blame] | 74 | #include "llvm/Support/CommandLine.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 75 | #include "llvm/Support/Debug.h" |
Daniel Dunbar | 6115b39 | 2009-07-26 09:48:23 +0000 | [diff] [blame] | 76 | #include "llvm/Support/raw_ostream.h" |
Dehao Chen | 6132ee8 | 2016-07-18 21:41:50 +0000 | [diff] [blame] | 77 | #include "llvm/Transforms/Scalar.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 78 | #include "llvm/Transforms/Utils/BasicBlockUtils.h" |
| 79 | #include "llvm/Transforms/Utils/Local.h" |
Jeff Cohen | c500991 | 2005-07-30 18:22:27 +0000 | [diff] [blame] | 80 | #include <algorithm> |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 81 | using namespace llvm; |
| 82 | |
Chandler Carruth | 964daaa | 2014-04-22 02:55:47 +0000 | [diff] [blame] | 83 | #define DEBUG_TYPE "loop-reduce" |
| 84 | |
Andrew Trick | 19f80c1 | 2012-04-18 04:00:10 +0000 | [diff] [blame] | 85 | /// MaxIVUsers is an arbitrary threshold that provides an early opportunitiy for |
| 86 | /// bail out. This threshold is far beyond the number of users that LSR can |
| 87 | /// conceivably solve, so it should not affect generated code, but catches the |
| 88 | /// worst cases before LSR burns too much compile time and stack space. |
| 89 | static const unsigned MaxIVUsers = 200; |
| 90 | |
Andrew Trick | ecbe22b | 2011-10-11 02:30:45 +0000 | [diff] [blame] | 91 | // Temporary flag to cleanup congruent phis after LSR phi expansion. |
| 92 | // It's currently disabled until we can determine whether it's truly useful or |
| 93 | // not. The flag should be removed after the v3.0 release. |
Andrew Trick | 06f6c05 | 2012-01-07 07:08:17 +0000 | [diff] [blame] | 94 | // This is now needed for ivchains. |
Benjamin Kramer | 7ba71be | 2011-11-26 23:01:57 +0000 | [diff] [blame] | 95 | static cl::opt<bool> EnablePhiElim( |
Andrew Trick | 06f6c05 | 2012-01-07 07:08:17 +0000 | [diff] [blame] | 96 | "enable-lsr-phielim", cl::Hidden, cl::init(true), |
| 97 | cl::desc("Enable LSR phi elimination")); |
Andrew Trick | 5812439 | 2011-09-27 00:44:14 +0000 | [diff] [blame] | 98 | |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 99 | #ifndef NDEBUG |
| 100 | // Stress test IV chain generation. |
| 101 | static cl::opt<bool> StressIVChain( |
| 102 | "stress-ivchain", cl::Hidden, cl::init(false), |
| 103 | cl::desc("Stress test LSR IV chains")); |
| 104 | #else |
| 105 | static bool StressIVChain = false; |
| 106 | #endif |
| 107 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 108 | namespace { |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 109 | |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 110 | struct MemAccessTy { |
| 111 | /// Used in situations where the accessed memory type is unknown. |
| 112 | static const unsigned UnknownAddressSpace = ~0u; |
| 113 | |
| 114 | Type *MemTy; |
| 115 | unsigned AddrSpace; |
| 116 | |
| 117 | MemAccessTy() : MemTy(nullptr), AddrSpace(UnknownAddressSpace) {} |
| 118 | |
| 119 | MemAccessTy(Type *Ty, unsigned AS) : |
| 120 | MemTy(Ty), AddrSpace(AS) {} |
| 121 | |
| 122 | bool operator==(MemAccessTy Other) const { |
| 123 | return MemTy == Other.MemTy && AddrSpace == Other.AddrSpace; |
| 124 | } |
| 125 | |
| 126 | bool operator!=(MemAccessTy Other) const { return !(*this == Other); } |
| 127 | |
| 128 | static MemAccessTy getUnknown(LLVMContext &Ctx) { |
| 129 | return MemAccessTy(Type::getVoidTy(Ctx), UnknownAddressSpace); |
| 130 | } |
| 131 | }; |
| 132 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 133 | /// This class holds data which is used to order reuse candidates. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 134 | class RegSortData { |
| 135 | public: |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 136 | /// This represents the set of LSRUse indices which reference |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 137 | /// a particular register. |
| 138 | SmallBitVector UsedByIndices; |
| 139 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 140 | void print(raw_ostream &OS) const; |
| 141 | void dump() const; |
| 142 | }; |
| 143 | |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 144 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 145 | |
| 146 | void RegSortData::print(raw_ostream &OS) const { |
| 147 | OS << "[NumUses=" << UsedByIndices.count() << ']'; |
| 148 | } |
| 149 | |
Davide Italiano | 945d05f | 2015-11-23 02:47:30 +0000 | [diff] [blame] | 150 | LLVM_DUMP_METHOD |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 151 | void RegSortData::dump() const { |
| 152 | print(errs()); errs() << '\n'; |
| 153 | } |
Dan Gohman | 2a12ae7 | 2009-02-20 04:17:46 +0000 | [diff] [blame] | 154 | |
Chris Lattner | 79a42ac | 2006-12-19 21:40:18 +0000 | [diff] [blame] | 155 | namespace { |
Dale Johannesen | e3a02be | 2007-03-20 00:47:50 +0000 | [diff] [blame] | 156 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 157 | /// Map register candidates to information about how they are used. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 158 | class RegUseTracker { |
| 159 | typedef DenseMap<const SCEV *, RegSortData> RegUsesTy; |
Dale Johannesen | e3a02be | 2007-03-20 00:47:50 +0000 | [diff] [blame] | 160 | |
Dan Gohman | 248c41d | 2010-05-18 22:33:00 +0000 | [diff] [blame] | 161 | RegUsesTy RegUsesMap; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 162 | SmallVector<const SCEV *, 16> RegSequence; |
Evan Cheng | 3df447d | 2006-03-16 21:53:05 +0000 | [diff] [blame] | 163 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 164 | public: |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 165 | void countRegister(const SCEV *Reg, size_t LUIdx); |
| 166 | void dropRegister(const SCEV *Reg, size_t LUIdx); |
| 167 | void swapAndDropUse(size_t LUIdx, size_t LastLUIdx); |
Dan Gohman | 51ad99d | 2010-01-21 02:09:26 +0000 | [diff] [blame] | 168 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 169 | bool isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const; |
Dan Gohman | 51ad99d | 2010-01-21 02:09:26 +0000 | [diff] [blame] | 170 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 171 | const SmallBitVector &getUsedByIndices(const SCEV *Reg) const; |
Dan Gohman | 51ad99d | 2010-01-21 02:09:26 +0000 | [diff] [blame] | 172 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 173 | void clear(); |
Dan Gohman | 51ad99d | 2010-01-21 02:09:26 +0000 | [diff] [blame] | 174 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 175 | typedef SmallVectorImpl<const SCEV *>::iterator iterator; |
| 176 | typedef SmallVectorImpl<const SCEV *>::const_iterator const_iterator; |
| 177 | iterator begin() { return RegSequence.begin(); } |
| 178 | iterator end() { return RegSequence.end(); } |
| 179 | const_iterator begin() const { return RegSequence.begin(); } |
| 180 | const_iterator end() const { return RegSequence.end(); } |
| 181 | }; |
Dan Gohman | 51ad99d | 2010-01-21 02:09:26 +0000 | [diff] [blame] | 182 | |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 183 | } |
Dan Gohman | 51ad99d | 2010-01-21 02:09:26 +0000 | [diff] [blame] | 184 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 185 | void |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 186 | RegUseTracker::countRegister(const SCEV *Reg, size_t LUIdx) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 187 | std::pair<RegUsesTy::iterator, bool> Pair = |
Dan Gohman | 248c41d | 2010-05-18 22:33:00 +0000 | [diff] [blame] | 188 | RegUsesMap.insert(std::make_pair(Reg, RegSortData())); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 189 | RegSortData &RSD = Pair.first->second; |
| 190 | if (Pair.second) |
| 191 | RegSequence.push_back(Reg); |
| 192 | RSD.UsedByIndices.resize(std::max(RSD.UsedByIndices.size(), LUIdx + 1)); |
| 193 | RSD.UsedByIndices.set(LUIdx); |
Dan Gohman | 51ad99d | 2010-01-21 02:09:26 +0000 | [diff] [blame] | 194 | } |
| 195 | |
Dan Gohman | 4cf99b5 | 2010-05-18 23:42:37 +0000 | [diff] [blame] | 196 | void |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 197 | RegUseTracker::dropRegister(const SCEV *Reg, size_t LUIdx) { |
Dan Gohman | 4cf99b5 | 2010-05-18 23:42:37 +0000 | [diff] [blame] | 198 | RegUsesTy::iterator It = RegUsesMap.find(Reg); |
| 199 | assert(It != RegUsesMap.end()); |
| 200 | RegSortData &RSD = It->second; |
| 201 | assert(RSD.UsedByIndices.size() > LUIdx); |
| 202 | RSD.UsedByIndices.reset(LUIdx); |
| 203 | } |
| 204 | |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 205 | void |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 206 | RegUseTracker::swapAndDropUse(size_t LUIdx, size_t LastLUIdx) { |
Dan Gohman | a7b68d6 | 2010-10-07 23:33:43 +0000 | [diff] [blame] | 207 | assert(LUIdx <= LastLUIdx); |
| 208 | |
| 209 | // Update RegUses. The data structure is not optimized for this purpose; |
| 210 | // we must iterate through it and update each of the bit vectors. |
Craig Topper | 10949ae | 2015-05-23 08:45:10 +0000 | [diff] [blame] | 211 | for (auto &Pair : RegUsesMap) { |
| 212 | SmallBitVector &UsedByIndices = Pair.second.UsedByIndices; |
Dan Gohman | a7b68d6 | 2010-10-07 23:33:43 +0000 | [diff] [blame] | 213 | if (LUIdx < UsedByIndices.size()) |
| 214 | UsedByIndices[LUIdx] = |
| 215 | LastLUIdx < UsedByIndices.size() ? UsedByIndices[LastLUIdx] : 0; |
| 216 | UsedByIndices.resize(std::min(UsedByIndices.size(), LastLUIdx)); |
| 217 | } |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 218 | } |
| 219 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 220 | bool |
| 221 | RegUseTracker::isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const { |
Dan Gohman | 4f13bbf | 2010-08-29 15:18:49 +0000 | [diff] [blame] | 222 | RegUsesTy::const_iterator I = RegUsesMap.find(Reg); |
| 223 | if (I == RegUsesMap.end()) |
| 224 | return false; |
| 225 | const SmallBitVector &UsedByIndices = I->second.UsedByIndices; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 226 | int i = UsedByIndices.find_first(); |
| 227 | if (i == -1) return false; |
| 228 | if ((size_t)i != LUIdx) return true; |
| 229 | return UsedByIndices.find_next(i) != -1; |
| 230 | } |
Dan Gohman | 51ad99d | 2010-01-21 02:09:26 +0000 | [diff] [blame] | 231 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 232 | const SmallBitVector &RegUseTracker::getUsedByIndices(const SCEV *Reg) const { |
Dan Gohman | 248c41d | 2010-05-18 22:33:00 +0000 | [diff] [blame] | 233 | RegUsesTy::const_iterator I = RegUsesMap.find(Reg); |
| 234 | assert(I != RegUsesMap.end() && "Unknown register!"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 235 | return I->second.UsedByIndices; |
| 236 | } |
Dan Gohman | 51ad99d | 2010-01-21 02:09:26 +0000 | [diff] [blame] | 237 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 238 | void RegUseTracker::clear() { |
Dan Gohman | 248c41d | 2010-05-18 22:33:00 +0000 | [diff] [blame] | 239 | RegUsesMap.clear(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 240 | RegSequence.clear(); |
| 241 | } |
Dan Gohman | 51ad99d | 2010-01-21 02:09:26 +0000 | [diff] [blame] | 242 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 243 | namespace { |
| 244 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 245 | /// This class holds information that describes a formula for computing |
| 246 | /// satisfying a use. It may include broken-out immediates and scaled registers. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 247 | struct Formula { |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 248 | /// Global base address used for complex addressing. |
| 249 | GlobalValue *BaseGV; |
| 250 | |
| 251 | /// Base offset for complex addressing. |
| 252 | int64_t BaseOffset; |
| 253 | |
| 254 | /// Whether any complex addressing has a base register. |
| 255 | bool HasBaseReg; |
| 256 | |
| 257 | /// The scale of any complex addressing. |
| 258 | int64_t Scale; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 259 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 260 | /// The list of "base" registers for this use. When this is non-empty. The |
| 261 | /// canonical representation of a formula is |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 262 | /// 1. BaseRegs.size > 1 implies ScaledReg != NULL and |
| 263 | /// 2. ScaledReg != NULL implies Scale != 1 || !BaseRegs.empty(). |
| 264 | /// #1 enforces that the scaled register is always used when at least two |
| 265 | /// registers are needed by the formula: e.g., reg1 + reg2 is reg1 + 1 * reg2. |
| 266 | /// #2 enforces that 1 * reg is reg. |
| 267 | /// This invariant can be temporarly broken while building a formula. |
| 268 | /// However, every formula inserted into the LSRInstance must be in canonical |
| 269 | /// form. |
Preston Gurd | 25c3b6a | 2013-02-01 20:41:27 +0000 | [diff] [blame] | 270 | SmallVector<const SCEV *, 4> BaseRegs; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 271 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 272 | /// The 'scaled' register for this use. This should be non-null when Scale is |
| 273 | /// not zero. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 274 | const SCEV *ScaledReg; |
| 275 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 276 | /// An additional constant offset which added near the use. This requires a |
| 277 | /// temporary register, but the offset itself can live in an add immediate |
| 278 | /// field rather than a register. |
Dan Gohman | 6136e94 | 2011-05-03 00:46:49 +0000 | [diff] [blame] | 279 | int64_t UnfoldedOffset; |
| 280 | |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 281 | Formula() |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 282 | : BaseGV(nullptr), BaseOffset(0), HasBaseReg(false), Scale(0), |
Sanjoy Das | 215df9e | 2015-08-04 01:52:05 +0000 | [diff] [blame] | 283 | ScaledReg(nullptr), UnfoldedOffset(0) {} |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 284 | |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 285 | void initialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 286 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 287 | bool isCanonical() const; |
| 288 | |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 289 | void canonicalize(); |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 290 | |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 291 | bool unscale(); |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 292 | |
Adam Nemet | deab6f9 | 2014-04-29 18:25:28 +0000 | [diff] [blame] | 293 | size_t getNumRegs() const; |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 294 | Type *getType() const; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 295 | |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 296 | void deleteBaseReg(const SCEV *&S); |
Dan Gohman | 80a9608 | 2010-05-20 15:17:54 +0000 | [diff] [blame] | 297 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 298 | bool referencesReg(const SCEV *S) const; |
| 299 | bool hasRegsUsedByUsesOtherThan(size_t LUIdx, |
| 300 | const RegUseTracker &RegUses) const; |
| 301 | |
| 302 | void print(raw_ostream &OS) const; |
| 303 | void dump() const; |
| 304 | }; |
| 305 | |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 306 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 307 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 308 | /// Recursion helper for initialMatch. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 309 | static void DoInitialMatch(const SCEV *S, Loop *L, |
| 310 | SmallVectorImpl<const SCEV *> &Good, |
| 311 | SmallVectorImpl<const SCEV *> &Bad, |
Dan Gohman | 20d9ce2 | 2010-11-17 21:41:58 +0000 | [diff] [blame] | 312 | ScalarEvolution &SE) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 313 | // Collect expressions which properly dominate the loop header. |
Dan Gohman | 20d9ce2 | 2010-11-17 21:41:58 +0000 | [diff] [blame] | 314 | if (SE.properlyDominates(S, L->getHeader())) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 315 | Good.push_back(S); |
| 316 | return; |
Dan Gohman | 51ad99d | 2010-01-21 02:09:26 +0000 | [diff] [blame] | 317 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 318 | |
| 319 | // Look at add operands. |
| 320 | if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) { |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 321 | for (const SCEV *S : Add->operands()) |
| 322 | DoInitialMatch(S, L, Good, Bad, SE); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 323 | return; |
| 324 | } |
| 325 | |
| 326 | // Look at addrec operands. |
| 327 | if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) |
Alexandros Lamprineas | 0ee3ec2 | 2016-11-09 08:53:07 +0000 | [diff] [blame] | 328 | if (!AR->getStart()->isZero() && AR->isAffine()) { |
Dan Gohman | 20d9ce2 | 2010-11-17 21:41:58 +0000 | [diff] [blame] | 329 | DoInitialMatch(AR->getStart(), L, Good, Bad, SE); |
Dan Gohman | 1d2ded7 | 2010-05-03 22:09:21 +0000 | [diff] [blame] | 330 | DoInitialMatch(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0), |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 331 | AR->getStepRecurrence(SE), |
Andrew Trick | 8b55b73 | 2011-03-14 16:50:06 +0000 | [diff] [blame] | 332 | // FIXME: AR->getNoWrapFlags() |
| 333 | AR->getLoop(), SCEV::FlagAnyWrap), |
Dan Gohman | 20d9ce2 | 2010-11-17 21:41:58 +0000 | [diff] [blame] | 334 | L, Good, Bad, SE); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 335 | return; |
| 336 | } |
| 337 | |
| 338 | // Handle a multiplication by -1 (negation) if it didn't fold. |
| 339 | if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) |
| 340 | if (Mul->getOperand(0)->isAllOnesValue()) { |
| 341 | SmallVector<const SCEV *, 4> Ops(Mul->op_begin()+1, Mul->op_end()); |
| 342 | const SCEV *NewMul = SE.getMulExpr(Ops); |
| 343 | |
| 344 | SmallVector<const SCEV *, 4> MyGood; |
| 345 | SmallVector<const SCEV *, 4> MyBad; |
Dan Gohman | 20d9ce2 | 2010-11-17 21:41:58 +0000 | [diff] [blame] | 346 | DoInitialMatch(NewMul, L, MyGood, MyBad, SE); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 347 | const SCEV *NegOne = SE.getSCEV(ConstantInt::getAllOnesValue( |
| 348 | SE.getEffectiveSCEVType(NewMul->getType()))); |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 349 | for (const SCEV *S : MyGood) |
| 350 | Good.push_back(SE.getMulExpr(NegOne, S)); |
| 351 | for (const SCEV *S : MyBad) |
| 352 | Bad.push_back(SE.getMulExpr(NegOne, S)); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 353 | return; |
| 354 | } |
| 355 | |
| 356 | // Ok, we can't do anything interesting. Just stuff the whole thing into a |
| 357 | // register and hope for the best. |
| 358 | Bad.push_back(S); |
| 359 | } |
| 360 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 361 | /// Incorporate loop-variant parts of S into this Formula, attempting to keep |
| 362 | /// all loop-invariant and loop-computable values in a single base register. |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 363 | void Formula::initialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 364 | SmallVector<const SCEV *, 4> Good; |
| 365 | SmallVector<const SCEV *, 4> Bad; |
Dan Gohman | 20d9ce2 | 2010-11-17 21:41:58 +0000 | [diff] [blame] | 366 | DoInitialMatch(S, L, Good, Bad, SE); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 367 | if (!Good.empty()) { |
Dan Gohman | 9b5d0bb7 | 2010-04-08 23:36:27 +0000 | [diff] [blame] | 368 | const SCEV *Sum = SE.getAddExpr(Good); |
| 369 | if (!Sum->isZero()) |
| 370 | BaseRegs.push_back(Sum); |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 371 | HasBaseReg = true; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 372 | } |
| 373 | if (!Bad.empty()) { |
Dan Gohman | 9b5d0bb7 | 2010-04-08 23:36:27 +0000 | [diff] [blame] | 374 | const SCEV *Sum = SE.getAddExpr(Bad); |
| 375 | if (!Sum->isZero()) |
| 376 | BaseRegs.push_back(Sum); |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 377 | HasBaseReg = true; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 378 | } |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 379 | canonicalize(); |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 380 | } |
| 381 | |
| 382 | /// \brief Check whether or not this formula statisfies the canonical |
| 383 | /// representation. |
| 384 | /// \see Formula::BaseRegs. |
| 385 | bool Formula::isCanonical() const { |
| 386 | if (ScaledReg) |
| 387 | return Scale != 1 || !BaseRegs.empty(); |
| 388 | return BaseRegs.size() <= 1; |
| 389 | } |
| 390 | |
| 391 | /// \brief Helper method to morph a formula into its canonical representation. |
| 392 | /// \see Formula::BaseRegs. |
| 393 | /// Every formula having more than one base register, must use the ScaledReg |
| 394 | /// field. Otherwise, we would have to do special cases everywhere in LSR |
| 395 | /// to treat reg1 + reg2 + ... the same way as reg1 + 1*reg2 + ... |
| 396 | /// On the other hand, 1*reg should be canonicalized into reg. |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 397 | void Formula::canonicalize() { |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 398 | if (isCanonical()) |
| 399 | return; |
| 400 | // So far we did not need this case. This is easy to implement but it is |
| 401 | // useless to maintain dead code. Beside it could hurt compile time. |
| 402 | assert(!BaseRegs.empty() && "1*reg => reg, should not be needed."); |
| 403 | // Keep the invariant sum in BaseRegs and one of the variant sum in ScaledReg. |
| 404 | ScaledReg = BaseRegs.back(); |
| 405 | BaseRegs.pop_back(); |
| 406 | Scale = 1; |
| 407 | size_t BaseRegsSize = BaseRegs.size(); |
| 408 | size_t Try = 0; |
| 409 | // If ScaledReg is an invariant, try to find a variant expression. |
| 410 | while (Try < BaseRegsSize && !isa<SCEVAddRecExpr>(ScaledReg)) |
| 411 | std::swap(ScaledReg, BaseRegs[Try++]); |
| 412 | } |
| 413 | |
| 414 | /// \brief Get rid of the scale in the formula. |
| 415 | /// In other words, this method morphes reg1 + 1*reg2 into reg1 + reg2. |
| 416 | /// \return true if it was possible to get rid of the scale, false otherwise. |
| 417 | /// \note After this operation the formula may not be in the canonical form. |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 418 | bool Formula::unscale() { |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 419 | if (Scale != 1) |
| 420 | return false; |
| 421 | Scale = 0; |
| 422 | BaseRegs.push_back(ScaledReg); |
| 423 | ScaledReg = nullptr; |
| 424 | return true; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 425 | } |
| 426 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 427 | /// Return the total number of register operands used by this formula. This does |
| 428 | /// not include register uses implied by non-constant addrec strides. |
Adam Nemet | deab6f9 | 2014-04-29 18:25:28 +0000 | [diff] [blame] | 429 | size_t Formula::getNumRegs() const { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 430 | return !!ScaledReg + BaseRegs.size(); |
| 431 | } |
| 432 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 433 | /// Return the type of this formula, if it has one, or null otherwise. This type |
| 434 | /// is meaningless except for the bit size. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 435 | Type *Formula::getType() const { |
Sanjoy Das | 215df9e | 2015-08-04 01:52:05 +0000 | [diff] [blame] | 436 | return !BaseRegs.empty() ? BaseRegs.front()->getType() : |
| 437 | ScaledReg ? ScaledReg->getType() : |
| 438 | BaseGV ? BaseGV->getType() : |
| 439 | nullptr; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 440 | } |
| 441 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 442 | /// Delete the given base reg from the BaseRegs list. |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 443 | void Formula::deleteBaseReg(const SCEV *&S) { |
Dan Gohman | 80a9608 | 2010-05-20 15:17:54 +0000 | [diff] [blame] | 444 | if (&S != &BaseRegs.back()) |
| 445 | std::swap(S, BaseRegs.back()); |
| 446 | BaseRegs.pop_back(); |
| 447 | } |
| 448 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 449 | /// Test if this formula references the given register. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 450 | bool Formula::referencesReg(const SCEV *S) const { |
David Majnemer | 0d955d0 | 2016-08-11 22:21:41 +0000 | [diff] [blame] | 451 | return S == ScaledReg || is_contained(BaseRegs, S); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 452 | } |
| 453 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 454 | /// Test whether this formula uses registers which are used by uses other than |
| 455 | /// the use with the given index. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 456 | bool Formula::hasRegsUsedByUsesOtherThan(size_t LUIdx, |
| 457 | const RegUseTracker &RegUses) const { |
| 458 | if (ScaledReg) |
| 459 | if (RegUses.isRegUsedByUsesOtherThan(ScaledReg, LUIdx)) |
| 460 | return true; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 461 | for (const SCEV *BaseReg : BaseRegs) |
| 462 | if (RegUses.isRegUsedByUsesOtherThan(BaseReg, LUIdx)) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 463 | return true; |
| 464 | return false; |
| 465 | } |
| 466 | |
| 467 | void Formula::print(raw_ostream &OS) const { |
| 468 | bool First = true; |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 469 | if (BaseGV) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 470 | if (!First) OS << " + "; else First = false; |
Chandler Carruth | d48cdbf | 2014-01-09 02:29:41 +0000 | [diff] [blame] | 471 | BaseGV->printAsOperand(OS, /*PrintType=*/false); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 472 | } |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 473 | if (BaseOffset != 0) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 474 | if (!First) OS << " + "; else First = false; |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 475 | OS << BaseOffset; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 476 | } |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 477 | for (const SCEV *BaseReg : BaseRegs) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 478 | if (!First) OS << " + "; else First = false; |
Sanjoy Das | 215df9e | 2015-08-04 01:52:05 +0000 | [diff] [blame] | 479 | OS << "reg(" << *BaseReg << ')'; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 480 | } |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 481 | if (HasBaseReg && BaseRegs.empty()) { |
Dan Gohman | 06ab08f | 2010-05-18 22:35:55 +0000 | [diff] [blame] | 482 | if (!First) OS << " + "; else First = false; |
| 483 | OS << "**error: HasBaseReg**"; |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 484 | } else if (!HasBaseReg && !BaseRegs.empty()) { |
Dan Gohman | 06ab08f | 2010-05-18 22:35:55 +0000 | [diff] [blame] | 485 | if (!First) OS << " + "; else First = false; |
| 486 | OS << "**error: !HasBaseReg**"; |
| 487 | } |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 488 | if (Scale != 0) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 489 | if (!First) OS << " + "; else First = false; |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 490 | OS << Scale << "*reg("; |
Sanjoy Das | 215df9e | 2015-08-04 01:52:05 +0000 | [diff] [blame] | 491 | if (ScaledReg) |
| 492 | OS << *ScaledReg; |
| 493 | else |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 494 | OS << "<unknown>"; |
| 495 | OS << ')'; |
| 496 | } |
Dan Gohman | 6136e94 | 2011-05-03 00:46:49 +0000 | [diff] [blame] | 497 | if (UnfoldedOffset != 0) { |
Arnaud A. de Grandmaison | 75c9e6d | 2014-03-15 22:13:15 +0000 | [diff] [blame] | 498 | if (!First) OS << " + "; |
Dan Gohman | 6136e94 | 2011-05-03 00:46:49 +0000 | [diff] [blame] | 499 | OS << "imm(" << UnfoldedOffset << ')'; |
| 500 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 501 | } |
| 502 | |
Davide Italiano | 945d05f | 2015-11-23 02:47:30 +0000 | [diff] [blame] | 503 | LLVM_DUMP_METHOD |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 504 | void Formula::dump() const { |
| 505 | print(errs()); errs() << '\n'; |
| 506 | } |
| 507 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 508 | /// Return true if the given addrec can be sign-extended without changing its |
| 509 | /// value. |
Dan Gohman | 85af256 | 2010-02-19 19:32:49 +0000 | [diff] [blame] | 510 | static bool isAddRecSExtable(const SCEVAddRecExpr *AR, ScalarEvolution &SE) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 511 | Type *WideTy = |
Dan Gohman | ab5fb7f | 2010-05-20 19:44:23 +0000 | [diff] [blame] | 512 | IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(AR->getType()) + 1); |
Dan Gohman | 85af256 | 2010-02-19 19:32:49 +0000 | [diff] [blame] | 513 | return isa<SCEVAddRecExpr>(SE.getSignExtendExpr(AR, WideTy)); |
| 514 | } |
| 515 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 516 | /// Return true if the given add can be sign-extended without changing its |
| 517 | /// value. |
Dan Gohman | 85af256 | 2010-02-19 19:32:49 +0000 | [diff] [blame] | 518 | static bool isAddSExtable(const SCEVAddExpr *A, ScalarEvolution &SE) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 519 | Type *WideTy = |
Dan Gohman | ab5fb7f | 2010-05-20 19:44:23 +0000 | [diff] [blame] | 520 | IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(A->getType()) + 1); |
Dan Gohman | 85af256 | 2010-02-19 19:32:49 +0000 | [diff] [blame] | 521 | return isa<SCEVAddExpr>(SE.getSignExtendExpr(A, WideTy)); |
| 522 | } |
| 523 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 524 | /// Return true if the given mul can be sign-extended without changing its |
| 525 | /// value. |
Dan Gohman | ab54222 | 2010-06-24 16:45:11 +0000 | [diff] [blame] | 526 | static bool isMulSExtable(const SCEVMulExpr *M, ScalarEvolution &SE) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 527 | Type *WideTy = |
Dan Gohman | ab54222 | 2010-06-24 16:45:11 +0000 | [diff] [blame] | 528 | IntegerType::get(SE.getContext(), |
| 529 | SE.getTypeSizeInBits(M->getType()) * M->getNumOperands()); |
| 530 | return isa<SCEVMulExpr>(SE.getSignExtendExpr(M, WideTy)); |
Dan Gohman | 85af256 | 2010-02-19 19:32:49 +0000 | [diff] [blame] | 531 | } |
| 532 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 533 | /// Return an expression for LHS /s RHS, if it can be determined and if the |
| 534 | /// remainder is known to be zero, or null otherwise. If IgnoreSignificantBits |
| 535 | /// is true, expressions like (X * Y) /s Y are simplified to Y, ignoring that |
| 536 | /// the multiplication may overflow, which is useful when the result will be |
| 537 | /// used in a context where the most significant bits are ignored. |
Dan Gohman | 4eebb94 | 2010-02-19 19:35:48 +0000 | [diff] [blame] | 538 | static const SCEV *getExactSDiv(const SCEV *LHS, const SCEV *RHS, |
| 539 | ScalarEvolution &SE, |
| 540 | bool IgnoreSignificantBits = false) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 541 | // Handle the trivial case, which works for any SCEV type. |
| 542 | if (LHS == RHS) |
Dan Gohman | 1d2ded7 | 2010-05-03 22:09:21 +0000 | [diff] [blame] | 543 | return SE.getConstant(LHS->getType(), 1); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 544 | |
Dan Gohman | 47ddf76 | 2010-06-24 16:51:25 +0000 | [diff] [blame] | 545 | // Handle a few RHS special cases. |
| 546 | const SCEVConstant *RC = dyn_cast<SCEVConstant>(RHS); |
| 547 | if (RC) { |
Sanjoy Das | 0de2fec | 2015-12-17 20:28:46 +0000 | [diff] [blame] | 548 | const APInt &RA = RC->getAPInt(); |
Dan Gohman | 47ddf76 | 2010-06-24 16:51:25 +0000 | [diff] [blame] | 549 | // Handle x /s -1 as x * -1, to give ScalarEvolution a chance to do |
| 550 | // some folding. |
| 551 | if (RA.isAllOnesValue()) |
| 552 | return SE.getMulExpr(LHS, RC); |
| 553 | // Handle x /s 1 as x. |
| 554 | if (RA == 1) |
| 555 | return LHS; |
| 556 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 557 | |
| 558 | // Check for a division of a constant by a constant. |
| 559 | if (const SCEVConstant *C = dyn_cast<SCEVConstant>(LHS)) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 560 | if (!RC) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 561 | return nullptr; |
Sanjoy Das | 0de2fec | 2015-12-17 20:28:46 +0000 | [diff] [blame] | 562 | const APInt &LA = C->getAPInt(); |
| 563 | const APInt &RA = RC->getAPInt(); |
Dan Gohman | 47ddf76 | 2010-06-24 16:51:25 +0000 | [diff] [blame] | 564 | if (LA.srem(RA) != 0) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 565 | return nullptr; |
Dan Gohman | 47ddf76 | 2010-06-24 16:51:25 +0000 | [diff] [blame] | 566 | return SE.getConstant(LA.sdiv(RA)); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 567 | } |
| 568 | |
Dan Gohman | 85af256 | 2010-02-19 19:32:49 +0000 | [diff] [blame] | 569 | // Distribute the sdiv over addrec operands, if the addrec doesn't overflow. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 570 | if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS)) { |
Alexandros Lamprineas | 0ee3ec2 | 2016-11-09 08:53:07 +0000 | [diff] [blame] | 571 | if ((IgnoreSignificantBits || isAddRecSExtable(AR, SE)) && AR->isAffine()) { |
Dan Gohman | 4eebb94 | 2010-02-19 19:35:48 +0000 | [diff] [blame] | 572 | const SCEV *Step = getExactSDiv(AR->getStepRecurrence(SE), RHS, SE, |
| 573 | IgnoreSignificantBits); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 574 | if (!Step) return nullptr; |
Dan Gohman | 129a816 | 2010-08-19 01:02:31 +0000 | [diff] [blame] | 575 | const SCEV *Start = getExactSDiv(AR->getStart(), RHS, SE, |
| 576 | IgnoreSignificantBits); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 577 | if (!Start) return nullptr; |
Andrew Trick | 8b55b73 | 2011-03-14 16:50:06 +0000 | [diff] [blame] | 578 | // FlagNW is independent of the start value, step direction, and is |
| 579 | // preserved with smaller magnitude steps. |
| 580 | // FIXME: AR->getNoWrapFlags(SCEV::FlagNW) |
| 581 | return SE.getAddRecExpr(Start, Step, AR->getLoop(), SCEV::FlagAnyWrap); |
Dan Gohman | 85af256 | 2010-02-19 19:32:49 +0000 | [diff] [blame] | 582 | } |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 583 | return nullptr; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 584 | } |
| 585 | |
Dan Gohman | 85af256 | 2010-02-19 19:32:49 +0000 | [diff] [blame] | 586 | // Distribute the sdiv over add operands, if the add doesn't overflow. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 587 | if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) { |
Dan Gohman | 85af256 | 2010-02-19 19:32:49 +0000 | [diff] [blame] | 588 | if (IgnoreSignificantBits || isAddSExtable(Add, SE)) { |
| 589 | SmallVector<const SCEV *, 8> Ops; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 590 | for (const SCEV *S : Add->operands()) { |
| 591 | const SCEV *Op = getExactSDiv(S, RHS, SE, IgnoreSignificantBits); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 592 | if (!Op) return nullptr; |
Dan Gohman | 85af256 | 2010-02-19 19:32:49 +0000 | [diff] [blame] | 593 | Ops.push_back(Op); |
| 594 | } |
| 595 | return SE.getAddExpr(Ops); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 596 | } |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 597 | return nullptr; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 598 | } |
| 599 | |
| 600 | // Check for a multiply operand that we can pull RHS out of. |
Dan Gohman | 963b1c1 | 2010-06-24 16:57:52 +0000 | [diff] [blame] | 601 | if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(LHS)) { |
Dan Gohman | 85af256 | 2010-02-19 19:32:49 +0000 | [diff] [blame] | 602 | if (IgnoreSignificantBits || isMulSExtable(Mul, SE)) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 603 | SmallVector<const SCEV *, 4> Ops; |
| 604 | bool Found = false; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 605 | for (const SCEV *S : Mul->operands()) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 606 | if (!Found) |
Dan Gohman | 6b733fc | 2010-05-20 16:23:28 +0000 | [diff] [blame] | 607 | if (const SCEV *Q = getExactSDiv(S, RHS, SE, |
Dan Gohman | 4eebb94 | 2010-02-19 19:35:48 +0000 | [diff] [blame] | 608 | IgnoreSignificantBits)) { |
Dan Gohman | 6b733fc | 2010-05-20 16:23:28 +0000 | [diff] [blame] | 609 | S = Q; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 610 | Found = true; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 611 | } |
Dan Gohman | 6b733fc | 2010-05-20 16:23:28 +0000 | [diff] [blame] | 612 | Ops.push_back(S); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 613 | } |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 614 | return Found ? SE.getMulExpr(Ops) : nullptr; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 615 | } |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 616 | return nullptr; |
Dan Gohman | 963b1c1 | 2010-06-24 16:57:52 +0000 | [diff] [blame] | 617 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 618 | |
| 619 | // Otherwise we don't know. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 620 | return nullptr; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 621 | } |
| 622 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 623 | /// If S involves the addition of a constant integer value, return that integer |
| 624 | /// value, and mutate S to point to a new SCEV with that value excluded. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 625 | static int64_t ExtractImmediate(const SCEV *&S, ScalarEvolution &SE) { |
| 626 | if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) { |
Sanjoy Das | 0de2fec | 2015-12-17 20:28:46 +0000 | [diff] [blame] | 627 | if (C->getAPInt().getMinSignedBits() <= 64) { |
Dan Gohman | 1d2ded7 | 2010-05-03 22:09:21 +0000 | [diff] [blame] | 628 | S = SE.getConstant(C->getType(), 0); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 629 | return C->getValue()->getSExtValue(); |
| 630 | } |
| 631 | } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) { |
| 632 | SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end()); |
| 633 | int64_t Result = ExtractImmediate(NewOps.front(), SE); |
Dan Gohman | 081ffcd | 2010-08-13 21:17:19 +0000 | [diff] [blame] | 634 | if (Result != 0) |
| 635 | S = SE.getAddExpr(NewOps); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 636 | return Result; |
| 637 | } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { |
| 638 | SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end()); |
| 639 | int64_t Result = ExtractImmediate(NewOps.front(), SE); |
Dan Gohman | 081ffcd | 2010-08-13 21:17:19 +0000 | [diff] [blame] | 640 | if (Result != 0) |
Andrew Trick | 8b55b73 | 2011-03-14 16:50:06 +0000 | [diff] [blame] | 641 | S = SE.getAddRecExpr(NewOps, AR->getLoop(), |
| 642 | // FIXME: AR->getNoWrapFlags(SCEV::FlagNW) |
| 643 | SCEV::FlagAnyWrap); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 644 | return Result; |
| 645 | } |
| 646 | return 0; |
| 647 | } |
| 648 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 649 | /// If S involves the addition of a GlobalValue address, return that symbol, and |
| 650 | /// mutate S to point to a new SCEV with that value excluded. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 651 | static GlobalValue *ExtractSymbol(const SCEV *&S, ScalarEvolution &SE) { |
| 652 | if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) { |
| 653 | if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue())) { |
Dan Gohman | 1d2ded7 | 2010-05-03 22:09:21 +0000 | [diff] [blame] | 654 | S = SE.getConstant(GV->getType(), 0); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 655 | return GV; |
| 656 | } |
| 657 | } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) { |
| 658 | SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end()); |
| 659 | GlobalValue *Result = ExtractSymbol(NewOps.back(), SE); |
Dan Gohman | 081ffcd | 2010-08-13 21:17:19 +0000 | [diff] [blame] | 660 | if (Result) |
| 661 | S = SE.getAddExpr(NewOps); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 662 | return Result; |
| 663 | } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { |
| 664 | SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end()); |
| 665 | GlobalValue *Result = ExtractSymbol(NewOps.front(), SE); |
Dan Gohman | 081ffcd | 2010-08-13 21:17:19 +0000 | [diff] [blame] | 666 | if (Result) |
Andrew Trick | 8b55b73 | 2011-03-14 16:50:06 +0000 | [diff] [blame] | 667 | S = SE.getAddRecExpr(NewOps, AR->getLoop(), |
| 668 | // FIXME: AR->getNoWrapFlags(SCEV::FlagNW) |
| 669 | SCEV::FlagAnyWrap); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 670 | return Result; |
| 671 | } |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 672 | return nullptr; |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 673 | } |
| 674 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 675 | /// Returns true if the specified instruction is using the specified value as an |
| 676 | /// address. |
Dale Johannesen | 9efd2ce | 2008-12-05 21:47:27 +0000 | [diff] [blame] | 677 | static bool isAddressUse(Instruction *Inst, Value *OperandVal) { |
| 678 | bool isAddress = isa<LoadInst>(Inst); |
| 679 | if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) { |
| 680 | if (SI->getOperand(1) == OperandVal) |
| 681 | isAddress = true; |
| 682 | } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) { |
| 683 | // Addressing modes can also be folded into prefetches and a variety |
| 684 | // of intrinsics. |
| 685 | switch (II->getIntrinsicID()) { |
| 686 | default: break; |
| 687 | case Intrinsic::prefetch: |
Gabor Greif | 8ae3095 | 2010-06-30 09:15:28 +0000 | [diff] [blame] | 688 | if (II->getArgOperand(0) == OperandVal) |
Dale Johannesen | 9efd2ce | 2008-12-05 21:47:27 +0000 | [diff] [blame] | 689 | isAddress = true; |
| 690 | break; |
| 691 | } |
| 692 | } |
| 693 | return isAddress; |
| 694 | } |
Chris Lattner | e4ed42a | 2005-10-03 01:04:44 +0000 | [diff] [blame] | 695 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 696 | /// Return the type of the memory being accessed. |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 697 | static MemAccessTy getAccessType(const Instruction *Inst) { |
| 698 | MemAccessTy AccessTy(Inst->getType(), MemAccessTy::UnknownAddressSpace); |
| 699 | if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) { |
| 700 | AccessTy.MemTy = SI->getOperand(0)->getType(); |
| 701 | AccessTy.AddrSpace = SI->getPointerAddressSpace(); |
| 702 | } else if (const LoadInst *LI = dyn_cast<LoadInst>(Inst)) { |
| 703 | AccessTy.AddrSpace = LI->getPointerAddressSpace(); |
Dan Gohman | 917ffe4 | 2009-03-09 21:01:17 +0000 | [diff] [blame] | 704 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 705 | |
| 706 | // All pointers have the same requirements, so canonicalize them to an |
| 707 | // arbitrary pointer type to minimize variation. |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 708 | if (PointerType *PTy = dyn_cast<PointerType>(AccessTy.MemTy)) |
| 709 | AccessTy.MemTy = PointerType::get(IntegerType::get(PTy->getContext(), 1), |
| 710 | PTy->getAddressSpace()); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 711 | |
Dan Gohman | 14d1339 | 2009-05-18 16:45:28 +0000 | [diff] [blame] | 712 | return AccessTy; |
Dan Gohman | 917ffe4 | 2009-03-09 21:01:17 +0000 | [diff] [blame] | 713 | } |
| 714 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 715 | /// Return true if this AddRec is already a phi in its loop. |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 716 | static bool isExistingPhi(const SCEVAddRecExpr *AR, ScalarEvolution &SE) { |
| 717 | for (BasicBlock::iterator I = AR->getLoop()->getHeader()->begin(); |
| 718 | PHINode *PN = dyn_cast<PHINode>(I); ++I) { |
| 719 | if (SE.isSCEVable(PN->getType()) && |
| 720 | (SE.getEffectiveSCEVType(PN->getType()) == |
| 721 | SE.getEffectiveSCEVType(AR->getType())) && |
| 722 | SE.getSCEV(PN) == AR) |
| 723 | return true; |
| 724 | } |
| 725 | return false; |
| 726 | } |
| 727 | |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 728 | /// Check if expanding this expression is likely to incur significant cost. This |
| 729 | /// is tricky because SCEV doesn't track which expressions are actually computed |
| 730 | /// by the current IR. |
| 731 | /// |
| 732 | /// We currently allow expansion of IV increments that involve adds, |
| 733 | /// multiplication by constants, and AddRecs from existing phis. |
| 734 | /// |
| 735 | /// TODO: Allow UDivExpr if we can find an existing IV increment that is an |
| 736 | /// obvious multiple of the UDivExpr. |
| 737 | static bool isHighCostExpansion(const SCEV *S, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 738 | SmallPtrSetImpl<const SCEV*> &Processed, |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 739 | ScalarEvolution &SE) { |
| 740 | // Zero/One operand expressions |
| 741 | switch (S->getSCEVType()) { |
| 742 | case scUnknown: |
| 743 | case scConstant: |
| 744 | return false; |
| 745 | case scTruncate: |
| 746 | return isHighCostExpansion(cast<SCEVTruncateExpr>(S)->getOperand(), |
| 747 | Processed, SE); |
| 748 | case scZeroExtend: |
| 749 | return isHighCostExpansion(cast<SCEVZeroExtendExpr>(S)->getOperand(), |
| 750 | Processed, SE); |
| 751 | case scSignExtend: |
| 752 | return isHighCostExpansion(cast<SCEVSignExtendExpr>(S)->getOperand(), |
| 753 | Processed, SE); |
| 754 | } |
| 755 | |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 756 | if (!Processed.insert(S).second) |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 757 | return false; |
| 758 | |
| 759 | if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) { |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 760 | for (const SCEV *S : Add->operands()) { |
| 761 | if (isHighCostExpansion(S, Processed, SE)) |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 762 | return true; |
| 763 | } |
| 764 | return false; |
| 765 | } |
| 766 | |
| 767 | if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) { |
| 768 | if (Mul->getNumOperands() == 2) { |
| 769 | // Multiplication by a constant is ok |
| 770 | if (isa<SCEVConstant>(Mul->getOperand(0))) |
| 771 | return isHighCostExpansion(Mul->getOperand(1), Processed, SE); |
| 772 | |
| 773 | // If we have the value of one operand, check if an existing |
| 774 | // multiplication already generates this expression. |
| 775 | if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(Mul->getOperand(1))) { |
| 776 | Value *UVal = U->getValue(); |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 777 | for (User *UR : UVal->users()) { |
Andrew Trick | 14779cc | 2012-03-26 20:28:37 +0000 | [diff] [blame] | 778 | // If U is a constant, it may be used by a ConstantExpr. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 779 | Instruction *UI = dyn_cast<Instruction>(UR); |
| 780 | if (UI && UI->getOpcode() == Instruction::Mul && |
| 781 | SE.isSCEVable(UI->getType())) { |
| 782 | return SE.getSCEV(UI) == Mul; |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 783 | } |
| 784 | } |
| 785 | } |
| 786 | } |
| 787 | } |
| 788 | |
| 789 | if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { |
| 790 | if (isExistingPhi(AR, SE)) |
| 791 | return false; |
| 792 | } |
| 793 | |
| 794 | // Fow now, consider any other type of expression (div/mul/min/max) high cost. |
| 795 | return true; |
| 796 | } |
| 797 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 798 | /// If any of the instructions is the specified set are trivially dead, delete |
| 799 | /// them and see if this makes any of their operands subsequently dead. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 800 | static bool |
| 801 | DeleteTriviallyDeadInstructions(SmallVectorImpl<WeakVH> &DeadInsts) { |
| 802 | bool Changed = false; |
| 803 | |
| 804 | while (!DeadInsts.empty()) { |
Richard Smith | ad9c8e8 | 2012-08-21 20:35:14 +0000 | [diff] [blame] | 805 | Value *V = DeadInsts.pop_back_val(); |
| 806 | Instruction *I = dyn_cast_or_null<Instruction>(V); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 807 | |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 808 | if (!I || !isInstructionTriviallyDead(I)) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 809 | continue; |
| 810 | |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 811 | for (Use &O : I->operands()) |
| 812 | if (Instruction *U = dyn_cast<Instruction>(O)) { |
| 813 | O = nullptr; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 814 | if (U->use_empty()) |
Benjamin Kramer | f5e2fc4 | 2015-05-29 19:43:39 +0000 | [diff] [blame] | 815 | DeadInsts.emplace_back(U); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 816 | } |
| 817 | |
| 818 | I->eraseFromParent(); |
| 819 | Changed = true; |
| 820 | } |
| 821 | |
| 822 | return Changed; |
| 823 | } |
| 824 | |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 825 | namespace { |
Quentin Colombet | 8aa7abe | 2013-05-31 17:20:29 +0000 | [diff] [blame] | 826 | class LSRUse; |
| 827 | } |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 828 | |
| 829 | /// \brief Check if the addressing mode defined by \p F is completely |
| 830 | /// folded in \p LU at isel time. |
| 831 | /// This includes address-mode folding and special icmp tricks. |
| 832 | /// This function returns true if \p LU can accommodate what \p F |
| 833 | /// defines and up to 1 base + 1 scaled + offset. |
| 834 | /// In other words, if \p F has several base registers, this function may |
| 835 | /// still return true. Therefore, users still need to account for |
| 836 | /// additional base registers and/or unfolded offsets to derive an |
| 837 | /// accurate cost model. |
| 838 | static bool isAMCompletelyFolded(const TargetTransformInfo &TTI, |
| 839 | const LSRUse &LU, const Formula &F); |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 840 | // Get the cost of the scaling factor used in F for LU. |
| 841 | static unsigned getScalingFactorCost(const TargetTransformInfo &TTI, |
| 842 | const LSRUse &LU, const Formula &F); |
Quentin Colombet | 8aa7abe | 2013-05-31 17:20:29 +0000 | [diff] [blame] | 843 | |
| 844 | namespace { |
Jim Grosbach | 60f4854 | 2009-11-17 17:53:56 +0000 | [diff] [blame] | 845 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 846 | /// This class is used to measure and compare candidate formulae. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 847 | class Cost { |
| 848 | /// TODO: Some of these could be merged. Also, a lexical ordering |
| 849 | /// isn't always optimal. |
| 850 | unsigned NumRegs; |
| 851 | unsigned AddRecCost; |
| 852 | unsigned NumIVMuls; |
| 853 | unsigned NumBaseAdds; |
| 854 | unsigned ImmCost; |
| 855 | unsigned SetupCost; |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 856 | unsigned ScaleCost; |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 857 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 858 | public: |
| 859 | Cost() |
| 860 | : NumRegs(0), AddRecCost(0), NumIVMuls(0), NumBaseAdds(0), ImmCost(0), |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 861 | SetupCost(0), ScaleCost(0) {} |
Jim Grosbach | 60f4854 | 2009-11-17 17:53:56 +0000 | [diff] [blame] | 862 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 863 | bool operator<(const Cost &Other) const; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 864 | |
Tim Northover | bc6659c | 2014-01-22 13:27:00 +0000 | [diff] [blame] | 865 | void Lose(); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 866 | |
Andrew Trick | 784729d | 2011-09-26 23:11:04 +0000 | [diff] [blame] | 867 | #ifndef NDEBUG |
| 868 | // Once any of the metrics loses, they must all remain losers. |
| 869 | bool isValid() { |
| 870 | return ((NumRegs | AddRecCost | NumIVMuls | NumBaseAdds |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 871 | | ImmCost | SetupCost | ScaleCost) != ~0u) |
Andrew Trick | 784729d | 2011-09-26 23:11:04 +0000 | [diff] [blame] | 872 | || ((NumRegs & AddRecCost & NumIVMuls & NumBaseAdds |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 873 | & ImmCost & SetupCost & ScaleCost) == ~0u); |
Andrew Trick | 784729d | 2011-09-26 23:11:04 +0000 | [diff] [blame] | 874 | } |
| 875 | #endif |
| 876 | |
| 877 | bool isLoser() { |
| 878 | assert(isValid() && "invalid cost"); |
| 879 | return NumRegs == ~0u; |
| 880 | } |
| 881 | |
Quentin Colombet | 8aa7abe | 2013-05-31 17:20:29 +0000 | [diff] [blame] | 882 | void RateFormula(const TargetTransformInfo &TTI, |
| 883 | const Formula &F, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 884 | SmallPtrSetImpl<const SCEV *> &Regs, |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 885 | const DenseSet<const SCEV *> &VisitedRegs, |
| 886 | const Loop *L, |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 887 | ScalarEvolution &SE, DominatorTree &DT, |
Quentin Colombet | 8aa7abe | 2013-05-31 17:20:29 +0000 | [diff] [blame] | 888 | const LSRUse &LU, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 889 | SmallPtrSetImpl<const SCEV *> *LoserRegs = nullptr); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 890 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 891 | void print(raw_ostream &OS) const; |
| 892 | void dump() const; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 893 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 894 | private: |
| 895 | void RateRegister(const SCEV *Reg, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 896 | SmallPtrSetImpl<const SCEV *> &Regs, |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 897 | const Loop *L, |
| 898 | ScalarEvolution &SE, DominatorTree &DT); |
Dan Gohman | 5b18f03 | 2010-02-13 02:06:02 +0000 | [diff] [blame] | 899 | void RatePrimaryRegister(const SCEV *Reg, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 900 | SmallPtrSetImpl<const SCEV *> &Regs, |
Dan Gohman | 5b18f03 | 2010-02-13 02:06:02 +0000 | [diff] [blame] | 901 | const Loop *L, |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 902 | ScalarEvolution &SE, DominatorTree &DT, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 903 | SmallPtrSetImpl<const SCEV *> *LoserRegs); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 904 | }; |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 905 | |
| 906 | /// An operand value in an instruction which is to be replaced with some |
| 907 | /// equivalent, possibly strength-reduced, replacement. |
| 908 | struct LSRFixup { |
| 909 | /// The instruction which will be updated. |
| 910 | Instruction *UserInst; |
| 911 | |
| 912 | /// The operand of the instruction which will be replaced. The operand may be |
| 913 | /// used more than once; every instance will be replaced. |
| 914 | Value *OperandValToReplace; |
| 915 | |
| 916 | /// If this user is to use the post-incremented value of an induction |
| 917 | /// variable, this variable is non-null and holds the loop associated with the |
| 918 | /// induction variable. |
| 919 | PostIncLoopSet PostIncLoops; |
| 920 | |
| 921 | /// A constant offset to be added to the LSRUse expression. This allows |
| 922 | /// multiple fixups to share the same LSRUse with different offsets, for |
| 923 | /// example in an unrolled loop. |
| 924 | int64_t Offset; |
| 925 | |
| 926 | bool isUseFullyOutsideLoop(const Loop *L) const; |
| 927 | |
| 928 | LSRFixup(); |
| 929 | |
| 930 | void print(raw_ostream &OS) const; |
| 931 | void dump() const; |
| 932 | }; |
| 933 | |
| 934 | |
| 935 | /// A DenseMapInfo implementation for holding DenseMaps and DenseSets of sorted |
| 936 | /// SmallVectors of const SCEV*. |
| 937 | struct UniquifierDenseMapInfo { |
| 938 | static SmallVector<const SCEV *, 4> getEmptyKey() { |
| 939 | SmallVector<const SCEV *, 4> V; |
| 940 | V.push_back(reinterpret_cast<const SCEV *>(-1)); |
| 941 | return V; |
| 942 | } |
| 943 | |
| 944 | static SmallVector<const SCEV *, 4> getTombstoneKey() { |
| 945 | SmallVector<const SCEV *, 4> V; |
| 946 | V.push_back(reinterpret_cast<const SCEV *>(-2)); |
| 947 | return V; |
| 948 | } |
| 949 | |
| 950 | static unsigned getHashValue(const SmallVector<const SCEV *, 4> &V) { |
| 951 | return static_cast<unsigned>(hash_combine_range(V.begin(), V.end())); |
| 952 | } |
| 953 | |
| 954 | static bool isEqual(const SmallVector<const SCEV *, 4> &LHS, |
| 955 | const SmallVector<const SCEV *, 4> &RHS) { |
| 956 | return LHS == RHS; |
| 957 | } |
| 958 | }; |
| 959 | |
| 960 | /// This class holds the state that LSR keeps for each use in IVUsers, as well |
| 961 | /// as uses invented by LSR itself. It includes information about what kinds of |
| 962 | /// things can be folded into the user, information about the user itself, and |
| 963 | /// information about how the use may be satisfied. TODO: Represent multiple |
| 964 | /// users of the same expression in common? |
| 965 | class LSRUse { |
| 966 | DenseSet<SmallVector<const SCEV *, 4>, UniquifierDenseMapInfo> Uniquifier; |
| 967 | |
| 968 | public: |
| 969 | /// An enum for a kind of use, indicating what types of scaled and immediate |
| 970 | /// operands it might support. |
| 971 | enum KindType { |
| 972 | Basic, ///< A normal use, with no folding. |
| 973 | Special, ///< A special case of basic, allowing -1 scales. |
| 974 | Address, ///< An address use; folding according to TargetLowering |
| 975 | ICmpZero ///< An equality icmp with both operands folded into one. |
| 976 | // TODO: Add a generic icmp too? |
| 977 | }; |
| 978 | |
| 979 | typedef PointerIntPair<const SCEV *, 2, KindType> SCEVUseKindPair; |
| 980 | |
| 981 | KindType Kind; |
| 982 | MemAccessTy AccessTy; |
| 983 | |
| 984 | /// The list of operands which are to be replaced. |
| 985 | SmallVector<LSRFixup, 8> Fixups; |
| 986 | |
| 987 | /// Keep track of the min and max offsets of the fixups. |
| 988 | int64_t MinOffset; |
| 989 | int64_t MaxOffset; |
| 990 | |
| 991 | /// This records whether all of the fixups using this LSRUse are outside of |
| 992 | /// the loop, in which case some special-case heuristics may be used. |
| 993 | bool AllFixupsOutsideLoop; |
| 994 | |
| 995 | /// RigidFormula is set to true to guarantee that this use will be associated |
| 996 | /// with a single formula--the one that initially matched. Some SCEV |
| 997 | /// expressions cannot be expanded. This allows LSR to consider the registers |
| 998 | /// used by those expressions without the need to expand them later after |
| 999 | /// changing the formula. |
| 1000 | bool RigidFormula; |
| 1001 | |
| 1002 | /// This records the widest use type for any fixup using this |
| 1003 | /// LSRUse. FindUseWithSimilarFormula can't consider uses with different max |
| 1004 | /// fixup widths to be equivalent, because the narrower one may be relying on |
| 1005 | /// the implicit truncation to truncate away bogus bits. |
| 1006 | Type *WidestFixupType; |
| 1007 | |
| 1008 | /// A list of ways to build a value that can satisfy this user. After the |
| 1009 | /// list is populated, one of these is selected heuristically and used to |
| 1010 | /// formulate a replacement for OperandValToReplace in UserInst. |
| 1011 | SmallVector<Formula, 12> Formulae; |
| 1012 | |
| 1013 | /// The set of register candidates used by all formulae in this LSRUse. |
| 1014 | SmallPtrSet<const SCEV *, 4> Regs; |
| 1015 | |
| 1016 | LSRUse(KindType K, MemAccessTy AT) |
| 1017 | : Kind(K), AccessTy(AT), MinOffset(INT64_MAX), MaxOffset(INT64_MIN), |
| 1018 | AllFixupsOutsideLoop(true), RigidFormula(false), |
| 1019 | WidestFixupType(nullptr) {} |
| 1020 | |
| 1021 | LSRFixup &getNewFixup() { |
| 1022 | Fixups.push_back(LSRFixup()); |
| 1023 | return Fixups.back(); |
| 1024 | } |
| 1025 | |
| 1026 | void pushFixup(LSRFixup &f) { |
| 1027 | Fixups.push_back(f); |
| 1028 | if (f.Offset > MaxOffset) |
| 1029 | MaxOffset = f.Offset; |
| 1030 | if (f.Offset < MinOffset) |
| 1031 | MinOffset = f.Offset; |
| 1032 | } |
| 1033 | |
| 1034 | bool HasFormulaWithSameRegs(const Formula &F) const; |
| 1035 | bool InsertFormula(const Formula &F); |
| 1036 | void DeleteFormula(Formula &F); |
| 1037 | void RecomputeRegs(size_t LUIdx, RegUseTracker &Reguses); |
| 1038 | |
| 1039 | void print(raw_ostream &OS) const; |
| 1040 | void dump() const; |
| 1041 | }; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1042 | |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 1043 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1044 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1045 | /// Tally up interesting quantities from the given register. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1046 | void Cost::RateRegister(const SCEV *Reg, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 1047 | SmallPtrSetImpl<const SCEV *> &Regs, |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1048 | const Loop *L, |
| 1049 | ScalarEvolution &SE, DominatorTree &DT) { |
Dan Gohman | 5b18f03 | 2010-02-13 02:06:02 +0000 | [diff] [blame] | 1050 | if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Reg)) { |
Wei Mi | 7ccf765 | 2016-11-15 18:35:53 +0000 | [diff] [blame] | 1051 | // If this is an addrec for another loop, it should be an invariant |
| 1052 | // with respect to L since L is the innermost loop (at least |
| 1053 | // for now LSR only handles innermost loops). |
Andrew Trick | d97b83e | 2012-03-22 22:42:45 +0000 | [diff] [blame] | 1054 | if (AR->getLoop() != L) { |
| 1055 | // If the AddRec exists, consider it's register free and leave it alone. |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 1056 | if (isExistingPhi(AR, SE)) |
| 1057 | return; |
| 1058 | |
Wei Mi | 7ccf765 | 2016-11-15 18:35:53 +0000 | [diff] [blame] | 1059 | // Otherwise, it will be an invariant with respect to Loop L. |
| 1060 | ++NumRegs; |
Andrew Trick | d97b83e | 2012-03-22 22:42:45 +0000 | [diff] [blame] | 1061 | return; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1062 | } |
Andrew Trick | d97b83e | 2012-03-22 22:42:45 +0000 | [diff] [blame] | 1063 | AddRecCost += 1; /// TODO: This should be a function of the stride. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1064 | |
Dan Gohman | 5b18f03 | 2010-02-13 02:06:02 +0000 | [diff] [blame] | 1065 | // Add the step value register, if it needs one. |
| 1066 | // TODO: The non-affine case isn't precisely modeled here. |
Andrew Trick | 8868fae | 2011-09-26 23:35:25 +0000 | [diff] [blame] | 1067 | if (!AR->isAffine() || !isa<SCEVConstant>(AR->getOperand(1))) { |
| 1068 | if (!Regs.count(AR->getOperand(1))) { |
Dan Gohman | 5b18f03 | 2010-02-13 02:06:02 +0000 | [diff] [blame] | 1069 | RateRegister(AR->getOperand(1), Regs, L, SE, DT); |
Andrew Trick | 8868fae | 2011-09-26 23:35:25 +0000 | [diff] [blame] | 1070 | if (isLoser()) |
| 1071 | return; |
| 1072 | } |
| 1073 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1074 | } |
Dan Gohman | 5b18f03 | 2010-02-13 02:06:02 +0000 | [diff] [blame] | 1075 | ++NumRegs; |
| 1076 | |
| 1077 | // Rough heuristic; favor registers which don't require extra setup |
| 1078 | // instructions in the preheader. |
| 1079 | if (!isa<SCEVUnknown>(Reg) && |
| 1080 | !isa<SCEVConstant>(Reg) && |
| 1081 | !(isa<SCEVAddRecExpr>(Reg) && |
| 1082 | (isa<SCEVUnknown>(cast<SCEVAddRecExpr>(Reg)->getStart()) || |
| 1083 | isa<SCEVConstant>(cast<SCEVAddRecExpr>(Reg)->getStart())))) |
| 1084 | ++SetupCost; |
Dan Gohman | 34f37e0 | 2010-10-07 23:41:58 +0000 | [diff] [blame] | 1085 | |
Davide Italiano | 709d418 | 2016-07-07 17:44:38 +0000 | [diff] [blame] | 1086 | NumIVMuls += isa<SCEVMulExpr>(Reg) && |
| 1087 | SE.hasComputableLoopEvolution(Reg, L); |
Dan Gohman | 5b18f03 | 2010-02-13 02:06:02 +0000 | [diff] [blame] | 1088 | } |
| 1089 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1090 | /// Record this register in the set. If we haven't seen it before, rate |
| 1091 | /// it. Optional LoserRegs provides a way to declare any formula that refers to |
| 1092 | /// one of those regs an instant loser. |
Dan Gohman | 5b18f03 | 2010-02-13 02:06:02 +0000 | [diff] [blame] | 1093 | void Cost::RatePrimaryRegister(const SCEV *Reg, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 1094 | SmallPtrSetImpl<const SCEV *> &Regs, |
Dan Gohman | 0849ed5 | 2010-02-16 19:42:34 +0000 | [diff] [blame] | 1095 | const Loop *L, |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 1096 | ScalarEvolution &SE, DominatorTree &DT, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 1097 | SmallPtrSetImpl<const SCEV *> *LoserRegs) { |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 1098 | if (LoserRegs && LoserRegs->count(Reg)) { |
Tim Northover | bc6659c | 2014-01-22 13:27:00 +0000 | [diff] [blame] | 1099 | Lose(); |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 1100 | return; |
| 1101 | } |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 1102 | if (Regs.insert(Reg).second) { |
Dan Gohman | 5b18f03 | 2010-02-13 02:06:02 +0000 | [diff] [blame] | 1103 | RateRegister(Reg, Regs, L, SE, DT); |
Andrew Trick | a1c01ba | 2013-03-19 04:14:57 +0000 | [diff] [blame] | 1104 | if (LoserRegs && isLoser()) |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 1105 | LoserRegs->insert(Reg); |
| 1106 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1107 | } |
| 1108 | |
Quentin Colombet | 8aa7abe | 2013-05-31 17:20:29 +0000 | [diff] [blame] | 1109 | void Cost::RateFormula(const TargetTransformInfo &TTI, |
| 1110 | const Formula &F, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 1111 | SmallPtrSetImpl<const SCEV *> &Regs, |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1112 | const DenseSet<const SCEV *> &VisitedRegs, |
| 1113 | const Loop *L, |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 1114 | ScalarEvolution &SE, DominatorTree &DT, |
Quentin Colombet | 8aa7abe | 2013-05-31 17:20:29 +0000 | [diff] [blame] | 1115 | const LSRUse &LU, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 1116 | SmallPtrSetImpl<const SCEV *> *LoserRegs) { |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1117 | assert(F.isCanonical() && "Cost is accurate only for canonical formula"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1118 | // Tally up the registers. |
| 1119 | if (const SCEV *ScaledReg = F.ScaledReg) { |
| 1120 | if (VisitedRegs.count(ScaledReg)) { |
Tim Northover | bc6659c | 2014-01-22 13:27:00 +0000 | [diff] [blame] | 1121 | Lose(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1122 | return; |
| 1123 | } |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 1124 | RatePrimaryRegister(ScaledReg, Regs, L, SE, DT, LoserRegs); |
Andrew Trick | 784729d | 2011-09-26 23:11:04 +0000 | [diff] [blame] | 1125 | if (isLoser()) |
| 1126 | return; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1127 | } |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 1128 | for (const SCEV *BaseReg : F.BaseRegs) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1129 | if (VisitedRegs.count(BaseReg)) { |
Tim Northover | bc6659c | 2014-01-22 13:27:00 +0000 | [diff] [blame] | 1130 | Lose(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1131 | return; |
| 1132 | } |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 1133 | RatePrimaryRegister(BaseReg, Regs, L, SE, DT, LoserRegs); |
Andrew Trick | 784729d | 2011-09-26 23:11:04 +0000 | [diff] [blame] | 1134 | if (isLoser()) |
| 1135 | return; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1136 | } |
| 1137 | |
Dan Gohman | 6136e94 | 2011-05-03 00:46:49 +0000 | [diff] [blame] | 1138 | // Determine how many (unfolded) adds we'll need inside the loop. |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1139 | size_t NumBaseParts = F.getNumRegs(); |
Dan Gohman | 6136e94 | 2011-05-03 00:46:49 +0000 | [diff] [blame] | 1140 | if (NumBaseParts > 1) |
Quentin Colombet | 8aa7abe | 2013-05-31 17:20:29 +0000 | [diff] [blame] | 1141 | // Do not count the base and a possible second register if the target |
| 1142 | // allows to fold 2 registers. |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1143 | NumBaseAdds += |
| 1144 | NumBaseParts - (1 + (F.Scale && isAMCompletelyFolded(TTI, LU, F))); |
| 1145 | NumBaseAdds += (F.UnfoldedOffset != 0); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1146 | |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 1147 | // Accumulate non-free scaling amounts. |
| 1148 | ScaleCost += getScalingFactorCost(TTI, LU, F); |
| 1149 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1150 | // Tally up the non-zero immediates. |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 1151 | for (const LSRFixup &Fixup : LU.Fixups) { |
| 1152 | int64_t O = Fixup.Offset; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 1153 | int64_t Offset = (uint64_t)O + F.BaseOffset; |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 1154 | if (F.BaseGV) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1155 | ImmCost += 64; // Handle symbolic values conservatively. |
| 1156 | // TODO: This should probably be the pointer size. |
| 1157 | else if (Offset != 0) |
| 1158 | ImmCost += APInt(64, Offset, true).getMinSignedBits(); |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 1159 | |
| 1160 | // Check with target if this offset with this instruction is |
| 1161 | // specifically not supported. |
| 1162 | if ((isa<LoadInst>(Fixup.UserInst) || isa<StoreInst>(Fixup.UserInst)) && |
| 1163 | !TTI.isFoldableMemAccessOffset(Fixup.UserInst, Offset)) |
| 1164 | NumBaseAdds++; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1165 | } |
Andrew Trick | 784729d | 2011-09-26 23:11:04 +0000 | [diff] [blame] | 1166 | assert(isValid() && "invalid cost"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1167 | } |
| 1168 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1169 | /// Set this cost to a losing value. |
Tim Northover | bc6659c | 2014-01-22 13:27:00 +0000 | [diff] [blame] | 1170 | void Cost::Lose() { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1171 | NumRegs = ~0u; |
| 1172 | AddRecCost = ~0u; |
| 1173 | NumIVMuls = ~0u; |
| 1174 | NumBaseAdds = ~0u; |
| 1175 | ImmCost = ~0u; |
| 1176 | SetupCost = ~0u; |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 1177 | ScaleCost = ~0u; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1178 | } |
| 1179 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1180 | /// Choose the lower cost. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1181 | bool Cost::operator<(const Cost &Other) const { |
Benjamin Kramer | b2f034b | 2014-03-03 19:58:30 +0000 | [diff] [blame] | 1182 | return std::tie(NumRegs, AddRecCost, NumIVMuls, NumBaseAdds, ScaleCost, |
| 1183 | ImmCost, SetupCost) < |
| 1184 | std::tie(Other.NumRegs, Other.AddRecCost, Other.NumIVMuls, |
| 1185 | Other.NumBaseAdds, Other.ScaleCost, Other.ImmCost, |
| 1186 | Other.SetupCost); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1187 | } |
| 1188 | |
| 1189 | void Cost::print(raw_ostream &OS) const { |
| 1190 | OS << NumRegs << " reg" << (NumRegs == 1 ? "" : "s"); |
| 1191 | if (AddRecCost != 0) |
| 1192 | OS << ", with addrec cost " << AddRecCost; |
| 1193 | if (NumIVMuls != 0) |
| 1194 | OS << ", plus " << NumIVMuls << " IV mul" << (NumIVMuls == 1 ? "" : "s"); |
| 1195 | if (NumBaseAdds != 0) |
| 1196 | OS << ", plus " << NumBaseAdds << " base add" |
| 1197 | << (NumBaseAdds == 1 ? "" : "s"); |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 1198 | if (ScaleCost != 0) |
| 1199 | OS << ", plus " << ScaleCost << " scale cost"; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1200 | if (ImmCost != 0) |
| 1201 | OS << ", plus " << ImmCost << " imm cost"; |
| 1202 | if (SetupCost != 0) |
| 1203 | OS << ", plus " << SetupCost << " setup cost"; |
| 1204 | } |
| 1205 | |
Davide Italiano | 945d05f | 2015-11-23 02:47:30 +0000 | [diff] [blame] | 1206 | LLVM_DUMP_METHOD |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1207 | void Cost::dump() const { |
| 1208 | print(errs()); errs() << '\n'; |
| 1209 | } |
| 1210 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1211 | LSRFixup::LSRFixup() |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 1212 | : UserInst(nullptr), OperandValToReplace(nullptr), |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1213 | Offset(0) {} |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1214 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1215 | /// Test whether this fixup always uses its value outside of the given loop. |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 1216 | bool LSRFixup::isUseFullyOutsideLoop(const Loop *L) const { |
| 1217 | // PHI nodes use their value in their incoming blocks. |
| 1218 | if (const PHINode *PN = dyn_cast<PHINode>(UserInst)) { |
| 1219 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) |
| 1220 | if (PN->getIncomingValue(i) == OperandValToReplace && |
| 1221 | L->contains(PN->getIncomingBlock(i))) |
| 1222 | return false; |
| 1223 | return true; |
| 1224 | } |
| 1225 | |
| 1226 | return !L->contains(UserInst); |
| 1227 | } |
| 1228 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1229 | void LSRFixup::print(raw_ostream &OS) const { |
| 1230 | OS << "UserInst="; |
| 1231 | // Store is common and interesting enough to be worth special-casing. |
| 1232 | if (StoreInst *Store = dyn_cast<StoreInst>(UserInst)) { |
| 1233 | OS << "store "; |
Chandler Carruth | d48cdbf | 2014-01-09 02:29:41 +0000 | [diff] [blame] | 1234 | Store->getOperand(0)->printAsOperand(OS, /*PrintType=*/false); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1235 | } else if (UserInst->getType()->isVoidTy()) |
| 1236 | OS << UserInst->getOpcodeName(); |
| 1237 | else |
Chandler Carruth | d48cdbf | 2014-01-09 02:29:41 +0000 | [diff] [blame] | 1238 | UserInst->printAsOperand(OS, /*PrintType=*/false); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1239 | |
| 1240 | OS << ", OperandValToReplace="; |
Chandler Carruth | d48cdbf | 2014-01-09 02:29:41 +0000 | [diff] [blame] | 1241 | OperandValToReplace->printAsOperand(OS, /*PrintType=*/false); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1242 | |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 1243 | for (const Loop *PIL : PostIncLoops) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1244 | OS << ", PostIncLoop="; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 1245 | PIL->getHeader()->printAsOperand(OS, /*PrintType=*/false); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1246 | } |
| 1247 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1248 | if (Offset != 0) |
| 1249 | OS << ", Offset=" << Offset; |
| 1250 | } |
| 1251 | |
Davide Italiano | 945d05f | 2015-11-23 02:47:30 +0000 | [diff] [blame] | 1252 | LLVM_DUMP_METHOD |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1253 | void LSRFixup::dump() const { |
| 1254 | print(errs()); errs() << '\n'; |
| 1255 | } |
| 1256 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1257 | /// Test whether this use as a formula which has the same registers as the given |
| 1258 | /// formula. |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 1259 | bool LSRUse::HasFormulaWithSameRegs(const Formula &F) const { |
Preston Gurd | 25c3b6a | 2013-02-01 20:41:27 +0000 | [diff] [blame] | 1260 | SmallVector<const SCEV *, 4> Key = F.BaseRegs; |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 1261 | if (F.ScaledReg) Key.push_back(F.ScaledReg); |
| 1262 | // Unstable sort by host order ok, because this is only used for uniquifying. |
| 1263 | std::sort(Key.begin(), Key.end()); |
| 1264 | return Uniquifier.count(Key); |
| 1265 | } |
| 1266 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1267 | /// If the given formula has not yet been inserted, add it to the list, and |
| 1268 | /// return true. Return false otherwise. The formula must be in canonical form. |
Dan Gohman | 8c16b38 | 2010-02-22 04:11:59 +0000 | [diff] [blame] | 1269 | bool LSRUse::InsertFormula(const Formula &F) { |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1270 | assert(F.isCanonical() && "Invalid canonical representation"); |
| 1271 | |
Andrew Trick | 57243da | 2013-10-25 21:35:56 +0000 | [diff] [blame] | 1272 | if (!Formulae.empty() && RigidFormula) |
| 1273 | return false; |
| 1274 | |
Preston Gurd | 25c3b6a | 2013-02-01 20:41:27 +0000 | [diff] [blame] | 1275 | SmallVector<const SCEV *, 4> Key = F.BaseRegs; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1276 | if (F.ScaledReg) Key.push_back(F.ScaledReg); |
| 1277 | // Unstable sort by host order ok, because this is only used for uniquifying. |
| 1278 | std::sort(Key.begin(), Key.end()); |
| 1279 | |
| 1280 | if (!Uniquifier.insert(Key).second) |
| 1281 | return false; |
| 1282 | |
| 1283 | // Using a register to hold the value of 0 is not profitable. |
| 1284 | assert((!F.ScaledReg || !F.ScaledReg->isZero()) && |
| 1285 | "Zero allocated in a scaled register!"); |
| 1286 | #ifndef NDEBUG |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 1287 | for (const SCEV *BaseReg : F.BaseRegs) |
| 1288 | assert(!BaseReg->isZero() && "Zero allocated in a base register!"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1289 | #endif |
| 1290 | |
| 1291 | // Add the formula to the list. |
| 1292 | Formulae.push_back(F); |
| 1293 | |
| 1294 | // Record registers now being used by this use. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1295 | Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end()); |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1296 | if (F.ScaledReg) |
| 1297 | Regs.insert(F.ScaledReg); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1298 | |
| 1299 | return true; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1300 | } |
| 1301 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1302 | /// Remove the given formula from this use's list. |
Dan Gohman | f1c7b1b | 2010-05-18 22:39:15 +0000 | [diff] [blame] | 1303 | void LSRUse::DeleteFormula(Formula &F) { |
Dan Gohman | 80a9608 | 2010-05-20 15:17:54 +0000 | [diff] [blame] | 1304 | if (&F != &Formulae.back()) |
| 1305 | std::swap(F, Formulae.back()); |
Dan Gohman | f1c7b1b | 2010-05-18 22:39:15 +0000 | [diff] [blame] | 1306 | Formulae.pop_back(); |
| 1307 | } |
| 1308 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1309 | /// Recompute the Regs field, and update RegUses. |
Dan Gohman | 4cf99b5 | 2010-05-18 23:42:37 +0000 | [diff] [blame] | 1310 | void LSRUse::RecomputeRegs(size_t LUIdx, RegUseTracker &RegUses) { |
| 1311 | // Now that we've filtered out some formulae, recompute the Regs set. |
Benjamin Kramer | 1c2beed | 2015-02-19 17:19:43 +0000 | [diff] [blame] | 1312 | SmallPtrSet<const SCEV *, 4> OldRegs = std::move(Regs); |
Dan Gohman | 4cf99b5 | 2010-05-18 23:42:37 +0000 | [diff] [blame] | 1313 | Regs.clear(); |
Benjamin Kramer | 1c2beed | 2015-02-19 17:19:43 +0000 | [diff] [blame] | 1314 | for (const Formula &F : Formulae) { |
Dan Gohman | 4cf99b5 | 2010-05-18 23:42:37 +0000 | [diff] [blame] | 1315 | if (F.ScaledReg) Regs.insert(F.ScaledReg); |
| 1316 | Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end()); |
| 1317 | } |
| 1318 | |
| 1319 | // Update the RegTracker. |
Craig Topper | 4627679 | 2014-08-24 23:23:06 +0000 | [diff] [blame] | 1320 | for (const SCEV *S : OldRegs) |
| 1321 | if (!Regs.count(S)) |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 1322 | RegUses.dropRegister(S, LUIdx); |
Dan Gohman | 4cf99b5 | 2010-05-18 23:42:37 +0000 | [diff] [blame] | 1323 | } |
| 1324 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1325 | void LSRUse::print(raw_ostream &OS) const { |
| 1326 | OS << "LSR Use: Kind="; |
| 1327 | switch (Kind) { |
| 1328 | case Basic: OS << "Basic"; break; |
| 1329 | case Special: OS << "Special"; break; |
| 1330 | case ICmpZero: OS << "ICmpZero"; break; |
| 1331 | case Address: |
| 1332 | OS << "Address of "; |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 1333 | if (AccessTy.MemTy->isPointerTy()) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1334 | OS << "pointer"; // the full pointer type could be really verbose |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 1335 | else { |
| 1336 | OS << *AccessTy.MemTy; |
| 1337 | } |
| 1338 | |
| 1339 | OS << " in addrspace(" << AccessTy.AddrSpace << ')'; |
Evan Cheng | 133694d | 2007-10-25 09:11:16 +0000 | [diff] [blame] | 1340 | } |
| 1341 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1342 | OS << ", Offsets={"; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 1343 | bool NeedComma = false; |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 1344 | for (const LSRFixup &Fixup : Fixups) { |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 1345 | if (NeedComma) OS << ','; |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 1346 | OS << Fixup.Offset; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 1347 | NeedComma = true; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1348 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1349 | OS << '}'; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1350 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1351 | if (AllFixupsOutsideLoop) |
| 1352 | OS << ", all-fixups-outside-loop"; |
Dan Gohman | 1415208 | 2010-07-15 20:24:58 +0000 | [diff] [blame] | 1353 | |
| 1354 | if (WidestFixupType) |
| 1355 | OS << ", widest fixup type: " << *WidestFixupType; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1356 | } |
| 1357 | |
Davide Italiano | 945d05f | 2015-11-23 02:47:30 +0000 | [diff] [blame] | 1358 | LLVM_DUMP_METHOD |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1359 | void LSRUse::dump() const { |
| 1360 | print(errs()); errs() << '\n'; |
| 1361 | } |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1362 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1363 | static bool isAMCompletelyFolded(const TargetTransformInfo &TTI, |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 1364 | LSRUse::KindType Kind, MemAccessTy AccessTy, |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1365 | GlobalValue *BaseGV, int64_t BaseOffset, |
| 1366 | bool HasBaseReg, int64_t Scale) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1367 | switch (Kind) { |
| 1368 | case LSRUse::Address: |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 1369 | return TTI.isLegalAddressingMode(AccessTy.MemTy, BaseGV, BaseOffset, |
| 1370 | HasBaseReg, Scale, AccessTy.AddrSpace); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1371 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1372 | case LSRUse::ICmpZero: |
| 1373 | // There's not even a target hook for querying whether it would be legal to |
| 1374 | // fold a GV into an ICmp. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1375 | if (BaseGV) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1376 | return false; |
| 1377 | |
| 1378 | // ICmp only has two operands; don't allow more than two non-trivial parts. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1379 | if (Scale != 0 && HasBaseReg && BaseOffset != 0) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1380 | return false; |
| 1381 | |
| 1382 | // ICmp only supports no scale or a -1 scale, as we can "fold" a -1 scale by |
| 1383 | // putting the scaled register in the other operand of the icmp. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1384 | if (Scale != 0 && Scale != -1) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1385 | return false; |
| 1386 | |
| 1387 | // If we have low-level target information, ask the target if it can fold an |
| 1388 | // integer immediate on an icmp. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1389 | if (BaseOffset != 0) { |
Jakob Stoklund Olesen | f2390e8 | 2012-04-05 03:10:56 +0000 | [diff] [blame] | 1390 | // We have one of: |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1391 | // ICmpZero BaseReg + BaseOffset => ICmp BaseReg, -BaseOffset |
| 1392 | // ICmpZero -1*ScaleReg + BaseOffset => ICmp ScaleReg, BaseOffset |
Jakob Stoklund Olesen | f2390e8 | 2012-04-05 03:10:56 +0000 | [diff] [blame] | 1393 | // Offs is the ICmp immediate. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1394 | if (Scale == 0) |
| 1395 | // The cast does the right thing with INT64_MIN. |
| 1396 | BaseOffset = -(uint64_t)BaseOffset; |
| 1397 | return TTI.isLegalICmpImmediate(BaseOffset); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1398 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1399 | |
Jakob Stoklund Olesen | f2390e8 | 2012-04-05 03:10:56 +0000 | [diff] [blame] | 1400 | // ICmpZero BaseReg + -1*ScaleReg => ICmp BaseReg, ScaleReg |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1401 | return true; |
| 1402 | |
| 1403 | case LSRUse::Basic: |
| 1404 | // Only handle single-register values. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1405 | return !BaseGV && Scale == 0 && BaseOffset == 0; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1406 | |
| 1407 | case LSRUse::Special: |
Andrew Trick | aca8fb3 | 2012-06-15 20:07:26 +0000 | [diff] [blame] | 1408 | // Special case Basic to handle -1 scales. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1409 | return !BaseGV && (Scale == 0 || Scale == -1) && BaseOffset == 0; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1410 | } |
| 1411 | |
David Blaikie | 46a9f01 | 2012-01-20 21:51:11 +0000 | [diff] [blame] | 1412 | llvm_unreachable("Invalid LSRUse Kind!"); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1413 | } |
| 1414 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1415 | static bool isAMCompletelyFolded(const TargetTransformInfo &TTI, |
| 1416 | int64_t MinOffset, int64_t MaxOffset, |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 1417 | LSRUse::KindType Kind, MemAccessTy AccessTy, |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1418 | GlobalValue *BaseGV, int64_t BaseOffset, |
| 1419 | bool HasBaseReg, int64_t Scale) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1420 | // Check for overflow. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1421 | if (((int64_t)((uint64_t)BaseOffset + MinOffset) > BaseOffset) != |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1422 | (MinOffset > 0)) |
| 1423 | return false; |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1424 | MinOffset = (uint64_t)BaseOffset + MinOffset; |
| 1425 | if (((int64_t)((uint64_t)BaseOffset + MaxOffset) > BaseOffset) != |
| 1426 | (MaxOffset > 0)) |
| 1427 | return false; |
| 1428 | MaxOffset = (uint64_t)BaseOffset + MaxOffset; |
| 1429 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1430 | return isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, MinOffset, |
| 1431 | HasBaseReg, Scale) && |
| 1432 | isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, MaxOffset, |
| 1433 | HasBaseReg, Scale); |
| 1434 | } |
| 1435 | |
| 1436 | static bool isAMCompletelyFolded(const TargetTransformInfo &TTI, |
| 1437 | int64_t MinOffset, int64_t MaxOffset, |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 1438 | LSRUse::KindType Kind, MemAccessTy AccessTy, |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1439 | const Formula &F) { |
| 1440 | // For the purpose of isAMCompletelyFolded either having a canonical formula |
| 1441 | // or a scale not equal to zero is correct. |
| 1442 | // Problems may arise from non canonical formulae having a scale == 0. |
| 1443 | // Strictly speaking it would best to just rely on canonical formulae. |
| 1444 | // However, when we generate the scaled formulae, we first check that the |
| 1445 | // scaling factor is profitable before computing the actual ScaledReg for |
| 1446 | // compile time sake. |
| 1447 | assert((F.isCanonical() || F.Scale != 0)); |
| 1448 | return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, |
| 1449 | F.BaseGV, F.BaseOffset, F.HasBaseReg, F.Scale); |
| 1450 | } |
| 1451 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1452 | /// Test whether we know how to expand the current formula. |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1453 | static bool isLegalUse(const TargetTransformInfo &TTI, int64_t MinOffset, |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 1454 | int64_t MaxOffset, LSRUse::KindType Kind, |
| 1455 | MemAccessTy AccessTy, GlobalValue *BaseGV, |
| 1456 | int64_t BaseOffset, bool HasBaseReg, int64_t Scale) { |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1457 | // We know how to expand completely foldable formulae. |
| 1458 | return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, BaseGV, |
| 1459 | BaseOffset, HasBaseReg, Scale) || |
| 1460 | // Or formulae that use a base register produced by a sum of base |
| 1461 | // registers. |
| 1462 | (Scale == 1 && |
| 1463 | isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, |
| 1464 | BaseGV, BaseOffset, true, 0)); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1465 | } |
| 1466 | |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1467 | static bool isLegalUse(const TargetTransformInfo &TTI, int64_t MinOffset, |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 1468 | int64_t MaxOffset, LSRUse::KindType Kind, |
| 1469 | MemAccessTy AccessTy, const Formula &F) { |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 1470 | return isLegalUse(TTI, MinOffset, MaxOffset, Kind, AccessTy, F.BaseGV, |
| 1471 | F.BaseOffset, F.HasBaseReg, F.Scale); |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1472 | } |
| 1473 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1474 | static bool isAMCompletelyFolded(const TargetTransformInfo &TTI, |
| 1475 | const LSRUse &LU, const Formula &F) { |
| 1476 | return isAMCompletelyFolded(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, |
| 1477 | LU.AccessTy, F.BaseGV, F.BaseOffset, F.HasBaseReg, |
| 1478 | F.Scale); |
| 1479 | } |
Quentin Colombet | 8aa7abe | 2013-05-31 17:20:29 +0000 | [diff] [blame] | 1480 | |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 1481 | static unsigned getScalingFactorCost(const TargetTransformInfo &TTI, |
| 1482 | const LSRUse &LU, const Formula &F) { |
| 1483 | if (!F.Scale) |
| 1484 | return 0; |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1485 | |
| 1486 | // If the use is not completely folded in that instruction, we will have to |
| 1487 | // pay an extra cost only for scale != 1. |
| 1488 | if (!isAMCompletelyFolded(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, |
| 1489 | LU.AccessTy, F)) |
| 1490 | return F.Scale != 1; |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 1491 | |
| 1492 | switch (LU.Kind) { |
| 1493 | case LSRUse::Address: { |
Quentin Colombet | 145eb97 | 2013-06-19 19:59:41 +0000 | [diff] [blame] | 1494 | // Check the scaling factor cost with both the min and max offsets. |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 1495 | int ScaleCostMinOffset = TTI.getScalingFactorCost( |
| 1496 | LU.AccessTy.MemTy, F.BaseGV, F.BaseOffset + LU.MinOffset, F.HasBaseReg, |
| 1497 | F.Scale, LU.AccessTy.AddrSpace); |
| 1498 | int ScaleCostMaxOffset = TTI.getScalingFactorCost( |
| 1499 | LU.AccessTy.MemTy, F.BaseGV, F.BaseOffset + LU.MaxOffset, F.HasBaseReg, |
| 1500 | F.Scale, LU.AccessTy.AddrSpace); |
Quentin Colombet | 145eb97 | 2013-06-19 19:59:41 +0000 | [diff] [blame] | 1501 | |
| 1502 | assert(ScaleCostMinOffset >= 0 && ScaleCostMaxOffset >= 0 && |
| 1503 | "Legal addressing mode has an illegal cost!"); |
| 1504 | return std::max(ScaleCostMinOffset, ScaleCostMaxOffset); |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 1505 | } |
| 1506 | case LSRUse::ICmpZero: |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 1507 | case LSRUse::Basic: |
| 1508 | case LSRUse::Special: |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1509 | // The use is completely folded, i.e., everything is folded into the |
| 1510 | // instruction. |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 1511 | return 0; |
| 1512 | } |
| 1513 | |
| 1514 | llvm_unreachable("Invalid LSRUse Kind!"); |
| 1515 | } |
| 1516 | |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1517 | static bool isAlwaysFoldable(const TargetTransformInfo &TTI, |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 1518 | LSRUse::KindType Kind, MemAccessTy AccessTy, |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1519 | GlobalValue *BaseGV, int64_t BaseOffset, |
| 1520 | bool HasBaseReg) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1521 | // Fast-path: zero is always foldable. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1522 | if (BaseOffset == 0 && !BaseGV) return true; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1523 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1524 | // Conservatively, create an address with an immediate and a |
| 1525 | // base and a scale. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1526 | int64_t Scale = Kind == LSRUse::ICmpZero ? -1 : 1; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1527 | |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 1528 | // Canonicalize a scale of 1 to a base register if the formula doesn't |
| 1529 | // already have a base register. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1530 | if (!HasBaseReg && Scale == 1) { |
| 1531 | Scale = 0; |
| 1532 | HasBaseReg = true; |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 1533 | } |
| 1534 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1535 | return isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, BaseOffset, |
| 1536 | HasBaseReg, Scale); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1537 | } |
| 1538 | |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1539 | static bool isAlwaysFoldable(const TargetTransformInfo &TTI, |
| 1540 | ScalarEvolution &SE, int64_t MinOffset, |
| 1541 | int64_t MaxOffset, LSRUse::KindType Kind, |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 1542 | MemAccessTy AccessTy, const SCEV *S, |
| 1543 | bool HasBaseReg) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1544 | // Fast-path: zero is always foldable. |
| 1545 | if (S->isZero()) return true; |
| 1546 | |
| 1547 | // Conservatively, create an address with an immediate and a |
| 1548 | // base and a scale. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1549 | int64_t BaseOffset = ExtractImmediate(S, SE); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1550 | GlobalValue *BaseGV = ExtractSymbol(S, SE); |
| 1551 | |
| 1552 | // If there's anything else involved, it's not foldable. |
| 1553 | if (!S->isZero()) return false; |
| 1554 | |
| 1555 | // Fast-path: zero is always foldable. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1556 | if (BaseOffset == 0 && !BaseGV) return true; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1557 | |
| 1558 | // Conservatively, create an address with an immediate and a |
| 1559 | // base and a scale. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1560 | int64_t Scale = Kind == LSRUse::ICmpZero ? -1 : 1; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1561 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1562 | return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, BaseGV, |
| 1563 | BaseOffset, HasBaseReg, Scale); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1564 | } |
| 1565 | |
Dan Gohman | 297fb8b | 2010-06-19 21:21:39 +0000 | [diff] [blame] | 1566 | namespace { |
| 1567 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1568 | /// An individual increment in a Chain of IV increments. Relate an IV user to |
| 1569 | /// an expression that computes the IV it uses from the IV used by the previous |
| 1570 | /// link in the Chain. |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 1571 | /// |
| 1572 | /// For the head of a chain, IncExpr holds the absolute SCEV expression for the |
| 1573 | /// original IVOperand. The head of the chain's IVOperand is only valid during |
| 1574 | /// chain collection, before LSR replaces IV users. During chain generation, |
| 1575 | /// IncExpr can be used to find the new IVOperand that computes the same |
| 1576 | /// expression. |
| 1577 | struct IVInc { |
| 1578 | Instruction *UserInst; |
| 1579 | Value* IVOperand; |
| 1580 | const SCEV *IncExpr; |
| 1581 | |
| 1582 | IVInc(Instruction *U, Value *O, const SCEV *E): |
| 1583 | UserInst(U), IVOperand(O), IncExpr(E) {} |
| 1584 | }; |
| 1585 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1586 | // The list of IV increments in program order. We typically add the head of a |
| 1587 | // chain without finding subsequent links. |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 1588 | struct IVChain { |
| 1589 | SmallVector<IVInc,1> Incs; |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 1590 | const SCEV *ExprBase; |
| 1591 | |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1592 | IVChain() : ExprBase(nullptr) {} |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 1593 | |
| 1594 | IVChain(const IVInc &Head, const SCEV *Base) |
| 1595 | : Incs(1, Head), ExprBase(Base) {} |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 1596 | |
| 1597 | typedef SmallVectorImpl<IVInc>::const_iterator const_iterator; |
| 1598 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1599 | // Return the first increment in the chain. |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 1600 | const_iterator begin() const { |
| 1601 | assert(!Incs.empty()); |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 1602 | return std::next(Incs.begin()); |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 1603 | } |
| 1604 | const_iterator end() const { |
| 1605 | return Incs.end(); |
| 1606 | } |
| 1607 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1608 | // Returns true if this chain contains any increments. |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 1609 | bool hasIncs() const { return Incs.size() >= 2; } |
| 1610 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1611 | // Add an IVInc to the end of this chain. |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 1612 | void add(const IVInc &X) { Incs.push_back(X); } |
| 1613 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1614 | // Returns the last UserInst in the chain. |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 1615 | Instruction *tailUserInst() const { return Incs.back().UserInst; } |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 1616 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1617 | // Returns true if IncExpr can be profitably added to this chain. |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 1618 | bool isProfitableIncrement(const SCEV *OperExpr, |
| 1619 | const SCEV *IncExpr, |
| 1620 | ScalarEvolution&); |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 1621 | }; |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 1622 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1623 | /// Helper for CollectChains to track multiple IV increment uses. Distinguish |
| 1624 | /// between FarUsers that definitely cross IV increments and NearUsers that may |
| 1625 | /// be used between IV increments. |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 1626 | struct ChainUsers { |
| 1627 | SmallPtrSet<Instruction*, 4> FarUsers; |
| 1628 | SmallPtrSet<Instruction*, 4> NearUsers; |
| 1629 | }; |
| 1630 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1631 | /// This class holds state for the main loop strength reduction logic. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1632 | class LSRInstance { |
| 1633 | IVUsers &IU; |
| 1634 | ScalarEvolution &SE; |
| 1635 | DominatorTree &DT; |
Dan Gohman | 607e02b | 2010-04-09 22:07:05 +0000 | [diff] [blame] | 1636 | LoopInfo &LI; |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1637 | const TargetTransformInfo &TTI; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1638 | Loop *const L; |
| 1639 | bool Changed; |
| 1640 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1641 | /// This is the insert position that the current loop's induction variable |
| 1642 | /// increment should be placed. In simple loops, this is the latch block's |
| 1643 | /// terminator. But in more complicated cases, this is a position which will |
| 1644 | /// dominate all the in-loop post-increment users. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1645 | Instruction *IVIncInsertPos; |
| 1646 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1647 | /// Interesting factors between use strides. |
Justin Lebar | 54b0be0 | 2016-11-05 16:47:25 +0000 | [diff] [blame] | 1648 | /// |
| 1649 | /// We explicitly use a SetVector which contains a SmallSet, instead of the |
| 1650 | /// default, a SmallDenseSet, because we need to use the full range of |
| 1651 | /// int64_ts, and there's currently no good way of doing that with |
| 1652 | /// SmallDenseSet. |
| 1653 | SetVector<int64_t, SmallVector<int64_t, 8>, SmallSet<int64_t, 8>> Factors; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1654 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1655 | /// Interesting use types, to facilitate truncation reuse. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1656 | SmallSetVector<Type *, 4> Types; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1657 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1658 | /// The list of interesting uses. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1659 | SmallVector<LSRUse, 16> Uses; |
| 1660 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1661 | /// Track which uses use which register candidates. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1662 | RegUseTracker RegUses; |
| 1663 | |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 1664 | // Limit the number of chains to avoid quadratic behavior. We don't expect to |
| 1665 | // have more than a few IV increment chains in a loop. Missing a Chain falls |
| 1666 | // back to normal LSR behavior for those uses. |
| 1667 | static const unsigned MaxChains = 8; |
| 1668 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1669 | /// IV users can form a chain of IV increments. |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 1670 | SmallVector<IVChain, MaxChains> IVChainVec; |
| 1671 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1672 | /// IV users that belong to profitable IVChains. |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 1673 | SmallPtrSet<Use*, MaxChains> IVIncSet; |
| 1674 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1675 | void OptimizeShadowIV(); |
| 1676 | bool FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse); |
| 1677 | ICmpInst *OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse); |
Dan Gohman | 4c4043c | 2010-05-20 20:05:31 +0000 | [diff] [blame] | 1678 | void OptimizeLoopTermCond(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1679 | |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 1680 | void ChainInstruction(Instruction *UserInst, Instruction *IVOper, |
| 1681 | SmallVectorImpl<ChainUsers> &ChainUsersVec); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 1682 | void FinalizeChain(IVChain &Chain); |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 1683 | void CollectChains(); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 1684 | void GenerateIVChain(const IVChain &Chain, SCEVExpander &Rewriter, |
| 1685 | SmallVectorImpl<WeakVH> &DeadInsts); |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 1686 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1687 | void CollectInterestingTypesAndFactors(); |
| 1688 | void CollectFixupsAndInitialFormulae(); |
| 1689 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1690 | // Support for sharing of LSRUses between LSRFixups. |
Benjamin Kramer | 62fb0cf | 2014-03-15 17:17:48 +0000 | [diff] [blame] | 1691 | typedef DenseMap<LSRUse::SCEVUseKindPair, size_t> UseMapTy; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1692 | UseMapTy UseMap; |
| 1693 | |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 1694 | bool reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg, |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 1695 | LSRUse::KindType Kind, MemAccessTy AccessTy); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1696 | |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 1697 | std::pair<size_t, int64_t> getUse(const SCEV *&Expr, LSRUse::KindType Kind, |
| 1698 | MemAccessTy AccessTy); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1699 | |
Dan Gohman | a7b68d6 | 2010-10-07 23:33:43 +0000 | [diff] [blame] | 1700 | void DeleteUse(LSRUse &LU, size_t LUIdx); |
Dan Gohman | 80a9608 | 2010-05-20 15:17:54 +0000 | [diff] [blame] | 1701 | |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 1702 | LSRUse *FindUseWithSimilarFormula(const Formula &F, const LSRUse &OrigLU); |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 1703 | |
Dan Gohman | 8c16b38 | 2010-02-22 04:11:59 +0000 | [diff] [blame] | 1704 | void InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1705 | void InsertSupplementalFormula(const SCEV *S, LSRUse &LU, size_t LUIdx); |
| 1706 | void CountRegisters(const Formula &F, size_t LUIdx); |
| 1707 | bool InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F); |
| 1708 | |
| 1709 | void CollectLoopInvariantFixupsAndFormulae(); |
| 1710 | |
| 1711 | void GenerateReassociations(LSRUse &LU, unsigned LUIdx, Formula Base, |
| 1712 | unsigned Depth = 0); |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1713 | |
| 1714 | void GenerateReassociationsImpl(LSRUse &LU, unsigned LUIdx, |
| 1715 | const Formula &Base, unsigned Depth, |
| 1716 | size_t Idx, bool IsScaledReg = false); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1717 | void GenerateCombinations(LSRUse &LU, unsigned LUIdx, Formula Base); |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1718 | void GenerateSymbolicOffsetsImpl(LSRUse &LU, unsigned LUIdx, |
| 1719 | const Formula &Base, size_t Idx, |
| 1720 | bool IsScaledReg = false); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1721 | void GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx, Formula Base); |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1722 | void GenerateConstantOffsetsImpl(LSRUse &LU, unsigned LUIdx, |
| 1723 | const Formula &Base, |
| 1724 | const SmallVectorImpl<int64_t> &Worklist, |
| 1725 | size_t Idx, bool IsScaledReg = false); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1726 | void GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx, Formula Base); |
| 1727 | void GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx, Formula Base); |
| 1728 | void GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base); |
| 1729 | void GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base); |
| 1730 | void GenerateCrossUseConstantOffsets(); |
| 1731 | void GenerateAllReuseFormulae(); |
| 1732 | |
| 1733 | void FilterOutUndesirableDedicatedRegisters(); |
Dan Gohman | a4eca05 | 2010-05-18 22:51:59 +0000 | [diff] [blame] | 1734 | |
| 1735 | size_t EstimateSearchSpaceComplexity() const; |
Dan Gohman | e9e0873 | 2010-08-29 16:09:42 +0000 | [diff] [blame] | 1736 | void NarrowSearchSpaceByDetectingSupersets(); |
| 1737 | void NarrowSearchSpaceByCollapsingUnrolledCode(); |
Dan Gohman | 002ff89 | 2010-08-29 16:39:22 +0000 | [diff] [blame] | 1738 | void NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters(); |
Dan Gohman | e9e0873 | 2010-08-29 16:09:42 +0000 | [diff] [blame] | 1739 | void NarrowSearchSpaceByPickingWinnerRegs(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1740 | void NarrowSearchSpaceUsingHeuristics(); |
| 1741 | |
| 1742 | void SolveRecurse(SmallVectorImpl<const Formula *> &Solution, |
| 1743 | Cost &SolutionCost, |
| 1744 | SmallVectorImpl<const Formula *> &Workspace, |
| 1745 | const Cost &CurCost, |
| 1746 | const SmallPtrSet<const SCEV *, 16> &CurRegs, |
| 1747 | DenseSet<const SCEV *> &VisitedRegs) const; |
| 1748 | void Solve(SmallVectorImpl<const Formula *> &Solution) const; |
| 1749 | |
Dan Gohman | 607e02b | 2010-04-09 22:07:05 +0000 | [diff] [blame] | 1750 | BasicBlock::iterator |
| 1751 | HoistInsertPosition(BasicBlock::iterator IP, |
| 1752 | const SmallVectorImpl<Instruction *> &Inputs) const; |
Andrew Trick | c908b43 | 2012-01-20 07:41:13 +0000 | [diff] [blame] | 1753 | BasicBlock::iterator |
| 1754 | AdjustInsertPositionForExpand(BasicBlock::iterator IP, |
| 1755 | const LSRFixup &LF, |
| 1756 | const LSRUse &LU, |
| 1757 | SCEVExpander &Rewriter) const; |
Dan Gohman | d2df643 | 2010-04-09 02:00:38 +0000 | [diff] [blame] | 1758 | |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 1759 | Value *Expand(const LSRUse &LU, const LSRFixup &LF, |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1760 | const Formula &F, |
Dan Gohman | 8c16b38 | 2010-02-22 04:11:59 +0000 | [diff] [blame] | 1761 | BasicBlock::iterator IP, |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1762 | SCEVExpander &Rewriter, |
Dan Gohman | 8c16b38 | 2010-02-22 04:11:59 +0000 | [diff] [blame] | 1763 | SmallVectorImpl<WeakVH> &DeadInsts) const; |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 1764 | void RewriteForPHI(PHINode *PN, const LSRUse &LU, const LSRFixup &LF, |
Dan Gohman | 6deab96 | 2010-02-16 20:25:07 +0000 | [diff] [blame] | 1765 | const Formula &F, |
Dan Gohman | 6deab96 | 2010-02-16 20:25:07 +0000 | [diff] [blame] | 1766 | SCEVExpander &Rewriter, |
Justin Bogner | 843fb20 | 2015-12-15 19:40:57 +0000 | [diff] [blame] | 1767 | SmallVectorImpl<WeakVH> &DeadInsts) const; |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 1768 | void Rewrite(const LSRUse &LU, const LSRFixup &LF, |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1769 | const Formula &F, |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1770 | SCEVExpander &Rewriter, |
Justin Bogner | 843fb20 | 2015-12-15 19:40:57 +0000 | [diff] [blame] | 1771 | SmallVectorImpl<WeakVH> &DeadInsts) const; |
| 1772 | void ImplementSolution(const SmallVectorImpl<const Formula *> &Solution); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1773 | |
Andrew Trick | dc18e38 | 2011-12-13 00:55:33 +0000 | [diff] [blame] | 1774 | public: |
Justin Bogner | 843fb20 | 2015-12-15 19:40:57 +0000 | [diff] [blame] | 1775 | LSRInstance(Loop *L, IVUsers &IU, ScalarEvolution &SE, DominatorTree &DT, |
| 1776 | LoopInfo &LI, const TargetTransformInfo &TTI); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1777 | |
| 1778 | bool getChanged() const { return Changed; } |
| 1779 | |
| 1780 | void print_factors_and_types(raw_ostream &OS) const; |
| 1781 | void print_fixups(raw_ostream &OS) const; |
| 1782 | void print_uses(raw_ostream &OS) const; |
| 1783 | void print(raw_ostream &OS) const; |
| 1784 | void dump() const; |
| 1785 | }; |
| 1786 | |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 1787 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1788 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1789 | /// If IV is used in a int-to-float cast inside the loop then try to eliminate |
| 1790 | /// the cast operation. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1791 | void LSRInstance::OptimizeShadowIV() { |
| 1792 | const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L); |
| 1793 | if (isa<SCEVCouldNotCompute>(BackedgeTakenCount)) |
| 1794 | return; |
| 1795 | |
| 1796 | for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); |
| 1797 | UI != E; /* empty */) { |
| 1798 | IVUsers::const_iterator CandidateUI = UI; |
| 1799 | ++UI; |
| 1800 | Instruction *ShadowUse = CandidateUI->getUser(); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1801 | Type *DestTy = nullptr; |
Andrew Trick | 858e9f0 | 2011-07-21 01:05:01 +0000 | [diff] [blame] | 1802 | bool IsSigned = false; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1803 | |
| 1804 | /* If shadow use is a int->float cast then insert a second IV |
| 1805 | to eliminate this cast. |
| 1806 | |
| 1807 | for (unsigned i = 0; i < n; ++i) |
| 1808 | foo((double)i); |
| 1809 | |
| 1810 | is transformed into |
| 1811 | |
| 1812 | double d = 0.0; |
| 1813 | for (unsigned i = 0; i < n; ++i, ++d) |
| 1814 | foo(d); |
| 1815 | */ |
Andrew Trick | 858e9f0 | 2011-07-21 01:05:01 +0000 | [diff] [blame] | 1816 | if (UIToFPInst *UCast = dyn_cast<UIToFPInst>(CandidateUI->getUser())) { |
| 1817 | IsSigned = false; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1818 | DestTy = UCast->getDestTy(); |
Andrew Trick | 858e9f0 | 2011-07-21 01:05:01 +0000 | [diff] [blame] | 1819 | } |
| 1820 | else if (SIToFPInst *SCast = dyn_cast<SIToFPInst>(CandidateUI->getUser())) { |
| 1821 | IsSigned = true; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1822 | DestTy = SCast->getDestTy(); |
Andrew Trick | 858e9f0 | 2011-07-21 01:05:01 +0000 | [diff] [blame] | 1823 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1824 | if (!DestTy) continue; |
| 1825 | |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1826 | // If target does not support DestTy natively then do not apply |
| 1827 | // this transformation. |
| 1828 | if (!TTI.isTypeLegal(DestTy)) continue; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1829 | |
| 1830 | PHINode *PH = dyn_cast<PHINode>(ShadowUse->getOperand(0)); |
| 1831 | if (!PH) continue; |
| 1832 | if (PH->getNumIncomingValues() != 2) continue; |
| 1833 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1834 | Type *SrcTy = PH->getType(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1835 | int Mantissa = DestTy->getFPMantissaWidth(); |
| 1836 | if (Mantissa == -1) continue; |
| 1837 | if ((int)SE.getTypeSizeInBits(SrcTy) > Mantissa) |
| 1838 | continue; |
| 1839 | |
| 1840 | unsigned Entry, Latch; |
| 1841 | if (PH->getIncomingBlock(0) == L->getLoopPreheader()) { |
| 1842 | Entry = 0; |
| 1843 | Latch = 1; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1844 | } else { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1845 | Entry = 1; |
| 1846 | Latch = 0; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1847 | } |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1848 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1849 | ConstantInt *Init = dyn_cast<ConstantInt>(PH->getIncomingValue(Entry)); |
| 1850 | if (!Init) continue; |
Andrew Trick | 858e9f0 | 2011-07-21 01:05:01 +0000 | [diff] [blame] | 1851 | Constant *NewInit = ConstantFP::get(DestTy, IsSigned ? |
Andrew Trick | bd243d0 | 2011-07-21 01:45:54 +0000 | [diff] [blame] | 1852 | (double)Init->getSExtValue() : |
| 1853 | (double)Init->getZExtValue()); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1854 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1855 | BinaryOperator *Incr = |
| 1856 | dyn_cast<BinaryOperator>(PH->getIncomingValue(Latch)); |
| 1857 | if (!Incr) continue; |
| 1858 | if (Incr->getOpcode() != Instruction::Add |
| 1859 | && Incr->getOpcode() != Instruction::Sub) |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1860 | continue; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1861 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1862 | /* Initialize new IV, double d = 0.0 in above example. */ |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1863 | ConstantInt *C = nullptr; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1864 | if (Incr->getOperand(0) == PH) |
| 1865 | C = dyn_cast<ConstantInt>(Incr->getOperand(1)); |
| 1866 | else if (Incr->getOperand(1) == PH) |
| 1867 | C = dyn_cast<ConstantInt>(Incr->getOperand(0)); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1868 | else |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1869 | continue; |
| 1870 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1871 | if (!C) continue; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1872 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1873 | // Ignore negative constants, as the code below doesn't handle them |
| 1874 | // correctly. TODO: Remove this restriction. |
| 1875 | if (!C->getValue().isStrictlyPositive()) continue; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1876 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1877 | /* Add new PHINode. */ |
Jay Foad | 5213134 | 2011-03-30 11:28:46 +0000 | [diff] [blame] | 1878 | PHINode *NewPH = PHINode::Create(DestTy, 2, "IV.S.", PH); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1879 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1880 | /* create new increment. '++d' in above example. */ |
| 1881 | Constant *CFP = ConstantFP::get(DestTy, C->getZExtValue()); |
| 1882 | BinaryOperator *NewIncr = |
| 1883 | BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ? |
| 1884 | Instruction::FAdd : Instruction::FSub, |
| 1885 | NewPH, CFP, "IV.S.next.", Incr); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1886 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1887 | NewPH->addIncoming(NewInit, PH->getIncomingBlock(Entry)); |
| 1888 | NewPH->addIncoming(NewIncr, PH->getIncomingBlock(Latch)); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1889 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1890 | /* Remove cast operation */ |
| 1891 | ShadowUse->replaceAllUsesWith(NewPH); |
| 1892 | ShadowUse->eraseFromParent(); |
Dan Gohman | 4c4043c | 2010-05-20 20:05:31 +0000 | [diff] [blame] | 1893 | Changed = true; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1894 | break; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1895 | } |
| 1896 | } |
| 1897 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1898 | /// If Cond has an operand that is an expression of an IV, set the IV user and |
| 1899 | /// stride information and return true, otherwise return false. |
Dan Gohman | ab5fb7f | 2010-05-20 19:44:23 +0000 | [diff] [blame] | 1900 | bool LSRInstance::FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse) { |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 1901 | for (IVStrideUse &U : IU) |
| 1902 | if (U.getUser() == Cond) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1903 | // NOTE: we could handle setcc instructions with multiple uses here, but |
| 1904 | // InstCombine does it as well for simple uses, it's not clear that it |
| 1905 | // occurs enough in real life to handle. |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 1906 | CondUse = &U; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1907 | return true; |
| 1908 | } |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1909 | return false; |
Evan Cheng | 133694d | 2007-10-25 09:11:16 +0000 | [diff] [blame] | 1910 | } |
| 1911 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 1912 | /// Rewrite the loop's terminating condition if it uses a max computation. |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1913 | /// |
| 1914 | /// This is a narrow solution to a specific, but acute, problem. For loops |
| 1915 | /// like this: |
| 1916 | /// |
| 1917 | /// i = 0; |
| 1918 | /// do { |
| 1919 | /// p[i] = 0.0; |
| 1920 | /// } while (++i < n); |
| 1921 | /// |
| 1922 | /// the trip count isn't just 'n', because 'n' might not be positive. And |
| 1923 | /// unfortunately this can come up even for loops where the user didn't use |
| 1924 | /// a C do-while loop. For example, seemingly well-behaved top-test loops |
| 1925 | /// will commonly be lowered like this: |
| 1926 | // |
| 1927 | /// if (n > 0) { |
| 1928 | /// i = 0; |
| 1929 | /// do { |
| 1930 | /// p[i] = 0.0; |
| 1931 | /// } while (++i < n); |
| 1932 | /// } |
| 1933 | /// |
| 1934 | /// and then it's possible for subsequent optimization to obscure the if |
| 1935 | /// test in such a way that indvars can't find it. |
| 1936 | /// |
| 1937 | /// When indvars can't find the if test in loops like this, it creates a |
| 1938 | /// max expression, which allows it to give the loop a canonical |
| 1939 | /// induction variable: |
| 1940 | /// |
| 1941 | /// i = 0; |
| 1942 | /// max = n < 1 ? 1 : n; |
| 1943 | /// do { |
| 1944 | /// p[i] = 0.0; |
| 1945 | /// } while (++i != max); |
| 1946 | /// |
| 1947 | /// Canonical induction variables are necessary because the loop passes |
| 1948 | /// are designed around them. The most obvious example of this is the |
| 1949 | /// LoopInfo analysis, which doesn't remember trip count values. It |
| 1950 | /// expects to be able to rediscover the trip count each time it is |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1951 | /// needed, and it does this using a simple analysis that only succeeds if |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1952 | /// the loop has a canonical induction variable. |
| 1953 | /// |
| 1954 | /// However, when it comes time to generate code, the maximum operation |
| 1955 | /// can be quite costly, especially if it's inside of an outer loop. |
| 1956 | /// |
| 1957 | /// This function solves this problem by detecting this type of loop and |
| 1958 | /// rewriting their conditions from ICMP_NE back to ICMP_SLT, and deleting |
| 1959 | /// the instructions for the maximum computation. |
| 1960 | /// |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1961 | ICmpInst *LSRInstance::OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse) { |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1962 | // Check that the loop matches the pattern we're looking for. |
| 1963 | if (Cond->getPredicate() != CmpInst::ICMP_EQ && |
| 1964 | Cond->getPredicate() != CmpInst::ICMP_NE) |
| 1965 | return Cond; |
Dan Gohman | 51ad99d | 2010-01-21 02:09:26 +0000 | [diff] [blame] | 1966 | |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1967 | SelectInst *Sel = dyn_cast<SelectInst>(Cond->getOperand(1)); |
| 1968 | if (!Sel || !Sel->hasOneUse()) return Cond; |
Dan Gohman | 51ad99d | 2010-01-21 02:09:26 +0000 | [diff] [blame] | 1969 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1970 | const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1971 | if (isa<SCEVCouldNotCompute>(BackedgeTakenCount)) |
| 1972 | return Cond; |
Dan Gohman | 1d2ded7 | 2010-05-03 22:09:21 +0000 | [diff] [blame] | 1973 | const SCEV *One = SE.getConstant(BackedgeTakenCount->getType(), 1); |
Dan Gohman | 51ad99d | 2010-01-21 02:09:26 +0000 | [diff] [blame] | 1974 | |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1975 | // Add one to the backedge-taken count to get the trip count. |
Dan Gohman | 9b7632d | 2010-08-16 15:39:27 +0000 | [diff] [blame] | 1976 | const SCEV *IterationCount = SE.getAddExpr(One, BackedgeTakenCount); |
Dan Gohman | 534ba37 | 2010-04-24 03:13:44 +0000 | [diff] [blame] | 1977 | if (IterationCount != SE.getSCEV(Sel)) return Cond; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1978 | |
Dan Gohman | 534ba37 | 2010-04-24 03:13:44 +0000 | [diff] [blame] | 1979 | // Check for a max calculation that matches the pattern. There's no check |
| 1980 | // for ICMP_ULE here because the comparison would be with zero, which |
| 1981 | // isn't interesting. |
| 1982 | CmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE; |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1983 | const SCEVNAryExpr *Max = nullptr; |
Dan Gohman | 534ba37 | 2010-04-24 03:13:44 +0000 | [diff] [blame] | 1984 | if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(BackedgeTakenCount)) { |
| 1985 | Pred = ICmpInst::ICMP_SLE; |
| 1986 | Max = S; |
| 1987 | } else if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(IterationCount)) { |
| 1988 | Pred = ICmpInst::ICMP_SLT; |
| 1989 | Max = S; |
| 1990 | } else if (const SCEVUMaxExpr *U = dyn_cast<SCEVUMaxExpr>(IterationCount)) { |
| 1991 | Pred = ICmpInst::ICMP_ULT; |
| 1992 | Max = U; |
| 1993 | } else { |
| 1994 | // No match; bail. |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1995 | return Cond; |
Dan Gohman | 534ba37 | 2010-04-24 03:13:44 +0000 | [diff] [blame] | 1996 | } |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1997 | |
| 1998 | // To handle a max with more than two operands, this optimization would |
| 1999 | // require additional checking and setup. |
| 2000 | if (Max->getNumOperands() != 2) |
| 2001 | return Cond; |
| 2002 | |
| 2003 | const SCEV *MaxLHS = Max->getOperand(0); |
| 2004 | const SCEV *MaxRHS = Max->getOperand(1); |
Dan Gohman | 534ba37 | 2010-04-24 03:13:44 +0000 | [diff] [blame] | 2005 | |
| 2006 | // ScalarEvolution canonicalizes constants to the left. For < and >, look |
| 2007 | // for a comparison with 1. For <= and >=, a comparison with zero. |
| 2008 | if (!MaxLHS || |
| 2009 | (ICmpInst::isTrueWhenEqual(Pred) ? !MaxLHS->isZero() : (MaxLHS != One))) |
| 2010 | return Cond; |
| 2011 | |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2012 | // Check the relevant induction variable for conformance to |
| 2013 | // the pattern. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2014 | const SCEV *IV = SE.getSCEV(Cond->getOperand(0)); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2015 | const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(IV); |
| 2016 | if (!AR || !AR->isAffine() || |
| 2017 | AR->getStart() != One || |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2018 | AR->getStepRecurrence(SE) != One) |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2019 | return Cond; |
| 2020 | |
| 2021 | assert(AR->getLoop() == L && |
| 2022 | "Loop condition operand is an addrec in a different loop!"); |
| 2023 | |
| 2024 | // Check the right operand of the select, and remember it, as it will |
| 2025 | // be used in the new comparison instruction. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2026 | Value *NewRHS = nullptr; |
Dan Gohman | 534ba37 | 2010-04-24 03:13:44 +0000 | [diff] [blame] | 2027 | if (ICmpInst::isTrueWhenEqual(Pred)) { |
| 2028 | // Look for n+1, and grab n. |
| 2029 | if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(1))) |
Jakub Staszak | f6df1e3 | 2013-03-24 09:25:47 +0000 | [diff] [blame] | 2030 | if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1))) |
| 2031 | if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS) |
| 2032 | NewRHS = BO->getOperand(0); |
Dan Gohman | 534ba37 | 2010-04-24 03:13:44 +0000 | [diff] [blame] | 2033 | if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(2))) |
Jakub Staszak | f6df1e3 | 2013-03-24 09:25:47 +0000 | [diff] [blame] | 2034 | if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1))) |
| 2035 | if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS) |
| 2036 | NewRHS = BO->getOperand(0); |
Dan Gohman | 534ba37 | 2010-04-24 03:13:44 +0000 | [diff] [blame] | 2037 | if (!NewRHS) |
| 2038 | return Cond; |
| 2039 | } else if (SE.getSCEV(Sel->getOperand(1)) == MaxRHS) |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2040 | NewRHS = Sel->getOperand(1); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2041 | else if (SE.getSCEV(Sel->getOperand(2)) == MaxRHS) |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2042 | NewRHS = Sel->getOperand(2); |
Dan Gohman | 1081f1a | 2010-06-22 23:07:13 +0000 | [diff] [blame] | 2043 | else if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(MaxRHS)) |
| 2044 | NewRHS = SU->getValue(); |
Dan Gohman | 534ba37 | 2010-04-24 03:13:44 +0000 | [diff] [blame] | 2045 | else |
Dan Gohman | 1081f1a | 2010-06-22 23:07:13 +0000 | [diff] [blame] | 2046 | // Max doesn't match expected pattern. |
| 2047 | return Cond; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2048 | |
| 2049 | // Determine the new comparison opcode. It may be signed or unsigned, |
| 2050 | // and the original comparison may be either equality or inequality. |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2051 | if (Cond->getPredicate() == CmpInst::ICMP_EQ) |
| 2052 | Pred = CmpInst::getInversePredicate(Pred); |
| 2053 | |
| 2054 | // Ok, everything looks ok to change the condition into an SLT or SGE and |
| 2055 | // delete the max calculation. |
| 2056 | ICmpInst *NewCond = |
| 2057 | new ICmpInst(Cond, Pred, Cond->getOperand(0), NewRHS, "scmp"); |
| 2058 | |
| 2059 | // Delete the max calculation instructions. |
| 2060 | Cond->replaceAllUsesWith(NewCond); |
| 2061 | CondUse->setUser(NewCond); |
| 2062 | Instruction *Cmp = cast<Instruction>(Sel->getOperand(0)); |
| 2063 | Cond->eraseFromParent(); |
| 2064 | Sel->eraseFromParent(); |
| 2065 | if (Cmp->use_empty()) |
| 2066 | Cmp->eraseFromParent(); |
| 2067 | return NewCond; |
Dan Gohman | 68e7735 | 2008-09-15 21:22:06 +0000 | [diff] [blame] | 2068 | } |
| 2069 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 2070 | /// Change loop terminating condition to use the postinc iv when possible. |
Dan Gohman | 4c4043c | 2010-05-20 20:05:31 +0000 | [diff] [blame] | 2071 | void |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2072 | LSRInstance::OptimizeLoopTermCond() { |
| 2073 | SmallPtrSet<Instruction *, 4> PostIncs; |
| 2074 | |
James Molloy | 196ad08 | 2016-08-15 07:53:03 +0000 | [diff] [blame] | 2075 | // We need a different set of heuristics for rotated and non-rotated loops. |
| 2076 | // If a loop is rotated then the latch is also the backedge, so inserting |
| 2077 | // post-inc expressions just before the latch is ideal. To reduce live ranges |
| 2078 | // it also makes sense to rewrite terminating conditions to use post-inc |
| 2079 | // expressions. |
| 2080 | // |
| 2081 | // If the loop is not rotated then the latch is not a backedge; the latch |
| 2082 | // check is done in the loop head. Adding post-inc expressions before the |
| 2083 | // latch will cause overlapping live-ranges of pre-inc and post-inc expressions |
| 2084 | // in the loop body. In this case we do *not* want to use post-inc expressions |
| 2085 | // in the latch check, and we want to insert post-inc expressions before |
| 2086 | // the backedge. |
Evan Cheng | 85a9f43 | 2009-11-12 07:35:05 +0000 | [diff] [blame] | 2087 | BasicBlock *LatchBlock = L->getLoopLatch(); |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2088 | SmallVector<BasicBlock*, 8> ExitingBlocks; |
| 2089 | L->getExitingBlocks(ExitingBlocks); |
James Molloy | 196ad08 | 2016-08-15 07:53:03 +0000 | [diff] [blame] | 2090 | if (llvm::all_of(ExitingBlocks, [&LatchBlock](const BasicBlock *BB) { |
| 2091 | return LatchBlock != BB; |
| 2092 | })) { |
| 2093 | // The backedge doesn't exit the loop; treat this as a head-tested loop. |
| 2094 | IVIncInsertPos = LatchBlock->getTerminator(); |
| 2095 | return; |
| 2096 | } |
Jim Grosbach | 60f4854 | 2009-11-17 17:53:56 +0000 | [diff] [blame] | 2097 | |
James Molloy | 196ad08 | 2016-08-15 07:53:03 +0000 | [diff] [blame] | 2098 | // Otherwise treat this as a rotated loop. |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2099 | for (BasicBlock *ExitingBlock : ExitingBlocks) { |
Evan Cheng | 85a9f43 | 2009-11-12 07:35:05 +0000 | [diff] [blame] | 2100 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2101 | // Get the terminating condition for the loop if possible. If we |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2102 | // can, we want to change it to use a post-incremented version of its |
| 2103 | // induction variable, to allow coalescing the live ranges for the IV into |
| 2104 | // one register value. |
Evan Cheng | 85a9f43 | 2009-11-12 07:35:05 +0000 | [diff] [blame] | 2105 | |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2106 | BranchInst *TermBr = dyn_cast<BranchInst>(ExitingBlock->getTerminator()); |
| 2107 | if (!TermBr) |
| 2108 | continue; |
| 2109 | // FIXME: Overly conservative, termination condition could be an 'or' etc.. |
| 2110 | if (TermBr->isUnconditional() || !isa<ICmpInst>(TermBr->getCondition())) |
| 2111 | continue; |
Evan Cheng | 85a9f43 | 2009-11-12 07:35:05 +0000 | [diff] [blame] | 2112 | |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2113 | // Search IVUsesByStride to find Cond's IVUse if there is one. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2114 | IVStrideUse *CondUse = nullptr; |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2115 | ICmpInst *Cond = cast<ICmpInst>(TermBr->getCondition()); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2116 | if (!FindIVUserForCond(Cond, CondUse)) |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2117 | continue; |
| 2118 | |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2119 | // If the trip count is computed in terms of a max (due to ScalarEvolution |
| 2120 | // being unable to find a sufficient guard, for example), change the loop |
| 2121 | // comparison to use SLT or ULT instead of NE. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2122 | // One consequence of doing this now is that it disrupts the count-down |
| 2123 | // optimization. That's not always a bad thing though, because in such |
| 2124 | // cases it may still be worthwhile to avoid a max. |
| 2125 | Cond = OptimizeMax(Cond, CondUse); |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2126 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2127 | // If this exiting block dominates the latch block, it may also use |
| 2128 | // the post-inc value if it won't be shared with other uses. |
| 2129 | // Check for dominance. |
| 2130 | if (!DT.dominates(ExitingBlock, LatchBlock)) |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2131 | continue; |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2132 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2133 | // Conservatively avoid trying to use the post-inc value in non-latch |
| 2134 | // exits if there may be pre-inc users in intervening blocks. |
Dan Gohman | 2d0f96d | 2010-02-14 03:21:49 +0000 | [diff] [blame] | 2135 | if (LatchBlock != ExitingBlock) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2136 | for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) |
| 2137 | // Test if the use is reachable from the exiting block. This dominator |
| 2138 | // query is a conservative approximation of reachability. |
| 2139 | if (&*UI != CondUse && |
| 2140 | !DT.properlyDominates(UI->getUser()->getParent(), ExitingBlock)) { |
| 2141 | // Conservatively assume there may be reuse if the quotient of their |
| 2142 | // strides could be a legal scale. |
Dan Gohman | e637ff5 | 2010-04-19 21:48:58 +0000 | [diff] [blame] | 2143 | const SCEV *A = IU.getStride(*CondUse, L); |
| 2144 | const SCEV *B = IU.getStride(*UI, L); |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 2145 | if (!A || !B) continue; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2146 | if (SE.getTypeSizeInBits(A->getType()) != |
| 2147 | SE.getTypeSizeInBits(B->getType())) { |
| 2148 | if (SE.getTypeSizeInBits(A->getType()) > |
| 2149 | SE.getTypeSizeInBits(B->getType())) |
| 2150 | B = SE.getSignExtendExpr(B, A->getType()); |
| 2151 | else |
| 2152 | A = SE.getSignExtendExpr(A, B->getType()); |
| 2153 | } |
| 2154 | if (const SCEVConstant *D = |
Dan Gohman | 4eebb94 | 2010-02-19 19:35:48 +0000 | [diff] [blame] | 2155 | dyn_cast_or_null<SCEVConstant>(getExactSDiv(B, A, SE))) { |
Dan Gohman | 86110fa | 2010-05-20 22:25:20 +0000 | [diff] [blame] | 2156 | const ConstantInt *C = D->getValue(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2157 | // Stride of one or negative one can have reuse with non-addresses. |
Dan Gohman | 86110fa | 2010-05-20 22:25:20 +0000 | [diff] [blame] | 2158 | if (C->isOne() || C->isAllOnesValue()) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2159 | goto decline_post_inc; |
| 2160 | // Avoid weird situations. |
Dan Gohman | 86110fa | 2010-05-20 22:25:20 +0000 | [diff] [blame] | 2161 | if (C->getValue().getMinSignedBits() >= 64 || |
| 2162 | C->getValue().isMinSignedValue()) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2163 | goto decline_post_inc; |
| 2164 | // Check for possible scaled-address reuse. |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 2165 | MemAccessTy AccessTy = getAccessType(UI->getUser()); |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 2166 | int64_t Scale = C->getSExtValue(); |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 2167 | if (TTI.isLegalAddressingMode(AccessTy.MemTy, /*BaseGV=*/nullptr, |
| 2168 | /*BaseOffset=*/0, |
| 2169 | /*HasBaseReg=*/false, Scale, |
| 2170 | AccessTy.AddrSpace)) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2171 | goto decline_post_inc; |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 2172 | Scale = -Scale; |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 2173 | if (TTI.isLegalAddressingMode(AccessTy.MemTy, /*BaseGV=*/nullptr, |
| 2174 | /*BaseOffset=*/0, |
| 2175 | /*HasBaseReg=*/false, Scale, |
| 2176 | AccessTy.AddrSpace)) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2177 | goto decline_post_inc; |
| 2178 | } |
| 2179 | } |
| 2180 | |
David Greene | 2330f78 | 2009-12-23 22:58:38 +0000 | [diff] [blame] | 2181 | DEBUG(dbgs() << " Change loop exiting icmp to use postinc iv: " |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2182 | << *Cond << '\n'); |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2183 | |
| 2184 | // It's possible for the setcc instruction to be anywhere in the loop, and |
| 2185 | // possible for it to have multiple users. If it is not immediately before |
| 2186 | // the exiting block branch, move it. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2187 | if (&*++BasicBlock::iterator(Cond) != TermBr) { |
| 2188 | if (Cond->hasOneUse()) { |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2189 | Cond->moveBefore(TermBr); |
| 2190 | } else { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2191 | // Clone the terminating condition and insert into the loopend. |
| 2192 | ICmpInst *OldCond = Cond; |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2193 | Cond = cast<ICmpInst>(Cond->clone()); |
| 2194 | Cond->setName(L->getHeader()->getName() + ".termcond"); |
Duncan P. N. Exon Smith | be4d8cb | 2015-10-13 19:26:58 +0000 | [diff] [blame] | 2195 | ExitingBlock->getInstList().insert(TermBr->getIterator(), Cond); |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2196 | |
| 2197 | // Clone the IVUse, as the old use still exists! |
Andrew Trick | fc4ccb2 | 2011-06-21 15:43:52 +0000 | [diff] [blame] | 2198 | CondUse = &IU.AddUser(Cond, CondUse->getOperandValToReplace()); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2199 | TermBr->replaceUsesOfWith(OldCond, Cond); |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2200 | } |
Evan Cheng | 85a9f43 | 2009-11-12 07:35:05 +0000 | [diff] [blame] | 2201 | } |
| 2202 | |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2203 | // If we get to here, we know that we can transform the setcc instruction to |
| 2204 | // use the post-incremented version of the IV, allowing us to coalesce the |
| 2205 | // live ranges for the IV correctly. |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 2206 | CondUse->transformToPostInc(L); |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2207 | Changed = true; |
| 2208 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2209 | PostIncs.insert(Cond); |
| 2210 | decline_post_inc:; |
Dan Gohman | 51ad99d | 2010-01-21 02:09:26 +0000 | [diff] [blame] | 2211 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2212 | |
| 2213 | // Determine an insertion point for the loop induction variable increment. It |
| 2214 | // must dominate all the post-inc comparisons we just set up, and it must |
| 2215 | // dominate the loop latch edge. |
| 2216 | IVIncInsertPos = L->getLoopLatch()->getTerminator(); |
Craig Topper | 4627679 | 2014-08-24 23:23:06 +0000 | [diff] [blame] | 2217 | for (Instruction *Inst : PostIncs) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2218 | BasicBlock *BB = |
| 2219 | DT.findNearestCommonDominator(IVIncInsertPos->getParent(), |
Craig Topper | 4627679 | 2014-08-24 23:23:06 +0000 | [diff] [blame] | 2220 | Inst->getParent()); |
| 2221 | if (BB == Inst->getParent()) |
| 2222 | IVIncInsertPos = Inst; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2223 | else if (BB != IVIncInsertPos->getParent()) |
| 2224 | IVIncInsertPos = BB->getTerminator(); |
| 2225 | } |
Dan Gohman | 51ad99d | 2010-01-21 02:09:26 +0000 | [diff] [blame] | 2226 | } |
| 2227 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 2228 | /// Determine if the given use can accommodate a fixup at the given offset and |
| 2229 | /// other details. If so, update the use and return true. |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 2230 | bool LSRInstance::reconcileNewOffset(LSRUse &LU, int64_t NewOffset, |
| 2231 | bool HasBaseReg, LSRUse::KindType Kind, |
| 2232 | MemAccessTy AccessTy) { |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 2233 | int64_t NewMinOffset = LU.MinOffset; |
| 2234 | int64_t NewMaxOffset = LU.MaxOffset; |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 2235 | MemAccessTy NewAccessTy = AccessTy; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2236 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2237 | // Check for a mismatched kind. It's tempting to collapse mismatched kinds to |
| 2238 | // something conservative, however this can pessimize in the case that one of |
| 2239 | // the uses will have all its uses outside the loop, for example. |
| 2240 | if (LU.Kind != Kind) |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2241 | return false; |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 2242 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2243 | // Check for a mismatched access type, and fall back conservatively as needed. |
Dan Gohman | 3265590 | 2010-06-19 21:30:18 +0000 | [diff] [blame] | 2244 | // TODO: Be less conservative when the type is similar and can use the same |
| 2245 | // addressing modes. |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 2246 | if (Kind == LSRUse::Address) { |
| 2247 | if (AccessTy != LU.AccessTy) |
| 2248 | NewAccessTy = MemAccessTy::getUnknown(AccessTy.MemTy->getContext()); |
| 2249 | } |
Dan Gohman | 51ad99d | 2010-01-21 02:09:26 +0000 | [diff] [blame] | 2250 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 2251 | // Conservatively assume HasBaseReg is true for now. |
| 2252 | if (NewOffset < LU.MinOffset) { |
| 2253 | if (!isAlwaysFoldable(TTI, Kind, NewAccessTy, /*BaseGV=*/nullptr, |
| 2254 | LU.MaxOffset - NewOffset, HasBaseReg)) |
| 2255 | return false; |
| 2256 | NewMinOffset = NewOffset; |
| 2257 | } else if (NewOffset > LU.MaxOffset) { |
| 2258 | if (!isAlwaysFoldable(TTI, Kind, NewAccessTy, /*BaseGV=*/nullptr, |
| 2259 | NewOffset - LU.MinOffset, HasBaseReg)) |
| 2260 | return false; |
| 2261 | NewMaxOffset = NewOffset; |
| 2262 | } |
| 2263 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2264 | // Update the use. |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 2265 | LU.MinOffset = NewMinOffset; |
| 2266 | LU.MaxOffset = NewMaxOffset; |
| 2267 | LU.AccessTy = NewAccessTy; |
Dan Gohman | 29916e0 | 2010-01-21 22:42:49 +0000 | [diff] [blame] | 2268 | return true; |
| 2269 | } |
| 2270 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 2271 | /// Return an LSRUse index and an offset value for a fixup which needs the given |
| 2272 | /// expression, with the given kind and optional access type. Either reuse an |
| 2273 | /// existing use or create a new one, as needed. |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 2274 | std::pair<size_t, int64_t> LSRInstance::getUse(const SCEV *&Expr, |
| 2275 | LSRUse::KindType Kind, |
| 2276 | MemAccessTy AccessTy) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2277 | const SCEV *Copy = Expr; |
| 2278 | int64_t Offset = ExtractImmediate(Expr, SE); |
Evan Cheng | 85a9f43 | 2009-11-12 07:35:05 +0000 | [diff] [blame] | 2279 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2280 | // Basic uses can't accept any offset, for example. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2281 | if (!isAlwaysFoldable(TTI, Kind, AccessTy, /*BaseGV=*/ nullptr, |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 2282 | Offset, /*HasBaseReg=*/ true)) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2283 | Expr = Copy; |
| 2284 | Offset = 0; |
| 2285 | } |
| 2286 | |
| 2287 | std::pair<UseMapTy::iterator, bool> P = |
Benjamin Kramer | 62fb0cf | 2014-03-15 17:17:48 +0000 | [diff] [blame] | 2288 | UseMap.insert(std::make_pair(LSRUse::SCEVUseKindPair(Expr, Kind), 0)); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2289 | if (!P.second) { |
| 2290 | // A use already existed with this base. |
| 2291 | size_t LUIdx = P.first->second; |
| 2292 | LSRUse &LU = Uses[LUIdx]; |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 2293 | if (reconcileNewOffset(LU, Offset, /*HasBaseReg=*/true, Kind, AccessTy)) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2294 | // Reuse this use. |
| 2295 | return std::make_pair(LUIdx, Offset); |
| 2296 | } |
| 2297 | |
| 2298 | // Create a new use. |
| 2299 | size_t LUIdx = Uses.size(); |
| 2300 | P.first->second = LUIdx; |
| 2301 | Uses.push_back(LSRUse(Kind, AccessTy)); |
| 2302 | LSRUse &LU = Uses[LUIdx]; |
| 2303 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2304 | LU.MinOffset = Offset; |
| 2305 | LU.MaxOffset = Offset; |
| 2306 | return std::make_pair(LUIdx, Offset); |
| 2307 | } |
| 2308 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 2309 | /// Delete the given use from the Uses list. |
Dan Gohman | a7b68d6 | 2010-10-07 23:33:43 +0000 | [diff] [blame] | 2310 | void LSRInstance::DeleteUse(LSRUse &LU, size_t LUIdx) { |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 2311 | if (&LU != &Uses.back()) |
Dan Gohman | 80a9608 | 2010-05-20 15:17:54 +0000 | [diff] [blame] | 2312 | std::swap(LU, Uses.back()); |
| 2313 | Uses.pop_back(); |
Dan Gohman | a7b68d6 | 2010-10-07 23:33:43 +0000 | [diff] [blame] | 2314 | |
| 2315 | // Update RegUses. |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 2316 | RegUses.swapAndDropUse(LUIdx, Uses.size()); |
Dan Gohman | 80a9608 | 2010-05-20 15:17:54 +0000 | [diff] [blame] | 2317 | } |
| 2318 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 2319 | /// Look for a use distinct from OrigLU which is has a formula that has the same |
| 2320 | /// registers as the given formula. |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 2321 | LSRUse * |
| 2322 | LSRInstance::FindUseWithSimilarFormula(const Formula &OrigF, |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 2323 | const LSRUse &OrigLU) { |
| 2324 | // Search all uses for the formula. This could be more clever. |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 2325 | for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) { |
| 2326 | LSRUse &LU = Uses[LUIdx]; |
Dan Gohman | b6a520d | 2010-08-29 15:27:08 +0000 | [diff] [blame] | 2327 | // Check whether this use is close enough to OrigLU, to see whether it's |
| 2328 | // worthwhile looking through its formulae. |
| 2329 | // Ignore ICmpZero uses because they may contain formulae generated by |
| 2330 | // GenerateICmpZeroScales, in which case adding fixup offsets may |
| 2331 | // be invalid. |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 2332 | if (&LU != &OrigLU && |
| 2333 | LU.Kind != LSRUse::ICmpZero && |
| 2334 | LU.Kind == OrigLU.Kind && OrigLU.AccessTy == LU.AccessTy && |
Dan Gohman | 1415208 | 2010-07-15 20:24:58 +0000 | [diff] [blame] | 2335 | LU.WidestFixupType == OrigLU.WidestFixupType && |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 2336 | LU.HasFormulaWithSameRegs(OrigF)) { |
Dan Gohman | b6a520d | 2010-08-29 15:27:08 +0000 | [diff] [blame] | 2337 | // Scan through this use's formulae. |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2338 | for (const Formula &F : LU.Formulae) { |
Dan Gohman | b6a520d | 2010-08-29 15:27:08 +0000 | [diff] [blame] | 2339 | // Check to see if this formula has the same registers and symbols |
| 2340 | // as OrigF. |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 2341 | if (F.BaseRegs == OrigF.BaseRegs && |
| 2342 | F.ScaledReg == OrigF.ScaledReg && |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 2343 | F.BaseGV == OrigF.BaseGV && |
| 2344 | F.Scale == OrigF.Scale && |
Dan Gohman | 6136e94 | 2011-05-03 00:46:49 +0000 | [diff] [blame] | 2345 | F.UnfoldedOffset == OrigF.UnfoldedOffset) { |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 2346 | if (F.BaseOffset == 0) |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 2347 | return &LU; |
Dan Gohman | b6a520d | 2010-08-29 15:27:08 +0000 | [diff] [blame] | 2348 | // This is the formula where all the registers and symbols matched; |
| 2349 | // there aren't going to be any others. Since we declined it, we |
Benjamin Kramer | bde9176 | 2012-06-02 10:20:22 +0000 | [diff] [blame] | 2350 | // can skip the rest of the formulae and proceed to the next LSRUse. |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 2351 | break; |
| 2352 | } |
| 2353 | } |
| 2354 | } |
| 2355 | } |
| 2356 | |
Dan Gohman | b6a520d | 2010-08-29 15:27:08 +0000 | [diff] [blame] | 2357 | // Nothing looked good. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2358 | return nullptr; |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 2359 | } |
| 2360 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2361 | void LSRInstance::CollectInterestingTypesAndFactors() { |
| 2362 | SmallSetVector<const SCEV *, 4> Strides; |
| 2363 | |
Dan Gohman | 2446f57 | 2010-02-19 00:05:23 +0000 | [diff] [blame] | 2364 | // Collect interesting types and strides. |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 2365 | SmallVector<const SCEV *, 4> Worklist; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2366 | for (const IVStrideUse &U : IU) { |
| 2367 | const SCEV *Expr = IU.getExpr(U); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2368 | |
| 2369 | // Collect interesting types. |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 2370 | Types.insert(SE.getEffectiveSCEVType(Expr->getType())); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2371 | |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 2372 | // Add strides for mentioned loops. |
| 2373 | Worklist.push_back(Expr); |
| 2374 | do { |
| 2375 | const SCEV *S = Worklist.pop_back_val(); |
| 2376 | if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { |
Andrew Trick | d97b83e | 2012-03-22 22:42:45 +0000 | [diff] [blame] | 2377 | if (AR->getLoop() == L) |
Andrew Trick | e8b4f40 | 2011-12-10 00:25:00 +0000 | [diff] [blame] | 2378 | Strides.insert(AR->getStepRecurrence(SE)); |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 2379 | Worklist.push_back(AR->getStart()); |
| 2380 | } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) { |
Dan Gohman | dd41bba | 2010-06-21 19:47:52 +0000 | [diff] [blame] | 2381 | Worklist.append(Add->op_begin(), Add->op_end()); |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 2382 | } |
| 2383 | } while (!Worklist.empty()); |
Dan Gohman | 2446f57 | 2010-02-19 00:05:23 +0000 | [diff] [blame] | 2384 | } |
| 2385 | |
| 2386 | // Compute interesting factors from the set of interesting strides. |
| 2387 | for (SmallSetVector<const SCEV *, 4>::const_iterator |
| 2388 | I = Strides.begin(), E = Strides.end(); I != E; ++I) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2389 | for (SmallSetVector<const SCEV *, 4>::const_iterator NewStrideIter = |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 2390 | std::next(I); NewStrideIter != E; ++NewStrideIter) { |
Dan Gohman | 2446f57 | 2010-02-19 00:05:23 +0000 | [diff] [blame] | 2391 | const SCEV *OldStride = *I; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2392 | const SCEV *NewStride = *NewStrideIter; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2393 | |
| 2394 | if (SE.getTypeSizeInBits(OldStride->getType()) != |
| 2395 | SE.getTypeSizeInBits(NewStride->getType())) { |
| 2396 | if (SE.getTypeSizeInBits(OldStride->getType()) > |
| 2397 | SE.getTypeSizeInBits(NewStride->getType())) |
| 2398 | NewStride = SE.getSignExtendExpr(NewStride, OldStride->getType()); |
| 2399 | else |
| 2400 | OldStride = SE.getSignExtendExpr(OldStride, NewStride->getType()); |
| 2401 | } |
| 2402 | if (const SCEVConstant *Factor = |
Dan Gohman | 4eebb94 | 2010-02-19 19:35:48 +0000 | [diff] [blame] | 2403 | dyn_cast_or_null<SCEVConstant>(getExactSDiv(NewStride, OldStride, |
| 2404 | SE, true))) { |
Sanjoy Das | 0de2fec | 2015-12-17 20:28:46 +0000 | [diff] [blame] | 2405 | if (Factor->getAPInt().getMinSignedBits() <= 64) |
| 2406 | Factors.insert(Factor->getAPInt().getSExtValue()); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2407 | } else if (const SCEVConstant *Factor = |
Dan Gohman | 8c16b38 | 2010-02-22 04:11:59 +0000 | [diff] [blame] | 2408 | dyn_cast_or_null<SCEVConstant>(getExactSDiv(OldStride, |
| 2409 | NewStride, |
Dan Gohman | 4eebb94 | 2010-02-19 19:35:48 +0000 | [diff] [blame] | 2410 | SE, true))) { |
Sanjoy Das | 0de2fec | 2015-12-17 20:28:46 +0000 | [diff] [blame] | 2411 | if (Factor->getAPInt().getMinSignedBits() <= 64) |
| 2412 | Factors.insert(Factor->getAPInt().getSExtValue()); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2413 | } |
| 2414 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2415 | |
| 2416 | // If all uses use the same type, don't bother looking for truncation-based |
| 2417 | // reuse. |
| 2418 | if (Types.size() == 1) |
| 2419 | Types.clear(); |
| 2420 | |
| 2421 | DEBUG(print_factors_and_types(dbgs())); |
| 2422 | } |
| 2423 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 2424 | /// Helper for CollectChains that finds an IV operand (computed by an AddRec in |
| 2425 | /// this loop) within [OI,OE) or returns OE. If IVUsers mapped Instructions to |
| 2426 | /// IVStrideUses, we could partially skip this. |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2427 | static User::op_iterator |
| 2428 | findIVOperand(User::op_iterator OI, User::op_iterator OE, |
| 2429 | Loop *L, ScalarEvolution &SE) { |
| 2430 | for(; OI != OE; ++OI) { |
| 2431 | if (Instruction *Oper = dyn_cast<Instruction>(*OI)) { |
| 2432 | if (!SE.isSCEVable(Oper->getType())) |
| 2433 | continue; |
| 2434 | |
| 2435 | if (const SCEVAddRecExpr *AR = |
| 2436 | dyn_cast<SCEVAddRecExpr>(SE.getSCEV(Oper))) { |
| 2437 | if (AR->getLoop() == L) |
| 2438 | break; |
| 2439 | } |
| 2440 | } |
| 2441 | } |
| 2442 | return OI; |
| 2443 | } |
| 2444 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 2445 | /// IVChain logic must consistenctly peek base TruncInst operands, so wrap it in |
| 2446 | /// a convenient helper. |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2447 | static Value *getWideOperand(Value *Oper) { |
| 2448 | if (TruncInst *Trunc = dyn_cast<TruncInst>(Oper)) |
| 2449 | return Trunc->getOperand(0); |
| 2450 | return Oper; |
| 2451 | } |
| 2452 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 2453 | /// Return true if we allow an IV chain to include both types. |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2454 | static bool isCompatibleIVType(Value *LVal, Value *RVal) { |
| 2455 | Type *LType = LVal->getType(); |
| 2456 | Type *RType = RVal->getType(); |
| 2457 | return (LType == RType) || (LType->isPointerTy() && RType->isPointerTy()); |
| 2458 | } |
| 2459 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 2460 | /// Return an approximation of this SCEV expression's "base", or NULL for any |
| 2461 | /// constant. Returning the expression itself is conservative. Returning a |
| 2462 | /// deeper subexpression is more precise and valid as long as it isn't less |
| 2463 | /// complex than another subexpression. For expressions involving multiple |
| 2464 | /// unscaled values, we need to return the pointer-type SCEVUnknown. This avoids |
| 2465 | /// forming chains across objects, such as: PrevOper==a[i], IVOper==b[i], |
| 2466 | /// IVInc==b-a. |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2467 | /// |
| 2468 | /// Since SCEVUnknown is the rightmost type, and pointers are the rightmost |
| 2469 | /// SCEVUnknown, we simply return the rightmost SCEV operand. |
| 2470 | static const SCEV *getExprBase(const SCEV *S) { |
| 2471 | switch (S->getSCEVType()) { |
| 2472 | default: // uncluding scUnknown. |
| 2473 | return S; |
| 2474 | case scConstant: |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2475 | return nullptr; |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2476 | case scTruncate: |
| 2477 | return getExprBase(cast<SCEVTruncateExpr>(S)->getOperand()); |
| 2478 | case scZeroExtend: |
| 2479 | return getExprBase(cast<SCEVZeroExtendExpr>(S)->getOperand()); |
| 2480 | case scSignExtend: |
| 2481 | return getExprBase(cast<SCEVSignExtendExpr>(S)->getOperand()); |
| 2482 | case scAddExpr: { |
| 2483 | // Skip over scaled operands (scMulExpr) to follow add operands as long as |
| 2484 | // there's nothing more complex. |
| 2485 | // FIXME: not sure if we want to recognize negation. |
| 2486 | const SCEVAddExpr *Add = cast<SCEVAddExpr>(S); |
| 2487 | for (std::reverse_iterator<SCEVAddExpr::op_iterator> I(Add->op_end()), |
| 2488 | E(Add->op_begin()); I != E; ++I) { |
| 2489 | const SCEV *SubExpr = *I; |
| 2490 | if (SubExpr->getSCEVType() == scAddExpr) |
| 2491 | return getExprBase(SubExpr); |
| 2492 | |
| 2493 | if (SubExpr->getSCEVType() != scMulExpr) |
| 2494 | return SubExpr; |
| 2495 | } |
| 2496 | return S; // all operands are scaled, be conservative. |
| 2497 | } |
| 2498 | case scAddRecExpr: |
| 2499 | return getExprBase(cast<SCEVAddRecExpr>(S)->getStart()); |
| 2500 | } |
| 2501 | } |
| 2502 | |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2503 | /// Return true if the chain increment is profitable to expand into a loop |
| 2504 | /// invariant value, which may require its own register. A profitable chain |
| 2505 | /// increment will be an offset relative to the same base. We allow such offsets |
| 2506 | /// to potentially be used as chain increment as long as it's not obviously |
| 2507 | /// expensive to expand using real instructions. |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 2508 | bool IVChain::isProfitableIncrement(const SCEV *OperExpr, |
| 2509 | const SCEV *IncExpr, |
| 2510 | ScalarEvolution &SE) { |
| 2511 | // Aggressively form chains when -stress-ivchain. |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2512 | if (StressIVChain) |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 2513 | return true; |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2514 | |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2515 | // Do not replace a constant offset from IV head with a nonconstant IV |
| 2516 | // increment. |
| 2517 | if (!isa<SCEVConstant>(IncExpr)) { |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 2518 | const SCEV *HeadExpr = SE.getSCEV(getWideOperand(Incs[0].IVOperand)); |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2519 | if (isa<SCEVConstant>(SE.getMinusSCEV(OperExpr, HeadExpr))) |
| 2520 | return 0; |
| 2521 | } |
| 2522 | |
| 2523 | SmallPtrSet<const SCEV*, 8> Processed; |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 2524 | return !isHighCostExpansion(IncExpr, Processed, SE); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2525 | } |
| 2526 | |
| 2527 | /// Return true if the number of registers needed for the chain is estimated to |
| 2528 | /// be less than the number required for the individual IV users. First prohibit |
| 2529 | /// any IV users that keep the IV live across increments (the Users set should |
| 2530 | /// be empty). Next count the number and type of increments in the chain. |
| 2531 | /// |
| 2532 | /// Chaining IVs can lead to considerable code bloat if ISEL doesn't |
| 2533 | /// effectively use postinc addressing modes. Only consider it profitable it the |
| 2534 | /// increments can be computed in fewer registers when chained. |
| 2535 | /// |
| 2536 | /// TODO: Consider IVInc free if it's already used in another chains. |
| 2537 | static bool |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 2538 | isProfitableChain(IVChain &Chain, SmallPtrSetImpl<Instruction*> &Users, |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 2539 | ScalarEvolution &SE, const TargetTransformInfo &TTI) { |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2540 | if (StressIVChain) |
| 2541 | return true; |
| 2542 | |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 2543 | if (!Chain.hasIncs()) |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2544 | return false; |
| 2545 | |
| 2546 | if (!Users.empty()) { |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 2547 | DEBUG(dbgs() << "Chain: " << *Chain.Incs[0].UserInst << " users:\n"; |
Craig Topper | 4627679 | 2014-08-24 23:23:06 +0000 | [diff] [blame] | 2548 | for (Instruction *Inst : Users) { |
| 2549 | dbgs() << " " << *Inst << "\n"; |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2550 | }); |
| 2551 | return false; |
| 2552 | } |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 2553 | assert(!Chain.Incs.empty() && "empty IV chains are not allowed"); |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2554 | |
| 2555 | // The chain itself may require a register, so intialize cost to 1. |
| 2556 | int cost = 1; |
| 2557 | |
| 2558 | // A complete chain likely eliminates the need for keeping the original IV in |
| 2559 | // a register. LSR does not currently know how to form a complete chain unless |
| 2560 | // the header phi already exists. |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 2561 | if (isa<PHINode>(Chain.tailUserInst()) |
| 2562 | && SE.getSCEV(Chain.tailUserInst()) == Chain.Incs[0].IncExpr) { |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2563 | --cost; |
| 2564 | } |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2565 | const SCEV *LastIncExpr = nullptr; |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2566 | unsigned NumConstIncrements = 0; |
| 2567 | unsigned NumVarIncrements = 0; |
| 2568 | unsigned NumReusedIncrements = 0; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2569 | for (const IVInc &Inc : Chain) { |
| 2570 | if (Inc.IncExpr->isZero()) |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2571 | continue; |
| 2572 | |
| 2573 | // Incrementing by zero or some constant is neutral. We assume constants can |
| 2574 | // be folded into an addressing mode or an add's immediate operand. |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2575 | if (isa<SCEVConstant>(Inc.IncExpr)) { |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2576 | ++NumConstIncrements; |
| 2577 | continue; |
| 2578 | } |
| 2579 | |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2580 | if (Inc.IncExpr == LastIncExpr) |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2581 | ++NumReusedIncrements; |
| 2582 | else |
| 2583 | ++NumVarIncrements; |
| 2584 | |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2585 | LastIncExpr = Inc.IncExpr; |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2586 | } |
| 2587 | // An IV chain with a single increment is handled by LSR's postinc |
| 2588 | // uses. However, a chain with multiple increments requires keeping the IV's |
| 2589 | // value live longer than it needs to be if chained. |
| 2590 | if (NumConstIncrements > 1) |
| 2591 | --cost; |
| 2592 | |
| 2593 | // Materializing increment expressions in the preheader that didn't exist in |
| 2594 | // the original code may cost a register. For example, sign-extended array |
| 2595 | // indices can produce ridiculous increments like this: |
| 2596 | // IV + ((sext i32 (2 * %s) to i64) + (-1 * (sext i32 %s to i64))) |
| 2597 | cost += NumVarIncrements; |
| 2598 | |
| 2599 | // Reusing variable increments likely saves a register to hold the multiple of |
| 2600 | // the stride. |
| 2601 | cost -= NumReusedIncrements; |
| 2602 | |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 2603 | DEBUG(dbgs() << "Chain: " << *Chain.Incs[0].UserInst << " Cost: " << cost |
| 2604 | << "\n"); |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2605 | |
| 2606 | return cost < 0; |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2607 | } |
| 2608 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 2609 | /// Add this IV user to an existing chain or make it the head of a new chain. |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2610 | void LSRInstance::ChainInstruction(Instruction *UserInst, Instruction *IVOper, |
| 2611 | SmallVectorImpl<ChainUsers> &ChainUsersVec) { |
| 2612 | // When IVs are used as types of varying widths, they are generally converted |
| 2613 | // to a wider type with some uses remaining narrow under a (free) trunc. |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 2614 | Value *const NextIV = getWideOperand(IVOper); |
| 2615 | const SCEV *const OperExpr = SE.getSCEV(NextIV); |
| 2616 | const SCEV *const OperExprBase = getExprBase(OperExpr); |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2617 | |
| 2618 | // Visit all existing chains. Check if its IVOper can be computed as a |
| 2619 | // profitable loop invariant increment from the last link in the Chain. |
| 2620 | unsigned ChainIdx = 0, NChains = IVChainVec.size(); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2621 | const SCEV *LastIncExpr = nullptr; |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2622 | for (; ChainIdx < NChains; ++ChainIdx) { |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 2623 | IVChain &Chain = IVChainVec[ChainIdx]; |
| 2624 | |
| 2625 | // Prune the solution space aggressively by checking that both IV operands |
| 2626 | // are expressions that operate on the same unscaled SCEVUnknown. This |
| 2627 | // "base" will be canceled by the subsequent getMinusSCEV call. Checking |
| 2628 | // first avoids creating extra SCEV expressions. |
| 2629 | if (!StressIVChain && Chain.ExprBase != OperExprBase) |
| 2630 | continue; |
| 2631 | |
| 2632 | Value *PrevIV = getWideOperand(Chain.Incs.back().IVOperand); |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2633 | if (!isCompatibleIVType(PrevIV, NextIV)) |
| 2634 | continue; |
| 2635 | |
Andrew Trick | 356a896 | 2012-03-26 20:28:35 +0000 | [diff] [blame] | 2636 | // A phi node terminates a chain. |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 2637 | if (isa<PHINode>(UserInst) && isa<PHINode>(Chain.tailUserInst())) |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2638 | continue; |
| 2639 | |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 2640 | // The increment must be loop-invariant so it can be kept in a register. |
| 2641 | const SCEV *PrevExpr = SE.getSCEV(PrevIV); |
| 2642 | const SCEV *IncExpr = SE.getMinusSCEV(OperExpr, PrevExpr); |
| 2643 | if (!SE.isLoopInvariant(IncExpr, L)) |
| 2644 | continue; |
| 2645 | |
| 2646 | if (Chain.isProfitableIncrement(OperExpr, IncExpr, SE)) { |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2647 | LastIncExpr = IncExpr; |
| 2648 | break; |
| 2649 | } |
| 2650 | } |
| 2651 | // If we haven't found a chain, create a new one, unless we hit the max. Don't |
| 2652 | // bother for phi nodes, because they must be last in the chain. |
| 2653 | if (ChainIdx == NChains) { |
| 2654 | if (isa<PHINode>(UserInst)) |
| 2655 | return; |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2656 | if (NChains >= MaxChains && !StressIVChain) { |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2657 | DEBUG(dbgs() << "IV Chain Limit\n"); |
| 2658 | return; |
| 2659 | } |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 2660 | LastIncExpr = OperExpr; |
Andrew Trick | b9c822a | 2012-01-20 21:23:40 +0000 | [diff] [blame] | 2661 | // IVUsers may have skipped over sign/zero extensions. We don't currently |
| 2662 | // attempt to form chains involving extensions unless they can be hoisted |
| 2663 | // into this loop's AddRec. |
| 2664 | if (!isa<SCEVAddRecExpr>(LastIncExpr)) |
| 2665 | return; |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2666 | ++NChains; |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 2667 | IVChainVec.push_back(IVChain(IVInc(UserInst, IVOper, LastIncExpr), |
| 2668 | OperExprBase)); |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2669 | ChainUsersVec.resize(NChains); |
Jakob Stoklund Olesen | 293673d | 2012-04-25 18:01:32 +0000 | [diff] [blame] | 2670 | DEBUG(dbgs() << "IV Chain#" << ChainIdx << " Head: (" << *UserInst |
| 2671 | << ") IV=" << *LastIncExpr << "\n"); |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 2672 | } else { |
Jakob Stoklund Olesen | 293673d | 2012-04-25 18:01:32 +0000 | [diff] [blame] | 2673 | DEBUG(dbgs() << "IV Chain#" << ChainIdx << " Inc: (" << *UserInst |
| 2674 | << ") IV+" << *LastIncExpr << "\n"); |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 2675 | // Add this IV user to the end of the chain. |
| 2676 | IVChainVec[ChainIdx].add(IVInc(UserInst, IVOper, LastIncExpr)); |
| 2677 | } |
Andrew Trick | bc70590 | 2013-02-09 01:11:01 +0000 | [diff] [blame] | 2678 | IVChain &Chain = IVChainVec[ChainIdx]; |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2679 | |
| 2680 | SmallPtrSet<Instruction*,4> &NearUsers = ChainUsersVec[ChainIdx].NearUsers; |
| 2681 | // This chain's NearUsers become FarUsers. |
| 2682 | if (!LastIncExpr->isZero()) { |
| 2683 | ChainUsersVec[ChainIdx].FarUsers.insert(NearUsers.begin(), |
| 2684 | NearUsers.end()); |
| 2685 | NearUsers.clear(); |
| 2686 | } |
| 2687 | |
| 2688 | // All other uses of IVOperand become near uses of the chain. |
| 2689 | // We currently ignore intermediate values within SCEV expressions, assuming |
| 2690 | // they will eventually be used be the current chain, or can be computed |
| 2691 | // from one of the chain increments. To be more precise we could |
| 2692 | // transitively follow its user and only add leaf IV users to the set. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 2693 | for (User *U : IVOper->users()) { |
| 2694 | Instruction *OtherUse = dyn_cast<Instruction>(U); |
Andrew Trick | bc70590 | 2013-02-09 01:11:01 +0000 | [diff] [blame] | 2695 | if (!OtherUse) |
Andrew Trick | e51feea | 2012-03-26 18:03:16 +0000 | [diff] [blame] | 2696 | continue; |
Andrew Trick | bc70590 | 2013-02-09 01:11:01 +0000 | [diff] [blame] | 2697 | // Uses in the chain will no longer be uses if the chain is formed. |
| 2698 | // Include the head of the chain in this iteration (not Chain.begin()). |
| 2699 | IVChain::const_iterator IncIter = Chain.Incs.begin(); |
| 2700 | IVChain::const_iterator IncEnd = Chain.Incs.end(); |
| 2701 | for( ; IncIter != IncEnd; ++IncIter) { |
| 2702 | if (IncIter->UserInst == OtherUse) |
| 2703 | break; |
| 2704 | } |
| 2705 | if (IncIter != IncEnd) |
| 2706 | continue; |
| 2707 | |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2708 | if (SE.isSCEVable(OtherUse->getType()) |
| 2709 | && !isa<SCEVUnknown>(SE.getSCEV(OtherUse)) |
| 2710 | && IU.isIVUserOrOperand(OtherUse)) { |
| 2711 | continue; |
| 2712 | } |
Andrew Trick | e51feea | 2012-03-26 18:03:16 +0000 | [diff] [blame] | 2713 | NearUsers.insert(OtherUse); |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2714 | } |
| 2715 | |
| 2716 | // Since this user is part of the chain, it's no longer considered a use |
| 2717 | // of the chain. |
| 2718 | ChainUsersVec[ChainIdx].FarUsers.erase(UserInst); |
| 2719 | } |
| 2720 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 2721 | /// Populate the vector of Chains. |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2722 | /// |
| 2723 | /// This decreases ILP at the architecture level. Targets with ample registers, |
| 2724 | /// multiple memory ports, and no register renaming probably don't want |
| 2725 | /// this. However, such targets should probably disable LSR altogether. |
| 2726 | /// |
| 2727 | /// The job of LSR is to make a reasonable choice of induction variables across |
| 2728 | /// the loop. Subsequent passes can easily "unchain" computation exposing more |
| 2729 | /// ILP *within the loop* if the target wants it. |
| 2730 | /// |
| 2731 | /// Finding the best IV chain is potentially a scheduling problem. Since LSR |
| 2732 | /// will not reorder memory operations, it will recognize this as a chain, but |
| 2733 | /// will generate redundant IV increments. Ideally this would be corrected later |
| 2734 | /// by a smart scheduler: |
| 2735 | /// = A[i] |
| 2736 | /// = A[i+x] |
| 2737 | /// A[i] = |
| 2738 | /// A[i+x] = |
| 2739 | /// |
| 2740 | /// TODO: Walk the entire domtree within this loop, not just the path to the |
| 2741 | /// loop latch. This will discover chains on side paths, but requires |
| 2742 | /// maintaining multiple copies of the Chains state. |
| 2743 | void LSRInstance::CollectChains() { |
Jakob Stoklund Olesen | 293673d | 2012-04-25 18:01:32 +0000 | [diff] [blame] | 2744 | DEBUG(dbgs() << "Collecting IV Chains.\n"); |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2745 | SmallVector<ChainUsers, 8> ChainUsersVec; |
| 2746 | |
| 2747 | SmallVector<BasicBlock *,8> LatchPath; |
| 2748 | BasicBlock *LoopHeader = L->getHeader(); |
| 2749 | for (DomTreeNode *Rung = DT.getNode(L->getLoopLatch()); |
| 2750 | Rung->getBlock() != LoopHeader; Rung = Rung->getIDom()) { |
| 2751 | LatchPath.push_back(Rung->getBlock()); |
| 2752 | } |
| 2753 | LatchPath.push_back(LoopHeader); |
| 2754 | |
| 2755 | // Walk the instruction stream from the loop header to the loop latch. |
David Majnemer | d770877 | 2016-06-24 04:05:21 +0000 | [diff] [blame] | 2756 | for (BasicBlock *BB : reverse(LatchPath)) { |
| 2757 | for (Instruction &I : *BB) { |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2758 | // Skip instructions that weren't seen by IVUsers analysis. |
David Majnemer | d770877 | 2016-06-24 04:05:21 +0000 | [diff] [blame] | 2759 | if (isa<PHINode>(I) || !IU.isIVUserOrOperand(&I)) |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2760 | continue; |
| 2761 | |
| 2762 | // Ignore users that are part of a SCEV expression. This way we only |
| 2763 | // consider leaf IV Users. This effectively rediscovers a portion of |
| 2764 | // IVUsers analysis but in program order this time. |
David Majnemer | d770877 | 2016-06-24 04:05:21 +0000 | [diff] [blame] | 2765 | if (SE.isSCEVable(I.getType()) && !isa<SCEVUnknown>(SE.getSCEV(&I))) |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2766 | continue; |
| 2767 | |
| 2768 | // Remove this instruction from any NearUsers set it may be in. |
| 2769 | for (unsigned ChainIdx = 0, NChains = IVChainVec.size(); |
| 2770 | ChainIdx < NChains; ++ChainIdx) { |
David Majnemer | d770877 | 2016-06-24 04:05:21 +0000 | [diff] [blame] | 2771 | ChainUsersVec[ChainIdx].NearUsers.erase(&I); |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2772 | } |
| 2773 | // Search for operands that can be chained. |
| 2774 | SmallPtrSet<Instruction*, 4> UniqueOperands; |
David Majnemer | d770877 | 2016-06-24 04:05:21 +0000 | [diff] [blame] | 2775 | User::op_iterator IVOpEnd = I.op_end(); |
| 2776 | User::op_iterator IVOpIter = findIVOperand(I.op_begin(), IVOpEnd, L, SE); |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2777 | while (IVOpIter != IVOpEnd) { |
| 2778 | Instruction *IVOpInst = cast<Instruction>(*IVOpIter); |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 2779 | if (UniqueOperands.insert(IVOpInst).second) |
David Majnemer | d770877 | 2016-06-24 04:05:21 +0000 | [diff] [blame] | 2780 | ChainInstruction(&I, IVOpInst, ChainUsersVec); |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 2781 | IVOpIter = findIVOperand(std::next(IVOpIter), IVOpEnd, L, SE); |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2782 | } |
| 2783 | } // Continue walking down the instructions. |
| 2784 | } // Continue walking down the domtree. |
| 2785 | // Visit phi backedges to determine if the chain can generate the IV postinc. |
| 2786 | for (BasicBlock::iterator I = L->getHeader()->begin(); |
| 2787 | PHINode *PN = dyn_cast<PHINode>(I); ++I) { |
| 2788 | if (!SE.isSCEVable(PN->getType())) |
| 2789 | continue; |
| 2790 | |
| 2791 | Instruction *IncV = |
| 2792 | dyn_cast<Instruction>(PN->getIncomingValueForBlock(L->getLoopLatch())); |
| 2793 | if (IncV) |
| 2794 | ChainInstruction(PN, IncV, ChainUsersVec); |
| 2795 | } |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2796 | // Remove any unprofitable chains. |
| 2797 | unsigned ChainIdx = 0; |
| 2798 | for (unsigned UsersIdx = 0, NChains = IVChainVec.size(); |
| 2799 | UsersIdx < NChains; ++UsersIdx) { |
| 2800 | if (!isProfitableChain(IVChainVec[UsersIdx], |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 2801 | ChainUsersVec[UsersIdx].FarUsers, SE, TTI)) |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2802 | continue; |
| 2803 | // Preserve the chain at UsesIdx. |
| 2804 | if (ChainIdx != UsersIdx) |
| 2805 | IVChainVec[ChainIdx] = IVChainVec[UsersIdx]; |
| 2806 | FinalizeChain(IVChainVec[ChainIdx]); |
| 2807 | ++ChainIdx; |
| 2808 | } |
| 2809 | IVChainVec.resize(ChainIdx); |
| 2810 | } |
| 2811 | |
| 2812 | void LSRInstance::FinalizeChain(IVChain &Chain) { |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 2813 | assert(!Chain.Incs.empty() && "empty IV chains are not allowed"); |
| 2814 | DEBUG(dbgs() << "Final Chain: " << *Chain.Incs[0].UserInst << "\n"); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2815 | |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2816 | for (const IVInc &Inc : Chain) { |
| 2817 | DEBUG(dbgs() << " Inc: " << Inc.UserInst << "\n"); |
David Majnemer | 4253126 | 2016-08-12 03:55:06 +0000 | [diff] [blame] | 2818 | auto UseI = find(Inc.UserInst->operands(), Inc.IVOperand); |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2819 | assert(UseI != Inc.UserInst->op_end() && "cannot find IV operand"); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2820 | IVIncSet.insert(UseI); |
| 2821 | } |
| 2822 | } |
| 2823 | |
| 2824 | /// Return true if the IVInc can be folded into an addressing mode. |
| 2825 | static bool canFoldIVIncExpr(const SCEV *IncExpr, Instruction *UserInst, |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 2826 | Value *Operand, const TargetTransformInfo &TTI) { |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2827 | const SCEVConstant *IncConst = dyn_cast<SCEVConstant>(IncExpr); |
| 2828 | if (!IncConst || !isAddressUse(UserInst, Operand)) |
| 2829 | return false; |
| 2830 | |
Sanjoy Das | 0de2fec | 2015-12-17 20:28:46 +0000 | [diff] [blame] | 2831 | if (IncConst->getAPInt().getMinSignedBits() > 64) |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2832 | return false; |
| 2833 | |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 2834 | MemAccessTy AccessTy = getAccessType(UserInst); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2835 | int64_t IncOffset = IncConst->getValue()->getSExtValue(); |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 2836 | if (!isAlwaysFoldable(TTI, LSRUse::Address, AccessTy, /*BaseGV=*/nullptr, |
| 2837 | IncOffset, /*HaseBaseReg=*/false)) |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2838 | return false; |
| 2839 | |
| 2840 | return true; |
| 2841 | } |
| 2842 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 2843 | /// Generate an add or subtract for each IVInc in a chain to materialize the IV |
| 2844 | /// user's operand from the previous IV user's operand. |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2845 | void LSRInstance::GenerateIVChain(const IVChain &Chain, SCEVExpander &Rewriter, |
| 2846 | SmallVectorImpl<WeakVH> &DeadInsts) { |
| 2847 | // Find the new IVOperand for the head of the chain. It may have been replaced |
| 2848 | // by LSR. |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 2849 | const IVInc &Head = Chain.Incs[0]; |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2850 | User::op_iterator IVOpEnd = Head.UserInst->op_end(); |
Andrew Trick | f3a2544 | 2013-03-19 05:10:27 +0000 | [diff] [blame] | 2851 | // findIVOperand returns IVOpEnd if it can no longer find a valid IV user. |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2852 | User::op_iterator IVOpIter = findIVOperand(Head.UserInst->op_begin(), |
| 2853 | IVOpEnd, L, SE); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2854 | Value *IVSrc = nullptr; |
Andrew Trick | f3a2544 | 2013-03-19 05:10:27 +0000 | [diff] [blame] | 2855 | while (IVOpIter != IVOpEnd) { |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2856 | IVSrc = getWideOperand(*IVOpIter); |
| 2857 | |
| 2858 | // If this operand computes the expression that the chain needs, we may use |
| 2859 | // it. (Check this after setting IVSrc which is used below.) |
| 2860 | // |
| 2861 | // Note that if Head.IncExpr is wider than IVSrc, then this phi is too |
| 2862 | // narrow for the chain, so we can no longer use it. We do allow using a |
| 2863 | // wider phi, assuming the LSR checked for free truncation. In that case we |
| 2864 | // should already have a truncate on this operand such that |
| 2865 | // getSCEV(IVSrc) == IncExpr. |
| 2866 | if (SE.getSCEV(*IVOpIter) == Head.IncExpr |
| 2867 | || SE.getSCEV(IVSrc) == Head.IncExpr) { |
| 2868 | break; |
| 2869 | } |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 2870 | IVOpIter = findIVOperand(std::next(IVOpIter), IVOpEnd, L, SE); |
Andrew Trick | f3a2544 | 2013-03-19 05:10:27 +0000 | [diff] [blame] | 2871 | } |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2872 | if (IVOpIter == IVOpEnd) { |
| 2873 | // Gracefully give up on this chain. |
| 2874 | DEBUG(dbgs() << "Concealed chain head: " << *Head.UserInst << "\n"); |
| 2875 | return; |
| 2876 | } |
| 2877 | |
| 2878 | DEBUG(dbgs() << "Generate chain at: " << *IVSrc << "\n"); |
| 2879 | Type *IVTy = IVSrc->getType(); |
| 2880 | Type *IntTy = SE.getEffectiveSCEVType(IVTy); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2881 | const SCEV *LeftOverExpr = nullptr; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2882 | for (const IVInc &Inc : Chain) { |
| 2883 | Instruction *InsertPt = Inc.UserInst; |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2884 | if (isa<PHINode>(InsertPt)) |
| 2885 | InsertPt = L->getLoopLatch()->getTerminator(); |
| 2886 | |
| 2887 | // IVOper will replace the current IV User's operand. IVSrc is the IV |
| 2888 | // value currently held in a register. |
| 2889 | Value *IVOper = IVSrc; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2890 | if (!Inc.IncExpr->isZero()) { |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2891 | // IncExpr was the result of subtraction of two narrow values, so must |
| 2892 | // be signed. |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2893 | const SCEV *IncExpr = SE.getNoopOrSignExtend(Inc.IncExpr, IntTy); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2894 | LeftOverExpr = LeftOverExpr ? |
| 2895 | SE.getAddExpr(LeftOverExpr, IncExpr) : IncExpr; |
| 2896 | } |
| 2897 | if (LeftOverExpr && !LeftOverExpr->isZero()) { |
| 2898 | // Expand the IV increment. |
| 2899 | Rewriter.clearPostInc(); |
| 2900 | Value *IncV = Rewriter.expandCodeFor(LeftOverExpr, IntTy, InsertPt); |
| 2901 | const SCEV *IVOperExpr = SE.getAddExpr(SE.getUnknown(IVSrc), |
| 2902 | SE.getUnknown(IncV)); |
| 2903 | IVOper = Rewriter.expandCodeFor(IVOperExpr, IVTy, InsertPt); |
| 2904 | |
| 2905 | // If an IV increment can't be folded, use it as the next IV value. |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2906 | if (!canFoldIVIncExpr(LeftOverExpr, Inc.UserInst, Inc.IVOperand, TTI)) { |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2907 | assert(IVTy == IVOper->getType() && "inconsistent IV increment type"); |
| 2908 | IVSrc = IVOper; |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2909 | LeftOverExpr = nullptr; |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2910 | } |
| 2911 | } |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2912 | Type *OperTy = Inc.IVOperand->getType(); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2913 | if (IVTy != OperTy) { |
| 2914 | assert(SE.getTypeSizeInBits(IVTy) >= SE.getTypeSizeInBits(OperTy) && |
| 2915 | "cannot extend a chained IV"); |
| 2916 | IRBuilder<> Builder(InsertPt); |
| 2917 | IVOper = Builder.CreateTruncOrBitCast(IVOper, OperTy, "lsr.chain"); |
| 2918 | } |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2919 | Inc.UserInst->replaceUsesOfWith(Inc.IVOperand, IVOper); |
Benjamin Kramer | f5e2fc4 | 2015-05-29 19:43:39 +0000 | [diff] [blame] | 2920 | DeadInsts.emplace_back(Inc.IVOperand); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2921 | } |
| 2922 | // If LSR created a new, wider phi, we may also replace its postinc. We only |
| 2923 | // do this if we also found a wide value for the head of the chain. |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 2924 | if (isa<PHINode>(Chain.tailUserInst())) { |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2925 | for (BasicBlock::iterator I = L->getHeader()->begin(); |
| 2926 | PHINode *Phi = dyn_cast<PHINode>(I); ++I) { |
| 2927 | if (!isCompatibleIVType(Phi, IVSrc)) |
| 2928 | continue; |
| 2929 | Instruction *PostIncV = dyn_cast<Instruction>( |
| 2930 | Phi->getIncomingValueForBlock(L->getLoopLatch())); |
| 2931 | if (!PostIncV || (SE.getSCEV(PostIncV) != SE.getSCEV(IVSrc))) |
| 2932 | continue; |
| 2933 | Value *IVOper = IVSrc; |
| 2934 | Type *PostIncTy = PostIncV->getType(); |
| 2935 | if (IVTy != PostIncTy) { |
| 2936 | assert(PostIncTy->isPointerTy() && "mixing int/ptr IV types"); |
| 2937 | IRBuilder<> Builder(L->getLoopLatch()->getTerminator()); |
| 2938 | Builder.SetCurrentDebugLocation(PostIncV->getDebugLoc()); |
| 2939 | IVOper = Builder.CreatePointerCast(IVSrc, PostIncTy, "lsr.chain"); |
| 2940 | } |
| 2941 | Phi->replaceUsesOfWith(PostIncV, IVOper); |
Benjamin Kramer | f5e2fc4 | 2015-05-29 19:43:39 +0000 | [diff] [blame] | 2942 | DeadInsts.emplace_back(PostIncV); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2943 | } |
| 2944 | } |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2945 | } |
| 2946 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2947 | void LSRInstance::CollectFixupsAndInitialFormulae() { |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2948 | for (const IVStrideUse &U : IU) { |
| 2949 | Instruction *UserInst = U.getUser(); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2950 | // Skip IV users that are part of profitable IV Chains. |
David Majnemer | 4253126 | 2016-08-12 03:55:06 +0000 | [diff] [blame] | 2951 | User::op_iterator UseI = |
| 2952 | find(UserInst->operands(), U.getOperandValToReplace()); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2953 | assert(UseI != UserInst->op_end() && "cannot find IV operand"); |
| 2954 | if (IVIncSet.count(UseI)) |
| 2955 | continue; |
| 2956 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2957 | LSRUse::KindType Kind = LSRUse::Basic; |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 2958 | MemAccessTy AccessTy; |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 2959 | if (isAddressUse(UserInst, U.getOperandValToReplace())) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2960 | Kind = LSRUse::Address; |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 2961 | AccessTy = getAccessType(UserInst); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2962 | } |
| 2963 | |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2964 | const SCEV *S = IU.getExpr(U); |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 2965 | PostIncLoopSet TmpPostIncLoops = U.getPostIncLoops(); |
| 2966 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2967 | // Equality (== and !=) ICmps are special. We can rewrite (i == N) as |
| 2968 | // (N - i == 0), and this allows (N - i) to be the expression that we work |
| 2969 | // with rather than just N or i, so we can consider the register |
| 2970 | // requirements for both N and i at the same time. Limiting this code to |
| 2971 | // equality icmps is not a problem because all interesting loops use |
| 2972 | // equality icmps, thanks to IndVarSimplify. |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 2973 | if (ICmpInst *CI = dyn_cast<ICmpInst>(UserInst)) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2974 | if (CI->isEquality()) { |
| 2975 | // Swap the operands if needed to put the OperandValToReplace on the |
| 2976 | // left, for consistency. |
| 2977 | Value *NV = CI->getOperand(1); |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 2978 | if (NV == U.getOperandValToReplace()) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2979 | CI->setOperand(1, CI->getOperand(0)); |
| 2980 | CI->setOperand(0, NV); |
Dan Gohman | ee2fea3 | 2010-05-20 19:26:52 +0000 | [diff] [blame] | 2981 | NV = CI->getOperand(1); |
Dan Gohman | fdf9874 | 2010-05-20 19:16:03 +0000 | [diff] [blame] | 2982 | Changed = true; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2983 | } |
| 2984 | |
| 2985 | // x == y --> x - y == 0 |
| 2986 | const SCEV *N = SE.getSCEV(NV); |
Andrew Trick | 57243da | 2013-10-25 21:35:56 +0000 | [diff] [blame] | 2987 | if (SE.isLoopInvariant(N, L) && isSafeToExpand(N, SE)) { |
Dan Gohman | 3268e4d | 2011-05-18 21:02:18 +0000 | [diff] [blame] | 2988 | // S is normalized, so normalize N before folding it into S |
| 2989 | // to keep the result normalized. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2990 | N = TransformForPostIncUse(Normalize, N, CI, nullptr, |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 2991 | TmpPostIncLoops, SE, DT); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2992 | Kind = LSRUse::ICmpZero; |
| 2993 | S = SE.getMinusSCEV(N, S); |
| 2994 | } |
| 2995 | |
| 2996 | // -1 and the negations of all interesting strides (except the negation |
| 2997 | // of -1) are now also interesting. |
| 2998 | for (size_t i = 0, e = Factors.size(); i != e; ++i) |
| 2999 | if (Factors[i] != -1) |
| 3000 | Factors.insert(-(uint64_t)Factors[i]); |
| 3001 | Factors.insert(-1); |
| 3002 | } |
| 3003 | |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 3004 | // Get or create an LSRUse. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3005 | std::pair<size_t, int64_t> P = getUse(S, Kind, AccessTy); |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 3006 | size_t LUIdx = P.first; |
| 3007 | int64_t Offset = P.second; |
| 3008 | LSRUse &LU = Uses[LUIdx]; |
| 3009 | |
| 3010 | // Record the fixup. |
| 3011 | LSRFixup &LF = LU.getNewFixup(); |
| 3012 | LF.UserInst = UserInst; |
| 3013 | LF.OperandValToReplace = U.getOperandValToReplace(); |
| 3014 | LF.PostIncLoops = TmpPostIncLoops; |
| 3015 | LF.Offset = Offset; |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 3016 | LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L); |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 3017 | |
Dan Gohman | 1415208 | 2010-07-15 20:24:58 +0000 | [diff] [blame] | 3018 | if (!LU.WidestFixupType || |
| 3019 | SE.getTypeSizeInBits(LU.WidestFixupType) < |
| 3020 | SE.getTypeSizeInBits(LF.OperandValToReplace->getType())) |
| 3021 | LU.WidestFixupType = LF.OperandValToReplace->getType(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3022 | |
| 3023 | // If this is the first use of this LSRUse, give it a formula. |
| 3024 | if (LU.Formulae.empty()) { |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 3025 | InsertInitialFormula(S, LU, LUIdx); |
| 3026 | CountRegisters(LU.Formulae.back(), LUIdx); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3027 | } |
| 3028 | } |
| 3029 | |
| 3030 | DEBUG(print_fixups(dbgs())); |
| 3031 | } |
| 3032 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 3033 | /// Insert a formula for the given expression into the given use, separating out |
| 3034 | /// loop-variant portions from loop-invariant and loop-computable portions. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3035 | void |
Dan Gohman | 8c16b38 | 2010-02-22 04:11:59 +0000 | [diff] [blame] | 3036 | LSRInstance::InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx) { |
Andrew Trick | 57243da | 2013-10-25 21:35:56 +0000 | [diff] [blame] | 3037 | // Mark uses whose expressions cannot be expanded. |
| 3038 | if (!isSafeToExpand(S, SE)) |
| 3039 | LU.RigidFormula = true; |
| 3040 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3041 | Formula F; |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 3042 | F.initialMatch(S, L, SE); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3043 | bool Inserted = InsertFormula(LU, LUIdx, F); |
| 3044 | assert(Inserted && "Initial formula already exists!"); (void)Inserted; |
| 3045 | } |
| 3046 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 3047 | /// Insert a simple single-register formula for the given expression into the |
| 3048 | /// given use. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3049 | void |
| 3050 | LSRInstance::InsertSupplementalFormula(const SCEV *S, |
| 3051 | LSRUse &LU, size_t LUIdx) { |
| 3052 | Formula F; |
| 3053 | F.BaseRegs.push_back(S); |
Chandler Carruth | 7e31c8f | 2013-01-12 23:46:04 +0000 | [diff] [blame] | 3054 | F.HasBaseReg = true; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3055 | bool Inserted = InsertFormula(LU, LUIdx, F); |
| 3056 | assert(Inserted && "Supplemental formula already exists!"); (void)Inserted; |
| 3057 | } |
| 3058 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 3059 | /// Note which registers are used by the given formula, updating RegUses. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3060 | void LSRInstance::CountRegisters(const Formula &F, size_t LUIdx) { |
| 3061 | if (F.ScaledReg) |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 3062 | RegUses.countRegister(F.ScaledReg, LUIdx); |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3063 | for (const SCEV *BaseReg : F.BaseRegs) |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 3064 | RegUses.countRegister(BaseReg, LUIdx); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3065 | } |
| 3066 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 3067 | /// If the given formula has not yet been inserted, add it to the list, and |
| 3068 | /// return true. Return false otherwise. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3069 | bool LSRInstance::InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F) { |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3070 | // Do not insert formula that we will not be able to expand. |
| 3071 | assert(isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F) && |
| 3072 | "Formula is illegal"); |
Dan Gohman | 8c16b38 | 2010-02-22 04:11:59 +0000 | [diff] [blame] | 3073 | if (!LU.InsertFormula(F)) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3074 | return false; |
| 3075 | |
| 3076 | CountRegisters(F, LUIdx); |
| 3077 | return true; |
| 3078 | } |
| 3079 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 3080 | /// Check for other uses of loop-invariant values which we're tracking. These |
| 3081 | /// other uses will pin these values in registers, making them less profitable |
| 3082 | /// for elimination. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3083 | /// TODO: This currently misses non-constant addrec step registers. |
| 3084 | /// TODO: Should this give more weight to users inside the loop? |
| 3085 | void |
| 3086 | LSRInstance::CollectLoopInvariantFixupsAndFormulae() { |
| 3087 | SmallVector<const SCEV *, 8> Worklist(RegUses.begin(), RegUses.end()); |
Andrew Trick | dd925ad | 2014-10-25 19:59:30 +0000 | [diff] [blame] | 3088 | SmallPtrSet<const SCEV *, 32> Visited; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3089 | |
| 3090 | while (!Worklist.empty()) { |
| 3091 | const SCEV *S = Worklist.pop_back_val(); |
| 3092 | |
Andrew Trick | 9ccbed5 | 2014-10-25 19:42:07 +0000 | [diff] [blame] | 3093 | // Don't process the same SCEV twice |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 3094 | if (!Visited.insert(S).second) |
Andrew Trick | 9ccbed5 | 2014-10-25 19:42:07 +0000 | [diff] [blame] | 3095 | continue; |
| 3096 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3097 | if (const SCEVNAryExpr *N = dyn_cast<SCEVNAryExpr>(S)) |
Dan Gohman | dd41bba | 2010-06-21 19:47:52 +0000 | [diff] [blame] | 3098 | Worklist.append(N->op_begin(), N->op_end()); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3099 | else if (const SCEVCastExpr *C = dyn_cast<SCEVCastExpr>(S)) |
| 3100 | Worklist.push_back(C->getOperand()); |
| 3101 | else if (const SCEVUDivExpr *D = dyn_cast<SCEVUDivExpr>(S)) { |
| 3102 | Worklist.push_back(D->getLHS()); |
| 3103 | Worklist.push_back(D->getRHS()); |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 3104 | } else if (const SCEVUnknown *US = dyn_cast<SCEVUnknown>(S)) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 3105 | const Value *V = US->getValue(); |
Dan Gohman | 67b4403 | 2010-06-04 23:16:05 +0000 | [diff] [blame] | 3106 | if (const Instruction *Inst = dyn_cast<Instruction>(V)) { |
| 3107 | // Look for instructions defined outside the loop. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3108 | if (L->contains(Inst)) continue; |
Dan Gohman | 67b4403 | 2010-06-04 23:16:05 +0000 | [diff] [blame] | 3109 | } else if (isa<UndefValue>(V)) |
| 3110 | // Undef doesn't have a live range, so it doesn't matter. |
| 3111 | continue; |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 3112 | for (const Use &U : V->uses()) { |
| 3113 | const Instruction *UserInst = dyn_cast<Instruction>(U.getUser()); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3114 | // Ignore non-instructions. |
| 3115 | if (!UserInst) |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 3116 | continue; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3117 | // Ignore instructions in other functions (as can happen with |
| 3118 | // Constants). |
| 3119 | if (UserInst->getParent()->getParent() != L->getHeader()->getParent()) |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 3120 | continue; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3121 | // Ignore instructions not dominated by the loop. |
| 3122 | const BasicBlock *UseBB = !isa<PHINode>(UserInst) ? |
| 3123 | UserInst->getParent() : |
| 3124 | cast<PHINode>(UserInst)->getIncomingBlock( |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 3125 | PHINode::getIncomingValueNumForOperand(U.getOperandNo())); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3126 | if (!DT.dominates(L->getHeader(), UseBB)) |
| 3127 | continue; |
David Majnemer | b222184 | 2015-11-08 05:04:07 +0000 | [diff] [blame] | 3128 | // Don't bother if the instruction is in a BB which ends in an EHPad. |
| 3129 | if (UseBB->getTerminator()->isEHPad()) |
| 3130 | continue; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3131 | // Ignore uses which are part of other SCEV expressions, to avoid |
| 3132 | // analyzing them multiple times. |
Dan Gohman | 42ec4eb | 2010-04-09 19:12:34 +0000 | [diff] [blame] | 3133 | if (SE.isSCEVable(UserInst->getType())) { |
| 3134 | const SCEV *UserS = SE.getSCEV(const_cast<Instruction *>(UserInst)); |
| 3135 | // If the user is a no-op, look through to its uses. |
| 3136 | if (!isa<SCEVUnknown>(UserS)) |
| 3137 | continue; |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 3138 | if (UserS == US) { |
Dan Gohman | 42ec4eb | 2010-04-09 19:12:34 +0000 | [diff] [blame] | 3139 | Worklist.push_back( |
| 3140 | SE.getUnknown(const_cast<Instruction *>(UserInst))); |
| 3141 | continue; |
| 3142 | } |
| 3143 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3144 | // Ignore icmp instructions which are already being analyzed. |
| 3145 | if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UserInst)) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 3146 | unsigned OtherIdx = !U.getOperandNo(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3147 | Value *OtherOp = const_cast<Value *>(ICI->getOperand(OtherIdx)); |
Dan Gohman | afd6db9 | 2010-11-17 21:23:15 +0000 | [diff] [blame] | 3148 | if (SE.hasComputableLoopEvolution(SE.getSCEV(OtherOp), L)) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3149 | continue; |
| 3150 | } |
| 3151 | |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame] | 3152 | std::pair<size_t, int64_t> P = getUse( |
| 3153 | S, LSRUse::Basic, MemAccessTy()); |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 3154 | size_t LUIdx = P.first; |
| 3155 | int64_t Offset = P.second; |
| 3156 | LSRUse &LU = Uses[LUIdx]; |
| 3157 | LSRFixup &LF = LU.getNewFixup(); |
| 3158 | LF.UserInst = const_cast<Instruction *>(UserInst); |
| 3159 | LF.OperandValToReplace = U; |
| 3160 | LF.Offset = Offset; |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 3161 | LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L); |
Dan Gohman | 1415208 | 2010-07-15 20:24:58 +0000 | [diff] [blame] | 3162 | if (!LU.WidestFixupType || |
| 3163 | SE.getTypeSizeInBits(LU.WidestFixupType) < |
| 3164 | SE.getTypeSizeInBits(LF.OperandValToReplace->getType())) |
| 3165 | LU.WidestFixupType = LF.OperandValToReplace->getType(); |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 3166 | InsertSupplementalFormula(US, LU, LUIdx); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3167 | CountRegisters(LU.Formulae.back(), Uses.size() - 1); |
| 3168 | break; |
| 3169 | } |
| 3170 | } |
| 3171 | } |
| 3172 | } |
| 3173 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 3174 | /// Split S into subexpressions which can be pulled out into separate |
| 3175 | /// registers. If C is non-null, multiply each subexpression by C. |
Andrew Trick | c803706 | 2012-07-17 05:30:37 +0000 | [diff] [blame] | 3176 | /// |
| 3177 | /// Return remainder expression after factoring the subexpressions captured by |
| 3178 | /// Ops. If Ops is complete, return NULL. |
| 3179 | static const SCEV *CollectSubexprs(const SCEV *S, const SCEVConstant *C, |
| 3180 | SmallVectorImpl<const SCEV *> &Ops, |
| 3181 | const Loop *L, |
| 3182 | ScalarEvolution &SE, |
| 3183 | unsigned Depth = 0) { |
| 3184 | // Arbitrarily cap recursion to protect compile time. |
| 3185 | if (Depth >= 3) |
| 3186 | return S; |
| 3187 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3188 | if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) { |
| 3189 | // Break out add operands. |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3190 | for (const SCEV *S : Add->operands()) { |
| 3191 | const SCEV *Remainder = CollectSubexprs(S, C, Ops, L, SE, Depth+1); |
Andrew Trick | c803706 | 2012-07-17 05:30:37 +0000 | [diff] [blame] | 3192 | if (Remainder) |
| 3193 | Ops.push_back(C ? SE.getMulExpr(C, Remainder) : Remainder); |
| 3194 | } |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 3195 | return nullptr; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3196 | } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { |
| 3197 | // Split a non-zero base out of an addrec. |
Alexandros Lamprineas | 0ee3ec2 | 2016-11-09 08:53:07 +0000 | [diff] [blame] | 3198 | if (AR->getStart()->isZero() || !AR->isAffine()) |
Andrew Trick | c803706 | 2012-07-17 05:30:37 +0000 | [diff] [blame] | 3199 | return S; |
| 3200 | |
| 3201 | const SCEV *Remainder = CollectSubexprs(AR->getStart(), |
| 3202 | C, Ops, L, SE, Depth+1); |
| 3203 | // Split the non-zero AddRec unless it is part of a nested recurrence that |
| 3204 | // does not pertain to this loop. |
| 3205 | if (Remainder && (AR->getLoop() == L || !isa<SCEVAddRecExpr>(Remainder))) { |
| 3206 | Ops.push_back(C ? SE.getMulExpr(C, Remainder) : Remainder); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 3207 | Remainder = nullptr; |
Andrew Trick | c803706 | 2012-07-17 05:30:37 +0000 | [diff] [blame] | 3208 | } |
| 3209 | if (Remainder != AR->getStart()) { |
| 3210 | if (!Remainder) |
| 3211 | Remainder = SE.getConstant(AR->getType(), 0); |
| 3212 | return SE.getAddRecExpr(Remainder, |
| 3213 | AR->getStepRecurrence(SE), |
| 3214 | AR->getLoop(), |
| 3215 | //FIXME: AR->getNoWrapFlags(SCEV::FlagNW) |
| 3216 | SCEV::FlagAnyWrap); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3217 | } |
| 3218 | } else if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) { |
| 3219 | // Break (C * (a + b + c)) into C*a + C*b + C*c. |
Andrew Trick | c803706 | 2012-07-17 05:30:37 +0000 | [diff] [blame] | 3220 | if (Mul->getNumOperands() != 2) |
| 3221 | return S; |
| 3222 | if (const SCEVConstant *Op0 = |
| 3223 | dyn_cast<SCEVConstant>(Mul->getOperand(0))) { |
| 3224 | C = C ? cast<SCEVConstant>(SE.getMulExpr(C, Op0)) : Op0; |
| 3225 | const SCEV *Remainder = |
| 3226 | CollectSubexprs(Mul->getOperand(1), C, Ops, L, SE, Depth+1); |
| 3227 | if (Remainder) |
| 3228 | Ops.push_back(SE.getMulExpr(C, Remainder)); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 3229 | return nullptr; |
Andrew Trick | c803706 | 2012-07-17 05:30:37 +0000 | [diff] [blame] | 3230 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3231 | } |
Andrew Trick | c803706 | 2012-07-17 05:30:37 +0000 | [diff] [blame] | 3232 | return S; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3233 | } |
| 3234 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3235 | /// \brief Helper function for LSRInstance::GenerateReassociations. |
| 3236 | void LSRInstance::GenerateReassociationsImpl(LSRUse &LU, unsigned LUIdx, |
| 3237 | const Formula &Base, |
| 3238 | unsigned Depth, size_t Idx, |
| 3239 | bool IsScaledReg) { |
| 3240 | const SCEV *BaseReg = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx]; |
| 3241 | SmallVector<const SCEV *, 8> AddOps; |
| 3242 | const SCEV *Remainder = CollectSubexprs(BaseReg, nullptr, AddOps, L, SE); |
| 3243 | if (Remainder) |
| 3244 | AddOps.push_back(Remainder); |
| 3245 | |
| 3246 | if (AddOps.size() == 1) |
| 3247 | return; |
| 3248 | |
| 3249 | for (SmallVectorImpl<const SCEV *>::const_iterator J = AddOps.begin(), |
| 3250 | JE = AddOps.end(); |
| 3251 | J != JE; ++J) { |
| 3252 | |
| 3253 | // Loop-variant "unknown" values are uninteresting; we won't be able to |
| 3254 | // do anything meaningful with them. |
| 3255 | if (isa<SCEVUnknown>(*J) && !SE.isLoopInvariant(*J, L)) |
| 3256 | continue; |
| 3257 | |
| 3258 | // Don't pull a constant into a register if the constant could be folded |
| 3259 | // into an immediate field. |
| 3260 | if (isAlwaysFoldable(TTI, SE, LU.MinOffset, LU.MaxOffset, LU.Kind, |
| 3261 | LU.AccessTy, *J, Base.getNumRegs() > 1)) |
| 3262 | continue; |
| 3263 | |
| 3264 | // Collect all operands except *J. |
| 3265 | SmallVector<const SCEV *, 8> InnerAddOps( |
| 3266 | ((const SmallVector<const SCEV *, 8> &)AddOps).begin(), J); |
| 3267 | InnerAddOps.append(std::next(J), |
| 3268 | ((const SmallVector<const SCEV *, 8> &)AddOps).end()); |
| 3269 | |
| 3270 | // Don't leave just a constant behind in a register if the constant could |
| 3271 | // be folded into an immediate field. |
| 3272 | if (InnerAddOps.size() == 1 && |
| 3273 | isAlwaysFoldable(TTI, SE, LU.MinOffset, LU.MaxOffset, LU.Kind, |
| 3274 | LU.AccessTy, InnerAddOps[0], Base.getNumRegs() > 1)) |
| 3275 | continue; |
| 3276 | |
| 3277 | const SCEV *InnerSum = SE.getAddExpr(InnerAddOps); |
| 3278 | if (InnerSum->isZero()) |
| 3279 | continue; |
| 3280 | Formula F = Base; |
| 3281 | |
| 3282 | // Add the remaining pieces of the add back into the new formula. |
| 3283 | const SCEVConstant *InnerSumSC = dyn_cast<SCEVConstant>(InnerSum); |
| 3284 | if (InnerSumSC && SE.getTypeSizeInBits(InnerSumSC->getType()) <= 64 && |
| 3285 | TTI.isLegalAddImmediate((uint64_t)F.UnfoldedOffset + |
| 3286 | InnerSumSC->getValue()->getZExtValue())) { |
| 3287 | F.UnfoldedOffset = |
| 3288 | (uint64_t)F.UnfoldedOffset + InnerSumSC->getValue()->getZExtValue(); |
| 3289 | if (IsScaledReg) |
| 3290 | F.ScaledReg = nullptr; |
| 3291 | else |
| 3292 | F.BaseRegs.erase(F.BaseRegs.begin() + Idx); |
| 3293 | } else if (IsScaledReg) |
| 3294 | F.ScaledReg = InnerSum; |
| 3295 | else |
| 3296 | F.BaseRegs[Idx] = InnerSum; |
| 3297 | |
| 3298 | // Add J as its own register, or an unfolded immediate. |
| 3299 | const SCEVConstant *SC = dyn_cast<SCEVConstant>(*J); |
| 3300 | if (SC && SE.getTypeSizeInBits(SC->getType()) <= 64 && |
| 3301 | TTI.isLegalAddImmediate((uint64_t)F.UnfoldedOffset + |
| 3302 | SC->getValue()->getZExtValue())) |
| 3303 | F.UnfoldedOffset = |
| 3304 | (uint64_t)F.UnfoldedOffset + SC->getValue()->getZExtValue(); |
| 3305 | else |
| 3306 | F.BaseRegs.push_back(*J); |
| 3307 | // We may have changed the number of register in base regs, adjust the |
| 3308 | // formula accordingly. |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 3309 | F.canonicalize(); |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3310 | |
| 3311 | if (InsertFormula(LU, LUIdx, F)) |
| 3312 | // If that formula hadn't been seen before, recurse to find more like |
| 3313 | // it. |
| 3314 | GenerateReassociations(LU, LUIdx, LU.Formulae.back(), Depth + 1); |
| 3315 | } |
| 3316 | } |
| 3317 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 3318 | /// Split out subexpressions from adds and the bases of addrecs. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3319 | void LSRInstance::GenerateReassociations(LSRUse &LU, unsigned LUIdx, |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3320 | Formula Base, unsigned Depth) { |
| 3321 | assert(Base.isCanonical() && "Input must be in the canonical form"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3322 | // Arbitrarily cap recursion to protect compile time. |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3323 | if (Depth >= 3) |
| 3324 | return; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3325 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3326 | for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) |
| 3327 | GenerateReassociationsImpl(LU, LUIdx, Base, Depth, i); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3328 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3329 | if (Base.Scale == 1) |
| 3330 | GenerateReassociationsImpl(LU, LUIdx, Base, Depth, |
| 3331 | /* Idx */ -1, /* IsScaledReg */ true); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3332 | } |
| 3333 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 3334 | /// Generate a formula consisting of all of the loop-dominating registers added |
| 3335 | /// into a single register. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3336 | void LSRInstance::GenerateCombinations(LSRUse &LU, unsigned LUIdx, |
Dan Gohman | e4e51a6 | 2010-02-14 18:51:39 +0000 | [diff] [blame] | 3337 | Formula Base) { |
Dan Gohman | 8b0a419 | 2010-03-01 17:49:51 +0000 | [diff] [blame] | 3338 | // This method is only interesting on a plurality of registers. |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3339 | if (Base.BaseRegs.size() + (Base.Scale == 1) <= 1) |
| 3340 | return; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3341 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3342 | // Flatten the representation, i.e., reg1 + 1*reg2 => reg1 + reg2, before |
| 3343 | // processing the formula. |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 3344 | Base.unscale(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3345 | Formula F = Base; |
| 3346 | F.BaseRegs.clear(); |
| 3347 | SmallVector<const SCEV *, 4> Ops; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3348 | for (const SCEV *BaseReg : Base.BaseRegs) { |
Dan Gohman | 20d9ce2 | 2010-11-17 21:41:58 +0000 | [diff] [blame] | 3349 | if (SE.properlyDominates(BaseReg, L->getHeader()) && |
Dan Gohman | afd6db9 | 2010-11-17 21:23:15 +0000 | [diff] [blame] | 3350 | !SE.hasComputableLoopEvolution(BaseReg, L)) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3351 | Ops.push_back(BaseReg); |
| 3352 | else |
| 3353 | F.BaseRegs.push_back(BaseReg); |
| 3354 | } |
| 3355 | if (Ops.size() > 1) { |
Dan Gohman | bb7d522 | 2010-02-14 18:50:49 +0000 | [diff] [blame] | 3356 | const SCEV *Sum = SE.getAddExpr(Ops); |
| 3357 | // TODO: If Sum is zero, it probably means ScalarEvolution missed an |
| 3358 | // opportunity to fold something. For now, just ignore such cases |
Dan Gohman | 8b0a419 | 2010-03-01 17:49:51 +0000 | [diff] [blame] | 3359 | // rather than proceed with zero in a register. |
Dan Gohman | bb7d522 | 2010-02-14 18:50:49 +0000 | [diff] [blame] | 3360 | if (!Sum->isZero()) { |
| 3361 | F.BaseRegs.push_back(Sum); |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 3362 | F.canonicalize(); |
Dan Gohman | bb7d522 | 2010-02-14 18:50:49 +0000 | [diff] [blame] | 3363 | (void)InsertFormula(LU, LUIdx, F); |
| 3364 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3365 | } |
| 3366 | } |
| 3367 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3368 | /// \brief Helper function for LSRInstance::GenerateSymbolicOffsets. |
| 3369 | void LSRInstance::GenerateSymbolicOffsetsImpl(LSRUse &LU, unsigned LUIdx, |
| 3370 | const Formula &Base, size_t Idx, |
| 3371 | bool IsScaledReg) { |
| 3372 | const SCEV *G = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx]; |
| 3373 | GlobalValue *GV = ExtractSymbol(G, SE); |
| 3374 | if (G->isZero() || !GV) |
| 3375 | return; |
| 3376 | Formula F = Base; |
| 3377 | F.BaseGV = GV; |
| 3378 | if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F)) |
| 3379 | return; |
| 3380 | if (IsScaledReg) |
| 3381 | F.ScaledReg = G; |
| 3382 | else |
| 3383 | F.BaseRegs[Idx] = G; |
| 3384 | (void)InsertFormula(LU, LUIdx, F); |
| 3385 | } |
| 3386 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 3387 | /// Generate reuse formulae using symbolic offsets. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3388 | void LSRInstance::GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx, |
| 3389 | Formula Base) { |
| 3390 | // We can't add a symbolic offset if the address already contains one. |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3391 | if (Base.BaseGV) return; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3392 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3393 | for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) |
| 3394 | GenerateSymbolicOffsetsImpl(LU, LUIdx, Base, i); |
| 3395 | if (Base.Scale == 1) |
| 3396 | GenerateSymbolicOffsetsImpl(LU, LUIdx, Base, /* Idx */ -1, |
| 3397 | /* IsScaledReg */ true); |
| 3398 | } |
| 3399 | |
| 3400 | /// \brief Helper function for LSRInstance::GenerateConstantOffsets. |
| 3401 | void LSRInstance::GenerateConstantOffsetsImpl( |
| 3402 | LSRUse &LU, unsigned LUIdx, const Formula &Base, |
| 3403 | const SmallVectorImpl<int64_t> &Worklist, size_t Idx, bool IsScaledReg) { |
| 3404 | const SCEV *G = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx]; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3405 | for (int64_t Offset : Worklist) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3406 | Formula F = Base; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3407 | F.BaseOffset = (uint64_t)Base.BaseOffset - Offset; |
| 3408 | if (isLegalUse(TTI, LU.MinOffset - Offset, LU.MaxOffset - Offset, LU.Kind, |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3409 | LU.AccessTy, F)) { |
| 3410 | // Add the offset to the base register. |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3411 | const SCEV *NewG = SE.getAddExpr(SE.getConstant(G->getType(), Offset), G); |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3412 | // If it cancelled out, drop the base register, otherwise update it. |
| 3413 | if (NewG->isZero()) { |
| 3414 | if (IsScaledReg) { |
| 3415 | F.Scale = 0; |
| 3416 | F.ScaledReg = nullptr; |
| 3417 | } else |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 3418 | F.deleteBaseReg(F.BaseRegs[Idx]); |
| 3419 | F.canonicalize(); |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3420 | } else if (IsScaledReg) |
| 3421 | F.ScaledReg = NewG; |
| 3422 | else |
| 3423 | F.BaseRegs[Idx] = NewG; |
| 3424 | |
| 3425 | (void)InsertFormula(LU, LUIdx, F); |
| 3426 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3427 | } |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3428 | |
| 3429 | int64_t Imm = ExtractImmediate(G, SE); |
| 3430 | if (G->isZero() || Imm == 0) |
| 3431 | return; |
| 3432 | Formula F = Base; |
| 3433 | F.BaseOffset = (uint64_t)F.BaseOffset + Imm; |
| 3434 | if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F)) |
| 3435 | return; |
| 3436 | if (IsScaledReg) |
| 3437 | F.ScaledReg = G; |
| 3438 | else |
| 3439 | F.BaseRegs[Idx] = G; |
| 3440 | (void)InsertFormula(LU, LUIdx, F); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3441 | } |
| 3442 | |
| 3443 | /// GenerateConstantOffsets - Generate reuse formulae using symbolic offsets. |
| 3444 | void LSRInstance::GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx, |
| 3445 | Formula Base) { |
| 3446 | // TODO: For now, just add the min and max offset, because it usually isn't |
| 3447 | // worthwhile looking at everything inbetween. |
Dan Gohman | 4afd412 | 2010-07-15 15:14:45 +0000 | [diff] [blame] | 3448 | SmallVector<int64_t, 2> Worklist; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3449 | Worklist.push_back(LU.MinOffset); |
| 3450 | if (LU.MaxOffset != LU.MinOffset) |
| 3451 | Worklist.push_back(LU.MaxOffset); |
| 3452 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3453 | for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) |
| 3454 | GenerateConstantOffsetsImpl(LU, LUIdx, Base, Worklist, i); |
| 3455 | if (Base.Scale == 1) |
| 3456 | GenerateConstantOffsetsImpl(LU, LUIdx, Base, Worklist, /* Idx */ -1, |
| 3457 | /* IsScaledReg */ true); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3458 | } |
| 3459 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 3460 | /// For ICmpZero, check to see if we can scale up the comparison. For example, x |
| 3461 | /// == y -> x*c == y*c. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3462 | void LSRInstance::GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx, |
| 3463 | Formula Base) { |
| 3464 | if (LU.Kind != LSRUse::ICmpZero) return; |
| 3465 | |
| 3466 | // Determine the integer type for the base formula. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3467 | Type *IntTy = Base.getType(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3468 | if (!IntTy) return; |
| 3469 | if (SE.getTypeSizeInBits(IntTy) > 64) return; |
| 3470 | |
| 3471 | // Don't do this if there is more than one offset. |
| 3472 | if (LU.MinOffset != LU.MaxOffset) return; |
| 3473 | |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3474 | assert(!Base.BaseGV && "ICmpZero use is not legal!"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3475 | |
| 3476 | // Check each interesting stride. |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3477 | for (int64_t Factor : Factors) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3478 | // Check that the multiplication doesn't overflow. |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3479 | if (Base.BaseOffset == INT64_MIN && Factor == -1) |
Dan Gohman | 5f10d6c | 2010-02-17 00:41:53 +0000 | [diff] [blame] | 3480 | continue; |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3481 | int64_t NewBaseOffset = (uint64_t)Base.BaseOffset * Factor; |
| 3482 | if (NewBaseOffset / Factor != Base.BaseOffset) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3483 | continue; |
Andrew Trick | 429e9ed | 2014-02-26 16:31:56 +0000 | [diff] [blame] | 3484 | // If the offset will be truncated at this use, check that it is in bounds. |
| 3485 | if (!IntTy->isPointerTy() && |
| 3486 | !ConstantInt::isValueValidForType(IntTy, NewBaseOffset)) |
| 3487 | continue; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3488 | |
| 3489 | // Check that multiplying with the use offset doesn't overflow. |
| 3490 | int64_t Offset = LU.MinOffset; |
Dan Gohman | 5f10d6c | 2010-02-17 00:41:53 +0000 | [diff] [blame] | 3491 | if (Offset == INT64_MIN && Factor == -1) |
| 3492 | continue; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3493 | Offset = (uint64_t)Offset * Factor; |
Dan Gohman | 13ac3b2 | 2010-02-17 00:42:19 +0000 | [diff] [blame] | 3494 | if (Offset / Factor != LU.MinOffset) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3495 | continue; |
Andrew Trick | 429e9ed | 2014-02-26 16:31:56 +0000 | [diff] [blame] | 3496 | // If the offset will be truncated at this use, check that it is in bounds. |
| 3497 | if (!IntTy->isPointerTy() && |
| 3498 | !ConstantInt::isValueValidForType(IntTy, Offset)) |
| 3499 | continue; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3500 | |
Dan Gohman | 963b1c1 | 2010-06-24 16:57:52 +0000 | [diff] [blame] | 3501 | Formula F = Base; |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3502 | F.BaseOffset = NewBaseOffset; |
Dan Gohman | 963b1c1 | 2010-06-24 16:57:52 +0000 | [diff] [blame] | 3503 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3504 | // Check that this scale is legal. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 3505 | if (!isLegalUse(TTI, Offset, Offset, LU.Kind, LU.AccessTy, F)) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3506 | continue; |
| 3507 | |
| 3508 | // Compensate for the use having MinOffset built into it. |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3509 | F.BaseOffset = (uint64_t)F.BaseOffset + Offset - LU.MinOffset; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3510 | |
Dan Gohman | 1d2ded7 | 2010-05-03 22:09:21 +0000 | [diff] [blame] | 3511 | const SCEV *FactorS = SE.getConstant(IntTy, Factor); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3512 | |
| 3513 | // Check that multiplying with each base register doesn't overflow. |
| 3514 | for (size_t i = 0, e = F.BaseRegs.size(); i != e; ++i) { |
| 3515 | F.BaseRegs[i] = SE.getMulExpr(F.BaseRegs[i], FactorS); |
Dan Gohman | 4eebb94 | 2010-02-19 19:35:48 +0000 | [diff] [blame] | 3516 | if (getExactSDiv(F.BaseRegs[i], FactorS, SE) != Base.BaseRegs[i]) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3517 | goto next; |
| 3518 | } |
| 3519 | |
| 3520 | // Check that multiplying with the scaled register doesn't overflow. |
| 3521 | if (F.ScaledReg) { |
| 3522 | F.ScaledReg = SE.getMulExpr(F.ScaledReg, FactorS); |
Dan Gohman | 4eebb94 | 2010-02-19 19:35:48 +0000 | [diff] [blame] | 3523 | if (getExactSDiv(F.ScaledReg, FactorS, SE) != Base.ScaledReg) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3524 | continue; |
| 3525 | } |
| 3526 | |
Dan Gohman | 6136e94 | 2011-05-03 00:46:49 +0000 | [diff] [blame] | 3527 | // Check that multiplying with the unfolded offset doesn't overflow. |
| 3528 | if (F.UnfoldedOffset != 0) { |
Dan Gohman | 6c4a319 | 2011-05-23 21:07:39 +0000 | [diff] [blame] | 3529 | if (F.UnfoldedOffset == INT64_MIN && Factor == -1) |
| 3530 | continue; |
Dan Gohman | 6136e94 | 2011-05-03 00:46:49 +0000 | [diff] [blame] | 3531 | F.UnfoldedOffset = (uint64_t)F.UnfoldedOffset * Factor; |
| 3532 | if (F.UnfoldedOffset / Factor != Base.UnfoldedOffset) |
| 3533 | continue; |
Andrew Trick | 429e9ed | 2014-02-26 16:31:56 +0000 | [diff] [blame] | 3534 | // If the offset will be truncated, check that it is in bounds. |
| 3535 | if (!IntTy->isPointerTy() && |
| 3536 | !ConstantInt::isValueValidForType(IntTy, F.UnfoldedOffset)) |
| 3537 | continue; |
Dan Gohman | 6136e94 | 2011-05-03 00:46:49 +0000 | [diff] [blame] | 3538 | } |
| 3539 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3540 | // If we make it here and it's legal, add it. |
| 3541 | (void)InsertFormula(LU, LUIdx, F); |
| 3542 | next:; |
| 3543 | } |
| 3544 | } |
| 3545 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 3546 | /// Generate stride factor reuse formulae by making use of scaled-offset address |
| 3547 | /// modes, for example. |
Dan Gohman | ab5fb7f | 2010-05-20 19:44:23 +0000 | [diff] [blame] | 3548 | void LSRInstance::GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3549 | // Determine the integer type for the base formula. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3550 | Type *IntTy = Base.getType(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3551 | if (!IntTy) return; |
| 3552 | |
| 3553 | // If this Formula already has a scaled register, we can't add another one. |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3554 | // Try to unscale the formula to generate a better scale. |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 3555 | if (Base.Scale != 0 && !Base.unscale()) |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3556 | return; |
| 3557 | |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 3558 | assert(Base.Scale == 0 && "unscale did not did its job!"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3559 | |
| 3560 | // Check each interesting stride. |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3561 | for (int64_t Factor : Factors) { |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3562 | Base.Scale = Factor; |
| 3563 | Base.HasBaseReg = Base.BaseRegs.size() > 1; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3564 | // Check whether this scale is going to be legal. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 3565 | if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, |
| 3566 | Base)) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3567 | // As a special-case, handle special out-of-loop Basic users specially. |
| 3568 | // TODO: Reconsider this special case. |
| 3569 | if (LU.Kind == LSRUse::Basic && |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 3570 | isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LSRUse::Special, |
| 3571 | LU.AccessTy, Base) && |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3572 | LU.AllFixupsOutsideLoop) |
| 3573 | LU.Kind = LSRUse::Special; |
| 3574 | else |
| 3575 | continue; |
| 3576 | } |
| 3577 | // For an ICmpZero, negating a solitary base register won't lead to |
| 3578 | // new solutions. |
| 3579 | if (LU.Kind == LSRUse::ICmpZero && |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3580 | !Base.HasBaseReg && Base.BaseOffset == 0 && !Base.BaseGV) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3581 | continue; |
| 3582 | // For each addrec base reg, apply the scale, if possible. |
| 3583 | for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) |
| 3584 | if (const SCEVAddRecExpr *AR = |
| 3585 | dyn_cast<SCEVAddRecExpr>(Base.BaseRegs[i])) { |
Dan Gohman | 1d2ded7 | 2010-05-03 22:09:21 +0000 | [diff] [blame] | 3586 | const SCEV *FactorS = SE.getConstant(IntTy, Factor); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3587 | if (FactorS->isZero()) |
| 3588 | continue; |
| 3589 | // Divide out the factor, ignoring high bits, since we'll be |
| 3590 | // scaling the value back up in the end. |
Dan Gohman | 4eebb94 | 2010-02-19 19:35:48 +0000 | [diff] [blame] | 3591 | if (const SCEV *Quotient = getExactSDiv(AR, FactorS, SE, true)) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3592 | // TODO: This could be optimized to avoid all the copying. |
| 3593 | Formula F = Base; |
| 3594 | F.ScaledReg = Quotient; |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 3595 | F.deleteBaseReg(F.BaseRegs[i]); |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3596 | // The canonical representation of 1*reg is reg, which is already in |
| 3597 | // Base. In that case, do not try to insert the formula, it will be |
| 3598 | // rejected anyway. |
| 3599 | if (F.Scale == 1 && F.BaseRegs.empty()) |
| 3600 | continue; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3601 | (void)InsertFormula(LU, LUIdx, F); |
| 3602 | } |
| 3603 | } |
| 3604 | } |
| 3605 | } |
| 3606 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 3607 | /// Generate reuse formulae from different IV types. |
Dan Gohman | ab5fb7f | 2010-05-20 19:44:23 +0000 | [diff] [blame] | 3608 | void LSRInstance::GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3609 | // Don't bother truncating symbolic values. |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3610 | if (Base.BaseGV) return; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3611 | |
| 3612 | // Determine the integer type for the base formula. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3613 | Type *DstTy = Base.getType(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3614 | if (!DstTy) return; |
| 3615 | DstTy = SE.getEffectiveSCEVType(DstTy); |
| 3616 | |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3617 | for (Type *SrcTy : Types) { |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 3618 | if (SrcTy != DstTy && TTI.isTruncateFree(SrcTy, DstTy)) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3619 | Formula F = Base; |
| 3620 | |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3621 | if (F.ScaledReg) F.ScaledReg = SE.getAnyExtendExpr(F.ScaledReg, SrcTy); |
| 3622 | for (const SCEV *&BaseReg : F.BaseRegs) |
| 3623 | BaseReg = SE.getAnyExtendExpr(BaseReg, SrcTy); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3624 | |
| 3625 | // TODO: This assumes we've done basic processing on all uses and |
| 3626 | // have an idea what the register usage is. |
| 3627 | if (!F.hasRegsUsedByUsesOtherThan(LUIdx, RegUses)) |
| 3628 | continue; |
| 3629 | |
| 3630 | (void)InsertFormula(LU, LUIdx, F); |
| 3631 | } |
| 3632 | } |
| 3633 | } |
| 3634 | |
| 3635 | namespace { |
| 3636 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 3637 | /// Helper class for GenerateCrossUseConstantOffsets. It's used to defer |
| 3638 | /// modifications so that the search phase doesn't have to worry about the data |
| 3639 | /// structures moving underneath it. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3640 | struct WorkItem { |
| 3641 | size_t LUIdx; |
| 3642 | int64_t Imm; |
| 3643 | const SCEV *OrigReg; |
| 3644 | |
| 3645 | WorkItem(size_t LI, int64_t I, const SCEV *R) |
| 3646 | : LUIdx(LI), Imm(I), OrigReg(R) {} |
| 3647 | |
| 3648 | void print(raw_ostream &OS) const; |
| 3649 | void dump() const; |
| 3650 | }; |
| 3651 | |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 3652 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3653 | |
| 3654 | void WorkItem::print(raw_ostream &OS) const { |
| 3655 | OS << "in formulae referencing " << *OrigReg << " in use " << LUIdx |
| 3656 | << " , add offset " << Imm; |
| 3657 | } |
| 3658 | |
Davide Italiano | 945d05f | 2015-11-23 02:47:30 +0000 | [diff] [blame] | 3659 | LLVM_DUMP_METHOD |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3660 | void WorkItem::dump() const { |
| 3661 | print(errs()); errs() << '\n'; |
| 3662 | } |
| 3663 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 3664 | /// Look for registers which are a constant distance apart and try to form reuse |
| 3665 | /// opportunities between them. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3666 | void LSRInstance::GenerateCrossUseConstantOffsets() { |
| 3667 | // Group the registers by their value without any added constant offset. |
| 3668 | typedef std::map<int64_t, const SCEV *> ImmMapTy; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3669 | DenseMap<const SCEV *, ImmMapTy> Map; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3670 | DenseMap<const SCEV *, SmallBitVector> UsedByIndicesMap; |
| 3671 | SmallVector<const SCEV *, 8> Sequence; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3672 | for (const SCEV *Use : RegUses) { |
| 3673 | const SCEV *Reg = Use; // Make a copy for ExtractImmediate to modify. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3674 | int64_t Imm = ExtractImmediate(Reg, SE); |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3675 | auto Pair = Map.insert(std::make_pair(Reg, ImmMapTy())); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3676 | if (Pair.second) |
| 3677 | Sequence.push_back(Reg); |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3678 | Pair.first->second.insert(std::make_pair(Imm, Use)); |
| 3679 | UsedByIndicesMap[Reg] |= RegUses.getUsedByIndices(Use); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3680 | } |
| 3681 | |
| 3682 | // Now examine each set of registers with the same base value. Build up |
| 3683 | // a list of work to do and do the work in a separate step so that we're |
| 3684 | // not adding formulae and register counts while we're searching. |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 3685 | SmallVector<WorkItem, 32> WorkItems; |
| 3686 | SmallSet<std::pair<size_t, int64_t>, 32> UniqueItems; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3687 | for (const SCEV *Reg : Sequence) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3688 | const ImmMapTy &Imms = Map.find(Reg)->second; |
| 3689 | |
Dan Gohman | 363f847 | 2010-02-12 19:20:37 +0000 | [diff] [blame] | 3690 | // It's not worthwhile looking for reuse if there's only one offset. |
| 3691 | if (Imms.size() == 1) |
| 3692 | continue; |
| 3693 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3694 | DEBUG(dbgs() << "Generating cross-use offsets for " << *Reg << ':'; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3695 | for (const auto &Entry : Imms) |
| 3696 | dbgs() << ' ' << Entry.first; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3697 | dbgs() << '\n'); |
| 3698 | |
| 3699 | // Examine each offset. |
| 3700 | for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end(); |
| 3701 | J != JE; ++J) { |
| 3702 | const SCEV *OrigReg = J->second; |
| 3703 | |
| 3704 | int64_t JImm = J->first; |
| 3705 | const SmallBitVector &UsedByIndices = RegUses.getUsedByIndices(OrigReg); |
| 3706 | |
| 3707 | if (!isa<SCEVConstant>(OrigReg) && |
| 3708 | UsedByIndicesMap[Reg].count() == 1) { |
| 3709 | DEBUG(dbgs() << "Skipping cross-use reuse for " << *OrigReg << '\n'); |
| 3710 | continue; |
| 3711 | } |
| 3712 | |
| 3713 | // Conservatively examine offsets between this orig reg a few selected |
| 3714 | // other orig regs. |
| 3715 | ImmMapTy::const_iterator OtherImms[] = { |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 3716 | Imms.begin(), std::prev(Imms.end()), |
| 3717 | Imms.lower_bound((Imms.begin()->first + std::prev(Imms.end())->first) / |
| 3718 | 2) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3719 | }; |
| 3720 | for (size_t i = 0, e = array_lengthof(OtherImms); i != e; ++i) { |
| 3721 | ImmMapTy::const_iterator M = OtherImms[i]; |
Dan Gohman | 363f847 | 2010-02-12 19:20:37 +0000 | [diff] [blame] | 3722 | if (M == J || M == JE) continue; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3723 | |
| 3724 | // Compute the difference between the two. |
| 3725 | int64_t Imm = (uint64_t)JImm - M->first; |
| 3726 | for (int LUIdx = UsedByIndices.find_first(); LUIdx != -1; |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 3727 | LUIdx = UsedByIndices.find_next(LUIdx)) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3728 | // Make a memo of this use, offset, and register tuple. |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 3729 | if (UniqueItems.insert(std::make_pair(LUIdx, Imm)).second) |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 3730 | WorkItems.push_back(WorkItem(LUIdx, Imm, OrigReg)); |
Evan Cheng | 85a9f43 | 2009-11-12 07:35:05 +0000 | [diff] [blame] | 3731 | } |
| 3732 | } |
| 3733 | } |
| 3734 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3735 | Map.clear(); |
| 3736 | Sequence.clear(); |
| 3737 | UsedByIndicesMap.clear(); |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 3738 | UniqueItems.clear(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3739 | |
| 3740 | // Now iterate through the worklist and add new formulae. |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3741 | for (const WorkItem &WI : WorkItems) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3742 | size_t LUIdx = WI.LUIdx; |
| 3743 | LSRUse &LU = Uses[LUIdx]; |
| 3744 | int64_t Imm = WI.Imm; |
| 3745 | const SCEV *OrigReg = WI.OrigReg; |
| 3746 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3747 | Type *IntTy = SE.getEffectiveSCEVType(OrigReg->getType()); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3748 | const SCEV *NegImmS = SE.getSCEV(ConstantInt::get(IntTy, -(uint64_t)Imm)); |
| 3749 | unsigned BitWidth = SE.getTypeSizeInBits(IntTy); |
| 3750 | |
Dan Gohman | 8b0a419 | 2010-03-01 17:49:51 +0000 | [diff] [blame] | 3751 | // TODO: Use a more targeted data structure. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3752 | for (size_t L = 0, LE = LU.Formulae.size(); L != LE; ++L) { |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3753 | Formula F = LU.Formulae[L]; |
| 3754 | // FIXME: The code for the scaled and unscaled registers looks |
| 3755 | // very similar but slightly different. Investigate if they |
| 3756 | // could be merged. That way, we would not have to unscale the |
| 3757 | // Formula. |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 3758 | F.unscale(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3759 | // Use the immediate in the scaled register. |
| 3760 | if (F.ScaledReg == OrigReg) { |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3761 | int64_t Offset = (uint64_t)F.BaseOffset + Imm * (uint64_t)F.Scale; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3762 | // Don't create 50 + reg(-50). |
| 3763 | if (F.referencesReg(SE.getSCEV( |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3764 | ConstantInt::get(IntTy, -(uint64_t)Offset)))) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3765 | continue; |
| 3766 | Formula NewF = F; |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3767 | NewF.BaseOffset = Offset; |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 3768 | if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, |
| 3769 | NewF)) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3770 | continue; |
| 3771 | NewF.ScaledReg = SE.getAddExpr(NegImmS, NewF.ScaledReg); |
| 3772 | |
| 3773 | // If the new scale is a constant in a register, and adding the constant |
| 3774 | // value to the immediate would produce a value closer to zero than the |
| 3775 | // immediate itself, then the formula isn't worthwhile. |
| 3776 | if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewF.ScaledReg)) |
Sanjoy Das | 0de2fec | 2015-12-17 20:28:46 +0000 | [diff] [blame] | 3777 | if (C->getValue()->isNegative() != (NewF.BaseOffset < 0) && |
| 3778 | (C->getAPInt().abs() * APInt(BitWidth, F.Scale)) |
| 3779 | .ule(std::abs(NewF.BaseOffset))) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3780 | continue; |
| 3781 | |
| 3782 | // OK, looks good. |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 3783 | NewF.canonicalize(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3784 | (void)InsertFormula(LU, LUIdx, NewF); |
| 3785 | } else { |
| 3786 | // Use the immediate in a base register. |
| 3787 | for (size_t N = 0, NE = F.BaseRegs.size(); N != NE; ++N) { |
| 3788 | const SCEV *BaseReg = F.BaseRegs[N]; |
| 3789 | if (BaseReg != OrigReg) |
| 3790 | continue; |
| 3791 | Formula NewF = F; |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3792 | NewF.BaseOffset = (uint64_t)NewF.BaseOffset + Imm; |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 3793 | if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, |
| 3794 | LU.Kind, LU.AccessTy, NewF)) { |
| 3795 | if (!TTI.isLegalAddImmediate((uint64_t)NewF.UnfoldedOffset + Imm)) |
Dan Gohman | 6136e94 | 2011-05-03 00:46:49 +0000 | [diff] [blame] | 3796 | continue; |
| 3797 | NewF = F; |
| 3798 | NewF.UnfoldedOffset = (uint64_t)NewF.UnfoldedOffset + Imm; |
| 3799 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3800 | NewF.BaseRegs[N] = SE.getAddExpr(NegImmS, BaseReg); |
| 3801 | |
| 3802 | // If the new formula has a constant in a register, and adding the |
| 3803 | // constant value to the immediate would produce a value closer to |
| 3804 | // zero than the immediate itself, then the formula isn't worthwhile. |
Craig Topper | 10949ae | 2015-05-23 08:45:10 +0000 | [diff] [blame] | 3805 | for (const SCEV *NewReg : NewF.BaseRegs) |
| 3806 | if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewReg)) |
Sanjoy Das | 0de2fec | 2015-12-17 20:28:46 +0000 | [diff] [blame] | 3807 | if ((C->getAPInt() + NewF.BaseOffset) |
| 3808 | .abs() |
| 3809 | .slt(std::abs(NewF.BaseOffset)) && |
| 3810 | (C->getAPInt() + NewF.BaseOffset).countTrailingZeros() >= |
| 3811 | countTrailingZeros<uint64_t>(NewF.BaseOffset)) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3812 | goto skip_formula; |
| 3813 | |
| 3814 | // Ok, looks good. |
Sanjoy Das | 302bfd0 | 2015-08-16 18:22:43 +0000 | [diff] [blame] | 3815 | NewF.canonicalize(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3816 | (void)InsertFormula(LU, LUIdx, NewF); |
| 3817 | break; |
| 3818 | skip_formula:; |
| 3819 | } |
| 3820 | } |
| 3821 | } |
| 3822 | } |
Dale Johannesen | 02cb2bf | 2009-05-11 17:15:42 +0000 | [diff] [blame] | 3823 | } |
| 3824 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 3825 | /// Generate formulae for each use. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3826 | void |
| 3827 | LSRInstance::GenerateAllReuseFormulae() { |
Dan Gohman | 521efe6 | 2010-02-16 01:42:53 +0000 | [diff] [blame] | 3828 | // This is split into multiple loops so that hasRegsUsedByUsesOtherThan |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3829 | // queries are more precise. |
| 3830 | for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) { |
| 3831 | LSRUse &LU = Uses[LUIdx]; |
| 3832 | for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i) |
| 3833 | GenerateReassociations(LU, LUIdx, LU.Formulae[i]); |
| 3834 | for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i) |
| 3835 | GenerateCombinations(LU, LUIdx, LU.Formulae[i]); |
| 3836 | } |
| 3837 | for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) { |
| 3838 | LSRUse &LU = Uses[LUIdx]; |
| 3839 | for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i) |
| 3840 | GenerateSymbolicOffsets(LU, LUIdx, LU.Formulae[i]); |
| 3841 | for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i) |
| 3842 | GenerateConstantOffsets(LU, LUIdx, LU.Formulae[i]); |
| 3843 | for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i) |
| 3844 | GenerateICmpZeroScales(LU, LUIdx, LU.Formulae[i]); |
| 3845 | for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i) |
| 3846 | GenerateScales(LU, LUIdx, LU.Formulae[i]); |
Dan Gohman | 521efe6 | 2010-02-16 01:42:53 +0000 | [diff] [blame] | 3847 | } |
| 3848 | for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) { |
| 3849 | LSRUse &LU = Uses[LUIdx]; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3850 | for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i) |
| 3851 | GenerateTruncates(LU, LUIdx, LU.Formulae[i]); |
| 3852 | } |
| 3853 | |
| 3854 | GenerateCrossUseConstantOffsets(); |
Dan Gohman | bf673e0 | 2010-08-29 15:21:38 +0000 | [diff] [blame] | 3855 | |
| 3856 | DEBUG(dbgs() << "\n" |
| 3857 | "After generating reuse formulae:\n"; |
| 3858 | print_uses(dbgs())); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3859 | } |
| 3860 | |
Dan Gohman | 1b61fd9 | 2010-10-07 23:43:09 +0000 | [diff] [blame] | 3861 | /// If there are multiple formulae with the same set of registers used |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3862 | /// by other uses, pick the best one and delete the others. |
| 3863 | void LSRInstance::FilterOutUndesirableDedicatedRegisters() { |
Dan Gohman | 5947e16 | 2010-10-07 23:52:18 +0000 | [diff] [blame] | 3864 | DenseSet<const SCEV *> VisitedRegs; |
| 3865 | SmallPtrSet<const SCEV *, 16> Regs; |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 3866 | SmallPtrSet<const SCEV *, 16> LoserRegs; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3867 | #ifndef NDEBUG |
Dan Gohman | 4c4043c | 2010-05-20 20:05:31 +0000 | [diff] [blame] | 3868 | bool ChangedFormulae = false; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3869 | #endif |
| 3870 | |
| 3871 | // Collect the best formula for each unique set of shared registers. This |
| 3872 | // is reset for each use. |
Preston Gurd | 25c3b6a | 2013-02-01 20:41:27 +0000 | [diff] [blame] | 3873 | typedef DenseMap<SmallVector<const SCEV *, 4>, size_t, UniquifierDenseMapInfo> |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3874 | BestFormulaeTy; |
| 3875 | BestFormulaeTy BestFormulae; |
| 3876 | |
| 3877 | for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) { |
| 3878 | LSRUse &LU = Uses[LUIdx]; |
Dan Gohman | ab5fb7f | 2010-05-20 19:44:23 +0000 | [diff] [blame] | 3879 | DEBUG(dbgs() << "Filtering for use "; LU.print(dbgs()); dbgs() << '\n'); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3880 | |
Dan Gohman | 4cf99b5 | 2010-05-18 23:42:37 +0000 | [diff] [blame] | 3881 | bool Any = false; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3882 | for (size_t FIdx = 0, NumForms = LU.Formulae.size(); |
| 3883 | FIdx != NumForms; ++FIdx) { |
| 3884 | Formula &F = LU.Formulae[FIdx]; |
| 3885 | |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 3886 | // Some formulas are instant losers. For example, they may depend on |
| 3887 | // nonexistent AddRecs from other loops. These need to be filtered |
| 3888 | // immediately, otherwise heuristics could choose them over others leading |
| 3889 | // to an unsatisfactory solution. Passing LoserRegs into RateFormula here |
| 3890 | // avoids the need to recompute this information across formulae using the |
| 3891 | // same bad AddRec. Passing LoserRegs is also essential unless we remove |
| 3892 | // the corresponding bad register from the Regs set. |
| 3893 | Cost CostF; |
| 3894 | Regs.clear(); |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 3895 | CostF.RateFormula(TTI, F, Regs, VisitedRegs, L, SE, DT, LU, &LoserRegs); |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 3896 | if (CostF.isLoser()) { |
| 3897 | // During initial formula generation, undesirable formulae are generated |
| 3898 | // by uses within other loops that have some non-trivial address mode or |
| 3899 | // use the postinc form of the IV. LSR needs to provide these formulae |
| 3900 | // as the basis of rediscovering the desired formula that uses an AddRec |
| 3901 | // corresponding to the existing phi. Once all formulae have been |
| 3902 | // generated, these initial losers may be pruned. |
| 3903 | DEBUG(dbgs() << " Filtering loser "; F.print(dbgs()); |
| 3904 | dbgs() << "\n"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3905 | } |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 3906 | else { |
Preston Gurd | 25c3b6a | 2013-02-01 20:41:27 +0000 | [diff] [blame] | 3907 | SmallVector<const SCEV *, 4> Key; |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 3908 | for (const SCEV *Reg : F.BaseRegs) { |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 3909 | if (RegUses.isRegUsedByUsesOtherThan(Reg, LUIdx)) |
| 3910 | Key.push_back(Reg); |
| 3911 | } |
| 3912 | if (F.ScaledReg && |
| 3913 | RegUses.isRegUsedByUsesOtherThan(F.ScaledReg, LUIdx)) |
| 3914 | Key.push_back(F.ScaledReg); |
| 3915 | // Unstable sort by host order ok, because this is only used for |
| 3916 | // uniquifying. |
| 3917 | std::sort(Key.begin(), Key.end()); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3918 | |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 3919 | std::pair<BestFormulaeTy::const_iterator, bool> P = |
| 3920 | BestFormulae.insert(std::make_pair(Key, FIdx)); |
| 3921 | if (P.second) |
| 3922 | continue; |
| 3923 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3924 | Formula &Best = LU.Formulae[P.first->second]; |
Dan Gohman | 5947e16 | 2010-10-07 23:52:18 +0000 | [diff] [blame] | 3925 | |
Dan Gohman | 5947e16 | 2010-10-07 23:52:18 +0000 | [diff] [blame] | 3926 | Cost CostBest; |
Dan Gohman | 5947e16 | 2010-10-07 23:52:18 +0000 | [diff] [blame] | 3927 | Regs.clear(); |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 3928 | CostBest.RateFormula(TTI, Best, Regs, VisitedRegs, L, SE, DT, LU); |
Dan Gohman | 5947e16 | 2010-10-07 23:52:18 +0000 | [diff] [blame] | 3929 | if (CostF < CostBest) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3930 | std::swap(F, Best); |
Dan Gohman | 8aca7ef | 2010-05-18 22:37:37 +0000 | [diff] [blame] | 3931 | DEBUG(dbgs() << " Filtering out formula "; F.print(dbgs()); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3932 | dbgs() << "\n" |
Dan Gohman | 8aca7ef | 2010-05-18 22:37:37 +0000 | [diff] [blame] | 3933 | " in favor of formula "; Best.print(dbgs()); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3934 | dbgs() << '\n'); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3935 | } |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 3936 | #ifndef NDEBUG |
| 3937 | ChangedFormulae = true; |
| 3938 | #endif |
| 3939 | LU.DeleteFormula(F); |
| 3940 | --FIdx; |
| 3941 | --NumForms; |
| 3942 | Any = true; |
Dan Gohman | d080024 | 2010-05-07 23:36:59 +0000 | [diff] [blame] | 3943 | } |
| 3944 | |
Dan Gohman | beebef4 | 2010-05-18 23:55:57 +0000 | [diff] [blame] | 3945 | // Now that we've filtered out some formulae, recompute the Regs set. |
Dan Gohman | 4cf99b5 | 2010-05-18 23:42:37 +0000 | [diff] [blame] | 3946 | if (Any) |
| 3947 | LU.RecomputeRegs(LUIdx, RegUses); |
Dan Gohman | d080024 | 2010-05-07 23:36:59 +0000 | [diff] [blame] | 3948 | |
| 3949 | // Reset this to prepare for the next use. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3950 | BestFormulae.clear(); |
| 3951 | } |
| 3952 | |
Dan Gohman | 4c4043c | 2010-05-20 20:05:31 +0000 | [diff] [blame] | 3953 | DEBUG(if (ChangedFormulae) { |
Dan Gohman | 5b18f03 | 2010-02-13 02:06:02 +0000 | [diff] [blame] | 3954 | dbgs() << "\n" |
| 3955 | "After filtering out undesirable candidates:\n"; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3956 | print_uses(dbgs()); |
| 3957 | }); |
| 3958 | } |
| 3959 | |
Dan Gohman | a4eca05 | 2010-05-18 22:51:59 +0000 | [diff] [blame] | 3960 | // This is a rough guess that seems to work fairly well. |
| 3961 | static const size_t ComplexityLimit = UINT16_MAX; |
| 3962 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 3963 | /// Estimate the worst-case number of solutions the solver might have to |
| 3964 | /// consider. It almost never considers this many solutions because it prune the |
| 3965 | /// search space, but the pruning isn't always sufficient. |
Dan Gohman | a4eca05 | 2010-05-18 22:51:59 +0000 | [diff] [blame] | 3966 | size_t LSRInstance::EstimateSearchSpaceComplexity() const { |
Dan Gohman | 49d638b | 2010-10-07 23:37:58 +0000 | [diff] [blame] | 3967 | size_t Power = 1; |
Craig Topper | 10949ae | 2015-05-23 08:45:10 +0000 | [diff] [blame] | 3968 | for (const LSRUse &LU : Uses) { |
| 3969 | size_t FSize = LU.Formulae.size(); |
Dan Gohman | a4eca05 | 2010-05-18 22:51:59 +0000 | [diff] [blame] | 3970 | if (FSize >= ComplexityLimit) { |
| 3971 | Power = ComplexityLimit; |
| 3972 | break; |
| 3973 | } |
| 3974 | Power *= FSize; |
| 3975 | if (Power >= ComplexityLimit) |
| 3976 | break; |
| 3977 | } |
| 3978 | return Power; |
| 3979 | } |
| 3980 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 3981 | /// When one formula uses a superset of the registers of another formula, it |
| 3982 | /// won't help reduce register pressure (though it may not necessarily hurt |
| 3983 | /// register pressure); remove it to simplify the system. |
Dan Gohman | e9e0873 | 2010-08-29 16:09:42 +0000 | [diff] [blame] | 3984 | void LSRInstance::NarrowSearchSpaceByDetectingSupersets() { |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 3985 | if (EstimateSearchSpaceComplexity() >= ComplexityLimit) { |
| 3986 | DEBUG(dbgs() << "The search space is too complex.\n"); |
| 3987 | |
| 3988 | DEBUG(dbgs() << "Narrowing the search space by eliminating formulae " |
| 3989 | "which use a superset of registers used by other " |
| 3990 | "formulae.\n"); |
| 3991 | |
| 3992 | for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) { |
| 3993 | LSRUse &LU = Uses[LUIdx]; |
| 3994 | bool Any = false; |
| 3995 | for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) { |
| 3996 | Formula &F = LU.Formulae[i]; |
Dan Gohman | 8ec018c | 2010-05-20 20:00:41 +0000 | [diff] [blame] | 3997 | // Look for a formula with a constant or GV in a register. If the use |
| 3998 | // also has a formula with that same value in an immediate field, |
| 3999 | // delete the one that uses a register. |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4000 | for (SmallVectorImpl<const SCEV *>::const_iterator |
| 4001 | I = F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I) { |
| 4002 | if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*I)) { |
| 4003 | Formula NewF = F; |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 4004 | NewF.BaseOffset += C->getValue()->getSExtValue(); |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4005 | NewF.BaseRegs.erase(NewF.BaseRegs.begin() + |
| 4006 | (I - F.BaseRegs.begin())); |
| 4007 | if (LU.HasFormulaWithSameRegs(NewF)) { |
| 4008 | DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n'); |
| 4009 | LU.DeleteFormula(F); |
| 4010 | --i; |
| 4011 | --e; |
| 4012 | Any = true; |
| 4013 | break; |
| 4014 | } |
| 4015 | } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(*I)) { |
| 4016 | if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue())) |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 4017 | if (!F.BaseGV) { |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4018 | Formula NewF = F; |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 4019 | NewF.BaseGV = GV; |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4020 | NewF.BaseRegs.erase(NewF.BaseRegs.begin() + |
| 4021 | (I - F.BaseRegs.begin())); |
| 4022 | if (LU.HasFormulaWithSameRegs(NewF)) { |
| 4023 | DEBUG(dbgs() << " Deleting "; F.print(dbgs()); |
| 4024 | dbgs() << '\n'); |
| 4025 | LU.DeleteFormula(F); |
| 4026 | --i; |
| 4027 | --e; |
| 4028 | Any = true; |
| 4029 | break; |
| 4030 | } |
| 4031 | } |
| 4032 | } |
| 4033 | } |
| 4034 | } |
| 4035 | if (Any) |
| 4036 | LU.RecomputeRegs(LUIdx, RegUses); |
| 4037 | } |
| 4038 | |
| 4039 | DEBUG(dbgs() << "After pre-selection:\n"; |
| 4040 | print_uses(dbgs())); |
| 4041 | } |
Dan Gohman | e9e0873 | 2010-08-29 16:09:42 +0000 | [diff] [blame] | 4042 | } |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4043 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 4044 | /// When there are many registers for expressions like A, A+1, A+2, etc., |
| 4045 | /// allocate a single register for them. |
Dan Gohman | e9e0873 | 2010-08-29 16:09:42 +0000 | [diff] [blame] | 4046 | void LSRInstance::NarrowSearchSpaceByCollapsingUnrolledCode() { |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4047 | if (EstimateSearchSpaceComplexity() < ComplexityLimit) |
| 4048 | return; |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4049 | |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4050 | DEBUG(dbgs() << "The search space is too complex.\n" |
| 4051 | "Narrowing the search space by assuming that uses separated " |
| 4052 | "by a constant offset will use the same registers.\n"); |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4053 | |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4054 | // This is especially useful for unrolled loops. |
Dan Gohman | 8ec018c | 2010-05-20 20:00:41 +0000 | [diff] [blame] | 4055 | |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4056 | for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) { |
| 4057 | LSRUse &LU = Uses[LUIdx]; |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4058 | for (const Formula &F : LU.Formulae) { |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 4059 | if (F.BaseOffset == 0 || (F.Scale != 0 && F.Scale != 1)) |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4060 | continue; |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4061 | |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4062 | LSRUse *LUThatHas = FindUseWithSimilarFormula(F, LU); |
| 4063 | if (!LUThatHas) |
| 4064 | continue; |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4065 | |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4066 | if (!reconcileNewOffset(*LUThatHas, F.BaseOffset, /*HasBaseReg=*/ false, |
| 4067 | LU.Kind, LU.AccessTy)) |
| 4068 | continue; |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 4069 | |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4070 | DEBUG(dbgs() << " Deleting use "; LU.print(dbgs()); dbgs() << '\n'); |
Dan Gohman | 2fd85d7 | 2010-10-08 19:33:26 +0000 | [diff] [blame] | 4071 | |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4072 | LUThatHas->AllFixupsOutsideLoop &= LU.AllFixupsOutsideLoop; |
| 4073 | |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 4074 | // Transfer the fixups of LU to LUThatHas. |
| 4075 | for (LSRFixup &Fixup : LU.Fixups) { |
| 4076 | Fixup.Offset += F.BaseOffset; |
| 4077 | LUThatHas->pushFixup(Fixup); |
| 4078 | DEBUG(dbgs() << "New fixup has offset " << Fixup.Offset << '\n'); |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4079 | } |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 4080 | |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4081 | // Delete formulae from the new use which are no longer legal. |
| 4082 | bool Any = false; |
| 4083 | for (size_t i = 0, e = LUThatHas->Formulae.size(); i != e; ++i) { |
| 4084 | Formula &F = LUThatHas->Formulae[i]; |
| 4085 | if (!isLegalUse(TTI, LUThatHas->MinOffset, LUThatHas->MaxOffset, |
| 4086 | LUThatHas->Kind, LUThatHas->AccessTy, F)) { |
| 4087 | DEBUG(dbgs() << " Deleting "; F.print(dbgs()); |
| 4088 | dbgs() << '\n'); |
| 4089 | LUThatHas->DeleteFormula(F); |
| 4090 | --i; |
| 4091 | --e; |
| 4092 | Any = true; |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4093 | } |
| 4094 | } |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4095 | |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4096 | if (Any) |
| 4097 | LUThatHas->RecomputeRegs(LUThatHas - &Uses.front(), RegUses); |
| 4098 | |
| 4099 | // Delete the old use. |
| 4100 | DeleteUse(LU, LUIdx); |
| 4101 | --LUIdx; |
| 4102 | --NumUses; |
| 4103 | break; |
| 4104 | } |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4105 | } |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4106 | |
| 4107 | DEBUG(dbgs() << "After pre-selection:\n"; print_uses(dbgs())); |
Dan Gohman | e9e0873 | 2010-08-29 16:09:42 +0000 | [diff] [blame] | 4108 | } |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4109 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 4110 | /// Call FilterOutUndesirableDedicatedRegisters again, if necessary, now that |
Dan Gohman | 002ff89 | 2010-08-29 16:39:22 +0000 | [diff] [blame] | 4111 | /// we've done more filtering, as it may be able to find more formulae to |
| 4112 | /// eliminate. |
| 4113 | void LSRInstance::NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters(){ |
| 4114 | if (EstimateSearchSpaceComplexity() >= ComplexityLimit) { |
| 4115 | DEBUG(dbgs() << "The search space is too complex.\n"); |
| 4116 | |
| 4117 | DEBUG(dbgs() << "Narrowing the search space by re-filtering out " |
| 4118 | "undesirable dedicated registers.\n"); |
| 4119 | |
| 4120 | FilterOutUndesirableDedicatedRegisters(); |
| 4121 | |
| 4122 | DEBUG(dbgs() << "After pre-selection:\n"; |
| 4123 | print_uses(dbgs())); |
| 4124 | } |
| 4125 | } |
| 4126 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 4127 | /// Pick a register which seems likely to be profitable, and then in any use |
| 4128 | /// which has any reference to that register, delete all formulae which do not |
| 4129 | /// reference that register. |
Dan Gohman | e9e0873 | 2010-08-29 16:09:42 +0000 | [diff] [blame] | 4130 | void LSRInstance::NarrowSearchSpaceByPickingWinnerRegs() { |
Dan Gohman | a4ca28a | 2010-05-20 20:52:00 +0000 | [diff] [blame] | 4131 | // With all other options exhausted, loop until the system is simple |
| 4132 | // enough to handle. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4133 | SmallPtrSet<const SCEV *, 4> Taken; |
Dan Gohman | a4eca05 | 2010-05-18 22:51:59 +0000 | [diff] [blame] | 4134 | while (EstimateSearchSpaceComplexity() >= ComplexityLimit) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4135 | // Ok, we have too many of formulae on our hands to conveniently handle. |
| 4136 | // Use a rough heuristic to thin out the list. |
Dan Gohman | 63e9015 | 2010-05-18 22:41:32 +0000 | [diff] [blame] | 4137 | DEBUG(dbgs() << "The search space is too complex.\n"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4138 | |
| 4139 | // Pick the register which is used by the most LSRUses, which is likely |
| 4140 | // to be a good reuse register candidate. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 4141 | const SCEV *Best = nullptr; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4142 | unsigned BestNum = 0; |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4143 | for (const SCEV *Reg : RegUses) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4144 | if (Taken.count(Reg)) |
| 4145 | continue; |
| 4146 | if (!Best) |
| 4147 | Best = Reg; |
| 4148 | else { |
| 4149 | unsigned Count = RegUses.getUsedByIndices(Reg).count(); |
| 4150 | if (Count > BestNum) { |
| 4151 | Best = Reg; |
| 4152 | BestNum = Count; |
| 4153 | } |
| 4154 | } |
| 4155 | } |
| 4156 | |
| 4157 | DEBUG(dbgs() << "Narrowing the search space by assuming " << *Best |
Dan Gohman | 8b0a419 | 2010-03-01 17:49:51 +0000 | [diff] [blame] | 4158 | << " will yield profitable reuse.\n"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4159 | Taken.insert(Best); |
| 4160 | |
| 4161 | // In any use with formulae which references this register, delete formulae |
| 4162 | // which don't reference it. |
Dan Gohman | 4cf99b5 | 2010-05-18 23:42:37 +0000 | [diff] [blame] | 4163 | for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) { |
| 4164 | LSRUse &LU = Uses[LUIdx]; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4165 | if (!LU.Regs.count(Best)) continue; |
| 4166 | |
Dan Gohman | 4cf99b5 | 2010-05-18 23:42:37 +0000 | [diff] [blame] | 4167 | bool Any = false; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4168 | for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) { |
| 4169 | Formula &F = LU.Formulae[i]; |
| 4170 | if (!F.referencesReg(Best)) { |
| 4171 | DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n'); |
Dan Gohman | f1c7b1b | 2010-05-18 22:39:15 +0000 | [diff] [blame] | 4172 | LU.DeleteFormula(F); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4173 | --e; |
| 4174 | --i; |
Dan Gohman | 4cf99b5 | 2010-05-18 23:42:37 +0000 | [diff] [blame] | 4175 | Any = true; |
Dan Gohman | d080024 | 2010-05-07 23:36:59 +0000 | [diff] [blame] | 4176 | assert(e != 0 && "Use has no formulae left! Is Regs inconsistent?"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4177 | continue; |
| 4178 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4179 | } |
Dan Gohman | 4cf99b5 | 2010-05-18 23:42:37 +0000 | [diff] [blame] | 4180 | |
| 4181 | if (Any) |
| 4182 | LU.RecomputeRegs(LUIdx, RegUses); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4183 | } |
| 4184 | |
| 4185 | DEBUG(dbgs() << "After pre-selection:\n"; |
| 4186 | print_uses(dbgs())); |
| 4187 | } |
| 4188 | } |
| 4189 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 4190 | /// If there are an extraordinary number of formulae to choose from, use some |
| 4191 | /// rough heuristics to prune down the number of formulae. This keeps the main |
| 4192 | /// solver from taking an extraordinary amount of time in some worst-case |
| 4193 | /// scenarios. |
Dan Gohman | e9e0873 | 2010-08-29 16:09:42 +0000 | [diff] [blame] | 4194 | void LSRInstance::NarrowSearchSpaceUsingHeuristics() { |
| 4195 | NarrowSearchSpaceByDetectingSupersets(); |
| 4196 | NarrowSearchSpaceByCollapsingUnrolledCode(); |
Dan Gohman | 002ff89 | 2010-08-29 16:39:22 +0000 | [diff] [blame] | 4197 | NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters(); |
Dan Gohman | e9e0873 | 2010-08-29 16:09:42 +0000 | [diff] [blame] | 4198 | NarrowSearchSpaceByPickingWinnerRegs(); |
| 4199 | } |
| 4200 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 4201 | /// This is the recursive solver. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4202 | void LSRInstance::SolveRecurse(SmallVectorImpl<const Formula *> &Solution, |
| 4203 | Cost &SolutionCost, |
| 4204 | SmallVectorImpl<const Formula *> &Workspace, |
| 4205 | const Cost &CurCost, |
| 4206 | const SmallPtrSet<const SCEV *, 16> &CurRegs, |
| 4207 | DenseSet<const SCEV *> &VisitedRegs) const { |
| 4208 | // Some ideas: |
| 4209 | // - prune more: |
| 4210 | // - use more aggressive filtering |
| 4211 | // - sort the formula so that the most profitable solutions are found first |
| 4212 | // - sort the uses too |
| 4213 | // - search faster: |
Dan Gohman | 8b0a419 | 2010-03-01 17:49:51 +0000 | [diff] [blame] | 4214 | // - don't compute a cost, and then compare. compare while computing a cost |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4215 | // and bail early. |
| 4216 | // - track register sets with SmallBitVector |
| 4217 | |
| 4218 | const LSRUse &LU = Uses[Workspace.size()]; |
| 4219 | |
| 4220 | // If this use references any register that's already a part of the |
| 4221 | // in-progress solution, consider it a requirement that a formula must |
| 4222 | // reference that register in order to be considered. This prunes out |
| 4223 | // unprofitable searching. |
| 4224 | SmallSetVector<const SCEV *, 4> ReqRegs; |
Craig Topper | 4627679 | 2014-08-24 23:23:06 +0000 | [diff] [blame] | 4225 | for (const SCEV *S : CurRegs) |
| 4226 | if (LU.Regs.count(S)) |
| 4227 | ReqRegs.insert(S); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4228 | |
| 4229 | SmallPtrSet<const SCEV *, 16> NewRegs; |
| 4230 | Cost NewCost; |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4231 | for (const Formula &F : LU.Formulae) { |
Adam Nemet | deab6f9 | 2014-04-29 18:25:28 +0000 | [diff] [blame] | 4232 | // Ignore formulae which may not be ideal in terms of register reuse of |
| 4233 | // ReqRegs. The formula should use all required registers before |
| 4234 | // introducing new ones. |
| 4235 | int NumReqRegsToFind = std::min(F.getNumRegs(), ReqRegs.size()); |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4236 | for (const SCEV *Reg : ReqRegs) { |
Adam Nemet | deab6f9 | 2014-04-29 18:25:28 +0000 | [diff] [blame] | 4237 | if ((F.ScaledReg && F.ScaledReg == Reg) || |
David Majnemer | 0d955d0 | 2016-08-11 22:21:41 +0000 | [diff] [blame] | 4238 | is_contained(F.BaseRegs, Reg)) { |
Adam Nemet | deab6f9 | 2014-04-29 18:25:28 +0000 | [diff] [blame] | 4239 | --NumReqRegsToFind; |
| 4240 | if (NumReqRegsToFind == 0) |
| 4241 | break; |
Andrew Trick | e3502cb | 2012-03-22 22:42:51 +0000 | [diff] [blame] | 4242 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4243 | } |
Adam Nemet | deab6f9 | 2014-04-29 18:25:28 +0000 | [diff] [blame] | 4244 | if (NumReqRegsToFind != 0) { |
Andrew Trick | e3502cb | 2012-03-22 22:42:51 +0000 | [diff] [blame] | 4245 | // If none of the formulae satisfied the required registers, then we could |
| 4246 | // clear ReqRegs and try again. Currently, we simply give up in this case. |
| 4247 | continue; |
| 4248 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4249 | |
| 4250 | // Evaluate the cost of the current formula. If it's already worse than |
| 4251 | // the current best, prune the search at that point. |
| 4252 | NewCost = CurCost; |
| 4253 | NewRegs = CurRegs; |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 4254 | NewCost.RateFormula(TTI, F, NewRegs, VisitedRegs, L, SE, DT, LU); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4255 | if (NewCost < SolutionCost) { |
| 4256 | Workspace.push_back(&F); |
| 4257 | if (Workspace.size() != Uses.size()) { |
| 4258 | SolveRecurse(Solution, SolutionCost, Workspace, NewCost, |
| 4259 | NewRegs, VisitedRegs); |
| 4260 | if (F.getNumRegs() == 1 && Workspace.size() == 1) |
| 4261 | VisitedRegs.insert(F.ScaledReg ? F.ScaledReg : F.BaseRegs[0]); |
| 4262 | } else { |
| 4263 | DEBUG(dbgs() << "New best at "; NewCost.print(dbgs()); |
Andrew Trick | 4dc3eff | 2012-01-09 18:58:16 +0000 | [diff] [blame] | 4264 | dbgs() << ".\n Regs:"; |
Craig Topper | 4627679 | 2014-08-24 23:23:06 +0000 | [diff] [blame] | 4265 | for (const SCEV *S : NewRegs) |
| 4266 | dbgs() << ' ' << *S; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4267 | dbgs() << '\n'); |
| 4268 | |
| 4269 | SolutionCost = NewCost; |
| 4270 | Solution = Workspace; |
| 4271 | } |
| 4272 | Workspace.pop_back(); |
| 4273 | } |
Dan Gohman | 5b18f03 | 2010-02-13 02:06:02 +0000 | [diff] [blame] | 4274 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4275 | } |
| 4276 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 4277 | /// Choose one formula from each use. Return the results in the given Solution |
| 4278 | /// vector. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4279 | void LSRInstance::Solve(SmallVectorImpl<const Formula *> &Solution) const { |
| 4280 | SmallVector<const Formula *, 8> Workspace; |
| 4281 | Cost SolutionCost; |
Tim Northover | bc6659c | 2014-01-22 13:27:00 +0000 | [diff] [blame] | 4282 | SolutionCost.Lose(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4283 | Cost CurCost; |
| 4284 | SmallPtrSet<const SCEV *, 16> CurRegs; |
| 4285 | DenseSet<const SCEV *> VisitedRegs; |
| 4286 | Workspace.reserve(Uses.size()); |
| 4287 | |
Dan Gohman | 8ec018c | 2010-05-20 20:00:41 +0000 | [diff] [blame] | 4288 | // SolveRecurse does all the work. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4289 | SolveRecurse(Solution, SolutionCost, Workspace, CurCost, |
| 4290 | CurRegs, VisitedRegs); |
Andrew Trick | 5812439 | 2011-09-27 00:44:14 +0000 | [diff] [blame] | 4291 | if (Solution.empty()) { |
| 4292 | DEBUG(dbgs() << "\nNo Satisfactory Solution\n"); |
| 4293 | return; |
| 4294 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4295 | |
| 4296 | // Ok, we've now made all our decisions. |
| 4297 | DEBUG(dbgs() << "\n" |
| 4298 | "The chosen solution requires "; SolutionCost.print(dbgs()); |
| 4299 | dbgs() << ":\n"; |
| 4300 | for (size_t i = 0, e = Uses.size(); i != e; ++i) { |
| 4301 | dbgs() << " "; |
| 4302 | Uses[i].print(dbgs()); |
| 4303 | dbgs() << "\n" |
| 4304 | " "; |
| 4305 | Solution[i]->print(dbgs()); |
| 4306 | dbgs() << '\n'; |
| 4307 | }); |
Dan Gohman | 6295f2e | 2010-05-20 20:59:23 +0000 | [diff] [blame] | 4308 | |
| 4309 | assert(Solution.size() == Uses.size() && "Malformed solution!"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4310 | } |
| 4311 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 4312 | /// Helper for AdjustInsertPositionForExpand. Climb up the dominator tree far as |
| 4313 | /// we can go while still being dominated by the input positions. This helps |
| 4314 | /// canonicalize the insert position, which encourages sharing. |
Dan Gohman | 607e02b | 2010-04-09 22:07:05 +0000 | [diff] [blame] | 4315 | BasicBlock::iterator |
| 4316 | LSRInstance::HoistInsertPosition(BasicBlock::iterator IP, |
| 4317 | const SmallVectorImpl<Instruction *> &Inputs) |
| 4318 | const { |
Geoff Berry | 43e5160 | 2016-06-06 19:10:46 +0000 | [diff] [blame] | 4319 | Instruction *Tentative = &*IP; |
Dan Gohman | 607e02b | 2010-04-09 22:07:05 +0000 | [diff] [blame] | 4320 | for (;;) { |
Geoff Berry | 43e5160 | 2016-06-06 19:10:46 +0000 | [diff] [blame] | 4321 | bool AllDominate = true; |
| 4322 | Instruction *BetterPos = nullptr; |
| 4323 | // Don't bother attempting to insert before a catchswitch, their basic block |
| 4324 | // cannot have other non-PHI instructions. |
| 4325 | if (isa<CatchSwitchInst>(Tentative)) |
| 4326 | return IP; |
| 4327 | |
| 4328 | for (Instruction *Inst : Inputs) { |
| 4329 | if (Inst == Tentative || !DT.dominates(Inst, Tentative)) { |
| 4330 | AllDominate = false; |
| 4331 | break; |
| 4332 | } |
| 4333 | // Attempt to find an insert position in the middle of the block, |
| 4334 | // instead of at the end, so that it can be used for other expansions. |
| 4335 | if (Tentative->getParent() == Inst->getParent() && |
| 4336 | (!BetterPos || !DT.dominates(Inst, BetterPos))) |
| 4337 | BetterPos = &*std::next(BasicBlock::iterator(Inst)); |
| 4338 | } |
| 4339 | if (!AllDominate) |
| 4340 | break; |
| 4341 | if (BetterPos) |
| 4342 | IP = BetterPos->getIterator(); |
| 4343 | else |
| 4344 | IP = Tentative->getIterator(); |
| 4345 | |
Dan Gohman | 607e02b | 2010-04-09 22:07:05 +0000 | [diff] [blame] | 4346 | const Loop *IPLoop = LI.getLoopFor(IP->getParent()); |
| 4347 | unsigned IPLoopDepth = IPLoop ? IPLoop->getLoopDepth() : 0; |
| 4348 | |
| 4349 | BasicBlock *IDom; |
Dan Gohman | 8ce95cc | 2010-05-20 20:00:25 +0000 | [diff] [blame] | 4350 | for (DomTreeNode *Rung = DT.getNode(IP->getParent()); ; ) { |
Dan Gohman | 9b48b85 | 2010-05-20 22:46:54 +0000 | [diff] [blame] | 4351 | if (!Rung) return IP; |
Dan Gohman | 8ce95cc | 2010-05-20 20:00:25 +0000 | [diff] [blame] | 4352 | Rung = Rung->getIDom(); |
| 4353 | if (!Rung) return IP; |
| 4354 | IDom = Rung->getBlock(); |
Dan Gohman | 607e02b | 2010-04-09 22:07:05 +0000 | [diff] [blame] | 4355 | |
| 4356 | // Don't climb into a loop though. |
| 4357 | const Loop *IDomLoop = LI.getLoopFor(IDom); |
| 4358 | unsigned IDomDepth = IDomLoop ? IDomLoop->getLoopDepth() : 0; |
| 4359 | if (IDomDepth <= IPLoopDepth && |
| 4360 | (IDomDepth != IPLoopDepth || IDomLoop == IPLoop)) |
| 4361 | break; |
| 4362 | } |
| 4363 | |
Geoff Berry | 43e5160 | 2016-06-06 19:10:46 +0000 | [diff] [blame] | 4364 | Tentative = IDom->getTerminator(); |
Dan Gohman | 607e02b | 2010-04-09 22:07:05 +0000 | [diff] [blame] | 4365 | } |
| 4366 | |
| 4367 | return IP; |
| 4368 | } |
| 4369 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 4370 | /// Determine an input position which will be dominated by the operands and |
| 4371 | /// which will dominate the result. |
Dan Gohman | d2df643 | 2010-04-09 02:00:38 +0000 | [diff] [blame] | 4372 | BasicBlock::iterator |
Andrew Trick | c908b43 | 2012-01-20 07:41:13 +0000 | [diff] [blame] | 4373 | LSRInstance::AdjustInsertPositionForExpand(BasicBlock::iterator LowestIP, |
Dan Gohman | 607e02b | 2010-04-09 22:07:05 +0000 | [diff] [blame] | 4374 | const LSRFixup &LF, |
Andrew Trick | c908b43 | 2012-01-20 07:41:13 +0000 | [diff] [blame] | 4375 | const LSRUse &LU, |
| 4376 | SCEVExpander &Rewriter) const { |
Dan Gohman | d2df643 | 2010-04-09 02:00:38 +0000 | [diff] [blame] | 4377 | // Collect some instructions which must be dominated by the |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 4378 | // expanding replacement. These must be dominated by any operands that |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4379 | // will be required in the expansion. |
| 4380 | SmallVector<Instruction *, 4> Inputs; |
| 4381 | if (Instruction *I = dyn_cast<Instruction>(LF.OperandValToReplace)) |
| 4382 | Inputs.push_back(I); |
| 4383 | if (LU.Kind == LSRUse::ICmpZero) |
| 4384 | if (Instruction *I = |
| 4385 | dyn_cast<Instruction>(cast<ICmpInst>(LF.UserInst)->getOperand(1))) |
| 4386 | Inputs.push_back(I); |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 4387 | if (LF.PostIncLoops.count(L)) { |
| 4388 | if (LF.isUseFullyOutsideLoop(L)) |
Dan Gohman | 52f5563 | 2010-03-02 01:59:21 +0000 | [diff] [blame] | 4389 | Inputs.push_back(L->getLoopLatch()->getTerminator()); |
| 4390 | else |
| 4391 | Inputs.push_back(IVIncInsertPos); |
| 4392 | } |
Dan Gohman | 4506539 | 2010-04-08 05:57:57 +0000 | [diff] [blame] | 4393 | // The expansion must also be dominated by the increment positions of any |
| 4394 | // loops it for which it is using post-inc mode. |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4395 | for (const Loop *PIL : LF.PostIncLoops) { |
Dan Gohman | 4506539 | 2010-04-08 05:57:57 +0000 | [diff] [blame] | 4396 | if (PIL == L) continue; |
| 4397 | |
Dan Gohman | 607e02b | 2010-04-09 22:07:05 +0000 | [diff] [blame] | 4398 | // Be dominated by the loop exit. |
Dan Gohman | 4506539 | 2010-04-08 05:57:57 +0000 | [diff] [blame] | 4399 | SmallVector<BasicBlock *, 4> ExitingBlocks; |
| 4400 | PIL->getExitingBlocks(ExitingBlocks); |
| 4401 | if (!ExitingBlocks.empty()) { |
| 4402 | BasicBlock *BB = ExitingBlocks[0]; |
| 4403 | for (unsigned i = 1, e = ExitingBlocks.size(); i != e; ++i) |
| 4404 | BB = DT.findNearestCommonDominator(BB, ExitingBlocks[i]); |
| 4405 | Inputs.push_back(BB->getTerminator()); |
| 4406 | } |
| 4407 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4408 | |
David Majnemer | ba275f9 | 2015-08-19 19:54:02 +0000 | [diff] [blame] | 4409 | assert(!isa<PHINode>(LowestIP) && !LowestIP->isEHPad() |
Andrew Trick | c908b43 | 2012-01-20 07:41:13 +0000 | [diff] [blame] | 4410 | && !isa<DbgInfoIntrinsic>(LowestIP) && |
| 4411 | "Insertion point must be a normal instruction"); |
| 4412 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4413 | // Then, climb up the immediate dominator tree as far as we can go while |
| 4414 | // still being dominated by the input positions. |
Andrew Trick | c908b43 | 2012-01-20 07:41:13 +0000 | [diff] [blame] | 4415 | BasicBlock::iterator IP = HoistInsertPosition(LowestIP, Inputs); |
Dan Gohman | d2df643 | 2010-04-09 02:00:38 +0000 | [diff] [blame] | 4416 | |
| 4417 | // Don't insert instructions before PHI nodes. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4418 | while (isa<PHINode>(IP)) ++IP; |
Dan Gohman | d2df643 | 2010-04-09 02:00:38 +0000 | [diff] [blame] | 4419 | |
Bill Wendling | 86c5cbe | 2011-08-24 21:06:46 +0000 | [diff] [blame] | 4420 | // Ignore landingpad instructions. |
David Majnemer | e09d035 | 2016-03-24 21:40:22 +0000 | [diff] [blame] | 4421 | while (IP->isEHPad()) ++IP; |
Bill Wendling | 86c5cbe | 2011-08-24 21:06:46 +0000 | [diff] [blame] | 4422 | |
Dan Gohman | d2df643 | 2010-04-09 02:00:38 +0000 | [diff] [blame] | 4423 | // Ignore debug intrinsics. |
Dan Gohman | d42e09d | 2010-03-26 00:33:27 +0000 | [diff] [blame] | 4424 | while (isa<DbgInfoIntrinsic>(IP)) ++IP; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4425 | |
Andrew Trick | c908b43 | 2012-01-20 07:41:13 +0000 | [diff] [blame] | 4426 | // Set IP below instructions recently inserted by SCEVExpander. This keeps the |
| 4427 | // IP consistent across expansions and allows the previously inserted |
| 4428 | // instructions to be reused by subsequent expansion. |
Duncan P. N. Exon Smith | be4d8cb | 2015-10-13 19:26:58 +0000 | [diff] [blame] | 4429 | while (Rewriter.isInsertedInstruction(&*IP) && IP != LowestIP) |
| 4430 | ++IP; |
Andrew Trick | c908b43 | 2012-01-20 07:41:13 +0000 | [diff] [blame] | 4431 | |
Dan Gohman | d2df643 | 2010-04-09 02:00:38 +0000 | [diff] [blame] | 4432 | return IP; |
| 4433 | } |
| 4434 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 4435 | /// Emit instructions for the leading candidate expression for this LSRUse (this |
| 4436 | /// is called "expanding"). |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 4437 | Value *LSRInstance::Expand(const LSRUse &LU, |
| 4438 | const LSRFixup &LF, |
Dan Gohman | d2df643 | 2010-04-09 02:00:38 +0000 | [diff] [blame] | 4439 | const Formula &F, |
| 4440 | BasicBlock::iterator IP, |
| 4441 | SCEVExpander &Rewriter, |
| 4442 | SmallVectorImpl<WeakVH> &DeadInsts) const { |
Andrew Trick | 57243da | 2013-10-25 21:35:56 +0000 | [diff] [blame] | 4443 | if (LU.RigidFormula) |
| 4444 | return LF.OperandValToReplace; |
Dan Gohman | d2df643 | 2010-04-09 02:00:38 +0000 | [diff] [blame] | 4445 | |
| 4446 | // Determine an input position which will be dominated by the operands and |
| 4447 | // which will dominate the result. |
Andrew Trick | c908b43 | 2012-01-20 07:41:13 +0000 | [diff] [blame] | 4448 | IP = AdjustInsertPositionForExpand(IP, LF, LU, Rewriter); |
Geoff Berry | d018280 | 2016-08-11 21:05:17 +0000 | [diff] [blame] | 4449 | Rewriter.setInsertPoint(&*IP); |
Dan Gohman | d2df643 | 2010-04-09 02:00:38 +0000 | [diff] [blame] | 4450 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4451 | // Inform the Rewriter if we have a post-increment use, so that it can |
| 4452 | // perform an advantageous expansion. |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 4453 | Rewriter.setPostInc(LF.PostIncLoops); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4454 | |
| 4455 | // This is the type that the user actually needs. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 4456 | Type *OpTy = LF.OperandValToReplace->getType(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4457 | // This will be the type that we'll initially expand to. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 4458 | Type *Ty = F.getType(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4459 | if (!Ty) |
| 4460 | // No type known; just expand directly to the ultimate type. |
| 4461 | Ty = OpTy; |
| 4462 | else if (SE.getEffectiveSCEVType(Ty) == SE.getEffectiveSCEVType(OpTy)) |
| 4463 | // Expand directly to the ultimate type if it's the right size. |
| 4464 | Ty = OpTy; |
| 4465 | // This is the type to do integer arithmetic in. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 4466 | Type *IntTy = SE.getEffectiveSCEVType(Ty); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4467 | |
| 4468 | // Build up a list of operands to add together to form the full base. |
| 4469 | SmallVector<const SCEV *, 8> Ops; |
| 4470 | |
| 4471 | // Expand the BaseRegs portion. |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4472 | for (const SCEV *Reg : F.BaseRegs) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4473 | assert(!Reg->isZero() && "Zero allocated in a base register!"); |
| 4474 | |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 4475 | // If we're expanding for a post-inc user, make the post-inc adjustment. |
| 4476 | PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops); |
Sanjoy Das | 215df9e | 2015-08-04 01:52:05 +0000 | [diff] [blame] | 4477 | Reg = TransformForPostIncUse(Denormalize, Reg, |
| 4478 | LF.UserInst, LF.OperandValToReplace, |
| 4479 | Loops, SE, DT); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4480 | |
Geoff Berry | d018280 | 2016-08-11 21:05:17 +0000 | [diff] [blame] | 4481 | Ops.push_back(SE.getUnknown(Rewriter.expandCodeFor(Reg, nullptr))); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4482 | } |
| 4483 | |
| 4484 | // Expand the ScaledReg portion. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 4485 | Value *ICmpScaledV = nullptr; |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 4486 | if (F.Scale != 0) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4487 | const SCEV *ScaledS = F.ScaledReg; |
| 4488 | |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 4489 | // If we're expanding for a post-inc user, make the post-inc adjustment. |
| 4490 | PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops); |
Sanjoy Das | 215df9e | 2015-08-04 01:52:05 +0000 | [diff] [blame] | 4491 | ScaledS = TransformForPostIncUse(Denormalize, ScaledS, |
| 4492 | LF.UserInst, LF.OperandValToReplace, |
| 4493 | Loops, SE, DT); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4494 | |
| 4495 | if (LU.Kind == LSRUse::ICmpZero) { |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 4496 | // Expand ScaleReg as if it was part of the base regs. |
| 4497 | if (F.Scale == 1) |
Sanjoy Das | 215df9e | 2015-08-04 01:52:05 +0000 | [diff] [blame] | 4498 | Ops.push_back( |
Geoff Berry | d018280 | 2016-08-11 21:05:17 +0000 | [diff] [blame] | 4499 | SE.getUnknown(Rewriter.expandCodeFor(ScaledS, nullptr))); |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 4500 | else { |
| 4501 | // An interesting way of "folding" with an icmp is to use a negated |
| 4502 | // scale, which we'll implement by inserting it into the other operand |
| 4503 | // of the icmp. |
| 4504 | assert(F.Scale == -1 && |
| 4505 | "The only scale supported by ICmpZero uses is -1!"); |
Geoff Berry | d018280 | 2016-08-11 21:05:17 +0000 | [diff] [blame] | 4506 | ICmpScaledV = Rewriter.expandCodeFor(ScaledS, nullptr); |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 4507 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4508 | } else { |
| 4509 | // Otherwise just expand the scaled register and an explicit scale, |
| 4510 | // which is expected to be matched as part of the address. |
Andrew Trick | 8370c7c | 2012-06-15 20:07:29 +0000 | [diff] [blame] | 4511 | |
| 4512 | // Flush the operand list to suppress SCEVExpander hoisting address modes. |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 4513 | // Unless the addressing mode will not be folded. |
| 4514 | if (!Ops.empty() && LU.Kind == LSRUse::Address && |
| 4515 | isAMCompletelyFolded(TTI, LU, F)) { |
Geoff Berry | d018280 | 2016-08-11 21:05:17 +0000 | [diff] [blame] | 4516 | Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty); |
Andrew Trick | 8370c7c | 2012-06-15 20:07:29 +0000 | [diff] [blame] | 4517 | Ops.clear(); |
| 4518 | Ops.push_back(SE.getUnknown(FullV)); |
| 4519 | } |
Geoff Berry | d018280 | 2016-08-11 21:05:17 +0000 | [diff] [blame] | 4520 | ScaledS = SE.getUnknown(Rewriter.expandCodeFor(ScaledS, nullptr)); |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 4521 | if (F.Scale != 1) |
| 4522 | ScaledS = |
| 4523 | SE.getMulExpr(ScaledS, SE.getConstant(ScaledS->getType(), F.Scale)); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4524 | Ops.push_back(ScaledS); |
| 4525 | } |
| 4526 | } |
| 4527 | |
Dan Gohman | 29707de | 2010-03-03 05:29:13 +0000 | [diff] [blame] | 4528 | // Expand the GV portion. |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 4529 | if (F.BaseGV) { |
Dan Gohman | 29707de | 2010-03-03 05:29:13 +0000 | [diff] [blame] | 4530 | // Flush the operand list to suppress SCEVExpander hoisting. |
Andrew Trick | 8370c7c | 2012-06-15 20:07:29 +0000 | [diff] [blame] | 4531 | if (!Ops.empty()) { |
Geoff Berry | d018280 | 2016-08-11 21:05:17 +0000 | [diff] [blame] | 4532 | Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty); |
Andrew Trick | 8370c7c | 2012-06-15 20:07:29 +0000 | [diff] [blame] | 4533 | Ops.clear(); |
| 4534 | Ops.push_back(SE.getUnknown(FullV)); |
| 4535 | } |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 4536 | Ops.push_back(SE.getUnknown(F.BaseGV)); |
Andrew Trick | 8370c7c | 2012-06-15 20:07:29 +0000 | [diff] [blame] | 4537 | } |
| 4538 | |
| 4539 | // Flush the operand list to suppress SCEVExpander hoisting of both folded and |
| 4540 | // unfolded offsets. LSR assumes they both live next to their uses. |
| 4541 | if (!Ops.empty()) { |
Geoff Berry | d018280 | 2016-08-11 21:05:17 +0000 | [diff] [blame] | 4542 | Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty); |
Dan Gohman | 29707de | 2010-03-03 05:29:13 +0000 | [diff] [blame] | 4543 | Ops.clear(); |
| 4544 | Ops.push_back(SE.getUnknown(FullV)); |
| 4545 | } |
| 4546 | |
| 4547 | // Expand the immediate portion. |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 4548 | int64_t Offset = (uint64_t)F.BaseOffset + LF.Offset; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4549 | if (Offset != 0) { |
| 4550 | if (LU.Kind == LSRUse::ICmpZero) { |
| 4551 | // The other interesting way of "folding" with an ICmpZero is to use a |
| 4552 | // negated immediate. |
| 4553 | if (!ICmpScaledV) |
Eli Friedman | b46345d | 2011-10-13 23:48:33 +0000 | [diff] [blame] | 4554 | ICmpScaledV = ConstantInt::get(IntTy, -(uint64_t)Offset); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4555 | else { |
| 4556 | Ops.push_back(SE.getUnknown(ICmpScaledV)); |
| 4557 | ICmpScaledV = ConstantInt::get(IntTy, Offset); |
| 4558 | } |
| 4559 | } else { |
| 4560 | // Just add the immediate values. These again are expected to be matched |
| 4561 | // as part of the address. |
Dan Gohman | 29707de | 2010-03-03 05:29:13 +0000 | [diff] [blame] | 4562 | Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy, Offset))); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4563 | } |
| 4564 | } |
| 4565 | |
Dan Gohman | 6136e94 | 2011-05-03 00:46:49 +0000 | [diff] [blame] | 4566 | // Expand the unfolded offset portion. |
| 4567 | int64_t UnfoldedOffset = F.UnfoldedOffset; |
| 4568 | if (UnfoldedOffset != 0) { |
| 4569 | // Just add the immediate values. |
| 4570 | Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy, |
| 4571 | UnfoldedOffset))); |
| 4572 | } |
| 4573 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4574 | // Emit instructions summing all the operands. |
| 4575 | const SCEV *FullS = Ops.empty() ? |
Dan Gohman | 1d2ded7 | 2010-05-03 22:09:21 +0000 | [diff] [blame] | 4576 | SE.getConstant(IntTy, 0) : |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4577 | SE.getAddExpr(Ops); |
Geoff Berry | d018280 | 2016-08-11 21:05:17 +0000 | [diff] [blame] | 4578 | Value *FullV = Rewriter.expandCodeFor(FullS, Ty); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4579 | |
| 4580 | // We're done expanding now, so reset the rewriter. |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 4581 | Rewriter.clearPostInc(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4582 | |
| 4583 | // An ICmpZero Formula represents an ICmp which we're handling as a |
| 4584 | // comparison against zero. Now that we've expanded an expression for that |
| 4585 | // form, update the ICmp's other operand. |
| 4586 | if (LU.Kind == LSRUse::ICmpZero) { |
| 4587 | ICmpInst *CI = cast<ICmpInst>(LF.UserInst); |
Benjamin Kramer | f5e2fc4 | 2015-05-29 19:43:39 +0000 | [diff] [blame] | 4588 | DeadInsts.emplace_back(CI->getOperand(1)); |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 4589 | assert(!F.BaseGV && "ICmp does not support folding a global value and " |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4590 | "a scale at the same time!"); |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 4591 | if (F.Scale == -1) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4592 | if (ICmpScaledV->getType() != OpTy) { |
| 4593 | Instruction *Cast = |
| 4594 | CastInst::Create(CastInst::getCastOpcode(ICmpScaledV, false, |
| 4595 | OpTy, false), |
| 4596 | ICmpScaledV, OpTy, "tmp", CI); |
| 4597 | ICmpScaledV = Cast; |
| 4598 | } |
| 4599 | CI->setOperand(1, ICmpScaledV); |
| 4600 | } else { |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 4601 | // A scale of 1 means that the scale has been expanded as part of the |
| 4602 | // base regs. |
| 4603 | assert((F.Scale == 0 || F.Scale == 1) && |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4604 | "ICmp does not support folding a global value and " |
| 4605 | "a scale at the same time!"); |
| 4606 | Constant *C = ConstantInt::getSigned(SE.getEffectiveSCEVType(OpTy), |
| 4607 | -(uint64_t)Offset); |
| 4608 | if (C->getType() != OpTy) |
| 4609 | C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false, |
| 4610 | OpTy, false), |
| 4611 | C, OpTy); |
| 4612 | |
| 4613 | CI->setOperand(1, C); |
| 4614 | } |
| 4615 | } |
| 4616 | |
| 4617 | return FullV; |
| 4618 | } |
| 4619 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 4620 | /// Helper for Rewrite. PHI nodes are special because the use of their operands |
| 4621 | /// effectively happens in their predecessor blocks, so the expression may need |
| 4622 | /// to be expanded in multiple places. |
Dan Gohman | 6deab96 | 2010-02-16 20:25:07 +0000 | [diff] [blame] | 4623 | void LSRInstance::RewriteForPHI(PHINode *PN, |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 4624 | const LSRUse &LU, |
Dan Gohman | 6deab96 | 2010-02-16 20:25:07 +0000 | [diff] [blame] | 4625 | const LSRFixup &LF, |
| 4626 | const Formula &F, |
Dan Gohman | 6deab96 | 2010-02-16 20:25:07 +0000 | [diff] [blame] | 4627 | SCEVExpander &Rewriter, |
Justin Bogner | 843fb20 | 2015-12-15 19:40:57 +0000 | [diff] [blame] | 4628 | SmallVectorImpl<WeakVH> &DeadInsts) const { |
Dan Gohman | 6deab96 | 2010-02-16 20:25:07 +0000 | [diff] [blame] | 4629 | DenseMap<BasicBlock *, Value *> Inserted; |
| 4630 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) |
| 4631 | if (PN->getIncomingValue(i) == LF.OperandValToReplace) { |
| 4632 | BasicBlock *BB = PN->getIncomingBlock(i); |
| 4633 | |
| 4634 | // If this is a critical edge, split the edge so that we do not insert |
| 4635 | // the code on all predecessor/successor paths. We do this unless this |
| 4636 | // is the canonical backedge for this loop, which complicates post-inc |
| 4637 | // users. |
| 4638 | if (e != 1 && BB->getTerminator()->getNumSuccessors() > 1 && |
Dan Gohman | de7f699 | 2011-02-08 00:55:13 +0000 | [diff] [blame] | 4639 | !isa<IndirectBrInst>(BB->getTerminator())) { |
Bill Wendling | 07efd6f | 2011-08-25 01:08:34 +0000 | [diff] [blame] | 4640 | BasicBlock *Parent = PN->getParent(); |
| 4641 | Loop *PNLoop = LI.getLoopFor(Parent); |
| 4642 | if (!PNLoop || Parent != PNLoop->getHeader()) { |
Dan Gohman | de7f699 | 2011-02-08 00:55:13 +0000 | [diff] [blame] | 4643 | // Split the critical edge. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 4644 | BasicBlock *NewBB = nullptr; |
Bill Wendling | 3fb137f | 2011-08-25 05:55:40 +0000 | [diff] [blame] | 4645 | if (!Parent->isLandingPad()) { |
Chandler Carruth | 37df2cf | 2015-01-19 12:09:11 +0000 | [diff] [blame] | 4646 | NewBB = SplitCriticalEdge(BB, Parent, |
| 4647 | CriticalEdgeSplittingOptions(&DT, &LI) |
| 4648 | .setMergeIdenticalEdges() |
| 4649 | .setDontDeleteUselessPHIs()); |
Bill Wendling | 3fb137f | 2011-08-25 05:55:40 +0000 | [diff] [blame] | 4650 | } else { |
| 4651 | SmallVector<BasicBlock*, 2> NewBBs; |
Chandler Carruth | 96ada25 | 2015-07-22 09:52:54 +0000 | [diff] [blame] | 4652 | SplitLandingPadPredecessors(Parent, BB, "", "", NewBBs, &DT, &LI); |
Bill Wendling | 3fb137f | 2011-08-25 05:55:40 +0000 | [diff] [blame] | 4653 | NewBB = NewBBs[0]; |
| 4654 | } |
Andrew Trick | 402edbb | 2012-09-18 17:51:33 +0000 | [diff] [blame] | 4655 | // If NewBB==NULL, then SplitCriticalEdge refused to split because all |
| 4656 | // phi predecessors are identical. The simple thing to do is skip |
| 4657 | // splitting in this case rather than complicate the API. |
| 4658 | if (NewBB) { |
| 4659 | // If PN is outside of the loop and BB is in the loop, we want to |
| 4660 | // move the block to be immediately before the PHI block, not |
| 4661 | // immediately after BB. |
| 4662 | if (L->contains(BB) && !L->contains(PN)) |
| 4663 | NewBB->moveBefore(PN->getParent()); |
Dan Gohman | 6deab96 | 2010-02-16 20:25:07 +0000 | [diff] [blame] | 4664 | |
Andrew Trick | 402edbb | 2012-09-18 17:51:33 +0000 | [diff] [blame] | 4665 | // Splitting the edge can reduce the number of PHI entries we have. |
| 4666 | e = PN->getNumIncomingValues(); |
| 4667 | BB = NewBB; |
| 4668 | i = PN->getBasicBlockIndex(BB); |
| 4669 | } |
Dan Gohman | de7f699 | 2011-02-08 00:55:13 +0000 | [diff] [blame] | 4670 | } |
Dan Gohman | 6deab96 | 2010-02-16 20:25:07 +0000 | [diff] [blame] | 4671 | } |
| 4672 | |
| 4673 | std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> Pair = |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 4674 | Inserted.insert(std::make_pair(BB, static_cast<Value *>(nullptr))); |
Dan Gohman | 6deab96 | 2010-02-16 20:25:07 +0000 | [diff] [blame] | 4675 | if (!Pair.second) |
| 4676 | PN->setIncomingValue(i, Pair.first->second); |
| 4677 | else { |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 4678 | Value *FullV = Expand(LU, LF, F, BB->getTerminator()->getIterator(), |
Duncan P. N. Exon Smith | be4d8cb | 2015-10-13 19:26:58 +0000 | [diff] [blame] | 4679 | Rewriter, DeadInsts); |
Dan Gohman | 6deab96 | 2010-02-16 20:25:07 +0000 | [diff] [blame] | 4680 | |
| 4681 | // If this is reuse-by-noop-cast, insert the noop cast. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 4682 | Type *OpTy = LF.OperandValToReplace->getType(); |
Dan Gohman | 6deab96 | 2010-02-16 20:25:07 +0000 | [diff] [blame] | 4683 | if (FullV->getType() != OpTy) |
| 4684 | FullV = |
| 4685 | CastInst::Create(CastInst::getCastOpcode(FullV, false, |
| 4686 | OpTy, false), |
| 4687 | FullV, LF.OperandValToReplace->getType(), |
| 4688 | "tmp", BB->getTerminator()); |
| 4689 | |
| 4690 | PN->setIncomingValue(i, FullV); |
| 4691 | Pair.first->second = FullV; |
| 4692 | } |
| 4693 | } |
| 4694 | } |
| 4695 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 4696 | /// Emit instructions for the leading candidate expression for this LSRUse (this |
| 4697 | /// is called "expanding"), and update the UserInst to reference the newly |
| 4698 | /// expanded value. |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 4699 | void LSRInstance::Rewrite(const LSRUse &LU, |
| 4700 | const LSRFixup &LF, |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4701 | const Formula &F, |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4702 | SCEVExpander &Rewriter, |
Justin Bogner | 843fb20 | 2015-12-15 19:40:57 +0000 | [diff] [blame] | 4703 | SmallVectorImpl<WeakVH> &DeadInsts) const { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4704 | // First, find an insertion point that dominates UserInst. For PHI nodes, |
| 4705 | // find the nearest block which dominates all the relevant uses. |
| 4706 | if (PHINode *PN = dyn_cast<PHINode>(LF.UserInst)) { |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 4707 | RewriteForPHI(PN, LU, LF, F, Rewriter, DeadInsts); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4708 | } else { |
Duncan P. N. Exon Smith | be4d8cb | 2015-10-13 19:26:58 +0000 | [diff] [blame] | 4709 | Value *FullV = |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 4710 | Expand(LU, LF, F, LF.UserInst->getIterator(), Rewriter, DeadInsts); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4711 | |
| 4712 | // If this is reuse-by-noop-cast, insert the noop cast. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 4713 | Type *OpTy = LF.OperandValToReplace->getType(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4714 | if (FullV->getType() != OpTy) { |
| 4715 | Instruction *Cast = |
| 4716 | CastInst::Create(CastInst::getCastOpcode(FullV, false, OpTy, false), |
| 4717 | FullV, OpTy, "tmp", LF.UserInst); |
| 4718 | FullV = Cast; |
| 4719 | } |
| 4720 | |
| 4721 | // Update the user. ICmpZero is handled specially here (for now) because |
| 4722 | // Expand may have updated one of the operands of the icmp already, and |
| 4723 | // its new value may happen to be equal to LF.OperandValToReplace, in |
| 4724 | // which case doing replaceUsesOfWith leads to replacing both operands |
| 4725 | // with the same value. TODO: Reorganize this. |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 4726 | if (LU.Kind == LSRUse::ICmpZero) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4727 | LF.UserInst->setOperand(0, FullV); |
| 4728 | else |
| 4729 | LF.UserInst->replaceUsesOfWith(LF.OperandValToReplace, FullV); |
| 4730 | } |
| 4731 | |
Benjamin Kramer | f5e2fc4 | 2015-05-29 19:43:39 +0000 | [diff] [blame] | 4732 | DeadInsts.emplace_back(LF.OperandValToReplace); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4733 | } |
| 4734 | |
Sanjoy Das | 94c4aec | 2015-08-16 18:22:46 +0000 | [diff] [blame] | 4735 | /// Rewrite all the fixup locations with new values, following the chosen |
| 4736 | /// solution. |
Justin Bogner | 843fb20 | 2015-12-15 19:40:57 +0000 | [diff] [blame] | 4737 | void LSRInstance::ImplementSolution( |
| 4738 | const SmallVectorImpl<const Formula *> &Solution) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4739 | // Keep track of instructions we may have made dead, so that |
| 4740 | // we can remove them after we are done working. |
| 4741 | SmallVector<WeakVH, 16> DeadInsts; |
| 4742 | |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 4743 | SCEVExpander Rewriter(SE, L->getHeader()->getModule()->getDataLayout(), |
| 4744 | "lsr"); |
Andrew Trick | 4dc3eff | 2012-01-09 18:58:16 +0000 | [diff] [blame] | 4745 | #ifndef NDEBUG |
| 4746 | Rewriter.setDebugType(DEBUG_TYPE); |
| 4747 | #endif |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4748 | Rewriter.disableCanonicalMode(); |
Andrew Trick | 7fb669a | 2011-10-07 23:46:21 +0000 | [diff] [blame] | 4749 | Rewriter.enableLSRMode(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4750 | Rewriter.setIVIncInsertPos(L, IVIncInsertPos); |
| 4751 | |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 4752 | // Mark phi nodes that terminate chains so the expander tries to reuse them. |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4753 | for (const IVChain &Chain : IVChainVec) { |
| 4754 | if (PHINode *PN = dyn_cast<PHINode>(Chain.tailUserInst())) |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 4755 | Rewriter.setChainedPhi(PN); |
| 4756 | } |
| 4757 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4758 | // Expand the new value definitions and update the users. |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 4759 | for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) |
| 4760 | for (const LSRFixup &Fixup : Uses[LUIdx].Fixups) { |
| 4761 | Rewrite(Uses[LUIdx], Fixup, *Solution[LUIdx], Rewriter, DeadInsts); |
| 4762 | Changed = true; |
| 4763 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4764 | |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4765 | for (const IVChain &Chain : IVChainVec) { |
| 4766 | GenerateIVChain(Chain, Rewriter, DeadInsts); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 4767 | Changed = true; |
| 4768 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4769 | // Clean up after ourselves. This must be done before deleting any |
| 4770 | // instructions. |
| 4771 | Rewriter.clear(); |
| 4772 | |
| 4773 | Changed |= DeleteTriviallyDeadInstructions(DeadInsts); |
| 4774 | } |
| 4775 | |
Justin Bogner | 843fb20 | 2015-12-15 19:40:57 +0000 | [diff] [blame] | 4776 | LSRInstance::LSRInstance(Loop *L, IVUsers &IU, ScalarEvolution &SE, |
| 4777 | DominatorTree &DT, LoopInfo &LI, |
| 4778 | const TargetTransformInfo &TTI) |
| 4779 | : IU(IU), SE(SE), DT(DT), LI(LI), TTI(TTI), L(L), Changed(false), |
| 4780 | IVIncInsertPos(nullptr) { |
Dan Gohman | a83ac2d | 2009-11-05 21:11:53 +0000 | [diff] [blame] | 4781 | // If LoopSimplify form is not available, stay out of trouble. |
Andrew Trick | 732ad80 | 2012-01-07 03:16:50 +0000 | [diff] [blame] | 4782 | if (!L->isLoopSimplifyForm()) |
| 4783 | return; |
Dan Gohman | a83ac2d | 2009-11-05 21:11:53 +0000 | [diff] [blame] | 4784 | |
Andrew Trick | 070e540 | 2012-03-16 03:16:56 +0000 | [diff] [blame] | 4785 | // If there's no interesting work to be done, bail early. |
| 4786 | if (IU.empty()) return; |
| 4787 | |
Andrew Trick | 19f80c1 | 2012-04-18 04:00:10 +0000 | [diff] [blame] | 4788 | // If there's too much analysis to be done, bail early. We won't be able to |
| 4789 | // model the problem anyway. |
| 4790 | unsigned NumUsers = 0; |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4791 | for (const IVStrideUse &U : IU) { |
Andrew Trick | 19f80c1 | 2012-04-18 04:00:10 +0000 | [diff] [blame] | 4792 | if (++NumUsers > MaxIVUsers) { |
Craig Topper | 37d0d86 | 2015-05-23 08:20:33 +0000 | [diff] [blame] | 4793 | (void)U; |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4794 | DEBUG(dbgs() << "LSR skipping loop, too many IV Users in " << U << "\n"); |
Andrew Trick | 19f80c1 | 2012-04-18 04:00:10 +0000 | [diff] [blame] | 4795 | return; |
| 4796 | } |
David Majnemer | a53b5bb | 2016-02-03 21:30:34 +0000 | [diff] [blame] | 4797 | // Bail out if we have a PHI on an EHPad that gets a value from a |
| 4798 | // CatchSwitchInst. Because the CatchSwitchInst cannot be split, there is |
| 4799 | // no good place to stick any instructions. |
| 4800 | if (auto *PN = dyn_cast<PHINode>(U.getUser())) { |
| 4801 | auto *FirstNonPHI = PN->getParent()->getFirstNonPHI(); |
| 4802 | if (isa<FuncletPadInst>(FirstNonPHI) || |
| 4803 | isa<CatchSwitchInst>(FirstNonPHI)) |
| 4804 | for (BasicBlock *PredBB : PN->blocks()) |
| 4805 | if (isa<CatchSwitchInst>(PredBB->getFirstNonPHI())) |
| 4806 | return; |
| 4807 | } |
Andrew Trick | 19f80c1 | 2012-04-18 04:00:10 +0000 | [diff] [blame] | 4808 | } |
| 4809 | |
Andrew Trick | 070e540 | 2012-03-16 03:16:56 +0000 | [diff] [blame] | 4810 | #ifndef NDEBUG |
Andrew Trick | 12728f0 | 2012-01-17 06:45:52 +0000 | [diff] [blame] | 4811 | // All dominating loops must have preheaders, or SCEVExpander may not be able |
| 4812 | // to materialize an AddRecExpr whose Start is an outer AddRecExpr. |
| 4813 | // |
Andrew Trick | 070e540 | 2012-03-16 03:16:56 +0000 | [diff] [blame] | 4814 | // IVUsers analysis should only create users that are dominated by simple loop |
| 4815 | // headers. Since this loop should dominate all of its users, its user list |
| 4816 | // should be empty if this loop itself is not within a simple loop nest. |
Andrew Trick | 12728f0 | 2012-01-17 06:45:52 +0000 | [diff] [blame] | 4817 | for (DomTreeNode *Rung = DT.getNode(L->getLoopPreheader()); |
| 4818 | Rung; Rung = Rung->getIDom()) { |
| 4819 | BasicBlock *BB = Rung->getBlock(); |
| 4820 | const Loop *DomLoop = LI.getLoopFor(BB); |
| 4821 | if (DomLoop && DomLoop->getHeader() == BB) { |
Andrew Trick | 070e540 | 2012-03-16 03:16:56 +0000 | [diff] [blame] | 4822 | assert(DomLoop->getLoopPreheader() && "LSR needs a simplified loop nest"); |
Andrew Trick | 12728f0 | 2012-01-17 06:45:52 +0000 | [diff] [blame] | 4823 | } |
Andrew Trick | 732ad80 | 2012-01-07 03:16:50 +0000 | [diff] [blame] | 4824 | } |
Andrew Trick | 070e540 | 2012-03-16 03:16:56 +0000 | [diff] [blame] | 4825 | #endif // DEBUG |
Dan Gohman | 85875f7 | 2009-03-09 20:34:59 +0000 | [diff] [blame] | 4826 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4827 | DEBUG(dbgs() << "\nLSR on loop "; |
Chandler Carruth | d48cdbf | 2014-01-09 02:29:41 +0000 | [diff] [blame] | 4828 | L->getHeader()->printAsOperand(dbgs(), /*PrintType=*/false); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4829 | dbgs() << ":\n"); |
Dan Gohman | e201f8f | 2009-03-09 20:46:50 +0000 | [diff] [blame] | 4830 | |
Dan Gohman | 927bcaa | 2010-05-20 20:33:18 +0000 | [diff] [blame] | 4831 | // First, perform some low-level loop optimizations. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4832 | OptimizeShadowIV(); |
Dan Gohman | 4c4043c | 2010-05-20 20:05:31 +0000 | [diff] [blame] | 4833 | OptimizeLoopTermCond(); |
Evan Cheng | 78a4eb8 | 2009-05-11 22:33:01 +0000 | [diff] [blame] | 4834 | |
Andrew Trick | 8acb434 | 2011-07-21 00:40:04 +0000 | [diff] [blame] | 4835 | // If loop preparation eliminates all interesting IV users, bail. |
| 4836 | if (IU.empty()) return; |
| 4837 | |
Andrew Trick | 168dfff | 2011-09-29 01:53:08 +0000 | [diff] [blame] | 4838 | // Skip nested loops until we can model them better with formulae. |
Andrew Trick | d97b83e | 2012-03-22 22:42:45 +0000 | [diff] [blame] | 4839 | if (!L->empty()) { |
Andrew Trick | bc6de90 | 2011-09-29 01:33:38 +0000 | [diff] [blame] | 4840 | DEBUG(dbgs() << "LSR skipping outer loop " << *L << "\n"); |
Andrew Trick | 168dfff | 2011-09-29 01:53:08 +0000 | [diff] [blame] | 4841 | return; |
Andrew Trick | bc6de90 | 2011-09-29 01:33:38 +0000 | [diff] [blame] | 4842 | } |
| 4843 | |
Dan Gohman | 927bcaa | 2010-05-20 20:33:18 +0000 | [diff] [blame] | 4844 | // Start collecting data and preparing for the solver. |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 4845 | CollectChains(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4846 | CollectInterestingTypesAndFactors(); |
| 4847 | CollectFixupsAndInitialFormulae(); |
| 4848 | CollectLoopInvariantFixupsAndFormulae(); |
Chris Lattner | 9bfa6f8 | 2005-08-08 05:28:22 +0000 | [diff] [blame] | 4849 | |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 4850 | assert(!Uses.empty() && "IVUsers reported at least one use"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4851 | DEBUG(dbgs() << "LSR found " << Uses.size() << " uses:\n"; |
| 4852 | print_uses(dbgs())); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 4853 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4854 | // Now use the reuse data to generate a bunch of interesting ways |
| 4855 | // to formulate the values needed for the uses. |
| 4856 | GenerateAllReuseFormulae(); |
Evan Cheng | 3df447d | 2006-03-16 21:53:05 +0000 | [diff] [blame] | 4857 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4858 | FilterOutUndesirableDedicatedRegisters(); |
| 4859 | NarrowSearchSpaceUsingHeuristics(); |
Dan Gohman | 92c3696 | 2009-12-18 00:06:20 +0000 | [diff] [blame] | 4860 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4861 | SmallVector<const Formula *, 8> Solution; |
| 4862 | Solve(Solution); |
Dan Gohman | 92c3696 | 2009-12-18 00:06:20 +0000 | [diff] [blame] | 4863 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4864 | // Release memory that is no longer needed. |
| 4865 | Factors.clear(); |
| 4866 | Types.clear(); |
| 4867 | RegUses.clear(); |
| 4868 | |
Andrew Trick | 5812439 | 2011-09-27 00:44:14 +0000 | [diff] [blame] | 4869 | if (Solution.empty()) |
| 4870 | return; |
| 4871 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4872 | #ifndef NDEBUG |
| 4873 | // Formulae should be legal. |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4874 | for (const LSRUse &LU : Uses) { |
| 4875 | for (const Formula &F : LU.Formulae) |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 4876 | assert(isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4877 | F) && "Illegal formula generated!"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4878 | }; |
| 4879 | #endif |
| 4880 | |
| 4881 | // Now that we've decided what we want, make it so. |
Justin Bogner | 843fb20 | 2015-12-15 19:40:57 +0000 | [diff] [blame] | 4882 | ImplementSolution(Solution); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4883 | } |
| 4884 | |
| 4885 | void LSRInstance::print_factors_and_types(raw_ostream &OS) const { |
| 4886 | if (Factors.empty() && Types.empty()) return; |
| 4887 | |
| 4888 | OS << "LSR has identified the following interesting factors and types: "; |
| 4889 | bool First = true; |
| 4890 | |
Craig Topper | 10949ae | 2015-05-23 08:45:10 +0000 | [diff] [blame] | 4891 | for (int64_t Factor : Factors) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4892 | if (!First) OS << ", "; |
| 4893 | First = false; |
Craig Topper | 10949ae | 2015-05-23 08:45:10 +0000 | [diff] [blame] | 4894 | OS << '*' << Factor; |
Evan Cheng | 87fe40b | 2009-11-10 21:14:05 +0000 | [diff] [blame] | 4895 | } |
Dale Johannesen | 02cb2bf | 2009-05-11 17:15:42 +0000 | [diff] [blame] | 4896 | |
Craig Topper | 10949ae | 2015-05-23 08:45:10 +0000 | [diff] [blame] | 4897 | for (Type *Ty : Types) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4898 | if (!First) OS << ", "; |
| 4899 | First = false; |
Craig Topper | 10949ae | 2015-05-23 08:45:10 +0000 | [diff] [blame] | 4900 | OS << '(' << *Ty << ')'; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4901 | } |
| 4902 | OS << '\n'; |
| 4903 | } |
| 4904 | |
| 4905 | void LSRInstance::print_fixups(raw_ostream &OS) const { |
| 4906 | OS << "LSR is examining the following fixup sites:\n"; |
Jonas Paulsson | 7a79422 | 2016-08-17 13:24:19 +0000 | [diff] [blame] | 4907 | for (const LSRUse &LU : Uses) |
| 4908 | for (const LSRFixup &LF : LU.Fixups) { |
| 4909 | dbgs() << " "; |
| 4910 | LF.print(OS); |
| 4911 | OS << '\n'; |
| 4912 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4913 | } |
| 4914 | |
| 4915 | void LSRInstance::print_uses(raw_ostream &OS) const { |
| 4916 | OS << "LSR is examining the following uses:\n"; |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4917 | for (const LSRUse &LU : Uses) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4918 | dbgs() << " "; |
| 4919 | LU.print(OS); |
| 4920 | OS << '\n'; |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4921 | for (const Formula &F : LU.Formulae) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4922 | OS << " "; |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4923 | F.print(OS); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4924 | OS << '\n'; |
| 4925 | } |
| 4926 | } |
| 4927 | } |
| 4928 | |
| 4929 | void LSRInstance::print(raw_ostream &OS) const { |
| 4930 | print_factors_and_types(OS); |
| 4931 | print_fixups(OS); |
| 4932 | print_uses(OS); |
| 4933 | } |
| 4934 | |
Davide Italiano | 945d05f | 2015-11-23 02:47:30 +0000 | [diff] [blame] | 4935 | LLVM_DUMP_METHOD |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4936 | void LSRInstance::dump() const { |
| 4937 | print(errs()); errs() << '\n'; |
| 4938 | } |
| 4939 | |
| 4940 | namespace { |
| 4941 | |
| 4942 | class LoopStrengthReduce : public LoopPass { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4943 | public: |
| 4944 | static char ID; // Pass ID, replacement for typeid |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 4945 | LoopStrengthReduce(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4946 | |
| 4947 | private: |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 4948 | bool runOnLoop(Loop *L, LPPassManager &LPM) override; |
| 4949 | void getAnalysisUsage(AnalysisUsage &AU) const override; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4950 | }; |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 4951 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4952 | |
| 4953 | char LoopStrengthReduce::ID = 0; |
Owen Anderson | 8ac477f | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 4954 | INITIALIZE_PASS_BEGIN(LoopStrengthReduce, "loop-reduce", |
Dehao Chen | 6132ee8 | 2016-07-18 21:41:50 +0000 | [diff] [blame] | 4955 | "Loop Strength Reduction", false, false) |
Chandler Carruth | 705b185 | 2015-01-31 03:43:40 +0000 | [diff] [blame] | 4956 | INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass) |
Chandler Carruth | 7352302 | 2014-01-13 13:07:17 +0000 | [diff] [blame] | 4957 | INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) |
Chandler Carruth | 2f1fd16 | 2015-08-17 02:08:17 +0000 | [diff] [blame] | 4958 | INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass) |
Dehao Chen | 1a44452 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 4959 | INITIALIZE_PASS_DEPENDENCY(IVUsersWrapperPass) |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 4960 | INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass) |
Owen Anderson | a4fefc1 | 2010-10-19 20:08:44 +0000 | [diff] [blame] | 4961 | INITIALIZE_PASS_DEPENDENCY(LoopSimplify) |
Owen Anderson | 8ac477f | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 4962 | INITIALIZE_PASS_END(LoopStrengthReduce, "loop-reduce", |
Dehao Chen | 6132ee8 | 2016-07-18 21:41:50 +0000 | [diff] [blame] | 4963 | "Loop Strength Reduction", false, false) |
Owen Anderson | 8ac477f | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 4964 | |
Dehao Chen | 6132ee8 | 2016-07-18 21:41:50 +0000 | [diff] [blame] | 4965 | Pass *llvm::createLoopStrengthReducePass() { return new LoopStrengthReduce(); } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4966 | |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 4967 | LoopStrengthReduce::LoopStrengthReduce() : LoopPass(ID) { |
| 4968 | initializeLoopStrengthReducePass(*PassRegistry::getPassRegistry()); |
| 4969 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4970 | |
| 4971 | void LoopStrengthReduce::getAnalysisUsage(AnalysisUsage &AU) const { |
| 4972 | // We split critical edges, so we change the CFG. However, we do update |
| 4973 | // many analyses if they are around. |
Eric Christopher | da6bd45 | 2011-02-10 01:48:24 +0000 | [diff] [blame] | 4974 | AU.addPreservedID(LoopSimplifyID); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4975 | |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 4976 | AU.addRequired<LoopInfoWrapperPass>(); |
| 4977 | AU.addPreserved<LoopInfoWrapperPass>(); |
Eric Christopher | da6bd45 | 2011-02-10 01:48:24 +0000 | [diff] [blame] | 4978 | AU.addRequiredID(LoopSimplifyID); |
Chandler Carruth | 7352302 | 2014-01-13 13:07:17 +0000 | [diff] [blame] | 4979 | AU.addRequired<DominatorTreeWrapperPass>(); |
| 4980 | AU.addPreserved<DominatorTreeWrapperPass>(); |
Chandler Carruth | 2f1fd16 | 2015-08-17 02:08:17 +0000 | [diff] [blame] | 4981 | AU.addRequired<ScalarEvolutionWrapperPass>(); |
| 4982 | AU.addPreserved<ScalarEvolutionWrapperPass>(); |
Cameron Zwarich | 97dae4d | 2011-02-10 23:53:14 +0000 | [diff] [blame] | 4983 | // Requiring LoopSimplify a second time here prevents IVUsers from running |
| 4984 | // twice, since LoopSimplify was invalidated by running ScalarEvolution. |
| 4985 | AU.addRequiredID(LoopSimplifyID); |
Dehao Chen | 1a44452 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 4986 | AU.addRequired<IVUsersWrapperPass>(); |
| 4987 | AU.addPreserved<IVUsersWrapperPass>(); |
Chandler Carruth | 705b185 | 2015-01-31 03:43:40 +0000 | [diff] [blame] | 4988 | AU.addRequired<TargetTransformInfoWrapperPass>(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4989 | } |
| 4990 | |
Dehao Chen | 6132ee8 | 2016-07-18 21:41:50 +0000 | [diff] [blame] | 4991 | static bool ReduceLoopStrength(Loop *L, IVUsers &IU, ScalarEvolution &SE, |
| 4992 | DominatorTree &DT, LoopInfo &LI, |
| 4993 | const TargetTransformInfo &TTI) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4994 | bool Changed = false; |
| 4995 | |
| 4996 | // Run the main LSR transformation. |
Justin Bogner | 843fb20 | 2015-12-15 19:40:57 +0000 | [diff] [blame] | 4997 | Changed |= LSRInstance(L, IU, SE, DT, LI, TTI).getChanged(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4998 | |
Andrew Trick | 2ec61a8 | 2012-01-07 01:36:44 +0000 | [diff] [blame] | 4999 | // Remove any extra phis created by processing inner loops. |
Dan Gohman | b535800 | 2010-01-05 16:31:45 +0000 | [diff] [blame] | 5000 | Changed |= DeleteDeadPHIs(L->getHeader()); |
Andrew Trick | f950ce8 | 2013-01-06 05:59:39 +0000 | [diff] [blame] | 5001 | if (EnablePhiElim && L->isLoopSimplifyForm()) { |
Andrew Trick | 2ec61a8 | 2012-01-07 01:36:44 +0000 | [diff] [blame] | 5002 | SmallVector<WeakVH, 16> DeadInsts; |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 5003 | const DataLayout &DL = L->getHeader()->getModule()->getDataLayout(); |
Dehao Chen | 6132ee8 | 2016-07-18 21:41:50 +0000 | [diff] [blame] | 5004 | SCEVExpander Rewriter(SE, DL, "lsr"); |
Andrew Trick | 2ec61a8 | 2012-01-07 01:36:44 +0000 | [diff] [blame] | 5005 | #ifndef NDEBUG |
| 5006 | Rewriter.setDebugType(DEBUG_TYPE); |
| 5007 | #endif |
Dehao Chen | 6132ee8 | 2016-07-18 21:41:50 +0000 | [diff] [blame] | 5008 | unsigned numFolded = Rewriter.replaceCongruentIVs(L, &DT, DeadInsts, &TTI); |
Andrew Trick | 2ec61a8 | 2012-01-07 01:36:44 +0000 | [diff] [blame] | 5009 | if (numFolded) { |
| 5010 | Changed = true; |
| 5011 | DeleteTriviallyDeadInstructions(DeadInsts); |
| 5012 | DeleteDeadPHIs(L->getHeader()); |
| 5013 | } |
| 5014 | } |
Evan Cheng | 03001cb | 2008-07-07 19:51:32 +0000 | [diff] [blame] | 5015 | return Changed; |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 5016 | } |
Dehao Chen | 6132ee8 | 2016-07-18 21:41:50 +0000 | [diff] [blame] | 5017 | |
| 5018 | bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager & /*LPM*/) { |
| 5019 | if (skipLoop(L)) |
| 5020 | return false; |
| 5021 | |
| 5022 | auto &IU = getAnalysis<IVUsersWrapperPass>().getIU(); |
| 5023 | auto &SE = getAnalysis<ScalarEvolutionWrapperPass>().getSE(); |
| 5024 | auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree(); |
| 5025 | auto &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo(); |
| 5026 | const auto &TTI = getAnalysis<TargetTransformInfoWrapperPass>().getTTI( |
| 5027 | *L->getHeader()->getParent()); |
| 5028 | return ReduceLoopStrength(L, IU, SE, DT, LI, TTI); |
| 5029 | } |
| 5030 | |
| 5031 | PreservedAnalyses LoopStrengthReducePass::run(Loop &L, |
Sean Silva | 0746f3b | 2016-08-09 00:28:52 +0000 | [diff] [blame] | 5032 | LoopAnalysisManager &AM) { |
Dehao Chen | 6132ee8 | 2016-07-18 21:41:50 +0000 | [diff] [blame] | 5033 | const auto &FAM = |
| 5034 | AM.getResult<FunctionAnalysisManagerLoopProxy>(L).getManager(); |
| 5035 | Function *F = L.getHeader()->getParent(); |
| 5036 | |
| 5037 | auto &IU = AM.getResult<IVUsersAnalysis>(L); |
| 5038 | auto *SE = FAM.getCachedResult<ScalarEvolutionAnalysis>(*F); |
| 5039 | auto *DT = FAM.getCachedResult<DominatorTreeAnalysis>(*F); |
| 5040 | auto *LI = FAM.getCachedResult<LoopAnalysis>(*F); |
| 5041 | auto *TTI = FAM.getCachedResult<TargetIRAnalysis>(*F); |
| 5042 | assert((SE && DT && LI && TTI) && |
| 5043 | "Analyses for Loop Strength Reduce not available"); |
| 5044 | |
| 5045 | if (!ReduceLoopStrength(&L, IU, *SE, *DT, *LI, *TTI)) |
| 5046 | return PreservedAnalyses::all(); |
| 5047 | |
| 5048 | return getLoopPassPreservedAnalyses(); |
| 5049 | } |