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 | |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 56 | #include "llvm/Transforms/Scalar.h" |
| 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" |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 64 | #include "llvm/Analysis/ScalarEvolutionExpander.h" |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 65 | #include "llvm/Analysis/TargetTransformInfo.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 66 | #include "llvm/IR/Constants.h" |
| 67 | #include "llvm/IR/DerivedTypes.h" |
Chandler Carruth | 5ad5f15 | 2014-01-13 09:26:24 +0000 | [diff] [blame] | 68 | #include "llvm/IR/Dominators.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 69 | #include "llvm/IR/Instructions.h" |
| 70 | #include "llvm/IR/IntrinsicInst.h" |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 71 | #include "llvm/IR/Module.h" |
Chandler Carruth | 4220e9c | 2014-03-04 11:17:44 +0000 | [diff] [blame] | 72 | #include "llvm/IR/ValueHandle.h" |
Andrew Trick | 5812439 | 2011-09-27 00:44:14 +0000 | [diff] [blame] | 73 | #include "llvm/Support/CommandLine.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 74 | #include "llvm/Support/Debug.h" |
Daniel Dunbar | 6115b39 | 2009-07-26 09:48:23 +0000 | [diff] [blame] | 75 | #include "llvm/Support/raw_ostream.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 76 | #include "llvm/Transforms/Utils/BasicBlockUtils.h" |
| 77 | #include "llvm/Transforms/Utils/Local.h" |
Jeff Cohen | c500991 | 2005-07-30 18:22:27 +0000 | [diff] [blame] | 78 | #include <algorithm> |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 79 | using namespace llvm; |
| 80 | |
Chandler Carruth | 964daaa | 2014-04-22 02:55:47 +0000 | [diff] [blame] | 81 | #define DEBUG_TYPE "loop-reduce" |
| 82 | |
Andrew Trick | 19f80c1 | 2012-04-18 04:00:10 +0000 | [diff] [blame] | 83 | /// MaxIVUsers is an arbitrary threshold that provides an early opportunitiy for |
| 84 | /// bail out. This threshold is far beyond the number of users that LSR can |
| 85 | /// conceivably solve, so it should not affect generated code, but catches the |
| 86 | /// worst cases before LSR burns too much compile time and stack space. |
| 87 | static const unsigned MaxIVUsers = 200; |
| 88 | |
Andrew Trick | ecbe22b | 2011-10-11 02:30:45 +0000 | [diff] [blame] | 89 | // Temporary flag to cleanup congruent phis after LSR phi expansion. |
| 90 | // It's currently disabled until we can determine whether it's truly useful or |
| 91 | // not. The flag should be removed after the v3.0 release. |
Andrew Trick | 06f6c05 | 2012-01-07 07:08:17 +0000 | [diff] [blame] | 92 | // This is now needed for ivchains. |
Benjamin Kramer | 7ba71be | 2011-11-26 23:01:57 +0000 | [diff] [blame] | 93 | static cl::opt<bool> EnablePhiElim( |
Andrew Trick | 06f6c05 | 2012-01-07 07:08:17 +0000 | [diff] [blame] | 94 | "enable-lsr-phielim", cl::Hidden, cl::init(true), |
| 95 | cl::desc("Enable LSR phi elimination")); |
Andrew Trick | 5812439 | 2011-09-27 00:44:14 +0000 | [diff] [blame] | 96 | |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 97 | #ifndef NDEBUG |
| 98 | // Stress test IV chain generation. |
| 99 | static cl::opt<bool> StressIVChain( |
| 100 | "stress-ivchain", cl::Hidden, cl::init(false), |
| 101 | cl::desc("Stress test LSR IV chains")); |
| 102 | #else |
| 103 | static bool StressIVChain = false; |
| 104 | #endif |
| 105 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 106 | namespace { |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 107 | |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 108 | struct MemAccessTy { |
| 109 | /// Used in situations where the accessed memory type is unknown. |
| 110 | static const unsigned UnknownAddressSpace = ~0u; |
| 111 | |
| 112 | Type *MemTy; |
| 113 | unsigned AddrSpace; |
| 114 | |
| 115 | MemAccessTy() : MemTy(nullptr), AddrSpace(UnknownAddressSpace) {} |
| 116 | |
| 117 | MemAccessTy(Type *Ty, unsigned AS) : |
| 118 | MemTy(Ty), AddrSpace(AS) {} |
| 119 | |
| 120 | bool operator==(MemAccessTy Other) const { |
| 121 | return MemTy == Other.MemTy && AddrSpace == Other.AddrSpace; |
| 122 | } |
| 123 | |
| 124 | bool operator!=(MemAccessTy Other) const { return !(*this == Other); } |
| 125 | |
| 126 | static MemAccessTy getUnknown(LLVMContext &Ctx) { |
| 127 | return MemAccessTy(Type::getVoidTy(Ctx), UnknownAddressSpace); |
| 128 | } |
| 129 | }; |
| 130 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 131 | /// RegSortData - This class holds data which is used to order reuse candidates. |
| 132 | class RegSortData { |
| 133 | public: |
| 134 | /// UsedByIndices - This represents the set of LSRUse indices which reference |
| 135 | /// a particular register. |
| 136 | SmallBitVector UsedByIndices; |
| 137 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 138 | void print(raw_ostream &OS) const; |
| 139 | void dump() const; |
| 140 | }; |
| 141 | |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 142 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 143 | |
| 144 | void RegSortData::print(raw_ostream &OS) const { |
| 145 | OS << "[NumUses=" << UsedByIndices.count() << ']'; |
| 146 | } |
| 147 | |
Manman Ren | 49d684e | 2012-09-12 05:06:18 +0000 | [diff] [blame] | 148 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 149 | void RegSortData::dump() const { |
| 150 | print(errs()); errs() << '\n'; |
| 151 | } |
Manman Ren | c3366cc | 2012-09-06 19:55:56 +0000 | [diff] [blame] | 152 | #endif |
Dan Gohman | 2a12ae7 | 2009-02-20 04:17:46 +0000 | [diff] [blame] | 153 | |
Chris Lattner | 79a42ac | 2006-12-19 21:40:18 +0000 | [diff] [blame] | 154 | namespace { |
Dale Johannesen | e3a02be | 2007-03-20 00:47:50 +0000 | [diff] [blame] | 155 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 156 | /// RegUseTracker - Map register candidates to information about how they are |
| 157 | /// used. |
| 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: |
| 165 | void CountRegister(const SCEV *Reg, size_t LUIdx); |
Dan Gohman | 4cf99b5 | 2010-05-18 23:42:37 +0000 | [diff] [blame] | 166 | void DropRegister(const SCEV *Reg, size_t LUIdx); |
Dan Gohman | a7b68d6 | 2010-10-07 23:33:43 +0000 | [diff] [blame] | 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 |
| 186 | RegUseTracker::CountRegister(const SCEV *Reg, size_t LUIdx) { |
| 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 |
| 197 | RegUseTracker::DropRegister(const SCEV *Reg, size_t LUIdx) { |
| 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 |
Dan Gohman | a7b68d6 | 2010-10-07 23:33:43 +0000 | [diff] [blame] | 206 | RegUseTracker::SwapAndDropUse(size_t LUIdx, size_t LastLUIdx) { |
| 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 | |
| 245 | /// Formula - This class holds information that describes a formula for |
| 246 | /// computing satisfying a use. It may include broken-out immediates and scaled |
| 247 | /// registers. |
| 248 | struct Formula { |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 249 | /// Global base address used for complex addressing. |
| 250 | GlobalValue *BaseGV; |
| 251 | |
| 252 | /// Base offset for complex addressing. |
| 253 | int64_t BaseOffset; |
| 254 | |
| 255 | /// Whether any complex addressing has a base register. |
| 256 | bool HasBaseReg; |
| 257 | |
| 258 | /// The scale of any complex addressing. |
| 259 | int64_t Scale; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 260 | |
| 261 | /// BaseRegs - The list of "base" registers for this use. When this is |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 262 | /// non-empty. The canonical representation of a formula is |
| 263 | /// 1. BaseRegs.size > 1 implies ScaledReg != NULL and |
| 264 | /// 2. ScaledReg != NULL implies Scale != 1 || !BaseRegs.empty(). |
| 265 | /// #1 enforces that the scaled register is always used when at least two |
| 266 | /// registers are needed by the formula: e.g., reg1 + reg2 is reg1 + 1 * reg2. |
| 267 | /// #2 enforces that 1 * reg is reg. |
| 268 | /// This invariant can be temporarly broken while building a formula. |
| 269 | /// However, every formula inserted into the LSRInstance must be in canonical |
| 270 | /// form. |
Preston Gurd | 25c3b6a | 2013-02-01 20:41:27 +0000 | [diff] [blame] | 271 | SmallVector<const SCEV *, 4> BaseRegs; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 272 | |
| 273 | /// ScaledReg - The 'scaled' register for this use. This should be non-null |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 274 | /// when Scale is not zero. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 275 | const SCEV *ScaledReg; |
| 276 | |
Dan Gohman | 6136e94 | 2011-05-03 00:46:49 +0000 | [diff] [blame] | 277 | /// UnfoldedOffset - An additional constant offset which added near the |
| 278 | /// use. This requires a temporary register, but the offset itself can |
| 279 | /// live in an add immediate field rather than a register. |
| 280 | int64_t UnfoldedOffset; |
| 281 | |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 282 | Formula() |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 283 | : BaseGV(nullptr), BaseOffset(0), HasBaseReg(false), Scale(0), |
Sanjoy Das | 215df9e | 2015-08-04 01:52:05 +0000 | [diff] [blame] | 284 | ScaledReg(nullptr), UnfoldedOffset(0) {} |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 285 | |
Dan Gohman | 20d9ce2 | 2010-11-17 21:41:58 +0000 | [diff] [blame] | 286 | void InitialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 287 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 288 | bool isCanonical() const; |
| 289 | |
| 290 | void Canonicalize(); |
| 291 | |
| 292 | bool Unscale(); |
| 293 | |
Adam Nemet | deab6f9 | 2014-04-29 18:25:28 +0000 | [diff] [blame] | 294 | size_t getNumRegs() const; |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 295 | Type *getType() const; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 296 | |
Dan Gohman | 80a9608 | 2010-05-20 15:17:54 +0000 | [diff] [blame] | 297 | void DeleteBaseReg(const SCEV *&S); |
| 298 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 299 | bool referencesReg(const SCEV *S) const; |
| 300 | bool hasRegsUsedByUsesOtherThan(size_t LUIdx, |
| 301 | const RegUseTracker &RegUses) const; |
| 302 | |
| 303 | void print(raw_ostream &OS) const; |
| 304 | void dump() const; |
| 305 | }; |
| 306 | |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 307 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 308 | |
Dan Gohman | 8b0a419 | 2010-03-01 17:49:51 +0000 | [diff] [blame] | 309 | /// DoInitialMatch - Recursion helper for InitialMatch. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 310 | static void DoInitialMatch(const SCEV *S, Loop *L, |
| 311 | SmallVectorImpl<const SCEV *> &Good, |
| 312 | SmallVectorImpl<const SCEV *> &Bad, |
Dan Gohman | 20d9ce2 | 2010-11-17 21:41:58 +0000 | [diff] [blame] | 313 | ScalarEvolution &SE) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 314 | // Collect expressions which properly dominate the loop header. |
Dan Gohman | 20d9ce2 | 2010-11-17 21:41:58 +0000 | [diff] [blame] | 315 | if (SE.properlyDominates(S, L->getHeader())) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 316 | Good.push_back(S); |
| 317 | return; |
Dan Gohman | 51ad99d | 2010-01-21 02:09:26 +0000 | [diff] [blame] | 318 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 319 | |
| 320 | // Look at add operands. |
| 321 | if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) { |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 322 | for (const SCEV *S : Add->operands()) |
| 323 | DoInitialMatch(S, L, Good, Bad, SE); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 324 | return; |
| 325 | } |
| 326 | |
| 327 | // Look at addrec operands. |
| 328 | if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) |
| 329 | if (!AR->getStart()->isZero()) { |
Dan Gohman | 20d9ce2 | 2010-11-17 21:41:58 +0000 | [diff] [blame] | 330 | DoInitialMatch(AR->getStart(), L, Good, Bad, SE); |
Dan Gohman | 1d2ded7 | 2010-05-03 22:09:21 +0000 | [diff] [blame] | 331 | DoInitialMatch(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0), |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 332 | AR->getStepRecurrence(SE), |
Andrew Trick | 8b55b73 | 2011-03-14 16:50:06 +0000 | [diff] [blame] | 333 | // FIXME: AR->getNoWrapFlags() |
| 334 | AR->getLoop(), SCEV::FlagAnyWrap), |
Dan Gohman | 20d9ce2 | 2010-11-17 21:41:58 +0000 | [diff] [blame] | 335 | L, Good, Bad, SE); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 336 | return; |
| 337 | } |
| 338 | |
| 339 | // Handle a multiplication by -1 (negation) if it didn't fold. |
| 340 | if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) |
| 341 | if (Mul->getOperand(0)->isAllOnesValue()) { |
| 342 | SmallVector<const SCEV *, 4> Ops(Mul->op_begin()+1, Mul->op_end()); |
| 343 | const SCEV *NewMul = SE.getMulExpr(Ops); |
| 344 | |
| 345 | SmallVector<const SCEV *, 4> MyGood; |
| 346 | SmallVector<const SCEV *, 4> MyBad; |
Dan Gohman | 20d9ce2 | 2010-11-17 21:41:58 +0000 | [diff] [blame] | 347 | DoInitialMatch(NewMul, L, MyGood, MyBad, SE); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 348 | const SCEV *NegOne = SE.getSCEV(ConstantInt::getAllOnesValue( |
| 349 | SE.getEffectiveSCEVType(NewMul->getType()))); |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 350 | for (const SCEV *S : MyGood) |
| 351 | Good.push_back(SE.getMulExpr(NegOne, S)); |
| 352 | for (const SCEV *S : MyBad) |
| 353 | Bad.push_back(SE.getMulExpr(NegOne, S)); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 354 | return; |
| 355 | } |
| 356 | |
| 357 | // Ok, we can't do anything interesting. Just stuff the whole thing into a |
| 358 | // register and hope for the best. |
| 359 | Bad.push_back(S); |
| 360 | } |
| 361 | |
| 362 | /// InitialMatch - Incorporate loop-variant parts of S into this Formula, |
| 363 | /// attempting to keep all loop-invariant and loop-computable values in a |
| 364 | /// single base register. |
Dan Gohman | 20d9ce2 | 2010-11-17 21:41:58 +0000 | [diff] [blame] | 365 | void Formula::InitialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 366 | SmallVector<const SCEV *, 4> Good; |
| 367 | SmallVector<const SCEV *, 4> Bad; |
Dan Gohman | 20d9ce2 | 2010-11-17 21:41:58 +0000 | [diff] [blame] | 368 | DoInitialMatch(S, L, Good, Bad, SE); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 369 | if (!Good.empty()) { |
Dan Gohman | 9b5d0bb7 | 2010-04-08 23:36:27 +0000 | [diff] [blame] | 370 | const SCEV *Sum = SE.getAddExpr(Good); |
| 371 | if (!Sum->isZero()) |
| 372 | BaseRegs.push_back(Sum); |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 373 | HasBaseReg = true; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 374 | } |
| 375 | if (!Bad.empty()) { |
Dan Gohman | 9b5d0bb7 | 2010-04-08 23:36:27 +0000 | [diff] [blame] | 376 | const SCEV *Sum = SE.getAddExpr(Bad); |
| 377 | if (!Sum->isZero()) |
| 378 | BaseRegs.push_back(Sum); |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 379 | HasBaseReg = true; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 380 | } |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 381 | Canonicalize(); |
| 382 | } |
| 383 | |
| 384 | /// \brief Check whether or not this formula statisfies the canonical |
| 385 | /// representation. |
| 386 | /// \see Formula::BaseRegs. |
| 387 | bool Formula::isCanonical() const { |
| 388 | if (ScaledReg) |
| 389 | return Scale != 1 || !BaseRegs.empty(); |
| 390 | return BaseRegs.size() <= 1; |
| 391 | } |
| 392 | |
| 393 | /// \brief Helper method to morph a formula into its canonical representation. |
| 394 | /// \see Formula::BaseRegs. |
| 395 | /// Every formula having more than one base register, must use the ScaledReg |
| 396 | /// field. Otherwise, we would have to do special cases everywhere in LSR |
| 397 | /// to treat reg1 + reg2 + ... the same way as reg1 + 1*reg2 + ... |
| 398 | /// On the other hand, 1*reg should be canonicalized into reg. |
| 399 | void Formula::Canonicalize() { |
| 400 | if (isCanonical()) |
| 401 | return; |
| 402 | // So far we did not need this case. This is easy to implement but it is |
| 403 | // useless to maintain dead code. Beside it could hurt compile time. |
| 404 | assert(!BaseRegs.empty() && "1*reg => reg, should not be needed."); |
| 405 | // Keep the invariant sum in BaseRegs and one of the variant sum in ScaledReg. |
| 406 | ScaledReg = BaseRegs.back(); |
| 407 | BaseRegs.pop_back(); |
| 408 | Scale = 1; |
| 409 | size_t BaseRegsSize = BaseRegs.size(); |
| 410 | size_t Try = 0; |
| 411 | // If ScaledReg is an invariant, try to find a variant expression. |
| 412 | while (Try < BaseRegsSize && !isa<SCEVAddRecExpr>(ScaledReg)) |
| 413 | std::swap(ScaledReg, BaseRegs[Try++]); |
| 414 | } |
| 415 | |
| 416 | /// \brief Get rid of the scale in the formula. |
| 417 | /// In other words, this method morphes reg1 + 1*reg2 into reg1 + reg2. |
| 418 | /// \return true if it was possible to get rid of the scale, false otherwise. |
| 419 | /// \note After this operation the formula may not be in the canonical form. |
| 420 | bool Formula::Unscale() { |
| 421 | if (Scale != 1) |
| 422 | return false; |
| 423 | Scale = 0; |
| 424 | BaseRegs.push_back(ScaledReg); |
| 425 | ScaledReg = nullptr; |
| 426 | return true; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 427 | } |
| 428 | |
| 429 | /// getNumRegs - Return the total number of register operands used by this |
| 430 | /// formula. This does not include register uses implied by non-constant |
| 431 | /// addrec strides. |
Adam Nemet | deab6f9 | 2014-04-29 18:25:28 +0000 | [diff] [blame] | 432 | size_t Formula::getNumRegs() const { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 433 | return !!ScaledReg + BaseRegs.size(); |
| 434 | } |
| 435 | |
| 436 | /// getType - Return the type of this formula, if it has one, or null |
| 437 | /// otherwise. This type is meaningless except for the bit size. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 438 | Type *Formula::getType() const { |
Sanjoy Das | 215df9e | 2015-08-04 01:52:05 +0000 | [diff] [blame] | 439 | return !BaseRegs.empty() ? BaseRegs.front()->getType() : |
| 440 | ScaledReg ? ScaledReg->getType() : |
| 441 | BaseGV ? BaseGV->getType() : |
| 442 | nullptr; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 443 | } |
| 444 | |
Dan Gohman | 80a9608 | 2010-05-20 15:17:54 +0000 | [diff] [blame] | 445 | /// DeleteBaseReg - Delete the given base reg from the BaseRegs list. |
| 446 | void Formula::DeleteBaseReg(const SCEV *&S) { |
| 447 | if (&S != &BaseRegs.back()) |
| 448 | std::swap(S, BaseRegs.back()); |
| 449 | BaseRegs.pop_back(); |
| 450 | } |
| 451 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 452 | /// referencesReg - Test if this formula references the given register. |
| 453 | bool Formula::referencesReg(const SCEV *S) const { |
| 454 | return S == ScaledReg || |
| 455 | std::find(BaseRegs.begin(), BaseRegs.end(), S) != BaseRegs.end(); |
| 456 | } |
| 457 | |
| 458 | /// hasRegsUsedByUsesOtherThan - Test whether this formula uses registers |
| 459 | /// which are used by uses other than the use with the given index. |
| 460 | bool Formula::hasRegsUsedByUsesOtherThan(size_t LUIdx, |
| 461 | const RegUseTracker &RegUses) const { |
| 462 | if (ScaledReg) |
| 463 | if (RegUses.isRegUsedByUsesOtherThan(ScaledReg, LUIdx)) |
| 464 | return true; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 465 | for (const SCEV *BaseReg : BaseRegs) |
| 466 | if (RegUses.isRegUsedByUsesOtherThan(BaseReg, LUIdx)) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 467 | return true; |
| 468 | return false; |
| 469 | } |
| 470 | |
| 471 | void Formula::print(raw_ostream &OS) const { |
| 472 | bool First = true; |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 473 | if (BaseGV) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 474 | if (!First) OS << " + "; else First = false; |
Chandler Carruth | d48cdbf | 2014-01-09 02:29:41 +0000 | [diff] [blame] | 475 | BaseGV->printAsOperand(OS, /*PrintType=*/false); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 476 | } |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 477 | if (BaseOffset != 0) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 478 | if (!First) OS << " + "; else First = false; |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 479 | OS << BaseOffset; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 480 | } |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 481 | for (const SCEV *BaseReg : BaseRegs) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 482 | if (!First) OS << " + "; else First = false; |
Sanjoy Das | 215df9e | 2015-08-04 01:52:05 +0000 | [diff] [blame] | 483 | OS << "reg(" << *BaseReg << ')'; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 484 | } |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 485 | if (HasBaseReg && BaseRegs.empty()) { |
Dan Gohman | 06ab08f | 2010-05-18 22:35:55 +0000 | [diff] [blame] | 486 | if (!First) OS << " + "; else First = false; |
| 487 | OS << "**error: HasBaseReg**"; |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 488 | } else if (!HasBaseReg && !BaseRegs.empty()) { |
Dan Gohman | 06ab08f | 2010-05-18 22:35:55 +0000 | [diff] [blame] | 489 | if (!First) OS << " + "; else First = false; |
| 490 | OS << "**error: !HasBaseReg**"; |
| 491 | } |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 492 | if (Scale != 0) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 493 | if (!First) OS << " + "; else First = false; |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 494 | OS << Scale << "*reg("; |
Sanjoy Das | 215df9e | 2015-08-04 01:52:05 +0000 | [diff] [blame] | 495 | if (ScaledReg) |
| 496 | OS << *ScaledReg; |
| 497 | else |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 498 | OS << "<unknown>"; |
| 499 | OS << ')'; |
| 500 | } |
Dan Gohman | 6136e94 | 2011-05-03 00:46:49 +0000 | [diff] [blame] | 501 | if (UnfoldedOffset != 0) { |
Arnaud A. de Grandmaison | 75c9e6d | 2014-03-15 22:13:15 +0000 | [diff] [blame] | 502 | if (!First) OS << " + "; |
Dan Gohman | 6136e94 | 2011-05-03 00:46:49 +0000 | [diff] [blame] | 503 | OS << "imm(" << UnfoldedOffset << ')'; |
| 504 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 505 | } |
| 506 | |
Manman Ren | 49d684e | 2012-09-12 05:06:18 +0000 | [diff] [blame] | 507 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 508 | void Formula::dump() const { |
| 509 | print(errs()); errs() << '\n'; |
| 510 | } |
Manman Ren | c3366cc | 2012-09-06 19:55:56 +0000 | [diff] [blame] | 511 | #endif |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 512 | |
Dan Gohman | 85af256 | 2010-02-19 19:32:49 +0000 | [diff] [blame] | 513 | /// isAddRecSExtable - Return true if the given addrec can be sign-extended |
| 514 | /// without changing its value. |
| 515 | static bool isAddRecSExtable(const SCEVAddRecExpr *AR, ScalarEvolution &SE) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 516 | Type *WideTy = |
Dan Gohman | ab5fb7f | 2010-05-20 19:44:23 +0000 | [diff] [blame] | 517 | IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(AR->getType()) + 1); |
Dan Gohman | 85af256 | 2010-02-19 19:32:49 +0000 | [diff] [blame] | 518 | return isa<SCEVAddRecExpr>(SE.getSignExtendExpr(AR, WideTy)); |
| 519 | } |
| 520 | |
| 521 | /// isAddSExtable - Return true if the given add can be sign-extended |
| 522 | /// without changing its value. |
| 523 | static bool isAddSExtable(const SCEVAddExpr *A, ScalarEvolution &SE) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 524 | Type *WideTy = |
Dan Gohman | ab5fb7f | 2010-05-20 19:44:23 +0000 | [diff] [blame] | 525 | IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(A->getType()) + 1); |
Dan Gohman | 85af256 | 2010-02-19 19:32:49 +0000 | [diff] [blame] | 526 | return isa<SCEVAddExpr>(SE.getSignExtendExpr(A, WideTy)); |
| 527 | } |
| 528 | |
Dan Gohman | ab54222 | 2010-06-24 16:45:11 +0000 | [diff] [blame] | 529 | /// isMulSExtable - Return true if the given mul can be sign-extended |
Dan Gohman | 85af256 | 2010-02-19 19:32:49 +0000 | [diff] [blame] | 530 | /// without changing its value. |
Dan Gohman | ab54222 | 2010-06-24 16:45:11 +0000 | [diff] [blame] | 531 | static bool isMulSExtable(const SCEVMulExpr *M, ScalarEvolution &SE) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 532 | Type *WideTy = |
Dan Gohman | ab54222 | 2010-06-24 16:45:11 +0000 | [diff] [blame] | 533 | IntegerType::get(SE.getContext(), |
| 534 | SE.getTypeSizeInBits(M->getType()) * M->getNumOperands()); |
| 535 | return isa<SCEVMulExpr>(SE.getSignExtendExpr(M, WideTy)); |
Dan Gohman | 85af256 | 2010-02-19 19:32:49 +0000 | [diff] [blame] | 536 | } |
| 537 | |
Dan Gohman | 4eebb94 | 2010-02-19 19:35:48 +0000 | [diff] [blame] | 538 | /// getExactSDiv - Return an expression for LHS /s RHS, if it can be determined |
| 539 | /// and if the remainder is known to be zero, or null otherwise. If |
| 540 | /// IgnoreSignificantBits is true, expressions like (X * Y) /s Y are simplified |
| 541 | /// to Y, ignoring that the multiplication may overflow, which is useful when |
| 542 | /// the result will be used in a context where the most significant bits are |
| 543 | /// ignored. |
| 544 | static const SCEV *getExactSDiv(const SCEV *LHS, const SCEV *RHS, |
| 545 | ScalarEvolution &SE, |
| 546 | bool IgnoreSignificantBits = false) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 547 | // Handle the trivial case, which works for any SCEV type. |
| 548 | if (LHS == RHS) |
Dan Gohman | 1d2ded7 | 2010-05-03 22:09:21 +0000 | [diff] [blame] | 549 | return SE.getConstant(LHS->getType(), 1); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 550 | |
Dan Gohman | 47ddf76 | 2010-06-24 16:51:25 +0000 | [diff] [blame] | 551 | // Handle a few RHS special cases. |
| 552 | const SCEVConstant *RC = dyn_cast<SCEVConstant>(RHS); |
| 553 | if (RC) { |
| 554 | const APInt &RA = RC->getValue()->getValue(); |
| 555 | // Handle x /s -1 as x * -1, to give ScalarEvolution a chance to do |
| 556 | // some folding. |
| 557 | if (RA.isAllOnesValue()) |
| 558 | return SE.getMulExpr(LHS, RC); |
| 559 | // Handle x /s 1 as x. |
| 560 | if (RA == 1) |
| 561 | return LHS; |
| 562 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 563 | |
| 564 | // Check for a division of a constant by a constant. |
| 565 | if (const SCEVConstant *C = dyn_cast<SCEVConstant>(LHS)) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 566 | if (!RC) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 567 | return nullptr; |
Dan Gohman | 47ddf76 | 2010-06-24 16:51:25 +0000 | [diff] [blame] | 568 | const APInt &LA = C->getValue()->getValue(); |
| 569 | const APInt &RA = RC->getValue()->getValue(); |
| 570 | if (LA.srem(RA) != 0) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 571 | return nullptr; |
Dan Gohman | 47ddf76 | 2010-06-24 16:51:25 +0000 | [diff] [blame] | 572 | return SE.getConstant(LA.sdiv(RA)); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 573 | } |
| 574 | |
Dan Gohman | 85af256 | 2010-02-19 19:32:49 +0000 | [diff] [blame] | 575 | // Distribute the sdiv over addrec operands, if the addrec doesn't overflow. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 576 | if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS)) { |
Dan Gohman | 85af256 | 2010-02-19 19:32:49 +0000 | [diff] [blame] | 577 | if (IgnoreSignificantBits || isAddRecSExtable(AR, SE)) { |
Dan Gohman | 4eebb94 | 2010-02-19 19:35:48 +0000 | [diff] [blame] | 578 | const SCEV *Step = getExactSDiv(AR->getStepRecurrence(SE), RHS, SE, |
| 579 | IgnoreSignificantBits); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 580 | if (!Step) return nullptr; |
Dan Gohman | 129a816 | 2010-08-19 01:02:31 +0000 | [diff] [blame] | 581 | const SCEV *Start = getExactSDiv(AR->getStart(), RHS, SE, |
| 582 | IgnoreSignificantBits); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 583 | if (!Start) return nullptr; |
Andrew Trick | 8b55b73 | 2011-03-14 16:50:06 +0000 | [diff] [blame] | 584 | // FlagNW is independent of the start value, step direction, and is |
| 585 | // preserved with smaller magnitude steps. |
| 586 | // FIXME: AR->getNoWrapFlags(SCEV::FlagNW) |
| 587 | return SE.getAddRecExpr(Start, Step, AR->getLoop(), SCEV::FlagAnyWrap); |
Dan Gohman | 85af256 | 2010-02-19 19:32:49 +0000 | [diff] [blame] | 588 | } |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 589 | return nullptr; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 590 | } |
| 591 | |
Dan Gohman | 85af256 | 2010-02-19 19:32:49 +0000 | [diff] [blame] | 592 | // Distribute the sdiv over add operands, if the add doesn't overflow. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 593 | if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) { |
Dan Gohman | 85af256 | 2010-02-19 19:32:49 +0000 | [diff] [blame] | 594 | if (IgnoreSignificantBits || isAddSExtable(Add, SE)) { |
| 595 | SmallVector<const SCEV *, 8> Ops; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 596 | for (const SCEV *S : Add->operands()) { |
| 597 | const SCEV *Op = getExactSDiv(S, RHS, SE, IgnoreSignificantBits); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 598 | if (!Op) return nullptr; |
Dan Gohman | 85af256 | 2010-02-19 19:32:49 +0000 | [diff] [blame] | 599 | Ops.push_back(Op); |
| 600 | } |
| 601 | return SE.getAddExpr(Ops); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 602 | } |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 603 | return nullptr; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 604 | } |
| 605 | |
| 606 | // Check for a multiply operand that we can pull RHS out of. |
Dan Gohman | 963b1c1 | 2010-06-24 16:57:52 +0000 | [diff] [blame] | 607 | if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(LHS)) { |
Dan Gohman | 85af256 | 2010-02-19 19:32:49 +0000 | [diff] [blame] | 608 | if (IgnoreSignificantBits || isMulSExtable(Mul, SE)) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 609 | SmallVector<const SCEV *, 4> Ops; |
| 610 | bool Found = false; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 611 | for (const SCEV *S : Mul->operands()) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 612 | if (!Found) |
Dan Gohman | 6b733fc | 2010-05-20 16:23:28 +0000 | [diff] [blame] | 613 | if (const SCEV *Q = getExactSDiv(S, RHS, SE, |
Dan Gohman | 4eebb94 | 2010-02-19 19:35:48 +0000 | [diff] [blame] | 614 | IgnoreSignificantBits)) { |
Dan Gohman | 6b733fc | 2010-05-20 16:23:28 +0000 | [diff] [blame] | 615 | S = Q; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 616 | Found = true; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 617 | } |
Dan Gohman | 6b733fc | 2010-05-20 16:23:28 +0000 | [diff] [blame] | 618 | Ops.push_back(S); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 619 | } |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 620 | return Found ? SE.getMulExpr(Ops) : nullptr; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 621 | } |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 622 | return nullptr; |
Dan Gohman | 963b1c1 | 2010-06-24 16:57:52 +0000 | [diff] [blame] | 623 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 624 | |
| 625 | // Otherwise we don't know. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 626 | return nullptr; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 627 | } |
| 628 | |
| 629 | /// ExtractImmediate - If S involves the addition of a constant integer value, |
| 630 | /// return that integer value, and mutate S to point to a new SCEV with that |
| 631 | /// value excluded. |
| 632 | static int64_t ExtractImmediate(const SCEV *&S, ScalarEvolution &SE) { |
| 633 | if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) { |
| 634 | if (C->getValue()->getValue().getMinSignedBits() <= 64) { |
Dan Gohman | 1d2ded7 | 2010-05-03 22:09:21 +0000 | [diff] [blame] | 635 | S = SE.getConstant(C->getType(), 0); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 636 | return C->getValue()->getSExtValue(); |
| 637 | } |
| 638 | } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) { |
| 639 | SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end()); |
| 640 | int64_t Result = ExtractImmediate(NewOps.front(), SE); |
Dan Gohman | 081ffcd | 2010-08-13 21:17:19 +0000 | [diff] [blame] | 641 | if (Result != 0) |
| 642 | S = SE.getAddExpr(NewOps); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 643 | return Result; |
| 644 | } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { |
| 645 | SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end()); |
| 646 | int64_t Result = ExtractImmediate(NewOps.front(), SE); |
Dan Gohman | 081ffcd | 2010-08-13 21:17:19 +0000 | [diff] [blame] | 647 | if (Result != 0) |
Andrew Trick | 8b55b73 | 2011-03-14 16:50:06 +0000 | [diff] [blame] | 648 | S = SE.getAddRecExpr(NewOps, AR->getLoop(), |
| 649 | // FIXME: AR->getNoWrapFlags(SCEV::FlagNW) |
| 650 | SCEV::FlagAnyWrap); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 651 | return Result; |
| 652 | } |
| 653 | return 0; |
| 654 | } |
| 655 | |
| 656 | /// ExtractSymbol - If S involves the addition of a GlobalValue address, |
| 657 | /// return that symbol, and mutate S to point to a new SCEV with that |
| 658 | /// value excluded. |
| 659 | static GlobalValue *ExtractSymbol(const SCEV *&S, ScalarEvolution &SE) { |
| 660 | if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) { |
| 661 | if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue())) { |
Dan Gohman | 1d2ded7 | 2010-05-03 22:09:21 +0000 | [diff] [blame] | 662 | S = SE.getConstant(GV->getType(), 0); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 663 | return GV; |
| 664 | } |
| 665 | } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) { |
| 666 | SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end()); |
| 667 | GlobalValue *Result = ExtractSymbol(NewOps.back(), SE); |
Dan Gohman | 081ffcd | 2010-08-13 21:17:19 +0000 | [diff] [blame] | 668 | if (Result) |
| 669 | S = SE.getAddExpr(NewOps); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 670 | return Result; |
| 671 | } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { |
| 672 | SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end()); |
| 673 | GlobalValue *Result = ExtractSymbol(NewOps.front(), SE); |
Dan Gohman | 081ffcd | 2010-08-13 21:17:19 +0000 | [diff] [blame] | 674 | if (Result) |
Andrew Trick | 8b55b73 | 2011-03-14 16:50:06 +0000 | [diff] [blame] | 675 | S = SE.getAddRecExpr(NewOps, AR->getLoop(), |
| 676 | // FIXME: AR->getNoWrapFlags(SCEV::FlagNW) |
| 677 | SCEV::FlagAnyWrap); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 678 | return Result; |
| 679 | } |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 680 | return nullptr; |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 681 | } |
| 682 | |
Dan Gohman | d0b1fbd | 2009-02-18 00:08:39 +0000 | [diff] [blame] | 683 | /// isAddressUse - Returns true if the specified instruction is using the |
Dale Johannesen | 9efd2ce | 2008-12-05 21:47:27 +0000 | [diff] [blame] | 684 | /// specified value as an address. |
| 685 | static bool isAddressUse(Instruction *Inst, Value *OperandVal) { |
| 686 | bool isAddress = isa<LoadInst>(Inst); |
| 687 | if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) { |
| 688 | if (SI->getOperand(1) == OperandVal) |
| 689 | isAddress = true; |
| 690 | } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) { |
| 691 | // Addressing modes can also be folded into prefetches and a variety |
| 692 | // of intrinsics. |
| 693 | switch (II->getIntrinsicID()) { |
| 694 | default: break; |
| 695 | case Intrinsic::prefetch: |
Dale Johannesen | 9efd2ce | 2008-12-05 21:47:27 +0000 | [diff] [blame] | 696 | case Intrinsic::x86_sse_storeu_ps: |
| 697 | case Intrinsic::x86_sse2_storeu_pd: |
| 698 | case Intrinsic::x86_sse2_storeu_dq: |
| 699 | case Intrinsic::x86_sse2_storel_dq: |
Gabor Greif | 8ae3095 | 2010-06-30 09:15:28 +0000 | [diff] [blame] | 700 | if (II->getArgOperand(0) == OperandVal) |
Dale Johannesen | 9efd2ce | 2008-12-05 21:47:27 +0000 | [diff] [blame] | 701 | isAddress = true; |
| 702 | break; |
| 703 | } |
| 704 | } |
| 705 | return isAddress; |
| 706 | } |
Chris Lattner | e4ed42a | 2005-10-03 01:04:44 +0000 | [diff] [blame] | 707 | |
Dan Gohman | 917ffe4 | 2009-03-09 21:01:17 +0000 | [diff] [blame] | 708 | /// getAccessType - Return the type of the memory being accessed. |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 709 | static MemAccessTy getAccessType(const Instruction *Inst) { |
| 710 | MemAccessTy AccessTy(Inst->getType(), MemAccessTy::UnknownAddressSpace); |
| 711 | if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) { |
| 712 | AccessTy.MemTy = SI->getOperand(0)->getType(); |
| 713 | AccessTy.AddrSpace = SI->getPointerAddressSpace(); |
| 714 | } else if (const LoadInst *LI = dyn_cast<LoadInst>(Inst)) { |
| 715 | AccessTy.AddrSpace = LI->getPointerAddressSpace(); |
| 716 | } else if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) { |
Dan Gohman | 917ffe4 | 2009-03-09 21:01:17 +0000 | [diff] [blame] | 717 | // Addressing modes can also be folded into prefetches and a variety |
| 718 | // of intrinsics. |
| 719 | switch (II->getIntrinsicID()) { |
| 720 | default: break; |
| 721 | case Intrinsic::x86_sse_storeu_ps: |
| 722 | case Intrinsic::x86_sse2_storeu_pd: |
| 723 | case Intrinsic::x86_sse2_storeu_dq: |
| 724 | case Intrinsic::x86_sse2_storel_dq: |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 725 | AccessTy.MemTy = II->getArgOperand(0)->getType(); |
Dan Gohman | 917ffe4 | 2009-03-09 21:01:17 +0000 | [diff] [blame] | 726 | break; |
| 727 | } |
| 728 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 729 | |
| 730 | // All pointers have the same requirements, so canonicalize them to an |
| 731 | // arbitrary pointer type to minimize variation. |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 732 | if (PointerType *PTy = dyn_cast<PointerType>(AccessTy.MemTy)) |
| 733 | AccessTy.MemTy = PointerType::get(IntegerType::get(PTy->getContext(), 1), |
| 734 | PTy->getAddressSpace()); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 735 | |
Dan Gohman | 14d1339 | 2009-05-18 16:45:28 +0000 | [diff] [blame] | 736 | return AccessTy; |
Dan Gohman | 917ffe4 | 2009-03-09 21:01:17 +0000 | [diff] [blame] | 737 | } |
| 738 | |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 739 | /// isExistingPhi - Return true if this AddRec is already a phi in its loop. |
| 740 | static bool isExistingPhi(const SCEVAddRecExpr *AR, ScalarEvolution &SE) { |
| 741 | for (BasicBlock::iterator I = AR->getLoop()->getHeader()->begin(); |
| 742 | PHINode *PN = dyn_cast<PHINode>(I); ++I) { |
| 743 | if (SE.isSCEVable(PN->getType()) && |
| 744 | (SE.getEffectiveSCEVType(PN->getType()) == |
| 745 | SE.getEffectiveSCEVType(AR->getType())) && |
| 746 | SE.getSCEV(PN) == AR) |
| 747 | return true; |
| 748 | } |
| 749 | return false; |
| 750 | } |
| 751 | |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 752 | /// Check if expanding this expression is likely to incur significant cost. This |
| 753 | /// is tricky because SCEV doesn't track which expressions are actually computed |
| 754 | /// by the current IR. |
| 755 | /// |
| 756 | /// We currently allow expansion of IV increments that involve adds, |
| 757 | /// multiplication by constants, and AddRecs from existing phis. |
| 758 | /// |
| 759 | /// TODO: Allow UDivExpr if we can find an existing IV increment that is an |
| 760 | /// obvious multiple of the UDivExpr. |
| 761 | static bool isHighCostExpansion(const SCEV *S, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 762 | SmallPtrSetImpl<const SCEV*> &Processed, |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 763 | ScalarEvolution &SE) { |
| 764 | // Zero/One operand expressions |
| 765 | switch (S->getSCEVType()) { |
| 766 | case scUnknown: |
| 767 | case scConstant: |
| 768 | return false; |
| 769 | case scTruncate: |
| 770 | return isHighCostExpansion(cast<SCEVTruncateExpr>(S)->getOperand(), |
| 771 | Processed, SE); |
| 772 | case scZeroExtend: |
| 773 | return isHighCostExpansion(cast<SCEVZeroExtendExpr>(S)->getOperand(), |
| 774 | Processed, SE); |
| 775 | case scSignExtend: |
| 776 | return isHighCostExpansion(cast<SCEVSignExtendExpr>(S)->getOperand(), |
| 777 | Processed, SE); |
| 778 | } |
| 779 | |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 780 | if (!Processed.insert(S).second) |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 781 | return false; |
| 782 | |
| 783 | if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) { |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 784 | for (const SCEV *S : Add->operands()) { |
| 785 | if (isHighCostExpansion(S, Processed, SE)) |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 786 | return true; |
| 787 | } |
| 788 | return false; |
| 789 | } |
| 790 | |
| 791 | if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) { |
| 792 | if (Mul->getNumOperands() == 2) { |
| 793 | // Multiplication by a constant is ok |
| 794 | if (isa<SCEVConstant>(Mul->getOperand(0))) |
| 795 | return isHighCostExpansion(Mul->getOperand(1), Processed, SE); |
| 796 | |
| 797 | // If we have the value of one operand, check if an existing |
| 798 | // multiplication already generates this expression. |
| 799 | if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(Mul->getOperand(1))) { |
| 800 | Value *UVal = U->getValue(); |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 801 | for (User *UR : UVal->users()) { |
Andrew Trick | 14779cc | 2012-03-26 20:28:37 +0000 | [diff] [blame] | 802 | // If U is a constant, it may be used by a ConstantExpr. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 803 | Instruction *UI = dyn_cast<Instruction>(UR); |
| 804 | if (UI && UI->getOpcode() == Instruction::Mul && |
| 805 | SE.isSCEVable(UI->getType())) { |
| 806 | return SE.getSCEV(UI) == Mul; |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 807 | } |
| 808 | } |
| 809 | } |
| 810 | } |
| 811 | } |
| 812 | |
| 813 | if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { |
| 814 | if (isExistingPhi(AR, SE)) |
| 815 | return false; |
| 816 | } |
| 817 | |
| 818 | // Fow now, consider any other type of expression (div/mul/min/max) high cost. |
| 819 | return true; |
| 820 | } |
| 821 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 822 | /// DeleteTriviallyDeadInstructions - If any of the instructions is the |
| 823 | /// specified set are trivially dead, delete them and see if this makes any of |
| 824 | /// their operands subsequently dead. |
| 825 | static bool |
| 826 | DeleteTriviallyDeadInstructions(SmallVectorImpl<WeakVH> &DeadInsts) { |
| 827 | bool Changed = false; |
| 828 | |
| 829 | while (!DeadInsts.empty()) { |
Richard Smith | ad9c8e8 | 2012-08-21 20:35:14 +0000 | [diff] [blame] | 830 | Value *V = DeadInsts.pop_back_val(); |
| 831 | Instruction *I = dyn_cast_or_null<Instruction>(V); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 832 | |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 833 | if (!I || !isInstructionTriviallyDead(I)) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 834 | continue; |
| 835 | |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 836 | for (Use &O : I->operands()) |
| 837 | if (Instruction *U = dyn_cast<Instruction>(O)) { |
| 838 | O = nullptr; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 839 | if (U->use_empty()) |
Benjamin Kramer | f5e2fc4 | 2015-05-29 19:43:39 +0000 | [diff] [blame] | 840 | DeadInsts.emplace_back(U); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 841 | } |
| 842 | |
| 843 | I->eraseFromParent(); |
| 844 | Changed = true; |
| 845 | } |
| 846 | |
| 847 | return Changed; |
| 848 | } |
| 849 | |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 850 | namespace { |
Quentin Colombet | 8aa7abe | 2013-05-31 17:20:29 +0000 | [diff] [blame] | 851 | class LSRUse; |
| 852 | } |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 853 | |
| 854 | /// \brief Check if the addressing mode defined by \p F is completely |
| 855 | /// folded in \p LU at isel time. |
| 856 | /// This includes address-mode folding and special icmp tricks. |
| 857 | /// This function returns true if \p LU can accommodate what \p F |
| 858 | /// defines and up to 1 base + 1 scaled + offset. |
| 859 | /// In other words, if \p F has several base registers, this function may |
| 860 | /// still return true. Therefore, users still need to account for |
| 861 | /// additional base registers and/or unfolded offsets to derive an |
| 862 | /// accurate cost model. |
| 863 | static bool isAMCompletelyFolded(const TargetTransformInfo &TTI, |
| 864 | const LSRUse &LU, const Formula &F); |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 865 | // Get the cost of the scaling factor used in F for LU. |
| 866 | static unsigned getScalingFactorCost(const TargetTransformInfo &TTI, |
| 867 | const LSRUse &LU, const Formula &F); |
Quentin Colombet | 8aa7abe | 2013-05-31 17:20:29 +0000 | [diff] [blame] | 868 | |
| 869 | namespace { |
Jim Grosbach | 60f4854 | 2009-11-17 17:53:56 +0000 | [diff] [blame] | 870 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 871 | /// Cost - This class is used to measure and compare candidate formulae. |
| 872 | class Cost { |
| 873 | /// TODO: Some of these could be merged. Also, a lexical ordering |
| 874 | /// isn't always optimal. |
| 875 | unsigned NumRegs; |
| 876 | unsigned AddRecCost; |
| 877 | unsigned NumIVMuls; |
| 878 | unsigned NumBaseAdds; |
| 879 | unsigned ImmCost; |
| 880 | unsigned SetupCost; |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 881 | unsigned ScaleCost; |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 882 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 883 | public: |
| 884 | Cost() |
| 885 | : NumRegs(0), AddRecCost(0), NumIVMuls(0), NumBaseAdds(0), ImmCost(0), |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 886 | SetupCost(0), ScaleCost(0) {} |
Jim Grosbach | 60f4854 | 2009-11-17 17:53:56 +0000 | [diff] [blame] | 887 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 888 | bool operator<(const Cost &Other) const; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 889 | |
Tim Northover | bc6659c | 2014-01-22 13:27:00 +0000 | [diff] [blame] | 890 | void Lose(); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 891 | |
Andrew Trick | 784729d | 2011-09-26 23:11:04 +0000 | [diff] [blame] | 892 | #ifndef NDEBUG |
| 893 | // Once any of the metrics loses, they must all remain losers. |
| 894 | bool isValid() { |
| 895 | return ((NumRegs | AddRecCost | NumIVMuls | NumBaseAdds |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 896 | | ImmCost | SetupCost | ScaleCost) != ~0u) |
Andrew Trick | 784729d | 2011-09-26 23:11:04 +0000 | [diff] [blame] | 897 | || ((NumRegs & AddRecCost & NumIVMuls & NumBaseAdds |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 898 | & ImmCost & SetupCost & ScaleCost) == ~0u); |
Andrew Trick | 784729d | 2011-09-26 23:11:04 +0000 | [diff] [blame] | 899 | } |
| 900 | #endif |
| 901 | |
| 902 | bool isLoser() { |
| 903 | assert(isValid() && "invalid cost"); |
| 904 | return NumRegs == ~0u; |
| 905 | } |
| 906 | |
Quentin Colombet | 8aa7abe | 2013-05-31 17:20:29 +0000 | [diff] [blame] | 907 | void RateFormula(const TargetTransformInfo &TTI, |
| 908 | const Formula &F, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 909 | SmallPtrSetImpl<const SCEV *> &Regs, |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 910 | const DenseSet<const SCEV *> &VisitedRegs, |
| 911 | const Loop *L, |
| 912 | const SmallVectorImpl<int64_t> &Offsets, |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 913 | ScalarEvolution &SE, DominatorTree &DT, |
Quentin Colombet | 8aa7abe | 2013-05-31 17:20:29 +0000 | [diff] [blame] | 914 | const LSRUse &LU, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 915 | SmallPtrSetImpl<const SCEV *> *LoserRegs = nullptr); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 916 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 917 | void print(raw_ostream &OS) const; |
| 918 | void dump() const; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 919 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 920 | private: |
| 921 | void RateRegister(const SCEV *Reg, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 922 | SmallPtrSetImpl<const SCEV *> &Regs, |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 923 | const Loop *L, |
| 924 | ScalarEvolution &SE, DominatorTree &DT); |
Dan Gohman | 5b18f03 | 2010-02-13 02:06:02 +0000 | [diff] [blame] | 925 | void RatePrimaryRegister(const SCEV *Reg, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 926 | SmallPtrSetImpl<const SCEV *> &Regs, |
Dan Gohman | 5b18f03 | 2010-02-13 02:06:02 +0000 | [diff] [blame] | 927 | const Loop *L, |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 928 | ScalarEvolution &SE, DominatorTree &DT, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 929 | SmallPtrSetImpl<const SCEV *> *LoserRegs); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 930 | }; |
| 931 | |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 932 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 933 | |
| 934 | /// RateRegister - Tally up interesting quantities from the given register. |
| 935 | void Cost::RateRegister(const SCEV *Reg, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 936 | SmallPtrSetImpl<const SCEV *> &Regs, |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 937 | const Loop *L, |
| 938 | ScalarEvolution &SE, DominatorTree &DT) { |
Dan Gohman | 5b18f03 | 2010-02-13 02:06:02 +0000 | [diff] [blame] | 939 | if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Reg)) { |
Andrew Trick | bc6de90 | 2011-09-29 01:33:38 +0000 | [diff] [blame] | 940 | // If this is an addrec for another loop, don't second-guess its addrec phi |
| 941 | // nodes. LSR isn't currently smart enough to reason about more than one |
Andrew Trick | d97b83e | 2012-03-22 22:42:45 +0000 | [diff] [blame] | 942 | // loop at a time. LSR has already run on inner loops, will not run on outer |
| 943 | // loops, and cannot be expected to change sibling loops. |
| 944 | if (AR->getLoop() != L) { |
| 945 | // 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] | 946 | if (isExistingPhi(AR, SE)) |
| 947 | return; |
| 948 | |
Andrew Trick | d97b83e | 2012-03-22 22:42:45 +0000 | [diff] [blame] | 949 | // Otherwise, do not consider this formula at all. |
Tim Northover | bc6659c | 2014-01-22 13:27:00 +0000 | [diff] [blame] | 950 | Lose(); |
Andrew Trick | d97b83e | 2012-03-22 22:42:45 +0000 | [diff] [blame] | 951 | return; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 952 | } |
Andrew Trick | d97b83e | 2012-03-22 22:42:45 +0000 | [diff] [blame] | 953 | AddRecCost += 1; /// TODO: This should be a function of the stride. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 954 | |
Dan Gohman | 5b18f03 | 2010-02-13 02:06:02 +0000 | [diff] [blame] | 955 | // Add the step value register, if it needs one. |
| 956 | // TODO: The non-affine case isn't precisely modeled here. |
Andrew Trick | 8868fae | 2011-09-26 23:35:25 +0000 | [diff] [blame] | 957 | if (!AR->isAffine() || !isa<SCEVConstant>(AR->getOperand(1))) { |
| 958 | if (!Regs.count(AR->getOperand(1))) { |
Dan Gohman | 5b18f03 | 2010-02-13 02:06:02 +0000 | [diff] [blame] | 959 | RateRegister(AR->getOperand(1), Regs, L, SE, DT); |
Andrew Trick | 8868fae | 2011-09-26 23:35:25 +0000 | [diff] [blame] | 960 | if (isLoser()) |
| 961 | return; |
| 962 | } |
| 963 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 964 | } |
Dan Gohman | 5b18f03 | 2010-02-13 02:06:02 +0000 | [diff] [blame] | 965 | ++NumRegs; |
| 966 | |
| 967 | // Rough heuristic; favor registers which don't require extra setup |
| 968 | // instructions in the preheader. |
| 969 | if (!isa<SCEVUnknown>(Reg) && |
| 970 | !isa<SCEVConstant>(Reg) && |
| 971 | !(isa<SCEVAddRecExpr>(Reg) && |
| 972 | (isa<SCEVUnknown>(cast<SCEVAddRecExpr>(Reg)->getStart()) || |
| 973 | isa<SCEVConstant>(cast<SCEVAddRecExpr>(Reg)->getStart())))) |
| 974 | ++SetupCost; |
Dan Gohman | 34f37e0 | 2010-10-07 23:41:58 +0000 | [diff] [blame] | 975 | |
| 976 | NumIVMuls += isa<SCEVMulExpr>(Reg) && |
Dan Gohman | afd6db9 | 2010-11-17 21:23:15 +0000 | [diff] [blame] | 977 | SE.hasComputableLoopEvolution(Reg, L); |
Dan Gohman | 5b18f03 | 2010-02-13 02:06:02 +0000 | [diff] [blame] | 978 | } |
| 979 | |
| 980 | /// RatePrimaryRegister - Record this register in the set. If we haven't seen it |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 981 | /// before, rate it. Optional LoserRegs provides a way to declare any formula |
| 982 | /// that refers to one of those regs an instant loser. |
Dan Gohman | 5b18f03 | 2010-02-13 02:06:02 +0000 | [diff] [blame] | 983 | void Cost::RatePrimaryRegister(const SCEV *Reg, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 984 | SmallPtrSetImpl<const SCEV *> &Regs, |
Dan Gohman | 0849ed5 | 2010-02-16 19:42:34 +0000 | [diff] [blame] | 985 | const Loop *L, |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 986 | ScalarEvolution &SE, DominatorTree &DT, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 987 | SmallPtrSetImpl<const SCEV *> *LoserRegs) { |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 988 | if (LoserRegs && LoserRegs->count(Reg)) { |
Tim Northover | bc6659c | 2014-01-22 13:27:00 +0000 | [diff] [blame] | 989 | Lose(); |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 990 | return; |
| 991 | } |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 992 | if (Regs.insert(Reg).second) { |
Dan Gohman | 5b18f03 | 2010-02-13 02:06:02 +0000 | [diff] [blame] | 993 | RateRegister(Reg, Regs, L, SE, DT); |
Andrew Trick | a1c01ba | 2013-03-19 04:14:57 +0000 | [diff] [blame] | 994 | if (LoserRegs && isLoser()) |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 995 | LoserRegs->insert(Reg); |
| 996 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 997 | } |
| 998 | |
Quentin Colombet | 8aa7abe | 2013-05-31 17:20:29 +0000 | [diff] [blame] | 999 | void Cost::RateFormula(const TargetTransformInfo &TTI, |
| 1000 | const Formula &F, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 1001 | SmallPtrSetImpl<const SCEV *> &Regs, |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1002 | const DenseSet<const SCEV *> &VisitedRegs, |
| 1003 | const Loop *L, |
| 1004 | const SmallVectorImpl<int64_t> &Offsets, |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 1005 | ScalarEvolution &SE, DominatorTree &DT, |
Quentin Colombet | 8aa7abe | 2013-05-31 17:20:29 +0000 | [diff] [blame] | 1006 | const LSRUse &LU, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 1007 | SmallPtrSetImpl<const SCEV *> *LoserRegs) { |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1008 | assert(F.isCanonical() && "Cost is accurate only for canonical formula"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1009 | // Tally up the registers. |
| 1010 | if (const SCEV *ScaledReg = F.ScaledReg) { |
| 1011 | if (VisitedRegs.count(ScaledReg)) { |
Tim Northover | bc6659c | 2014-01-22 13:27:00 +0000 | [diff] [blame] | 1012 | Lose(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1013 | return; |
| 1014 | } |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 1015 | RatePrimaryRegister(ScaledReg, Regs, L, SE, DT, LoserRegs); |
Andrew Trick | 784729d | 2011-09-26 23:11:04 +0000 | [diff] [blame] | 1016 | if (isLoser()) |
| 1017 | return; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1018 | } |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 1019 | for (const SCEV *BaseReg : F.BaseRegs) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1020 | if (VisitedRegs.count(BaseReg)) { |
Tim Northover | bc6659c | 2014-01-22 13:27:00 +0000 | [diff] [blame] | 1021 | Lose(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1022 | return; |
| 1023 | } |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 1024 | RatePrimaryRegister(BaseReg, Regs, L, SE, DT, LoserRegs); |
Andrew Trick | 784729d | 2011-09-26 23:11:04 +0000 | [diff] [blame] | 1025 | if (isLoser()) |
| 1026 | return; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1027 | } |
| 1028 | |
Dan Gohman | 6136e94 | 2011-05-03 00:46:49 +0000 | [diff] [blame] | 1029 | // Determine how many (unfolded) adds we'll need inside the loop. |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1030 | size_t NumBaseParts = F.getNumRegs(); |
Dan Gohman | 6136e94 | 2011-05-03 00:46:49 +0000 | [diff] [blame] | 1031 | if (NumBaseParts > 1) |
Quentin Colombet | 8aa7abe | 2013-05-31 17:20:29 +0000 | [diff] [blame] | 1032 | // Do not count the base and a possible second register if the target |
| 1033 | // allows to fold 2 registers. |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1034 | NumBaseAdds += |
| 1035 | NumBaseParts - (1 + (F.Scale && isAMCompletelyFolded(TTI, LU, F))); |
| 1036 | NumBaseAdds += (F.UnfoldedOffset != 0); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1037 | |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 1038 | // Accumulate non-free scaling amounts. |
| 1039 | ScaleCost += getScalingFactorCost(TTI, LU, F); |
| 1040 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1041 | // Tally up the non-zero immediates. |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 1042 | for (int64_t O : Offsets) { |
| 1043 | int64_t Offset = (uint64_t)O + F.BaseOffset; |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 1044 | if (F.BaseGV) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1045 | ImmCost += 64; // Handle symbolic values conservatively. |
| 1046 | // TODO: This should probably be the pointer size. |
| 1047 | else if (Offset != 0) |
| 1048 | ImmCost += APInt(64, Offset, true).getMinSignedBits(); |
| 1049 | } |
Andrew Trick | 784729d | 2011-09-26 23:11:04 +0000 | [diff] [blame] | 1050 | assert(isValid() && "invalid cost"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1051 | } |
| 1052 | |
Tim Northover | bc6659c | 2014-01-22 13:27:00 +0000 | [diff] [blame] | 1053 | /// Lose - Set this cost to a losing value. |
| 1054 | void Cost::Lose() { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1055 | NumRegs = ~0u; |
| 1056 | AddRecCost = ~0u; |
| 1057 | NumIVMuls = ~0u; |
| 1058 | NumBaseAdds = ~0u; |
| 1059 | ImmCost = ~0u; |
| 1060 | SetupCost = ~0u; |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 1061 | ScaleCost = ~0u; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1062 | } |
| 1063 | |
| 1064 | /// operator< - Choose the lower cost. |
| 1065 | bool Cost::operator<(const Cost &Other) const { |
Benjamin Kramer | b2f034b | 2014-03-03 19:58:30 +0000 | [diff] [blame] | 1066 | return std::tie(NumRegs, AddRecCost, NumIVMuls, NumBaseAdds, ScaleCost, |
| 1067 | ImmCost, SetupCost) < |
| 1068 | std::tie(Other.NumRegs, Other.AddRecCost, Other.NumIVMuls, |
| 1069 | Other.NumBaseAdds, Other.ScaleCost, Other.ImmCost, |
| 1070 | Other.SetupCost); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1071 | } |
| 1072 | |
| 1073 | void Cost::print(raw_ostream &OS) const { |
| 1074 | OS << NumRegs << " reg" << (NumRegs == 1 ? "" : "s"); |
| 1075 | if (AddRecCost != 0) |
| 1076 | OS << ", with addrec cost " << AddRecCost; |
| 1077 | if (NumIVMuls != 0) |
| 1078 | OS << ", plus " << NumIVMuls << " IV mul" << (NumIVMuls == 1 ? "" : "s"); |
| 1079 | if (NumBaseAdds != 0) |
| 1080 | OS << ", plus " << NumBaseAdds << " base add" |
| 1081 | << (NumBaseAdds == 1 ? "" : "s"); |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 1082 | if (ScaleCost != 0) |
| 1083 | OS << ", plus " << ScaleCost << " scale cost"; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1084 | if (ImmCost != 0) |
| 1085 | OS << ", plus " << ImmCost << " imm cost"; |
| 1086 | if (SetupCost != 0) |
| 1087 | OS << ", plus " << SetupCost << " setup cost"; |
| 1088 | } |
| 1089 | |
Manman Ren | 49d684e | 2012-09-12 05:06:18 +0000 | [diff] [blame] | 1090 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1091 | void Cost::dump() const { |
| 1092 | print(errs()); errs() << '\n'; |
| 1093 | } |
Manman Ren | c3366cc | 2012-09-06 19:55:56 +0000 | [diff] [blame] | 1094 | #endif |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1095 | |
| 1096 | namespace { |
| 1097 | |
| 1098 | /// LSRFixup - An operand value in an instruction which is to be replaced |
| 1099 | /// with some equivalent, possibly strength-reduced, replacement. |
| 1100 | struct LSRFixup { |
| 1101 | /// UserInst - The instruction which will be updated. |
| 1102 | Instruction *UserInst; |
| 1103 | |
| 1104 | /// OperandValToReplace - The operand of the instruction which will |
| 1105 | /// be replaced. The operand may be used more than once; every instance |
| 1106 | /// will be replaced. |
| 1107 | Value *OperandValToReplace; |
| 1108 | |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 1109 | /// PostIncLoops - If this user is to use the post-incremented value of an |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1110 | /// induction variable, this variable is non-null and holds the loop |
| 1111 | /// associated with the induction variable. |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 1112 | PostIncLoopSet PostIncLoops; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1113 | |
| 1114 | /// LUIdx - The index of the LSRUse describing the expression which |
| 1115 | /// this fixup needs, minus an offset (below). |
| 1116 | size_t LUIdx; |
| 1117 | |
| 1118 | /// Offset - A constant offset to be added to the LSRUse expression. |
| 1119 | /// This allows multiple fixups to share the same LSRUse with different |
| 1120 | /// offsets, for example in an unrolled loop. |
| 1121 | int64_t Offset; |
| 1122 | |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 1123 | bool isUseFullyOutsideLoop(const Loop *L) const; |
| 1124 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1125 | LSRFixup(); |
| 1126 | |
| 1127 | void print(raw_ostream &OS) const; |
| 1128 | void dump() const; |
| 1129 | }; |
| 1130 | |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 1131 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1132 | |
| 1133 | LSRFixup::LSRFixup() |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1134 | : UserInst(nullptr), OperandValToReplace(nullptr), LUIdx(~size_t(0)), |
| 1135 | Offset(0) {} |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1136 | |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 1137 | /// isUseFullyOutsideLoop - Test whether this fixup always uses its |
| 1138 | /// value outside of the given loop. |
| 1139 | bool LSRFixup::isUseFullyOutsideLoop(const Loop *L) const { |
| 1140 | // PHI nodes use their value in their incoming blocks. |
| 1141 | if (const PHINode *PN = dyn_cast<PHINode>(UserInst)) { |
| 1142 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) |
| 1143 | if (PN->getIncomingValue(i) == OperandValToReplace && |
| 1144 | L->contains(PN->getIncomingBlock(i))) |
| 1145 | return false; |
| 1146 | return true; |
| 1147 | } |
| 1148 | |
| 1149 | return !L->contains(UserInst); |
| 1150 | } |
| 1151 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1152 | void LSRFixup::print(raw_ostream &OS) const { |
| 1153 | OS << "UserInst="; |
| 1154 | // Store is common and interesting enough to be worth special-casing. |
| 1155 | if (StoreInst *Store = dyn_cast<StoreInst>(UserInst)) { |
| 1156 | OS << "store "; |
Chandler Carruth | d48cdbf | 2014-01-09 02:29:41 +0000 | [diff] [blame] | 1157 | Store->getOperand(0)->printAsOperand(OS, /*PrintType=*/false); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1158 | } else if (UserInst->getType()->isVoidTy()) |
| 1159 | OS << UserInst->getOpcodeName(); |
| 1160 | else |
Chandler Carruth | d48cdbf | 2014-01-09 02:29:41 +0000 | [diff] [blame] | 1161 | UserInst->printAsOperand(OS, /*PrintType=*/false); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1162 | |
| 1163 | OS << ", OperandValToReplace="; |
Chandler Carruth | d48cdbf | 2014-01-09 02:29:41 +0000 | [diff] [blame] | 1164 | OperandValToReplace->printAsOperand(OS, /*PrintType=*/false); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1165 | |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 1166 | for (const Loop *PIL : PostIncLoops) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1167 | OS << ", PostIncLoop="; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 1168 | PIL->getHeader()->printAsOperand(OS, /*PrintType=*/false); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1169 | } |
| 1170 | |
| 1171 | if (LUIdx != ~size_t(0)) |
| 1172 | OS << ", LUIdx=" << LUIdx; |
| 1173 | |
| 1174 | if (Offset != 0) |
| 1175 | OS << ", Offset=" << Offset; |
| 1176 | } |
| 1177 | |
Manman Ren | 49d684e | 2012-09-12 05:06:18 +0000 | [diff] [blame] | 1178 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1179 | void LSRFixup::dump() const { |
| 1180 | print(errs()); errs() << '\n'; |
| 1181 | } |
Manman Ren | c3366cc | 2012-09-06 19:55:56 +0000 | [diff] [blame] | 1182 | #endif |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1183 | |
| 1184 | namespace { |
| 1185 | |
| 1186 | /// UniquifierDenseMapInfo - A DenseMapInfo implementation for holding |
| 1187 | /// DenseMaps and DenseSets of sorted SmallVectors of const SCEV*. |
| 1188 | struct UniquifierDenseMapInfo { |
Preston Gurd | 25c3b6a | 2013-02-01 20:41:27 +0000 | [diff] [blame] | 1189 | static SmallVector<const SCEV *, 4> getEmptyKey() { |
| 1190 | SmallVector<const SCEV *, 4> V; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1191 | V.push_back(reinterpret_cast<const SCEV *>(-1)); |
| 1192 | return V; |
| 1193 | } |
| 1194 | |
Preston Gurd | 25c3b6a | 2013-02-01 20:41:27 +0000 | [diff] [blame] | 1195 | static SmallVector<const SCEV *, 4> getTombstoneKey() { |
| 1196 | SmallVector<const SCEV *, 4> V; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1197 | V.push_back(reinterpret_cast<const SCEV *>(-2)); |
| 1198 | return V; |
| 1199 | } |
| 1200 | |
Preston Gurd | 25c3b6a | 2013-02-01 20:41:27 +0000 | [diff] [blame] | 1201 | static unsigned getHashValue(const SmallVector<const SCEV *, 4> &V) { |
Benjamin Kramer | 62fb0cf | 2014-03-15 17:17:48 +0000 | [diff] [blame] | 1202 | return static_cast<unsigned>(hash_combine_range(V.begin(), V.end())); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1203 | } |
| 1204 | |
Preston Gurd | 25c3b6a | 2013-02-01 20:41:27 +0000 | [diff] [blame] | 1205 | static bool isEqual(const SmallVector<const SCEV *, 4> &LHS, |
| 1206 | const SmallVector<const SCEV *, 4> &RHS) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1207 | return LHS == RHS; |
| 1208 | } |
| 1209 | }; |
| 1210 | |
| 1211 | /// LSRUse - This class holds the state that LSR keeps for each use in |
| 1212 | /// IVUsers, as well as uses invented by LSR itself. It includes information |
| 1213 | /// about what kinds of things can be folded into the user, information about |
| 1214 | /// the user itself, and information about how the use may be satisfied. |
| 1215 | /// TODO: Represent multiple users of the same expression in common? |
| 1216 | class LSRUse { |
Preston Gurd | 25c3b6a | 2013-02-01 20:41:27 +0000 | [diff] [blame] | 1217 | DenseSet<SmallVector<const SCEV *, 4>, UniquifierDenseMapInfo> Uniquifier; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1218 | |
| 1219 | public: |
| 1220 | /// KindType - An enum for a kind of use, indicating what types of |
| 1221 | /// scaled and immediate operands it might support. |
| 1222 | enum KindType { |
| 1223 | Basic, ///< A normal use, with no folding. |
| 1224 | Special, ///< A special case of basic, allowing -1 scales. |
Nadav Rotem | 4dc976f | 2012-10-19 21:28:43 +0000 | [diff] [blame] | 1225 | Address, ///< An address use; folding according to TargetLowering |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1226 | ICmpZero ///< An equality icmp with both operands folded into one. |
| 1227 | // TODO: Add a generic icmp too? |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1228 | }; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1229 | |
Benjamin Kramer | 62fb0cf | 2014-03-15 17:17:48 +0000 | [diff] [blame] | 1230 | typedef PointerIntPair<const SCEV *, 2, KindType> SCEVUseKindPair; |
| 1231 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1232 | KindType Kind; |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 1233 | MemAccessTy AccessTy; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1234 | |
| 1235 | SmallVector<int64_t, 8> Offsets; |
| 1236 | int64_t MinOffset; |
| 1237 | int64_t MaxOffset; |
| 1238 | |
| 1239 | /// AllFixupsOutsideLoop - This records whether all of the fixups using this |
| 1240 | /// LSRUse are outside of the loop, in which case some special-case heuristics |
| 1241 | /// may be used. |
| 1242 | bool AllFixupsOutsideLoop; |
| 1243 | |
Andrew Trick | 57243da | 2013-10-25 21:35:56 +0000 | [diff] [blame] | 1244 | /// RigidFormula is set to true to guarantee that this use will be associated |
| 1245 | /// with a single formula--the one that initially matched. Some SCEV |
| 1246 | /// expressions cannot be expanded. This allows LSR to consider the registers |
| 1247 | /// used by those expressions without the need to expand them later after |
| 1248 | /// changing the formula. |
| 1249 | bool RigidFormula; |
| 1250 | |
Dan Gohman | 1415208 | 2010-07-15 20:24:58 +0000 | [diff] [blame] | 1251 | /// WidestFixupType - This records the widest use type for any fixup using |
| 1252 | /// this LSRUse. FindUseWithSimilarFormula can't consider uses with different |
| 1253 | /// max fixup widths to be equivalent, because the narrower one may be relying |
| 1254 | /// on the implicit truncation to truncate away bogus bits. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1255 | Type *WidestFixupType; |
Dan Gohman | 1415208 | 2010-07-15 20:24:58 +0000 | [diff] [blame] | 1256 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1257 | /// Formulae - A list of ways to build a value that can satisfy this user. |
| 1258 | /// After the list is populated, one of these is selected heuristically and |
| 1259 | /// used to formulate a replacement for OperandValToReplace in UserInst. |
| 1260 | SmallVector<Formula, 12> Formulae; |
| 1261 | |
| 1262 | /// Regs - The set of register candidates used by all formulae in this LSRUse. |
| 1263 | SmallPtrSet<const SCEV *, 4> Regs; |
| 1264 | |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 1265 | LSRUse(KindType K, MemAccessTy AT) |
| 1266 | : Kind(K), AccessTy(AT), MinOffset(INT64_MAX), MaxOffset(INT64_MIN), |
| 1267 | AllFixupsOutsideLoop(true), RigidFormula(false), |
| 1268 | WidestFixupType(nullptr) {} |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1269 | |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 1270 | bool HasFormulaWithSameRegs(const Formula &F) const; |
Dan Gohman | 8c16b38 | 2010-02-22 04:11:59 +0000 | [diff] [blame] | 1271 | bool InsertFormula(const Formula &F); |
Dan Gohman | f1c7b1b | 2010-05-18 22:39:15 +0000 | [diff] [blame] | 1272 | void DeleteFormula(Formula &F); |
Dan Gohman | 4cf99b5 | 2010-05-18 23:42:37 +0000 | [diff] [blame] | 1273 | void RecomputeRegs(size_t LUIdx, RegUseTracker &Reguses); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1274 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1275 | void print(raw_ostream &OS) const; |
| 1276 | void dump() const; |
| 1277 | }; |
| 1278 | |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 1279 | } |
Dan Gohman | 297fb8b | 2010-06-19 21:21:39 +0000 | [diff] [blame] | 1280 | |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 1281 | /// HasFormula - Test whether this use as a formula which has the same |
| 1282 | /// registers as the given formula. |
| 1283 | bool LSRUse::HasFormulaWithSameRegs(const Formula &F) const { |
Preston Gurd | 25c3b6a | 2013-02-01 20:41:27 +0000 | [diff] [blame] | 1284 | SmallVector<const SCEV *, 4> Key = F.BaseRegs; |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 1285 | if (F.ScaledReg) Key.push_back(F.ScaledReg); |
| 1286 | // Unstable sort by host order ok, because this is only used for uniquifying. |
| 1287 | std::sort(Key.begin(), Key.end()); |
| 1288 | return Uniquifier.count(Key); |
| 1289 | } |
| 1290 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1291 | /// InsertFormula - If the given formula has not yet been inserted, add it to |
| 1292 | /// the list, and return true. Return false otherwise. |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1293 | /// The formula must be in canonical form. |
Dan Gohman | 8c16b38 | 2010-02-22 04:11:59 +0000 | [diff] [blame] | 1294 | bool LSRUse::InsertFormula(const Formula &F) { |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1295 | assert(F.isCanonical() && "Invalid canonical representation"); |
| 1296 | |
Andrew Trick | 57243da | 2013-10-25 21:35:56 +0000 | [diff] [blame] | 1297 | if (!Formulae.empty() && RigidFormula) |
| 1298 | return false; |
| 1299 | |
Preston Gurd | 25c3b6a | 2013-02-01 20:41:27 +0000 | [diff] [blame] | 1300 | SmallVector<const SCEV *, 4> Key = F.BaseRegs; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1301 | if (F.ScaledReg) Key.push_back(F.ScaledReg); |
| 1302 | // Unstable sort by host order ok, because this is only used for uniquifying. |
| 1303 | std::sort(Key.begin(), Key.end()); |
| 1304 | |
| 1305 | if (!Uniquifier.insert(Key).second) |
| 1306 | return false; |
| 1307 | |
| 1308 | // Using a register to hold the value of 0 is not profitable. |
| 1309 | assert((!F.ScaledReg || !F.ScaledReg->isZero()) && |
| 1310 | "Zero allocated in a scaled register!"); |
| 1311 | #ifndef NDEBUG |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 1312 | for (const SCEV *BaseReg : F.BaseRegs) |
| 1313 | assert(!BaseReg->isZero() && "Zero allocated in a base register!"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1314 | #endif |
| 1315 | |
| 1316 | // Add the formula to the list. |
| 1317 | Formulae.push_back(F); |
| 1318 | |
| 1319 | // Record registers now being used by this use. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1320 | Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end()); |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1321 | if (F.ScaledReg) |
| 1322 | Regs.insert(F.ScaledReg); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1323 | |
| 1324 | return true; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1325 | } |
| 1326 | |
Dan Gohman | f1c7b1b | 2010-05-18 22:39:15 +0000 | [diff] [blame] | 1327 | /// DeleteFormula - Remove the given formula from this use's list. |
| 1328 | void LSRUse::DeleteFormula(Formula &F) { |
Dan Gohman | 80a9608 | 2010-05-20 15:17:54 +0000 | [diff] [blame] | 1329 | if (&F != &Formulae.back()) |
| 1330 | std::swap(F, Formulae.back()); |
Dan Gohman | f1c7b1b | 2010-05-18 22:39:15 +0000 | [diff] [blame] | 1331 | Formulae.pop_back(); |
| 1332 | } |
| 1333 | |
Dan Gohman | 4cf99b5 | 2010-05-18 23:42:37 +0000 | [diff] [blame] | 1334 | /// RecomputeRegs - Recompute the Regs field, and update RegUses. |
| 1335 | void LSRUse::RecomputeRegs(size_t LUIdx, RegUseTracker &RegUses) { |
| 1336 | // Now that we've filtered out some formulae, recompute the Regs set. |
Benjamin Kramer | 1c2beed | 2015-02-19 17:19:43 +0000 | [diff] [blame] | 1337 | SmallPtrSet<const SCEV *, 4> OldRegs = std::move(Regs); |
Dan Gohman | 4cf99b5 | 2010-05-18 23:42:37 +0000 | [diff] [blame] | 1338 | Regs.clear(); |
Benjamin Kramer | 1c2beed | 2015-02-19 17:19:43 +0000 | [diff] [blame] | 1339 | for (const Formula &F : Formulae) { |
Dan Gohman | 4cf99b5 | 2010-05-18 23:42:37 +0000 | [diff] [blame] | 1340 | if (F.ScaledReg) Regs.insert(F.ScaledReg); |
| 1341 | Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end()); |
| 1342 | } |
| 1343 | |
| 1344 | // Update the RegTracker. |
Craig Topper | 4627679 | 2014-08-24 23:23:06 +0000 | [diff] [blame] | 1345 | for (const SCEV *S : OldRegs) |
| 1346 | if (!Regs.count(S)) |
| 1347 | RegUses.DropRegister(S, LUIdx); |
Dan Gohman | 4cf99b5 | 2010-05-18 23:42:37 +0000 | [diff] [blame] | 1348 | } |
| 1349 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1350 | void LSRUse::print(raw_ostream &OS) const { |
| 1351 | OS << "LSR Use: Kind="; |
| 1352 | switch (Kind) { |
| 1353 | case Basic: OS << "Basic"; break; |
| 1354 | case Special: OS << "Special"; break; |
| 1355 | case ICmpZero: OS << "ICmpZero"; break; |
| 1356 | case Address: |
| 1357 | OS << "Address of "; |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 1358 | if (AccessTy.MemTy->isPointerTy()) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1359 | OS << "pointer"; // the full pointer type could be really verbose |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 1360 | else { |
| 1361 | OS << *AccessTy.MemTy; |
| 1362 | } |
| 1363 | |
| 1364 | OS << " in addrspace(" << AccessTy.AddrSpace << ')'; |
Evan Cheng | 133694d | 2007-10-25 09:11:16 +0000 | [diff] [blame] | 1365 | } |
| 1366 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1367 | OS << ", Offsets={"; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 1368 | bool NeedComma = false; |
| 1369 | for (int64_t O : Offsets) { |
| 1370 | if (NeedComma) OS << ','; |
| 1371 | OS << O; |
| 1372 | NeedComma = true; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1373 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1374 | OS << '}'; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1375 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1376 | if (AllFixupsOutsideLoop) |
| 1377 | OS << ", all-fixups-outside-loop"; |
Dan Gohman | 1415208 | 2010-07-15 20:24:58 +0000 | [diff] [blame] | 1378 | |
| 1379 | if (WidestFixupType) |
| 1380 | OS << ", widest fixup type: " << *WidestFixupType; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1381 | } |
| 1382 | |
Manman Ren | 49d684e | 2012-09-12 05:06:18 +0000 | [diff] [blame] | 1383 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1384 | void LSRUse::dump() const { |
| 1385 | print(errs()); errs() << '\n'; |
| 1386 | } |
Manman Ren | c3366cc | 2012-09-06 19:55:56 +0000 | [diff] [blame] | 1387 | #endif |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1388 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1389 | static bool isAMCompletelyFolded(const TargetTransformInfo &TTI, |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 1390 | LSRUse::KindType Kind, MemAccessTy AccessTy, |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1391 | GlobalValue *BaseGV, int64_t BaseOffset, |
| 1392 | bool HasBaseReg, int64_t Scale) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1393 | switch (Kind) { |
| 1394 | case LSRUse::Address: |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 1395 | return TTI.isLegalAddressingMode(AccessTy.MemTy, BaseGV, BaseOffset, |
| 1396 | HasBaseReg, Scale, AccessTy.AddrSpace); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1397 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1398 | case LSRUse::ICmpZero: |
| 1399 | // There's not even a target hook for querying whether it would be legal to |
| 1400 | // fold a GV into an ICmp. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1401 | if (BaseGV) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1402 | return false; |
| 1403 | |
| 1404 | // 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] | 1405 | if (Scale != 0 && HasBaseReg && BaseOffset != 0) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1406 | return false; |
| 1407 | |
| 1408 | // ICmp only supports no scale or a -1 scale, as we can "fold" a -1 scale by |
| 1409 | // putting the scaled register in the other operand of the icmp. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1410 | if (Scale != 0 && Scale != -1) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1411 | return false; |
| 1412 | |
| 1413 | // If we have low-level target information, ask the target if it can fold an |
| 1414 | // integer immediate on an icmp. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1415 | if (BaseOffset != 0) { |
Jakob Stoklund Olesen | f2390e8 | 2012-04-05 03:10:56 +0000 | [diff] [blame] | 1416 | // We have one of: |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1417 | // ICmpZero BaseReg + BaseOffset => ICmp BaseReg, -BaseOffset |
| 1418 | // ICmpZero -1*ScaleReg + BaseOffset => ICmp ScaleReg, BaseOffset |
Jakob Stoklund Olesen | f2390e8 | 2012-04-05 03:10:56 +0000 | [diff] [blame] | 1419 | // Offs is the ICmp immediate. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1420 | if (Scale == 0) |
| 1421 | // The cast does the right thing with INT64_MIN. |
| 1422 | BaseOffset = -(uint64_t)BaseOffset; |
| 1423 | return TTI.isLegalICmpImmediate(BaseOffset); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1424 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1425 | |
Jakob Stoklund Olesen | f2390e8 | 2012-04-05 03:10:56 +0000 | [diff] [blame] | 1426 | // ICmpZero BaseReg + -1*ScaleReg => ICmp BaseReg, ScaleReg |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1427 | return true; |
| 1428 | |
| 1429 | case LSRUse::Basic: |
| 1430 | // Only handle single-register values. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1431 | return !BaseGV && Scale == 0 && BaseOffset == 0; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1432 | |
| 1433 | case LSRUse::Special: |
Andrew Trick | aca8fb3 | 2012-06-15 20:07:26 +0000 | [diff] [blame] | 1434 | // Special case Basic to handle -1 scales. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1435 | return !BaseGV && (Scale == 0 || Scale == -1) && BaseOffset == 0; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1436 | } |
| 1437 | |
David Blaikie | 46a9f01 | 2012-01-20 21:51:11 +0000 | [diff] [blame] | 1438 | llvm_unreachable("Invalid LSRUse Kind!"); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1439 | } |
| 1440 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1441 | static bool isAMCompletelyFolded(const TargetTransformInfo &TTI, |
| 1442 | int64_t MinOffset, int64_t MaxOffset, |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 1443 | LSRUse::KindType Kind, MemAccessTy AccessTy, |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1444 | GlobalValue *BaseGV, int64_t BaseOffset, |
| 1445 | bool HasBaseReg, int64_t Scale) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1446 | // Check for overflow. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1447 | if (((int64_t)((uint64_t)BaseOffset + MinOffset) > BaseOffset) != |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1448 | (MinOffset > 0)) |
| 1449 | return false; |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1450 | MinOffset = (uint64_t)BaseOffset + MinOffset; |
| 1451 | if (((int64_t)((uint64_t)BaseOffset + MaxOffset) > BaseOffset) != |
| 1452 | (MaxOffset > 0)) |
| 1453 | return false; |
| 1454 | MaxOffset = (uint64_t)BaseOffset + MaxOffset; |
| 1455 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1456 | return isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, MinOffset, |
| 1457 | HasBaseReg, Scale) && |
| 1458 | isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, MaxOffset, |
| 1459 | HasBaseReg, Scale); |
| 1460 | } |
| 1461 | |
| 1462 | static bool isAMCompletelyFolded(const TargetTransformInfo &TTI, |
| 1463 | int64_t MinOffset, int64_t MaxOffset, |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 1464 | LSRUse::KindType Kind, MemAccessTy AccessTy, |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1465 | const Formula &F) { |
| 1466 | // For the purpose of isAMCompletelyFolded either having a canonical formula |
| 1467 | // or a scale not equal to zero is correct. |
| 1468 | // Problems may arise from non canonical formulae having a scale == 0. |
| 1469 | // Strictly speaking it would best to just rely on canonical formulae. |
| 1470 | // However, when we generate the scaled formulae, we first check that the |
| 1471 | // scaling factor is profitable before computing the actual ScaledReg for |
| 1472 | // compile time sake. |
| 1473 | assert((F.isCanonical() || F.Scale != 0)); |
| 1474 | return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, |
| 1475 | F.BaseGV, F.BaseOffset, F.HasBaseReg, F.Scale); |
| 1476 | } |
| 1477 | |
| 1478 | /// isLegalUse - Test whether we know how to expand the current formula. |
| 1479 | static bool isLegalUse(const TargetTransformInfo &TTI, int64_t MinOffset, |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 1480 | int64_t MaxOffset, LSRUse::KindType Kind, |
| 1481 | MemAccessTy AccessTy, GlobalValue *BaseGV, |
| 1482 | int64_t BaseOffset, bool HasBaseReg, int64_t Scale) { |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1483 | // We know how to expand completely foldable formulae. |
| 1484 | return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, BaseGV, |
| 1485 | BaseOffset, HasBaseReg, Scale) || |
| 1486 | // Or formulae that use a base register produced by a sum of base |
| 1487 | // registers. |
| 1488 | (Scale == 1 && |
| 1489 | isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, |
| 1490 | BaseGV, BaseOffset, true, 0)); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1491 | } |
| 1492 | |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1493 | static bool isLegalUse(const TargetTransformInfo &TTI, int64_t MinOffset, |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 1494 | int64_t MaxOffset, LSRUse::KindType Kind, |
| 1495 | MemAccessTy AccessTy, const Formula &F) { |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 1496 | return isLegalUse(TTI, MinOffset, MaxOffset, Kind, AccessTy, F.BaseGV, |
| 1497 | F.BaseOffset, F.HasBaseReg, F.Scale); |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1498 | } |
| 1499 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1500 | static bool isAMCompletelyFolded(const TargetTransformInfo &TTI, |
| 1501 | const LSRUse &LU, const Formula &F) { |
| 1502 | return isAMCompletelyFolded(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, |
| 1503 | LU.AccessTy, F.BaseGV, F.BaseOffset, F.HasBaseReg, |
| 1504 | F.Scale); |
| 1505 | } |
Quentin Colombet | 8aa7abe | 2013-05-31 17:20:29 +0000 | [diff] [blame] | 1506 | |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 1507 | static unsigned getScalingFactorCost(const TargetTransformInfo &TTI, |
| 1508 | const LSRUse &LU, const Formula &F) { |
| 1509 | if (!F.Scale) |
| 1510 | return 0; |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1511 | |
| 1512 | // If the use is not completely folded in that instruction, we will have to |
| 1513 | // pay an extra cost only for scale != 1. |
| 1514 | if (!isAMCompletelyFolded(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, |
| 1515 | LU.AccessTy, F)) |
| 1516 | return F.Scale != 1; |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 1517 | |
| 1518 | switch (LU.Kind) { |
| 1519 | case LSRUse::Address: { |
Quentin Colombet | 145eb97 | 2013-06-19 19:59:41 +0000 | [diff] [blame] | 1520 | // Check the scaling factor cost with both the min and max offsets. |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 1521 | int ScaleCostMinOffset = TTI.getScalingFactorCost( |
| 1522 | LU.AccessTy.MemTy, F.BaseGV, F.BaseOffset + LU.MinOffset, F.HasBaseReg, |
| 1523 | F.Scale, LU.AccessTy.AddrSpace); |
| 1524 | int ScaleCostMaxOffset = TTI.getScalingFactorCost( |
| 1525 | LU.AccessTy.MemTy, F.BaseGV, F.BaseOffset + LU.MaxOffset, F.HasBaseReg, |
| 1526 | F.Scale, LU.AccessTy.AddrSpace); |
Quentin Colombet | 145eb97 | 2013-06-19 19:59:41 +0000 | [diff] [blame] | 1527 | |
| 1528 | assert(ScaleCostMinOffset >= 0 && ScaleCostMaxOffset >= 0 && |
| 1529 | "Legal addressing mode has an illegal cost!"); |
| 1530 | return std::max(ScaleCostMinOffset, ScaleCostMaxOffset); |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 1531 | } |
| 1532 | case LSRUse::ICmpZero: |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 1533 | case LSRUse::Basic: |
| 1534 | case LSRUse::Special: |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1535 | // The use is completely folded, i.e., everything is folded into the |
| 1536 | // instruction. |
Quentin Colombet | bf490d4 | 2013-05-31 21:29:03 +0000 | [diff] [blame] | 1537 | return 0; |
| 1538 | } |
| 1539 | |
| 1540 | llvm_unreachable("Invalid LSRUse Kind!"); |
| 1541 | } |
| 1542 | |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1543 | static bool isAlwaysFoldable(const TargetTransformInfo &TTI, |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 1544 | LSRUse::KindType Kind, MemAccessTy AccessTy, |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1545 | GlobalValue *BaseGV, int64_t BaseOffset, |
| 1546 | bool HasBaseReg) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1547 | // Fast-path: zero is always foldable. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1548 | if (BaseOffset == 0 && !BaseGV) return true; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1549 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1550 | // Conservatively, create an address with an immediate and a |
| 1551 | // base and a scale. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1552 | int64_t Scale = Kind == LSRUse::ICmpZero ? -1 : 1; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1553 | |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 1554 | // Canonicalize a scale of 1 to a base register if the formula doesn't |
| 1555 | // already have a base register. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1556 | if (!HasBaseReg && Scale == 1) { |
| 1557 | Scale = 0; |
| 1558 | HasBaseReg = true; |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 1559 | } |
| 1560 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1561 | return isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, BaseOffset, |
| 1562 | HasBaseReg, Scale); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1563 | } |
| 1564 | |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1565 | static bool isAlwaysFoldable(const TargetTransformInfo &TTI, |
| 1566 | ScalarEvolution &SE, int64_t MinOffset, |
| 1567 | int64_t MaxOffset, LSRUse::KindType Kind, |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 1568 | MemAccessTy AccessTy, const SCEV *S, |
| 1569 | bool HasBaseReg) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1570 | // Fast-path: zero is always foldable. |
| 1571 | if (S->isZero()) return true; |
| 1572 | |
| 1573 | // Conservatively, create an address with an immediate and a |
| 1574 | // base and a scale. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1575 | int64_t BaseOffset = ExtractImmediate(S, SE); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1576 | GlobalValue *BaseGV = ExtractSymbol(S, SE); |
| 1577 | |
| 1578 | // If there's anything else involved, it's not foldable. |
| 1579 | if (!S->isZero()) return false; |
| 1580 | |
| 1581 | // Fast-path: zero is always foldable. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1582 | if (BaseOffset == 0 && !BaseGV) return true; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1583 | |
| 1584 | // Conservatively, create an address with an immediate and a |
| 1585 | // base and a scale. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1586 | int64_t Scale = Kind == LSRUse::ICmpZero ? -1 : 1; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1587 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1588 | return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, BaseGV, |
| 1589 | BaseOffset, HasBaseReg, Scale); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1590 | } |
| 1591 | |
Dan Gohman | 297fb8b | 2010-06-19 21:21:39 +0000 | [diff] [blame] | 1592 | namespace { |
| 1593 | |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 1594 | /// IVInc - An individual increment in a Chain of IV increments. |
| 1595 | /// Relate an IV user to an expression that computes the IV it uses from the IV |
| 1596 | /// used by the previous link in the Chain. |
| 1597 | /// |
| 1598 | /// For the head of a chain, IncExpr holds the absolute SCEV expression for the |
| 1599 | /// original IVOperand. The head of the chain's IVOperand is only valid during |
| 1600 | /// chain collection, before LSR replaces IV users. During chain generation, |
| 1601 | /// IncExpr can be used to find the new IVOperand that computes the same |
| 1602 | /// expression. |
| 1603 | struct IVInc { |
| 1604 | Instruction *UserInst; |
| 1605 | Value* IVOperand; |
| 1606 | const SCEV *IncExpr; |
| 1607 | |
| 1608 | IVInc(Instruction *U, Value *O, const SCEV *E): |
| 1609 | UserInst(U), IVOperand(O), IncExpr(E) {} |
| 1610 | }; |
| 1611 | |
| 1612 | // IVChain - The list of IV increments in program order. |
| 1613 | // We typically add the head of a chain without finding subsequent links. |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 1614 | struct IVChain { |
| 1615 | SmallVector<IVInc,1> Incs; |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 1616 | const SCEV *ExprBase; |
| 1617 | |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1618 | IVChain() : ExprBase(nullptr) {} |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 1619 | |
| 1620 | IVChain(const IVInc &Head, const SCEV *Base) |
| 1621 | : Incs(1, Head), ExprBase(Base) {} |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 1622 | |
| 1623 | typedef SmallVectorImpl<IVInc>::const_iterator const_iterator; |
| 1624 | |
| 1625 | // begin - return the first increment in the chain. |
| 1626 | const_iterator begin() const { |
| 1627 | assert(!Incs.empty()); |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 1628 | return std::next(Incs.begin()); |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 1629 | } |
| 1630 | const_iterator end() const { |
| 1631 | return Incs.end(); |
| 1632 | } |
| 1633 | |
| 1634 | // hasIncs - Returns true if this chain contains any increments. |
| 1635 | bool hasIncs() const { return Incs.size() >= 2; } |
| 1636 | |
| 1637 | // add - Add an IVInc to the end of this chain. |
| 1638 | void add(const IVInc &X) { Incs.push_back(X); } |
| 1639 | |
| 1640 | // tailUserInst - Returns the last UserInst in the chain. |
| 1641 | Instruction *tailUserInst() const { return Incs.back().UserInst; } |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 1642 | |
| 1643 | // isProfitableIncrement - Returns true if IncExpr can be profitably added to |
| 1644 | // this chain. |
| 1645 | bool isProfitableIncrement(const SCEV *OperExpr, |
| 1646 | const SCEV *IncExpr, |
| 1647 | ScalarEvolution&); |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 1648 | }; |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 1649 | |
| 1650 | /// ChainUsers - Helper for CollectChains to track multiple IV increment uses. |
| 1651 | /// Distinguish between FarUsers that definitely cross IV increments and |
| 1652 | /// NearUsers that may be used between IV increments. |
| 1653 | struct ChainUsers { |
| 1654 | SmallPtrSet<Instruction*, 4> FarUsers; |
| 1655 | SmallPtrSet<Instruction*, 4> NearUsers; |
| 1656 | }; |
| 1657 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1658 | /// LSRInstance - This class holds state for the main loop strength reduction |
| 1659 | /// logic. |
| 1660 | class LSRInstance { |
| 1661 | IVUsers &IU; |
| 1662 | ScalarEvolution &SE; |
| 1663 | DominatorTree &DT; |
Dan Gohman | 607e02b | 2010-04-09 22:07:05 +0000 | [diff] [blame] | 1664 | LoopInfo &LI; |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1665 | const TargetTransformInfo &TTI; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1666 | Loop *const L; |
| 1667 | bool Changed; |
| 1668 | |
| 1669 | /// IVIncInsertPos - This is the insert position that the current loop's |
| 1670 | /// induction variable increment should be placed. In simple loops, this is |
| 1671 | /// the latch block's terminator. But in more complicated cases, this is a |
| 1672 | /// position which will dominate all the in-loop post-increment users. |
| 1673 | Instruction *IVIncInsertPos; |
| 1674 | |
| 1675 | /// Factors - Interesting factors between use strides. |
| 1676 | SmallSetVector<int64_t, 8> Factors; |
| 1677 | |
| 1678 | /// Types - Interesting use types, to facilitate truncation reuse. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1679 | SmallSetVector<Type *, 4> Types; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1680 | |
| 1681 | /// Fixups - The list of operands which are to be replaced. |
| 1682 | SmallVector<LSRFixup, 16> Fixups; |
| 1683 | |
| 1684 | /// Uses - The list of interesting uses. |
| 1685 | SmallVector<LSRUse, 16> Uses; |
| 1686 | |
| 1687 | /// RegUses - Track which uses use which register candidates. |
| 1688 | RegUseTracker RegUses; |
| 1689 | |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 1690 | // Limit the number of chains to avoid quadratic behavior. We don't expect to |
| 1691 | // have more than a few IV increment chains in a loop. Missing a Chain falls |
| 1692 | // back to normal LSR behavior for those uses. |
| 1693 | static const unsigned MaxChains = 8; |
| 1694 | |
| 1695 | /// IVChainVec - IV users can form a chain of IV increments. |
| 1696 | SmallVector<IVChain, MaxChains> IVChainVec; |
| 1697 | |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 1698 | /// IVIncSet - IV users that belong to profitable IVChains. |
| 1699 | SmallPtrSet<Use*, MaxChains> IVIncSet; |
| 1700 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1701 | void OptimizeShadowIV(); |
| 1702 | bool FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse); |
| 1703 | ICmpInst *OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse); |
Dan Gohman | 4c4043c | 2010-05-20 20:05:31 +0000 | [diff] [blame] | 1704 | void OptimizeLoopTermCond(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1705 | |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 1706 | void ChainInstruction(Instruction *UserInst, Instruction *IVOper, |
| 1707 | SmallVectorImpl<ChainUsers> &ChainUsersVec); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 1708 | void FinalizeChain(IVChain &Chain); |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 1709 | void CollectChains(); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 1710 | void GenerateIVChain(const IVChain &Chain, SCEVExpander &Rewriter, |
| 1711 | SmallVectorImpl<WeakVH> &DeadInsts); |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 1712 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1713 | void CollectInterestingTypesAndFactors(); |
| 1714 | void CollectFixupsAndInitialFormulae(); |
| 1715 | |
| 1716 | LSRFixup &getNewFixup() { |
| 1717 | Fixups.push_back(LSRFixup()); |
| 1718 | return Fixups.back(); |
| 1719 | } |
| 1720 | |
| 1721 | // Support for sharing of LSRUses between LSRFixups. |
Benjamin Kramer | 62fb0cf | 2014-03-15 17:17:48 +0000 | [diff] [blame] | 1722 | typedef DenseMap<LSRUse::SCEVUseKindPair, size_t> UseMapTy; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1723 | UseMapTy UseMap; |
| 1724 | |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 1725 | bool reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg, |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 1726 | LSRUse::KindType Kind, MemAccessTy AccessTy); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1727 | |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 1728 | std::pair<size_t, int64_t> getUse(const SCEV *&Expr, LSRUse::KindType Kind, |
| 1729 | MemAccessTy AccessTy); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1730 | |
Dan Gohman | a7b68d6 | 2010-10-07 23:33:43 +0000 | [diff] [blame] | 1731 | void DeleteUse(LSRUse &LU, size_t LUIdx); |
Dan Gohman | 80a9608 | 2010-05-20 15:17:54 +0000 | [diff] [blame] | 1732 | |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 1733 | LSRUse *FindUseWithSimilarFormula(const Formula &F, const LSRUse &OrigLU); |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 1734 | |
Dan Gohman | 8c16b38 | 2010-02-22 04:11:59 +0000 | [diff] [blame] | 1735 | void InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1736 | void InsertSupplementalFormula(const SCEV *S, LSRUse &LU, size_t LUIdx); |
| 1737 | void CountRegisters(const Formula &F, size_t LUIdx); |
| 1738 | bool InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F); |
| 1739 | |
| 1740 | void CollectLoopInvariantFixupsAndFormulae(); |
| 1741 | |
| 1742 | void GenerateReassociations(LSRUse &LU, unsigned LUIdx, Formula Base, |
| 1743 | unsigned Depth = 0); |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1744 | |
| 1745 | void GenerateReassociationsImpl(LSRUse &LU, unsigned LUIdx, |
| 1746 | const Formula &Base, unsigned Depth, |
| 1747 | size_t Idx, bool IsScaledReg = false); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1748 | void GenerateCombinations(LSRUse &LU, unsigned LUIdx, Formula Base); |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1749 | void GenerateSymbolicOffsetsImpl(LSRUse &LU, unsigned LUIdx, |
| 1750 | const Formula &Base, size_t Idx, |
| 1751 | bool IsScaledReg = false); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1752 | void GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx, Formula Base); |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 1753 | void GenerateConstantOffsetsImpl(LSRUse &LU, unsigned LUIdx, |
| 1754 | const Formula &Base, |
| 1755 | const SmallVectorImpl<int64_t> &Worklist, |
| 1756 | size_t Idx, bool IsScaledReg = false); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1757 | void GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx, Formula Base); |
| 1758 | void GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx, Formula Base); |
| 1759 | void GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base); |
| 1760 | void GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base); |
| 1761 | void GenerateCrossUseConstantOffsets(); |
| 1762 | void GenerateAllReuseFormulae(); |
| 1763 | |
| 1764 | void FilterOutUndesirableDedicatedRegisters(); |
Dan Gohman | a4eca05 | 2010-05-18 22:51:59 +0000 | [diff] [blame] | 1765 | |
| 1766 | size_t EstimateSearchSpaceComplexity() const; |
Dan Gohman | e9e0873 | 2010-08-29 16:09:42 +0000 | [diff] [blame] | 1767 | void NarrowSearchSpaceByDetectingSupersets(); |
| 1768 | void NarrowSearchSpaceByCollapsingUnrolledCode(); |
Dan Gohman | 002ff89 | 2010-08-29 16:39:22 +0000 | [diff] [blame] | 1769 | void NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters(); |
Dan Gohman | e9e0873 | 2010-08-29 16:09:42 +0000 | [diff] [blame] | 1770 | void NarrowSearchSpaceByPickingWinnerRegs(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1771 | void NarrowSearchSpaceUsingHeuristics(); |
| 1772 | |
| 1773 | void SolveRecurse(SmallVectorImpl<const Formula *> &Solution, |
| 1774 | Cost &SolutionCost, |
| 1775 | SmallVectorImpl<const Formula *> &Workspace, |
| 1776 | const Cost &CurCost, |
| 1777 | const SmallPtrSet<const SCEV *, 16> &CurRegs, |
| 1778 | DenseSet<const SCEV *> &VisitedRegs) const; |
| 1779 | void Solve(SmallVectorImpl<const Formula *> &Solution) const; |
| 1780 | |
Dan Gohman | 607e02b | 2010-04-09 22:07:05 +0000 | [diff] [blame] | 1781 | BasicBlock::iterator |
| 1782 | HoistInsertPosition(BasicBlock::iterator IP, |
| 1783 | const SmallVectorImpl<Instruction *> &Inputs) const; |
Andrew Trick | c908b43 | 2012-01-20 07:41:13 +0000 | [diff] [blame] | 1784 | BasicBlock::iterator |
| 1785 | AdjustInsertPositionForExpand(BasicBlock::iterator IP, |
| 1786 | const LSRFixup &LF, |
| 1787 | const LSRUse &LU, |
| 1788 | SCEVExpander &Rewriter) const; |
Dan Gohman | d2df643 | 2010-04-09 02:00:38 +0000 | [diff] [blame] | 1789 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1790 | Value *Expand(const LSRFixup &LF, |
| 1791 | const Formula &F, |
Dan Gohman | 8c16b38 | 2010-02-22 04:11:59 +0000 | [diff] [blame] | 1792 | BasicBlock::iterator IP, |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1793 | SCEVExpander &Rewriter, |
Dan Gohman | 8c16b38 | 2010-02-22 04:11:59 +0000 | [diff] [blame] | 1794 | SmallVectorImpl<WeakVH> &DeadInsts) const; |
Dan Gohman | 6deab96 | 2010-02-16 20:25:07 +0000 | [diff] [blame] | 1795 | void RewriteForPHI(PHINode *PN, const LSRFixup &LF, |
| 1796 | const Formula &F, |
Dan Gohman | 6deab96 | 2010-02-16 20:25:07 +0000 | [diff] [blame] | 1797 | SCEVExpander &Rewriter, |
| 1798 | SmallVectorImpl<WeakVH> &DeadInsts, |
Dan Gohman | 6deab96 | 2010-02-16 20:25:07 +0000 | [diff] [blame] | 1799 | Pass *P) const; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1800 | void Rewrite(const LSRFixup &LF, |
| 1801 | const Formula &F, |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1802 | SCEVExpander &Rewriter, |
| 1803 | SmallVectorImpl<WeakVH> &DeadInsts, |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1804 | Pass *P) const; |
| 1805 | void ImplementSolution(const SmallVectorImpl<const Formula *> &Solution, |
| 1806 | Pass *P); |
| 1807 | |
Andrew Trick | dc18e38 | 2011-12-13 00:55:33 +0000 | [diff] [blame] | 1808 | public: |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1809 | LSRInstance(Loop *L, Pass *P); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1810 | |
| 1811 | bool getChanged() const { return Changed; } |
| 1812 | |
| 1813 | void print_factors_and_types(raw_ostream &OS) const; |
| 1814 | void print_fixups(raw_ostream &OS) const; |
| 1815 | void print_uses(raw_ostream &OS) const; |
| 1816 | void print(raw_ostream &OS) const; |
| 1817 | void dump() const; |
| 1818 | }; |
| 1819 | |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 1820 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1821 | |
| 1822 | /// OptimizeShadowIV - If IV is used in a int-to-float cast |
Dan Gohman | 8b0a419 | 2010-03-01 17:49:51 +0000 | [diff] [blame] | 1823 | /// inside the loop then try to eliminate the cast operation. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1824 | void LSRInstance::OptimizeShadowIV() { |
| 1825 | const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L); |
| 1826 | if (isa<SCEVCouldNotCompute>(BackedgeTakenCount)) |
| 1827 | return; |
| 1828 | |
| 1829 | for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); |
| 1830 | UI != E; /* empty */) { |
| 1831 | IVUsers::const_iterator CandidateUI = UI; |
| 1832 | ++UI; |
| 1833 | Instruction *ShadowUse = CandidateUI->getUser(); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1834 | Type *DestTy = nullptr; |
Andrew Trick | 858e9f0 | 2011-07-21 01:05:01 +0000 | [diff] [blame] | 1835 | bool IsSigned = false; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1836 | |
| 1837 | /* If shadow use is a int->float cast then insert a second IV |
| 1838 | to eliminate this cast. |
| 1839 | |
| 1840 | for (unsigned i = 0; i < n; ++i) |
| 1841 | foo((double)i); |
| 1842 | |
| 1843 | is transformed into |
| 1844 | |
| 1845 | double d = 0.0; |
| 1846 | for (unsigned i = 0; i < n; ++i, ++d) |
| 1847 | foo(d); |
| 1848 | */ |
Andrew Trick | 858e9f0 | 2011-07-21 01:05:01 +0000 | [diff] [blame] | 1849 | if (UIToFPInst *UCast = dyn_cast<UIToFPInst>(CandidateUI->getUser())) { |
| 1850 | IsSigned = false; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1851 | DestTy = UCast->getDestTy(); |
Andrew Trick | 858e9f0 | 2011-07-21 01:05:01 +0000 | [diff] [blame] | 1852 | } |
| 1853 | else if (SIToFPInst *SCast = dyn_cast<SIToFPInst>(CandidateUI->getUser())) { |
| 1854 | IsSigned = true; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1855 | DestTy = SCast->getDestTy(); |
Andrew Trick | 858e9f0 | 2011-07-21 01:05:01 +0000 | [diff] [blame] | 1856 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1857 | if (!DestTy) continue; |
| 1858 | |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 1859 | // If target does not support DestTy natively then do not apply |
| 1860 | // this transformation. |
| 1861 | if (!TTI.isTypeLegal(DestTy)) continue; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1862 | |
| 1863 | PHINode *PH = dyn_cast<PHINode>(ShadowUse->getOperand(0)); |
| 1864 | if (!PH) continue; |
| 1865 | if (PH->getNumIncomingValues() != 2) continue; |
| 1866 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1867 | Type *SrcTy = PH->getType(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1868 | int Mantissa = DestTy->getFPMantissaWidth(); |
| 1869 | if (Mantissa == -1) continue; |
| 1870 | if ((int)SE.getTypeSizeInBits(SrcTy) > Mantissa) |
| 1871 | continue; |
| 1872 | |
| 1873 | unsigned Entry, Latch; |
| 1874 | if (PH->getIncomingBlock(0) == L->getLoopPreheader()) { |
| 1875 | Entry = 0; |
| 1876 | Latch = 1; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1877 | } else { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1878 | Entry = 1; |
| 1879 | Latch = 0; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1880 | } |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1881 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1882 | ConstantInt *Init = dyn_cast<ConstantInt>(PH->getIncomingValue(Entry)); |
| 1883 | if (!Init) continue; |
Andrew Trick | 858e9f0 | 2011-07-21 01:05:01 +0000 | [diff] [blame] | 1884 | Constant *NewInit = ConstantFP::get(DestTy, IsSigned ? |
Andrew Trick | bd243d0 | 2011-07-21 01:45:54 +0000 | [diff] [blame] | 1885 | (double)Init->getSExtValue() : |
| 1886 | (double)Init->getZExtValue()); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1887 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1888 | BinaryOperator *Incr = |
| 1889 | dyn_cast<BinaryOperator>(PH->getIncomingValue(Latch)); |
| 1890 | if (!Incr) continue; |
| 1891 | if (Incr->getOpcode() != Instruction::Add |
| 1892 | && Incr->getOpcode() != Instruction::Sub) |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1893 | continue; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1894 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1895 | /* Initialize new IV, double d = 0.0 in above example. */ |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1896 | ConstantInt *C = nullptr; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1897 | if (Incr->getOperand(0) == PH) |
| 1898 | C = dyn_cast<ConstantInt>(Incr->getOperand(1)); |
| 1899 | else if (Incr->getOperand(1) == PH) |
| 1900 | C = dyn_cast<ConstantInt>(Incr->getOperand(0)); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1901 | else |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1902 | continue; |
| 1903 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1904 | if (!C) continue; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1905 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1906 | // Ignore negative constants, as the code below doesn't handle them |
| 1907 | // correctly. TODO: Remove this restriction. |
| 1908 | if (!C->getValue().isStrictlyPositive()) continue; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1909 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1910 | /* Add new PHINode. */ |
Jay Foad | 5213134 | 2011-03-30 11:28:46 +0000 | [diff] [blame] | 1911 | PHINode *NewPH = PHINode::Create(DestTy, 2, "IV.S.", PH); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1912 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1913 | /* create new increment. '++d' in above example. */ |
| 1914 | Constant *CFP = ConstantFP::get(DestTy, C->getZExtValue()); |
| 1915 | BinaryOperator *NewIncr = |
| 1916 | BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ? |
| 1917 | Instruction::FAdd : Instruction::FSub, |
| 1918 | NewPH, CFP, "IV.S.next.", Incr); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1919 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1920 | NewPH->addIncoming(NewInit, PH->getIncomingBlock(Entry)); |
| 1921 | NewPH->addIncoming(NewIncr, PH->getIncomingBlock(Latch)); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1922 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1923 | /* Remove cast operation */ |
| 1924 | ShadowUse->replaceAllUsesWith(NewPH); |
| 1925 | ShadowUse->eraseFromParent(); |
Dan Gohman | 4c4043c | 2010-05-20 20:05:31 +0000 | [diff] [blame] | 1926 | Changed = true; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1927 | break; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1928 | } |
| 1929 | } |
| 1930 | |
| 1931 | /// FindIVUserForCond - If Cond has an operand that is an expression of an IV, |
| 1932 | /// set the IV user and stride information and return true, otherwise return |
| 1933 | /// false. |
Dan Gohman | ab5fb7f | 2010-05-20 19:44:23 +0000 | [diff] [blame] | 1934 | bool LSRInstance::FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse) { |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 1935 | for (IVStrideUse &U : IU) |
| 1936 | if (U.getUser() == Cond) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1937 | // NOTE: we could handle setcc instructions with multiple uses here, but |
| 1938 | // InstCombine does it as well for simple uses, it's not clear that it |
| 1939 | // occurs enough in real life to handle. |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 1940 | CondUse = &U; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1941 | return true; |
| 1942 | } |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1943 | return false; |
Evan Cheng | 133694d | 2007-10-25 09:11:16 +0000 | [diff] [blame] | 1944 | } |
| 1945 | |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1946 | /// OptimizeMax - Rewrite the loop's terminating condition if it uses |
| 1947 | /// a max computation. |
| 1948 | /// |
| 1949 | /// This is a narrow solution to a specific, but acute, problem. For loops |
| 1950 | /// like this: |
| 1951 | /// |
| 1952 | /// i = 0; |
| 1953 | /// do { |
| 1954 | /// p[i] = 0.0; |
| 1955 | /// } while (++i < n); |
| 1956 | /// |
| 1957 | /// the trip count isn't just 'n', because 'n' might not be positive. And |
| 1958 | /// unfortunately this can come up even for loops where the user didn't use |
| 1959 | /// a C do-while loop. For example, seemingly well-behaved top-test loops |
| 1960 | /// will commonly be lowered like this: |
| 1961 | // |
| 1962 | /// if (n > 0) { |
| 1963 | /// i = 0; |
| 1964 | /// do { |
| 1965 | /// p[i] = 0.0; |
| 1966 | /// } while (++i < n); |
| 1967 | /// } |
| 1968 | /// |
| 1969 | /// and then it's possible for subsequent optimization to obscure the if |
| 1970 | /// test in such a way that indvars can't find it. |
| 1971 | /// |
| 1972 | /// When indvars can't find the if test in loops like this, it creates a |
| 1973 | /// max expression, which allows it to give the loop a canonical |
| 1974 | /// induction variable: |
| 1975 | /// |
| 1976 | /// i = 0; |
| 1977 | /// max = n < 1 ? 1 : n; |
| 1978 | /// do { |
| 1979 | /// p[i] = 0.0; |
| 1980 | /// } while (++i != max); |
| 1981 | /// |
| 1982 | /// Canonical induction variables are necessary because the loop passes |
| 1983 | /// are designed around them. The most obvious example of this is the |
| 1984 | /// LoopInfo analysis, which doesn't remember trip count values. It |
| 1985 | /// 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] | 1986 | /// 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] | 1987 | /// the loop has a canonical induction variable. |
| 1988 | /// |
| 1989 | /// However, when it comes time to generate code, the maximum operation |
| 1990 | /// can be quite costly, especially if it's inside of an outer loop. |
| 1991 | /// |
| 1992 | /// This function solves this problem by detecting this type of loop and |
| 1993 | /// rewriting their conditions from ICMP_NE back to ICMP_SLT, and deleting |
| 1994 | /// the instructions for the maximum computation. |
| 1995 | /// |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 1996 | ICmpInst *LSRInstance::OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse) { |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 1997 | // Check that the loop matches the pattern we're looking for. |
| 1998 | if (Cond->getPredicate() != CmpInst::ICMP_EQ && |
| 1999 | Cond->getPredicate() != CmpInst::ICMP_NE) |
| 2000 | return Cond; |
Dan Gohman | 51ad99d | 2010-01-21 02:09:26 +0000 | [diff] [blame] | 2001 | |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2002 | SelectInst *Sel = dyn_cast<SelectInst>(Cond->getOperand(1)); |
| 2003 | if (!Sel || !Sel->hasOneUse()) return Cond; |
Dan Gohman | 51ad99d | 2010-01-21 02:09:26 +0000 | [diff] [blame] | 2004 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2005 | const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2006 | if (isa<SCEVCouldNotCompute>(BackedgeTakenCount)) |
| 2007 | return Cond; |
Dan Gohman | 1d2ded7 | 2010-05-03 22:09:21 +0000 | [diff] [blame] | 2008 | const SCEV *One = SE.getConstant(BackedgeTakenCount->getType(), 1); |
Dan Gohman | 51ad99d | 2010-01-21 02:09:26 +0000 | [diff] [blame] | 2009 | |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2010 | // Add one to the backedge-taken count to get the trip count. |
Dan Gohman | 9b7632d | 2010-08-16 15:39:27 +0000 | [diff] [blame] | 2011 | const SCEV *IterationCount = SE.getAddExpr(One, BackedgeTakenCount); |
Dan Gohman | 534ba37 | 2010-04-24 03:13:44 +0000 | [diff] [blame] | 2012 | if (IterationCount != SE.getSCEV(Sel)) return Cond; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2013 | |
Dan Gohman | 534ba37 | 2010-04-24 03:13:44 +0000 | [diff] [blame] | 2014 | // Check for a max calculation that matches the pattern. There's no check |
| 2015 | // for ICMP_ULE here because the comparison would be with zero, which |
| 2016 | // isn't interesting. |
| 2017 | CmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE; |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2018 | const SCEVNAryExpr *Max = nullptr; |
Dan Gohman | 534ba37 | 2010-04-24 03:13:44 +0000 | [diff] [blame] | 2019 | if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(BackedgeTakenCount)) { |
| 2020 | Pred = ICmpInst::ICMP_SLE; |
| 2021 | Max = S; |
| 2022 | } else if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(IterationCount)) { |
| 2023 | Pred = ICmpInst::ICMP_SLT; |
| 2024 | Max = S; |
| 2025 | } else if (const SCEVUMaxExpr *U = dyn_cast<SCEVUMaxExpr>(IterationCount)) { |
| 2026 | Pred = ICmpInst::ICMP_ULT; |
| 2027 | Max = U; |
| 2028 | } else { |
| 2029 | // No match; bail. |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2030 | return Cond; |
Dan Gohman | 534ba37 | 2010-04-24 03:13:44 +0000 | [diff] [blame] | 2031 | } |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2032 | |
| 2033 | // To handle a max with more than two operands, this optimization would |
| 2034 | // require additional checking and setup. |
| 2035 | if (Max->getNumOperands() != 2) |
| 2036 | return Cond; |
| 2037 | |
| 2038 | const SCEV *MaxLHS = Max->getOperand(0); |
| 2039 | const SCEV *MaxRHS = Max->getOperand(1); |
Dan Gohman | 534ba37 | 2010-04-24 03:13:44 +0000 | [diff] [blame] | 2040 | |
| 2041 | // ScalarEvolution canonicalizes constants to the left. For < and >, look |
| 2042 | // for a comparison with 1. For <= and >=, a comparison with zero. |
| 2043 | if (!MaxLHS || |
| 2044 | (ICmpInst::isTrueWhenEqual(Pred) ? !MaxLHS->isZero() : (MaxLHS != One))) |
| 2045 | return Cond; |
| 2046 | |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2047 | // Check the relevant induction variable for conformance to |
| 2048 | // the pattern. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2049 | const SCEV *IV = SE.getSCEV(Cond->getOperand(0)); |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2050 | const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(IV); |
| 2051 | if (!AR || !AR->isAffine() || |
| 2052 | AR->getStart() != One || |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2053 | AR->getStepRecurrence(SE) != One) |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2054 | return Cond; |
| 2055 | |
| 2056 | assert(AR->getLoop() == L && |
| 2057 | "Loop condition operand is an addrec in a different loop!"); |
| 2058 | |
| 2059 | // Check the right operand of the select, and remember it, as it will |
| 2060 | // be used in the new comparison instruction. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2061 | Value *NewRHS = nullptr; |
Dan Gohman | 534ba37 | 2010-04-24 03:13:44 +0000 | [diff] [blame] | 2062 | if (ICmpInst::isTrueWhenEqual(Pred)) { |
| 2063 | // Look for n+1, and grab n. |
| 2064 | if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(1))) |
Jakub Staszak | f6df1e3 | 2013-03-24 09:25:47 +0000 | [diff] [blame] | 2065 | if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1))) |
| 2066 | if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS) |
| 2067 | NewRHS = BO->getOperand(0); |
Dan Gohman | 534ba37 | 2010-04-24 03:13:44 +0000 | [diff] [blame] | 2068 | if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(2))) |
Jakub Staszak | f6df1e3 | 2013-03-24 09:25:47 +0000 | [diff] [blame] | 2069 | if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1))) |
| 2070 | if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS) |
| 2071 | NewRHS = BO->getOperand(0); |
Dan Gohman | 534ba37 | 2010-04-24 03:13:44 +0000 | [diff] [blame] | 2072 | if (!NewRHS) |
| 2073 | return Cond; |
| 2074 | } else if (SE.getSCEV(Sel->getOperand(1)) == MaxRHS) |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2075 | NewRHS = Sel->getOperand(1); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2076 | else if (SE.getSCEV(Sel->getOperand(2)) == MaxRHS) |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2077 | NewRHS = Sel->getOperand(2); |
Dan Gohman | 1081f1a | 2010-06-22 23:07:13 +0000 | [diff] [blame] | 2078 | else if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(MaxRHS)) |
| 2079 | NewRHS = SU->getValue(); |
Dan Gohman | 534ba37 | 2010-04-24 03:13:44 +0000 | [diff] [blame] | 2080 | else |
Dan Gohman | 1081f1a | 2010-06-22 23:07:13 +0000 | [diff] [blame] | 2081 | // Max doesn't match expected pattern. |
| 2082 | return Cond; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2083 | |
| 2084 | // Determine the new comparison opcode. It may be signed or unsigned, |
| 2085 | // and the original comparison may be either equality or inequality. |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2086 | if (Cond->getPredicate() == CmpInst::ICMP_EQ) |
| 2087 | Pred = CmpInst::getInversePredicate(Pred); |
| 2088 | |
| 2089 | // Ok, everything looks ok to change the condition into an SLT or SGE and |
| 2090 | // delete the max calculation. |
| 2091 | ICmpInst *NewCond = |
| 2092 | new ICmpInst(Cond, Pred, Cond->getOperand(0), NewRHS, "scmp"); |
| 2093 | |
| 2094 | // Delete the max calculation instructions. |
| 2095 | Cond->replaceAllUsesWith(NewCond); |
| 2096 | CondUse->setUser(NewCond); |
| 2097 | Instruction *Cmp = cast<Instruction>(Sel->getOperand(0)); |
| 2098 | Cond->eraseFromParent(); |
| 2099 | Sel->eraseFromParent(); |
| 2100 | if (Cmp->use_empty()) |
| 2101 | Cmp->eraseFromParent(); |
| 2102 | return NewCond; |
Dan Gohman | 68e7735 | 2008-09-15 21:22:06 +0000 | [diff] [blame] | 2103 | } |
| 2104 | |
Jim Grosbach | 60f4854 | 2009-11-17 17:53:56 +0000 | [diff] [blame] | 2105 | /// OptimizeLoopTermCond - Change loop terminating condition to use the |
Evan Cheng | 85a9f43 | 2009-11-12 07:35:05 +0000 | [diff] [blame] | 2106 | /// postinc iv when possible. |
Dan Gohman | 4c4043c | 2010-05-20 20:05:31 +0000 | [diff] [blame] | 2107 | void |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2108 | LSRInstance::OptimizeLoopTermCond() { |
| 2109 | SmallPtrSet<Instruction *, 4> PostIncs; |
| 2110 | |
Evan Cheng | 85a9f43 | 2009-11-12 07:35:05 +0000 | [diff] [blame] | 2111 | BasicBlock *LatchBlock = L->getLoopLatch(); |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2112 | SmallVector<BasicBlock*, 8> ExitingBlocks; |
| 2113 | L->getExitingBlocks(ExitingBlocks); |
Jim Grosbach | 60f4854 | 2009-11-17 17:53:56 +0000 | [diff] [blame] | 2114 | |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2115 | for (BasicBlock *ExitingBlock : ExitingBlocks) { |
Evan Cheng | 85a9f43 | 2009-11-12 07:35:05 +0000 | [diff] [blame] | 2116 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2117 | // Get the terminating condition for the loop if possible. If we |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2118 | // can, we want to change it to use a post-incremented version of its |
| 2119 | // induction variable, to allow coalescing the live ranges for the IV into |
| 2120 | // one register value. |
Evan Cheng | 85a9f43 | 2009-11-12 07:35:05 +0000 | [diff] [blame] | 2121 | |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2122 | BranchInst *TermBr = dyn_cast<BranchInst>(ExitingBlock->getTerminator()); |
| 2123 | if (!TermBr) |
| 2124 | continue; |
| 2125 | // FIXME: Overly conservative, termination condition could be an 'or' etc.. |
| 2126 | if (TermBr->isUnconditional() || !isa<ICmpInst>(TermBr->getCondition())) |
| 2127 | continue; |
Evan Cheng | 85a9f43 | 2009-11-12 07:35:05 +0000 | [diff] [blame] | 2128 | |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2129 | // Search IVUsesByStride to find Cond's IVUse if there is one. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2130 | IVStrideUse *CondUse = nullptr; |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2131 | ICmpInst *Cond = cast<ICmpInst>(TermBr->getCondition()); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2132 | if (!FindIVUserForCond(Cond, CondUse)) |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2133 | continue; |
| 2134 | |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2135 | // If the trip count is computed in terms of a max (due to ScalarEvolution |
| 2136 | // being unable to find a sufficient guard, for example), change the loop |
| 2137 | // comparison to use SLT or ULT instead of NE. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2138 | // One consequence of doing this now is that it disrupts the count-down |
| 2139 | // optimization. That's not always a bad thing though, because in such |
| 2140 | // cases it may still be worthwhile to avoid a max. |
| 2141 | Cond = OptimizeMax(Cond, CondUse); |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2142 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2143 | // If this exiting block dominates the latch block, it may also use |
| 2144 | // the post-inc value if it won't be shared with other uses. |
| 2145 | // Check for dominance. |
| 2146 | if (!DT.dominates(ExitingBlock, LatchBlock)) |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2147 | continue; |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2148 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2149 | // Conservatively avoid trying to use the post-inc value in non-latch |
| 2150 | // exits if there may be pre-inc users in intervening blocks. |
Dan Gohman | 2d0f96d | 2010-02-14 03:21:49 +0000 | [diff] [blame] | 2151 | if (LatchBlock != ExitingBlock) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2152 | for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) |
| 2153 | // Test if the use is reachable from the exiting block. This dominator |
| 2154 | // query is a conservative approximation of reachability. |
| 2155 | if (&*UI != CondUse && |
| 2156 | !DT.properlyDominates(UI->getUser()->getParent(), ExitingBlock)) { |
| 2157 | // Conservatively assume there may be reuse if the quotient of their |
| 2158 | // strides could be a legal scale. |
Dan Gohman | e637ff5 | 2010-04-19 21:48:58 +0000 | [diff] [blame] | 2159 | const SCEV *A = IU.getStride(*CondUse, L); |
| 2160 | const SCEV *B = IU.getStride(*UI, L); |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 2161 | if (!A || !B) continue; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2162 | if (SE.getTypeSizeInBits(A->getType()) != |
| 2163 | SE.getTypeSizeInBits(B->getType())) { |
| 2164 | if (SE.getTypeSizeInBits(A->getType()) > |
| 2165 | SE.getTypeSizeInBits(B->getType())) |
| 2166 | B = SE.getSignExtendExpr(B, A->getType()); |
| 2167 | else |
| 2168 | A = SE.getSignExtendExpr(A, B->getType()); |
| 2169 | } |
| 2170 | if (const SCEVConstant *D = |
Dan Gohman | 4eebb94 | 2010-02-19 19:35:48 +0000 | [diff] [blame] | 2171 | dyn_cast_or_null<SCEVConstant>(getExactSDiv(B, A, SE))) { |
Dan Gohman | 86110fa | 2010-05-20 22:25:20 +0000 | [diff] [blame] | 2172 | const ConstantInt *C = D->getValue(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2173 | // Stride of one or negative one can have reuse with non-addresses. |
Dan Gohman | 86110fa | 2010-05-20 22:25:20 +0000 | [diff] [blame] | 2174 | if (C->isOne() || C->isAllOnesValue()) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2175 | goto decline_post_inc; |
| 2176 | // Avoid weird situations. |
Dan Gohman | 86110fa | 2010-05-20 22:25:20 +0000 | [diff] [blame] | 2177 | if (C->getValue().getMinSignedBits() >= 64 || |
| 2178 | C->getValue().isMinSignedValue()) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2179 | goto decline_post_inc; |
| 2180 | // Check for possible scaled-address reuse. |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 2181 | MemAccessTy AccessTy = getAccessType(UI->getUser()); |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 2182 | int64_t Scale = C->getSExtValue(); |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 2183 | if (TTI.isLegalAddressingMode(AccessTy.MemTy, /*BaseGV=*/nullptr, |
| 2184 | /*BaseOffset=*/0, |
| 2185 | /*HasBaseReg=*/false, Scale, |
| 2186 | AccessTy.AddrSpace)) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2187 | goto decline_post_inc; |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 2188 | Scale = -Scale; |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 2189 | if (TTI.isLegalAddressingMode(AccessTy.MemTy, /*BaseGV=*/nullptr, |
| 2190 | /*BaseOffset=*/0, |
| 2191 | /*HasBaseReg=*/false, Scale, |
| 2192 | AccessTy.AddrSpace)) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2193 | goto decline_post_inc; |
| 2194 | } |
| 2195 | } |
| 2196 | |
David Greene | 2330f78 | 2009-12-23 22:58:38 +0000 | [diff] [blame] | 2197 | DEBUG(dbgs() << " Change loop exiting icmp to use postinc iv: " |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2198 | << *Cond << '\n'); |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2199 | |
| 2200 | // It's possible for the setcc instruction to be anywhere in the loop, and |
| 2201 | // possible for it to have multiple users. If it is not immediately before |
| 2202 | // the exiting block branch, move it. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2203 | if (&*++BasicBlock::iterator(Cond) != TermBr) { |
| 2204 | if (Cond->hasOneUse()) { |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2205 | Cond->moveBefore(TermBr); |
| 2206 | } else { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2207 | // Clone the terminating condition and insert into the loopend. |
| 2208 | ICmpInst *OldCond = Cond; |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2209 | Cond = cast<ICmpInst>(Cond->clone()); |
| 2210 | Cond->setName(L->getHeader()->getName() + ".termcond"); |
| 2211 | ExitingBlock->getInstList().insert(TermBr, Cond); |
| 2212 | |
| 2213 | // Clone the IVUse, as the old use still exists! |
Andrew Trick | fc4ccb2 | 2011-06-21 15:43:52 +0000 | [diff] [blame] | 2214 | CondUse = &IU.AddUser(Cond, CondUse->getOperandValToReplace()); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2215 | TermBr->replaceUsesOfWith(OldCond, Cond); |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2216 | } |
Evan Cheng | 85a9f43 | 2009-11-12 07:35:05 +0000 | [diff] [blame] | 2217 | } |
| 2218 | |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2219 | // If we get to here, we know that we can transform the setcc instruction to |
| 2220 | // use the post-incremented version of the IV, allowing us to coalesce the |
| 2221 | // live ranges for the IV correctly. |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 2222 | CondUse->transformToPostInc(L); |
Evan Cheng | ba4e5da7 | 2009-11-17 18:10:11 +0000 | [diff] [blame] | 2223 | Changed = true; |
| 2224 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2225 | PostIncs.insert(Cond); |
| 2226 | decline_post_inc:; |
Dan Gohman | 51ad99d | 2010-01-21 02:09:26 +0000 | [diff] [blame] | 2227 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2228 | |
| 2229 | // Determine an insertion point for the loop induction variable increment. It |
| 2230 | // must dominate all the post-inc comparisons we just set up, and it must |
| 2231 | // dominate the loop latch edge. |
| 2232 | IVIncInsertPos = L->getLoopLatch()->getTerminator(); |
Craig Topper | 4627679 | 2014-08-24 23:23:06 +0000 | [diff] [blame] | 2233 | for (Instruction *Inst : PostIncs) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2234 | BasicBlock *BB = |
| 2235 | DT.findNearestCommonDominator(IVIncInsertPos->getParent(), |
Craig Topper | 4627679 | 2014-08-24 23:23:06 +0000 | [diff] [blame] | 2236 | Inst->getParent()); |
| 2237 | if (BB == Inst->getParent()) |
| 2238 | IVIncInsertPos = Inst; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2239 | else if (BB != IVIncInsertPos->getParent()) |
| 2240 | IVIncInsertPos = BB->getTerminator(); |
| 2241 | } |
Dan Gohman | 51ad99d | 2010-01-21 02:09:26 +0000 | [diff] [blame] | 2242 | } |
| 2243 | |
Chris Lattner | 0ab5e2c | 2011-04-15 05:18:47 +0000 | [diff] [blame] | 2244 | /// reconcileNewOffset - Determine if the given use can accommodate a fixup |
Dan Gohman | a4ca28a | 2010-05-20 20:52:00 +0000 | [diff] [blame] | 2245 | /// at the given offset and other details. If so, update the use and |
| 2246 | /// return true. |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 2247 | bool LSRInstance::reconcileNewOffset(LSRUse &LU, int64_t NewOffset, |
| 2248 | bool HasBaseReg, LSRUse::KindType Kind, |
| 2249 | MemAccessTy AccessTy) { |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 2250 | int64_t NewMinOffset = LU.MinOffset; |
| 2251 | int64_t NewMaxOffset = LU.MaxOffset; |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 2252 | MemAccessTy NewAccessTy = AccessTy; |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2253 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2254 | // Check for a mismatched kind. It's tempting to collapse mismatched kinds to |
| 2255 | // something conservative, however this can pessimize in the case that one of |
| 2256 | // the uses will have all its uses outside the loop, for example. |
| 2257 | if (LU.Kind != Kind) |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 2258 | return false; |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 2259 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2260 | // Check for a mismatched access type, and fall back conservatively as needed. |
Dan Gohman | 3265590 | 2010-06-19 21:30:18 +0000 | [diff] [blame] | 2261 | // TODO: Be less conservative when the type is similar and can use the same |
| 2262 | // addressing modes. |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 2263 | if (Kind == LSRUse::Address) { |
| 2264 | if (AccessTy != LU.AccessTy) |
| 2265 | NewAccessTy = MemAccessTy::getUnknown(AccessTy.MemTy->getContext()); |
| 2266 | } |
Dan Gohman | 51ad99d | 2010-01-21 02:09:26 +0000 | [diff] [blame] | 2267 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 2268 | // Conservatively assume HasBaseReg is true for now. |
| 2269 | if (NewOffset < LU.MinOffset) { |
| 2270 | if (!isAlwaysFoldable(TTI, Kind, NewAccessTy, /*BaseGV=*/nullptr, |
| 2271 | LU.MaxOffset - NewOffset, HasBaseReg)) |
| 2272 | return false; |
| 2273 | NewMinOffset = NewOffset; |
| 2274 | } else if (NewOffset > LU.MaxOffset) { |
| 2275 | if (!isAlwaysFoldable(TTI, Kind, NewAccessTy, /*BaseGV=*/nullptr, |
| 2276 | NewOffset - LU.MinOffset, HasBaseReg)) |
| 2277 | return false; |
| 2278 | NewMaxOffset = NewOffset; |
| 2279 | } |
| 2280 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2281 | // Update the use. |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 2282 | LU.MinOffset = NewMinOffset; |
| 2283 | LU.MaxOffset = NewMaxOffset; |
| 2284 | LU.AccessTy = NewAccessTy; |
| 2285 | if (NewOffset != LU.Offsets.back()) |
| 2286 | LU.Offsets.push_back(NewOffset); |
Dan Gohman | 29916e0 | 2010-01-21 22:42:49 +0000 | [diff] [blame] | 2287 | return true; |
| 2288 | } |
| 2289 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2290 | /// getUse - Return an LSRUse index and an offset value for a fixup which |
| 2291 | /// needs the given expression, with the given kind and optional access type. |
Dan Gohman | 8b0a419 | 2010-03-01 17:49:51 +0000 | [diff] [blame] | 2292 | /// Either reuse an existing use or create a new one, as needed. |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 2293 | std::pair<size_t, int64_t> LSRInstance::getUse(const SCEV *&Expr, |
| 2294 | LSRUse::KindType Kind, |
| 2295 | MemAccessTy AccessTy) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2296 | const SCEV *Copy = Expr; |
| 2297 | int64_t Offset = ExtractImmediate(Expr, SE); |
Evan Cheng | 85a9f43 | 2009-11-12 07:35:05 +0000 | [diff] [blame] | 2298 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2299 | // Basic uses can't accept any offset, for example. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2300 | if (!isAlwaysFoldable(TTI, Kind, AccessTy, /*BaseGV=*/ nullptr, |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 2301 | Offset, /*HasBaseReg=*/ true)) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2302 | Expr = Copy; |
| 2303 | Offset = 0; |
| 2304 | } |
| 2305 | |
| 2306 | std::pair<UseMapTy::iterator, bool> P = |
Benjamin Kramer | 62fb0cf | 2014-03-15 17:17:48 +0000 | [diff] [blame] | 2307 | UseMap.insert(std::make_pair(LSRUse::SCEVUseKindPair(Expr, Kind), 0)); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2308 | if (!P.second) { |
| 2309 | // A use already existed with this base. |
| 2310 | size_t LUIdx = P.first->second; |
| 2311 | LSRUse &LU = Uses[LUIdx]; |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 2312 | if (reconcileNewOffset(LU, Offset, /*HasBaseReg=*/true, Kind, AccessTy)) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2313 | // Reuse this use. |
| 2314 | return std::make_pair(LUIdx, Offset); |
| 2315 | } |
| 2316 | |
| 2317 | // Create a new use. |
| 2318 | size_t LUIdx = Uses.size(); |
| 2319 | P.first->second = LUIdx; |
| 2320 | Uses.push_back(LSRUse(Kind, AccessTy)); |
| 2321 | LSRUse &LU = Uses[LUIdx]; |
| 2322 | |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 2323 | // We don't need to track redundant offsets, but we don't need to go out |
| 2324 | // of our way here to avoid them. |
| 2325 | if (LU.Offsets.empty() || Offset != LU.Offsets.back()) |
| 2326 | LU.Offsets.push_back(Offset); |
| 2327 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2328 | LU.MinOffset = Offset; |
| 2329 | LU.MaxOffset = Offset; |
| 2330 | return std::make_pair(LUIdx, Offset); |
| 2331 | } |
| 2332 | |
Dan Gohman | 80a9608 | 2010-05-20 15:17:54 +0000 | [diff] [blame] | 2333 | /// DeleteUse - Delete the given use from the Uses list. |
Dan Gohman | a7b68d6 | 2010-10-07 23:33:43 +0000 | [diff] [blame] | 2334 | void LSRInstance::DeleteUse(LSRUse &LU, size_t LUIdx) { |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 2335 | if (&LU != &Uses.back()) |
Dan Gohman | 80a9608 | 2010-05-20 15:17:54 +0000 | [diff] [blame] | 2336 | std::swap(LU, Uses.back()); |
| 2337 | Uses.pop_back(); |
Dan Gohman | a7b68d6 | 2010-10-07 23:33:43 +0000 | [diff] [blame] | 2338 | |
| 2339 | // Update RegUses. |
| 2340 | RegUses.SwapAndDropUse(LUIdx, Uses.size()); |
Dan Gohman | 80a9608 | 2010-05-20 15:17:54 +0000 | [diff] [blame] | 2341 | } |
| 2342 | |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 2343 | /// FindUseWithFormula - Look for a use distinct from OrigLU which is has |
| 2344 | /// a formula that has the same registers as the given formula. |
| 2345 | LSRUse * |
| 2346 | LSRInstance::FindUseWithSimilarFormula(const Formula &OrigF, |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 2347 | const LSRUse &OrigLU) { |
| 2348 | // Search all uses for the formula. This could be more clever. |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 2349 | for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) { |
| 2350 | LSRUse &LU = Uses[LUIdx]; |
Dan Gohman | b6a520d | 2010-08-29 15:27:08 +0000 | [diff] [blame] | 2351 | // Check whether this use is close enough to OrigLU, to see whether it's |
| 2352 | // worthwhile looking through its formulae. |
| 2353 | // Ignore ICmpZero uses because they may contain formulae generated by |
| 2354 | // GenerateICmpZeroScales, in which case adding fixup offsets may |
| 2355 | // be invalid. |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 2356 | if (&LU != &OrigLU && |
| 2357 | LU.Kind != LSRUse::ICmpZero && |
| 2358 | LU.Kind == OrigLU.Kind && OrigLU.AccessTy == LU.AccessTy && |
Dan Gohman | 1415208 | 2010-07-15 20:24:58 +0000 | [diff] [blame] | 2359 | LU.WidestFixupType == OrigLU.WidestFixupType && |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 2360 | LU.HasFormulaWithSameRegs(OrigF)) { |
Dan Gohman | b6a520d | 2010-08-29 15:27:08 +0000 | [diff] [blame] | 2361 | // Scan through this use's formulae. |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2362 | for (const Formula &F : LU.Formulae) { |
Dan Gohman | b6a520d | 2010-08-29 15:27:08 +0000 | [diff] [blame] | 2363 | // Check to see if this formula has the same registers and symbols |
| 2364 | // as OrigF. |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 2365 | if (F.BaseRegs == OrigF.BaseRegs && |
| 2366 | F.ScaledReg == OrigF.ScaledReg && |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 2367 | F.BaseGV == OrigF.BaseGV && |
| 2368 | F.Scale == OrigF.Scale && |
Dan Gohman | 6136e94 | 2011-05-03 00:46:49 +0000 | [diff] [blame] | 2369 | F.UnfoldedOffset == OrigF.UnfoldedOffset) { |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 2370 | if (F.BaseOffset == 0) |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 2371 | return &LU; |
Dan Gohman | b6a520d | 2010-08-29 15:27:08 +0000 | [diff] [blame] | 2372 | // This is the formula where all the registers and symbols matched; |
| 2373 | // 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] | 2374 | // 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] | 2375 | break; |
| 2376 | } |
| 2377 | } |
| 2378 | } |
| 2379 | } |
| 2380 | |
Dan Gohman | b6a520d | 2010-08-29 15:27:08 +0000 | [diff] [blame] | 2381 | // Nothing looked good. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2382 | return nullptr; |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 2383 | } |
| 2384 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2385 | void LSRInstance::CollectInterestingTypesAndFactors() { |
| 2386 | SmallSetVector<const SCEV *, 4> Strides; |
| 2387 | |
Dan Gohman | 2446f57 | 2010-02-19 00:05:23 +0000 | [diff] [blame] | 2388 | // Collect interesting types and strides. |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 2389 | SmallVector<const SCEV *, 4> Worklist; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2390 | for (const IVStrideUse &U : IU) { |
| 2391 | const SCEV *Expr = IU.getExpr(U); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2392 | |
| 2393 | // Collect interesting types. |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 2394 | Types.insert(SE.getEffectiveSCEVType(Expr->getType())); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2395 | |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 2396 | // Add strides for mentioned loops. |
| 2397 | Worklist.push_back(Expr); |
| 2398 | do { |
| 2399 | const SCEV *S = Worklist.pop_back_val(); |
| 2400 | if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { |
Andrew Trick | d97b83e | 2012-03-22 22:42:45 +0000 | [diff] [blame] | 2401 | if (AR->getLoop() == L) |
Andrew Trick | e8b4f40 | 2011-12-10 00:25:00 +0000 | [diff] [blame] | 2402 | Strides.insert(AR->getStepRecurrence(SE)); |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 2403 | Worklist.push_back(AR->getStart()); |
| 2404 | } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) { |
Dan Gohman | dd41bba | 2010-06-21 19:47:52 +0000 | [diff] [blame] | 2405 | Worklist.append(Add->op_begin(), Add->op_end()); |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 2406 | } |
| 2407 | } while (!Worklist.empty()); |
Dan Gohman | 2446f57 | 2010-02-19 00:05:23 +0000 | [diff] [blame] | 2408 | } |
| 2409 | |
| 2410 | // Compute interesting factors from the set of interesting strides. |
| 2411 | for (SmallSetVector<const SCEV *, 4>::const_iterator |
| 2412 | I = Strides.begin(), E = Strides.end(); I != E; ++I) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2413 | for (SmallSetVector<const SCEV *, 4>::const_iterator NewStrideIter = |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 2414 | std::next(I); NewStrideIter != E; ++NewStrideIter) { |
Dan Gohman | 2446f57 | 2010-02-19 00:05:23 +0000 | [diff] [blame] | 2415 | const SCEV *OldStride = *I; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2416 | const SCEV *NewStride = *NewStrideIter; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2417 | |
| 2418 | if (SE.getTypeSizeInBits(OldStride->getType()) != |
| 2419 | SE.getTypeSizeInBits(NewStride->getType())) { |
| 2420 | if (SE.getTypeSizeInBits(OldStride->getType()) > |
| 2421 | SE.getTypeSizeInBits(NewStride->getType())) |
| 2422 | NewStride = SE.getSignExtendExpr(NewStride, OldStride->getType()); |
| 2423 | else |
| 2424 | OldStride = SE.getSignExtendExpr(OldStride, NewStride->getType()); |
| 2425 | } |
| 2426 | if (const SCEVConstant *Factor = |
Dan Gohman | 4eebb94 | 2010-02-19 19:35:48 +0000 | [diff] [blame] | 2427 | dyn_cast_or_null<SCEVConstant>(getExactSDiv(NewStride, OldStride, |
| 2428 | SE, true))) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2429 | if (Factor->getValue()->getValue().getMinSignedBits() <= 64) |
| 2430 | Factors.insert(Factor->getValue()->getValue().getSExtValue()); |
| 2431 | } else if (const SCEVConstant *Factor = |
Dan Gohman | 8c16b38 | 2010-02-22 04:11:59 +0000 | [diff] [blame] | 2432 | dyn_cast_or_null<SCEVConstant>(getExactSDiv(OldStride, |
| 2433 | NewStride, |
Dan Gohman | 4eebb94 | 2010-02-19 19:35:48 +0000 | [diff] [blame] | 2434 | SE, true))) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2435 | if (Factor->getValue()->getValue().getMinSignedBits() <= 64) |
| 2436 | Factors.insert(Factor->getValue()->getValue().getSExtValue()); |
| 2437 | } |
| 2438 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2439 | |
| 2440 | // If all uses use the same type, don't bother looking for truncation-based |
| 2441 | // reuse. |
| 2442 | if (Types.size() == 1) |
| 2443 | Types.clear(); |
| 2444 | |
| 2445 | DEBUG(print_factors_and_types(dbgs())); |
| 2446 | } |
| 2447 | |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2448 | /// findIVOperand - Helper for CollectChains that finds an IV operand (computed |
| 2449 | /// by an AddRec in this loop) within [OI,OE) or returns OE. If IVUsers mapped |
| 2450 | /// Instructions to IVStrideUses, we could partially skip this. |
| 2451 | static User::op_iterator |
| 2452 | findIVOperand(User::op_iterator OI, User::op_iterator OE, |
| 2453 | Loop *L, ScalarEvolution &SE) { |
| 2454 | for(; OI != OE; ++OI) { |
| 2455 | if (Instruction *Oper = dyn_cast<Instruction>(*OI)) { |
| 2456 | if (!SE.isSCEVable(Oper->getType())) |
| 2457 | continue; |
| 2458 | |
| 2459 | if (const SCEVAddRecExpr *AR = |
| 2460 | dyn_cast<SCEVAddRecExpr>(SE.getSCEV(Oper))) { |
| 2461 | if (AR->getLoop() == L) |
| 2462 | break; |
| 2463 | } |
| 2464 | } |
| 2465 | } |
| 2466 | return OI; |
| 2467 | } |
| 2468 | |
| 2469 | /// getWideOperand - IVChain logic must consistenctly peek base TruncInst |
| 2470 | /// operands, so wrap it in a convenient helper. |
| 2471 | static Value *getWideOperand(Value *Oper) { |
| 2472 | if (TruncInst *Trunc = dyn_cast<TruncInst>(Oper)) |
| 2473 | return Trunc->getOperand(0); |
| 2474 | return Oper; |
| 2475 | } |
| 2476 | |
| 2477 | /// isCompatibleIVType - Return true if we allow an IV chain to include both |
| 2478 | /// types. |
| 2479 | static bool isCompatibleIVType(Value *LVal, Value *RVal) { |
| 2480 | Type *LType = LVal->getType(); |
| 2481 | Type *RType = RVal->getType(); |
| 2482 | return (LType == RType) || (LType->isPointerTy() && RType->isPointerTy()); |
| 2483 | } |
| 2484 | |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2485 | /// getExprBase - Return an approximation of this SCEV expression's "base", or |
| 2486 | /// NULL for any constant. Returning the expression itself is |
| 2487 | /// conservative. Returning a deeper subexpression is more precise and valid as |
| 2488 | /// long as it isn't less complex than another subexpression. For expressions |
| 2489 | /// involving multiple unscaled values, we need to return the pointer-type |
| 2490 | /// SCEVUnknown. This avoids forming chains across objects, such as: |
| 2491 | /// PrevOper==a[i], IVOper==b[i], IVInc==b-a. |
| 2492 | /// |
| 2493 | /// Since SCEVUnknown is the rightmost type, and pointers are the rightmost |
| 2494 | /// SCEVUnknown, we simply return the rightmost SCEV operand. |
| 2495 | static const SCEV *getExprBase(const SCEV *S) { |
| 2496 | switch (S->getSCEVType()) { |
| 2497 | default: // uncluding scUnknown. |
| 2498 | return S; |
| 2499 | case scConstant: |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2500 | return nullptr; |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2501 | case scTruncate: |
| 2502 | return getExprBase(cast<SCEVTruncateExpr>(S)->getOperand()); |
| 2503 | case scZeroExtend: |
| 2504 | return getExprBase(cast<SCEVZeroExtendExpr>(S)->getOperand()); |
| 2505 | case scSignExtend: |
| 2506 | return getExprBase(cast<SCEVSignExtendExpr>(S)->getOperand()); |
| 2507 | case scAddExpr: { |
| 2508 | // Skip over scaled operands (scMulExpr) to follow add operands as long as |
| 2509 | // there's nothing more complex. |
| 2510 | // FIXME: not sure if we want to recognize negation. |
| 2511 | const SCEVAddExpr *Add = cast<SCEVAddExpr>(S); |
| 2512 | for (std::reverse_iterator<SCEVAddExpr::op_iterator> I(Add->op_end()), |
| 2513 | E(Add->op_begin()); I != E; ++I) { |
| 2514 | const SCEV *SubExpr = *I; |
| 2515 | if (SubExpr->getSCEVType() == scAddExpr) |
| 2516 | return getExprBase(SubExpr); |
| 2517 | |
| 2518 | if (SubExpr->getSCEVType() != scMulExpr) |
| 2519 | return SubExpr; |
| 2520 | } |
| 2521 | return S; // all operands are scaled, be conservative. |
| 2522 | } |
| 2523 | case scAddRecExpr: |
| 2524 | return getExprBase(cast<SCEVAddRecExpr>(S)->getStart()); |
| 2525 | } |
| 2526 | } |
| 2527 | |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2528 | /// Return true if the chain increment is profitable to expand into a loop |
| 2529 | /// invariant value, which may require its own register. A profitable chain |
| 2530 | /// increment will be an offset relative to the same base. We allow such offsets |
| 2531 | /// to potentially be used as chain increment as long as it's not obviously |
| 2532 | /// expensive to expand using real instructions. |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 2533 | bool IVChain::isProfitableIncrement(const SCEV *OperExpr, |
| 2534 | const SCEV *IncExpr, |
| 2535 | ScalarEvolution &SE) { |
| 2536 | // Aggressively form chains when -stress-ivchain. |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2537 | if (StressIVChain) |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 2538 | return true; |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2539 | |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2540 | // Do not replace a constant offset from IV head with a nonconstant IV |
| 2541 | // increment. |
| 2542 | if (!isa<SCEVConstant>(IncExpr)) { |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 2543 | const SCEV *HeadExpr = SE.getSCEV(getWideOperand(Incs[0].IVOperand)); |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2544 | if (isa<SCEVConstant>(SE.getMinusSCEV(OperExpr, HeadExpr))) |
| 2545 | return 0; |
| 2546 | } |
| 2547 | |
| 2548 | SmallPtrSet<const SCEV*, 8> Processed; |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 2549 | return !isHighCostExpansion(IncExpr, Processed, SE); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2550 | } |
| 2551 | |
| 2552 | /// Return true if the number of registers needed for the chain is estimated to |
| 2553 | /// be less than the number required for the individual IV users. First prohibit |
| 2554 | /// any IV users that keep the IV live across increments (the Users set should |
| 2555 | /// be empty). Next count the number and type of increments in the chain. |
| 2556 | /// |
| 2557 | /// Chaining IVs can lead to considerable code bloat if ISEL doesn't |
| 2558 | /// effectively use postinc addressing modes. Only consider it profitable it the |
| 2559 | /// increments can be computed in fewer registers when chained. |
| 2560 | /// |
| 2561 | /// TODO: Consider IVInc free if it's already used in another chains. |
| 2562 | static bool |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 2563 | isProfitableChain(IVChain &Chain, SmallPtrSetImpl<Instruction*> &Users, |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 2564 | ScalarEvolution &SE, const TargetTransformInfo &TTI) { |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2565 | if (StressIVChain) |
| 2566 | return true; |
| 2567 | |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 2568 | if (!Chain.hasIncs()) |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2569 | return false; |
| 2570 | |
| 2571 | if (!Users.empty()) { |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 2572 | DEBUG(dbgs() << "Chain: " << *Chain.Incs[0].UserInst << " users:\n"; |
Craig Topper | 4627679 | 2014-08-24 23:23:06 +0000 | [diff] [blame] | 2573 | for (Instruction *Inst : Users) { |
| 2574 | dbgs() << " " << *Inst << "\n"; |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2575 | }); |
| 2576 | return false; |
| 2577 | } |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 2578 | assert(!Chain.Incs.empty() && "empty IV chains are not allowed"); |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2579 | |
| 2580 | // The chain itself may require a register, so intialize cost to 1. |
| 2581 | int cost = 1; |
| 2582 | |
| 2583 | // A complete chain likely eliminates the need for keeping the original IV in |
| 2584 | // a register. LSR does not currently know how to form a complete chain unless |
| 2585 | // the header phi already exists. |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 2586 | if (isa<PHINode>(Chain.tailUserInst()) |
| 2587 | && SE.getSCEV(Chain.tailUserInst()) == Chain.Incs[0].IncExpr) { |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2588 | --cost; |
| 2589 | } |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2590 | const SCEV *LastIncExpr = nullptr; |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2591 | unsigned NumConstIncrements = 0; |
| 2592 | unsigned NumVarIncrements = 0; |
| 2593 | unsigned NumReusedIncrements = 0; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2594 | for (const IVInc &Inc : Chain) { |
| 2595 | if (Inc.IncExpr->isZero()) |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2596 | continue; |
| 2597 | |
| 2598 | // Incrementing by zero or some constant is neutral. We assume constants can |
| 2599 | // be folded into an addressing mode or an add's immediate operand. |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2600 | if (isa<SCEVConstant>(Inc.IncExpr)) { |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2601 | ++NumConstIncrements; |
| 2602 | continue; |
| 2603 | } |
| 2604 | |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2605 | if (Inc.IncExpr == LastIncExpr) |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2606 | ++NumReusedIncrements; |
| 2607 | else |
| 2608 | ++NumVarIncrements; |
| 2609 | |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2610 | LastIncExpr = Inc.IncExpr; |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2611 | } |
| 2612 | // An IV chain with a single increment is handled by LSR's postinc |
| 2613 | // uses. However, a chain with multiple increments requires keeping the IV's |
| 2614 | // value live longer than it needs to be if chained. |
| 2615 | if (NumConstIncrements > 1) |
| 2616 | --cost; |
| 2617 | |
| 2618 | // Materializing increment expressions in the preheader that didn't exist in |
| 2619 | // the original code may cost a register. For example, sign-extended array |
| 2620 | // indices can produce ridiculous increments like this: |
| 2621 | // IV + ((sext i32 (2 * %s) to i64) + (-1 * (sext i32 %s to i64))) |
| 2622 | cost += NumVarIncrements; |
| 2623 | |
| 2624 | // Reusing variable increments likely saves a register to hold the multiple of |
| 2625 | // the stride. |
| 2626 | cost -= NumReusedIncrements; |
| 2627 | |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 2628 | DEBUG(dbgs() << "Chain: " << *Chain.Incs[0].UserInst << " Cost: " << cost |
| 2629 | << "\n"); |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 2630 | |
| 2631 | return cost < 0; |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2632 | } |
| 2633 | |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2634 | /// ChainInstruction - Add this IV user to an existing chain or make it the head |
| 2635 | /// of a new chain. |
| 2636 | void LSRInstance::ChainInstruction(Instruction *UserInst, Instruction *IVOper, |
| 2637 | SmallVectorImpl<ChainUsers> &ChainUsersVec) { |
| 2638 | // When IVs are used as types of varying widths, they are generally converted |
| 2639 | // 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] | 2640 | Value *const NextIV = getWideOperand(IVOper); |
| 2641 | const SCEV *const OperExpr = SE.getSCEV(NextIV); |
| 2642 | const SCEV *const OperExprBase = getExprBase(OperExpr); |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2643 | |
| 2644 | // Visit all existing chains. Check if its IVOper can be computed as a |
| 2645 | // profitable loop invariant increment from the last link in the Chain. |
| 2646 | unsigned ChainIdx = 0, NChains = IVChainVec.size(); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2647 | const SCEV *LastIncExpr = nullptr; |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2648 | for (; ChainIdx < NChains; ++ChainIdx) { |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 2649 | IVChain &Chain = IVChainVec[ChainIdx]; |
| 2650 | |
| 2651 | // Prune the solution space aggressively by checking that both IV operands |
| 2652 | // are expressions that operate on the same unscaled SCEVUnknown. This |
| 2653 | // "base" will be canceled by the subsequent getMinusSCEV call. Checking |
| 2654 | // first avoids creating extra SCEV expressions. |
| 2655 | if (!StressIVChain && Chain.ExprBase != OperExprBase) |
| 2656 | continue; |
| 2657 | |
| 2658 | Value *PrevIV = getWideOperand(Chain.Incs.back().IVOperand); |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2659 | if (!isCompatibleIVType(PrevIV, NextIV)) |
| 2660 | continue; |
| 2661 | |
Andrew Trick | 356a896 | 2012-03-26 20:28:35 +0000 | [diff] [blame] | 2662 | // A phi node terminates a chain. |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 2663 | if (isa<PHINode>(UserInst) && isa<PHINode>(Chain.tailUserInst())) |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2664 | continue; |
| 2665 | |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 2666 | // The increment must be loop-invariant so it can be kept in a register. |
| 2667 | const SCEV *PrevExpr = SE.getSCEV(PrevIV); |
| 2668 | const SCEV *IncExpr = SE.getMinusSCEV(OperExpr, PrevExpr); |
| 2669 | if (!SE.isLoopInvariant(IncExpr, L)) |
| 2670 | continue; |
| 2671 | |
| 2672 | if (Chain.isProfitableIncrement(OperExpr, IncExpr, SE)) { |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2673 | LastIncExpr = IncExpr; |
| 2674 | break; |
| 2675 | } |
| 2676 | } |
| 2677 | // If we haven't found a chain, create a new one, unless we hit the max. Don't |
| 2678 | // bother for phi nodes, because they must be last in the chain. |
| 2679 | if (ChainIdx == NChains) { |
| 2680 | if (isa<PHINode>(UserInst)) |
| 2681 | return; |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2682 | if (NChains >= MaxChains && !StressIVChain) { |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2683 | DEBUG(dbgs() << "IV Chain Limit\n"); |
| 2684 | return; |
| 2685 | } |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 2686 | LastIncExpr = OperExpr; |
Andrew Trick | b9c822a | 2012-01-20 21:23:40 +0000 | [diff] [blame] | 2687 | // IVUsers may have skipped over sign/zero extensions. We don't currently |
| 2688 | // attempt to form chains involving extensions unless they can be hoisted |
| 2689 | // into this loop's AddRec. |
| 2690 | if (!isa<SCEVAddRecExpr>(LastIncExpr)) |
| 2691 | return; |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2692 | ++NChains; |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 2693 | IVChainVec.push_back(IVChain(IVInc(UserInst, IVOper, LastIncExpr), |
| 2694 | OperExprBase)); |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2695 | ChainUsersVec.resize(NChains); |
Jakob Stoklund Olesen | 293673d | 2012-04-25 18:01:32 +0000 | [diff] [blame] | 2696 | DEBUG(dbgs() << "IV Chain#" << ChainIdx << " Head: (" << *UserInst |
| 2697 | << ") IV=" << *LastIncExpr << "\n"); |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 2698 | } else { |
Jakob Stoklund Olesen | 293673d | 2012-04-25 18:01:32 +0000 | [diff] [blame] | 2699 | DEBUG(dbgs() << "IV Chain#" << ChainIdx << " Inc: (" << *UserInst |
| 2700 | << ") IV+" << *LastIncExpr << "\n"); |
Jakob Stoklund Olesen | c90abc8 | 2012-04-26 23:33:11 +0000 | [diff] [blame] | 2701 | // Add this IV user to the end of the chain. |
| 2702 | IVChainVec[ChainIdx].add(IVInc(UserInst, IVOper, LastIncExpr)); |
| 2703 | } |
Andrew Trick | bc70590 | 2013-02-09 01:11:01 +0000 | [diff] [blame] | 2704 | IVChain &Chain = IVChainVec[ChainIdx]; |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2705 | |
| 2706 | SmallPtrSet<Instruction*,4> &NearUsers = ChainUsersVec[ChainIdx].NearUsers; |
| 2707 | // This chain's NearUsers become FarUsers. |
| 2708 | if (!LastIncExpr->isZero()) { |
| 2709 | ChainUsersVec[ChainIdx].FarUsers.insert(NearUsers.begin(), |
| 2710 | NearUsers.end()); |
| 2711 | NearUsers.clear(); |
| 2712 | } |
| 2713 | |
| 2714 | // All other uses of IVOperand become near uses of the chain. |
| 2715 | // We currently ignore intermediate values within SCEV expressions, assuming |
| 2716 | // they will eventually be used be the current chain, or can be computed |
| 2717 | // from one of the chain increments. To be more precise we could |
| 2718 | // 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] | 2719 | for (User *U : IVOper->users()) { |
| 2720 | Instruction *OtherUse = dyn_cast<Instruction>(U); |
Andrew Trick | bc70590 | 2013-02-09 01:11:01 +0000 | [diff] [blame] | 2721 | if (!OtherUse) |
Andrew Trick | e51feea | 2012-03-26 18:03:16 +0000 | [diff] [blame] | 2722 | continue; |
Andrew Trick | bc70590 | 2013-02-09 01:11:01 +0000 | [diff] [blame] | 2723 | // Uses in the chain will no longer be uses if the chain is formed. |
| 2724 | // Include the head of the chain in this iteration (not Chain.begin()). |
| 2725 | IVChain::const_iterator IncIter = Chain.Incs.begin(); |
| 2726 | IVChain::const_iterator IncEnd = Chain.Incs.end(); |
| 2727 | for( ; IncIter != IncEnd; ++IncIter) { |
| 2728 | if (IncIter->UserInst == OtherUse) |
| 2729 | break; |
| 2730 | } |
| 2731 | if (IncIter != IncEnd) |
| 2732 | continue; |
| 2733 | |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2734 | if (SE.isSCEVable(OtherUse->getType()) |
| 2735 | && !isa<SCEVUnknown>(SE.getSCEV(OtherUse)) |
| 2736 | && IU.isIVUserOrOperand(OtherUse)) { |
| 2737 | continue; |
| 2738 | } |
Andrew Trick | e51feea | 2012-03-26 18:03:16 +0000 | [diff] [blame] | 2739 | NearUsers.insert(OtherUse); |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2740 | } |
| 2741 | |
| 2742 | // Since this user is part of the chain, it's no longer considered a use |
| 2743 | // of the chain. |
| 2744 | ChainUsersVec[ChainIdx].FarUsers.erase(UserInst); |
| 2745 | } |
| 2746 | |
| 2747 | /// CollectChains - Populate the vector of Chains. |
| 2748 | /// |
| 2749 | /// This decreases ILP at the architecture level. Targets with ample registers, |
| 2750 | /// multiple memory ports, and no register renaming probably don't want |
| 2751 | /// this. However, such targets should probably disable LSR altogether. |
| 2752 | /// |
| 2753 | /// The job of LSR is to make a reasonable choice of induction variables across |
| 2754 | /// the loop. Subsequent passes can easily "unchain" computation exposing more |
| 2755 | /// ILP *within the loop* if the target wants it. |
| 2756 | /// |
| 2757 | /// Finding the best IV chain is potentially a scheduling problem. Since LSR |
| 2758 | /// will not reorder memory operations, it will recognize this as a chain, but |
| 2759 | /// will generate redundant IV increments. Ideally this would be corrected later |
| 2760 | /// by a smart scheduler: |
| 2761 | /// = A[i] |
| 2762 | /// = A[i+x] |
| 2763 | /// A[i] = |
| 2764 | /// A[i+x] = |
| 2765 | /// |
| 2766 | /// TODO: Walk the entire domtree within this loop, not just the path to the |
| 2767 | /// loop latch. This will discover chains on side paths, but requires |
| 2768 | /// maintaining multiple copies of the Chains state. |
| 2769 | void LSRInstance::CollectChains() { |
Jakob Stoklund Olesen | 293673d | 2012-04-25 18:01:32 +0000 | [diff] [blame] | 2770 | DEBUG(dbgs() << "Collecting IV Chains.\n"); |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2771 | SmallVector<ChainUsers, 8> ChainUsersVec; |
| 2772 | |
| 2773 | SmallVector<BasicBlock *,8> LatchPath; |
| 2774 | BasicBlock *LoopHeader = L->getHeader(); |
| 2775 | for (DomTreeNode *Rung = DT.getNode(L->getLoopLatch()); |
| 2776 | Rung->getBlock() != LoopHeader; Rung = Rung->getIDom()) { |
| 2777 | LatchPath.push_back(Rung->getBlock()); |
| 2778 | } |
| 2779 | LatchPath.push_back(LoopHeader); |
| 2780 | |
| 2781 | // Walk the instruction stream from the loop header to the loop latch. |
| 2782 | for (SmallVectorImpl<BasicBlock *>::reverse_iterator |
| 2783 | BBIter = LatchPath.rbegin(), BBEnd = LatchPath.rend(); |
| 2784 | BBIter != BBEnd; ++BBIter) { |
| 2785 | for (BasicBlock::iterator I = (*BBIter)->begin(), E = (*BBIter)->end(); |
| 2786 | I != E; ++I) { |
| 2787 | // Skip instructions that weren't seen by IVUsers analysis. |
| 2788 | if (isa<PHINode>(I) || !IU.isIVUserOrOperand(I)) |
| 2789 | continue; |
| 2790 | |
| 2791 | // Ignore users that are part of a SCEV expression. This way we only |
| 2792 | // consider leaf IV Users. This effectively rediscovers a portion of |
| 2793 | // IVUsers analysis but in program order this time. |
| 2794 | if (SE.isSCEVable(I->getType()) && !isa<SCEVUnknown>(SE.getSCEV(I))) |
| 2795 | continue; |
| 2796 | |
| 2797 | // Remove this instruction from any NearUsers set it may be in. |
| 2798 | for (unsigned ChainIdx = 0, NChains = IVChainVec.size(); |
| 2799 | ChainIdx < NChains; ++ChainIdx) { |
| 2800 | ChainUsersVec[ChainIdx].NearUsers.erase(I); |
| 2801 | } |
| 2802 | // Search for operands that can be chained. |
| 2803 | SmallPtrSet<Instruction*, 4> UniqueOperands; |
| 2804 | User::op_iterator IVOpEnd = I->op_end(); |
| 2805 | User::op_iterator IVOpIter = findIVOperand(I->op_begin(), IVOpEnd, L, SE); |
| 2806 | while (IVOpIter != IVOpEnd) { |
| 2807 | Instruction *IVOpInst = cast<Instruction>(*IVOpIter); |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 2808 | if (UniqueOperands.insert(IVOpInst).second) |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2809 | ChainInstruction(I, IVOpInst, ChainUsersVec); |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 2810 | IVOpIter = findIVOperand(std::next(IVOpIter), IVOpEnd, L, SE); |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2811 | } |
| 2812 | } // Continue walking down the instructions. |
| 2813 | } // Continue walking down the domtree. |
| 2814 | // Visit phi backedges to determine if the chain can generate the IV postinc. |
| 2815 | for (BasicBlock::iterator I = L->getHeader()->begin(); |
| 2816 | PHINode *PN = dyn_cast<PHINode>(I); ++I) { |
| 2817 | if (!SE.isSCEVable(PN->getType())) |
| 2818 | continue; |
| 2819 | |
| 2820 | Instruction *IncV = |
| 2821 | dyn_cast<Instruction>(PN->getIncomingValueForBlock(L->getLoopLatch())); |
| 2822 | if (IncV) |
| 2823 | ChainInstruction(PN, IncV, ChainUsersVec); |
| 2824 | } |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2825 | // Remove any unprofitable chains. |
| 2826 | unsigned ChainIdx = 0; |
| 2827 | for (unsigned UsersIdx = 0, NChains = IVChainVec.size(); |
| 2828 | UsersIdx < NChains; ++UsersIdx) { |
| 2829 | if (!isProfitableChain(IVChainVec[UsersIdx], |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 2830 | ChainUsersVec[UsersIdx].FarUsers, SE, TTI)) |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2831 | continue; |
| 2832 | // Preserve the chain at UsesIdx. |
| 2833 | if (ChainIdx != UsersIdx) |
| 2834 | IVChainVec[ChainIdx] = IVChainVec[UsersIdx]; |
| 2835 | FinalizeChain(IVChainVec[ChainIdx]); |
| 2836 | ++ChainIdx; |
| 2837 | } |
| 2838 | IVChainVec.resize(ChainIdx); |
| 2839 | } |
| 2840 | |
| 2841 | void LSRInstance::FinalizeChain(IVChain &Chain) { |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 2842 | assert(!Chain.Incs.empty() && "empty IV chains are not allowed"); |
| 2843 | DEBUG(dbgs() << "Final Chain: " << *Chain.Incs[0].UserInst << "\n"); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2844 | |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2845 | for (const IVInc &Inc : Chain) { |
| 2846 | DEBUG(dbgs() << " Inc: " << Inc.UserInst << "\n"); |
| 2847 | auto UseI = std::find(Inc.UserInst->op_begin(), Inc.UserInst->op_end(), |
| 2848 | Inc.IVOperand); |
| 2849 | assert(UseI != Inc.UserInst->op_end() && "cannot find IV operand"); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2850 | IVIncSet.insert(UseI); |
| 2851 | } |
| 2852 | } |
| 2853 | |
| 2854 | /// Return true if the IVInc can be folded into an addressing mode. |
| 2855 | static bool canFoldIVIncExpr(const SCEV *IncExpr, Instruction *UserInst, |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 2856 | Value *Operand, const TargetTransformInfo &TTI) { |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2857 | const SCEVConstant *IncConst = dyn_cast<SCEVConstant>(IncExpr); |
| 2858 | if (!IncConst || !isAddressUse(UserInst, Operand)) |
| 2859 | return false; |
| 2860 | |
| 2861 | if (IncConst->getValue()->getValue().getMinSignedBits() > 64) |
| 2862 | return false; |
| 2863 | |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 2864 | MemAccessTy AccessTy = getAccessType(UserInst); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2865 | int64_t IncOffset = IncConst->getValue()->getSExtValue(); |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 2866 | if (!isAlwaysFoldable(TTI, LSRUse::Address, AccessTy, /*BaseGV=*/nullptr, |
| 2867 | IncOffset, /*HaseBaseReg=*/false)) |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2868 | return false; |
| 2869 | |
| 2870 | return true; |
| 2871 | } |
| 2872 | |
| 2873 | /// GenerateIVChains - Generate an add or subtract for each IVInc in a chain to |
| 2874 | /// materialize the IV user's operand from the previous IV user's operand. |
| 2875 | void LSRInstance::GenerateIVChain(const IVChain &Chain, SCEVExpander &Rewriter, |
| 2876 | SmallVectorImpl<WeakVH> &DeadInsts) { |
| 2877 | // Find the new IVOperand for the head of the chain. It may have been replaced |
| 2878 | // by LSR. |
Jakob Stoklund Olesen | a0337d7 | 2012-04-26 23:33:09 +0000 | [diff] [blame] | 2879 | const IVInc &Head = Chain.Incs[0]; |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2880 | User::op_iterator IVOpEnd = Head.UserInst->op_end(); |
Andrew Trick | f3a2544 | 2013-03-19 05:10:27 +0000 | [diff] [blame] | 2881 | // 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] | 2882 | User::op_iterator IVOpIter = findIVOperand(Head.UserInst->op_begin(), |
| 2883 | IVOpEnd, L, SE); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2884 | Value *IVSrc = nullptr; |
Andrew Trick | f3a2544 | 2013-03-19 05:10:27 +0000 | [diff] [blame] | 2885 | while (IVOpIter != IVOpEnd) { |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2886 | IVSrc = getWideOperand(*IVOpIter); |
| 2887 | |
| 2888 | // If this operand computes the expression that the chain needs, we may use |
| 2889 | // it. (Check this after setting IVSrc which is used below.) |
| 2890 | // |
| 2891 | // Note that if Head.IncExpr is wider than IVSrc, then this phi is too |
| 2892 | // narrow for the chain, so we can no longer use it. We do allow using a |
| 2893 | // wider phi, assuming the LSR checked for free truncation. In that case we |
| 2894 | // should already have a truncate on this operand such that |
| 2895 | // getSCEV(IVSrc) == IncExpr. |
| 2896 | if (SE.getSCEV(*IVOpIter) == Head.IncExpr |
| 2897 | || SE.getSCEV(IVSrc) == Head.IncExpr) { |
| 2898 | break; |
| 2899 | } |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 2900 | IVOpIter = findIVOperand(std::next(IVOpIter), IVOpEnd, L, SE); |
Andrew Trick | f3a2544 | 2013-03-19 05:10:27 +0000 | [diff] [blame] | 2901 | } |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2902 | if (IVOpIter == IVOpEnd) { |
| 2903 | // Gracefully give up on this chain. |
| 2904 | DEBUG(dbgs() << "Concealed chain head: " << *Head.UserInst << "\n"); |
| 2905 | return; |
| 2906 | } |
| 2907 | |
| 2908 | DEBUG(dbgs() << "Generate chain at: " << *IVSrc << "\n"); |
| 2909 | Type *IVTy = IVSrc->getType(); |
| 2910 | Type *IntTy = SE.getEffectiveSCEVType(IVTy); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2911 | const SCEV *LeftOverExpr = nullptr; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2912 | for (const IVInc &Inc : Chain) { |
| 2913 | Instruction *InsertPt = Inc.UserInst; |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2914 | if (isa<PHINode>(InsertPt)) |
| 2915 | InsertPt = L->getLoopLatch()->getTerminator(); |
| 2916 | |
| 2917 | // IVOper will replace the current IV User's operand. IVSrc is the IV |
| 2918 | // value currently held in a register. |
| 2919 | Value *IVOper = IVSrc; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2920 | if (!Inc.IncExpr->isZero()) { |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2921 | // IncExpr was the result of subtraction of two narrow values, so must |
| 2922 | // be signed. |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2923 | const SCEV *IncExpr = SE.getNoopOrSignExtend(Inc.IncExpr, IntTy); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2924 | LeftOverExpr = LeftOverExpr ? |
| 2925 | SE.getAddExpr(LeftOverExpr, IncExpr) : IncExpr; |
| 2926 | } |
| 2927 | if (LeftOverExpr && !LeftOverExpr->isZero()) { |
| 2928 | // Expand the IV increment. |
| 2929 | Rewriter.clearPostInc(); |
| 2930 | Value *IncV = Rewriter.expandCodeFor(LeftOverExpr, IntTy, InsertPt); |
| 2931 | const SCEV *IVOperExpr = SE.getAddExpr(SE.getUnknown(IVSrc), |
| 2932 | SE.getUnknown(IncV)); |
| 2933 | IVOper = Rewriter.expandCodeFor(IVOperExpr, IVTy, InsertPt); |
| 2934 | |
| 2935 | // 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] | 2936 | if (!canFoldIVIncExpr(LeftOverExpr, Inc.UserInst, Inc.IVOperand, TTI)) { |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2937 | assert(IVTy == IVOper->getType() && "inconsistent IV increment type"); |
| 2938 | IVSrc = IVOper; |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2939 | LeftOverExpr = nullptr; |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2940 | } |
| 2941 | } |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2942 | Type *OperTy = Inc.IVOperand->getType(); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2943 | if (IVTy != OperTy) { |
| 2944 | assert(SE.getTypeSizeInBits(IVTy) >= SE.getTypeSizeInBits(OperTy) && |
| 2945 | "cannot extend a chained IV"); |
| 2946 | IRBuilder<> Builder(InsertPt); |
| 2947 | IVOper = Builder.CreateTruncOrBitCast(IVOper, OperTy, "lsr.chain"); |
| 2948 | } |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2949 | Inc.UserInst->replaceUsesOfWith(Inc.IVOperand, IVOper); |
Benjamin Kramer | f5e2fc4 | 2015-05-29 19:43:39 +0000 | [diff] [blame] | 2950 | DeadInsts.emplace_back(Inc.IVOperand); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2951 | } |
| 2952 | // If LSR created a new, wider phi, we may also replace its postinc. We only |
| 2953 | // 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] | 2954 | if (isa<PHINode>(Chain.tailUserInst())) { |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2955 | for (BasicBlock::iterator I = L->getHeader()->begin(); |
| 2956 | PHINode *Phi = dyn_cast<PHINode>(I); ++I) { |
| 2957 | if (!isCompatibleIVType(Phi, IVSrc)) |
| 2958 | continue; |
| 2959 | Instruction *PostIncV = dyn_cast<Instruction>( |
| 2960 | Phi->getIncomingValueForBlock(L->getLoopLatch())); |
| 2961 | if (!PostIncV || (SE.getSCEV(PostIncV) != SE.getSCEV(IVSrc))) |
| 2962 | continue; |
| 2963 | Value *IVOper = IVSrc; |
| 2964 | Type *PostIncTy = PostIncV->getType(); |
| 2965 | if (IVTy != PostIncTy) { |
| 2966 | assert(PostIncTy->isPointerTy() && "mixing int/ptr IV types"); |
| 2967 | IRBuilder<> Builder(L->getLoopLatch()->getTerminator()); |
| 2968 | Builder.SetCurrentDebugLocation(PostIncV->getDebugLoc()); |
| 2969 | IVOper = Builder.CreatePointerCast(IVSrc, PostIncTy, "lsr.chain"); |
| 2970 | } |
| 2971 | Phi->replaceUsesOfWith(PostIncV, IVOper); |
Benjamin Kramer | f5e2fc4 | 2015-05-29 19:43:39 +0000 | [diff] [blame] | 2972 | DeadInsts.emplace_back(PostIncV); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2973 | } |
| 2974 | } |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 2975 | } |
| 2976 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2977 | void LSRInstance::CollectFixupsAndInitialFormulae() { |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2978 | for (const IVStrideUse &U : IU) { |
| 2979 | Instruction *UserInst = U.getUser(); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2980 | // Skip IV users that are part of profitable IV Chains. |
| 2981 | User::op_iterator UseI = std::find(UserInst->op_begin(), UserInst->op_end(), |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2982 | U.getOperandValToReplace()); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2983 | assert(UseI != UserInst->op_end() && "cannot find IV operand"); |
| 2984 | if (IVIncSet.count(UseI)) |
| 2985 | continue; |
| 2986 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2987 | // Record the uses. |
| 2988 | LSRFixup &LF = getNewFixup(); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 2989 | LF.UserInst = UserInst; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 2990 | LF.OperandValToReplace = U.getOperandValToReplace(); |
| 2991 | LF.PostIncLoops = U.getPostIncLoops(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2992 | |
| 2993 | LSRUse::KindType Kind = LSRUse::Basic; |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 2994 | MemAccessTy AccessTy; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 2995 | if (isAddressUse(LF.UserInst, LF.OperandValToReplace)) { |
| 2996 | Kind = LSRUse::Address; |
| 2997 | AccessTy = getAccessType(LF.UserInst); |
| 2998 | } |
| 2999 | |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3000 | const SCEV *S = IU.getExpr(U); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3001 | |
| 3002 | // Equality (== and !=) ICmps are special. We can rewrite (i == N) as |
| 3003 | // (N - i == 0), and this allows (N - i) to be the expression that we work |
| 3004 | // with rather than just N or i, so we can consider the register |
| 3005 | // requirements for both N and i at the same time. Limiting this code to |
| 3006 | // equality icmps is not a problem because all interesting loops use |
| 3007 | // equality icmps, thanks to IndVarSimplify. |
| 3008 | if (ICmpInst *CI = dyn_cast<ICmpInst>(LF.UserInst)) |
| 3009 | if (CI->isEquality()) { |
| 3010 | // Swap the operands if needed to put the OperandValToReplace on the |
| 3011 | // left, for consistency. |
| 3012 | Value *NV = CI->getOperand(1); |
| 3013 | if (NV == LF.OperandValToReplace) { |
| 3014 | CI->setOperand(1, CI->getOperand(0)); |
| 3015 | CI->setOperand(0, NV); |
Dan Gohman | ee2fea3 | 2010-05-20 19:26:52 +0000 | [diff] [blame] | 3016 | NV = CI->getOperand(1); |
Dan Gohman | fdf9874 | 2010-05-20 19:16:03 +0000 | [diff] [blame] | 3017 | Changed = true; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3018 | } |
| 3019 | |
| 3020 | // x == y --> x - y == 0 |
| 3021 | const SCEV *N = SE.getSCEV(NV); |
Andrew Trick | 57243da | 2013-10-25 21:35:56 +0000 | [diff] [blame] | 3022 | if (SE.isLoopInvariant(N, L) && isSafeToExpand(N, SE)) { |
Dan Gohman | 3268e4d | 2011-05-18 21:02:18 +0000 | [diff] [blame] | 3023 | // S is normalized, so normalize N before folding it into S |
| 3024 | // to keep the result normalized. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 3025 | N = TransformForPostIncUse(Normalize, N, CI, nullptr, |
Dan Gohman | 3268e4d | 2011-05-18 21:02:18 +0000 | [diff] [blame] | 3026 | LF.PostIncLoops, SE, DT); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3027 | Kind = LSRUse::ICmpZero; |
| 3028 | S = SE.getMinusSCEV(N, S); |
| 3029 | } |
| 3030 | |
| 3031 | // -1 and the negations of all interesting strides (except the negation |
| 3032 | // of -1) are now also interesting. |
| 3033 | for (size_t i = 0, e = Factors.size(); i != e; ++i) |
| 3034 | if (Factors[i] != -1) |
| 3035 | Factors.insert(-(uint64_t)Factors[i]); |
| 3036 | Factors.insert(-1); |
| 3037 | } |
| 3038 | |
| 3039 | // Set up the initial formula for this use. |
| 3040 | std::pair<size_t, int64_t> P = getUse(S, Kind, AccessTy); |
| 3041 | LF.LUIdx = P.first; |
| 3042 | LF.Offset = P.second; |
| 3043 | LSRUse &LU = Uses[LF.LUIdx]; |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 3044 | LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L); |
Dan Gohman | 1415208 | 2010-07-15 20:24:58 +0000 | [diff] [blame] | 3045 | if (!LU.WidestFixupType || |
| 3046 | SE.getTypeSizeInBits(LU.WidestFixupType) < |
| 3047 | SE.getTypeSizeInBits(LF.OperandValToReplace->getType())) |
| 3048 | LU.WidestFixupType = LF.OperandValToReplace->getType(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3049 | |
| 3050 | // If this is the first use of this LSRUse, give it a formula. |
| 3051 | if (LU.Formulae.empty()) { |
Dan Gohman | 8c16b38 | 2010-02-22 04:11:59 +0000 | [diff] [blame] | 3052 | InsertInitialFormula(S, LU, LF.LUIdx); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3053 | CountRegisters(LU.Formulae.back(), LF.LUIdx); |
| 3054 | } |
| 3055 | } |
| 3056 | |
| 3057 | DEBUG(print_fixups(dbgs())); |
| 3058 | } |
| 3059 | |
Dan Gohman | a4ca28a | 2010-05-20 20:52:00 +0000 | [diff] [blame] | 3060 | /// InsertInitialFormula - Insert a formula for the given expression into |
| 3061 | /// the given use, separating out loop-variant portions from loop-invariant |
| 3062 | /// and loop-computable portions. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3063 | void |
Dan Gohman | 8c16b38 | 2010-02-22 04:11:59 +0000 | [diff] [blame] | 3064 | LSRInstance::InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx) { |
Andrew Trick | 57243da | 2013-10-25 21:35:56 +0000 | [diff] [blame] | 3065 | // Mark uses whose expressions cannot be expanded. |
| 3066 | if (!isSafeToExpand(S, SE)) |
| 3067 | LU.RigidFormula = true; |
| 3068 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3069 | Formula F; |
Dan Gohman | 20d9ce2 | 2010-11-17 21:41:58 +0000 | [diff] [blame] | 3070 | F.InitialMatch(S, L, SE); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3071 | bool Inserted = InsertFormula(LU, LUIdx, F); |
| 3072 | assert(Inserted && "Initial formula already exists!"); (void)Inserted; |
| 3073 | } |
| 3074 | |
Dan Gohman | a4ca28a | 2010-05-20 20:52:00 +0000 | [diff] [blame] | 3075 | /// InsertSupplementalFormula - Insert a simple single-register formula for |
| 3076 | /// the given expression into the given use. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3077 | void |
| 3078 | LSRInstance::InsertSupplementalFormula(const SCEV *S, |
| 3079 | LSRUse &LU, size_t LUIdx) { |
| 3080 | Formula F; |
| 3081 | F.BaseRegs.push_back(S); |
Chandler Carruth | 7e31c8f | 2013-01-12 23:46:04 +0000 | [diff] [blame] | 3082 | F.HasBaseReg = true; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3083 | bool Inserted = InsertFormula(LU, LUIdx, F); |
| 3084 | assert(Inserted && "Supplemental formula already exists!"); (void)Inserted; |
| 3085 | } |
| 3086 | |
| 3087 | /// CountRegisters - Note which registers are used by the given formula, |
| 3088 | /// updating RegUses. |
| 3089 | void LSRInstance::CountRegisters(const Formula &F, size_t LUIdx) { |
| 3090 | if (F.ScaledReg) |
| 3091 | RegUses.CountRegister(F.ScaledReg, LUIdx); |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3092 | for (const SCEV *BaseReg : F.BaseRegs) |
| 3093 | RegUses.CountRegister(BaseReg, LUIdx); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3094 | } |
| 3095 | |
| 3096 | /// InsertFormula - If the given formula has not yet been inserted, add it to |
| 3097 | /// the list, and return true. Return false otherwise. |
| 3098 | bool LSRInstance::InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F) { |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3099 | // Do not insert formula that we will not be able to expand. |
| 3100 | assert(isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F) && |
| 3101 | "Formula is illegal"); |
Dan Gohman | 8c16b38 | 2010-02-22 04:11:59 +0000 | [diff] [blame] | 3102 | if (!LU.InsertFormula(F)) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3103 | return false; |
| 3104 | |
| 3105 | CountRegisters(F, LUIdx); |
| 3106 | return true; |
| 3107 | } |
| 3108 | |
| 3109 | /// CollectLoopInvariantFixupsAndFormulae - Check for other uses of |
| 3110 | /// loop-invariant values which we're tracking. These other uses will pin these |
| 3111 | /// values in registers, making them less profitable for elimination. |
| 3112 | /// TODO: This currently misses non-constant addrec step registers. |
| 3113 | /// TODO: Should this give more weight to users inside the loop? |
| 3114 | void |
| 3115 | LSRInstance::CollectLoopInvariantFixupsAndFormulae() { |
| 3116 | SmallVector<const SCEV *, 8> Worklist(RegUses.begin(), RegUses.end()); |
Andrew Trick | dd925ad | 2014-10-25 19:59:30 +0000 | [diff] [blame] | 3117 | SmallPtrSet<const SCEV *, 32> Visited; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3118 | |
| 3119 | while (!Worklist.empty()) { |
| 3120 | const SCEV *S = Worklist.pop_back_val(); |
| 3121 | |
Andrew Trick | 9ccbed5 | 2014-10-25 19:42:07 +0000 | [diff] [blame] | 3122 | // Don't process the same SCEV twice |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 3123 | if (!Visited.insert(S).second) |
Andrew Trick | 9ccbed5 | 2014-10-25 19:42:07 +0000 | [diff] [blame] | 3124 | continue; |
| 3125 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3126 | if (const SCEVNAryExpr *N = dyn_cast<SCEVNAryExpr>(S)) |
Dan Gohman | dd41bba | 2010-06-21 19:47:52 +0000 | [diff] [blame] | 3127 | Worklist.append(N->op_begin(), N->op_end()); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3128 | else if (const SCEVCastExpr *C = dyn_cast<SCEVCastExpr>(S)) |
| 3129 | Worklist.push_back(C->getOperand()); |
| 3130 | else if (const SCEVUDivExpr *D = dyn_cast<SCEVUDivExpr>(S)) { |
| 3131 | Worklist.push_back(D->getLHS()); |
| 3132 | Worklist.push_back(D->getRHS()); |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 3133 | } else if (const SCEVUnknown *US = dyn_cast<SCEVUnknown>(S)) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 3134 | const Value *V = US->getValue(); |
Dan Gohman | 67b4403 | 2010-06-04 23:16:05 +0000 | [diff] [blame] | 3135 | if (const Instruction *Inst = dyn_cast<Instruction>(V)) { |
| 3136 | // Look for instructions defined outside the loop. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3137 | if (L->contains(Inst)) continue; |
Dan Gohman | 67b4403 | 2010-06-04 23:16:05 +0000 | [diff] [blame] | 3138 | } else if (isa<UndefValue>(V)) |
| 3139 | // Undef doesn't have a live range, so it doesn't matter. |
| 3140 | continue; |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 3141 | for (const Use &U : V->uses()) { |
| 3142 | const Instruction *UserInst = dyn_cast<Instruction>(U.getUser()); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3143 | // Ignore non-instructions. |
| 3144 | if (!UserInst) |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 3145 | continue; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3146 | // Ignore instructions in other functions (as can happen with |
| 3147 | // Constants). |
| 3148 | if (UserInst->getParent()->getParent() != L->getHeader()->getParent()) |
Dan Gohman | 045f819 | 2010-01-22 00:46:49 +0000 | [diff] [blame] | 3149 | continue; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3150 | // Ignore instructions not dominated by the loop. |
| 3151 | const BasicBlock *UseBB = !isa<PHINode>(UserInst) ? |
| 3152 | UserInst->getParent() : |
| 3153 | cast<PHINode>(UserInst)->getIncomingBlock( |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 3154 | PHINode::getIncomingValueNumForOperand(U.getOperandNo())); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3155 | if (!DT.dominates(L->getHeader(), UseBB)) |
| 3156 | continue; |
| 3157 | // Ignore uses which are part of other SCEV expressions, to avoid |
| 3158 | // analyzing them multiple times. |
Dan Gohman | 42ec4eb | 2010-04-09 19:12:34 +0000 | [diff] [blame] | 3159 | if (SE.isSCEVable(UserInst->getType())) { |
| 3160 | const SCEV *UserS = SE.getSCEV(const_cast<Instruction *>(UserInst)); |
| 3161 | // If the user is a no-op, look through to its uses. |
| 3162 | if (!isa<SCEVUnknown>(UserS)) |
| 3163 | continue; |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 3164 | if (UserS == US) { |
Dan Gohman | 42ec4eb | 2010-04-09 19:12:34 +0000 | [diff] [blame] | 3165 | Worklist.push_back( |
| 3166 | SE.getUnknown(const_cast<Instruction *>(UserInst))); |
| 3167 | continue; |
| 3168 | } |
| 3169 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3170 | // Ignore icmp instructions which are already being analyzed. |
| 3171 | if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UserInst)) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 3172 | unsigned OtherIdx = !U.getOperandNo(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3173 | Value *OtherOp = const_cast<Value *>(ICI->getOperand(OtherIdx)); |
Dan Gohman | afd6db9 | 2010-11-17 21:23:15 +0000 | [diff] [blame] | 3174 | if (SE.hasComputableLoopEvolution(SE.getSCEV(OtherOp), L)) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3175 | continue; |
| 3176 | } |
| 3177 | |
| 3178 | LSRFixup &LF = getNewFixup(); |
| 3179 | LF.UserInst = const_cast<Instruction *>(UserInst); |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 3180 | LF.OperandValToReplace = U; |
Matt Arsenault | 427a0fd | 2015-08-15 00:53:06 +0000 | [diff] [blame^] | 3181 | std::pair<size_t, int64_t> P = getUse( |
| 3182 | S, LSRUse::Basic, MemAccessTy()); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3183 | LF.LUIdx = P.first; |
| 3184 | LF.Offset = P.second; |
| 3185 | LSRUse &LU = Uses[LF.LUIdx]; |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 3186 | LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L); |
Dan Gohman | 1415208 | 2010-07-15 20:24:58 +0000 | [diff] [blame] | 3187 | if (!LU.WidestFixupType || |
| 3188 | SE.getTypeSizeInBits(LU.WidestFixupType) < |
| 3189 | SE.getTypeSizeInBits(LF.OperandValToReplace->getType())) |
| 3190 | LU.WidestFixupType = LF.OperandValToReplace->getType(); |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 3191 | InsertSupplementalFormula(US, LU, LF.LUIdx); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3192 | CountRegisters(LU.Formulae.back(), Uses.size() - 1); |
| 3193 | break; |
| 3194 | } |
| 3195 | } |
| 3196 | } |
| 3197 | } |
| 3198 | |
| 3199 | /// CollectSubexprs - Split S into subexpressions which can be pulled out into |
| 3200 | /// separate registers. If C is non-null, multiply each subexpression by C. |
Andrew Trick | c803706 | 2012-07-17 05:30:37 +0000 | [diff] [blame] | 3201 | /// |
| 3202 | /// Return remainder expression after factoring the subexpressions captured by |
| 3203 | /// Ops. If Ops is complete, return NULL. |
| 3204 | static const SCEV *CollectSubexprs(const SCEV *S, const SCEVConstant *C, |
| 3205 | SmallVectorImpl<const SCEV *> &Ops, |
| 3206 | const Loop *L, |
| 3207 | ScalarEvolution &SE, |
| 3208 | unsigned Depth = 0) { |
| 3209 | // Arbitrarily cap recursion to protect compile time. |
| 3210 | if (Depth >= 3) |
| 3211 | return S; |
| 3212 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3213 | if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) { |
| 3214 | // Break out add operands. |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3215 | for (const SCEV *S : Add->operands()) { |
| 3216 | const SCEV *Remainder = CollectSubexprs(S, C, Ops, L, SE, Depth+1); |
Andrew Trick | c803706 | 2012-07-17 05:30:37 +0000 | [diff] [blame] | 3217 | if (Remainder) |
| 3218 | Ops.push_back(C ? SE.getMulExpr(C, Remainder) : Remainder); |
| 3219 | } |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 3220 | return nullptr; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3221 | } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { |
| 3222 | // Split a non-zero base out of an addrec. |
Andrew Trick | c803706 | 2012-07-17 05:30:37 +0000 | [diff] [blame] | 3223 | if (AR->getStart()->isZero()) |
| 3224 | return S; |
| 3225 | |
| 3226 | const SCEV *Remainder = CollectSubexprs(AR->getStart(), |
| 3227 | C, Ops, L, SE, Depth+1); |
| 3228 | // Split the non-zero AddRec unless it is part of a nested recurrence that |
| 3229 | // does not pertain to this loop. |
| 3230 | if (Remainder && (AR->getLoop() == L || !isa<SCEVAddRecExpr>(Remainder))) { |
| 3231 | Ops.push_back(C ? SE.getMulExpr(C, Remainder) : Remainder); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 3232 | Remainder = nullptr; |
Andrew Trick | c803706 | 2012-07-17 05:30:37 +0000 | [diff] [blame] | 3233 | } |
| 3234 | if (Remainder != AR->getStart()) { |
| 3235 | if (!Remainder) |
| 3236 | Remainder = SE.getConstant(AR->getType(), 0); |
| 3237 | return SE.getAddRecExpr(Remainder, |
| 3238 | AR->getStepRecurrence(SE), |
| 3239 | AR->getLoop(), |
| 3240 | //FIXME: AR->getNoWrapFlags(SCEV::FlagNW) |
| 3241 | SCEV::FlagAnyWrap); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3242 | } |
| 3243 | } else if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) { |
| 3244 | // Break (C * (a + b + c)) into C*a + C*b + C*c. |
Andrew Trick | c803706 | 2012-07-17 05:30:37 +0000 | [diff] [blame] | 3245 | if (Mul->getNumOperands() != 2) |
| 3246 | return S; |
| 3247 | if (const SCEVConstant *Op0 = |
| 3248 | dyn_cast<SCEVConstant>(Mul->getOperand(0))) { |
| 3249 | C = C ? cast<SCEVConstant>(SE.getMulExpr(C, Op0)) : Op0; |
| 3250 | const SCEV *Remainder = |
| 3251 | CollectSubexprs(Mul->getOperand(1), C, Ops, L, SE, Depth+1); |
| 3252 | if (Remainder) |
| 3253 | Ops.push_back(SE.getMulExpr(C, Remainder)); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 3254 | return nullptr; |
Andrew Trick | c803706 | 2012-07-17 05:30:37 +0000 | [diff] [blame] | 3255 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3256 | } |
Andrew Trick | c803706 | 2012-07-17 05:30:37 +0000 | [diff] [blame] | 3257 | return S; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3258 | } |
| 3259 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3260 | /// \brief Helper function for LSRInstance::GenerateReassociations. |
| 3261 | void LSRInstance::GenerateReassociationsImpl(LSRUse &LU, unsigned LUIdx, |
| 3262 | const Formula &Base, |
| 3263 | unsigned Depth, size_t Idx, |
| 3264 | bool IsScaledReg) { |
| 3265 | const SCEV *BaseReg = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx]; |
| 3266 | SmallVector<const SCEV *, 8> AddOps; |
| 3267 | const SCEV *Remainder = CollectSubexprs(BaseReg, nullptr, AddOps, L, SE); |
| 3268 | if (Remainder) |
| 3269 | AddOps.push_back(Remainder); |
| 3270 | |
| 3271 | if (AddOps.size() == 1) |
| 3272 | return; |
| 3273 | |
| 3274 | for (SmallVectorImpl<const SCEV *>::const_iterator J = AddOps.begin(), |
| 3275 | JE = AddOps.end(); |
| 3276 | J != JE; ++J) { |
| 3277 | |
| 3278 | // Loop-variant "unknown" values are uninteresting; we won't be able to |
| 3279 | // do anything meaningful with them. |
| 3280 | if (isa<SCEVUnknown>(*J) && !SE.isLoopInvariant(*J, L)) |
| 3281 | continue; |
| 3282 | |
| 3283 | // Don't pull a constant into a register if the constant could be folded |
| 3284 | // into an immediate field. |
| 3285 | if (isAlwaysFoldable(TTI, SE, LU.MinOffset, LU.MaxOffset, LU.Kind, |
| 3286 | LU.AccessTy, *J, Base.getNumRegs() > 1)) |
| 3287 | continue; |
| 3288 | |
| 3289 | // Collect all operands except *J. |
| 3290 | SmallVector<const SCEV *, 8> InnerAddOps( |
| 3291 | ((const SmallVector<const SCEV *, 8> &)AddOps).begin(), J); |
| 3292 | InnerAddOps.append(std::next(J), |
| 3293 | ((const SmallVector<const SCEV *, 8> &)AddOps).end()); |
| 3294 | |
| 3295 | // Don't leave just a constant behind in a register if the constant could |
| 3296 | // be folded into an immediate field. |
| 3297 | if (InnerAddOps.size() == 1 && |
| 3298 | isAlwaysFoldable(TTI, SE, LU.MinOffset, LU.MaxOffset, LU.Kind, |
| 3299 | LU.AccessTy, InnerAddOps[0], Base.getNumRegs() > 1)) |
| 3300 | continue; |
| 3301 | |
| 3302 | const SCEV *InnerSum = SE.getAddExpr(InnerAddOps); |
| 3303 | if (InnerSum->isZero()) |
| 3304 | continue; |
| 3305 | Formula F = Base; |
| 3306 | |
| 3307 | // Add the remaining pieces of the add back into the new formula. |
| 3308 | const SCEVConstant *InnerSumSC = dyn_cast<SCEVConstant>(InnerSum); |
| 3309 | if (InnerSumSC && SE.getTypeSizeInBits(InnerSumSC->getType()) <= 64 && |
| 3310 | TTI.isLegalAddImmediate((uint64_t)F.UnfoldedOffset + |
| 3311 | InnerSumSC->getValue()->getZExtValue())) { |
| 3312 | F.UnfoldedOffset = |
| 3313 | (uint64_t)F.UnfoldedOffset + InnerSumSC->getValue()->getZExtValue(); |
| 3314 | if (IsScaledReg) |
| 3315 | F.ScaledReg = nullptr; |
| 3316 | else |
| 3317 | F.BaseRegs.erase(F.BaseRegs.begin() + Idx); |
| 3318 | } else if (IsScaledReg) |
| 3319 | F.ScaledReg = InnerSum; |
| 3320 | else |
| 3321 | F.BaseRegs[Idx] = InnerSum; |
| 3322 | |
| 3323 | // Add J as its own register, or an unfolded immediate. |
| 3324 | const SCEVConstant *SC = dyn_cast<SCEVConstant>(*J); |
| 3325 | if (SC && SE.getTypeSizeInBits(SC->getType()) <= 64 && |
| 3326 | TTI.isLegalAddImmediate((uint64_t)F.UnfoldedOffset + |
| 3327 | SC->getValue()->getZExtValue())) |
| 3328 | F.UnfoldedOffset = |
| 3329 | (uint64_t)F.UnfoldedOffset + SC->getValue()->getZExtValue(); |
| 3330 | else |
| 3331 | F.BaseRegs.push_back(*J); |
| 3332 | // We may have changed the number of register in base regs, adjust the |
| 3333 | // formula accordingly. |
| 3334 | F.Canonicalize(); |
| 3335 | |
| 3336 | if (InsertFormula(LU, LUIdx, F)) |
| 3337 | // If that formula hadn't been seen before, recurse to find more like |
| 3338 | // it. |
| 3339 | GenerateReassociations(LU, LUIdx, LU.Formulae.back(), Depth + 1); |
| 3340 | } |
| 3341 | } |
| 3342 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3343 | /// GenerateReassociations - Split out subexpressions from adds and the bases of |
| 3344 | /// addrecs. |
| 3345 | void LSRInstance::GenerateReassociations(LSRUse &LU, unsigned LUIdx, |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3346 | Formula Base, unsigned Depth) { |
| 3347 | assert(Base.isCanonical() && "Input must be in the canonical form"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3348 | // Arbitrarily cap recursion to protect compile time. |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3349 | if (Depth >= 3) |
| 3350 | return; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3351 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3352 | for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) |
| 3353 | GenerateReassociationsImpl(LU, LUIdx, Base, Depth, i); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3354 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3355 | if (Base.Scale == 1) |
| 3356 | GenerateReassociationsImpl(LU, LUIdx, Base, Depth, |
| 3357 | /* Idx */ -1, /* IsScaledReg */ true); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3358 | } |
| 3359 | |
| 3360 | /// GenerateCombinations - Generate a formula consisting of all of the |
| 3361 | /// loop-dominating registers added into a single register. |
| 3362 | void LSRInstance::GenerateCombinations(LSRUse &LU, unsigned LUIdx, |
Dan Gohman | e4e51a6 | 2010-02-14 18:51:39 +0000 | [diff] [blame] | 3363 | Formula Base) { |
Dan Gohman | 8b0a419 | 2010-03-01 17:49:51 +0000 | [diff] [blame] | 3364 | // This method is only interesting on a plurality of registers. |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3365 | if (Base.BaseRegs.size() + (Base.Scale == 1) <= 1) |
| 3366 | return; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3367 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3368 | // Flatten the representation, i.e., reg1 + 1*reg2 => reg1 + reg2, before |
| 3369 | // processing the formula. |
| 3370 | Base.Unscale(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3371 | Formula F = Base; |
| 3372 | F.BaseRegs.clear(); |
| 3373 | SmallVector<const SCEV *, 4> Ops; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3374 | for (const SCEV *BaseReg : Base.BaseRegs) { |
Dan Gohman | 20d9ce2 | 2010-11-17 21:41:58 +0000 | [diff] [blame] | 3375 | if (SE.properlyDominates(BaseReg, L->getHeader()) && |
Dan Gohman | afd6db9 | 2010-11-17 21:23:15 +0000 | [diff] [blame] | 3376 | !SE.hasComputableLoopEvolution(BaseReg, L)) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3377 | Ops.push_back(BaseReg); |
| 3378 | else |
| 3379 | F.BaseRegs.push_back(BaseReg); |
| 3380 | } |
| 3381 | if (Ops.size() > 1) { |
Dan Gohman | bb7d522 | 2010-02-14 18:50:49 +0000 | [diff] [blame] | 3382 | const SCEV *Sum = SE.getAddExpr(Ops); |
| 3383 | // TODO: If Sum is zero, it probably means ScalarEvolution missed an |
| 3384 | // opportunity to fold something. For now, just ignore such cases |
Dan Gohman | 8b0a419 | 2010-03-01 17:49:51 +0000 | [diff] [blame] | 3385 | // rather than proceed with zero in a register. |
Dan Gohman | bb7d522 | 2010-02-14 18:50:49 +0000 | [diff] [blame] | 3386 | if (!Sum->isZero()) { |
| 3387 | F.BaseRegs.push_back(Sum); |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3388 | F.Canonicalize(); |
Dan Gohman | bb7d522 | 2010-02-14 18:50:49 +0000 | [diff] [blame] | 3389 | (void)InsertFormula(LU, LUIdx, F); |
| 3390 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3391 | } |
| 3392 | } |
| 3393 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3394 | /// \brief Helper function for LSRInstance::GenerateSymbolicOffsets. |
| 3395 | void LSRInstance::GenerateSymbolicOffsetsImpl(LSRUse &LU, unsigned LUIdx, |
| 3396 | const Formula &Base, size_t Idx, |
| 3397 | bool IsScaledReg) { |
| 3398 | const SCEV *G = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx]; |
| 3399 | GlobalValue *GV = ExtractSymbol(G, SE); |
| 3400 | if (G->isZero() || !GV) |
| 3401 | return; |
| 3402 | Formula F = Base; |
| 3403 | F.BaseGV = GV; |
| 3404 | if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F)) |
| 3405 | return; |
| 3406 | if (IsScaledReg) |
| 3407 | F.ScaledReg = G; |
| 3408 | else |
| 3409 | F.BaseRegs[Idx] = G; |
| 3410 | (void)InsertFormula(LU, LUIdx, F); |
| 3411 | } |
| 3412 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3413 | /// GenerateSymbolicOffsets - Generate reuse formulae using symbolic offsets. |
| 3414 | void LSRInstance::GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx, |
| 3415 | Formula Base) { |
| 3416 | // 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] | 3417 | if (Base.BaseGV) return; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3418 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3419 | for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) |
| 3420 | GenerateSymbolicOffsetsImpl(LU, LUIdx, Base, i); |
| 3421 | if (Base.Scale == 1) |
| 3422 | GenerateSymbolicOffsetsImpl(LU, LUIdx, Base, /* Idx */ -1, |
| 3423 | /* IsScaledReg */ true); |
| 3424 | } |
| 3425 | |
| 3426 | /// \brief Helper function for LSRInstance::GenerateConstantOffsets. |
| 3427 | void LSRInstance::GenerateConstantOffsetsImpl( |
| 3428 | LSRUse &LU, unsigned LUIdx, const Formula &Base, |
| 3429 | const SmallVectorImpl<int64_t> &Worklist, size_t Idx, bool IsScaledReg) { |
| 3430 | const SCEV *G = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx]; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3431 | for (int64_t Offset : Worklist) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3432 | Formula F = Base; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3433 | F.BaseOffset = (uint64_t)Base.BaseOffset - Offset; |
| 3434 | if (isLegalUse(TTI, LU.MinOffset - Offset, LU.MaxOffset - Offset, LU.Kind, |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3435 | LU.AccessTy, F)) { |
| 3436 | // Add the offset to the base register. |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3437 | const SCEV *NewG = SE.getAddExpr(SE.getConstant(G->getType(), Offset), G); |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3438 | // If it cancelled out, drop the base register, otherwise update it. |
| 3439 | if (NewG->isZero()) { |
| 3440 | if (IsScaledReg) { |
| 3441 | F.Scale = 0; |
| 3442 | F.ScaledReg = nullptr; |
| 3443 | } else |
| 3444 | F.DeleteBaseReg(F.BaseRegs[Idx]); |
| 3445 | F.Canonicalize(); |
| 3446 | } else if (IsScaledReg) |
| 3447 | F.ScaledReg = NewG; |
| 3448 | else |
| 3449 | F.BaseRegs[Idx] = NewG; |
| 3450 | |
| 3451 | (void)InsertFormula(LU, LUIdx, F); |
| 3452 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3453 | } |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3454 | |
| 3455 | int64_t Imm = ExtractImmediate(G, SE); |
| 3456 | if (G->isZero() || Imm == 0) |
| 3457 | return; |
| 3458 | Formula F = Base; |
| 3459 | F.BaseOffset = (uint64_t)F.BaseOffset + Imm; |
| 3460 | if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F)) |
| 3461 | return; |
| 3462 | if (IsScaledReg) |
| 3463 | F.ScaledReg = G; |
| 3464 | else |
| 3465 | F.BaseRegs[Idx] = G; |
| 3466 | (void)InsertFormula(LU, LUIdx, F); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3467 | } |
| 3468 | |
| 3469 | /// GenerateConstantOffsets - Generate reuse formulae using symbolic offsets. |
| 3470 | void LSRInstance::GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx, |
| 3471 | Formula Base) { |
| 3472 | // TODO: For now, just add the min and max offset, because it usually isn't |
| 3473 | // worthwhile looking at everything inbetween. |
Dan Gohman | 4afd412 | 2010-07-15 15:14:45 +0000 | [diff] [blame] | 3474 | SmallVector<int64_t, 2> Worklist; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3475 | Worklist.push_back(LU.MinOffset); |
| 3476 | if (LU.MaxOffset != LU.MinOffset) |
| 3477 | Worklist.push_back(LU.MaxOffset); |
| 3478 | |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3479 | for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) |
| 3480 | GenerateConstantOffsetsImpl(LU, LUIdx, Base, Worklist, i); |
| 3481 | if (Base.Scale == 1) |
| 3482 | GenerateConstantOffsetsImpl(LU, LUIdx, Base, Worklist, /* Idx */ -1, |
| 3483 | /* IsScaledReg */ true); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3484 | } |
| 3485 | |
| 3486 | /// GenerateICmpZeroScales - For ICmpZero, check to see if we can scale up |
| 3487 | /// the comparison. For example, x == y -> x*c == y*c. |
| 3488 | void LSRInstance::GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx, |
| 3489 | Formula Base) { |
| 3490 | if (LU.Kind != LSRUse::ICmpZero) return; |
| 3491 | |
| 3492 | // Determine the integer type for the base formula. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3493 | Type *IntTy = Base.getType(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3494 | if (!IntTy) return; |
| 3495 | if (SE.getTypeSizeInBits(IntTy) > 64) return; |
| 3496 | |
| 3497 | // Don't do this if there is more than one offset. |
| 3498 | if (LU.MinOffset != LU.MaxOffset) return; |
| 3499 | |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3500 | assert(!Base.BaseGV && "ICmpZero use is not legal!"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3501 | |
| 3502 | // Check each interesting stride. |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3503 | for (int64_t Factor : Factors) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3504 | // Check that the multiplication doesn't overflow. |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3505 | if (Base.BaseOffset == INT64_MIN && Factor == -1) |
Dan Gohman | 5f10d6c | 2010-02-17 00:41:53 +0000 | [diff] [blame] | 3506 | continue; |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3507 | int64_t NewBaseOffset = (uint64_t)Base.BaseOffset * Factor; |
| 3508 | if (NewBaseOffset / Factor != Base.BaseOffset) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3509 | continue; |
Andrew Trick | 429e9ed | 2014-02-26 16:31:56 +0000 | [diff] [blame] | 3510 | // If the offset will be truncated at this use, check that it is in bounds. |
| 3511 | if (!IntTy->isPointerTy() && |
| 3512 | !ConstantInt::isValueValidForType(IntTy, NewBaseOffset)) |
| 3513 | continue; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3514 | |
| 3515 | // Check that multiplying with the use offset doesn't overflow. |
| 3516 | int64_t Offset = LU.MinOffset; |
Dan Gohman | 5f10d6c | 2010-02-17 00:41:53 +0000 | [diff] [blame] | 3517 | if (Offset == INT64_MIN && Factor == -1) |
| 3518 | continue; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3519 | Offset = (uint64_t)Offset * Factor; |
Dan Gohman | 13ac3b2 | 2010-02-17 00:42:19 +0000 | [diff] [blame] | 3520 | if (Offset / Factor != LU.MinOffset) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3521 | continue; |
Andrew Trick | 429e9ed | 2014-02-26 16:31:56 +0000 | [diff] [blame] | 3522 | // If the offset will be truncated at this use, check that it is in bounds. |
| 3523 | if (!IntTy->isPointerTy() && |
| 3524 | !ConstantInt::isValueValidForType(IntTy, Offset)) |
| 3525 | continue; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3526 | |
Dan Gohman | 963b1c1 | 2010-06-24 16:57:52 +0000 | [diff] [blame] | 3527 | Formula F = Base; |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3528 | F.BaseOffset = NewBaseOffset; |
Dan Gohman | 963b1c1 | 2010-06-24 16:57:52 +0000 | [diff] [blame] | 3529 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3530 | // Check that this scale is legal. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 3531 | if (!isLegalUse(TTI, Offset, Offset, LU.Kind, LU.AccessTy, F)) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3532 | continue; |
| 3533 | |
| 3534 | // Compensate for the use having MinOffset built into it. |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3535 | F.BaseOffset = (uint64_t)F.BaseOffset + Offset - LU.MinOffset; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3536 | |
Dan Gohman | 1d2ded7 | 2010-05-03 22:09:21 +0000 | [diff] [blame] | 3537 | const SCEV *FactorS = SE.getConstant(IntTy, Factor); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3538 | |
| 3539 | // Check that multiplying with each base register doesn't overflow. |
| 3540 | for (size_t i = 0, e = F.BaseRegs.size(); i != e; ++i) { |
| 3541 | F.BaseRegs[i] = SE.getMulExpr(F.BaseRegs[i], FactorS); |
Dan Gohman | 4eebb94 | 2010-02-19 19:35:48 +0000 | [diff] [blame] | 3542 | if (getExactSDiv(F.BaseRegs[i], FactorS, SE) != Base.BaseRegs[i]) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3543 | goto next; |
| 3544 | } |
| 3545 | |
| 3546 | // Check that multiplying with the scaled register doesn't overflow. |
| 3547 | if (F.ScaledReg) { |
| 3548 | F.ScaledReg = SE.getMulExpr(F.ScaledReg, FactorS); |
Dan Gohman | 4eebb94 | 2010-02-19 19:35:48 +0000 | [diff] [blame] | 3549 | if (getExactSDiv(F.ScaledReg, FactorS, SE) != Base.ScaledReg) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3550 | continue; |
| 3551 | } |
| 3552 | |
Dan Gohman | 6136e94 | 2011-05-03 00:46:49 +0000 | [diff] [blame] | 3553 | // Check that multiplying with the unfolded offset doesn't overflow. |
| 3554 | if (F.UnfoldedOffset != 0) { |
Dan Gohman | 6c4a319 | 2011-05-23 21:07:39 +0000 | [diff] [blame] | 3555 | if (F.UnfoldedOffset == INT64_MIN && Factor == -1) |
| 3556 | continue; |
Dan Gohman | 6136e94 | 2011-05-03 00:46:49 +0000 | [diff] [blame] | 3557 | F.UnfoldedOffset = (uint64_t)F.UnfoldedOffset * Factor; |
| 3558 | if (F.UnfoldedOffset / Factor != Base.UnfoldedOffset) |
| 3559 | continue; |
Andrew Trick | 429e9ed | 2014-02-26 16:31:56 +0000 | [diff] [blame] | 3560 | // If the offset will be truncated, check that it is in bounds. |
| 3561 | if (!IntTy->isPointerTy() && |
| 3562 | !ConstantInt::isValueValidForType(IntTy, F.UnfoldedOffset)) |
| 3563 | continue; |
Dan Gohman | 6136e94 | 2011-05-03 00:46:49 +0000 | [diff] [blame] | 3564 | } |
| 3565 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3566 | // If we make it here and it's legal, add it. |
| 3567 | (void)InsertFormula(LU, LUIdx, F); |
| 3568 | next:; |
| 3569 | } |
| 3570 | } |
| 3571 | |
| 3572 | /// GenerateScales - Generate stride factor reuse formulae by making use of |
| 3573 | /// scaled-offset address modes, for example. |
Dan Gohman | ab5fb7f | 2010-05-20 19:44:23 +0000 | [diff] [blame] | 3574 | void LSRInstance::GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3575 | // Determine the integer type for the base formula. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3576 | Type *IntTy = Base.getType(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3577 | if (!IntTy) return; |
| 3578 | |
| 3579 | // 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] | 3580 | // Try to unscale the formula to generate a better scale. |
| 3581 | if (Base.Scale != 0 && !Base.Unscale()) |
| 3582 | return; |
| 3583 | |
| 3584 | assert(Base.Scale == 0 && "Unscale did not did its job!"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3585 | |
| 3586 | // Check each interesting stride. |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3587 | for (int64_t Factor : Factors) { |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3588 | Base.Scale = Factor; |
| 3589 | Base.HasBaseReg = Base.BaseRegs.size() > 1; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3590 | // Check whether this scale is going to be legal. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 3591 | if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, |
| 3592 | Base)) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3593 | // As a special-case, handle special out-of-loop Basic users specially. |
| 3594 | // TODO: Reconsider this special case. |
| 3595 | if (LU.Kind == LSRUse::Basic && |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 3596 | isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LSRUse::Special, |
| 3597 | LU.AccessTy, Base) && |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3598 | LU.AllFixupsOutsideLoop) |
| 3599 | LU.Kind = LSRUse::Special; |
| 3600 | else |
| 3601 | continue; |
| 3602 | } |
| 3603 | // For an ICmpZero, negating a solitary base register won't lead to |
| 3604 | // new solutions. |
| 3605 | if (LU.Kind == LSRUse::ICmpZero && |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3606 | !Base.HasBaseReg && Base.BaseOffset == 0 && !Base.BaseGV) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3607 | continue; |
| 3608 | // For each addrec base reg, apply the scale, if possible. |
| 3609 | for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) |
| 3610 | if (const SCEVAddRecExpr *AR = |
| 3611 | dyn_cast<SCEVAddRecExpr>(Base.BaseRegs[i])) { |
Dan Gohman | 1d2ded7 | 2010-05-03 22:09:21 +0000 | [diff] [blame] | 3612 | const SCEV *FactorS = SE.getConstant(IntTy, Factor); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3613 | if (FactorS->isZero()) |
| 3614 | continue; |
| 3615 | // Divide out the factor, ignoring high bits, since we'll be |
| 3616 | // scaling the value back up in the end. |
Dan Gohman | 4eebb94 | 2010-02-19 19:35:48 +0000 | [diff] [blame] | 3617 | if (const SCEV *Quotient = getExactSDiv(AR, FactorS, SE, true)) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3618 | // TODO: This could be optimized to avoid all the copying. |
| 3619 | Formula F = Base; |
| 3620 | F.ScaledReg = Quotient; |
Dan Gohman | 80a9608 | 2010-05-20 15:17:54 +0000 | [diff] [blame] | 3621 | F.DeleteBaseReg(F.BaseRegs[i]); |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3622 | // The canonical representation of 1*reg is reg, which is already in |
| 3623 | // Base. In that case, do not try to insert the formula, it will be |
| 3624 | // rejected anyway. |
| 3625 | if (F.Scale == 1 && F.BaseRegs.empty()) |
| 3626 | continue; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3627 | (void)InsertFormula(LU, LUIdx, F); |
| 3628 | } |
| 3629 | } |
| 3630 | } |
| 3631 | } |
| 3632 | |
| 3633 | /// GenerateTruncates - Generate reuse formulae from different IV types. |
Dan Gohman | ab5fb7f | 2010-05-20 19:44:23 +0000 | [diff] [blame] | 3634 | void LSRInstance::GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3635 | // Don't bother truncating symbolic values. |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3636 | if (Base.BaseGV) return; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3637 | |
| 3638 | // Determine the integer type for the base formula. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3639 | Type *DstTy = Base.getType(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3640 | if (!DstTy) return; |
| 3641 | DstTy = SE.getEffectiveSCEVType(DstTy); |
| 3642 | |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3643 | for (Type *SrcTy : Types) { |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 3644 | if (SrcTy != DstTy && TTI.isTruncateFree(SrcTy, DstTy)) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3645 | Formula F = Base; |
| 3646 | |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3647 | if (F.ScaledReg) F.ScaledReg = SE.getAnyExtendExpr(F.ScaledReg, SrcTy); |
| 3648 | for (const SCEV *&BaseReg : F.BaseRegs) |
| 3649 | BaseReg = SE.getAnyExtendExpr(BaseReg, SrcTy); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3650 | |
| 3651 | // TODO: This assumes we've done basic processing on all uses and |
| 3652 | // have an idea what the register usage is. |
| 3653 | if (!F.hasRegsUsedByUsesOtherThan(LUIdx, RegUses)) |
| 3654 | continue; |
| 3655 | |
| 3656 | (void)InsertFormula(LU, LUIdx, F); |
| 3657 | } |
| 3658 | } |
| 3659 | } |
| 3660 | |
| 3661 | namespace { |
| 3662 | |
Dan Gohman | e7f74bb | 2010-02-14 18:51:20 +0000 | [diff] [blame] | 3663 | /// WorkItem - Helper class for GenerateCrossUseConstantOffsets. It's used to |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3664 | /// defer modifications so that the search phase doesn't have to worry about |
| 3665 | /// the data structures moving underneath it. |
| 3666 | struct WorkItem { |
| 3667 | size_t LUIdx; |
| 3668 | int64_t Imm; |
| 3669 | const SCEV *OrigReg; |
| 3670 | |
| 3671 | WorkItem(size_t LI, int64_t I, const SCEV *R) |
| 3672 | : LUIdx(LI), Imm(I), OrigReg(R) {} |
| 3673 | |
| 3674 | void print(raw_ostream &OS) const; |
| 3675 | void dump() const; |
| 3676 | }; |
| 3677 | |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 3678 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3679 | |
| 3680 | void WorkItem::print(raw_ostream &OS) const { |
| 3681 | OS << "in formulae referencing " << *OrigReg << " in use " << LUIdx |
| 3682 | << " , add offset " << Imm; |
| 3683 | } |
| 3684 | |
Manman Ren | 49d684e | 2012-09-12 05:06:18 +0000 | [diff] [blame] | 3685 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3686 | void WorkItem::dump() const { |
| 3687 | print(errs()); errs() << '\n'; |
| 3688 | } |
Manman Ren | c3366cc | 2012-09-06 19:55:56 +0000 | [diff] [blame] | 3689 | #endif |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3690 | |
| 3691 | /// GenerateCrossUseConstantOffsets - Look for registers which are a constant |
| 3692 | /// distance apart and try to form reuse opportunities between them. |
| 3693 | void LSRInstance::GenerateCrossUseConstantOffsets() { |
| 3694 | // Group the registers by their value without any added constant offset. |
| 3695 | typedef std::map<int64_t, const SCEV *> ImmMapTy; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3696 | DenseMap<const SCEV *, ImmMapTy> Map; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3697 | DenseMap<const SCEV *, SmallBitVector> UsedByIndicesMap; |
| 3698 | SmallVector<const SCEV *, 8> Sequence; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3699 | for (const SCEV *Use : RegUses) { |
| 3700 | const SCEV *Reg = Use; // Make a copy for ExtractImmediate to modify. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3701 | int64_t Imm = ExtractImmediate(Reg, SE); |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3702 | auto Pair = Map.insert(std::make_pair(Reg, ImmMapTy())); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3703 | if (Pair.second) |
| 3704 | Sequence.push_back(Reg); |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3705 | Pair.first->second.insert(std::make_pair(Imm, Use)); |
| 3706 | UsedByIndicesMap[Reg] |= RegUses.getUsedByIndices(Use); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3707 | } |
| 3708 | |
| 3709 | // Now examine each set of registers with the same base value. Build up |
| 3710 | // a list of work to do and do the work in a separate step so that we're |
| 3711 | // not adding formulae and register counts while we're searching. |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 3712 | SmallVector<WorkItem, 32> WorkItems; |
| 3713 | SmallSet<std::pair<size_t, int64_t>, 32> UniqueItems; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3714 | for (const SCEV *Reg : Sequence) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3715 | const ImmMapTy &Imms = Map.find(Reg)->second; |
| 3716 | |
Dan Gohman | 363f847 | 2010-02-12 19:20:37 +0000 | [diff] [blame] | 3717 | // It's not worthwhile looking for reuse if there's only one offset. |
| 3718 | if (Imms.size() == 1) |
| 3719 | continue; |
| 3720 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3721 | DEBUG(dbgs() << "Generating cross-use offsets for " << *Reg << ':'; |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3722 | for (const auto &Entry : Imms) |
| 3723 | dbgs() << ' ' << Entry.first; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3724 | dbgs() << '\n'); |
| 3725 | |
| 3726 | // Examine each offset. |
| 3727 | for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end(); |
| 3728 | J != JE; ++J) { |
| 3729 | const SCEV *OrigReg = J->second; |
| 3730 | |
| 3731 | int64_t JImm = J->first; |
| 3732 | const SmallBitVector &UsedByIndices = RegUses.getUsedByIndices(OrigReg); |
| 3733 | |
| 3734 | if (!isa<SCEVConstant>(OrigReg) && |
| 3735 | UsedByIndicesMap[Reg].count() == 1) { |
| 3736 | DEBUG(dbgs() << "Skipping cross-use reuse for " << *OrigReg << '\n'); |
| 3737 | continue; |
| 3738 | } |
| 3739 | |
| 3740 | // Conservatively examine offsets between this orig reg a few selected |
| 3741 | // other orig regs. |
| 3742 | ImmMapTy::const_iterator OtherImms[] = { |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 3743 | Imms.begin(), std::prev(Imms.end()), |
| 3744 | Imms.lower_bound((Imms.begin()->first + std::prev(Imms.end())->first) / |
| 3745 | 2) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3746 | }; |
| 3747 | for (size_t i = 0, e = array_lengthof(OtherImms); i != e; ++i) { |
| 3748 | ImmMapTy::const_iterator M = OtherImms[i]; |
Dan Gohman | 363f847 | 2010-02-12 19:20:37 +0000 | [diff] [blame] | 3749 | if (M == J || M == JE) continue; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3750 | |
| 3751 | // Compute the difference between the two. |
| 3752 | int64_t Imm = (uint64_t)JImm - M->first; |
| 3753 | for (int LUIdx = UsedByIndices.find_first(); LUIdx != -1; |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 3754 | LUIdx = UsedByIndices.find_next(LUIdx)) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3755 | // Make a memo of this use, offset, and register tuple. |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 3756 | if (UniqueItems.insert(std::make_pair(LUIdx, Imm)).second) |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 3757 | WorkItems.push_back(WorkItem(LUIdx, Imm, OrigReg)); |
Evan Cheng | 85a9f43 | 2009-11-12 07:35:05 +0000 | [diff] [blame] | 3758 | } |
| 3759 | } |
| 3760 | } |
| 3761 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3762 | Map.clear(); |
| 3763 | Sequence.clear(); |
| 3764 | UsedByIndicesMap.clear(); |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 3765 | UniqueItems.clear(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3766 | |
| 3767 | // Now iterate through the worklist and add new formulae. |
Craig Topper | 042a392 | 2015-05-25 20:01:18 +0000 | [diff] [blame] | 3768 | for (const WorkItem &WI : WorkItems) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3769 | size_t LUIdx = WI.LUIdx; |
| 3770 | LSRUse &LU = Uses[LUIdx]; |
| 3771 | int64_t Imm = WI.Imm; |
| 3772 | const SCEV *OrigReg = WI.OrigReg; |
| 3773 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3774 | Type *IntTy = SE.getEffectiveSCEVType(OrigReg->getType()); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3775 | const SCEV *NegImmS = SE.getSCEV(ConstantInt::get(IntTy, -(uint64_t)Imm)); |
| 3776 | unsigned BitWidth = SE.getTypeSizeInBits(IntTy); |
| 3777 | |
Dan Gohman | 8b0a419 | 2010-03-01 17:49:51 +0000 | [diff] [blame] | 3778 | // TODO: Use a more targeted data structure. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3779 | for (size_t L = 0, LE = LU.Formulae.size(); L != LE; ++L) { |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3780 | Formula F = LU.Formulae[L]; |
| 3781 | // FIXME: The code for the scaled and unscaled registers looks |
| 3782 | // very similar but slightly different. Investigate if they |
| 3783 | // could be merged. That way, we would not have to unscale the |
| 3784 | // Formula. |
| 3785 | F.Unscale(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3786 | // Use the immediate in the scaled register. |
| 3787 | if (F.ScaledReg == OrigReg) { |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3788 | int64_t Offset = (uint64_t)F.BaseOffset + Imm * (uint64_t)F.Scale; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3789 | // Don't create 50 + reg(-50). |
| 3790 | if (F.referencesReg(SE.getSCEV( |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3791 | ConstantInt::get(IntTy, -(uint64_t)Offset)))) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3792 | continue; |
| 3793 | Formula NewF = F; |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3794 | NewF.BaseOffset = Offset; |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 3795 | if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, |
| 3796 | NewF)) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3797 | continue; |
| 3798 | NewF.ScaledReg = SE.getAddExpr(NegImmS, NewF.ScaledReg); |
| 3799 | |
| 3800 | // If the new scale is a constant in a register, and adding the constant |
| 3801 | // value to the immediate would produce a value closer to zero than the |
| 3802 | // immediate itself, then the formula isn't worthwhile. |
| 3803 | if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewF.ScaledReg)) |
Chris Lattner | b1a1512 | 2011-07-15 06:08:15 +0000 | [diff] [blame] | 3804 | if (C->getValue()->isNegative() != |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3805 | (NewF.BaseOffset < 0) && |
| 3806 | (C->getValue()->getValue().abs() * APInt(BitWidth, F.Scale)) |
Benjamin Kramer | 7bd1f7c | 2015-03-09 20:20:16 +0000 | [diff] [blame] | 3807 | .ule(std::abs(NewF.BaseOffset))) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3808 | continue; |
| 3809 | |
| 3810 | // OK, looks good. |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3811 | NewF.Canonicalize(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3812 | (void)InsertFormula(LU, LUIdx, NewF); |
| 3813 | } else { |
| 3814 | // Use the immediate in a base register. |
| 3815 | for (size_t N = 0, NE = F.BaseRegs.size(); N != NE; ++N) { |
| 3816 | const SCEV *BaseReg = F.BaseRegs[N]; |
| 3817 | if (BaseReg != OrigReg) |
| 3818 | continue; |
| 3819 | Formula NewF = F; |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3820 | NewF.BaseOffset = (uint64_t)NewF.BaseOffset + Imm; |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 3821 | if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, |
| 3822 | LU.Kind, LU.AccessTy, NewF)) { |
| 3823 | if (!TTI.isLegalAddImmediate((uint64_t)NewF.UnfoldedOffset + Imm)) |
Dan Gohman | 6136e94 | 2011-05-03 00:46:49 +0000 | [diff] [blame] | 3824 | continue; |
| 3825 | NewF = F; |
| 3826 | NewF.UnfoldedOffset = (uint64_t)NewF.UnfoldedOffset + Imm; |
| 3827 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3828 | NewF.BaseRegs[N] = SE.getAddExpr(NegImmS, BaseReg); |
| 3829 | |
| 3830 | // If the new formula has a constant in a register, and adding the |
| 3831 | // constant value to the immediate would produce a value closer to |
| 3832 | // zero than the immediate itself, then the formula isn't worthwhile. |
Craig Topper | 10949ae | 2015-05-23 08:45:10 +0000 | [diff] [blame] | 3833 | for (const SCEV *NewReg : NewF.BaseRegs) |
| 3834 | if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewReg)) |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3835 | if ((C->getValue()->getValue() + NewF.BaseOffset).abs().slt( |
Benjamin Kramer | 7bd1f7c | 2015-03-09 20:20:16 +0000 | [diff] [blame] | 3836 | std::abs(NewF.BaseOffset)) && |
Dan Gohman | 50f8f2c | 2010-05-18 23:48:08 +0000 | [diff] [blame] | 3837 | (C->getValue()->getValue() + |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 3838 | NewF.BaseOffset).countTrailingZeros() >= |
Michael J. Spencer | df1ecbd7 | 2013-05-24 22:23:49 +0000 | [diff] [blame] | 3839 | countTrailingZeros<uint64_t>(NewF.BaseOffset)) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3840 | goto skip_formula; |
| 3841 | |
| 3842 | // Ok, looks good. |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 3843 | NewF.Canonicalize(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3844 | (void)InsertFormula(LU, LUIdx, NewF); |
| 3845 | break; |
| 3846 | skip_formula:; |
| 3847 | } |
| 3848 | } |
| 3849 | } |
| 3850 | } |
Dale Johannesen | 02cb2bf | 2009-05-11 17:15:42 +0000 | [diff] [blame] | 3851 | } |
| 3852 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3853 | /// GenerateAllReuseFormulae - Generate formulae for each use. |
| 3854 | void |
| 3855 | LSRInstance::GenerateAllReuseFormulae() { |
Dan Gohman | 521efe6 | 2010-02-16 01:42:53 +0000 | [diff] [blame] | 3856 | // This is split into multiple loops so that hasRegsUsedByUsesOtherThan |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3857 | // queries are more precise. |
| 3858 | for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) { |
| 3859 | LSRUse &LU = Uses[LUIdx]; |
| 3860 | for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i) |
| 3861 | GenerateReassociations(LU, LUIdx, LU.Formulae[i]); |
| 3862 | for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i) |
| 3863 | GenerateCombinations(LU, LUIdx, LU.Formulae[i]); |
| 3864 | } |
| 3865 | for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) { |
| 3866 | LSRUse &LU = Uses[LUIdx]; |
| 3867 | for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i) |
| 3868 | GenerateSymbolicOffsets(LU, LUIdx, LU.Formulae[i]); |
| 3869 | for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i) |
| 3870 | GenerateConstantOffsets(LU, LUIdx, LU.Formulae[i]); |
| 3871 | for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i) |
| 3872 | GenerateICmpZeroScales(LU, LUIdx, LU.Formulae[i]); |
| 3873 | for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i) |
| 3874 | GenerateScales(LU, LUIdx, LU.Formulae[i]); |
Dan Gohman | 521efe6 | 2010-02-16 01:42:53 +0000 | [diff] [blame] | 3875 | } |
| 3876 | for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) { |
| 3877 | LSRUse &LU = Uses[LUIdx]; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3878 | for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i) |
| 3879 | GenerateTruncates(LU, LUIdx, LU.Formulae[i]); |
| 3880 | } |
| 3881 | |
| 3882 | GenerateCrossUseConstantOffsets(); |
Dan Gohman | bf673e0 | 2010-08-29 15:21:38 +0000 | [diff] [blame] | 3883 | |
| 3884 | DEBUG(dbgs() << "\n" |
| 3885 | "After generating reuse formulae:\n"; |
| 3886 | print_uses(dbgs())); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3887 | } |
| 3888 | |
Dan Gohman | 1b61fd9 | 2010-10-07 23:43:09 +0000 | [diff] [blame] | 3889 | /// If there are multiple formulae with the same set of registers used |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3890 | /// by other uses, pick the best one and delete the others. |
| 3891 | void LSRInstance::FilterOutUndesirableDedicatedRegisters() { |
Dan Gohman | 5947e16 | 2010-10-07 23:52:18 +0000 | [diff] [blame] | 3892 | DenseSet<const SCEV *> VisitedRegs; |
| 3893 | SmallPtrSet<const SCEV *, 16> Regs; |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 3894 | SmallPtrSet<const SCEV *, 16> LoserRegs; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3895 | #ifndef NDEBUG |
Dan Gohman | 4c4043c | 2010-05-20 20:05:31 +0000 | [diff] [blame] | 3896 | bool ChangedFormulae = false; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3897 | #endif |
| 3898 | |
| 3899 | // Collect the best formula for each unique set of shared registers. This |
| 3900 | // is reset for each use. |
Preston Gurd | 25c3b6a | 2013-02-01 20:41:27 +0000 | [diff] [blame] | 3901 | typedef DenseMap<SmallVector<const SCEV *, 4>, size_t, UniquifierDenseMapInfo> |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3902 | BestFormulaeTy; |
| 3903 | BestFormulaeTy BestFormulae; |
| 3904 | |
| 3905 | for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) { |
| 3906 | LSRUse &LU = Uses[LUIdx]; |
Dan Gohman | ab5fb7f | 2010-05-20 19:44:23 +0000 | [diff] [blame] | 3907 | DEBUG(dbgs() << "Filtering for use "; LU.print(dbgs()); dbgs() << '\n'); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3908 | |
Dan Gohman | 4cf99b5 | 2010-05-18 23:42:37 +0000 | [diff] [blame] | 3909 | bool Any = false; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3910 | for (size_t FIdx = 0, NumForms = LU.Formulae.size(); |
| 3911 | FIdx != NumForms; ++FIdx) { |
| 3912 | Formula &F = LU.Formulae[FIdx]; |
| 3913 | |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 3914 | // Some formulas are instant losers. For example, they may depend on |
| 3915 | // nonexistent AddRecs from other loops. These need to be filtered |
| 3916 | // immediately, otherwise heuristics could choose them over others leading |
| 3917 | // to an unsatisfactory solution. Passing LoserRegs into RateFormula here |
| 3918 | // avoids the need to recompute this information across formulae using the |
| 3919 | // same bad AddRec. Passing LoserRegs is also essential unless we remove |
| 3920 | // the corresponding bad register from the Regs set. |
| 3921 | Cost CostF; |
| 3922 | Regs.clear(); |
Quentin Colombet | 8aa7abe | 2013-05-31 17:20:29 +0000 | [diff] [blame] | 3923 | CostF.RateFormula(TTI, F, Regs, VisitedRegs, L, LU.Offsets, SE, DT, LU, |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 3924 | &LoserRegs); |
| 3925 | if (CostF.isLoser()) { |
| 3926 | // During initial formula generation, undesirable formulae are generated |
| 3927 | // by uses within other loops that have some non-trivial address mode or |
| 3928 | // use the postinc form of the IV. LSR needs to provide these formulae |
| 3929 | // as the basis of rediscovering the desired formula that uses an AddRec |
| 3930 | // corresponding to the existing phi. Once all formulae have been |
| 3931 | // generated, these initial losers may be pruned. |
| 3932 | DEBUG(dbgs() << " Filtering loser "; F.print(dbgs()); |
| 3933 | dbgs() << "\n"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3934 | } |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 3935 | else { |
Preston Gurd | 25c3b6a | 2013-02-01 20:41:27 +0000 | [diff] [blame] | 3936 | SmallVector<const SCEV *, 4> Key; |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 3937 | for (const SCEV *Reg : F.BaseRegs) { |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 3938 | if (RegUses.isRegUsedByUsesOtherThan(Reg, LUIdx)) |
| 3939 | Key.push_back(Reg); |
| 3940 | } |
| 3941 | if (F.ScaledReg && |
| 3942 | RegUses.isRegUsedByUsesOtherThan(F.ScaledReg, LUIdx)) |
| 3943 | Key.push_back(F.ScaledReg); |
| 3944 | // Unstable sort by host order ok, because this is only used for |
| 3945 | // uniquifying. |
| 3946 | std::sort(Key.begin(), Key.end()); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3947 | |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 3948 | std::pair<BestFormulaeTy::const_iterator, bool> P = |
| 3949 | BestFormulae.insert(std::make_pair(Key, FIdx)); |
| 3950 | if (P.second) |
| 3951 | continue; |
| 3952 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3953 | Formula &Best = LU.Formulae[P.first->second]; |
Dan Gohman | 5947e16 | 2010-10-07 23:52:18 +0000 | [diff] [blame] | 3954 | |
Dan Gohman | 5947e16 | 2010-10-07 23:52:18 +0000 | [diff] [blame] | 3955 | Cost CostBest; |
Dan Gohman | 5947e16 | 2010-10-07 23:52:18 +0000 | [diff] [blame] | 3956 | Regs.clear(); |
Quentin Colombet | 8aa7abe | 2013-05-31 17:20:29 +0000 | [diff] [blame] | 3957 | CostBest.RateFormula(TTI, Best, Regs, VisitedRegs, L, LU.Offsets, SE, |
| 3958 | DT, LU); |
Dan Gohman | 5947e16 | 2010-10-07 23:52:18 +0000 | [diff] [blame] | 3959 | if (CostF < CostBest) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3960 | std::swap(F, Best); |
Dan Gohman | 8aca7ef | 2010-05-18 22:37:37 +0000 | [diff] [blame] | 3961 | DEBUG(dbgs() << " Filtering out formula "; F.print(dbgs()); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3962 | dbgs() << "\n" |
Dan Gohman | 8aca7ef | 2010-05-18 22:37:37 +0000 | [diff] [blame] | 3963 | " in favor of formula "; Best.print(dbgs()); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3964 | dbgs() << '\n'); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3965 | } |
Andrew Trick | 5df9096 | 2011-12-06 03:13:31 +0000 | [diff] [blame] | 3966 | #ifndef NDEBUG |
| 3967 | ChangedFormulae = true; |
| 3968 | #endif |
| 3969 | LU.DeleteFormula(F); |
| 3970 | --FIdx; |
| 3971 | --NumForms; |
| 3972 | Any = true; |
Dan Gohman | d080024 | 2010-05-07 23:36:59 +0000 | [diff] [blame] | 3973 | } |
| 3974 | |
Dan Gohman | beebef4 | 2010-05-18 23:55:57 +0000 | [diff] [blame] | 3975 | // Now that we've filtered out some formulae, recompute the Regs set. |
Dan Gohman | 4cf99b5 | 2010-05-18 23:42:37 +0000 | [diff] [blame] | 3976 | if (Any) |
| 3977 | LU.RecomputeRegs(LUIdx, RegUses); |
Dan Gohman | d080024 | 2010-05-07 23:36:59 +0000 | [diff] [blame] | 3978 | |
| 3979 | // Reset this to prepare for the next use. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3980 | BestFormulae.clear(); |
| 3981 | } |
| 3982 | |
Dan Gohman | 4c4043c | 2010-05-20 20:05:31 +0000 | [diff] [blame] | 3983 | DEBUG(if (ChangedFormulae) { |
Dan Gohman | 5b18f03 | 2010-02-13 02:06:02 +0000 | [diff] [blame] | 3984 | dbgs() << "\n" |
| 3985 | "After filtering out undesirable candidates:\n"; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 3986 | print_uses(dbgs()); |
| 3987 | }); |
| 3988 | } |
| 3989 | |
Dan Gohman | a4eca05 | 2010-05-18 22:51:59 +0000 | [diff] [blame] | 3990 | // This is a rough guess that seems to work fairly well. |
| 3991 | static const size_t ComplexityLimit = UINT16_MAX; |
| 3992 | |
| 3993 | /// EstimateSearchSpaceComplexity - Estimate the worst-case number of |
| 3994 | /// solutions the solver might have to consider. It almost never considers |
| 3995 | /// this many solutions because it prune the search space, but the pruning |
| 3996 | /// isn't always sufficient. |
| 3997 | size_t LSRInstance::EstimateSearchSpaceComplexity() const { |
Dan Gohman | 49d638b | 2010-10-07 23:37:58 +0000 | [diff] [blame] | 3998 | size_t Power = 1; |
Craig Topper | 10949ae | 2015-05-23 08:45:10 +0000 | [diff] [blame] | 3999 | for (const LSRUse &LU : Uses) { |
| 4000 | size_t FSize = LU.Formulae.size(); |
Dan Gohman | a4eca05 | 2010-05-18 22:51:59 +0000 | [diff] [blame] | 4001 | if (FSize >= ComplexityLimit) { |
| 4002 | Power = ComplexityLimit; |
| 4003 | break; |
| 4004 | } |
| 4005 | Power *= FSize; |
| 4006 | if (Power >= ComplexityLimit) |
| 4007 | break; |
| 4008 | } |
| 4009 | return Power; |
| 4010 | } |
| 4011 | |
Dan Gohman | e9e0873 | 2010-08-29 16:09:42 +0000 | [diff] [blame] | 4012 | /// NarrowSearchSpaceByDetectingSupersets - When one formula uses a superset |
| 4013 | /// of the registers of another formula, it won't help reduce register |
| 4014 | /// pressure (though it may not necessarily hurt register pressure); remove |
| 4015 | /// it to simplify the system. |
| 4016 | void LSRInstance::NarrowSearchSpaceByDetectingSupersets() { |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4017 | if (EstimateSearchSpaceComplexity() >= ComplexityLimit) { |
| 4018 | DEBUG(dbgs() << "The search space is too complex.\n"); |
| 4019 | |
| 4020 | DEBUG(dbgs() << "Narrowing the search space by eliminating formulae " |
| 4021 | "which use a superset of registers used by other " |
| 4022 | "formulae.\n"); |
| 4023 | |
| 4024 | for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) { |
| 4025 | LSRUse &LU = Uses[LUIdx]; |
| 4026 | bool Any = false; |
| 4027 | for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) { |
| 4028 | Formula &F = LU.Formulae[i]; |
Dan Gohman | 8ec018c | 2010-05-20 20:00:41 +0000 | [diff] [blame] | 4029 | // Look for a formula with a constant or GV in a register. If the use |
| 4030 | // also has a formula with that same value in an immediate field, |
| 4031 | // delete the one that uses a register. |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4032 | for (SmallVectorImpl<const SCEV *>::const_iterator |
| 4033 | I = F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I) { |
| 4034 | if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*I)) { |
| 4035 | Formula NewF = F; |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 4036 | NewF.BaseOffset += C->getValue()->getSExtValue(); |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4037 | NewF.BaseRegs.erase(NewF.BaseRegs.begin() + |
| 4038 | (I - F.BaseRegs.begin())); |
| 4039 | if (LU.HasFormulaWithSameRegs(NewF)) { |
| 4040 | DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n'); |
| 4041 | LU.DeleteFormula(F); |
| 4042 | --i; |
| 4043 | --e; |
| 4044 | Any = true; |
| 4045 | break; |
| 4046 | } |
| 4047 | } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(*I)) { |
| 4048 | if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue())) |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 4049 | if (!F.BaseGV) { |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4050 | Formula NewF = F; |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 4051 | NewF.BaseGV = GV; |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4052 | NewF.BaseRegs.erase(NewF.BaseRegs.begin() + |
| 4053 | (I - F.BaseRegs.begin())); |
| 4054 | if (LU.HasFormulaWithSameRegs(NewF)) { |
| 4055 | DEBUG(dbgs() << " Deleting "; F.print(dbgs()); |
| 4056 | dbgs() << '\n'); |
| 4057 | LU.DeleteFormula(F); |
| 4058 | --i; |
| 4059 | --e; |
| 4060 | Any = true; |
| 4061 | break; |
| 4062 | } |
| 4063 | } |
| 4064 | } |
| 4065 | } |
| 4066 | } |
| 4067 | if (Any) |
| 4068 | LU.RecomputeRegs(LUIdx, RegUses); |
| 4069 | } |
| 4070 | |
| 4071 | DEBUG(dbgs() << "After pre-selection:\n"; |
| 4072 | print_uses(dbgs())); |
| 4073 | } |
Dan Gohman | e9e0873 | 2010-08-29 16:09:42 +0000 | [diff] [blame] | 4074 | } |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4075 | |
Dan Gohman | e9e0873 | 2010-08-29 16:09:42 +0000 | [diff] [blame] | 4076 | /// NarrowSearchSpaceByCollapsingUnrolledCode - When there are many registers |
| 4077 | /// for expressions like A, A+1, A+2, etc., allocate a single register for |
| 4078 | /// them. |
| 4079 | void LSRInstance::NarrowSearchSpaceByCollapsingUnrolledCode() { |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4080 | if (EstimateSearchSpaceComplexity() < ComplexityLimit) |
| 4081 | return; |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4082 | |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4083 | DEBUG(dbgs() << "The search space is too complex.\n" |
| 4084 | "Narrowing the search space by assuming that uses separated " |
| 4085 | "by a constant offset will use the same registers.\n"); |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4086 | |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4087 | // This is especially useful for unrolled loops. |
Dan Gohman | 8ec018c | 2010-05-20 20:00:41 +0000 | [diff] [blame] | 4088 | |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4089 | for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) { |
| 4090 | LSRUse &LU = Uses[LUIdx]; |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4091 | for (const Formula &F : LU.Formulae) { |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 4092 | if (F.BaseOffset == 0 || (F.Scale != 0 && F.Scale != 1)) |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4093 | continue; |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4094 | |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4095 | LSRUse *LUThatHas = FindUseWithSimilarFormula(F, LU); |
| 4096 | if (!LUThatHas) |
| 4097 | continue; |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4098 | |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4099 | if (!reconcileNewOffset(*LUThatHas, F.BaseOffset, /*HasBaseReg=*/ false, |
| 4100 | LU.Kind, LU.AccessTy)) |
| 4101 | continue; |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 4102 | |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4103 | DEBUG(dbgs() << " Deleting use "; LU.print(dbgs()); dbgs() << '\n'); |
Dan Gohman | 2fd85d7 | 2010-10-08 19:33:26 +0000 | [diff] [blame] | 4104 | |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4105 | LUThatHas->AllFixupsOutsideLoop &= LU.AllFixupsOutsideLoop; |
| 4106 | |
| 4107 | // Update the relocs to reference the new use. |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4108 | for (LSRFixup &Fixup : Fixups) { |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4109 | if (Fixup.LUIdx == LUIdx) { |
| 4110 | Fixup.LUIdx = LUThatHas - &Uses.front(); |
| 4111 | Fixup.Offset += F.BaseOffset; |
| 4112 | // Add the new offset to LUThatHas' offset list. |
| 4113 | if (LUThatHas->Offsets.back() != Fixup.Offset) { |
| 4114 | LUThatHas->Offsets.push_back(Fixup.Offset); |
| 4115 | if (Fixup.Offset > LUThatHas->MaxOffset) |
| 4116 | LUThatHas->MaxOffset = Fixup.Offset; |
| 4117 | if (Fixup.Offset < LUThatHas->MinOffset) |
| 4118 | LUThatHas->MinOffset = Fixup.Offset; |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4119 | } |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4120 | DEBUG(dbgs() << "New fixup has offset " << Fixup.Offset << '\n'); |
| 4121 | } |
| 4122 | if (Fixup.LUIdx == NumUses-1) |
| 4123 | Fixup.LUIdx = LUIdx; |
| 4124 | } |
| 4125 | |
| 4126 | // Delete formulae from the new use which are no longer legal. |
| 4127 | bool Any = false; |
| 4128 | for (size_t i = 0, e = LUThatHas->Formulae.size(); i != e; ++i) { |
| 4129 | Formula &F = LUThatHas->Formulae[i]; |
| 4130 | if (!isLegalUse(TTI, LUThatHas->MinOffset, LUThatHas->MaxOffset, |
| 4131 | LUThatHas->Kind, LUThatHas->AccessTy, F)) { |
| 4132 | DEBUG(dbgs() << " Deleting "; F.print(dbgs()); |
| 4133 | dbgs() << '\n'); |
| 4134 | LUThatHas->DeleteFormula(F); |
| 4135 | --i; |
| 4136 | --e; |
| 4137 | Any = true; |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4138 | } |
| 4139 | } |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4140 | |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4141 | if (Any) |
| 4142 | LUThatHas->RecomputeRegs(LUThatHas - &Uses.front(), RegUses); |
| 4143 | |
| 4144 | // Delete the old use. |
| 4145 | DeleteUse(LU, LUIdx); |
| 4146 | --LUIdx; |
| 4147 | --NumUses; |
| 4148 | break; |
| 4149 | } |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4150 | } |
Jakub Staszak | 11bd835 | 2013-02-16 16:08:15 +0000 | [diff] [blame] | 4151 | |
| 4152 | DEBUG(dbgs() << "After pre-selection:\n"; print_uses(dbgs())); |
Dan Gohman | e9e0873 | 2010-08-29 16:09:42 +0000 | [diff] [blame] | 4153 | } |
Dan Gohman | 20fab45 | 2010-05-19 23:43:12 +0000 | [diff] [blame] | 4154 | |
Andrew Trick | 8b55b73 | 2011-03-14 16:50:06 +0000 | [diff] [blame] | 4155 | /// NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters - Call |
Dan Gohman | 002ff89 | 2010-08-29 16:39:22 +0000 | [diff] [blame] | 4156 | /// FilterOutUndesirableDedicatedRegisters again, if necessary, now that |
| 4157 | /// we've done more filtering, as it may be able to find more formulae to |
| 4158 | /// eliminate. |
| 4159 | void LSRInstance::NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters(){ |
| 4160 | if (EstimateSearchSpaceComplexity() >= ComplexityLimit) { |
| 4161 | DEBUG(dbgs() << "The search space is too complex.\n"); |
| 4162 | |
| 4163 | DEBUG(dbgs() << "Narrowing the search space by re-filtering out " |
| 4164 | "undesirable dedicated registers.\n"); |
| 4165 | |
| 4166 | FilterOutUndesirableDedicatedRegisters(); |
| 4167 | |
| 4168 | DEBUG(dbgs() << "After pre-selection:\n"; |
| 4169 | print_uses(dbgs())); |
| 4170 | } |
| 4171 | } |
| 4172 | |
Dan Gohman | e9e0873 | 2010-08-29 16:09:42 +0000 | [diff] [blame] | 4173 | /// NarrowSearchSpaceByPickingWinnerRegs - Pick a register which seems likely |
| 4174 | /// to be profitable, and then in any use which has any reference to that |
| 4175 | /// register, delete all formulae which do not reference that register. |
| 4176 | void LSRInstance::NarrowSearchSpaceByPickingWinnerRegs() { |
Dan Gohman | a4ca28a | 2010-05-20 20:52:00 +0000 | [diff] [blame] | 4177 | // With all other options exhausted, loop until the system is simple |
| 4178 | // enough to handle. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4179 | SmallPtrSet<const SCEV *, 4> Taken; |
Dan Gohman | a4eca05 | 2010-05-18 22:51:59 +0000 | [diff] [blame] | 4180 | while (EstimateSearchSpaceComplexity() >= ComplexityLimit) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4181 | // Ok, we have too many of formulae on our hands to conveniently handle. |
| 4182 | // Use a rough heuristic to thin out the list. |
Dan Gohman | 63e9015 | 2010-05-18 22:41:32 +0000 | [diff] [blame] | 4183 | DEBUG(dbgs() << "The search space is too complex.\n"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4184 | |
| 4185 | // Pick the register which is used by the most LSRUses, which is likely |
| 4186 | // to be a good reuse register candidate. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 4187 | const SCEV *Best = nullptr; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4188 | unsigned BestNum = 0; |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4189 | for (const SCEV *Reg : RegUses) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4190 | if (Taken.count(Reg)) |
| 4191 | continue; |
| 4192 | if (!Best) |
| 4193 | Best = Reg; |
| 4194 | else { |
| 4195 | unsigned Count = RegUses.getUsedByIndices(Reg).count(); |
| 4196 | if (Count > BestNum) { |
| 4197 | Best = Reg; |
| 4198 | BestNum = Count; |
| 4199 | } |
| 4200 | } |
| 4201 | } |
| 4202 | |
| 4203 | DEBUG(dbgs() << "Narrowing the search space by assuming " << *Best |
Dan Gohman | 8b0a419 | 2010-03-01 17:49:51 +0000 | [diff] [blame] | 4204 | << " will yield profitable reuse.\n"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4205 | Taken.insert(Best); |
| 4206 | |
| 4207 | // In any use with formulae which references this register, delete formulae |
| 4208 | // which don't reference it. |
Dan Gohman | 4cf99b5 | 2010-05-18 23:42:37 +0000 | [diff] [blame] | 4209 | for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) { |
| 4210 | LSRUse &LU = Uses[LUIdx]; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4211 | if (!LU.Regs.count(Best)) continue; |
| 4212 | |
Dan Gohman | 4cf99b5 | 2010-05-18 23:42:37 +0000 | [diff] [blame] | 4213 | bool Any = false; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4214 | for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) { |
| 4215 | Formula &F = LU.Formulae[i]; |
| 4216 | if (!F.referencesReg(Best)) { |
| 4217 | DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n'); |
Dan Gohman | f1c7b1b | 2010-05-18 22:39:15 +0000 | [diff] [blame] | 4218 | LU.DeleteFormula(F); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4219 | --e; |
| 4220 | --i; |
Dan Gohman | 4cf99b5 | 2010-05-18 23:42:37 +0000 | [diff] [blame] | 4221 | Any = true; |
Dan Gohman | d080024 | 2010-05-07 23:36:59 +0000 | [diff] [blame] | 4222 | assert(e != 0 && "Use has no formulae left! Is Regs inconsistent?"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4223 | continue; |
| 4224 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4225 | } |
Dan Gohman | 4cf99b5 | 2010-05-18 23:42:37 +0000 | [diff] [blame] | 4226 | |
| 4227 | if (Any) |
| 4228 | LU.RecomputeRegs(LUIdx, RegUses); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4229 | } |
| 4230 | |
| 4231 | DEBUG(dbgs() << "After pre-selection:\n"; |
| 4232 | print_uses(dbgs())); |
| 4233 | } |
| 4234 | } |
| 4235 | |
Dan Gohman | e9e0873 | 2010-08-29 16:09:42 +0000 | [diff] [blame] | 4236 | /// NarrowSearchSpaceUsingHeuristics - If there are an extraordinary number of |
| 4237 | /// formulae to choose from, use some rough heuristics to prune down the number |
| 4238 | /// of formulae. This keeps the main solver from taking an extraordinary amount |
| 4239 | /// of time in some worst-case scenarios. |
| 4240 | void LSRInstance::NarrowSearchSpaceUsingHeuristics() { |
| 4241 | NarrowSearchSpaceByDetectingSupersets(); |
| 4242 | NarrowSearchSpaceByCollapsingUnrolledCode(); |
Dan Gohman | 002ff89 | 2010-08-29 16:39:22 +0000 | [diff] [blame] | 4243 | NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters(); |
Dan Gohman | e9e0873 | 2010-08-29 16:09:42 +0000 | [diff] [blame] | 4244 | NarrowSearchSpaceByPickingWinnerRegs(); |
| 4245 | } |
| 4246 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4247 | /// SolveRecurse - This is the recursive solver. |
| 4248 | void LSRInstance::SolveRecurse(SmallVectorImpl<const Formula *> &Solution, |
| 4249 | Cost &SolutionCost, |
| 4250 | SmallVectorImpl<const Formula *> &Workspace, |
| 4251 | const Cost &CurCost, |
| 4252 | const SmallPtrSet<const SCEV *, 16> &CurRegs, |
| 4253 | DenseSet<const SCEV *> &VisitedRegs) const { |
| 4254 | // Some ideas: |
| 4255 | // - prune more: |
| 4256 | // - use more aggressive filtering |
| 4257 | // - sort the formula so that the most profitable solutions are found first |
| 4258 | // - sort the uses too |
| 4259 | // - search faster: |
Dan Gohman | 8b0a419 | 2010-03-01 17:49:51 +0000 | [diff] [blame] | 4260 | // - 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] | 4261 | // and bail early. |
| 4262 | // - track register sets with SmallBitVector |
| 4263 | |
| 4264 | const LSRUse &LU = Uses[Workspace.size()]; |
| 4265 | |
| 4266 | // If this use references any register that's already a part of the |
| 4267 | // in-progress solution, consider it a requirement that a formula must |
| 4268 | // reference that register in order to be considered. This prunes out |
| 4269 | // unprofitable searching. |
| 4270 | SmallSetVector<const SCEV *, 4> ReqRegs; |
Craig Topper | 4627679 | 2014-08-24 23:23:06 +0000 | [diff] [blame] | 4271 | for (const SCEV *S : CurRegs) |
| 4272 | if (LU.Regs.count(S)) |
| 4273 | ReqRegs.insert(S); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4274 | |
| 4275 | SmallPtrSet<const SCEV *, 16> NewRegs; |
| 4276 | Cost NewCost; |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4277 | for (const Formula &F : LU.Formulae) { |
Adam Nemet | deab6f9 | 2014-04-29 18:25:28 +0000 | [diff] [blame] | 4278 | // Ignore formulae which may not be ideal in terms of register reuse of |
| 4279 | // ReqRegs. The formula should use all required registers before |
| 4280 | // introducing new ones. |
| 4281 | int NumReqRegsToFind = std::min(F.getNumRegs(), ReqRegs.size()); |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4282 | for (const SCEV *Reg : ReqRegs) { |
Adam Nemet | deab6f9 | 2014-04-29 18:25:28 +0000 | [diff] [blame] | 4283 | if ((F.ScaledReg && F.ScaledReg == Reg) || |
| 4284 | std::find(F.BaseRegs.begin(), F.BaseRegs.end(), Reg) != |
Andrew Trick | e3502cb | 2012-03-22 22:42:51 +0000 | [diff] [blame] | 4285 | F.BaseRegs.end()) { |
Adam Nemet | deab6f9 | 2014-04-29 18:25:28 +0000 | [diff] [blame] | 4286 | --NumReqRegsToFind; |
| 4287 | if (NumReqRegsToFind == 0) |
| 4288 | break; |
Andrew Trick | e3502cb | 2012-03-22 22:42:51 +0000 | [diff] [blame] | 4289 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4290 | } |
Adam Nemet | deab6f9 | 2014-04-29 18:25:28 +0000 | [diff] [blame] | 4291 | if (NumReqRegsToFind != 0) { |
Andrew Trick | e3502cb | 2012-03-22 22:42:51 +0000 | [diff] [blame] | 4292 | // If none of the formulae satisfied the required registers, then we could |
| 4293 | // clear ReqRegs and try again. Currently, we simply give up in this case. |
| 4294 | continue; |
| 4295 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4296 | |
| 4297 | // Evaluate the cost of the current formula. If it's already worse than |
| 4298 | // the current best, prune the search at that point. |
| 4299 | NewCost = CurCost; |
| 4300 | NewRegs = CurRegs; |
Quentin Colombet | 8aa7abe | 2013-05-31 17:20:29 +0000 | [diff] [blame] | 4301 | NewCost.RateFormula(TTI, F, NewRegs, VisitedRegs, L, LU.Offsets, SE, DT, |
| 4302 | LU); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4303 | if (NewCost < SolutionCost) { |
| 4304 | Workspace.push_back(&F); |
| 4305 | if (Workspace.size() != Uses.size()) { |
| 4306 | SolveRecurse(Solution, SolutionCost, Workspace, NewCost, |
| 4307 | NewRegs, VisitedRegs); |
| 4308 | if (F.getNumRegs() == 1 && Workspace.size() == 1) |
| 4309 | VisitedRegs.insert(F.ScaledReg ? F.ScaledReg : F.BaseRegs[0]); |
| 4310 | } else { |
| 4311 | DEBUG(dbgs() << "New best at "; NewCost.print(dbgs()); |
Andrew Trick | 4dc3eff | 2012-01-09 18:58:16 +0000 | [diff] [blame] | 4312 | dbgs() << ".\n Regs:"; |
Craig Topper | 4627679 | 2014-08-24 23:23:06 +0000 | [diff] [blame] | 4313 | for (const SCEV *S : NewRegs) |
| 4314 | dbgs() << ' ' << *S; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4315 | dbgs() << '\n'); |
| 4316 | |
| 4317 | SolutionCost = NewCost; |
| 4318 | Solution = Workspace; |
| 4319 | } |
| 4320 | Workspace.pop_back(); |
| 4321 | } |
Dan Gohman | 5b18f03 | 2010-02-13 02:06:02 +0000 | [diff] [blame] | 4322 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4323 | } |
| 4324 | |
Dan Gohman | a4ca28a | 2010-05-20 20:52:00 +0000 | [diff] [blame] | 4325 | /// Solve - Choose one formula from each use. Return the results in the given |
| 4326 | /// Solution vector. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4327 | void LSRInstance::Solve(SmallVectorImpl<const Formula *> &Solution) const { |
| 4328 | SmallVector<const Formula *, 8> Workspace; |
| 4329 | Cost SolutionCost; |
Tim Northover | bc6659c | 2014-01-22 13:27:00 +0000 | [diff] [blame] | 4330 | SolutionCost.Lose(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4331 | Cost CurCost; |
| 4332 | SmallPtrSet<const SCEV *, 16> CurRegs; |
| 4333 | DenseSet<const SCEV *> VisitedRegs; |
| 4334 | Workspace.reserve(Uses.size()); |
| 4335 | |
Dan Gohman | 8ec018c | 2010-05-20 20:00:41 +0000 | [diff] [blame] | 4336 | // SolveRecurse does all the work. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4337 | SolveRecurse(Solution, SolutionCost, Workspace, CurCost, |
| 4338 | CurRegs, VisitedRegs); |
Andrew Trick | 5812439 | 2011-09-27 00:44:14 +0000 | [diff] [blame] | 4339 | if (Solution.empty()) { |
| 4340 | DEBUG(dbgs() << "\nNo Satisfactory Solution\n"); |
| 4341 | return; |
| 4342 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4343 | |
| 4344 | // Ok, we've now made all our decisions. |
| 4345 | DEBUG(dbgs() << "\n" |
| 4346 | "The chosen solution requires "; SolutionCost.print(dbgs()); |
| 4347 | dbgs() << ":\n"; |
| 4348 | for (size_t i = 0, e = Uses.size(); i != e; ++i) { |
| 4349 | dbgs() << " "; |
| 4350 | Uses[i].print(dbgs()); |
| 4351 | dbgs() << "\n" |
| 4352 | " "; |
| 4353 | Solution[i]->print(dbgs()); |
| 4354 | dbgs() << '\n'; |
| 4355 | }); |
Dan Gohman | 6295f2e | 2010-05-20 20:59:23 +0000 | [diff] [blame] | 4356 | |
| 4357 | assert(Solution.size() == Uses.size() && "Malformed solution!"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4358 | } |
| 4359 | |
Dan Gohman | 607e02b | 2010-04-09 22:07:05 +0000 | [diff] [blame] | 4360 | /// HoistInsertPosition - Helper for AdjustInsertPositionForExpand. Climb up |
| 4361 | /// the dominator tree far as we can go while still being dominated by the |
| 4362 | /// input positions. This helps canonicalize the insert position, which |
| 4363 | /// encourages sharing. |
| 4364 | BasicBlock::iterator |
| 4365 | LSRInstance::HoistInsertPosition(BasicBlock::iterator IP, |
| 4366 | const SmallVectorImpl<Instruction *> &Inputs) |
| 4367 | const { |
| 4368 | for (;;) { |
| 4369 | const Loop *IPLoop = LI.getLoopFor(IP->getParent()); |
| 4370 | unsigned IPLoopDepth = IPLoop ? IPLoop->getLoopDepth() : 0; |
| 4371 | |
| 4372 | BasicBlock *IDom; |
Dan Gohman | 8ce95cc | 2010-05-20 20:00:25 +0000 | [diff] [blame] | 4373 | for (DomTreeNode *Rung = DT.getNode(IP->getParent()); ; ) { |
Dan Gohman | 9b48b85 | 2010-05-20 22:46:54 +0000 | [diff] [blame] | 4374 | if (!Rung) return IP; |
Dan Gohman | 8ce95cc | 2010-05-20 20:00:25 +0000 | [diff] [blame] | 4375 | Rung = Rung->getIDom(); |
| 4376 | if (!Rung) return IP; |
| 4377 | IDom = Rung->getBlock(); |
Dan Gohman | 607e02b | 2010-04-09 22:07:05 +0000 | [diff] [blame] | 4378 | |
| 4379 | // Don't climb into a loop though. |
| 4380 | const Loop *IDomLoop = LI.getLoopFor(IDom); |
| 4381 | unsigned IDomDepth = IDomLoop ? IDomLoop->getLoopDepth() : 0; |
| 4382 | if (IDomDepth <= IPLoopDepth && |
| 4383 | (IDomDepth != IPLoopDepth || IDomLoop == IPLoop)) |
| 4384 | break; |
| 4385 | } |
| 4386 | |
| 4387 | bool AllDominate = true; |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 4388 | Instruction *BetterPos = nullptr; |
Dan Gohman | 607e02b | 2010-04-09 22:07:05 +0000 | [diff] [blame] | 4389 | Instruction *Tentative = IDom->getTerminator(); |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4390 | for (Instruction *Inst : Inputs) { |
Dan Gohman | 607e02b | 2010-04-09 22:07:05 +0000 | [diff] [blame] | 4391 | if (Inst == Tentative || !DT.dominates(Inst, Tentative)) { |
| 4392 | AllDominate = false; |
| 4393 | break; |
| 4394 | } |
| 4395 | // Attempt to find an insert position in the middle of the block, |
| 4396 | // instead of at the end, so that it can be used for other expansions. |
| 4397 | if (IDom == Inst->getParent() && |
Rafael Espindola | dd48931 | 2012-04-30 03:53:06 +0000 | [diff] [blame] | 4398 | (!BetterPos || !DT.dominates(Inst, BetterPos))) |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 4399 | BetterPos = std::next(BasicBlock::iterator(Inst)); |
Dan Gohman | 607e02b | 2010-04-09 22:07:05 +0000 | [diff] [blame] | 4400 | } |
| 4401 | if (!AllDominate) |
| 4402 | break; |
| 4403 | if (BetterPos) |
| 4404 | IP = BetterPos; |
| 4405 | else |
| 4406 | IP = Tentative; |
| 4407 | } |
| 4408 | |
| 4409 | return IP; |
| 4410 | } |
| 4411 | |
| 4412 | /// AdjustInsertPositionForExpand - Determine an input position which will be |
Dan Gohman | d2df643 | 2010-04-09 02:00:38 +0000 | [diff] [blame] | 4413 | /// dominated by the operands and which will dominate the result. |
| 4414 | BasicBlock::iterator |
Andrew Trick | c908b43 | 2012-01-20 07:41:13 +0000 | [diff] [blame] | 4415 | LSRInstance::AdjustInsertPositionForExpand(BasicBlock::iterator LowestIP, |
Dan Gohman | 607e02b | 2010-04-09 22:07:05 +0000 | [diff] [blame] | 4416 | const LSRFixup &LF, |
Andrew Trick | c908b43 | 2012-01-20 07:41:13 +0000 | [diff] [blame] | 4417 | const LSRUse &LU, |
| 4418 | SCEVExpander &Rewriter) const { |
Dan Gohman | d2df643 | 2010-04-09 02:00:38 +0000 | [diff] [blame] | 4419 | // Collect some instructions which must be dominated by the |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 4420 | // expanding replacement. These must be dominated by any operands that |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4421 | // will be required in the expansion. |
| 4422 | SmallVector<Instruction *, 4> Inputs; |
| 4423 | if (Instruction *I = dyn_cast<Instruction>(LF.OperandValToReplace)) |
| 4424 | Inputs.push_back(I); |
| 4425 | if (LU.Kind == LSRUse::ICmpZero) |
| 4426 | if (Instruction *I = |
| 4427 | dyn_cast<Instruction>(cast<ICmpInst>(LF.UserInst)->getOperand(1))) |
| 4428 | Inputs.push_back(I); |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 4429 | if (LF.PostIncLoops.count(L)) { |
| 4430 | if (LF.isUseFullyOutsideLoop(L)) |
Dan Gohman | 52f5563 | 2010-03-02 01:59:21 +0000 | [diff] [blame] | 4431 | Inputs.push_back(L->getLoopLatch()->getTerminator()); |
| 4432 | else |
| 4433 | Inputs.push_back(IVIncInsertPos); |
| 4434 | } |
Dan Gohman | 4506539 | 2010-04-08 05:57:57 +0000 | [diff] [blame] | 4435 | // The expansion must also be dominated by the increment positions of any |
| 4436 | // loops it for which it is using post-inc mode. |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4437 | for (const Loop *PIL : LF.PostIncLoops) { |
Dan Gohman | 4506539 | 2010-04-08 05:57:57 +0000 | [diff] [blame] | 4438 | if (PIL == L) continue; |
| 4439 | |
Dan Gohman | 607e02b | 2010-04-09 22:07:05 +0000 | [diff] [blame] | 4440 | // Be dominated by the loop exit. |
Dan Gohman | 4506539 | 2010-04-08 05:57:57 +0000 | [diff] [blame] | 4441 | SmallVector<BasicBlock *, 4> ExitingBlocks; |
| 4442 | PIL->getExitingBlocks(ExitingBlocks); |
| 4443 | if (!ExitingBlocks.empty()) { |
| 4444 | BasicBlock *BB = ExitingBlocks[0]; |
| 4445 | for (unsigned i = 1, e = ExitingBlocks.size(); i != e; ++i) |
| 4446 | BB = DT.findNearestCommonDominator(BB, ExitingBlocks[i]); |
| 4447 | Inputs.push_back(BB->getTerminator()); |
| 4448 | } |
| 4449 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4450 | |
Andrew Trick | c908b43 | 2012-01-20 07:41:13 +0000 | [diff] [blame] | 4451 | assert(!isa<PHINode>(LowestIP) && !isa<LandingPadInst>(LowestIP) |
| 4452 | && !isa<DbgInfoIntrinsic>(LowestIP) && |
| 4453 | "Insertion point must be a normal instruction"); |
| 4454 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4455 | // Then, climb up the immediate dominator tree as far as we can go while |
| 4456 | // still being dominated by the input positions. |
Andrew Trick | c908b43 | 2012-01-20 07:41:13 +0000 | [diff] [blame] | 4457 | BasicBlock::iterator IP = HoistInsertPosition(LowestIP, Inputs); |
Dan Gohman | d2df643 | 2010-04-09 02:00:38 +0000 | [diff] [blame] | 4458 | |
| 4459 | // Don't insert instructions before PHI nodes. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4460 | while (isa<PHINode>(IP)) ++IP; |
Dan Gohman | d2df643 | 2010-04-09 02:00:38 +0000 | [diff] [blame] | 4461 | |
Bill Wendling | 86c5cbe | 2011-08-24 21:06:46 +0000 | [diff] [blame] | 4462 | // Ignore landingpad instructions. |
| 4463 | while (isa<LandingPadInst>(IP)) ++IP; |
| 4464 | |
Dan Gohman | d2df643 | 2010-04-09 02:00:38 +0000 | [diff] [blame] | 4465 | // Ignore debug intrinsics. |
Dan Gohman | d42e09d | 2010-03-26 00:33:27 +0000 | [diff] [blame] | 4466 | while (isa<DbgInfoIntrinsic>(IP)) ++IP; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4467 | |
Andrew Trick | c908b43 | 2012-01-20 07:41:13 +0000 | [diff] [blame] | 4468 | // Set IP below instructions recently inserted by SCEVExpander. This keeps the |
| 4469 | // IP consistent across expansions and allows the previously inserted |
| 4470 | // instructions to be reused by subsequent expansion. |
| 4471 | while (Rewriter.isInsertedInstruction(IP) && IP != LowestIP) ++IP; |
| 4472 | |
Dan Gohman | d2df643 | 2010-04-09 02:00:38 +0000 | [diff] [blame] | 4473 | return IP; |
| 4474 | } |
| 4475 | |
Dan Gohman | a4ca28a | 2010-05-20 20:52:00 +0000 | [diff] [blame] | 4476 | /// Expand - Emit instructions for the leading candidate expression for this |
| 4477 | /// LSRUse (this is called "expanding"). |
Dan Gohman | d2df643 | 2010-04-09 02:00:38 +0000 | [diff] [blame] | 4478 | Value *LSRInstance::Expand(const LSRFixup &LF, |
| 4479 | const Formula &F, |
| 4480 | BasicBlock::iterator IP, |
| 4481 | SCEVExpander &Rewriter, |
| 4482 | SmallVectorImpl<WeakVH> &DeadInsts) const { |
| 4483 | const LSRUse &LU = Uses[LF.LUIdx]; |
Andrew Trick | 57243da | 2013-10-25 21:35:56 +0000 | [diff] [blame] | 4484 | if (LU.RigidFormula) |
| 4485 | return LF.OperandValToReplace; |
Dan Gohman | d2df643 | 2010-04-09 02:00:38 +0000 | [diff] [blame] | 4486 | |
| 4487 | // Determine an input position which will be dominated by the operands and |
| 4488 | // which will dominate the result. |
Andrew Trick | c908b43 | 2012-01-20 07:41:13 +0000 | [diff] [blame] | 4489 | IP = AdjustInsertPositionForExpand(IP, LF, LU, Rewriter); |
Dan Gohman | d2df643 | 2010-04-09 02:00:38 +0000 | [diff] [blame] | 4490 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4491 | // Inform the Rewriter if we have a post-increment use, so that it can |
| 4492 | // perform an advantageous expansion. |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 4493 | Rewriter.setPostInc(LF.PostIncLoops); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4494 | |
| 4495 | // This is the type that the user actually needs. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 4496 | Type *OpTy = LF.OperandValToReplace->getType(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4497 | // This will be the type that we'll initially expand to. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 4498 | Type *Ty = F.getType(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4499 | if (!Ty) |
| 4500 | // No type known; just expand directly to the ultimate type. |
| 4501 | Ty = OpTy; |
| 4502 | else if (SE.getEffectiveSCEVType(Ty) == SE.getEffectiveSCEVType(OpTy)) |
| 4503 | // Expand directly to the ultimate type if it's the right size. |
| 4504 | Ty = OpTy; |
| 4505 | // This is the type to do integer arithmetic in. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 4506 | Type *IntTy = SE.getEffectiveSCEVType(Ty); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4507 | |
| 4508 | // Build up a list of operands to add together to form the full base. |
| 4509 | SmallVector<const SCEV *, 8> Ops; |
| 4510 | |
| 4511 | // Expand the BaseRegs portion. |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4512 | for (const SCEV *Reg : F.BaseRegs) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4513 | assert(!Reg->isZero() && "Zero allocated in a base register!"); |
| 4514 | |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 4515 | // If we're expanding for a post-inc user, make the post-inc adjustment. |
| 4516 | PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops); |
Sanjoy Das | 215df9e | 2015-08-04 01:52:05 +0000 | [diff] [blame] | 4517 | Reg = TransformForPostIncUse(Denormalize, Reg, |
| 4518 | LF.UserInst, LF.OperandValToReplace, |
| 4519 | Loops, SE, DT); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4520 | |
Sanjoy Das | 215df9e | 2015-08-04 01:52:05 +0000 | [diff] [blame] | 4521 | Ops.push_back(SE.getUnknown(Rewriter.expandCodeFor(Reg, nullptr, IP))); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4522 | } |
| 4523 | |
| 4524 | // Expand the ScaledReg portion. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 4525 | Value *ICmpScaledV = nullptr; |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 4526 | if (F.Scale != 0) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4527 | const SCEV *ScaledS = F.ScaledReg; |
| 4528 | |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 4529 | // If we're expanding for a post-inc user, make the post-inc adjustment. |
| 4530 | PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops); |
Sanjoy Das | 215df9e | 2015-08-04 01:52:05 +0000 | [diff] [blame] | 4531 | ScaledS = TransformForPostIncUse(Denormalize, ScaledS, |
| 4532 | LF.UserInst, LF.OperandValToReplace, |
| 4533 | Loops, SE, DT); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4534 | |
| 4535 | if (LU.Kind == LSRUse::ICmpZero) { |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 4536 | // Expand ScaleReg as if it was part of the base regs. |
| 4537 | if (F.Scale == 1) |
Sanjoy Das | 215df9e | 2015-08-04 01:52:05 +0000 | [diff] [blame] | 4538 | Ops.push_back( |
| 4539 | SE.getUnknown(Rewriter.expandCodeFor(ScaledS, nullptr, IP))); |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 4540 | else { |
| 4541 | // An interesting way of "folding" with an icmp is to use a negated |
| 4542 | // scale, which we'll implement by inserting it into the other operand |
| 4543 | // of the icmp. |
| 4544 | assert(F.Scale == -1 && |
| 4545 | "The only scale supported by ICmpZero uses is -1!"); |
Sanjoy Das | 215df9e | 2015-08-04 01:52:05 +0000 | [diff] [blame] | 4546 | ICmpScaledV = Rewriter.expandCodeFor(ScaledS, nullptr, IP); |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 4547 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4548 | } else { |
| 4549 | // Otherwise just expand the scaled register and an explicit scale, |
| 4550 | // which is expected to be matched as part of the address. |
Andrew Trick | 8370c7c | 2012-06-15 20:07:29 +0000 | [diff] [blame] | 4551 | |
| 4552 | // Flush the operand list to suppress SCEVExpander hoisting address modes. |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 4553 | // Unless the addressing mode will not be folded. |
| 4554 | if (!Ops.empty() && LU.Kind == LSRUse::Address && |
| 4555 | isAMCompletelyFolded(TTI, LU, F)) { |
Andrew Trick | 8370c7c | 2012-06-15 20:07:29 +0000 | [diff] [blame] | 4556 | Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP); |
| 4557 | Ops.clear(); |
| 4558 | Ops.push_back(SE.getUnknown(FullV)); |
| 4559 | } |
Sanjoy Das | 215df9e | 2015-08-04 01:52:05 +0000 | [diff] [blame] | 4560 | ScaledS = SE.getUnknown(Rewriter.expandCodeFor(ScaledS, nullptr, IP)); |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 4561 | if (F.Scale != 1) |
| 4562 | ScaledS = |
| 4563 | SE.getMulExpr(ScaledS, SE.getConstant(ScaledS->getType(), F.Scale)); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4564 | Ops.push_back(ScaledS); |
| 4565 | } |
| 4566 | } |
| 4567 | |
Dan Gohman | 29707de | 2010-03-03 05:29:13 +0000 | [diff] [blame] | 4568 | // Expand the GV portion. |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 4569 | if (F.BaseGV) { |
Dan Gohman | 29707de | 2010-03-03 05:29:13 +0000 | [diff] [blame] | 4570 | // Flush the operand list to suppress SCEVExpander hoisting. |
Andrew Trick | 8370c7c | 2012-06-15 20:07:29 +0000 | [diff] [blame] | 4571 | if (!Ops.empty()) { |
| 4572 | Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP); |
| 4573 | Ops.clear(); |
| 4574 | Ops.push_back(SE.getUnknown(FullV)); |
| 4575 | } |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 4576 | Ops.push_back(SE.getUnknown(F.BaseGV)); |
Andrew Trick | 8370c7c | 2012-06-15 20:07:29 +0000 | [diff] [blame] | 4577 | } |
| 4578 | |
| 4579 | // Flush the operand list to suppress SCEVExpander hoisting of both folded and |
| 4580 | // unfolded offsets. LSR assumes they both live next to their uses. |
| 4581 | if (!Ops.empty()) { |
Dan Gohman | 29707de | 2010-03-03 05:29:13 +0000 | [diff] [blame] | 4582 | Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP); |
| 4583 | Ops.clear(); |
| 4584 | Ops.push_back(SE.getUnknown(FullV)); |
| 4585 | } |
| 4586 | |
| 4587 | // Expand the immediate portion. |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 4588 | int64_t Offset = (uint64_t)F.BaseOffset + LF.Offset; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4589 | if (Offset != 0) { |
| 4590 | if (LU.Kind == LSRUse::ICmpZero) { |
| 4591 | // The other interesting way of "folding" with an ICmpZero is to use a |
| 4592 | // negated immediate. |
| 4593 | if (!ICmpScaledV) |
Eli Friedman | b46345d | 2011-10-13 23:48:33 +0000 | [diff] [blame] | 4594 | ICmpScaledV = ConstantInt::get(IntTy, -(uint64_t)Offset); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4595 | else { |
| 4596 | Ops.push_back(SE.getUnknown(ICmpScaledV)); |
| 4597 | ICmpScaledV = ConstantInt::get(IntTy, Offset); |
| 4598 | } |
| 4599 | } else { |
| 4600 | // Just add the immediate values. These again are expected to be matched |
| 4601 | // as part of the address. |
Dan Gohman | 29707de | 2010-03-03 05:29:13 +0000 | [diff] [blame] | 4602 | Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy, Offset))); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4603 | } |
| 4604 | } |
| 4605 | |
Dan Gohman | 6136e94 | 2011-05-03 00:46:49 +0000 | [diff] [blame] | 4606 | // Expand the unfolded offset portion. |
| 4607 | int64_t UnfoldedOffset = F.UnfoldedOffset; |
| 4608 | if (UnfoldedOffset != 0) { |
| 4609 | // Just add the immediate values. |
| 4610 | Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy, |
| 4611 | UnfoldedOffset))); |
| 4612 | } |
| 4613 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4614 | // Emit instructions summing all the operands. |
| 4615 | const SCEV *FullS = Ops.empty() ? |
Dan Gohman | 1d2ded7 | 2010-05-03 22:09:21 +0000 | [diff] [blame] | 4616 | SE.getConstant(IntTy, 0) : |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4617 | SE.getAddExpr(Ops); |
| 4618 | Value *FullV = Rewriter.expandCodeFor(FullS, Ty, IP); |
| 4619 | |
| 4620 | // We're done expanding now, so reset the rewriter. |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 4621 | Rewriter.clearPostInc(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4622 | |
| 4623 | // An ICmpZero Formula represents an ICmp which we're handling as a |
| 4624 | // comparison against zero. Now that we've expanded an expression for that |
| 4625 | // form, update the ICmp's other operand. |
| 4626 | if (LU.Kind == LSRUse::ICmpZero) { |
| 4627 | ICmpInst *CI = cast<ICmpInst>(LF.UserInst); |
Benjamin Kramer | f5e2fc4 | 2015-05-29 19:43:39 +0000 | [diff] [blame] | 4628 | DeadInsts.emplace_back(CI->getOperand(1)); |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 4629 | assert(!F.BaseGV && "ICmp does not support folding a global value and " |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4630 | "a scale at the same time!"); |
Chandler Carruth | 6e47932 | 2013-01-07 15:04:40 +0000 | [diff] [blame] | 4631 | if (F.Scale == -1) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4632 | if (ICmpScaledV->getType() != OpTy) { |
| 4633 | Instruction *Cast = |
| 4634 | CastInst::Create(CastInst::getCastOpcode(ICmpScaledV, false, |
| 4635 | OpTy, false), |
| 4636 | ICmpScaledV, OpTy, "tmp", CI); |
| 4637 | ICmpScaledV = Cast; |
| 4638 | } |
| 4639 | CI->setOperand(1, ICmpScaledV); |
| 4640 | } else { |
Quentin Colombet | c88baa5c | 2014-05-20 19:25:04 +0000 | [diff] [blame] | 4641 | // A scale of 1 means that the scale has been expanded as part of the |
| 4642 | // base regs. |
| 4643 | assert((F.Scale == 0 || F.Scale == 1) && |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4644 | "ICmp does not support folding a global value and " |
| 4645 | "a scale at the same time!"); |
| 4646 | Constant *C = ConstantInt::getSigned(SE.getEffectiveSCEVType(OpTy), |
| 4647 | -(uint64_t)Offset); |
| 4648 | if (C->getType() != OpTy) |
| 4649 | C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false, |
| 4650 | OpTy, false), |
| 4651 | C, OpTy); |
| 4652 | |
| 4653 | CI->setOperand(1, C); |
| 4654 | } |
| 4655 | } |
| 4656 | |
| 4657 | return FullV; |
| 4658 | } |
| 4659 | |
Dan Gohman | 6deab96 | 2010-02-16 20:25:07 +0000 | [diff] [blame] | 4660 | /// RewriteForPHI - Helper for Rewrite. PHI nodes are special because the use |
| 4661 | /// of their operands effectively happens in their predecessor blocks, so the |
| 4662 | /// expression may need to be expanded in multiple places. |
| 4663 | void LSRInstance::RewriteForPHI(PHINode *PN, |
| 4664 | const LSRFixup &LF, |
| 4665 | const Formula &F, |
Dan Gohman | 6deab96 | 2010-02-16 20:25:07 +0000 | [diff] [blame] | 4666 | SCEVExpander &Rewriter, |
| 4667 | SmallVectorImpl<WeakVH> &DeadInsts, |
Dan Gohman | 6deab96 | 2010-02-16 20:25:07 +0000 | [diff] [blame] | 4668 | Pass *P) const { |
| 4669 | DenseMap<BasicBlock *, Value *> Inserted; |
| 4670 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) |
| 4671 | if (PN->getIncomingValue(i) == LF.OperandValToReplace) { |
| 4672 | BasicBlock *BB = PN->getIncomingBlock(i); |
| 4673 | |
| 4674 | // If this is a critical edge, split the edge so that we do not insert |
| 4675 | // the code on all predecessor/successor paths. We do this unless this |
| 4676 | // is the canonical backedge for this loop, which complicates post-inc |
| 4677 | // users. |
| 4678 | if (e != 1 && BB->getTerminator()->getNumSuccessors() > 1 && |
Dan Gohman | de7f699 | 2011-02-08 00:55:13 +0000 | [diff] [blame] | 4679 | !isa<IndirectBrInst>(BB->getTerminator())) { |
Bill Wendling | 07efd6f | 2011-08-25 01:08:34 +0000 | [diff] [blame] | 4680 | BasicBlock *Parent = PN->getParent(); |
| 4681 | Loop *PNLoop = LI.getLoopFor(Parent); |
| 4682 | if (!PNLoop || Parent != PNLoop->getHeader()) { |
Dan Gohman | de7f699 | 2011-02-08 00:55:13 +0000 | [diff] [blame] | 4683 | // Split the critical edge. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 4684 | BasicBlock *NewBB = nullptr; |
Bill Wendling | 3fb137f | 2011-08-25 05:55:40 +0000 | [diff] [blame] | 4685 | if (!Parent->isLandingPad()) { |
Chandler Carruth | 37df2cf | 2015-01-19 12:09:11 +0000 | [diff] [blame] | 4686 | NewBB = SplitCriticalEdge(BB, Parent, |
| 4687 | CriticalEdgeSplittingOptions(&DT, &LI) |
| 4688 | .setMergeIdenticalEdges() |
| 4689 | .setDontDeleteUselessPHIs()); |
Bill Wendling | 3fb137f | 2011-08-25 05:55:40 +0000 | [diff] [blame] | 4690 | } else { |
| 4691 | SmallVector<BasicBlock*, 2> NewBBs; |
Chandler Carruth | 96ada25 | 2015-07-22 09:52:54 +0000 | [diff] [blame] | 4692 | SplitLandingPadPredecessors(Parent, BB, "", "", NewBBs, &DT, &LI); |
Bill Wendling | 3fb137f | 2011-08-25 05:55:40 +0000 | [diff] [blame] | 4693 | NewBB = NewBBs[0]; |
| 4694 | } |
Andrew Trick | 402edbb | 2012-09-18 17:51:33 +0000 | [diff] [blame] | 4695 | // If NewBB==NULL, then SplitCriticalEdge refused to split because all |
| 4696 | // phi predecessors are identical. The simple thing to do is skip |
| 4697 | // splitting in this case rather than complicate the API. |
| 4698 | if (NewBB) { |
| 4699 | // If PN is outside of the loop and BB is in the loop, we want to |
| 4700 | // move the block to be immediately before the PHI block, not |
| 4701 | // immediately after BB. |
| 4702 | if (L->contains(BB) && !L->contains(PN)) |
| 4703 | NewBB->moveBefore(PN->getParent()); |
Dan Gohman | 6deab96 | 2010-02-16 20:25:07 +0000 | [diff] [blame] | 4704 | |
Andrew Trick | 402edbb | 2012-09-18 17:51:33 +0000 | [diff] [blame] | 4705 | // Splitting the edge can reduce the number of PHI entries we have. |
| 4706 | e = PN->getNumIncomingValues(); |
| 4707 | BB = NewBB; |
| 4708 | i = PN->getBasicBlockIndex(BB); |
| 4709 | } |
Dan Gohman | de7f699 | 2011-02-08 00:55:13 +0000 | [diff] [blame] | 4710 | } |
Dan Gohman | 6deab96 | 2010-02-16 20:25:07 +0000 | [diff] [blame] | 4711 | } |
| 4712 | |
| 4713 | std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> Pair = |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 4714 | Inserted.insert(std::make_pair(BB, static_cast<Value *>(nullptr))); |
Dan Gohman | 6deab96 | 2010-02-16 20:25:07 +0000 | [diff] [blame] | 4715 | if (!Pair.second) |
| 4716 | PN->setIncomingValue(i, Pair.first->second); |
| 4717 | else { |
Dan Gohman | 8c16b38 | 2010-02-22 04:11:59 +0000 | [diff] [blame] | 4718 | Value *FullV = Expand(LF, F, BB->getTerminator(), Rewriter, DeadInsts); |
Dan Gohman | 6deab96 | 2010-02-16 20:25:07 +0000 | [diff] [blame] | 4719 | |
| 4720 | // If this is reuse-by-noop-cast, insert the noop cast. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 4721 | Type *OpTy = LF.OperandValToReplace->getType(); |
Dan Gohman | 6deab96 | 2010-02-16 20:25:07 +0000 | [diff] [blame] | 4722 | if (FullV->getType() != OpTy) |
| 4723 | FullV = |
| 4724 | CastInst::Create(CastInst::getCastOpcode(FullV, false, |
| 4725 | OpTy, false), |
| 4726 | FullV, LF.OperandValToReplace->getType(), |
| 4727 | "tmp", BB->getTerminator()); |
| 4728 | |
| 4729 | PN->setIncomingValue(i, FullV); |
| 4730 | Pair.first->second = FullV; |
| 4731 | } |
| 4732 | } |
| 4733 | } |
| 4734 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4735 | /// Rewrite - Emit instructions for the leading candidate expression for this |
| 4736 | /// LSRUse (this is called "expanding"), and update the UserInst to reference |
| 4737 | /// the newly expanded value. |
| 4738 | void LSRInstance::Rewrite(const LSRFixup &LF, |
| 4739 | const Formula &F, |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4740 | SCEVExpander &Rewriter, |
| 4741 | SmallVectorImpl<WeakVH> &DeadInsts, |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4742 | Pass *P) const { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4743 | // First, find an insertion point that dominates UserInst. For PHI nodes, |
| 4744 | // find the nearest block which dominates all the relevant uses. |
| 4745 | if (PHINode *PN = dyn_cast<PHINode>(LF.UserInst)) { |
Dan Gohman | 8c16b38 | 2010-02-22 04:11:59 +0000 | [diff] [blame] | 4746 | RewriteForPHI(PN, LF, F, Rewriter, DeadInsts, P); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4747 | } else { |
Dan Gohman | 8c16b38 | 2010-02-22 04:11:59 +0000 | [diff] [blame] | 4748 | Value *FullV = Expand(LF, F, LF.UserInst, Rewriter, DeadInsts); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4749 | |
| 4750 | // If this is reuse-by-noop-cast, insert the noop cast. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 4751 | Type *OpTy = LF.OperandValToReplace->getType(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4752 | if (FullV->getType() != OpTy) { |
| 4753 | Instruction *Cast = |
| 4754 | CastInst::Create(CastInst::getCastOpcode(FullV, false, OpTy, false), |
| 4755 | FullV, OpTy, "tmp", LF.UserInst); |
| 4756 | FullV = Cast; |
| 4757 | } |
| 4758 | |
| 4759 | // Update the user. ICmpZero is handled specially here (for now) because |
| 4760 | // Expand may have updated one of the operands of the icmp already, and |
| 4761 | // its new value may happen to be equal to LF.OperandValToReplace, in |
| 4762 | // which case doing replaceUsesOfWith leads to replacing both operands |
| 4763 | // with the same value. TODO: Reorganize this. |
| 4764 | if (Uses[LF.LUIdx].Kind == LSRUse::ICmpZero) |
| 4765 | LF.UserInst->setOperand(0, FullV); |
| 4766 | else |
| 4767 | LF.UserInst->replaceUsesOfWith(LF.OperandValToReplace, FullV); |
| 4768 | } |
| 4769 | |
Benjamin Kramer | f5e2fc4 | 2015-05-29 19:43:39 +0000 | [diff] [blame] | 4770 | DeadInsts.emplace_back(LF.OperandValToReplace); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4771 | } |
| 4772 | |
Dan Gohman | a4ca28a | 2010-05-20 20:52:00 +0000 | [diff] [blame] | 4773 | /// ImplementSolution - Rewrite all the fixup locations with new values, |
| 4774 | /// following the chosen solution. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4775 | void |
| 4776 | LSRInstance::ImplementSolution(const SmallVectorImpl<const Formula *> &Solution, |
| 4777 | Pass *P) { |
| 4778 | // Keep track of instructions we may have made dead, so that |
| 4779 | // we can remove them after we are done working. |
| 4780 | SmallVector<WeakVH, 16> DeadInsts; |
| 4781 | |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 4782 | SCEVExpander Rewriter(SE, L->getHeader()->getModule()->getDataLayout(), |
| 4783 | "lsr"); |
Andrew Trick | 4dc3eff | 2012-01-09 18:58:16 +0000 | [diff] [blame] | 4784 | #ifndef NDEBUG |
| 4785 | Rewriter.setDebugType(DEBUG_TYPE); |
| 4786 | #endif |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4787 | Rewriter.disableCanonicalMode(); |
Andrew Trick | 7fb669a | 2011-10-07 23:46:21 +0000 | [diff] [blame] | 4788 | Rewriter.enableLSRMode(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4789 | Rewriter.setIVIncInsertPos(L, IVIncInsertPos); |
| 4790 | |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 4791 | // 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] | 4792 | for (const IVChain &Chain : IVChainVec) { |
| 4793 | if (PHINode *PN = dyn_cast<PHINode>(Chain.tailUserInst())) |
Andrew Trick | d5d2db9 | 2012-01-10 01:45:08 +0000 | [diff] [blame] | 4794 | Rewriter.setChainedPhi(PN); |
| 4795 | } |
| 4796 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4797 | // Expand the new value definitions and update the users. |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4798 | for (const LSRFixup &Fixup : Fixups) { |
Dan Gohman | 927bcaa | 2010-05-20 20:33:18 +0000 | [diff] [blame] | 4799 | Rewrite(Fixup, *Solution[Fixup.LUIdx], Rewriter, DeadInsts, P); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4800 | |
| 4801 | Changed = true; |
| 4802 | } |
| 4803 | |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4804 | for (const IVChain &Chain : IVChainVec) { |
| 4805 | GenerateIVChain(Chain, Rewriter, DeadInsts); |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 4806 | Changed = true; |
| 4807 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4808 | // Clean up after ourselves. This must be done before deleting any |
| 4809 | // instructions. |
| 4810 | Rewriter.clear(); |
| 4811 | |
| 4812 | Changed |= DeleteTriviallyDeadInstructions(DeadInsts); |
| 4813 | } |
| 4814 | |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 4815 | LSRInstance::LSRInstance(Loop *L, Pass *P) |
| 4816 | : IU(P->getAnalysis<IVUsers>()), SE(P->getAnalysis<ScalarEvolution>()), |
Chandler Carruth | 7352302 | 2014-01-13 13:07:17 +0000 | [diff] [blame] | 4817 | DT(P->getAnalysis<DominatorTreeWrapperPass>().getDomTree()), |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 4818 | LI(P->getAnalysis<LoopInfoWrapperPass>().getLoopInfo()), |
Chandler Carruth | fdb9c57 | 2015-02-01 12:01:35 +0000 | [diff] [blame] | 4819 | TTI(P->getAnalysis<TargetTransformInfoWrapperPass>().getTTI( |
| 4820 | *L->getHeader()->getParent())), |
| 4821 | L(L), Changed(false), IVIncInsertPos(nullptr) { |
Dan Gohman | a83ac2d | 2009-11-05 21:11:53 +0000 | [diff] [blame] | 4822 | // If LoopSimplify form is not available, stay out of trouble. |
Andrew Trick | 732ad80 | 2012-01-07 03:16:50 +0000 | [diff] [blame] | 4823 | if (!L->isLoopSimplifyForm()) |
| 4824 | return; |
Dan Gohman | a83ac2d | 2009-11-05 21:11:53 +0000 | [diff] [blame] | 4825 | |
Andrew Trick | 070e540 | 2012-03-16 03:16:56 +0000 | [diff] [blame] | 4826 | // If there's no interesting work to be done, bail early. |
| 4827 | if (IU.empty()) return; |
| 4828 | |
Andrew Trick | 19f80c1 | 2012-04-18 04:00:10 +0000 | [diff] [blame] | 4829 | // If there's too much analysis to be done, bail early. We won't be able to |
| 4830 | // model the problem anyway. |
| 4831 | unsigned NumUsers = 0; |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4832 | for (const IVStrideUse &U : IU) { |
Andrew Trick | 19f80c1 | 2012-04-18 04:00:10 +0000 | [diff] [blame] | 4833 | if (++NumUsers > MaxIVUsers) { |
Craig Topper | 37d0d86 | 2015-05-23 08:20:33 +0000 | [diff] [blame] | 4834 | (void)U; |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4835 | DEBUG(dbgs() << "LSR skipping loop, too many IV Users in " << U << "\n"); |
Andrew Trick | 19f80c1 | 2012-04-18 04:00:10 +0000 | [diff] [blame] | 4836 | return; |
| 4837 | } |
| 4838 | } |
| 4839 | |
Andrew Trick | 070e540 | 2012-03-16 03:16:56 +0000 | [diff] [blame] | 4840 | #ifndef NDEBUG |
Andrew Trick | 12728f0 | 2012-01-17 06:45:52 +0000 | [diff] [blame] | 4841 | // All dominating loops must have preheaders, or SCEVExpander may not be able |
| 4842 | // to materialize an AddRecExpr whose Start is an outer AddRecExpr. |
| 4843 | // |
Andrew Trick | 070e540 | 2012-03-16 03:16:56 +0000 | [diff] [blame] | 4844 | // IVUsers analysis should only create users that are dominated by simple loop |
| 4845 | // headers. Since this loop should dominate all of its users, its user list |
| 4846 | // 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] | 4847 | for (DomTreeNode *Rung = DT.getNode(L->getLoopPreheader()); |
| 4848 | Rung; Rung = Rung->getIDom()) { |
| 4849 | BasicBlock *BB = Rung->getBlock(); |
| 4850 | const Loop *DomLoop = LI.getLoopFor(BB); |
| 4851 | if (DomLoop && DomLoop->getHeader() == BB) { |
Andrew Trick | 070e540 | 2012-03-16 03:16:56 +0000 | [diff] [blame] | 4852 | assert(DomLoop->getLoopPreheader() && "LSR needs a simplified loop nest"); |
Andrew Trick | 12728f0 | 2012-01-17 06:45:52 +0000 | [diff] [blame] | 4853 | } |
Andrew Trick | 732ad80 | 2012-01-07 03:16:50 +0000 | [diff] [blame] | 4854 | } |
Andrew Trick | 070e540 | 2012-03-16 03:16:56 +0000 | [diff] [blame] | 4855 | #endif // DEBUG |
Dan Gohman | 85875f7 | 2009-03-09 20:34:59 +0000 | [diff] [blame] | 4856 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4857 | DEBUG(dbgs() << "\nLSR on loop "; |
Chandler Carruth | d48cdbf | 2014-01-09 02:29:41 +0000 | [diff] [blame] | 4858 | L->getHeader()->printAsOperand(dbgs(), /*PrintType=*/false); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4859 | dbgs() << ":\n"); |
Dan Gohman | e201f8f | 2009-03-09 20:46:50 +0000 | [diff] [blame] | 4860 | |
Dan Gohman | 927bcaa | 2010-05-20 20:33:18 +0000 | [diff] [blame] | 4861 | // First, perform some low-level loop optimizations. |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4862 | OptimizeShadowIV(); |
Dan Gohman | 4c4043c | 2010-05-20 20:05:31 +0000 | [diff] [blame] | 4863 | OptimizeLoopTermCond(); |
Evan Cheng | 78a4eb8 | 2009-05-11 22:33:01 +0000 | [diff] [blame] | 4864 | |
Andrew Trick | 8acb434 | 2011-07-21 00:40:04 +0000 | [diff] [blame] | 4865 | // If loop preparation eliminates all interesting IV users, bail. |
| 4866 | if (IU.empty()) return; |
| 4867 | |
Andrew Trick | 168dfff | 2011-09-29 01:53:08 +0000 | [diff] [blame] | 4868 | // Skip nested loops until we can model them better with formulae. |
Andrew Trick | d97b83e | 2012-03-22 22:42:45 +0000 | [diff] [blame] | 4869 | if (!L->empty()) { |
Andrew Trick | bc6de90 | 2011-09-29 01:33:38 +0000 | [diff] [blame] | 4870 | DEBUG(dbgs() << "LSR skipping outer loop " << *L << "\n"); |
Andrew Trick | 168dfff | 2011-09-29 01:53:08 +0000 | [diff] [blame] | 4871 | return; |
Andrew Trick | bc6de90 | 2011-09-29 01:33:38 +0000 | [diff] [blame] | 4872 | } |
| 4873 | |
Dan Gohman | 927bcaa | 2010-05-20 20:33:18 +0000 | [diff] [blame] | 4874 | // Start collecting data and preparing for the solver. |
Andrew Trick | 29fe5f0 | 2012-01-09 19:50:34 +0000 | [diff] [blame] | 4875 | CollectChains(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4876 | CollectInterestingTypesAndFactors(); |
| 4877 | CollectFixupsAndInitialFormulae(); |
| 4878 | CollectLoopInvariantFixupsAndFormulae(); |
Chris Lattner | 9bfa6f8 | 2005-08-08 05:28:22 +0000 | [diff] [blame] | 4879 | |
Andrew Trick | 248d410 | 2012-01-09 21:18:52 +0000 | [diff] [blame] | 4880 | assert(!Uses.empty() && "IVUsers reported at least one use"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4881 | DEBUG(dbgs() << "LSR found " << Uses.size() << " uses:\n"; |
| 4882 | print_uses(dbgs())); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 4883 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4884 | // Now use the reuse data to generate a bunch of interesting ways |
| 4885 | // to formulate the values needed for the uses. |
| 4886 | GenerateAllReuseFormulae(); |
Evan Cheng | 3df447d | 2006-03-16 21:53:05 +0000 | [diff] [blame] | 4887 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4888 | FilterOutUndesirableDedicatedRegisters(); |
| 4889 | NarrowSearchSpaceUsingHeuristics(); |
Dan Gohman | 92c3696 | 2009-12-18 00:06:20 +0000 | [diff] [blame] | 4890 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4891 | SmallVector<const Formula *, 8> Solution; |
| 4892 | Solve(Solution); |
Dan Gohman | 92c3696 | 2009-12-18 00:06:20 +0000 | [diff] [blame] | 4893 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4894 | // Release memory that is no longer needed. |
| 4895 | Factors.clear(); |
| 4896 | Types.clear(); |
| 4897 | RegUses.clear(); |
| 4898 | |
Andrew Trick | 5812439 | 2011-09-27 00:44:14 +0000 | [diff] [blame] | 4899 | if (Solution.empty()) |
| 4900 | return; |
| 4901 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4902 | #ifndef NDEBUG |
| 4903 | // Formulae should be legal. |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4904 | for (const LSRUse &LU : Uses) { |
| 4905 | for (const Formula &F : LU.Formulae) |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 4906 | assert(isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4907 | F) && "Illegal formula generated!"); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4908 | }; |
| 4909 | #endif |
| 4910 | |
| 4911 | // Now that we've decided what we want, make it so. |
| 4912 | ImplementSolution(Solution, P); |
| 4913 | } |
| 4914 | |
| 4915 | void LSRInstance::print_factors_and_types(raw_ostream &OS) const { |
| 4916 | if (Factors.empty() && Types.empty()) return; |
| 4917 | |
| 4918 | OS << "LSR has identified the following interesting factors and types: "; |
| 4919 | bool First = true; |
| 4920 | |
Craig Topper | 10949ae | 2015-05-23 08:45:10 +0000 | [diff] [blame] | 4921 | for (int64_t Factor : Factors) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4922 | if (!First) OS << ", "; |
| 4923 | First = false; |
Craig Topper | 10949ae | 2015-05-23 08:45:10 +0000 | [diff] [blame] | 4924 | OS << '*' << Factor; |
Evan Cheng | 87fe40b | 2009-11-10 21:14:05 +0000 | [diff] [blame] | 4925 | } |
Dale Johannesen | 02cb2bf | 2009-05-11 17:15:42 +0000 | [diff] [blame] | 4926 | |
Craig Topper | 10949ae | 2015-05-23 08:45:10 +0000 | [diff] [blame] | 4927 | for (Type *Ty : Types) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4928 | if (!First) OS << ", "; |
| 4929 | First = false; |
Craig Topper | 10949ae | 2015-05-23 08:45:10 +0000 | [diff] [blame] | 4930 | OS << '(' << *Ty << ')'; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4931 | } |
| 4932 | OS << '\n'; |
| 4933 | } |
| 4934 | |
| 4935 | void LSRInstance::print_fixups(raw_ostream &OS) const { |
| 4936 | OS << "LSR is examining the following fixup sites:\n"; |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4937 | for (const LSRFixup &LF : Fixups) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4938 | dbgs() << " "; |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4939 | LF.print(OS); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4940 | OS << '\n'; |
| 4941 | } |
| 4942 | } |
| 4943 | |
| 4944 | void LSRInstance::print_uses(raw_ostream &OS) const { |
| 4945 | OS << "LSR is examining the following uses:\n"; |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4946 | for (const LSRUse &LU : Uses) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4947 | dbgs() << " "; |
| 4948 | LU.print(OS); |
| 4949 | OS << '\n'; |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4950 | for (const Formula &F : LU.Formulae) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4951 | OS << " "; |
Craig Topper | 77b9941 | 2015-05-23 08:01:41 +0000 | [diff] [blame] | 4952 | F.print(OS); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4953 | OS << '\n'; |
| 4954 | } |
| 4955 | } |
| 4956 | } |
| 4957 | |
| 4958 | void LSRInstance::print(raw_ostream &OS) const { |
| 4959 | print_factors_and_types(OS); |
| 4960 | print_fixups(OS); |
| 4961 | print_uses(OS); |
| 4962 | } |
| 4963 | |
Manman Ren | 49d684e | 2012-09-12 05:06:18 +0000 | [diff] [blame] | 4964 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4965 | void LSRInstance::dump() const { |
| 4966 | print(errs()); errs() << '\n'; |
| 4967 | } |
Manman Ren | c3366cc | 2012-09-06 19:55:56 +0000 | [diff] [blame] | 4968 | #endif |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4969 | |
| 4970 | namespace { |
| 4971 | |
| 4972 | class LoopStrengthReduce : public LoopPass { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4973 | public: |
| 4974 | static char ID; // Pass ID, replacement for typeid |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 4975 | LoopStrengthReduce(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4976 | |
| 4977 | private: |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 4978 | bool runOnLoop(Loop *L, LPPassManager &LPM) override; |
| 4979 | void getAnalysisUsage(AnalysisUsage &AU) const override; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4980 | }; |
| 4981 | |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 4982 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4983 | |
| 4984 | char LoopStrengthReduce::ID = 0; |
Owen Anderson | 8ac477f | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 4985 | INITIALIZE_PASS_BEGIN(LoopStrengthReduce, "loop-reduce", |
Owen Anderson | df7a4f2 | 2010-10-07 22:25:06 +0000 | [diff] [blame] | 4986 | "Loop Strength Reduction", false, false) |
Chandler Carruth | 705b185 | 2015-01-31 03:43:40 +0000 | [diff] [blame] | 4987 | INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass) |
Chandler Carruth | 7352302 | 2014-01-13 13:07:17 +0000 | [diff] [blame] | 4988 | INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) |
Owen Anderson | 8ac477f | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 4989 | INITIALIZE_PASS_DEPENDENCY(ScalarEvolution) |
| 4990 | INITIALIZE_PASS_DEPENDENCY(IVUsers) |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 4991 | INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass) |
Owen Anderson | a4fefc1 | 2010-10-19 20:08:44 +0000 | [diff] [blame] | 4992 | INITIALIZE_PASS_DEPENDENCY(LoopSimplify) |
Owen Anderson | 8ac477f | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 4993 | INITIALIZE_PASS_END(LoopStrengthReduce, "loop-reduce", |
| 4994 | "Loop Strength Reduction", false, false) |
| 4995 | |
Nadav Rotem | 4dc976f | 2012-10-19 21:28:43 +0000 | [diff] [blame] | 4996 | |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 4997 | Pass *llvm::createLoopStrengthReducePass() { |
| 4998 | return new LoopStrengthReduce(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 4999 | } |
| 5000 | |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 5001 | LoopStrengthReduce::LoopStrengthReduce() : LoopPass(ID) { |
| 5002 | initializeLoopStrengthReducePass(*PassRegistry::getPassRegistry()); |
| 5003 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 5004 | |
| 5005 | void LoopStrengthReduce::getAnalysisUsage(AnalysisUsage &AU) const { |
| 5006 | // We split critical edges, so we change the CFG. However, we do update |
| 5007 | // many analyses if they are around. |
Eric Christopher | da6bd45 | 2011-02-10 01:48:24 +0000 | [diff] [blame] | 5008 | AU.addPreservedID(LoopSimplifyID); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 5009 | |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 5010 | AU.addRequired<LoopInfoWrapperPass>(); |
| 5011 | AU.addPreserved<LoopInfoWrapperPass>(); |
Eric Christopher | da6bd45 | 2011-02-10 01:48:24 +0000 | [diff] [blame] | 5012 | AU.addRequiredID(LoopSimplifyID); |
Chandler Carruth | 7352302 | 2014-01-13 13:07:17 +0000 | [diff] [blame] | 5013 | AU.addRequired<DominatorTreeWrapperPass>(); |
| 5014 | AU.addPreserved<DominatorTreeWrapperPass>(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 5015 | AU.addRequired<ScalarEvolution>(); |
| 5016 | AU.addPreserved<ScalarEvolution>(); |
Cameron Zwarich | 97dae4d | 2011-02-10 23:53:14 +0000 | [diff] [blame] | 5017 | // Requiring LoopSimplify a second time here prevents IVUsers from running |
| 5018 | // twice, since LoopSimplify was invalidated by running ScalarEvolution. |
| 5019 | AU.addRequiredID(LoopSimplifyID); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 5020 | AU.addRequired<IVUsers>(); |
| 5021 | AU.addPreserved<IVUsers>(); |
Chandler Carruth | 705b185 | 2015-01-31 03:43:40 +0000 | [diff] [blame] | 5022 | AU.addRequired<TargetTransformInfoWrapperPass>(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 5023 | } |
| 5024 | |
| 5025 | bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager & /*LPM*/) { |
Paul Robinson | af4e64d | 2014-02-06 00:07:05 +0000 | [diff] [blame] | 5026 | if (skipOptnoneFunction(L)) |
| 5027 | return false; |
| 5028 | |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 5029 | bool Changed = false; |
| 5030 | |
| 5031 | // Run the main LSR transformation. |
Chandler Carruth | 26c59fa | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 5032 | Changed |= LSRInstance(L, this).getChanged(); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 5033 | |
Andrew Trick | 2ec61a8 | 2012-01-07 01:36:44 +0000 | [diff] [blame] | 5034 | // Remove any extra phis created by processing inner loops. |
Dan Gohman | b535800 | 2010-01-05 16:31:45 +0000 | [diff] [blame] | 5035 | Changed |= DeleteDeadPHIs(L->getHeader()); |
Andrew Trick | f950ce8 | 2013-01-06 05:59:39 +0000 | [diff] [blame] | 5036 | if (EnablePhiElim && L->isLoopSimplifyForm()) { |
Andrew Trick | 2ec61a8 | 2012-01-07 01:36:44 +0000 | [diff] [blame] | 5037 | SmallVector<WeakVH, 16> DeadInsts; |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 5038 | const DataLayout &DL = L->getHeader()->getModule()->getDataLayout(); |
| 5039 | SCEVExpander Rewriter(getAnalysis<ScalarEvolution>(), DL, "lsr"); |
Andrew Trick | 2ec61a8 | 2012-01-07 01:36:44 +0000 | [diff] [blame] | 5040 | #ifndef NDEBUG |
| 5041 | Rewriter.setDebugType(DEBUG_TYPE); |
| 5042 | #endif |
Chandler Carruth | 7352302 | 2014-01-13 13:07:17 +0000 | [diff] [blame] | 5043 | unsigned numFolded = Rewriter.replaceCongruentIVs( |
| 5044 | L, &getAnalysis<DominatorTreeWrapperPass>().getDomTree(), DeadInsts, |
Chandler Carruth | fdb9c57 | 2015-02-01 12:01:35 +0000 | [diff] [blame] | 5045 | &getAnalysis<TargetTransformInfoWrapperPass>().getTTI( |
| 5046 | *L->getHeader()->getParent())); |
Andrew Trick | 2ec61a8 | 2012-01-07 01:36:44 +0000 | [diff] [blame] | 5047 | if (numFolded) { |
| 5048 | Changed = true; |
| 5049 | DeleteTriviallyDeadInstructions(DeadInsts); |
| 5050 | DeleteDeadPHIs(L->getHeader()); |
| 5051 | } |
| 5052 | } |
Evan Cheng | 03001cb | 2008-07-07 19:51:32 +0000 | [diff] [blame] | 5053 | return Changed; |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 5054 | } |