blob: 190fc5a2dc4867729b2cc3ede963f3ceb2497ff4 [file] [log] [blame]
Dan Gohman0a40ad92009-04-16 03:18:22 +00001//===- LoopStrengthReduce.cpp - Strength Reduce IVs in Loops --------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
Nate Begemanb18121e2004-10-18 21:08:22 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
Nate Begemanb18121e2004-10-18 21:08:22 +00008//===----------------------------------------------------------------------===//
9//
Dan Gohman97f70ad2009-05-19 20:37:36 +000010// 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 Begemanb18121e2004-10-18 21:08:22 +000014// This pass performs a strength reduction on array references inside loops that
Dan Gohman97f70ad2009-05-19 20:37:36 +000015// 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 Begemanb18121e2004-10-18 21:08:22 +000019//
Dan Gohman45774ce2010-02-12 10:34:29 +000020// 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 Das7041fb12015-03-27 06:01:56 +000031// the value of the register before the add and some using it after. In this
Dan Gohman45774ce2010-02-12 10:34:29 +000032// 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 Carruth26c59fa2013-01-07 14:41:08 +000040// TODO: Should the addressing mode BaseGV be changed to a ConstantExpr instead
41// of a GlobalValue?
Dan Gohman45774ce2010-02-12 10:34:29 +000042//
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 Begemanb18121e2004-10-18 21:08:22 +000054//===----------------------------------------------------------------------===//
55
Chandler Carruthed0881b2012-12-03 16:50:05 +000056#include "llvm/Transforms/Scalar.h"
57#include "llvm/ADT/DenseSet.h"
Benjamin Kramer62fb0cf2014-03-15 17:17:48 +000058#include "llvm/ADT/Hashing.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000059#include "llvm/ADT/STLExtras.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000060#include "llvm/ADT/SetVector.h"
61#include "llvm/ADT/SmallBitVector.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000062#include "llvm/Analysis/IVUsers.h"
Devang Patelb0743b52007-03-06 21:14:09 +000063#include "llvm/Analysis/LoopPass.h"
Nate Begemane68bcd12005-07-30 00:15:07 +000064#include "llvm/Analysis/ScalarEvolutionExpander.h"
Chandler Carruth26c59fa2013-01-07 14:41:08 +000065#include "llvm/Analysis/TargetTransformInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000066#include "llvm/IR/Constants.h"
67#include "llvm/IR/DerivedTypes.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000068#include "llvm/IR/Dominators.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000069#include "llvm/IR/Instructions.h"
70#include "llvm/IR/IntrinsicInst.h"
Mehdi Aminia28d91d2015-03-10 02:37:25 +000071#include "llvm/IR/Module.h"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000072#include "llvm/IR/ValueHandle.h"
Andrew Trick58124392011-09-27 00:44:14 +000073#include "llvm/Support/CommandLine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000074#include "llvm/Support/Debug.h"
Daniel Dunbar6115b392009-07-26 09:48:23 +000075#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000076#include "llvm/Transforms/Utils/BasicBlockUtils.h"
77#include "llvm/Transforms/Utils/Local.h"
Jeff Cohenc5009912005-07-30 18:22:27 +000078#include <algorithm>
Nate Begemanb18121e2004-10-18 21:08:22 +000079using namespace llvm;
80
Chandler Carruth964daaa2014-04-22 02:55:47 +000081#define DEBUG_TYPE "loop-reduce"
82
Andrew Trick19f80c12012-04-18 04:00:10 +000083/// 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.
87static const unsigned MaxIVUsers = 200;
88
Andrew Trickecbe22b2011-10-11 02:30:45 +000089// 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 Trick06f6c052012-01-07 07:08:17 +000092// This is now needed for ivchains.
Benjamin Kramer7ba71be2011-11-26 23:01:57 +000093static cl::opt<bool> EnablePhiElim(
Andrew Trick06f6c052012-01-07 07:08:17 +000094 "enable-lsr-phielim", cl::Hidden, cl::init(true),
95 cl::desc("Enable LSR phi elimination"));
Andrew Trick58124392011-09-27 00:44:14 +000096
Andrew Trick248d4102012-01-09 21:18:52 +000097#ifndef NDEBUG
98// Stress test IV chain generation.
99static cl::opt<bool> StressIVChain(
100 "stress-ivchain", cl::Hidden, cl::init(false),
101 cl::desc("Stress test LSR IV chains"));
102#else
103static bool StressIVChain = false;
104#endif
105
Dan Gohman45774ce2010-02-12 10:34:29 +0000106namespace {
Nate Begemanb18121e2004-10-18 21:08:22 +0000107
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000108struct 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
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000131/// This class holds data which is used to order reuse candidates.
Dan Gohman45774ce2010-02-12 10:34:29 +0000132class RegSortData {
133public:
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000134 /// This represents the set of LSRUse indices which reference
Dan Gohman45774ce2010-02-12 10:34:29 +0000135 /// a particular register.
136 SmallBitVector UsedByIndices;
137
Dan Gohman45774ce2010-02-12 10:34:29 +0000138 void print(raw_ostream &OS) const;
139 void dump() const;
140};
141
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000142}
Dan Gohman45774ce2010-02-12 10:34:29 +0000143
144void RegSortData::print(raw_ostream &OS) const {
145 OS << "[NumUses=" << UsedByIndices.count() << ']';
146}
147
Davide Italiano945d05f2015-11-23 02:47:30 +0000148LLVM_DUMP_METHOD
Dan Gohman45774ce2010-02-12 10:34:29 +0000149void RegSortData::dump() const {
150 print(errs()); errs() << '\n';
151}
Dan Gohman2a12ae72009-02-20 04:17:46 +0000152
Chris Lattner79a42ac2006-12-19 21:40:18 +0000153namespace {
Dale Johannesene3a02be2007-03-20 00:47:50 +0000154
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000155/// Map register candidates to information about how they are used.
Dan Gohman45774ce2010-02-12 10:34:29 +0000156class RegUseTracker {
157 typedef DenseMap<const SCEV *, RegSortData> RegUsesTy;
Dale Johannesene3a02be2007-03-20 00:47:50 +0000158
Dan Gohman248c41d2010-05-18 22:33:00 +0000159 RegUsesTy RegUsesMap;
Dan Gohman45774ce2010-02-12 10:34:29 +0000160 SmallVector<const SCEV *, 16> RegSequence;
Evan Cheng3df447d2006-03-16 21:53:05 +0000161
Dan Gohman45774ce2010-02-12 10:34:29 +0000162public:
Sanjoy Das302bfd02015-08-16 18:22:43 +0000163 void countRegister(const SCEV *Reg, size_t LUIdx);
164 void dropRegister(const SCEV *Reg, size_t LUIdx);
165 void swapAndDropUse(size_t LUIdx, size_t LastLUIdx);
Dan Gohman51ad99d2010-01-21 02:09:26 +0000166
Dan Gohman45774ce2010-02-12 10:34:29 +0000167 bool isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const;
Dan Gohman51ad99d2010-01-21 02:09:26 +0000168
Dan Gohman45774ce2010-02-12 10:34:29 +0000169 const SmallBitVector &getUsedByIndices(const SCEV *Reg) const;
Dan Gohman51ad99d2010-01-21 02:09:26 +0000170
Dan Gohman45774ce2010-02-12 10:34:29 +0000171 void clear();
Dan Gohman51ad99d2010-01-21 02:09:26 +0000172
Dan Gohman45774ce2010-02-12 10:34:29 +0000173 typedef SmallVectorImpl<const SCEV *>::iterator iterator;
174 typedef SmallVectorImpl<const SCEV *>::const_iterator const_iterator;
175 iterator begin() { return RegSequence.begin(); }
176 iterator end() { return RegSequence.end(); }
177 const_iterator begin() const { return RegSequence.begin(); }
178 const_iterator end() const { return RegSequence.end(); }
179};
Dan Gohman51ad99d2010-01-21 02:09:26 +0000180
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000181}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000182
Dan Gohman45774ce2010-02-12 10:34:29 +0000183void
Sanjoy Das302bfd02015-08-16 18:22:43 +0000184RegUseTracker::countRegister(const SCEV *Reg, size_t LUIdx) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000185 std::pair<RegUsesTy::iterator, bool> Pair =
Dan Gohman248c41d2010-05-18 22:33:00 +0000186 RegUsesMap.insert(std::make_pair(Reg, RegSortData()));
Dan Gohman45774ce2010-02-12 10:34:29 +0000187 RegSortData &RSD = Pair.first->second;
188 if (Pair.second)
189 RegSequence.push_back(Reg);
190 RSD.UsedByIndices.resize(std::max(RSD.UsedByIndices.size(), LUIdx + 1));
191 RSD.UsedByIndices.set(LUIdx);
Dan Gohman51ad99d2010-01-21 02:09:26 +0000192}
193
Dan Gohman4cf99b52010-05-18 23:42:37 +0000194void
Sanjoy Das302bfd02015-08-16 18:22:43 +0000195RegUseTracker::dropRegister(const SCEV *Reg, size_t LUIdx) {
Dan Gohman4cf99b52010-05-18 23:42:37 +0000196 RegUsesTy::iterator It = RegUsesMap.find(Reg);
197 assert(It != RegUsesMap.end());
198 RegSortData &RSD = It->second;
199 assert(RSD.UsedByIndices.size() > LUIdx);
200 RSD.UsedByIndices.reset(LUIdx);
201}
202
Dan Gohman20fab452010-05-19 23:43:12 +0000203void
Sanjoy Das302bfd02015-08-16 18:22:43 +0000204RegUseTracker::swapAndDropUse(size_t LUIdx, size_t LastLUIdx) {
Dan Gohmana7b68d62010-10-07 23:33:43 +0000205 assert(LUIdx <= LastLUIdx);
206
207 // Update RegUses. The data structure is not optimized for this purpose;
208 // we must iterate through it and update each of the bit vectors.
Craig Topper10949ae2015-05-23 08:45:10 +0000209 for (auto &Pair : RegUsesMap) {
210 SmallBitVector &UsedByIndices = Pair.second.UsedByIndices;
Dan Gohmana7b68d62010-10-07 23:33:43 +0000211 if (LUIdx < UsedByIndices.size())
212 UsedByIndices[LUIdx] =
213 LastLUIdx < UsedByIndices.size() ? UsedByIndices[LastLUIdx] : 0;
214 UsedByIndices.resize(std::min(UsedByIndices.size(), LastLUIdx));
215 }
Dan Gohman20fab452010-05-19 23:43:12 +0000216}
217
Dan Gohman45774ce2010-02-12 10:34:29 +0000218bool
219RegUseTracker::isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const {
Dan Gohman4f13bbf2010-08-29 15:18:49 +0000220 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
221 if (I == RegUsesMap.end())
222 return false;
223 const SmallBitVector &UsedByIndices = I->second.UsedByIndices;
Dan Gohman45774ce2010-02-12 10:34:29 +0000224 int i = UsedByIndices.find_first();
225 if (i == -1) return false;
226 if ((size_t)i != LUIdx) return true;
227 return UsedByIndices.find_next(i) != -1;
228}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000229
Dan Gohman45774ce2010-02-12 10:34:29 +0000230const SmallBitVector &RegUseTracker::getUsedByIndices(const SCEV *Reg) const {
Dan Gohman248c41d2010-05-18 22:33:00 +0000231 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
232 assert(I != RegUsesMap.end() && "Unknown register!");
Dan Gohman45774ce2010-02-12 10:34:29 +0000233 return I->second.UsedByIndices;
234}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000235
Dan Gohman45774ce2010-02-12 10:34:29 +0000236void RegUseTracker::clear() {
Dan Gohman248c41d2010-05-18 22:33:00 +0000237 RegUsesMap.clear();
Dan Gohman45774ce2010-02-12 10:34:29 +0000238 RegSequence.clear();
239}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000240
Dan Gohman45774ce2010-02-12 10:34:29 +0000241namespace {
242
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000243/// This class holds information that describes a formula for computing
244/// satisfying a use. It may include broken-out immediates and scaled registers.
Dan Gohman45774ce2010-02-12 10:34:29 +0000245struct Formula {
Chandler Carruth6e479322013-01-07 15:04:40 +0000246 /// Global base address used for complex addressing.
247 GlobalValue *BaseGV;
248
249 /// Base offset for complex addressing.
250 int64_t BaseOffset;
251
252 /// Whether any complex addressing has a base register.
253 bool HasBaseReg;
254
255 /// The scale of any complex addressing.
256 int64_t Scale;
Dan Gohman45774ce2010-02-12 10:34:29 +0000257
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000258 /// The list of "base" registers for this use. When this is non-empty. The
259 /// canonical representation of a formula is
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000260 /// 1. BaseRegs.size > 1 implies ScaledReg != NULL and
261 /// 2. ScaledReg != NULL implies Scale != 1 || !BaseRegs.empty().
262 /// #1 enforces that the scaled register is always used when at least two
263 /// registers are needed by the formula: e.g., reg1 + reg2 is reg1 + 1 * reg2.
264 /// #2 enforces that 1 * reg is reg.
265 /// This invariant can be temporarly broken while building a formula.
266 /// However, every formula inserted into the LSRInstance must be in canonical
267 /// form.
Preston Gurd25c3b6a2013-02-01 20:41:27 +0000268 SmallVector<const SCEV *, 4> BaseRegs;
Dan Gohman45774ce2010-02-12 10:34:29 +0000269
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000270 /// The 'scaled' register for this use. This should be non-null when Scale is
271 /// not zero.
Dan Gohman45774ce2010-02-12 10:34:29 +0000272 const SCEV *ScaledReg;
273
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000274 /// An additional constant offset which added near the use. This requires a
275 /// temporary register, but the offset itself can live in an add immediate
276 /// field rather than a register.
Dan Gohman6136e942011-05-03 00:46:49 +0000277 int64_t UnfoldedOffset;
278
Chandler Carruth6e479322013-01-07 15:04:40 +0000279 Formula()
Craig Topperf40110f2014-04-25 05:29:35 +0000280 : BaseGV(nullptr), BaseOffset(0), HasBaseReg(false), Scale(0),
Sanjoy Das215df9e2015-08-04 01:52:05 +0000281 ScaledReg(nullptr), UnfoldedOffset(0) {}
Dan Gohman45774ce2010-02-12 10:34:29 +0000282
Sanjoy Das302bfd02015-08-16 18:22:43 +0000283 void initialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000284
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000285 bool isCanonical() const;
286
Sanjoy Das302bfd02015-08-16 18:22:43 +0000287 void canonicalize();
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000288
Sanjoy Das302bfd02015-08-16 18:22:43 +0000289 bool unscale();
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000290
Adam Nemetdeab6f92014-04-29 18:25:28 +0000291 size_t getNumRegs() const;
Chris Lattner229907c2011-07-18 04:54:35 +0000292 Type *getType() const;
Dan Gohman45774ce2010-02-12 10:34:29 +0000293
Sanjoy Das302bfd02015-08-16 18:22:43 +0000294 void deleteBaseReg(const SCEV *&S);
Dan Gohman80a96082010-05-20 15:17:54 +0000295
Dan Gohman45774ce2010-02-12 10:34:29 +0000296 bool referencesReg(const SCEV *S) const;
297 bool hasRegsUsedByUsesOtherThan(size_t LUIdx,
298 const RegUseTracker &RegUses) const;
299
300 void print(raw_ostream &OS) const;
301 void dump() const;
302};
303
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000304}
Dan Gohman45774ce2010-02-12 10:34:29 +0000305
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000306/// Recursion helper for initialMatch.
Dan Gohman45774ce2010-02-12 10:34:29 +0000307static void DoInitialMatch(const SCEV *S, Loop *L,
308 SmallVectorImpl<const SCEV *> &Good,
309 SmallVectorImpl<const SCEV *> &Bad,
Dan Gohman20d9ce22010-11-17 21:41:58 +0000310 ScalarEvolution &SE) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000311 // Collect expressions which properly dominate the loop header.
Dan Gohman20d9ce22010-11-17 21:41:58 +0000312 if (SE.properlyDominates(S, L->getHeader())) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000313 Good.push_back(S);
314 return;
Dan Gohman51ad99d2010-01-21 02:09:26 +0000315 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000316
317 // Look at add operands.
318 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Craig Topper77b99412015-05-23 08:01:41 +0000319 for (const SCEV *S : Add->operands())
320 DoInitialMatch(S, L, Good, Bad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000321 return;
322 }
323
324 // Look at addrec operands.
325 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S))
326 if (!AR->getStart()->isZero()) {
Dan Gohman20d9ce22010-11-17 21:41:58 +0000327 DoInitialMatch(AR->getStart(), L, Good, Bad, SE);
Dan Gohman1d2ded72010-05-03 22:09:21 +0000328 DoInitialMatch(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
Dan Gohman45774ce2010-02-12 10:34:29 +0000329 AR->getStepRecurrence(SE),
Andrew Trick8b55b732011-03-14 16:50:06 +0000330 // FIXME: AR->getNoWrapFlags()
331 AR->getLoop(), SCEV::FlagAnyWrap),
Dan Gohman20d9ce22010-11-17 21:41:58 +0000332 L, Good, Bad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000333 return;
334 }
335
336 // Handle a multiplication by -1 (negation) if it didn't fold.
337 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S))
338 if (Mul->getOperand(0)->isAllOnesValue()) {
339 SmallVector<const SCEV *, 4> Ops(Mul->op_begin()+1, Mul->op_end());
340 const SCEV *NewMul = SE.getMulExpr(Ops);
341
342 SmallVector<const SCEV *, 4> MyGood;
343 SmallVector<const SCEV *, 4> MyBad;
Dan Gohman20d9ce22010-11-17 21:41:58 +0000344 DoInitialMatch(NewMul, L, MyGood, MyBad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000345 const SCEV *NegOne = SE.getSCEV(ConstantInt::getAllOnesValue(
346 SE.getEffectiveSCEVType(NewMul->getType())));
Craig Topper042a3922015-05-25 20:01:18 +0000347 for (const SCEV *S : MyGood)
348 Good.push_back(SE.getMulExpr(NegOne, S));
349 for (const SCEV *S : MyBad)
350 Bad.push_back(SE.getMulExpr(NegOne, S));
Dan Gohman45774ce2010-02-12 10:34:29 +0000351 return;
352 }
353
354 // Ok, we can't do anything interesting. Just stuff the whole thing into a
355 // register and hope for the best.
356 Bad.push_back(S);
357}
358
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000359/// Incorporate loop-variant parts of S into this Formula, attempting to keep
360/// all loop-invariant and loop-computable values in a single base register.
Sanjoy Das302bfd02015-08-16 18:22:43 +0000361void Formula::initialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000362 SmallVector<const SCEV *, 4> Good;
363 SmallVector<const SCEV *, 4> Bad;
Dan Gohman20d9ce22010-11-17 21:41:58 +0000364 DoInitialMatch(S, L, Good, Bad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000365 if (!Good.empty()) {
Dan Gohman9b5d0bb72010-04-08 23:36:27 +0000366 const SCEV *Sum = SE.getAddExpr(Good);
367 if (!Sum->isZero())
368 BaseRegs.push_back(Sum);
Chandler Carruth6e479322013-01-07 15:04:40 +0000369 HasBaseReg = true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000370 }
371 if (!Bad.empty()) {
Dan Gohman9b5d0bb72010-04-08 23:36:27 +0000372 const SCEV *Sum = SE.getAddExpr(Bad);
373 if (!Sum->isZero())
374 BaseRegs.push_back(Sum);
Chandler Carruth6e479322013-01-07 15:04:40 +0000375 HasBaseReg = true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000376 }
Sanjoy Das302bfd02015-08-16 18:22:43 +0000377 canonicalize();
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000378}
379
380/// \brief Check whether or not this formula statisfies the canonical
381/// representation.
382/// \see Formula::BaseRegs.
383bool Formula::isCanonical() const {
384 if (ScaledReg)
385 return Scale != 1 || !BaseRegs.empty();
386 return BaseRegs.size() <= 1;
387}
388
389/// \brief Helper method to morph a formula into its canonical representation.
390/// \see Formula::BaseRegs.
391/// Every formula having more than one base register, must use the ScaledReg
392/// field. Otherwise, we would have to do special cases everywhere in LSR
393/// to treat reg1 + reg2 + ... the same way as reg1 + 1*reg2 + ...
394/// On the other hand, 1*reg should be canonicalized into reg.
Sanjoy Das302bfd02015-08-16 18:22:43 +0000395void Formula::canonicalize() {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000396 if (isCanonical())
397 return;
398 // So far we did not need this case. This is easy to implement but it is
399 // useless to maintain dead code. Beside it could hurt compile time.
400 assert(!BaseRegs.empty() && "1*reg => reg, should not be needed.");
401 // Keep the invariant sum in BaseRegs and one of the variant sum in ScaledReg.
402 ScaledReg = BaseRegs.back();
403 BaseRegs.pop_back();
404 Scale = 1;
405 size_t BaseRegsSize = BaseRegs.size();
406 size_t Try = 0;
407 // If ScaledReg is an invariant, try to find a variant expression.
408 while (Try < BaseRegsSize && !isa<SCEVAddRecExpr>(ScaledReg))
409 std::swap(ScaledReg, BaseRegs[Try++]);
410}
411
412/// \brief Get rid of the scale in the formula.
413/// In other words, this method morphes reg1 + 1*reg2 into reg1 + reg2.
414/// \return true if it was possible to get rid of the scale, false otherwise.
415/// \note After this operation the formula may not be in the canonical form.
Sanjoy Das302bfd02015-08-16 18:22:43 +0000416bool Formula::unscale() {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000417 if (Scale != 1)
418 return false;
419 Scale = 0;
420 BaseRegs.push_back(ScaledReg);
421 ScaledReg = nullptr;
422 return true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000423}
424
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000425/// Return the total number of register operands used by this formula. This does
426/// not include register uses implied by non-constant addrec strides.
Adam Nemetdeab6f92014-04-29 18:25:28 +0000427size_t Formula::getNumRegs() const {
Dan Gohman45774ce2010-02-12 10:34:29 +0000428 return !!ScaledReg + BaseRegs.size();
429}
430
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000431/// Return the type of this formula, if it has one, or null otherwise. This type
432/// is meaningless except for the bit size.
Chris Lattner229907c2011-07-18 04:54:35 +0000433Type *Formula::getType() const {
Sanjoy Das215df9e2015-08-04 01:52:05 +0000434 return !BaseRegs.empty() ? BaseRegs.front()->getType() :
435 ScaledReg ? ScaledReg->getType() :
436 BaseGV ? BaseGV->getType() :
437 nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000438}
439
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000440/// Delete the given base reg from the BaseRegs list.
Sanjoy Das302bfd02015-08-16 18:22:43 +0000441void Formula::deleteBaseReg(const SCEV *&S) {
Dan Gohman80a96082010-05-20 15:17:54 +0000442 if (&S != &BaseRegs.back())
443 std::swap(S, BaseRegs.back());
444 BaseRegs.pop_back();
445}
446
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000447/// Test if this formula references the given register.
Dan Gohman45774ce2010-02-12 10:34:29 +0000448bool Formula::referencesReg(const SCEV *S) const {
449 return S == ScaledReg ||
450 std::find(BaseRegs.begin(), BaseRegs.end(), S) != BaseRegs.end();
451}
452
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000453/// Test whether this formula uses registers which are used by uses other than
454/// the use with the given index.
Dan Gohman45774ce2010-02-12 10:34:29 +0000455bool Formula::hasRegsUsedByUsesOtherThan(size_t LUIdx,
456 const RegUseTracker &RegUses) const {
457 if (ScaledReg)
458 if (RegUses.isRegUsedByUsesOtherThan(ScaledReg, LUIdx))
459 return true;
Craig Topper042a3922015-05-25 20:01:18 +0000460 for (const SCEV *BaseReg : BaseRegs)
461 if (RegUses.isRegUsedByUsesOtherThan(BaseReg, LUIdx))
Dan Gohman45774ce2010-02-12 10:34:29 +0000462 return true;
463 return false;
464}
465
466void Formula::print(raw_ostream &OS) const {
467 bool First = true;
Chandler Carruth6e479322013-01-07 15:04:40 +0000468 if (BaseGV) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000469 if (!First) OS << " + "; else First = false;
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000470 BaseGV->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +0000471 }
Chandler Carruth6e479322013-01-07 15:04:40 +0000472 if (BaseOffset != 0) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000473 if (!First) OS << " + "; else First = false;
Chandler Carruth6e479322013-01-07 15:04:40 +0000474 OS << BaseOffset;
Dan Gohman45774ce2010-02-12 10:34:29 +0000475 }
Craig Topper042a3922015-05-25 20:01:18 +0000476 for (const SCEV *BaseReg : BaseRegs) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000477 if (!First) OS << " + "; else First = false;
Sanjoy Das215df9e2015-08-04 01:52:05 +0000478 OS << "reg(" << *BaseReg << ')';
Dan Gohman45774ce2010-02-12 10:34:29 +0000479 }
Chandler Carruth6e479322013-01-07 15:04:40 +0000480 if (HasBaseReg && BaseRegs.empty()) {
Dan Gohman06ab08f2010-05-18 22:35:55 +0000481 if (!First) OS << " + "; else First = false;
482 OS << "**error: HasBaseReg**";
Chandler Carruth6e479322013-01-07 15:04:40 +0000483 } else if (!HasBaseReg && !BaseRegs.empty()) {
Dan Gohman06ab08f2010-05-18 22:35:55 +0000484 if (!First) OS << " + "; else First = false;
485 OS << "**error: !HasBaseReg**";
486 }
Chandler Carruth6e479322013-01-07 15:04:40 +0000487 if (Scale != 0) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000488 if (!First) OS << " + "; else First = false;
Chandler Carruth6e479322013-01-07 15:04:40 +0000489 OS << Scale << "*reg(";
Sanjoy Das215df9e2015-08-04 01:52:05 +0000490 if (ScaledReg)
491 OS << *ScaledReg;
492 else
Dan Gohman45774ce2010-02-12 10:34:29 +0000493 OS << "<unknown>";
494 OS << ')';
495 }
Dan Gohman6136e942011-05-03 00:46:49 +0000496 if (UnfoldedOffset != 0) {
Arnaud A. de Grandmaison75c9e6d2014-03-15 22:13:15 +0000497 if (!First) OS << " + ";
Dan Gohman6136e942011-05-03 00:46:49 +0000498 OS << "imm(" << UnfoldedOffset << ')';
499 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000500}
501
Davide Italiano945d05f2015-11-23 02:47:30 +0000502LLVM_DUMP_METHOD
Dan Gohman45774ce2010-02-12 10:34:29 +0000503void Formula::dump() const {
504 print(errs()); errs() << '\n';
505}
506
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000507/// Return true if the given addrec can be sign-extended without changing its
508/// value.
Dan Gohman85af2562010-02-19 19:32:49 +0000509static bool isAddRecSExtable(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
Chris Lattner229907c2011-07-18 04:54:35 +0000510 Type *WideTy =
Dan Gohmanab5fb7f2010-05-20 19:44:23 +0000511 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(AR->getType()) + 1);
Dan Gohman85af2562010-02-19 19:32:49 +0000512 return isa<SCEVAddRecExpr>(SE.getSignExtendExpr(AR, WideTy));
513}
514
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000515/// Return true if the given add can be sign-extended without changing its
516/// value.
Dan Gohman85af2562010-02-19 19:32:49 +0000517static bool isAddSExtable(const SCEVAddExpr *A, ScalarEvolution &SE) {
Chris Lattner229907c2011-07-18 04:54:35 +0000518 Type *WideTy =
Dan Gohmanab5fb7f2010-05-20 19:44:23 +0000519 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(A->getType()) + 1);
Dan Gohman85af2562010-02-19 19:32:49 +0000520 return isa<SCEVAddExpr>(SE.getSignExtendExpr(A, WideTy));
521}
522
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000523/// Return true if the given mul can be sign-extended without changing its
524/// value.
Dan Gohmanab542222010-06-24 16:45:11 +0000525static bool isMulSExtable(const SCEVMulExpr *M, ScalarEvolution &SE) {
Chris Lattner229907c2011-07-18 04:54:35 +0000526 Type *WideTy =
Dan Gohmanab542222010-06-24 16:45:11 +0000527 IntegerType::get(SE.getContext(),
528 SE.getTypeSizeInBits(M->getType()) * M->getNumOperands());
529 return isa<SCEVMulExpr>(SE.getSignExtendExpr(M, WideTy));
Dan Gohman85af2562010-02-19 19:32:49 +0000530}
531
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000532/// Return an expression for LHS /s RHS, if it can be determined and if the
533/// remainder is known to be zero, or null otherwise. If IgnoreSignificantBits
534/// is true, expressions like (X * Y) /s Y are simplified to Y, ignoring that
535/// the multiplication may overflow, which is useful when the result will be
536/// used in a context where the most significant bits are ignored.
Dan Gohman4eebb942010-02-19 19:35:48 +0000537static const SCEV *getExactSDiv(const SCEV *LHS, const SCEV *RHS,
538 ScalarEvolution &SE,
539 bool IgnoreSignificantBits = false) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000540 // Handle the trivial case, which works for any SCEV type.
541 if (LHS == RHS)
Dan Gohman1d2ded72010-05-03 22:09:21 +0000542 return SE.getConstant(LHS->getType(), 1);
Dan Gohman45774ce2010-02-12 10:34:29 +0000543
Dan Gohman47ddf762010-06-24 16:51:25 +0000544 // Handle a few RHS special cases.
545 const SCEVConstant *RC = dyn_cast<SCEVConstant>(RHS);
546 if (RC) {
Sanjoy Das0de2fec2015-12-17 20:28:46 +0000547 const APInt &RA = RC->getAPInt();
Dan Gohman47ddf762010-06-24 16:51:25 +0000548 // Handle x /s -1 as x * -1, to give ScalarEvolution a chance to do
549 // some folding.
550 if (RA.isAllOnesValue())
551 return SE.getMulExpr(LHS, RC);
552 // Handle x /s 1 as x.
553 if (RA == 1)
554 return LHS;
555 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000556
557 // Check for a division of a constant by a constant.
558 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(LHS)) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000559 if (!RC)
Craig Topperf40110f2014-04-25 05:29:35 +0000560 return nullptr;
Sanjoy Das0de2fec2015-12-17 20:28:46 +0000561 const APInt &LA = C->getAPInt();
562 const APInt &RA = RC->getAPInt();
Dan Gohman47ddf762010-06-24 16:51:25 +0000563 if (LA.srem(RA) != 0)
Craig Topperf40110f2014-04-25 05:29:35 +0000564 return nullptr;
Dan Gohman47ddf762010-06-24 16:51:25 +0000565 return SE.getConstant(LA.sdiv(RA));
Dan Gohman45774ce2010-02-12 10:34:29 +0000566 }
567
Dan Gohman85af2562010-02-19 19:32:49 +0000568 // Distribute the sdiv over addrec operands, if the addrec doesn't overflow.
Dan Gohman45774ce2010-02-12 10:34:29 +0000569 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS)) {
Dan Gohman85af2562010-02-19 19:32:49 +0000570 if (IgnoreSignificantBits || isAddRecSExtable(AR, SE)) {
Dan Gohman4eebb942010-02-19 19:35:48 +0000571 const SCEV *Step = getExactSDiv(AR->getStepRecurrence(SE), RHS, SE,
572 IgnoreSignificantBits);
Craig Topperf40110f2014-04-25 05:29:35 +0000573 if (!Step) return nullptr;
Dan Gohman129a8162010-08-19 01:02:31 +0000574 const SCEV *Start = getExactSDiv(AR->getStart(), RHS, SE,
575 IgnoreSignificantBits);
Craig Topperf40110f2014-04-25 05:29:35 +0000576 if (!Start) return nullptr;
Andrew Trick8b55b732011-03-14 16:50:06 +0000577 // FlagNW is independent of the start value, step direction, and is
578 // preserved with smaller magnitude steps.
579 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
580 return SE.getAddRecExpr(Start, Step, AR->getLoop(), SCEV::FlagAnyWrap);
Dan Gohman85af2562010-02-19 19:32:49 +0000581 }
Craig Topperf40110f2014-04-25 05:29:35 +0000582 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000583 }
584
Dan Gohman85af2562010-02-19 19:32:49 +0000585 // Distribute the sdiv over add operands, if the add doesn't overflow.
Dan Gohman45774ce2010-02-12 10:34:29 +0000586 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) {
Dan Gohman85af2562010-02-19 19:32:49 +0000587 if (IgnoreSignificantBits || isAddSExtable(Add, SE)) {
588 SmallVector<const SCEV *, 8> Ops;
Craig Topper042a3922015-05-25 20:01:18 +0000589 for (const SCEV *S : Add->operands()) {
590 const SCEV *Op = getExactSDiv(S, RHS, SE, IgnoreSignificantBits);
Craig Topperf40110f2014-04-25 05:29:35 +0000591 if (!Op) return nullptr;
Dan Gohman85af2562010-02-19 19:32:49 +0000592 Ops.push_back(Op);
593 }
594 return SE.getAddExpr(Ops);
Dan Gohman45774ce2010-02-12 10:34:29 +0000595 }
Craig Topperf40110f2014-04-25 05:29:35 +0000596 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000597 }
598
599 // Check for a multiply operand that we can pull RHS out of.
Dan Gohman963b1c12010-06-24 16:57:52 +0000600 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(LHS)) {
Dan Gohman85af2562010-02-19 19:32:49 +0000601 if (IgnoreSignificantBits || isMulSExtable(Mul, SE)) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000602 SmallVector<const SCEV *, 4> Ops;
603 bool Found = false;
Craig Topper042a3922015-05-25 20:01:18 +0000604 for (const SCEV *S : Mul->operands()) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000605 if (!Found)
Dan Gohman6b733fc2010-05-20 16:23:28 +0000606 if (const SCEV *Q = getExactSDiv(S, RHS, SE,
Dan Gohman4eebb942010-02-19 19:35:48 +0000607 IgnoreSignificantBits)) {
Dan Gohman6b733fc2010-05-20 16:23:28 +0000608 S = Q;
Dan Gohman45774ce2010-02-12 10:34:29 +0000609 Found = true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000610 }
Dan Gohman6b733fc2010-05-20 16:23:28 +0000611 Ops.push_back(S);
Dan Gohman45774ce2010-02-12 10:34:29 +0000612 }
Craig Topperf40110f2014-04-25 05:29:35 +0000613 return Found ? SE.getMulExpr(Ops) : nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000614 }
Craig Topperf40110f2014-04-25 05:29:35 +0000615 return nullptr;
Dan Gohman963b1c12010-06-24 16:57:52 +0000616 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000617
618 // Otherwise we don't know.
Craig Topperf40110f2014-04-25 05:29:35 +0000619 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000620}
621
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000622/// If S involves the addition of a constant integer value, return that integer
623/// value, and mutate S to point to a new SCEV with that value excluded.
Dan Gohman45774ce2010-02-12 10:34:29 +0000624static int64_t ExtractImmediate(const SCEV *&S, ScalarEvolution &SE) {
625 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) {
Sanjoy Das0de2fec2015-12-17 20:28:46 +0000626 if (C->getAPInt().getMinSignedBits() <= 64) {
Dan Gohman1d2ded72010-05-03 22:09:21 +0000627 S = SE.getConstant(C->getType(), 0);
Dan Gohman45774ce2010-02-12 10:34:29 +0000628 return C->getValue()->getSExtValue();
629 }
630 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
631 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
632 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000633 if (Result != 0)
634 S = SE.getAddExpr(NewOps);
Dan Gohman45774ce2010-02-12 10:34:29 +0000635 return Result;
636 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
637 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
638 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000639 if (Result != 0)
Andrew Trick8b55b732011-03-14 16:50:06 +0000640 S = SE.getAddRecExpr(NewOps, AR->getLoop(),
641 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
642 SCEV::FlagAnyWrap);
Dan Gohman45774ce2010-02-12 10:34:29 +0000643 return Result;
644 }
645 return 0;
646}
647
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000648/// If S involves the addition of a GlobalValue address, return that symbol, and
649/// mutate S to point to a new SCEV with that value excluded.
Dan Gohman45774ce2010-02-12 10:34:29 +0000650static GlobalValue *ExtractSymbol(const SCEV *&S, ScalarEvolution &SE) {
651 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
652 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue())) {
Dan Gohman1d2ded72010-05-03 22:09:21 +0000653 S = SE.getConstant(GV->getType(), 0);
Dan Gohman45774ce2010-02-12 10:34:29 +0000654 return GV;
655 }
656 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
657 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
658 GlobalValue *Result = ExtractSymbol(NewOps.back(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000659 if (Result)
660 S = SE.getAddExpr(NewOps);
Dan Gohman45774ce2010-02-12 10:34:29 +0000661 return Result;
662 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
663 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
664 GlobalValue *Result = ExtractSymbol(NewOps.front(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000665 if (Result)
Andrew Trick8b55b732011-03-14 16:50:06 +0000666 S = SE.getAddRecExpr(NewOps, AR->getLoop(),
667 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
668 SCEV::FlagAnyWrap);
Dan Gohman45774ce2010-02-12 10:34:29 +0000669 return Result;
670 }
Craig Topperf40110f2014-04-25 05:29:35 +0000671 return nullptr;
Nate Begemanb18121e2004-10-18 21:08:22 +0000672}
673
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000674/// Returns true if the specified instruction is using the specified value as an
675/// address.
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000676static bool isAddressUse(Instruction *Inst, Value *OperandVal) {
677 bool isAddress = isa<LoadInst>(Inst);
678 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
679 if (SI->getOperand(1) == OperandVal)
680 isAddress = true;
681 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
682 // Addressing modes can also be folded into prefetches and a variety
683 // of intrinsics.
684 switch (II->getIntrinsicID()) {
685 default: break;
686 case Intrinsic::prefetch:
Gabor Greif8ae30952010-06-30 09:15:28 +0000687 if (II->getArgOperand(0) == OperandVal)
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000688 isAddress = true;
689 break;
690 }
691 }
692 return isAddress;
693}
Chris Lattnere4ed42a2005-10-03 01:04:44 +0000694
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000695/// Return the type of the memory being accessed.
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000696static MemAccessTy getAccessType(const Instruction *Inst) {
697 MemAccessTy AccessTy(Inst->getType(), MemAccessTy::UnknownAddressSpace);
698 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
699 AccessTy.MemTy = SI->getOperand(0)->getType();
700 AccessTy.AddrSpace = SI->getPointerAddressSpace();
701 } else if (const LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
702 AccessTy.AddrSpace = LI->getPointerAddressSpace();
Dan Gohman917ffe42009-03-09 21:01:17 +0000703 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000704
705 // All pointers have the same requirements, so canonicalize them to an
706 // arbitrary pointer type to minimize variation.
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000707 if (PointerType *PTy = dyn_cast<PointerType>(AccessTy.MemTy))
708 AccessTy.MemTy = PointerType::get(IntegerType::get(PTy->getContext(), 1),
709 PTy->getAddressSpace());
Dan Gohman45774ce2010-02-12 10:34:29 +0000710
Dan Gohman14d13392009-05-18 16:45:28 +0000711 return AccessTy;
Dan Gohman917ffe42009-03-09 21:01:17 +0000712}
713
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000714/// Return true if this AddRec is already a phi in its loop.
Andrew Trick5df90962011-12-06 03:13:31 +0000715static bool isExistingPhi(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
716 for (BasicBlock::iterator I = AR->getLoop()->getHeader()->begin();
717 PHINode *PN = dyn_cast<PHINode>(I); ++I) {
718 if (SE.isSCEVable(PN->getType()) &&
719 (SE.getEffectiveSCEVType(PN->getType()) ==
720 SE.getEffectiveSCEVType(AR->getType())) &&
721 SE.getSCEV(PN) == AR)
722 return true;
723 }
724 return false;
725}
726
Andrew Trickd5d2db92012-01-10 01:45:08 +0000727/// Check if expanding this expression is likely to incur significant cost. This
728/// is tricky because SCEV doesn't track which expressions are actually computed
729/// by the current IR.
730///
731/// We currently allow expansion of IV increments that involve adds,
732/// multiplication by constants, and AddRecs from existing phis.
733///
734/// TODO: Allow UDivExpr if we can find an existing IV increment that is an
735/// obvious multiple of the UDivExpr.
736static bool isHighCostExpansion(const SCEV *S,
Craig Topper71b7b682014-08-21 05:55:13 +0000737 SmallPtrSetImpl<const SCEV*> &Processed,
Andrew Trickd5d2db92012-01-10 01:45:08 +0000738 ScalarEvolution &SE) {
739 // Zero/One operand expressions
740 switch (S->getSCEVType()) {
741 case scUnknown:
742 case scConstant:
743 return false;
744 case scTruncate:
745 return isHighCostExpansion(cast<SCEVTruncateExpr>(S)->getOperand(),
746 Processed, SE);
747 case scZeroExtend:
748 return isHighCostExpansion(cast<SCEVZeroExtendExpr>(S)->getOperand(),
749 Processed, SE);
750 case scSignExtend:
751 return isHighCostExpansion(cast<SCEVSignExtendExpr>(S)->getOperand(),
752 Processed, SE);
753 }
754
David Blaikie70573dc2014-11-19 07:49:26 +0000755 if (!Processed.insert(S).second)
Andrew Trickd5d2db92012-01-10 01:45:08 +0000756 return false;
757
758 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Craig Topper042a3922015-05-25 20:01:18 +0000759 for (const SCEV *S : Add->operands()) {
760 if (isHighCostExpansion(S, Processed, SE))
Andrew Trickd5d2db92012-01-10 01:45:08 +0000761 return true;
762 }
763 return false;
764 }
765
766 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
767 if (Mul->getNumOperands() == 2) {
768 // Multiplication by a constant is ok
769 if (isa<SCEVConstant>(Mul->getOperand(0)))
770 return isHighCostExpansion(Mul->getOperand(1), Processed, SE);
771
772 // If we have the value of one operand, check if an existing
773 // multiplication already generates this expression.
774 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(Mul->getOperand(1))) {
775 Value *UVal = U->getValue();
Chandler Carruthcdf47882014-03-09 03:16:01 +0000776 for (User *UR : UVal->users()) {
Andrew Trick14779cc2012-03-26 20:28:37 +0000777 // If U is a constant, it may be used by a ConstantExpr.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000778 Instruction *UI = dyn_cast<Instruction>(UR);
779 if (UI && UI->getOpcode() == Instruction::Mul &&
780 SE.isSCEVable(UI->getType())) {
781 return SE.getSCEV(UI) == Mul;
Andrew Trickd5d2db92012-01-10 01:45:08 +0000782 }
783 }
784 }
785 }
786 }
787
788 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
789 if (isExistingPhi(AR, SE))
790 return false;
791 }
792
793 // Fow now, consider any other type of expression (div/mul/min/max) high cost.
794 return true;
795}
796
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000797/// If any of the instructions is the specified set are trivially dead, delete
798/// them and see if this makes any of their operands subsequently dead.
Dan Gohman45774ce2010-02-12 10:34:29 +0000799static bool
800DeleteTriviallyDeadInstructions(SmallVectorImpl<WeakVH> &DeadInsts) {
801 bool Changed = false;
802
803 while (!DeadInsts.empty()) {
Richard Smithad9c8e82012-08-21 20:35:14 +0000804 Value *V = DeadInsts.pop_back_val();
805 Instruction *I = dyn_cast_or_null<Instruction>(V);
Dan Gohman45774ce2010-02-12 10:34:29 +0000806
Craig Topperf40110f2014-04-25 05:29:35 +0000807 if (!I || !isInstructionTriviallyDead(I))
Dan Gohman45774ce2010-02-12 10:34:29 +0000808 continue;
809
Craig Topper042a3922015-05-25 20:01:18 +0000810 for (Use &O : I->operands())
811 if (Instruction *U = dyn_cast<Instruction>(O)) {
812 O = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000813 if (U->use_empty())
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +0000814 DeadInsts.emplace_back(U);
Dan Gohman45774ce2010-02-12 10:34:29 +0000815 }
816
817 I->eraseFromParent();
818 Changed = true;
819 }
820
821 return Changed;
822}
823
Dan Gohman045f8192010-01-22 00:46:49 +0000824namespace {
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000825class LSRUse;
826}
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000827
828/// \brief Check if the addressing mode defined by \p F is completely
829/// folded in \p LU at isel time.
830/// This includes address-mode folding and special icmp tricks.
831/// This function returns true if \p LU can accommodate what \p F
832/// defines and up to 1 base + 1 scaled + offset.
833/// In other words, if \p F has several base registers, this function may
834/// still return true. Therefore, users still need to account for
835/// additional base registers and/or unfolded offsets to derive an
836/// accurate cost model.
837static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
838 const LSRUse &LU, const Formula &F);
Quentin Colombetbf490d42013-05-31 21:29:03 +0000839// Get the cost of the scaling factor used in F for LU.
840static unsigned getScalingFactorCost(const TargetTransformInfo &TTI,
841 const LSRUse &LU, const Formula &F);
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000842
843namespace {
Jim Grosbach60f48542009-11-17 17:53:56 +0000844
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000845/// This class is used to measure and compare candidate formulae.
Dan Gohman45774ce2010-02-12 10:34:29 +0000846class Cost {
847 /// TODO: Some of these could be merged. Also, a lexical ordering
848 /// isn't always optimal.
849 unsigned NumRegs;
850 unsigned AddRecCost;
851 unsigned NumIVMuls;
852 unsigned NumBaseAdds;
853 unsigned ImmCost;
854 unsigned SetupCost;
Quentin Colombetbf490d42013-05-31 21:29:03 +0000855 unsigned ScaleCost;
Nate Begemane68bcd12005-07-30 00:15:07 +0000856
Dan Gohman45774ce2010-02-12 10:34:29 +0000857public:
858 Cost()
859 : NumRegs(0), AddRecCost(0), NumIVMuls(0), NumBaseAdds(0), ImmCost(0),
Quentin Colombetbf490d42013-05-31 21:29:03 +0000860 SetupCost(0), ScaleCost(0) {}
Jim Grosbach60f48542009-11-17 17:53:56 +0000861
Dan Gohman45774ce2010-02-12 10:34:29 +0000862 bool operator<(const Cost &Other) const;
Dan Gohman045f8192010-01-22 00:46:49 +0000863
Tim Northoverbc6659c2014-01-22 13:27:00 +0000864 void Lose();
Dan Gohman045f8192010-01-22 00:46:49 +0000865
Andrew Trick784729d2011-09-26 23:11:04 +0000866#ifndef NDEBUG
867 // Once any of the metrics loses, they must all remain losers.
868 bool isValid() {
869 return ((NumRegs | AddRecCost | NumIVMuls | NumBaseAdds
Quentin Colombetbf490d42013-05-31 21:29:03 +0000870 | ImmCost | SetupCost | ScaleCost) != ~0u)
Andrew Trick784729d2011-09-26 23:11:04 +0000871 || ((NumRegs & AddRecCost & NumIVMuls & NumBaseAdds
Quentin Colombetbf490d42013-05-31 21:29:03 +0000872 & ImmCost & SetupCost & ScaleCost) == ~0u);
Andrew Trick784729d2011-09-26 23:11:04 +0000873 }
874#endif
875
876 bool isLoser() {
877 assert(isValid() && "invalid cost");
878 return NumRegs == ~0u;
879 }
880
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000881 void RateFormula(const TargetTransformInfo &TTI,
882 const Formula &F,
Craig Topper71b7b682014-08-21 05:55:13 +0000883 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman45774ce2010-02-12 10:34:29 +0000884 const DenseSet<const SCEV *> &VisitedRegs,
885 const Loop *L,
886 const SmallVectorImpl<int64_t> &Offsets,
Andrew Trick5df90962011-12-06 03:13:31 +0000887 ScalarEvolution &SE, DominatorTree &DT,
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000888 const LSRUse &LU,
Craig Topper71b7b682014-08-21 05:55:13 +0000889 SmallPtrSetImpl<const SCEV *> *LoserRegs = nullptr);
Dan Gohman045f8192010-01-22 00:46:49 +0000890
Dan Gohman45774ce2010-02-12 10:34:29 +0000891 void print(raw_ostream &OS) const;
892 void dump() const;
Dan Gohman045f8192010-01-22 00:46:49 +0000893
Dan Gohman45774ce2010-02-12 10:34:29 +0000894private:
895 void RateRegister(const SCEV *Reg,
Craig Topper71b7b682014-08-21 05:55:13 +0000896 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman45774ce2010-02-12 10:34:29 +0000897 const Loop *L,
898 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman5b18f032010-02-13 02:06:02 +0000899 void RatePrimaryRegister(const SCEV *Reg,
Craig Topper71b7b682014-08-21 05:55:13 +0000900 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman5b18f032010-02-13 02:06:02 +0000901 const Loop *L,
Andrew Trick5df90962011-12-06 03:13:31 +0000902 ScalarEvolution &SE, DominatorTree &DT,
Craig Topper71b7b682014-08-21 05:55:13 +0000903 SmallPtrSetImpl<const SCEV *> *LoserRegs);
Dan Gohman45774ce2010-02-12 10:34:29 +0000904};
905
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000906}
Dan Gohman45774ce2010-02-12 10:34:29 +0000907
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000908/// Tally up interesting quantities from the given register.
Dan Gohman45774ce2010-02-12 10:34:29 +0000909void Cost::RateRegister(const SCEV *Reg,
Craig Topper71b7b682014-08-21 05:55:13 +0000910 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman45774ce2010-02-12 10:34:29 +0000911 const Loop *L,
912 ScalarEvolution &SE, DominatorTree &DT) {
Dan Gohman5b18f032010-02-13 02:06:02 +0000913 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Reg)) {
Andrew Trickbc6de902011-09-29 01:33:38 +0000914 // If this is an addrec for another loop, don't second-guess its addrec phi
915 // nodes. LSR isn't currently smart enough to reason about more than one
Andrew Trickd97b83e2012-03-22 22:42:45 +0000916 // loop at a time. LSR has already run on inner loops, will not run on outer
917 // loops, and cannot be expected to change sibling loops.
918 if (AR->getLoop() != L) {
919 // If the AddRec exists, consider it's register free and leave it alone.
Andrew Trick5df90962011-12-06 03:13:31 +0000920 if (isExistingPhi(AR, SE))
921 return;
922
Andrew Trickd97b83e2012-03-22 22:42:45 +0000923 // Otherwise, do not consider this formula at all.
Tim Northoverbc6659c2014-01-22 13:27:00 +0000924 Lose();
Andrew Trickd97b83e2012-03-22 22:42:45 +0000925 return;
Dan Gohman45774ce2010-02-12 10:34:29 +0000926 }
Andrew Trickd97b83e2012-03-22 22:42:45 +0000927 AddRecCost += 1; /// TODO: This should be a function of the stride.
Dan Gohman45774ce2010-02-12 10:34:29 +0000928
Dan Gohman5b18f032010-02-13 02:06:02 +0000929 // Add the step value register, if it needs one.
930 // TODO: The non-affine case isn't precisely modeled here.
Andrew Trick8868fae2011-09-26 23:35:25 +0000931 if (!AR->isAffine() || !isa<SCEVConstant>(AR->getOperand(1))) {
932 if (!Regs.count(AR->getOperand(1))) {
Dan Gohman5b18f032010-02-13 02:06:02 +0000933 RateRegister(AR->getOperand(1), Regs, L, SE, DT);
Andrew Trick8868fae2011-09-26 23:35:25 +0000934 if (isLoser())
935 return;
936 }
937 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000938 }
Dan Gohman5b18f032010-02-13 02:06:02 +0000939 ++NumRegs;
940
941 // Rough heuristic; favor registers which don't require extra setup
942 // instructions in the preheader.
943 if (!isa<SCEVUnknown>(Reg) &&
944 !isa<SCEVConstant>(Reg) &&
945 !(isa<SCEVAddRecExpr>(Reg) &&
946 (isa<SCEVUnknown>(cast<SCEVAddRecExpr>(Reg)->getStart()) ||
947 isa<SCEVConstant>(cast<SCEVAddRecExpr>(Reg)->getStart()))))
948 ++SetupCost;
Dan Gohman34f37e02010-10-07 23:41:58 +0000949
950 NumIVMuls += isa<SCEVMulExpr>(Reg) &&
Dan Gohmanafd6db92010-11-17 21:23:15 +0000951 SE.hasComputableLoopEvolution(Reg, L);
Dan Gohman5b18f032010-02-13 02:06:02 +0000952}
953
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000954/// Record this register in the set. If we haven't seen it before, rate
955/// it. Optional LoserRegs provides a way to declare any formula that refers to
956/// one of those regs an instant loser.
Dan Gohman5b18f032010-02-13 02:06:02 +0000957void Cost::RatePrimaryRegister(const SCEV *Reg,
Craig Topper71b7b682014-08-21 05:55:13 +0000958 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman0849ed52010-02-16 19:42:34 +0000959 const Loop *L,
Andrew Trick5df90962011-12-06 03:13:31 +0000960 ScalarEvolution &SE, DominatorTree &DT,
Craig Topper71b7b682014-08-21 05:55:13 +0000961 SmallPtrSetImpl<const SCEV *> *LoserRegs) {
Andrew Trick5df90962011-12-06 03:13:31 +0000962 if (LoserRegs && LoserRegs->count(Reg)) {
Tim Northoverbc6659c2014-01-22 13:27:00 +0000963 Lose();
Andrew Trick5df90962011-12-06 03:13:31 +0000964 return;
965 }
David Blaikie70573dc2014-11-19 07:49:26 +0000966 if (Regs.insert(Reg).second) {
Dan Gohman5b18f032010-02-13 02:06:02 +0000967 RateRegister(Reg, Regs, L, SE, DT);
Andrew Tricka1c01ba2013-03-19 04:14:57 +0000968 if (LoserRegs && isLoser())
Andrew Trick5df90962011-12-06 03:13:31 +0000969 LoserRegs->insert(Reg);
970 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000971}
972
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000973void Cost::RateFormula(const TargetTransformInfo &TTI,
974 const Formula &F,
Craig Topper71b7b682014-08-21 05:55:13 +0000975 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman45774ce2010-02-12 10:34:29 +0000976 const DenseSet<const SCEV *> &VisitedRegs,
977 const Loop *L,
978 const SmallVectorImpl<int64_t> &Offsets,
Andrew Trick5df90962011-12-06 03:13:31 +0000979 ScalarEvolution &SE, DominatorTree &DT,
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000980 const LSRUse &LU,
Craig Topper71b7b682014-08-21 05:55:13 +0000981 SmallPtrSetImpl<const SCEV *> *LoserRegs) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000982 assert(F.isCanonical() && "Cost is accurate only for canonical formula");
Dan Gohman45774ce2010-02-12 10:34:29 +0000983 // Tally up the registers.
984 if (const SCEV *ScaledReg = F.ScaledReg) {
985 if (VisitedRegs.count(ScaledReg)) {
Tim Northoverbc6659c2014-01-22 13:27:00 +0000986 Lose();
Dan Gohman45774ce2010-02-12 10:34:29 +0000987 return;
988 }
Andrew Trick5df90962011-12-06 03:13:31 +0000989 RatePrimaryRegister(ScaledReg, Regs, L, SE, DT, LoserRegs);
Andrew Trick784729d2011-09-26 23:11:04 +0000990 if (isLoser())
991 return;
Dan Gohman45774ce2010-02-12 10:34:29 +0000992 }
Craig Topper042a3922015-05-25 20:01:18 +0000993 for (const SCEV *BaseReg : F.BaseRegs) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000994 if (VisitedRegs.count(BaseReg)) {
Tim Northoverbc6659c2014-01-22 13:27:00 +0000995 Lose();
Dan Gohman45774ce2010-02-12 10:34:29 +0000996 return;
997 }
Andrew Trick5df90962011-12-06 03:13:31 +0000998 RatePrimaryRegister(BaseReg, Regs, L, SE, DT, LoserRegs);
Andrew Trick784729d2011-09-26 23:11:04 +0000999 if (isLoser())
1000 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00001001 }
1002
Dan Gohman6136e942011-05-03 00:46:49 +00001003 // Determine how many (unfolded) adds we'll need inside the loop.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001004 size_t NumBaseParts = F.getNumRegs();
Dan Gohman6136e942011-05-03 00:46:49 +00001005 if (NumBaseParts > 1)
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001006 // Do not count the base and a possible second register if the target
1007 // allows to fold 2 registers.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001008 NumBaseAdds +=
1009 NumBaseParts - (1 + (F.Scale && isAMCompletelyFolded(TTI, LU, F)));
1010 NumBaseAdds += (F.UnfoldedOffset != 0);
Dan Gohman45774ce2010-02-12 10:34:29 +00001011
Quentin Colombetbf490d42013-05-31 21:29:03 +00001012 // Accumulate non-free scaling amounts.
1013 ScaleCost += getScalingFactorCost(TTI, LU, F);
1014
Dan Gohman45774ce2010-02-12 10:34:29 +00001015 // Tally up the non-zero immediates.
Craig Topper042a3922015-05-25 20:01:18 +00001016 for (int64_t O : Offsets) {
1017 int64_t Offset = (uint64_t)O + F.BaseOffset;
Chandler Carruth6e479322013-01-07 15:04:40 +00001018 if (F.BaseGV)
Dan Gohman45774ce2010-02-12 10:34:29 +00001019 ImmCost += 64; // Handle symbolic values conservatively.
1020 // TODO: This should probably be the pointer size.
1021 else if (Offset != 0)
1022 ImmCost += APInt(64, Offset, true).getMinSignedBits();
1023 }
Andrew Trick784729d2011-09-26 23:11:04 +00001024 assert(isValid() && "invalid cost");
Dan Gohman45774ce2010-02-12 10:34:29 +00001025}
1026
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001027/// Set this cost to a losing value.
Tim Northoverbc6659c2014-01-22 13:27:00 +00001028void Cost::Lose() {
Dan Gohman45774ce2010-02-12 10:34:29 +00001029 NumRegs = ~0u;
1030 AddRecCost = ~0u;
1031 NumIVMuls = ~0u;
1032 NumBaseAdds = ~0u;
1033 ImmCost = ~0u;
1034 SetupCost = ~0u;
Quentin Colombetbf490d42013-05-31 21:29:03 +00001035 ScaleCost = ~0u;
Dan Gohman45774ce2010-02-12 10:34:29 +00001036}
1037
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001038/// Choose the lower cost.
Dan Gohman45774ce2010-02-12 10:34:29 +00001039bool Cost::operator<(const Cost &Other) const {
Benjamin Kramerb2f034b2014-03-03 19:58:30 +00001040 return std::tie(NumRegs, AddRecCost, NumIVMuls, NumBaseAdds, ScaleCost,
1041 ImmCost, SetupCost) <
1042 std::tie(Other.NumRegs, Other.AddRecCost, Other.NumIVMuls,
1043 Other.NumBaseAdds, Other.ScaleCost, Other.ImmCost,
1044 Other.SetupCost);
Dan Gohman45774ce2010-02-12 10:34:29 +00001045}
1046
1047void Cost::print(raw_ostream &OS) const {
1048 OS << NumRegs << " reg" << (NumRegs == 1 ? "" : "s");
1049 if (AddRecCost != 0)
1050 OS << ", with addrec cost " << AddRecCost;
1051 if (NumIVMuls != 0)
1052 OS << ", plus " << NumIVMuls << " IV mul" << (NumIVMuls == 1 ? "" : "s");
1053 if (NumBaseAdds != 0)
1054 OS << ", plus " << NumBaseAdds << " base add"
1055 << (NumBaseAdds == 1 ? "" : "s");
Quentin Colombetbf490d42013-05-31 21:29:03 +00001056 if (ScaleCost != 0)
1057 OS << ", plus " << ScaleCost << " scale cost";
Dan Gohman45774ce2010-02-12 10:34:29 +00001058 if (ImmCost != 0)
1059 OS << ", plus " << ImmCost << " imm cost";
1060 if (SetupCost != 0)
1061 OS << ", plus " << SetupCost << " setup cost";
1062}
1063
Davide Italiano945d05f2015-11-23 02:47:30 +00001064LLVM_DUMP_METHOD
Dan Gohman45774ce2010-02-12 10:34:29 +00001065void Cost::dump() const {
1066 print(errs()); errs() << '\n';
1067}
1068
1069namespace {
1070
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001071/// An operand value in an instruction which is to be replaced with some
1072/// equivalent, possibly strength-reduced, replacement.
Dan Gohman45774ce2010-02-12 10:34:29 +00001073struct LSRFixup {
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001074 /// The instruction which will be updated.
Dan Gohman45774ce2010-02-12 10:34:29 +00001075 Instruction *UserInst;
1076
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001077 /// The operand of the instruction which will be replaced. The operand may be
1078 /// used more than once; every instance will be replaced.
Dan Gohman45774ce2010-02-12 10:34:29 +00001079 Value *OperandValToReplace;
1080
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001081 /// If this user is to use the post-incremented value of an induction
1082 /// variable, this variable is non-null and holds the loop associated with the
1083 /// induction variable.
Dan Gohmand006ab92010-04-07 22:27:08 +00001084 PostIncLoopSet PostIncLoops;
Dan Gohman45774ce2010-02-12 10:34:29 +00001085
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001086 /// The index of the LSRUse describing the expression which this fixup needs,
1087 /// minus an offset (below).
Dan Gohman45774ce2010-02-12 10:34:29 +00001088 size_t LUIdx;
1089
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001090 /// A constant offset to be added to the LSRUse expression. This allows
1091 /// multiple fixups to share the same LSRUse with different offsets, for
1092 /// example in an unrolled loop.
Dan Gohman45774ce2010-02-12 10:34:29 +00001093 int64_t Offset;
1094
Dan Gohmand006ab92010-04-07 22:27:08 +00001095 bool isUseFullyOutsideLoop(const Loop *L) const;
1096
Dan Gohman45774ce2010-02-12 10:34:29 +00001097 LSRFixup();
1098
1099 void print(raw_ostream &OS) const;
1100 void dump() const;
1101};
1102
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001103}
Dan Gohman45774ce2010-02-12 10:34:29 +00001104
1105LSRFixup::LSRFixup()
Craig Topperf40110f2014-04-25 05:29:35 +00001106 : UserInst(nullptr), OperandValToReplace(nullptr), LUIdx(~size_t(0)),
1107 Offset(0) {}
Dan Gohman45774ce2010-02-12 10:34:29 +00001108
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001109/// Test whether this fixup always uses its value outside of the given loop.
Dan Gohmand006ab92010-04-07 22:27:08 +00001110bool LSRFixup::isUseFullyOutsideLoop(const Loop *L) const {
1111 // PHI nodes use their value in their incoming blocks.
1112 if (const PHINode *PN = dyn_cast<PHINode>(UserInst)) {
1113 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
1114 if (PN->getIncomingValue(i) == OperandValToReplace &&
1115 L->contains(PN->getIncomingBlock(i)))
1116 return false;
1117 return true;
1118 }
1119
1120 return !L->contains(UserInst);
1121}
1122
Dan Gohman45774ce2010-02-12 10:34:29 +00001123void LSRFixup::print(raw_ostream &OS) const {
1124 OS << "UserInst=";
1125 // Store is common and interesting enough to be worth special-casing.
1126 if (StoreInst *Store = dyn_cast<StoreInst>(UserInst)) {
1127 OS << "store ";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001128 Store->getOperand(0)->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001129 } else if (UserInst->getType()->isVoidTy())
1130 OS << UserInst->getOpcodeName();
1131 else
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001132 UserInst->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001133
1134 OS << ", OperandValToReplace=";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001135 OperandValToReplace->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001136
Craig Topper042a3922015-05-25 20:01:18 +00001137 for (const Loop *PIL : PostIncLoops) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001138 OS << ", PostIncLoop=";
Craig Topper042a3922015-05-25 20:01:18 +00001139 PIL->getHeader()->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001140 }
1141
1142 if (LUIdx != ~size_t(0))
1143 OS << ", LUIdx=" << LUIdx;
1144
1145 if (Offset != 0)
1146 OS << ", Offset=" << Offset;
1147}
1148
Davide Italiano945d05f2015-11-23 02:47:30 +00001149LLVM_DUMP_METHOD
Dan Gohman45774ce2010-02-12 10:34:29 +00001150void LSRFixup::dump() const {
1151 print(errs()); errs() << '\n';
1152}
1153
1154namespace {
1155
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001156/// A DenseMapInfo implementation for holding DenseMaps and DenseSets of sorted
1157/// SmallVectors of const SCEV*.
Dan Gohman45774ce2010-02-12 10:34:29 +00001158struct UniquifierDenseMapInfo {
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001159 static SmallVector<const SCEV *, 4> getEmptyKey() {
1160 SmallVector<const SCEV *, 4> V;
Dan Gohman45774ce2010-02-12 10:34:29 +00001161 V.push_back(reinterpret_cast<const SCEV *>(-1));
1162 return V;
1163 }
1164
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001165 static SmallVector<const SCEV *, 4> getTombstoneKey() {
1166 SmallVector<const SCEV *, 4> V;
Dan Gohman45774ce2010-02-12 10:34:29 +00001167 V.push_back(reinterpret_cast<const SCEV *>(-2));
1168 return V;
1169 }
1170
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001171 static unsigned getHashValue(const SmallVector<const SCEV *, 4> &V) {
Benjamin Kramer62fb0cf2014-03-15 17:17:48 +00001172 return static_cast<unsigned>(hash_combine_range(V.begin(), V.end()));
Dan Gohman45774ce2010-02-12 10:34:29 +00001173 }
1174
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001175 static bool isEqual(const SmallVector<const SCEV *, 4> &LHS,
1176 const SmallVector<const SCEV *, 4> &RHS) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001177 return LHS == RHS;
1178 }
1179};
1180
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001181/// This class holds the state that LSR keeps for each use in IVUsers, as well
1182/// as uses invented by LSR itself. It includes information about what kinds of
1183/// things can be folded into the user, information about the user itself, and
1184/// information about how the use may be satisfied. TODO: Represent multiple
1185/// users of the same expression in common?
Dan Gohman45774ce2010-02-12 10:34:29 +00001186class LSRUse {
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001187 DenseSet<SmallVector<const SCEV *, 4>, UniquifierDenseMapInfo> Uniquifier;
Dan Gohman45774ce2010-02-12 10:34:29 +00001188
1189public:
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001190 /// An enum for a kind of use, indicating what types of scaled and immediate
1191 /// operands it might support.
Dan Gohman45774ce2010-02-12 10:34:29 +00001192 enum KindType {
1193 Basic, ///< A normal use, with no folding.
1194 Special, ///< A special case of basic, allowing -1 scales.
Nadav Rotem4dc976f2012-10-19 21:28:43 +00001195 Address, ///< An address use; folding according to TargetLowering
Dan Gohman45774ce2010-02-12 10:34:29 +00001196 ICmpZero ///< An equality icmp with both operands folded into one.
1197 // TODO: Add a generic icmp too?
Dan Gohman045f8192010-01-22 00:46:49 +00001198 };
Dan Gohman45774ce2010-02-12 10:34:29 +00001199
Benjamin Kramer62fb0cf2014-03-15 17:17:48 +00001200 typedef PointerIntPair<const SCEV *, 2, KindType> SCEVUseKindPair;
1201
Dan Gohman45774ce2010-02-12 10:34:29 +00001202 KindType Kind;
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001203 MemAccessTy AccessTy;
Dan Gohman45774ce2010-02-12 10:34:29 +00001204
1205 SmallVector<int64_t, 8> Offsets;
1206 int64_t MinOffset;
1207 int64_t MaxOffset;
1208
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001209 /// This records whether all of the fixups using this LSRUse are outside of
1210 /// the loop, in which case some special-case heuristics may be used.
Dan Gohman45774ce2010-02-12 10:34:29 +00001211 bool AllFixupsOutsideLoop;
1212
Andrew Trick57243da2013-10-25 21:35:56 +00001213 /// RigidFormula is set to true to guarantee that this use will be associated
1214 /// with a single formula--the one that initially matched. Some SCEV
1215 /// expressions cannot be expanded. This allows LSR to consider the registers
1216 /// used by those expressions without the need to expand them later after
1217 /// changing the formula.
1218 bool RigidFormula;
1219
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001220 /// This records the widest use type for any fixup using this
1221 /// LSRUse. FindUseWithSimilarFormula can't consider uses with different max
1222 /// fixup widths to be equivalent, because the narrower one may be relying on
1223 /// the implicit truncation to truncate away bogus bits.
Chris Lattner229907c2011-07-18 04:54:35 +00001224 Type *WidestFixupType;
Dan Gohman14152082010-07-15 20:24:58 +00001225
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001226 /// A list of ways to build a value that can satisfy this user. After the
1227 /// list is populated, one of these is selected heuristically and used to
1228 /// formulate a replacement for OperandValToReplace in UserInst.
Dan Gohman45774ce2010-02-12 10:34:29 +00001229 SmallVector<Formula, 12> Formulae;
1230
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001231 /// The set of register candidates used by all formulae in this LSRUse.
Dan Gohman45774ce2010-02-12 10:34:29 +00001232 SmallPtrSet<const SCEV *, 4> Regs;
1233
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001234 LSRUse(KindType K, MemAccessTy AT)
1235 : Kind(K), AccessTy(AT), MinOffset(INT64_MAX), MaxOffset(INT64_MIN),
1236 AllFixupsOutsideLoop(true), RigidFormula(false),
1237 WidestFixupType(nullptr) {}
Dan Gohman45774ce2010-02-12 10:34:29 +00001238
Dan Gohman20fab452010-05-19 23:43:12 +00001239 bool HasFormulaWithSameRegs(const Formula &F) const;
Dan Gohman8c16b382010-02-22 04:11:59 +00001240 bool InsertFormula(const Formula &F);
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00001241 void DeleteFormula(Formula &F);
Dan Gohman4cf99b52010-05-18 23:42:37 +00001242 void RecomputeRegs(size_t LUIdx, RegUseTracker &Reguses);
Dan Gohman45774ce2010-02-12 10:34:29 +00001243
Dan Gohman45774ce2010-02-12 10:34:29 +00001244 void print(raw_ostream &OS) const;
1245 void dump() const;
1246};
1247
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001248}
Dan Gohman297fb8b2010-06-19 21:21:39 +00001249
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001250/// Test whether this use as a formula which has the same registers as the given
1251/// formula.
Dan Gohman20fab452010-05-19 23:43:12 +00001252bool LSRUse::HasFormulaWithSameRegs(const Formula &F) const {
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001253 SmallVector<const SCEV *, 4> Key = F.BaseRegs;
Dan Gohman20fab452010-05-19 23:43:12 +00001254 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1255 // Unstable sort by host order ok, because this is only used for uniquifying.
1256 std::sort(Key.begin(), Key.end());
1257 return Uniquifier.count(Key);
1258}
1259
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001260/// If the given formula has not yet been inserted, add it to the list, and
1261/// return true. Return false otherwise. The formula must be in canonical form.
Dan Gohman8c16b382010-02-22 04:11:59 +00001262bool LSRUse::InsertFormula(const Formula &F) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001263 assert(F.isCanonical() && "Invalid canonical representation");
1264
Andrew Trick57243da2013-10-25 21:35:56 +00001265 if (!Formulae.empty() && RigidFormula)
1266 return false;
1267
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001268 SmallVector<const SCEV *, 4> Key = F.BaseRegs;
Dan Gohman45774ce2010-02-12 10:34:29 +00001269 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1270 // Unstable sort by host order ok, because this is only used for uniquifying.
1271 std::sort(Key.begin(), Key.end());
1272
1273 if (!Uniquifier.insert(Key).second)
1274 return false;
1275
1276 // Using a register to hold the value of 0 is not profitable.
1277 assert((!F.ScaledReg || !F.ScaledReg->isZero()) &&
1278 "Zero allocated in a scaled register!");
1279#ifndef NDEBUG
Craig Topper042a3922015-05-25 20:01:18 +00001280 for (const SCEV *BaseReg : F.BaseRegs)
1281 assert(!BaseReg->isZero() && "Zero allocated in a base register!");
Dan Gohman45774ce2010-02-12 10:34:29 +00001282#endif
1283
1284 // Add the formula to the list.
1285 Formulae.push_back(F);
1286
1287 // Record registers now being used by this use.
Dan Gohman45774ce2010-02-12 10:34:29 +00001288 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001289 if (F.ScaledReg)
1290 Regs.insert(F.ScaledReg);
Dan Gohman45774ce2010-02-12 10:34:29 +00001291
1292 return true;
Dan Gohman045f8192010-01-22 00:46:49 +00001293}
1294
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001295/// Remove the given formula from this use's list.
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00001296void LSRUse::DeleteFormula(Formula &F) {
Dan Gohman80a96082010-05-20 15:17:54 +00001297 if (&F != &Formulae.back())
1298 std::swap(F, Formulae.back());
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00001299 Formulae.pop_back();
1300}
1301
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001302/// Recompute the Regs field, and update RegUses.
Dan Gohman4cf99b52010-05-18 23:42:37 +00001303void LSRUse::RecomputeRegs(size_t LUIdx, RegUseTracker &RegUses) {
1304 // Now that we've filtered out some formulae, recompute the Regs set.
Benjamin Kramer1c2beed2015-02-19 17:19:43 +00001305 SmallPtrSet<const SCEV *, 4> OldRegs = std::move(Regs);
Dan Gohman4cf99b52010-05-18 23:42:37 +00001306 Regs.clear();
Benjamin Kramer1c2beed2015-02-19 17:19:43 +00001307 for (const Formula &F : Formulae) {
Dan Gohman4cf99b52010-05-18 23:42:37 +00001308 if (F.ScaledReg) Regs.insert(F.ScaledReg);
1309 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1310 }
1311
1312 // Update the RegTracker.
Craig Topper46276792014-08-24 23:23:06 +00001313 for (const SCEV *S : OldRegs)
1314 if (!Regs.count(S))
Sanjoy Das302bfd02015-08-16 18:22:43 +00001315 RegUses.dropRegister(S, LUIdx);
Dan Gohman4cf99b52010-05-18 23:42:37 +00001316}
1317
Dan Gohman45774ce2010-02-12 10:34:29 +00001318void LSRUse::print(raw_ostream &OS) const {
1319 OS << "LSR Use: Kind=";
1320 switch (Kind) {
1321 case Basic: OS << "Basic"; break;
1322 case Special: OS << "Special"; break;
1323 case ICmpZero: OS << "ICmpZero"; break;
1324 case Address:
1325 OS << "Address of ";
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001326 if (AccessTy.MemTy->isPointerTy())
Dan Gohman45774ce2010-02-12 10:34:29 +00001327 OS << "pointer"; // the full pointer type could be really verbose
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001328 else {
1329 OS << *AccessTy.MemTy;
1330 }
1331
1332 OS << " in addrspace(" << AccessTy.AddrSpace << ')';
Evan Cheng133694d2007-10-25 09:11:16 +00001333 }
1334
Dan Gohman45774ce2010-02-12 10:34:29 +00001335 OS << ", Offsets={";
Craig Topper042a3922015-05-25 20:01:18 +00001336 bool NeedComma = false;
1337 for (int64_t O : Offsets) {
1338 if (NeedComma) OS << ',';
1339 OS << O;
1340 NeedComma = true;
Dan Gohman045f8192010-01-22 00:46:49 +00001341 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001342 OS << '}';
Dan Gohman045f8192010-01-22 00:46:49 +00001343
Dan Gohman45774ce2010-02-12 10:34:29 +00001344 if (AllFixupsOutsideLoop)
1345 OS << ", all-fixups-outside-loop";
Dan Gohman14152082010-07-15 20:24:58 +00001346
1347 if (WidestFixupType)
1348 OS << ", widest fixup type: " << *WidestFixupType;
Dan Gohman045f8192010-01-22 00:46:49 +00001349}
1350
Davide Italiano945d05f2015-11-23 02:47:30 +00001351LLVM_DUMP_METHOD
Dan Gohman45774ce2010-02-12 10:34:29 +00001352void LSRUse::dump() const {
1353 print(errs()); errs() << '\n';
1354}
Dan Gohman045f8192010-01-22 00:46:49 +00001355
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001356static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001357 LSRUse::KindType Kind, MemAccessTy AccessTy,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001358 GlobalValue *BaseGV, int64_t BaseOffset,
1359 bool HasBaseReg, int64_t Scale) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001360 switch (Kind) {
1361 case LSRUse::Address:
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001362 return TTI.isLegalAddressingMode(AccessTy.MemTy, BaseGV, BaseOffset,
1363 HasBaseReg, Scale, AccessTy.AddrSpace);
Dan Gohman45774ce2010-02-12 10:34:29 +00001364
Dan Gohman45774ce2010-02-12 10:34:29 +00001365 case LSRUse::ICmpZero:
1366 // There's not even a target hook for querying whether it would be legal to
1367 // fold a GV into an ICmp.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001368 if (BaseGV)
Dan Gohman45774ce2010-02-12 10:34:29 +00001369 return false;
1370
1371 // ICmp only has two operands; don't allow more than two non-trivial parts.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001372 if (Scale != 0 && HasBaseReg && BaseOffset != 0)
Dan Gohman45774ce2010-02-12 10:34:29 +00001373 return false;
1374
1375 // ICmp only supports no scale or a -1 scale, as we can "fold" a -1 scale by
1376 // putting the scaled register in the other operand of the icmp.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001377 if (Scale != 0 && Scale != -1)
Dan Gohman45774ce2010-02-12 10:34:29 +00001378 return false;
1379
1380 // If we have low-level target information, ask the target if it can fold an
1381 // integer immediate on an icmp.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001382 if (BaseOffset != 0) {
Jakob Stoklund Olesenf2390e82012-04-05 03:10:56 +00001383 // We have one of:
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001384 // ICmpZero BaseReg + BaseOffset => ICmp BaseReg, -BaseOffset
1385 // ICmpZero -1*ScaleReg + BaseOffset => ICmp ScaleReg, BaseOffset
Jakob Stoklund Olesenf2390e82012-04-05 03:10:56 +00001386 // Offs is the ICmp immediate.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001387 if (Scale == 0)
1388 // The cast does the right thing with INT64_MIN.
1389 BaseOffset = -(uint64_t)BaseOffset;
1390 return TTI.isLegalICmpImmediate(BaseOffset);
Dan Gohman045f8192010-01-22 00:46:49 +00001391 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001392
Jakob Stoklund Olesenf2390e82012-04-05 03:10:56 +00001393 // ICmpZero BaseReg + -1*ScaleReg => ICmp BaseReg, ScaleReg
Dan Gohman45774ce2010-02-12 10:34:29 +00001394 return true;
1395
1396 case LSRUse::Basic:
1397 // Only handle single-register values.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001398 return !BaseGV && Scale == 0 && BaseOffset == 0;
Dan Gohman45774ce2010-02-12 10:34:29 +00001399
1400 case LSRUse::Special:
Andrew Trickaca8fb32012-06-15 20:07:26 +00001401 // Special case Basic to handle -1 scales.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001402 return !BaseGV && (Scale == 0 || Scale == -1) && BaseOffset == 0;
Dan Gohman045f8192010-01-22 00:46:49 +00001403 }
1404
David Blaikie46a9f012012-01-20 21:51:11 +00001405 llvm_unreachable("Invalid LSRUse Kind!");
Dan Gohman045f8192010-01-22 00:46:49 +00001406}
1407
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001408static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1409 int64_t MinOffset, int64_t MaxOffset,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001410 LSRUse::KindType Kind, MemAccessTy AccessTy,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001411 GlobalValue *BaseGV, int64_t BaseOffset,
1412 bool HasBaseReg, int64_t Scale) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001413 // Check for overflow.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001414 if (((int64_t)((uint64_t)BaseOffset + MinOffset) > BaseOffset) !=
Dan Gohman45774ce2010-02-12 10:34:29 +00001415 (MinOffset > 0))
1416 return false;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001417 MinOffset = (uint64_t)BaseOffset + MinOffset;
1418 if (((int64_t)((uint64_t)BaseOffset + MaxOffset) > BaseOffset) !=
1419 (MaxOffset > 0))
1420 return false;
1421 MaxOffset = (uint64_t)BaseOffset + MaxOffset;
1422
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001423 return isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, MinOffset,
1424 HasBaseReg, Scale) &&
1425 isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, MaxOffset,
1426 HasBaseReg, Scale);
1427}
1428
1429static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1430 int64_t MinOffset, int64_t MaxOffset,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001431 LSRUse::KindType Kind, MemAccessTy AccessTy,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001432 const Formula &F) {
1433 // For the purpose of isAMCompletelyFolded either having a canonical formula
1434 // or a scale not equal to zero is correct.
1435 // Problems may arise from non canonical formulae having a scale == 0.
1436 // Strictly speaking it would best to just rely on canonical formulae.
1437 // However, when we generate the scaled formulae, we first check that the
1438 // scaling factor is profitable before computing the actual ScaledReg for
1439 // compile time sake.
1440 assert((F.isCanonical() || F.Scale != 0));
1441 return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy,
1442 F.BaseGV, F.BaseOffset, F.HasBaseReg, F.Scale);
1443}
1444
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001445/// Test whether we know how to expand the current formula.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001446static bool isLegalUse(const TargetTransformInfo &TTI, int64_t MinOffset,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001447 int64_t MaxOffset, LSRUse::KindType Kind,
1448 MemAccessTy AccessTy, GlobalValue *BaseGV,
1449 int64_t BaseOffset, bool HasBaseReg, int64_t Scale) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001450 // We know how to expand completely foldable formulae.
1451 return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, BaseGV,
1452 BaseOffset, HasBaseReg, Scale) ||
1453 // Or formulae that use a base register produced by a sum of base
1454 // registers.
1455 (Scale == 1 &&
1456 isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy,
1457 BaseGV, BaseOffset, true, 0));
Dan Gohman045f8192010-01-22 00:46:49 +00001458}
1459
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001460static bool isLegalUse(const TargetTransformInfo &TTI, int64_t MinOffset,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001461 int64_t MaxOffset, LSRUse::KindType Kind,
1462 MemAccessTy AccessTy, const Formula &F) {
Chandler Carruth6e479322013-01-07 15:04:40 +00001463 return isLegalUse(TTI, MinOffset, MaxOffset, Kind, AccessTy, F.BaseGV,
1464 F.BaseOffset, F.HasBaseReg, F.Scale);
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001465}
1466
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001467static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1468 const LSRUse &LU, const Formula &F) {
1469 return isAMCompletelyFolded(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind,
1470 LU.AccessTy, F.BaseGV, F.BaseOffset, F.HasBaseReg,
1471 F.Scale);
1472}
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001473
Quentin Colombetbf490d42013-05-31 21:29:03 +00001474static unsigned getScalingFactorCost(const TargetTransformInfo &TTI,
1475 const LSRUse &LU, const Formula &F) {
1476 if (!F.Scale)
1477 return 0;
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001478
1479 // If the use is not completely folded in that instruction, we will have to
1480 // pay an extra cost only for scale != 1.
1481 if (!isAMCompletelyFolded(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind,
1482 LU.AccessTy, F))
1483 return F.Scale != 1;
Quentin Colombetbf490d42013-05-31 21:29:03 +00001484
1485 switch (LU.Kind) {
1486 case LSRUse::Address: {
Quentin Colombet145eb972013-06-19 19:59:41 +00001487 // Check the scaling factor cost with both the min and max offsets.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001488 int ScaleCostMinOffset = TTI.getScalingFactorCost(
1489 LU.AccessTy.MemTy, F.BaseGV, F.BaseOffset + LU.MinOffset, F.HasBaseReg,
1490 F.Scale, LU.AccessTy.AddrSpace);
1491 int ScaleCostMaxOffset = TTI.getScalingFactorCost(
1492 LU.AccessTy.MemTy, F.BaseGV, F.BaseOffset + LU.MaxOffset, F.HasBaseReg,
1493 F.Scale, LU.AccessTy.AddrSpace);
Quentin Colombet145eb972013-06-19 19:59:41 +00001494
1495 assert(ScaleCostMinOffset >= 0 && ScaleCostMaxOffset >= 0 &&
1496 "Legal addressing mode has an illegal cost!");
1497 return std::max(ScaleCostMinOffset, ScaleCostMaxOffset);
Quentin Colombetbf490d42013-05-31 21:29:03 +00001498 }
1499 case LSRUse::ICmpZero:
Quentin Colombetbf490d42013-05-31 21:29:03 +00001500 case LSRUse::Basic:
1501 case LSRUse::Special:
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001502 // The use is completely folded, i.e., everything is folded into the
1503 // instruction.
Quentin Colombetbf490d42013-05-31 21:29:03 +00001504 return 0;
1505 }
1506
1507 llvm_unreachable("Invalid LSRUse Kind!");
1508}
1509
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001510static bool isAlwaysFoldable(const TargetTransformInfo &TTI,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001511 LSRUse::KindType Kind, MemAccessTy AccessTy,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001512 GlobalValue *BaseGV, int64_t BaseOffset,
1513 bool HasBaseReg) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001514 // Fast-path: zero is always foldable.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001515 if (BaseOffset == 0 && !BaseGV) return true;
Dan Gohman045f8192010-01-22 00:46:49 +00001516
Dan Gohman45774ce2010-02-12 10:34:29 +00001517 // Conservatively, create an address with an immediate and a
1518 // base and a scale.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001519 int64_t Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman045f8192010-01-22 00:46:49 +00001520
Dan Gohman20fab452010-05-19 23:43:12 +00001521 // Canonicalize a scale of 1 to a base register if the formula doesn't
1522 // already have a base register.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001523 if (!HasBaseReg && Scale == 1) {
1524 Scale = 0;
1525 HasBaseReg = true;
Dan Gohman20fab452010-05-19 23:43:12 +00001526 }
1527
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001528 return isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, BaseOffset,
1529 HasBaseReg, Scale);
Dan Gohman045f8192010-01-22 00:46:49 +00001530}
1531
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001532static bool isAlwaysFoldable(const TargetTransformInfo &TTI,
1533 ScalarEvolution &SE, int64_t MinOffset,
1534 int64_t MaxOffset, LSRUse::KindType Kind,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001535 MemAccessTy AccessTy, const SCEV *S,
1536 bool HasBaseReg) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001537 // Fast-path: zero is always foldable.
1538 if (S->isZero()) return true;
1539
1540 // Conservatively, create an address with an immediate and a
1541 // base and a scale.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001542 int64_t BaseOffset = ExtractImmediate(S, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +00001543 GlobalValue *BaseGV = ExtractSymbol(S, SE);
1544
1545 // If there's anything else involved, it's not foldable.
1546 if (!S->isZero()) return false;
1547
1548 // Fast-path: zero is always foldable.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001549 if (BaseOffset == 0 && !BaseGV) return true;
Dan Gohman45774ce2010-02-12 10:34:29 +00001550
1551 // Conservatively, create an address with an immediate and a
1552 // base and a scale.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001553 int64_t Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman45774ce2010-02-12 10:34:29 +00001554
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001555 return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, BaseGV,
1556 BaseOffset, HasBaseReg, Scale);
Dan Gohman045f8192010-01-22 00:46:49 +00001557}
1558
Dan Gohman297fb8b2010-06-19 21:21:39 +00001559namespace {
1560
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001561/// An individual increment in a Chain of IV increments. Relate an IV user to
1562/// an expression that computes the IV it uses from the IV used by the previous
1563/// link in the Chain.
Andrew Trick29fe5f02012-01-09 19:50:34 +00001564///
1565/// For the head of a chain, IncExpr holds the absolute SCEV expression for the
1566/// original IVOperand. The head of the chain's IVOperand is only valid during
1567/// chain collection, before LSR replaces IV users. During chain generation,
1568/// IncExpr can be used to find the new IVOperand that computes the same
1569/// expression.
1570struct IVInc {
1571 Instruction *UserInst;
1572 Value* IVOperand;
1573 const SCEV *IncExpr;
1574
1575 IVInc(Instruction *U, Value *O, const SCEV *E):
1576 UserInst(U), IVOperand(O), IncExpr(E) {}
1577};
1578
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001579// The list of IV increments in program order. We typically add the head of a
1580// chain without finding subsequent links.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001581struct IVChain {
1582 SmallVector<IVInc,1> Incs;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001583 const SCEV *ExprBase;
1584
Craig Topperf40110f2014-04-25 05:29:35 +00001585 IVChain() : ExprBase(nullptr) {}
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001586
1587 IVChain(const IVInc &Head, const SCEV *Base)
1588 : Incs(1, Head), ExprBase(Base) {}
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001589
1590 typedef SmallVectorImpl<IVInc>::const_iterator const_iterator;
1591
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001592 // Return the first increment in the chain.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001593 const_iterator begin() const {
1594 assert(!Incs.empty());
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001595 return std::next(Incs.begin());
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001596 }
1597 const_iterator end() const {
1598 return Incs.end();
1599 }
1600
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001601 // Returns true if this chain contains any increments.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001602 bool hasIncs() const { return Incs.size() >= 2; }
1603
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001604 // Add an IVInc to the end of this chain.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001605 void add(const IVInc &X) { Incs.push_back(X); }
1606
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001607 // Returns the last UserInst in the chain.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001608 Instruction *tailUserInst() const { return Incs.back().UserInst; }
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001609
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001610 // Returns true if IncExpr can be profitably added to this chain.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001611 bool isProfitableIncrement(const SCEV *OperExpr,
1612 const SCEV *IncExpr,
1613 ScalarEvolution&);
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001614};
Andrew Trick29fe5f02012-01-09 19:50:34 +00001615
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001616/// Helper for CollectChains to track multiple IV increment uses. Distinguish
1617/// between FarUsers that definitely cross IV increments and NearUsers that may
1618/// be used between IV increments.
Andrew Trick29fe5f02012-01-09 19:50:34 +00001619struct ChainUsers {
1620 SmallPtrSet<Instruction*, 4> FarUsers;
1621 SmallPtrSet<Instruction*, 4> NearUsers;
1622};
1623
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001624/// This class holds state for the main loop strength reduction logic.
Dan Gohman45774ce2010-02-12 10:34:29 +00001625class LSRInstance {
1626 IVUsers &IU;
1627 ScalarEvolution &SE;
1628 DominatorTree &DT;
Dan Gohman607e02b2010-04-09 22:07:05 +00001629 LoopInfo &LI;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001630 const TargetTransformInfo &TTI;
Dan Gohman45774ce2010-02-12 10:34:29 +00001631 Loop *const L;
1632 bool Changed;
1633
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001634 /// This is the insert position that the current loop's induction variable
1635 /// increment should be placed. In simple loops, this is the latch block's
1636 /// terminator. But in more complicated cases, this is a position which will
1637 /// dominate all the in-loop post-increment users.
Dan Gohman45774ce2010-02-12 10:34:29 +00001638 Instruction *IVIncInsertPos;
1639
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001640 /// Interesting factors between use strides.
Dan Gohman45774ce2010-02-12 10:34:29 +00001641 SmallSetVector<int64_t, 8> Factors;
1642
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001643 /// Interesting use types, to facilitate truncation reuse.
Chris Lattner229907c2011-07-18 04:54:35 +00001644 SmallSetVector<Type *, 4> Types;
Dan Gohman45774ce2010-02-12 10:34:29 +00001645
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001646 /// The list of operands which are to be replaced.
Dan Gohman45774ce2010-02-12 10:34:29 +00001647 SmallVector<LSRFixup, 16> Fixups;
1648
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001649 /// The list of interesting uses.
Dan Gohman45774ce2010-02-12 10:34:29 +00001650 SmallVector<LSRUse, 16> Uses;
1651
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001652 /// Track which uses use which register candidates.
Dan Gohman45774ce2010-02-12 10:34:29 +00001653 RegUseTracker RegUses;
1654
Andrew Trick29fe5f02012-01-09 19:50:34 +00001655 // Limit the number of chains to avoid quadratic behavior. We don't expect to
1656 // have more than a few IV increment chains in a loop. Missing a Chain falls
1657 // back to normal LSR behavior for those uses.
1658 static const unsigned MaxChains = 8;
1659
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001660 /// IV users can form a chain of IV increments.
Andrew Trick29fe5f02012-01-09 19:50:34 +00001661 SmallVector<IVChain, MaxChains> IVChainVec;
1662
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001663 /// IV users that belong to profitable IVChains.
Andrew Trick248d4102012-01-09 21:18:52 +00001664 SmallPtrSet<Use*, MaxChains> IVIncSet;
1665
Dan Gohman45774ce2010-02-12 10:34:29 +00001666 void OptimizeShadowIV();
1667 bool FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse);
1668 ICmpInst *OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse);
Dan Gohman4c4043c2010-05-20 20:05:31 +00001669 void OptimizeLoopTermCond();
Dan Gohman45774ce2010-02-12 10:34:29 +00001670
Andrew Trick29fe5f02012-01-09 19:50:34 +00001671 void ChainInstruction(Instruction *UserInst, Instruction *IVOper,
1672 SmallVectorImpl<ChainUsers> &ChainUsersVec);
Andrew Trick248d4102012-01-09 21:18:52 +00001673 void FinalizeChain(IVChain &Chain);
Andrew Trick29fe5f02012-01-09 19:50:34 +00001674 void CollectChains();
Andrew Trick248d4102012-01-09 21:18:52 +00001675 void GenerateIVChain(const IVChain &Chain, SCEVExpander &Rewriter,
1676 SmallVectorImpl<WeakVH> &DeadInsts);
Andrew Trick29fe5f02012-01-09 19:50:34 +00001677
Dan Gohman45774ce2010-02-12 10:34:29 +00001678 void CollectInterestingTypesAndFactors();
1679 void CollectFixupsAndInitialFormulae();
1680
1681 LSRFixup &getNewFixup() {
1682 Fixups.push_back(LSRFixup());
1683 return Fixups.back();
1684 }
1685
1686 // Support for sharing of LSRUses between LSRFixups.
Benjamin Kramer62fb0cf2014-03-15 17:17:48 +00001687 typedef DenseMap<LSRUse::SCEVUseKindPair, size_t> UseMapTy;
Dan Gohman45774ce2010-02-12 10:34:29 +00001688 UseMapTy UseMap;
1689
Dan Gohman110ed642010-09-01 01:45:53 +00001690 bool reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001691 LSRUse::KindType Kind, MemAccessTy AccessTy);
Dan Gohman45774ce2010-02-12 10:34:29 +00001692
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001693 std::pair<size_t, int64_t> getUse(const SCEV *&Expr, LSRUse::KindType Kind,
1694 MemAccessTy AccessTy);
Dan Gohman45774ce2010-02-12 10:34:29 +00001695
Dan Gohmana7b68d62010-10-07 23:33:43 +00001696 void DeleteUse(LSRUse &LU, size_t LUIdx);
Dan Gohman80a96082010-05-20 15:17:54 +00001697
Dan Gohman110ed642010-09-01 01:45:53 +00001698 LSRUse *FindUseWithSimilarFormula(const Formula &F, const LSRUse &OrigLU);
Dan Gohman20fab452010-05-19 23:43:12 +00001699
Dan Gohman8c16b382010-02-22 04:11:59 +00001700 void InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00001701 void InsertSupplementalFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
1702 void CountRegisters(const Formula &F, size_t LUIdx);
1703 bool InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F);
1704
1705 void CollectLoopInvariantFixupsAndFormulae();
1706
1707 void GenerateReassociations(LSRUse &LU, unsigned LUIdx, Formula Base,
1708 unsigned Depth = 0);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001709
1710 void GenerateReassociationsImpl(LSRUse &LU, unsigned LUIdx,
1711 const Formula &Base, unsigned Depth,
1712 size_t Idx, bool IsScaledReg = false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001713 void GenerateCombinations(LSRUse &LU, unsigned LUIdx, Formula Base);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001714 void GenerateSymbolicOffsetsImpl(LSRUse &LU, unsigned LUIdx,
1715 const Formula &Base, size_t Idx,
1716 bool IsScaledReg = false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001717 void GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001718 void GenerateConstantOffsetsImpl(LSRUse &LU, unsigned LUIdx,
1719 const Formula &Base,
1720 const SmallVectorImpl<int64_t> &Worklist,
1721 size_t Idx, bool IsScaledReg = false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001722 void GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1723 void GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1724 void GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1725 void GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base);
1726 void GenerateCrossUseConstantOffsets();
1727 void GenerateAllReuseFormulae();
1728
1729 void FilterOutUndesirableDedicatedRegisters();
Dan Gohmana4eca052010-05-18 22:51:59 +00001730
1731 size_t EstimateSearchSpaceComplexity() const;
Dan Gohmane9e08732010-08-29 16:09:42 +00001732 void NarrowSearchSpaceByDetectingSupersets();
1733 void NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman002ff892010-08-29 16:39:22 +00001734 void NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Dan Gohmane9e08732010-08-29 16:09:42 +00001735 void NarrowSearchSpaceByPickingWinnerRegs();
Dan Gohman45774ce2010-02-12 10:34:29 +00001736 void NarrowSearchSpaceUsingHeuristics();
1737
1738 void SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
1739 Cost &SolutionCost,
1740 SmallVectorImpl<const Formula *> &Workspace,
1741 const Cost &CurCost,
1742 const SmallPtrSet<const SCEV *, 16> &CurRegs,
1743 DenseSet<const SCEV *> &VisitedRegs) const;
1744 void Solve(SmallVectorImpl<const Formula *> &Solution) const;
1745
Dan Gohman607e02b2010-04-09 22:07:05 +00001746 BasicBlock::iterator
1747 HoistInsertPosition(BasicBlock::iterator IP,
1748 const SmallVectorImpl<Instruction *> &Inputs) const;
Andrew Trickc908b432012-01-20 07:41:13 +00001749 BasicBlock::iterator
1750 AdjustInsertPositionForExpand(BasicBlock::iterator IP,
1751 const LSRFixup &LF,
1752 const LSRUse &LU,
1753 SCEVExpander &Rewriter) const;
Dan Gohmand2df6432010-04-09 02:00:38 +00001754
Dan Gohman45774ce2010-02-12 10:34:29 +00001755 Value *Expand(const LSRFixup &LF,
1756 const Formula &F,
Dan Gohman8c16b382010-02-22 04:11:59 +00001757 BasicBlock::iterator IP,
Dan Gohman45774ce2010-02-12 10:34:29 +00001758 SCEVExpander &Rewriter,
Dan Gohman8c16b382010-02-22 04:11:59 +00001759 SmallVectorImpl<WeakVH> &DeadInsts) const;
Dan Gohman6deab962010-02-16 20:25:07 +00001760 void RewriteForPHI(PHINode *PN, const LSRFixup &LF,
1761 const Formula &F,
Dan Gohman6deab962010-02-16 20:25:07 +00001762 SCEVExpander &Rewriter,
Justin Bogner843fb202015-12-15 19:40:57 +00001763 SmallVectorImpl<WeakVH> &DeadInsts) const;
Dan Gohman45774ce2010-02-12 10:34:29 +00001764 void Rewrite(const LSRFixup &LF,
1765 const Formula &F,
Dan Gohman45774ce2010-02-12 10:34:29 +00001766 SCEVExpander &Rewriter,
Justin Bogner843fb202015-12-15 19:40:57 +00001767 SmallVectorImpl<WeakVH> &DeadInsts) const;
1768 void ImplementSolution(const SmallVectorImpl<const Formula *> &Solution);
Dan Gohman45774ce2010-02-12 10:34:29 +00001769
Andrew Trickdc18e382011-12-13 00:55:33 +00001770public:
Justin Bogner843fb202015-12-15 19:40:57 +00001771 LSRInstance(Loop *L, IVUsers &IU, ScalarEvolution &SE, DominatorTree &DT,
1772 LoopInfo &LI, const TargetTransformInfo &TTI);
Dan Gohman45774ce2010-02-12 10:34:29 +00001773
1774 bool getChanged() const { return Changed; }
1775
1776 void print_factors_and_types(raw_ostream &OS) const;
1777 void print_fixups(raw_ostream &OS) const;
1778 void print_uses(raw_ostream &OS) const;
1779 void print(raw_ostream &OS) const;
1780 void dump() const;
1781};
1782
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001783}
Dan Gohman45774ce2010-02-12 10:34:29 +00001784
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001785/// If IV is used in a int-to-float cast inside the loop then try to eliminate
1786/// the cast operation.
Dan Gohman45774ce2010-02-12 10:34:29 +00001787void LSRInstance::OptimizeShadowIV() {
1788 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
1789 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1790 return;
1791
1792 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end();
1793 UI != E; /* empty */) {
1794 IVUsers::const_iterator CandidateUI = UI;
1795 ++UI;
1796 Instruction *ShadowUse = CandidateUI->getUser();
Craig Topperf40110f2014-04-25 05:29:35 +00001797 Type *DestTy = nullptr;
Andrew Trick858e9f02011-07-21 01:05:01 +00001798 bool IsSigned = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00001799
1800 /* If shadow use is a int->float cast then insert a second IV
1801 to eliminate this cast.
1802
1803 for (unsigned i = 0; i < n; ++i)
1804 foo((double)i);
1805
1806 is transformed into
1807
1808 double d = 0.0;
1809 for (unsigned i = 0; i < n; ++i, ++d)
1810 foo(d);
1811 */
Andrew Trick858e9f02011-07-21 01:05:01 +00001812 if (UIToFPInst *UCast = dyn_cast<UIToFPInst>(CandidateUI->getUser())) {
1813 IsSigned = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00001814 DestTy = UCast->getDestTy();
Andrew Trick858e9f02011-07-21 01:05:01 +00001815 }
1816 else if (SIToFPInst *SCast = dyn_cast<SIToFPInst>(CandidateUI->getUser())) {
1817 IsSigned = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00001818 DestTy = SCast->getDestTy();
Andrew Trick858e9f02011-07-21 01:05:01 +00001819 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001820 if (!DestTy) continue;
1821
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001822 // If target does not support DestTy natively then do not apply
1823 // this transformation.
1824 if (!TTI.isTypeLegal(DestTy)) continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00001825
1826 PHINode *PH = dyn_cast<PHINode>(ShadowUse->getOperand(0));
1827 if (!PH) continue;
1828 if (PH->getNumIncomingValues() != 2) continue;
1829
Chris Lattner229907c2011-07-18 04:54:35 +00001830 Type *SrcTy = PH->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00001831 int Mantissa = DestTy->getFPMantissaWidth();
1832 if (Mantissa == -1) continue;
1833 if ((int)SE.getTypeSizeInBits(SrcTy) > Mantissa)
1834 continue;
1835
1836 unsigned Entry, Latch;
1837 if (PH->getIncomingBlock(0) == L->getLoopPreheader()) {
1838 Entry = 0;
1839 Latch = 1;
Dan Gohman045f8192010-01-22 00:46:49 +00001840 } else {
Dan Gohman45774ce2010-02-12 10:34:29 +00001841 Entry = 1;
1842 Latch = 0;
Dan Gohman045f8192010-01-22 00:46:49 +00001843 }
Dan Gohman045f8192010-01-22 00:46:49 +00001844
Dan Gohman45774ce2010-02-12 10:34:29 +00001845 ConstantInt *Init = dyn_cast<ConstantInt>(PH->getIncomingValue(Entry));
1846 if (!Init) continue;
Andrew Trick858e9f02011-07-21 01:05:01 +00001847 Constant *NewInit = ConstantFP::get(DestTy, IsSigned ?
Andrew Trickbd243d02011-07-21 01:45:54 +00001848 (double)Init->getSExtValue() :
1849 (double)Init->getZExtValue());
Dan Gohman045f8192010-01-22 00:46:49 +00001850
Dan Gohman45774ce2010-02-12 10:34:29 +00001851 BinaryOperator *Incr =
1852 dyn_cast<BinaryOperator>(PH->getIncomingValue(Latch));
1853 if (!Incr) continue;
1854 if (Incr->getOpcode() != Instruction::Add
1855 && Incr->getOpcode() != Instruction::Sub)
Dan Gohman045f8192010-01-22 00:46:49 +00001856 continue;
Dan Gohman045f8192010-01-22 00:46:49 +00001857
Dan Gohman45774ce2010-02-12 10:34:29 +00001858 /* Initialize new IV, double d = 0.0 in above example. */
Craig Topperf40110f2014-04-25 05:29:35 +00001859 ConstantInt *C = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +00001860 if (Incr->getOperand(0) == PH)
1861 C = dyn_cast<ConstantInt>(Incr->getOperand(1));
1862 else if (Incr->getOperand(1) == PH)
1863 C = dyn_cast<ConstantInt>(Incr->getOperand(0));
Dan Gohman045f8192010-01-22 00:46:49 +00001864 else
Dan Gohman045f8192010-01-22 00:46:49 +00001865 continue;
1866
Dan Gohman45774ce2010-02-12 10:34:29 +00001867 if (!C) continue;
Dan Gohman045f8192010-01-22 00:46:49 +00001868
Dan Gohman45774ce2010-02-12 10:34:29 +00001869 // Ignore negative constants, as the code below doesn't handle them
1870 // correctly. TODO: Remove this restriction.
1871 if (!C->getValue().isStrictlyPositive()) continue;
Dan Gohman045f8192010-01-22 00:46:49 +00001872
Dan Gohman45774ce2010-02-12 10:34:29 +00001873 /* Add new PHINode. */
Jay Foad52131342011-03-30 11:28:46 +00001874 PHINode *NewPH = PHINode::Create(DestTy, 2, "IV.S.", PH);
Dan Gohman045f8192010-01-22 00:46:49 +00001875
Dan Gohman45774ce2010-02-12 10:34:29 +00001876 /* create new increment. '++d' in above example. */
1877 Constant *CFP = ConstantFP::get(DestTy, C->getZExtValue());
1878 BinaryOperator *NewIncr =
1879 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
1880 Instruction::FAdd : Instruction::FSub,
1881 NewPH, CFP, "IV.S.next.", Incr);
Dan Gohman045f8192010-01-22 00:46:49 +00001882
Dan Gohman45774ce2010-02-12 10:34:29 +00001883 NewPH->addIncoming(NewInit, PH->getIncomingBlock(Entry));
1884 NewPH->addIncoming(NewIncr, PH->getIncomingBlock(Latch));
Dan Gohman045f8192010-01-22 00:46:49 +00001885
Dan Gohman45774ce2010-02-12 10:34:29 +00001886 /* Remove cast operation */
1887 ShadowUse->replaceAllUsesWith(NewPH);
1888 ShadowUse->eraseFromParent();
Dan Gohman4c4043c2010-05-20 20:05:31 +00001889 Changed = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00001890 break;
Dan Gohman045f8192010-01-22 00:46:49 +00001891 }
1892}
1893
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001894/// If Cond has an operand that is an expression of an IV, set the IV user and
1895/// stride information and return true, otherwise return false.
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00001896bool LSRInstance::FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse) {
Craig Topper042a3922015-05-25 20:01:18 +00001897 for (IVStrideUse &U : IU)
1898 if (U.getUser() == Cond) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001899 // NOTE: we could handle setcc instructions with multiple uses here, but
1900 // InstCombine does it as well for simple uses, it's not clear that it
1901 // occurs enough in real life to handle.
Craig Topper042a3922015-05-25 20:01:18 +00001902 CondUse = &U;
Dan Gohman45774ce2010-02-12 10:34:29 +00001903 return true;
1904 }
Dan Gohman045f8192010-01-22 00:46:49 +00001905 return false;
Evan Cheng133694d2007-10-25 09:11:16 +00001906}
1907
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001908/// Rewrite the loop's terminating condition if it uses a max computation.
Dan Gohman045f8192010-01-22 00:46:49 +00001909///
1910/// This is a narrow solution to a specific, but acute, problem. For loops
1911/// like this:
1912///
1913/// i = 0;
1914/// do {
1915/// p[i] = 0.0;
1916/// } while (++i < n);
1917///
1918/// the trip count isn't just 'n', because 'n' might not be positive. And
1919/// unfortunately this can come up even for loops where the user didn't use
1920/// a C do-while loop. For example, seemingly well-behaved top-test loops
1921/// will commonly be lowered like this:
1922//
1923/// if (n > 0) {
1924/// i = 0;
1925/// do {
1926/// p[i] = 0.0;
1927/// } while (++i < n);
1928/// }
1929///
1930/// and then it's possible for subsequent optimization to obscure the if
1931/// test in such a way that indvars can't find it.
1932///
1933/// When indvars can't find the if test in loops like this, it creates a
1934/// max expression, which allows it to give the loop a canonical
1935/// induction variable:
1936///
1937/// i = 0;
1938/// max = n < 1 ? 1 : n;
1939/// do {
1940/// p[i] = 0.0;
1941/// } while (++i != max);
1942///
1943/// Canonical induction variables are necessary because the loop passes
1944/// are designed around them. The most obvious example of this is the
1945/// LoopInfo analysis, which doesn't remember trip count values. It
1946/// expects to be able to rediscover the trip count each time it is
Dan Gohman45774ce2010-02-12 10:34:29 +00001947/// needed, and it does this using a simple analysis that only succeeds if
Dan Gohman045f8192010-01-22 00:46:49 +00001948/// the loop has a canonical induction variable.
1949///
1950/// However, when it comes time to generate code, the maximum operation
1951/// can be quite costly, especially if it's inside of an outer loop.
1952///
1953/// This function solves this problem by detecting this type of loop and
1954/// rewriting their conditions from ICMP_NE back to ICMP_SLT, and deleting
1955/// the instructions for the maximum computation.
1956///
Dan Gohman45774ce2010-02-12 10:34:29 +00001957ICmpInst *LSRInstance::OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse) {
Dan Gohman045f8192010-01-22 00:46:49 +00001958 // Check that the loop matches the pattern we're looking for.
1959 if (Cond->getPredicate() != CmpInst::ICMP_EQ &&
1960 Cond->getPredicate() != CmpInst::ICMP_NE)
1961 return Cond;
Dan Gohman51ad99d2010-01-21 02:09:26 +00001962
Dan Gohman045f8192010-01-22 00:46:49 +00001963 SelectInst *Sel = dyn_cast<SelectInst>(Cond->getOperand(1));
1964 if (!Sel || !Sel->hasOneUse()) return Cond;
Dan Gohman51ad99d2010-01-21 02:09:26 +00001965
Dan Gohman45774ce2010-02-12 10:34:29 +00001966 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
Dan Gohman045f8192010-01-22 00:46:49 +00001967 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1968 return Cond;
Dan Gohman1d2ded72010-05-03 22:09:21 +00001969 const SCEV *One = SE.getConstant(BackedgeTakenCount->getType(), 1);
Dan Gohman51ad99d2010-01-21 02:09:26 +00001970
Dan Gohman045f8192010-01-22 00:46:49 +00001971 // Add one to the backedge-taken count to get the trip count.
Dan Gohman9b7632d2010-08-16 15:39:27 +00001972 const SCEV *IterationCount = SE.getAddExpr(One, BackedgeTakenCount);
Dan Gohman534ba372010-04-24 03:13:44 +00001973 if (IterationCount != SE.getSCEV(Sel)) return Cond;
Dan Gohman045f8192010-01-22 00:46:49 +00001974
Dan Gohman534ba372010-04-24 03:13:44 +00001975 // Check for a max calculation that matches the pattern. There's no check
1976 // for ICMP_ULE here because the comparison would be with zero, which
1977 // isn't interesting.
1978 CmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE;
Craig Topperf40110f2014-04-25 05:29:35 +00001979 const SCEVNAryExpr *Max = nullptr;
Dan Gohman534ba372010-04-24 03:13:44 +00001980 if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(BackedgeTakenCount)) {
1981 Pred = ICmpInst::ICMP_SLE;
1982 Max = S;
1983 } else if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(IterationCount)) {
1984 Pred = ICmpInst::ICMP_SLT;
1985 Max = S;
1986 } else if (const SCEVUMaxExpr *U = dyn_cast<SCEVUMaxExpr>(IterationCount)) {
1987 Pred = ICmpInst::ICMP_ULT;
1988 Max = U;
1989 } else {
1990 // No match; bail.
Dan Gohman045f8192010-01-22 00:46:49 +00001991 return Cond;
Dan Gohman534ba372010-04-24 03:13:44 +00001992 }
Dan Gohman045f8192010-01-22 00:46:49 +00001993
1994 // To handle a max with more than two operands, this optimization would
1995 // require additional checking and setup.
1996 if (Max->getNumOperands() != 2)
1997 return Cond;
1998
1999 const SCEV *MaxLHS = Max->getOperand(0);
2000 const SCEV *MaxRHS = Max->getOperand(1);
Dan Gohman534ba372010-04-24 03:13:44 +00002001
2002 // ScalarEvolution canonicalizes constants to the left. For < and >, look
2003 // for a comparison with 1. For <= and >=, a comparison with zero.
2004 if (!MaxLHS ||
2005 (ICmpInst::isTrueWhenEqual(Pred) ? !MaxLHS->isZero() : (MaxLHS != One)))
2006 return Cond;
2007
Dan Gohman045f8192010-01-22 00:46:49 +00002008 // Check the relevant induction variable for conformance to
2009 // the pattern.
Dan Gohman45774ce2010-02-12 10:34:29 +00002010 const SCEV *IV = SE.getSCEV(Cond->getOperand(0));
Dan Gohman045f8192010-01-22 00:46:49 +00002011 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(IV);
2012 if (!AR || !AR->isAffine() ||
2013 AR->getStart() != One ||
Dan Gohman45774ce2010-02-12 10:34:29 +00002014 AR->getStepRecurrence(SE) != One)
Dan Gohman045f8192010-01-22 00:46:49 +00002015 return Cond;
2016
2017 assert(AR->getLoop() == L &&
2018 "Loop condition operand is an addrec in a different loop!");
2019
2020 // Check the right operand of the select, and remember it, as it will
2021 // be used in the new comparison instruction.
Craig Topperf40110f2014-04-25 05:29:35 +00002022 Value *NewRHS = nullptr;
Dan Gohman534ba372010-04-24 03:13:44 +00002023 if (ICmpInst::isTrueWhenEqual(Pred)) {
2024 // Look for n+1, and grab n.
2025 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(1)))
Jakub Staszakf6df1e32013-03-24 09:25:47 +00002026 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1)))
2027 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS)
2028 NewRHS = BO->getOperand(0);
Dan Gohman534ba372010-04-24 03:13:44 +00002029 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(2)))
Jakub Staszakf6df1e32013-03-24 09:25:47 +00002030 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1)))
2031 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS)
2032 NewRHS = BO->getOperand(0);
Dan Gohman534ba372010-04-24 03:13:44 +00002033 if (!NewRHS)
2034 return Cond;
2035 } else if (SE.getSCEV(Sel->getOperand(1)) == MaxRHS)
Dan Gohman045f8192010-01-22 00:46:49 +00002036 NewRHS = Sel->getOperand(1);
Dan Gohman45774ce2010-02-12 10:34:29 +00002037 else if (SE.getSCEV(Sel->getOperand(2)) == MaxRHS)
Dan Gohman045f8192010-01-22 00:46:49 +00002038 NewRHS = Sel->getOperand(2);
Dan Gohman1081f1a2010-06-22 23:07:13 +00002039 else if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(MaxRHS))
2040 NewRHS = SU->getValue();
Dan Gohman534ba372010-04-24 03:13:44 +00002041 else
Dan Gohman1081f1a2010-06-22 23:07:13 +00002042 // Max doesn't match expected pattern.
2043 return Cond;
Dan Gohman045f8192010-01-22 00:46:49 +00002044
2045 // Determine the new comparison opcode. It may be signed or unsigned,
2046 // and the original comparison may be either equality or inequality.
Dan Gohman045f8192010-01-22 00:46:49 +00002047 if (Cond->getPredicate() == CmpInst::ICMP_EQ)
2048 Pred = CmpInst::getInversePredicate(Pred);
2049
2050 // Ok, everything looks ok to change the condition into an SLT or SGE and
2051 // delete the max calculation.
2052 ICmpInst *NewCond =
2053 new ICmpInst(Cond, Pred, Cond->getOperand(0), NewRHS, "scmp");
2054
2055 // Delete the max calculation instructions.
2056 Cond->replaceAllUsesWith(NewCond);
2057 CondUse->setUser(NewCond);
2058 Instruction *Cmp = cast<Instruction>(Sel->getOperand(0));
2059 Cond->eraseFromParent();
2060 Sel->eraseFromParent();
2061 if (Cmp->use_empty())
2062 Cmp->eraseFromParent();
2063 return NewCond;
Dan Gohman68e77352008-09-15 21:22:06 +00002064}
2065
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002066/// Change loop terminating condition to use the postinc iv when possible.
Dan Gohman4c4043c2010-05-20 20:05:31 +00002067void
Dan Gohman45774ce2010-02-12 10:34:29 +00002068LSRInstance::OptimizeLoopTermCond() {
2069 SmallPtrSet<Instruction *, 4> PostIncs;
2070
Evan Cheng85a9f432009-11-12 07:35:05 +00002071 BasicBlock *LatchBlock = L->getLoopLatch();
Evan Chengba4e5da72009-11-17 18:10:11 +00002072 SmallVector<BasicBlock*, 8> ExitingBlocks;
2073 L->getExitingBlocks(ExitingBlocks);
Jim Grosbach60f48542009-11-17 17:53:56 +00002074
Craig Topper042a3922015-05-25 20:01:18 +00002075 for (BasicBlock *ExitingBlock : ExitingBlocks) {
Evan Cheng85a9f432009-11-12 07:35:05 +00002076
Dan Gohman45774ce2010-02-12 10:34:29 +00002077 // Get the terminating condition for the loop if possible. If we
Evan Chengba4e5da72009-11-17 18:10:11 +00002078 // can, we want to change it to use a post-incremented version of its
2079 // induction variable, to allow coalescing the live ranges for the IV into
2080 // one register value.
Evan Cheng85a9f432009-11-12 07:35:05 +00002081
Evan Chengba4e5da72009-11-17 18:10:11 +00002082 BranchInst *TermBr = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
2083 if (!TermBr)
2084 continue;
2085 // FIXME: Overly conservative, termination condition could be an 'or' etc..
2086 if (TermBr->isUnconditional() || !isa<ICmpInst>(TermBr->getCondition()))
2087 continue;
Evan Cheng85a9f432009-11-12 07:35:05 +00002088
Evan Chengba4e5da72009-11-17 18:10:11 +00002089 // Search IVUsesByStride to find Cond's IVUse if there is one.
Craig Topperf40110f2014-04-25 05:29:35 +00002090 IVStrideUse *CondUse = nullptr;
Evan Chengba4e5da72009-11-17 18:10:11 +00002091 ICmpInst *Cond = cast<ICmpInst>(TermBr->getCondition());
Dan Gohman45774ce2010-02-12 10:34:29 +00002092 if (!FindIVUserForCond(Cond, CondUse))
Evan Chengba4e5da72009-11-17 18:10:11 +00002093 continue;
2094
Evan Chengba4e5da72009-11-17 18:10:11 +00002095 // If the trip count is computed in terms of a max (due to ScalarEvolution
2096 // being unable to find a sufficient guard, for example), change the loop
2097 // comparison to use SLT or ULT instead of NE.
Dan Gohman45774ce2010-02-12 10:34:29 +00002098 // One consequence of doing this now is that it disrupts the count-down
2099 // optimization. That's not always a bad thing though, because in such
2100 // cases it may still be worthwhile to avoid a max.
2101 Cond = OptimizeMax(Cond, CondUse);
Evan Chengba4e5da72009-11-17 18:10:11 +00002102
Dan Gohman45774ce2010-02-12 10:34:29 +00002103 // If this exiting block dominates the latch block, it may also use
2104 // the post-inc value if it won't be shared with other uses.
2105 // Check for dominance.
2106 if (!DT.dominates(ExitingBlock, LatchBlock))
Dan Gohman045f8192010-01-22 00:46:49 +00002107 continue;
Evan Chengba4e5da72009-11-17 18:10:11 +00002108
Dan Gohman45774ce2010-02-12 10:34:29 +00002109 // Conservatively avoid trying to use the post-inc value in non-latch
2110 // exits if there may be pre-inc users in intervening blocks.
Dan Gohman2d0f96d2010-02-14 03:21:49 +00002111 if (LatchBlock != ExitingBlock)
Dan Gohman45774ce2010-02-12 10:34:29 +00002112 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
2113 // Test if the use is reachable from the exiting block. This dominator
2114 // query is a conservative approximation of reachability.
2115 if (&*UI != CondUse &&
2116 !DT.properlyDominates(UI->getUser()->getParent(), ExitingBlock)) {
2117 // Conservatively assume there may be reuse if the quotient of their
2118 // strides could be a legal scale.
Dan Gohmane637ff52010-04-19 21:48:58 +00002119 const SCEV *A = IU.getStride(*CondUse, L);
2120 const SCEV *B = IU.getStride(*UI, L);
Dan Gohmand006ab92010-04-07 22:27:08 +00002121 if (!A || !B) continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00002122 if (SE.getTypeSizeInBits(A->getType()) !=
2123 SE.getTypeSizeInBits(B->getType())) {
2124 if (SE.getTypeSizeInBits(A->getType()) >
2125 SE.getTypeSizeInBits(B->getType()))
2126 B = SE.getSignExtendExpr(B, A->getType());
2127 else
2128 A = SE.getSignExtendExpr(A, B->getType());
2129 }
2130 if (const SCEVConstant *D =
Dan Gohman4eebb942010-02-19 19:35:48 +00002131 dyn_cast_or_null<SCEVConstant>(getExactSDiv(B, A, SE))) {
Dan Gohman86110fa2010-05-20 22:25:20 +00002132 const ConstantInt *C = D->getValue();
Dan Gohman45774ce2010-02-12 10:34:29 +00002133 // Stride of one or negative one can have reuse with non-addresses.
Dan Gohman86110fa2010-05-20 22:25:20 +00002134 if (C->isOne() || C->isAllOnesValue())
Dan Gohman45774ce2010-02-12 10:34:29 +00002135 goto decline_post_inc;
2136 // Avoid weird situations.
Dan Gohman86110fa2010-05-20 22:25:20 +00002137 if (C->getValue().getMinSignedBits() >= 64 ||
2138 C->getValue().isMinSignedValue())
Dan Gohman45774ce2010-02-12 10:34:29 +00002139 goto decline_post_inc;
2140 // Check for possible scaled-address reuse.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002141 MemAccessTy AccessTy = getAccessType(UI->getUser());
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002142 int64_t Scale = C->getSExtValue();
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002143 if (TTI.isLegalAddressingMode(AccessTy.MemTy, /*BaseGV=*/nullptr,
2144 /*BaseOffset=*/0,
2145 /*HasBaseReg=*/false, Scale,
2146 AccessTy.AddrSpace))
Dan Gohman45774ce2010-02-12 10:34:29 +00002147 goto decline_post_inc;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002148 Scale = -Scale;
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002149 if (TTI.isLegalAddressingMode(AccessTy.MemTy, /*BaseGV=*/nullptr,
2150 /*BaseOffset=*/0,
2151 /*HasBaseReg=*/false, Scale,
2152 AccessTy.AddrSpace))
Dan Gohman45774ce2010-02-12 10:34:29 +00002153 goto decline_post_inc;
2154 }
2155 }
2156
David Greene2330f782009-12-23 22:58:38 +00002157 DEBUG(dbgs() << " Change loop exiting icmp to use postinc iv: "
Dan Gohman45774ce2010-02-12 10:34:29 +00002158 << *Cond << '\n');
Evan Chengba4e5da72009-11-17 18:10:11 +00002159
2160 // It's possible for the setcc instruction to be anywhere in the loop, and
2161 // possible for it to have multiple users. If it is not immediately before
2162 // the exiting block branch, move it.
Dan Gohman45774ce2010-02-12 10:34:29 +00002163 if (&*++BasicBlock::iterator(Cond) != TermBr) {
2164 if (Cond->hasOneUse()) {
Evan Chengba4e5da72009-11-17 18:10:11 +00002165 Cond->moveBefore(TermBr);
2166 } else {
Dan Gohman45774ce2010-02-12 10:34:29 +00002167 // Clone the terminating condition and insert into the loopend.
2168 ICmpInst *OldCond = Cond;
Evan Chengba4e5da72009-11-17 18:10:11 +00002169 Cond = cast<ICmpInst>(Cond->clone());
2170 Cond->setName(L->getHeader()->getName() + ".termcond");
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00002171 ExitingBlock->getInstList().insert(TermBr->getIterator(), Cond);
Evan Chengba4e5da72009-11-17 18:10:11 +00002172
2173 // Clone the IVUse, as the old use still exists!
Andrew Trickfc4ccb22011-06-21 15:43:52 +00002174 CondUse = &IU.AddUser(Cond, CondUse->getOperandValToReplace());
Dan Gohman45774ce2010-02-12 10:34:29 +00002175 TermBr->replaceUsesOfWith(OldCond, Cond);
Evan Chengba4e5da72009-11-17 18:10:11 +00002176 }
Evan Cheng85a9f432009-11-12 07:35:05 +00002177 }
2178
Evan Chengba4e5da72009-11-17 18:10:11 +00002179 // If we get to here, we know that we can transform the setcc instruction to
2180 // use the post-incremented version of the IV, allowing us to coalesce the
2181 // live ranges for the IV correctly.
Dan Gohmand006ab92010-04-07 22:27:08 +00002182 CondUse->transformToPostInc(L);
Evan Chengba4e5da72009-11-17 18:10:11 +00002183 Changed = true;
2184
Dan Gohman45774ce2010-02-12 10:34:29 +00002185 PostIncs.insert(Cond);
2186 decline_post_inc:;
Dan Gohman51ad99d2010-01-21 02:09:26 +00002187 }
Dan Gohman45774ce2010-02-12 10:34:29 +00002188
2189 // Determine an insertion point for the loop induction variable increment. It
2190 // must dominate all the post-inc comparisons we just set up, and it must
2191 // dominate the loop latch edge.
2192 IVIncInsertPos = L->getLoopLatch()->getTerminator();
Craig Topper46276792014-08-24 23:23:06 +00002193 for (Instruction *Inst : PostIncs) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002194 BasicBlock *BB =
2195 DT.findNearestCommonDominator(IVIncInsertPos->getParent(),
Craig Topper46276792014-08-24 23:23:06 +00002196 Inst->getParent());
2197 if (BB == Inst->getParent())
2198 IVIncInsertPos = Inst;
Dan Gohman45774ce2010-02-12 10:34:29 +00002199 else if (BB != IVIncInsertPos->getParent())
2200 IVIncInsertPos = BB->getTerminator();
2201 }
Dan Gohman51ad99d2010-01-21 02:09:26 +00002202}
2203
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002204/// Determine if the given use can accommodate a fixup at the given offset and
2205/// other details. If so, update the use and return true.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002206bool LSRInstance::reconcileNewOffset(LSRUse &LU, int64_t NewOffset,
2207 bool HasBaseReg, LSRUse::KindType Kind,
2208 MemAccessTy AccessTy) {
Dan Gohman110ed642010-09-01 01:45:53 +00002209 int64_t NewMinOffset = LU.MinOffset;
2210 int64_t NewMaxOffset = LU.MaxOffset;
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002211 MemAccessTy NewAccessTy = AccessTy;
Dan Gohman045f8192010-01-22 00:46:49 +00002212
Dan Gohman45774ce2010-02-12 10:34:29 +00002213 // Check for a mismatched kind. It's tempting to collapse mismatched kinds to
2214 // something conservative, however this can pessimize in the case that one of
2215 // the uses will have all its uses outside the loop, for example.
2216 if (LU.Kind != Kind)
Dan Gohman045f8192010-01-22 00:46:49 +00002217 return false;
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00002218
Dan Gohman45774ce2010-02-12 10:34:29 +00002219 // Check for a mismatched access type, and fall back conservatively as needed.
Dan Gohman32655902010-06-19 21:30:18 +00002220 // TODO: Be less conservative when the type is similar and can use the same
2221 // addressing modes.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002222 if (Kind == LSRUse::Address) {
2223 if (AccessTy != LU.AccessTy)
2224 NewAccessTy = MemAccessTy::getUnknown(AccessTy.MemTy->getContext());
2225 }
Dan Gohman51ad99d2010-01-21 02:09:26 +00002226
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00002227 // Conservatively assume HasBaseReg is true for now.
2228 if (NewOffset < LU.MinOffset) {
2229 if (!isAlwaysFoldable(TTI, Kind, NewAccessTy, /*BaseGV=*/nullptr,
2230 LU.MaxOffset - NewOffset, HasBaseReg))
2231 return false;
2232 NewMinOffset = NewOffset;
2233 } else if (NewOffset > LU.MaxOffset) {
2234 if (!isAlwaysFoldable(TTI, Kind, NewAccessTy, /*BaseGV=*/nullptr,
2235 NewOffset - LU.MinOffset, HasBaseReg))
2236 return false;
2237 NewMaxOffset = NewOffset;
2238 }
2239
Dan Gohman45774ce2010-02-12 10:34:29 +00002240 // Update the use.
Dan Gohman110ed642010-09-01 01:45:53 +00002241 LU.MinOffset = NewMinOffset;
2242 LU.MaxOffset = NewMaxOffset;
2243 LU.AccessTy = NewAccessTy;
2244 if (NewOffset != LU.Offsets.back())
2245 LU.Offsets.push_back(NewOffset);
Dan Gohman29916e02010-01-21 22:42:49 +00002246 return true;
2247}
2248
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002249/// Return an LSRUse index and an offset value for a fixup which needs the given
2250/// expression, with the given kind and optional access type. Either reuse an
2251/// existing use or create a new one, as needed.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002252std::pair<size_t, int64_t> LSRInstance::getUse(const SCEV *&Expr,
2253 LSRUse::KindType Kind,
2254 MemAccessTy AccessTy) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002255 const SCEV *Copy = Expr;
2256 int64_t Offset = ExtractImmediate(Expr, SE);
Evan Cheng85a9f432009-11-12 07:35:05 +00002257
Dan Gohman45774ce2010-02-12 10:34:29 +00002258 // Basic uses can't accept any offset, for example.
Craig Topperf40110f2014-04-25 05:29:35 +00002259 if (!isAlwaysFoldable(TTI, Kind, AccessTy, /*BaseGV=*/ nullptr,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002260 Offset, /*HasBaseReg=*/ true)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002261 Expr = Copy;
2262 Offset = 0;
2263 }
2264
2265 std::pair<UseMapTy::iterator, bool> P =
Benjamin Kramer62fb0cf2014-03-15 17:17:48 +00002266 UseMap.insert(std::make_pair(LSRUse::SCEVUseKindPair(Expr, Kind), 0));
Dan Gohman45774ce2010-02-12 10:34:29 +00002267 if (!P.second) {
2268 // A use already existed with this base.
2269 size_t LUIdx = P.first->second;
2270 LSRUse &LU = Uses[LUIdx];
Dan Gohman110ed642010-09-01 01:45:53 +00002271 if (reconcileNewOffset(LU, Offset, /*HasBaseReg=*/true, Kind, AccessTy))
Dan Gohman45774ce2010-02-12 10:34:29 +00002272 // Reuse this use.
2273 return std::make_pair(LUIdx, Offset);
2274 }
2275
2276 // Create a new use.
2277 size_t LUIdx = Uses.size();
2278 P.first->second = LUIdx;
2279 Uses.push_back(LSRUse(Kind, AccessTy));
2280 LSRUse &LU = Uses[LUIdx];
2281
Dan Gohman110ed642010-09-01 01:45:53 +00002282 // We don't need to track redundant offsets, but we don't need to go out
2283 // of our way here to avoid them.
2284 if (LU.Offsets.empty() || Offset != LU.Offsets.back())
2285 LU.Offsets.push_back(Offset);
2286
Dan Gohman45774ce2010-02-12 10:34:29 +00002287 LU.MinOffset = Offset;
2288 LU.MaxOffset = Offset;
2289 return std::make_pair(LUIdx, Offset);
2290}
2291
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002292/// Delete the given use from the Uses list.
Dan Gohmana7b68d62010-10-07 23:33:43 +00002293void LSRInstance::DeleteUse(LSRUse &LU, size_t LUIdx) {
Dan Gohman110ed642010-09-01 01:45:53 +00002294 if (&LU != &Uses.back())
Dan Gohman80a96082010-05-20 15:17:54 +00002295 std::swap(LU, Uses.back());
2296 Uses.pop_back();
Dan Gohmana7b68d62010-10-07 23:33:43 +00002297
2298 // Update RegUses.
Sanjoy Das302bfd02015-08-16 18:22:43 +00002299 RegUses.swapAndDropUse(LUIdx, Uses.size());
Dan Gohman80a96082010-05-20 15:17:54 +00002300}
2301
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002302/// Look for a use distinct from OrigLU which is has a formula that has the same
2303/// registers as the given formula.
Dan Gohman20fab452010-05-19 23:43:12 +00002304LSRUse *
2305LSRInstance::FindUseWithSimilarFormula(const Formula &OrigF,
Dan Gohman110ed642010-09-01 01:45:53 +00002306 const LSRUse &OrigLU) {
2307 // Search all uses for the formula. This could be more clever.
Dan Gohman20fab452010-05-19 23:43:12 +00002308 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2309 LSRUse &LU = Uses[LUIdx];
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002310 // Check whether this use is close enough to OrigLU, to see whether it's
2311 // worthwhile looking through its formulae.
2312 // Ignore ICmpZero uses because they may contain formulae generated by
2313 // GenerateICmpZeroScales, in which case adding fixup offsets may
2314 // be invalid.
Dan Gohman20fab452010-05-19 23:43:12 +00002315 if (&LU != &OrigLU &&
2316 LU.Kind != LSRUse::ICmpZero &&
2317 LU.Kind == OrigLU.Kind && OrigLU.AccessTy == LU.AccessTy &&
Dan Gohman14152082010-07-15 20:24:58 +00002318 LU.WidestFixupType == OrigLU.WidestFixupType &&
Dan Gohman20fab452010-05-19 23:43:12 +00002319 LU.HasFormulaWithSameRegs(OrigF)) {
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002320 // Scan through this use's formulae.
Craig Topper042a3922015-05-25 20:01:18 +00002321 for (const Formula &F : LU.Formulae) {
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002322 // Check to see if this formula has the same registers and symbols
2323 // as OrigF.
Dan Gohman20fab452010-05-19 23:43:12 +00002324 if (F.BaseRegs == OrigF.BaseRegs &&
2325 F.ScaledReg == OrigF.ScaledReg &&
Chandler Carruth6e479322013-01-07 15:04:40 +00002326 F.BaseGV == OrigF.BaseGV &&
2327 F.Scale == OrigF.Scale &&
Dan Gohman6136e942011-05-03 00:46:49 +00002328 F.UnfoldedOffset == OrigF.UnfoldedOffset) {
Chandler Carruth6e479322013-01-07 15:04:40 +00002329 if (F.BaseOffset == 0)
Dan Gohman20fab452010-05-19 23:43:12 +00002330 return &LU;
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002331 // This is the formula where all the registers and symbols matched;
2332 // there aren't going to be any others. Since we declined it, we
Benjamin Kramerbde91762012-06-02 10:20:22 +00002333 // can skip the rest of the formulae and proceed to the next LSRUse.
Dan Gohman20fab452010-05-19 23:43:12 +00002334 break;
2335 }
2336 }
2337 }
2338 }
2339
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002340 // Nothing looked good.
Craig Topperf40110f2014-04-25 05:29:35 +00002341 return nullptr;
Dan Gohman20fab452010-05-19 23:43:12 +00002342}
2343
Dan Gohman45774ce2010-02-12 10:34:29 +00002344void LSRInstance::CollectInterestingTypesAndFactors() {
2345 SmallSetVector<const SCEV *, 4> Strides;
2346
Dan Gohman2446f572010-02-19 00:05:23 +00002347 // Collect interesting types and strides.
Dan Gohmand006ab92010-04-07 22:27:08 +00002348 SmallVector<const SCEV *, 4> Worklist;
Craig Topper042a3922015-05-25 20:01:18 +00002349 for (const IVStrideUse &U : IU) {
2350 const SCEV *Expr = IU.getExpr(U);
Dan Gohman45774ce2010-02-12 10:34:29 +00002351
2352 // Collect interesting types.
Dan Gohmand006ab92010-04-07 22:27:08 +00002353 Types.insert(SE.getEffectiveSCEVType(Expr->getType()));
Dan Gohman45774ce2010-02-12 10:34:29 +00002354
Dan Gohmand006ab92010-04-07 22:27:08 +00002355 // Add strides for mentioned loops.
2356 Worklist.push_back(Expr);
2357 do {
2358 const SCEV *S = Worklist.pop_back_val();
2359 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
Andrew Trickd97b83e2012-03-22 22:42:45 +00002360 if (AR->getLoop() == L)
Andrew Tricke8b4f402011-12-10 00:25:00 +00002361 Strides.insert(AR->getStepRecurrence(SE));
Dan Gohmand006ab92010-04-07 22:27:08 +00002362 Worklist.push_back(AR->getStart());
2363 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Dan Gohmandd41bba2010-06-21 19:47:52 +00002364 Worklist.append(Add->op_begin(), Add->op_end());
Dan Gohmand006ab92010-04-07 22:27:08 +00002365 }
2366 } while (!Worklist.empty());
Dan Gohman2446f572010-02-19 00:05:23 +00002367 }
2368
2369 // Compute interesting factors from the set of interesting strides.
2370 for (SmallSetVector<const SCEV *, 4>::const_iterator
2371 I = Strides.begin(), E = Strides.end(); I != E; ++I)
Dan Gohman45774ce2010-02-12 10:34:29 +00002372 for (SmallSetVector<const SCEV *, 4>::const_iterator NewStrideIter =
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002373 std::next(I); NewStrideIter != E; ++NewStrideIter) {
Dan Gohman2446f572010-02-19 00:05:23 +00002374 const SCEV *OldStride = *I;
Dan Gohman45774ce2010-02-12 10:34:29 +00002375 const SCEV *NewStride = *NewStrideIter;
Dan Gohman45774ce2010-02-12 10:34:29 +00002376
2377 if (SE.getTypeSizeInBits(OldStride->getType()) !=
2378 SE.getTypeSizeInBits(NewStride->getType())) {
2379 if (SE.getTypeSizeInBits(OldStride->getType()) >
2380 SE.getTypeSizeInBits(NewStride->getType()))
2381 NewStride = SE.getSignExtendExpr(NewStride, OldStride->getType());
2382 else
2383 OldStride = SE.getSignExtendExpr(OldStride, NewStride->getType());
2384 }
2385 if (const SCEVConstant *Factor =
Dan Gohman4eebb942010-02-19 19:35:48 +00002386 dyn_cast_or_null<SCEVConstant>(getExactSDiv(NewStride, OldStride,
2387 SE, true))) {
Sanjoy Das0de2fec2015-12-17 20:28:46 +00002388 if (Factor->getAPInt().getMinSignedBits() <= 64)
2389 Factors.insert(Factor->getAPInt().getSExtValue());
Dan Gohman45774ce2010-02-12 10:34:29 +00002390 } else if (const SCEVConstant *Factor =
Dan Gohman8c16b382010-02-22 04:11:59 +00002391 dyn_cast_or_null<SCEVConstant>(getExactSDiv(OldStride,
2392 NewStride,
Dan Gohman4eebb942010-02-19 19:35:48 +00002393 SE, true))) {
Sanjoy Das0de2fec2015-12-17 20:28:46 +00002394 if (Factor->getAPInt().getMinSignedBits() <= 64)
2395 Factors.insert(Factor->getAPInt().getSExtValue());
Dan Gohman45774ce2010-02-12 10:34:29 +00002396 }
2397 }
Dan Gohman45774ce2010-02-12 10:34:29 +00002398
2399 // If all uses use the same type, don't bother looking for truncation-based
2400 // reuse.
2401 if (Types.size() == 1)
2402 Types.clear();
2403
2404 DEBUG(print_factors_and_types(dbgs()));
2405}
2406
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002407/// Helper for CollectChains that finds an IV operand (computed by an AddRec in
2408/// this loop) within [OI,OE) or returns OE. If IVUsers mapped Instructions to
2409/// IVStrideUses, we could partially skip this.
Andrew Trick29fe5f02012-01-09 19:50:34 +00002410static User::op_iterator
2411findIVOperand(User::op_iterator OI, User::op_iterator OE,
2412 Loop *L, ScalarEvolution &SE) {
2413 for(; OI != OE; ++OI) {
2414 if (Instruction *Oper = dyn_cast<Instruction>(*OI)) {
2415 if (!SE.isSCEVable(Oper->getType()))
2416 continue;
2417
2418 if (const SCEVAddRecExpr *AR =
2419 dyn_cast<SCEVAddRecExpr>(SE.getSCEV(Oper))) {
2420 if (AR->getLoop() == L)
2421 break;
2422 }
2423 }
2424 }
2425 return OI;
2426}
2427
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002428/// IVChain logic must consistenctly peek base TruncInst operands, so wrap it in
2429/// a convenient helper.
Andrew Trick29fe5f02012-01-09 19:50:34 +00002430static Value *getWideOperand(Value *Oper) {
2431 if (TruncInst *Trunc = dyn_cast<TruncInst>(Oper))
2432 return Trunc->getOperand(0);
2433 return Oper;
2434}
2435
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002436/// Return true if we allow an IV chain to include both types.
Andrew Trick29fe5f02012-01-09 19:50:34 +00002437static bool isCompatibleIVType(Value *LVal, Value *RVal) {
2438 Type *LType = LVal->getType();
2439 Type *RType = RVal->getType();
2440 return (LType == RType) || (LType->isPointerTy() && RType->isPointerTy());
2441}
2442
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002443/// Return an approximation of this SCEV expression's "base", or NULL for any
2444/// constant. Returning the expression itself is conservative. Returning a
2445/// deeper subexpression is more precise and valid as long as it isn't less
2446/// complex than another subexpression. For expressions involving multiple
2447/// unscaled values, we need to return the pointer-type SCEVUnknown. This avoids
2448/// forming chains across objects, such as: PrevOper==a[i], IVOper==b[i],
2449/// IVInc==b-a.
Andrew Trickd5d2db92012-01-10 01:45:08 +00002450///
2451/// Since SCEVUnknown is the rightmost type, and pointers are the rightmost
2452/// SCEVUnknown, we simply return the rightmost SCEV operand.
2453static const SCEV *getExprBase(const SCEV *S) {
2454 switch (S->getSCEVType()) {
2455 default: // uncluding scUnknown.
2456 return S;
2457 case scConstant:
Craig Topperf40110f2014-04-25 05:29:35 +00002458 return nullptr;
Andrew Trickd5d2db92012-01-10 01:45:08 +00002459 case scTruncate:
2460 return getExprBase(cast<SCEVTruncateExpr>(S)->getOperand());
2461 case scZeroExtend:
2462 return getExprBase(cast<SCEVZeroExtendExpr>(S)->getOperand());
2463 case scSignExtend:
2464 return getExprBase(cast<SCEVSignExtendExpr>(S)->getOperand());
2465 case scAddExpr: {
2466 // Skip over scaled operands (scMulExpr) to follow add operands as long as
2467 // there's nothing more complex.
2468 // FIXME: not sure if we want to recognize negation.
2469 const SCEVAddExpr *Add = cast<SCEVAddExpr>(S);
2470 for (std::reverse_iterator<SCEVAddExpr::op_iterator> I(Add->op_end()),
2471 E(Add->op_begin()); I != E; ++I) {
2472 const SCEV *SubExpr = *I;
2473 if (SubExpr->getSCEVType() == scAddExpr)
2474 return getExprBase(SubExpr);
2475
2476 if (SubExpr->getSCEVType() != scMulExpr)
2477 return SubExpr;
2478 }
2479 return S; // all operands are scaled, be conservative.
2480 }
2481 case scAddRecExpr:
2482 return getExprBase(cast<SCEVAddRecExpr>(S)->getStart());
2483 }
2484}
2485
Andrew Trick248d4102012-01-09 21:18:52 +00002486/// Return true if the chain increment is profitable to expand into a loop
2487/// invariant value, which may require its own register. A profitable chain
2488/// increment will be an offset relative to the same base. We allow such offsets
2489/// to potentially be used as chain increment as long as it's not obviously
2490/// expensive to expand using real instructions.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002491bool IVChain::isProfitableIncrement(const SCEV *OperExpr,
2492 const SCEV *IncExpr,
2493 ScalarEvolution &SE) {
2494 // Aggressively form chains when -stress-ivchain.
Andrew Trick248d4102012-01-09 21:18:52 +00002495 if (StressIVChain)
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002496 return true;
Andrew Trick248d4102012-01-09 21:18:52 +00002497
Andrew Trickd5d2db92012-01-10 01:45:08 +00002498 // Do not replace a constant offset from IV head with a nonconstant IV
2499 // increment.
2500 if (!isa<SCEVConstant>(IncExpr)) {
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002501 const SCEV *HeadExpr = SE.getSCEV(getWideOperand(Incs[0].IVOperand));
Andrew Trickd5d2db92012-01-10 01:45:08 +00002502 if (isa<SCEVConstant>(SE.getMinusSCEV(OperExpr, HeadExpr)))
2503 return 0;
2504 }
2505
2506 SmallPtrSet<const SCEV*, 8> Processed;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002507 return !isHighCostExpansion(IncExpr, Processed, SE);
Andrew Trick248d4102012-01-09 21:18:52 +00002508}
2509
2510/// Return true if the number of registers needed for the chain is estimated to
2511/// be less than the number required for the individual IV users. First prohibit
2512/// any IV users that keep the IV live across increments (the Users set should
2513/// be empty). Next count the number and type of increments in the chain.
2514///
2515/// Chaining IVs can lead to considerable code bloat if ISEL doesn't
2516/// effectively use postinc addressing modes. Only consider it profitable it the
2517/// increments can be computed in fewer registers when chained.
2518///
2519/// TODO: Consider IVInc free if it's already used in another chains.
2520static bool
Craig Topper71b7b682014-08-21 05:55:13 +00002521isProfitableChain(IVChain &Chain, SmallPtrSetImpl<Instruction*> &Users,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002522 ScalarEvolution &SE, const TargetTransformInfo &TTI) {
Andrew Trick248d4102012-01-09 21:18:52 +00002523 if (StressIVChain)
2524 return true;
2525
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002526 if (!Chain.hasIncs())
Andrew Trickd5d2db92012-01-10 01:45:08 +00002527 return false;
2528
2529 if (!Users.empty()) {
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002530 DEBUG(dbgs() << "Chain: " << *Chain.Incs[0].UserInst << " users:\n";
Craig Topper46276792014-08-24 23:23:06 +00002531 for (Instruction *Inst : Users) {
2532 dbgs() << " " << *Inst << "\n";
Andrew Trickd5d2db92012-01-10 01:45:08 +00002533 });
2534 return false;
2535 }
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002536 assert(!Chain.Incs.empty() && "empty IV chains are not allowed");
Andrew Trickd5d2db92012-01-10 01:45:08 +00002537
2538 // The chain itself may require a register, so intialize cost to 1.
2539 int cost = 1;
2540
2541 // A complete chain likely eliminates the need for keeping the original IV in
2542 // a register. LSR does not currently know how to form a complete chain unless
2543 // the header phi already exists.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002544 if (isa<PHINode>(Chain.tailUserInst())
2545 && SE.getSCEV(Chain.tailUserInst()) == Chain.Incs[0].IncExpr) {
Andrew Trickd5d2db92012-01-10 01:45:08 +00002546 --cost;
2547 }
Craig Topperf40110f2014-04-25 05:29:35 +00002548 const SCEV *LastIncExpr = nullptr;
Andrew Trickd5d2db92012-01-10 01:45:08 +00002549 unsigned NumConstIncrements = 0;
2550 unsigned NumVarIncrements = 0;
2551 unsigned NumReusedIncrements = 0;
Craig Topper042a3922015-05-25 20:01:18 +00002552 for (const IVInc &Inc : Chain) {
2553 if (Inc.IncExpr->isZero())
Andrew Trickd5d2db92012-01-10 01:45:08 +00002554 continue;
2555
2556 // Incrementing by zero or some constant is neutral. We assume constants can
2557 // be folded into an addressing mode or an add's immediate operand.
Craig Topper042a3922015-05-25 20:01:18 +00002558 if (isa<SCEVConstant>(Inc.IncExpr)) {
Andrew Trickd5d2db92012-01-10 01:45:08 +00002559 ++NumConstIncrements;
2560 continue;
2561 }
2562
Craig Topper042a3922015-05-25 20:01:18 +00002563 if (Inc.IncExpr == LastIncExpr)
Andrew Trickd5d2db92012-01-10 01:45:08 +00002564 ++NumReusedIncrements;
2565 else
2566 ++NumVarIncrements;
2567
Craig Topper042a3922015-05-25 20:01:18 +00002568 LastIncExpr = Inc.IncExpr;
Andrew Trickd5d2db92012-01-10 01:45:08 +00002569 }
2570 // An IV chain with a single increment is handled by LSR's postinc
2571 // uses. However, a chain with multiple increments requires keeping the IV's
2572 // value live longer than it needs to be if chained.
2573 if (NumConstIncrements > 1)
2574 --cost;
2575
2576 // Materializing increment expressions in the preheader that didn't exist in
2577 // the original code may cost a register. For example, sign-extended array
2578 // indices can produce ridiculous increments like this:
2579 // IV + ((sext i32 (2 * %s) to i64) + (-1 * (sext i32 %s to i64)))
2580 cost += NumVarIncrements;
2581
2582 // Reusing variable increments likely saves a register to hold the multiple of
2583 // the stride.
2584 cost -= NumReusedIncrements;
2585
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002586 DEBUG(dbgs() << "Chain: " << *Chain.Incs[0].UserInst << " Cost: " << cost
2587 << "\n");
Andrew Trickd5d2db92012-01-10 01:45:08 +00002588
2589 return cost < 0;
Andrew Trick248d4102012-01-09 21:18:52 +00002590}
2591
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002592/// Add this IV user to an existing chain or make it the head of a new chain.
Andrew Trick29fe5f02012-01-09 19:50:34 +00002593void LSRInstance::ChainInstruction(Instruction *UserInst, Instruction *IVOper,
2594 SmallVectorImpl<ChainUsers> &ChainUsersVec) {
2595 // When IVs are used as types of varying widths, they are generally converted
2596 // to a wider type with some uses remaining narrow under a (free) trunc.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002597 Value *const NextIV = getWideOperand(IVOper);
2598 const SCEV *const OperExpr = SE.getSCEV(NextIV);
2599 const SCEV *const OperExprBase = getExprBase(OperExpr);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002600
2601 // Visit all existing chains. Check if its IVOper can be computed as a
2602 // profitable loop invariant increment from the last link in the Chain.
2603 unsigned ChainIdx = 0, NChains = IVChainVec.size();
Craig Topperf40110f2014-04-25 05:29:35 +00002604 const SCEV *LastIncExpr = nullptr;
Andrew Trick29fe5f02012-01-09 19:50:34 +00002605 for (; ChainIdx < NChains; ++ChainIdx) {
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002606 IVChain &Chain = IVChainVec[ChainIdx];
2607
2608 // Prune the solution space aggressively by checking that both IV operands
2609 // are expressions that operate on the same unscaled SCEVUnknown. This
2610 // "base" will be canceled by the subsequent getMinusSCEV call. Checking
2611 // first avoids creating extra SCEV expressions.
2612 if (!StressIVChain && Chain.ExprBase != OperExprBase)
2613 continue;
2614
2615 Value *PrevIV = getWideOperand(Chain.Incs.back().IVOperand);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002616 if (!isCompatibleIVType(PrevIV, NextIV))
2617 continue;
2618
Andrew Trick356a8962012-03-26 20:28:35 +00002619 // A phi node terminates a chain.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002620 if (isa<PHINode>(UserInst) && isa<PHINode>(Chain.tailUserInst()))
Andrew Trick29fe5f02012-01-09 19:50:34 +00002621 continue;
2622
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002623 // The increment must be loop-invariant so it can be kept in a register.
2624 const SCEV *PrevExpr = SE.getSCEV(PrevIV);
2625 const SCEV *IncExpr = SE.getMinusSCEV(OperExpr, PrevExpr);
2626 if (!SE.isLoopInvariant(IncExpr, L))
2627 continue;
2628
2629 if (Chain.isProfitableIncrement(OperExpr, IncExpr, SE)) {
Andrew Trick29fe5f02012-01-09 19:50:34 +00002630 LastIncExpr = IncExpr;
2631 break;
2632 }
2633 }
2634 // If we haven't found a chain, create a new one, unless we hit the max. Don't
2635 // bother for phi nodes, because they must be last in the chain.
2636 if (ChainIdx == NChains) {
2637 if (isa<PHINode>(UserInst))
2638 return;
Andrew Trick248d4102012-01-09 21:18:52 +00002639 if (NChains >= MaxChains && !StressIVChain) {
Andrew Trick29fe5f02012-01-09 19:50:34 +00002640 DEBUG(dbgs() << "IV Chain Limit\n");
2641 return;
2642 }
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002643 LastIncExpr = OperExpr;
Andrew Trickb9c822a2012-01-20 21:23:40 +00002644 // IVUsers may have skipped over sign/zero extensions. We don't currently
2645 // attempt to form chains involving extensions unless they can be hoisted
2646 // into this loop's AddRec.
2647 if (!isa<SCEVAddRecExpr>(LastIncExpr))
2648 return;
Andrew Trick29fe5f02012-01-09 19:50:34 +00002649 ++NChains;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002650 IVChainVec.push_back(IVChain(IVInc(UserInst, IVOper, LastIncExpr),
2651 OperExprBase));
Andrew Trick29fe5f02012-01-09 19:50:34 +00002652 ChainUsersVec.resize(NChains);
Jakob Stoklund Olesen293673d2012-04-25 18:01:32 +00002653 DEBUG(dbgs() << "IV Chain#" << ChainIdx << " Head: (" << *UserInst
2654 << ") IV=" << *LastIncExpr << "\n");
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002655 } else {
Jakob Stoklund Olesen293673d2012-04-25 18:01:32 +00002656 DEBUG(dbgs() << "IV Chain#" << ChainIdx << " Inc: (" << *UserInst
2657 << ") IV+" << *LastIncExpr << "\n");
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002658 // Add this IV user to the end of the chain.
2659 IVChainVec[ChainIdx].add(IVInc(UserInst, IVOper, LastIncExpr));
2660 }
Andrew Trickbc705902013-02-09 01:11:01 +00002661 IVChain &Chain = IVChainVec[ChainIdx];
Andrew Trick29fe5f02012-01-09 19:50:34 +00002662
2663 SmallPtrSet<Instruction*,4> &NearUsers = ChainUsersVec[ChainIdx].NearUsers;
2664 // This chain's NearUsers become FarUsers.
2665 if (!LastIncExpr->isZero()) {
2666 ChainUsersVec[ChainIdx].FarUsers.insert(NearUsers.begin(),
2667 NearUsers.end());
2668 NearUsers.clear();
2669 }
2670
2671 // All other uses of IVOperand become near uses of the chain.
2672 // We currently ignore intermediate values within SCEV expressions, assuming
2673 // they will eventually be used be the current chain, or can be computed
2674 // from one of the chain increments. To be more precise we could
2675 // transitively follow its user and only add leaf IV users to the set.
Chandler Carruthcdf47882014-03-09 03:16:01 +00002676 for (User *U : IVOper->users()) {
2677 Instruction *OtherUse = dyn_cast<Instruction>(U);
Andrew Trickbc705902013-02-09 01:11:01 +00002678 if (!OtherUse)
Andrew Tricke51feea2012-03-26 18:03:16 +00002679 continue;
Andrew Trickbc705902013-02-09 01:11:01 +00002680 // Uses in the chain will no longer be uses if the chain is formed.
2681 // Include the head of the chain in this iteration (not Chain.begin()).
2682 IVChain::const_iterator IncIter = Chain.Incs.begin();
2683 IVChain::const_iterator IncEnd = Chain.Incs.end();
2684 for( ; IncIter != IncEnd; ++IncIter) {
2685 if (IncIter->UserInst == OtherUse)
2686 break;
2687 }
2688 if (IncIter != IncEnd)
2689 continue;
2690
Andrew Trick29fe5f02012-01-09 19:50:34 +00002691 if (SE.isSCEVable(OtherUse->getType())
2692 && !isa<SCEVUnknown>(SE.getSCEV(OtherUse))
2693 && IU.isIVUserOrOperand(OtherUse)) {
2694 continue;
2695 }
Andrew Tricke51feea2012-03-26 18:03:16 +00002696 NearUsers.insert(OtherUse);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002697 }
2698
2699 // Since this user is part of the chain, it's no longer considered a use
2700 // of the chain.
2701 ChainUsersVec[ChainIdx].FarUsers.erase(UserInst);
2702}
2703
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002704/// Populate the vector of Chains.
Andrew Trick29fe5f02012-01-09 19:50:34 +00002705///
2706/// This decreases ILP at the architecture level. Targets with ample registers,
2707/// multiple memory ports, and no register renaming probably don't want
2708/// this. However, such targets should probably disable LSR altogether.
2709///
2710/// The job of LSR is to make a reasonable choice of induction variables across
2711/// the loop. Subsequent passes can easily "unchain" computation exposing more
2712/// ILP *within the loop* if the target wants it.
2713///
2714/// Finding the best IV chain is potentially a scheduling problem. Since LSR
2715/// will not reorder memory operations, it will recognize this as a chain, but
2716/// will generate redundant IV increments. Ideally this would be corrected later
2717/// by a smart scheduler:
2718/// = A[i]
2719/// = A[i+x]
2720/// A[i] =
2721/// A[i+x] =
2722///
2723/// TODO: Walk the entire domtree within this loop, not just the path to the
2724/// loop latch. This will discover chains on side paths, but requires
2725/// maintaining multiple copies of the Chains state.
2726void LSRInstance::CollectChains() {
Jakob Stoklund Olesen293673d2012-04-25 18:01:32 +00002727 DEBUG(dbgs() << "Collecting IV Chains.\n");
Andrew Trick29fe5f02012-01-09 19:50:34 +00002728 SmallVector<ChainUsers, 8> ChainUsersVec;
2729
2730 SmallVector<BasicBlock *,8> LatchPath;
2731 BasicBlock *LoopHeader = L->getHeader();
2732 for (DomTreeNode *Rung = DT.getNode(L->getLoopLatch());
2733 Rung->getBlock() != LoopHeader; Rung = Rung->getIDom()) {
2734 LatchPath.push_back(Rung->getBlock());
2735 }
2736 LatchPath.push_back(LoopHeader);
2737
2738 // Walk the instruction stream from the loop header to the loop latch.
2739 for (SmallVectorImpl<BasicBlock *>::reverse_iterator
2740 BBIter = LatchPath.rbegin(), BBEnd = LatchPath.rend();
2741 BBIter != BBEnd; ++BBIter) {
2742 for (BasicBlock::iterator I = (*BBIter)->begin(), E = (*BBIter)->end();
2743 I != E; ++I) {
2744 // Skip instructions that weren't seen by IVUsers analysis.
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00002745 if (isa<PHINode>(I) || !IU.isIVUserOrOperand(&*I))
Andrew Trick29fe5f02012-01-09 19:50:34 +00002746 continue;
2747
2748 // Ignore users that are part of a SCEV expression. This way we only
2749 // consider leaf IV Users. This effectively rediscovers a portion of
2750 // IVUsers analysis but in program order this time.
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00002751 if (SE.isSCEVable(I->getType()) && !isa<SCEVUnknown>(SE.getSCEV(&*I)))
Andrew Trick29fe5f02012-01-09 19:50:34 +00002752 continue;
2753
2754 // Remove this instruction from any NearUsers set it may be in.
2755 for (unsigned ChainIdx = 0, NChains = IVChainVec.size();
2756 ChainIdx < NChains; ++ChainIdx) {
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00002757 ChainUsersVec[ChainIdx].NearUsers.erase(&*I);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002758 }
2759 // Search for operands that can be chained.
2760 SmallPtrSet<Instruction*, 4> UniqueOperands;
2761 User::op_iterator IVOpEnd = I->op_end();
2762 User::op_iterator IVOpIter = findIVOperand(I->op_begin(), IVOpEnd, L, SE);
2763 while (IVOpIter != IVOpEnd) {
2764 Instruction *IVOpInst = cast<Instruction>(*IVOpIter);
David Blaikie70573dc2014-11-19 07:49:26 +00002765 if (UniqueOperands.insert(IVOpInst).second)
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00002766 ChainInstruction(&*I, IVOpInst, ChainUsersVec);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002767 IVOpIter = findIVOperand(std::next(IVOpIter), IVOpEnd, L, SE);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002768 }
2769 } // Continue walking down the instructions.
2770 } // Continue walking down the domtree.
2771 // Visit phi backedges to determine if the chain can generate the IV postinc.
2772 for (BasicBlock::iterator I = L->getHeader()->begin();
2773 PHINode *PN = dyn_cast<PHINode>(I); ++I) {
2774 if (!SE.isSCEVable(PN->getType()))
2775 continue;
2776
2777 Instruction *IncV =
2778 dyn_cast<Instruction>(PN->getIncomingValueForBlock(L->getLoopLatch()));
2779 if (IncV)
2780 ChainInstruction(PN, IncV, ChainUsersVec);
2781 }
Andrew Trick248d4102012-01-09 21:18:52 +00002782 // Remove any unprofitable chains.
2783 unsigned ChainIdx = 0;
2784 for (unsigned UsersIdx = 0, NChains = IVChainVec.size();
2785 UsersIdx < NChains; ++UsersIdx) {
2786 if (!isProfitableChain(IVChainVec[UsersIdx],
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002787 ChainUsersVec[UsersIdx].FarUsers, SE, TTI))
Andrew Trick248d4102012-01-09 21:18:52 +00002788 continue;
2789 // Preserve the chain at UsesIdx.
2790 if (ChainIdx != UsersIdx)
2791 IVChainVec[ChainIdx] = IVChainVec[UsersIdx];
2792 FinalizeChain(IVChainVec[ChainIdx]);
2793 ++ChainIdx;
2794 }
2795 IVChainVec.resize(ChainIdx);
2796}
2797
2798void LSRInstance::FinalizeChain(IVChain &Chain) {
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002799 assert(!Chain.Incs.empty() && "empty IV chains are not allowed");
2800 DEBUG(dbgs() << "Final Chain: " << *Chain.Incs[0].UserInst << "\n");
Andrew Trick248d4102012-01-09 21:18:52 +00002801
Craig Topper042a3922015-05-25 20:01:18 +00002802 for (const IVInc &Inc : Chain) {
2803 DEBUG(dbgs() << " Inc: " << Inc.UserInst << "\n");
2804 auto UseI = std::find(Inc.UserInst->op_begin(), Inc.UserInst->op_end(),
2805 Inc.IVOperand);
2806 assert(UseI != Inc.UserInst->op_end() && "cannot find IV operand");
Andrew Trick248d4102012-01-09 21:18:52 +00002807 IVIncSet.insert(UseI);
2808 }
2809}
2810
2811/// Return true if the IVInc can be folded into an addressing mode.
2812static bool canFoldIVIncExpr(const SCEV *IncExpr, Instruction *UserInst,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002813 Value *Operand, const TargetTransformInfo &TTI) {
Andrew Trick248d4102012-01-09 21:18:52 +00002814 const SCEVConstant *IncConst = dyn_cast<SCEVConstant>(IncExpr);
2815 if (!IncConst || !isAddressUse(UserInst, Operand))
2816 return false;
2817
Sanjoy Das0de2fec2015-12-17 20:28:46 +00002818 if (IncConst->getAPInt().getMinSignedBits() > 64)
Andrew Trick248d4102012-01-09 21:18:52 +00002819 return false;
2820
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002821 MemAccessTy AccessTy = getAccessType(UserInst);
Andrew Trick248d4102012-01-09 21:18:52 +00002822 int64_t IncOffset = IncConst->getValue()->getSExtValue();
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002823 if (!isAlwaysFoldable(TTI, LSRUse::Address, AccessTy, /*BaseGV=*/nullptr,
2824 IncOffset, /*HaseBaseReg=*/false))
Andrew Trick248d4102012-01-09 21:18:52 +00002825 return false;
2826
2827 return true;
2828}
2829
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002830/// Generate an add or subtract for each IVInc in a chain to materialize the IV
2831/// user's operand from the previous IV user's operand.
Andrew Trick248d4102012-01-09 21:18:52 +00002832void LSRInstance::GenerateIVChain(const IVChain &Chain, SCEVExpander &Rewriter,
2833 SmallVectorImpl<WeakVH> &DeadInsts) {
2834 // Find the new IVOperand for the head of the chain. It may have been replaced
2835 // by LSR.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002836 const IVInc &Head = Chain.Incs[0];
Andrew Trick248d4102012-01-09 21:18:52 +00002837 User::op_iterator IVOpEnd = Head.UserInst->op_end();
Andrew Trickf3a25442013-03-19 05:10:27 +00002838 // findIVOperand returns IVOpEnd if it can no longer find a valid IV user.
Andrew Trick248d4102012-01-09 21:18:52 +00002839 User::op_iterator IVOpIter = findIVOperand(Head.UserInst->op_begin(),
2840 IVOpEnd, L, SE);
Craig Topperf40110f2014-04-25 05:29:35 +00002841 Value *IVSrc = nullptr;
Andrew Trickf3a25442013-03-19 05:10:27 +00002842 while (IVOpIter != IVOpEnd) {
Andrew Trick248d4102012-01-09 21:18:52 +00002843 IVSrc = getWideOperand(*IVOpIter);
2844
2845 // If this operand computes the expression that the chain needs, we may use
2846 // it. (Check this after setting IVSrc which is used below.)
2847 //
2848 // Note that if Head.IncExpr is wider than IVSrc, then this phi is too
2849 // narrow for the chain, so we can no longer use it. We do allow using a
2850 // wider phi, assuming the LSR checked for free truncation. In that case we
2851 // should already have a truncate on this operand such that
2852 // getSCEV(IVSrc) == IncExpr.
2853 if (SE.getSCEV(*IVOpIter) == Head.IncExpr
2854 || SE.getSCEV(IVSrc) == Head.IncExpr) {
2855 break;
2856 }
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002857 IVOpIter = findIVOperand(std::next(IVOpIter), IVOpEnd, L, SE);
Andrew Trickf3a25442013-03-19 05:10:27 +00002858 }
Andrew Trick248d4102012-01-09 21:18:52 +00002859 if (IVOpIter == IVOpEnd) {
2860 // Gracefully give up on this chain.
2861 DEBUG(dbgs() << "Concealed chain head: " << *Head.UserInst << "\n");
2862 return;
2863 }
2864
2865 DEBUG(dbgs() << "Generate chain at: " << *IVSrc << "\n");
2866 Type *IVTy = IVSrc->getType();
2867 Type *IntTy = SE.getEffectiveSCEVType(IVTy);
Craig Topperf40110f2014-04-25 05:29:35 +00002868 const SCEV *LeftOverExpr = nullptr;
Craig Topper042a3922015-05-25 20:01:18 +00002869 for (const IVInc &Inc : Chain) {
2870 Instruction *InsertPt = Inc.UserInst;
Andrew Trick248d4102012-01-09 21:18:52 +00002871 if (isa<PHINode>(InsertPt))
2872 InsertPt = L->getLoopLatch()->getTerminator();
2873
2874 // IVOper will replace the current IV User's operand. IVSrc is the IV
2875 // value currently held in a register.
2876 Value *IVOper = IVSrc;
Craig Topper042a3922015-05-25 20:01:18 +00002877 if (!Inc.IncExpr->isZero()) {
Andrew Trick248d4102012-01-09 21:18:52 +00002878 // IncExpr was the result of subtraction of two narrow values, so must
2879 // be signed.
Craig Topper042a3922015-05-25 20:01:18 +00002880 const SCEV *IncExpr = SE.getNoopOrSignExtend(Inc.IncExpr, IntTy);
Andrew Trick248d4102012-01-09 21:18:52 +00002881 LeftOverExpr = LeftOverExpr ?
2882 SE.getAddExpr(LeftOverExpr, IncExpr) : IncExpr;
2883 }
2884 if (LeftOverExpr && !LeftOverExpr->isZero()) {
2885 // Expand the IV increment.
2886 Rewriter.clearPostInc();
2887 Value *IncV = Rewriter.expandCodeFor(LeftOverExpr, IntTy, InsertPt);
2888 const SCEV *IVOperExpr = SE.getAddExpr(SE.getUnknown(IVSrc),
2889 SE.getUnknown(IncV));
2890 IVOper = Rewriter.expandCodeFor(IVOperExpr, IVTy, InsertPt);
2891
2892 // If an IV increment can't be folded, use it as the next IV value.
Craig Topper042a3922015-05-25 20:01:18 +00002893 if (!canFoldIVIncExpr(LeftOverExpr, Inc.UserInst, Inc.IVOperand, TTI)) {
Andrew Trick248d4102012-01-09 21:18:52 +00002894 assert(IVTy == IVOper->getType() && "inconsistent IV increment type");
2895 IVSrc = IVOper;
Craig Topperf40110f2014-04-25 05:29:35 +00002896 LeftOverExpr = nullptr;
Andrew Trick248d4102012-01-09 21:18:52 +00002897 }
2898 }
Craig Topper042a3922015-05-25 20:01:18 +00002899 Type *OperTy = Inc.IVOperand->getType();
Andrew Trick248d4102012-01-09 21:18:52 +00002900 if (IVTy != OperTy) {
2901 assert(SE.getTypeSizeInBits(IVTy) >= SE.getTypeSizeInBits(OperTy) &&
2902 "cannot extend a chained IV");
2903 IRBuilder<> Builder(InsertPt);
2904 IVOper = Builder.CreateTruncOrBitCast(IVOper, OperTy, "lsr.chain");
2905 }
Craig Topper042a3922015-05-25 20:01:18 +00002906 Inc.UserInst->replaceUsesOfWith(Inc.IVOperand, IVOper);
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00002907 DeadInsts.emplace_back(Inc.IVOperand);
Andrew Trick248d4102012-01-09 21:18:52 +00002908 }
2909 // If LSR created a new, wider phi, we may also replace its postinc. We only
2910 // do this if we also found a wide value for the head of the chain.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002911 if (isa<PHINode>(Chain.tailUserInst())) {
Andrew Trick248d4102012-01-09 21:18:52 +00002912 for (BasicBlock::iterator I = L->getHeader()->begin();
2913 PHINode *Phi = dyn_cast<PHINode>(I); ++I) {
2914 if (!isCompatibleIVType(Phi, IVSrc))
2915 continue;
2916 Instruction *PostIncV = dyn_cast<Instruction>(
2917 Phi->getIncomingValueForBlock(L->getLoopLatch()));
2918 if (!PostIncV || (SE.getSCEV(PostIncV) != SE.getSCEV(IVSrc)))
2919 continue;
2920 Value *IVOper = IVSrc;
2921 Type *PostIncTy = PostIncV->getType();
2922 if (IVTy != PostIncTy) {
2923 assert(PostIncTy->isPointerTy() && "mixing int/ptr IV types");
2924 IRBuilder<> Builder(L->getLoopLatch()->getTerminator());
2925 Builder.SetCurrentDebugLocation(PostIncV->getDebugLoc());
2926 IVOper = Builder.CreatePointerCast(IVSrc, PostIncTy, "lsr.chain");
2927 }
2928 Phi->replaceUsesOfWith(PostIncV, IVOper);
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00002929 DeadInsts.emplace_back(PostIncV);
Andrew Trick248d4102012-01-09 21:18:52 +00002930 }
2931 }
Andrew Trick29fe5f02012-01-09 19:50:34 +00002932}
2933
Dan Gohman45774ce2010-02-12 10:34:29 +00002934void LSRInstance::CollectFixupsAndInitialFormulae() {
Craig Topper042a3922015-05-25 20:01:18 +00002935 for (const IVStrideUse &U : IU) {
2936 Instruction *UserInst = U.getUser();
Andrew Trick248d4102012-01-09 21:18:52 +00002937 // Skip IV users that are part of profitable IV Chains.
2938 User::op_iterator UseI = std::find(UserInst->op_begin(), UserInst->op_end(),
Craig Topper042a3922015-05-25 20:01:18 +00002939 U.getOperandValToReplace());
Andrew Trick248d4102012-01-09 21:18:52 +00002940 assert(UseI != UserInst->op_end() && "cannot find IV operand");
2941 if (IVIncSet.count(UseI))
2942 continue;
2943
Dan Gohman45774ce2010-02-12 10:34:29 +00002944 // Record the uses.
2945 LSRFixup &LF = getNewFixup();
Andrew Trick248d4102012-01-09 21:18:52 +00002946 LF.UserInst = UserInst;
Craig Topper042a3922015-05-25 20:01:18 +00002947 LF.OperandValToReplace = U.getOperandValToReplace();
2948 LF.PostIncLoops = U.getPostIncLoops();
Dan Gohman45774ce2010-02-12 10:34:29 +00002949
2950 LSRUse::KindType Kind = LSRUse::Basic;
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002951 MemAccessTy AccessTy;
Dan Gohman45774ce2010-02-12 10:34:29 +00002952 if (isAddressUse(LF.UserInst, LF.OperandValToReplace)) {
2953 Kind = LSRUse::Address;
2954 AccessTy = getAccessType(LF.UserInst);
2955 }
2956
Craig Topper042a3922015-05-25 20:01:18 +00002957 const SCEV *S = IU.getExpr(U);
Dan Gohman45774ce2010-02-12 10:34:29 +00002958
2959 // Equality (== and !=) ICmps are special. We can rewrite (i == N) as
2960 // (N - i == 0), and this allows (N - i) to be the expression that we work
2961 // with rather than just N or i, so we can consider the register
2962 // requirements for both N and i at the same time. Limiting this code to
2963 // equality icmps is not a problem because all interesting loops use
2964 // equality icmps, thanks to IndVarSimplify.
2965 if (ICmpInst *CI = dyn_cast<ICmpInst>(LF.UserInst))
2966 if (CI->isEquality()) {
2967 // Swap the operands if needed to put the OperandValToReplace on the
2968 // left, for consistency.
2969 Value *NV = CI->getOperand(1);
2970 if (NV == LF.OperandValToReplace) {
2971 CI->setOperand(1, CI->getOperand(0));
2972 CI->setOperand(0, NV);
Dan Gohmanee2fea32010-05-20 19:26:52 +00002973 NV = CI->getOperand(1);
Dan Gohmanfdf98742010-05-20 19:16:03 +00002974 Changed = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00002975 }
2976
2977 // x == y --> x - y == 0
2978 const SCEV *N = SE.getSCEV(NV);
Andrew Trick57243da2013-10-25 21:35:56 +00002979 if (SE.isLoopInvariant(N, L) && isSafeToExpand(N, SE)) {
Dan Gohman3268e4d2011-05-18 21:02:18 +00002980 // S is normalized, so normalize N before folding it into S
2981 // to keep the result normalized.
Craig Topperf40110f2014-04-25 05:29:35 +00002982 N = TransformForPostIncUse(Normalize, N, CI, nullptr,
Dan Gohman3268e4d2011-05-18 21:02:18 +00002983 LF.PostIncLoops, SE, DT);
Dan Gohman45774ce2010-02-12 10:34:29 +00002984 Kind = LSRUse::ICmpZero;
2985 S = SE.getMinusSCEV(N, S);
2986 }
2987
2988 // -1 and the negations of all interesting strides (except the negation
2989 // of -1) are now also interesting.
2990 for (size_t i = 0, e = Factors.size(); i != e; ++i)
2991 if (Factors[i] != -1)
2992 Factors.insert(-(uint64_t)Factors[i]);
2993 Factors.insert(-1);
2994 }
2995
2996 // Set up the initial formula for this use.
2997 std::pair<size_t, int64_t> P = getUse(S, Kind, AccessTy);
2998 LF.LUIdx = P.first;
2999 LF.Offset = P.second;
3000 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohmand006ab92010-04-07 22:27:08 +00003001 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohman14152082010-07-15 20:24:58 +00003002 if (!LU.WidestFixupType ||
3003 SE.getTypeSizeInBits(LU.WidestFixupType) <
3004 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
3005 LU.WidestFixupType = LF.OperandValToReplace->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003006
3007 // If this is the first use of this LSRUse, give it a formula.
3008 if (LU.Formulae.empty()) {
Dan Gohman8c16b382010-02-22 04:11:59 +00003009 InsertInitialFormula(S, LU, LF.LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00003010 CountRegisters(LU.Formulae.back(), LF.LUIdx);
3011 }
3012 }
3013
3014 DEBUG(print_fixups(dbgs()));
3015}
3016
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003017/// Insert a formula for the given expression into the given use, separating out
3018/// loop-variant portions from loop-invariant and loop-computable portions.
Dan Gohman45774ce2010-02-12 10:34:29 +00003019void
Dan Gohman8c16b382010-02-22 04:11:59 +00003020LSRInstance::InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx) {
Andrew Trick57243da2013-10-25 21:35:56 +00003021 // Mark uses whose expressions cannot be expanded.
3022 if (!isSafeToExpand(S, SE))
3023 LU.RigidFormula = true;
3024
Dan Gohman45774ce2010-02-12 10:34:29 +00003025 Formula F;
Sanjoy Das302bfd02015-08-16 18:22:43 +00003026 F.initialMatch(S, L, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +00003027 bool Inserted = InsertFormula(LU, LUIdx, F);
3028 assert(Inserted && "Initial formula already exists!"); (void)Inserted;
3029}
3030
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003031/// Insert a simple single-register formula for the given expression into the
3032/// given use.
Dan Gohman45774ce2010-02-12 10:34:29 +00003033void
3034LSRInstance::InsertSupplementalFormula(const SCEV *S,
3035 LSRUse &LU, size_t LUIdx) {
3036 Formula F;
3037 F.BaseRegs.push_back(S);
Chandler Carruth7e31c8f2013-01-12 23:46:04 +00003038 F.HasBaseReg = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00003039 bool Inserted = InsertFormula(LU, LUIdx, F);
3040 assert(Inserted && "Supplemental formula already exists!"); (void)Inserted;
3041}
3042
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003043/// Note which registers are used by the given formula, updating RegUses.
Dan Gohman45774ce2010-02-12 10:34:29 +00003044void LSRInstance::CountRegisters(const Formula &F, size_t LUIdx) {
3045 if (F.ScaledReg)
Sanjoy Das302bfd02015-08-16 18:22:43 +00003046 RegUses.countRegister(F.ScaledReg, LUIdx);
Craig Topper042a3922015-05-25 20:01:18 +00003047 for (const SCEV *BaseReg : F.BaseRegs)
Sanjoy Das302bfd02015-08-16 18:22:43 +00003048 RegUses.countRegister(BaseReg, LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00003049}
3050
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003051/// If the given formula has not yet been inserted, add it to the list, and
3052/// return true. Return false otherwise.
Dan Gohman45774ce2010-02-12 10:34:29 +00003053bool LSRInstance::InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003054 // Do not insert formula that we will not be able to expand.
3055 assert(isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F) &&
3056 "Formula is illegal");
Dan Gohman8c16b382010-02-22 04:11:59 +00003057 if (!LU.InsertFormula(F))
Dan Gohman45774ce2010-02-12 10:34:29 +00003058 return false;
3059
3060 CountRegisters(F, LUIdx);
3061 return true;
3062}
3063
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003064/// Check for other uses of loop-invariant values which we're tracking. These
3065/// other uses will pin these values in registers, making them less profitable
3066/// for elimination.
Dan Gohman45774ce2010-02-12 10:34:29 +00003067/// TODO: This currently misses non-constant addrec step registers.
3068/// TODO: Should this give more weight to users inside the loop?
3069void
3070LSRInstance::CollectLoopInvariantFixupsAndFormulae() {
3071 SmallVector<const SCEV *, 8> Worklist(RegUses.begin(), RegUses.end());
Andrew Trickdd925ad2014-10-25 19:59:30 +00003072 SmallPtrSet<const SCEV *, 32> Visited;
Dan Gohman45774ce2010-02-12 10:34:29 +00003073
3074 while (!Worklist.empty()) {
3075 const SCEV *S = Worklist.pop_back_val();
3076
Andrew Trick9ccbed52014-10-25 19:42:07 +00003077 // Don't process the same SCEV twice
David Blaikie70573dc2014-11-19 07:49:26 +00003078 if (!Visited.insert(S).second)
Andrew Trick9ccbed52014-10-25 19:42:07 +00003079 continue;
3080
Dan Gohman45774ce2010-02-12 10:34:29 +00003081 if (const SCEVNAryExpr *N = dyn_cast<SCEVNAryExpr>(S))
Dan Gohmandd41bba2010-06-21 19:47:52 +00003082 Worklist.append(N->op_begin(), N->op_end());
Dan Gohman45774ce2010-02-12 10:34:29 +00003083 else if (const SCEVCastExpr *C = dyn_cast<SCEVCastExpr>(S))
3084 Worklist.push_back(C->getOperand());
3085 else if (const SCEVUDivExpr *D = dyn_cast<SCEVUDivExpr>(S)) {
3086 Worklist.push_back(D->getLHS());
3087 Worklist.push_back(D->getRHS());
Chandler Carruthcdf47882014-03-09 03:16:01 +00003088 } else if (const SCEVUnknown *US = dyn_cast<SCEVUnknown>(S)) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00003089 const Value *V = US->getValue();
Dan Gohman67b44032010-06-04 23:16:05 +00003090 if (const Instruction *Inst = dyn_cast<Instruction>(V)) {
3091 // Look for instructions defined outside the loop.
Dan Gohman45774ce2010-02-12 10:34:29 +00003092 if (L->contains(Inst)) continue;
Dan Gohman67b44032010-06-04 23:16:05 +00003093 } else if (isa<UndefValue>(V))
3094 // Undef doesn't have a live range, so it doesn't matter.
3095 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00003096 for (const Use &U : V->uses()) {
3097 const Instruction *UserInst = dyn_cast<Instruction>(U.getUser());
Dan Gohman45774ce2010-02-12 10:34:29 +00003098 // Ignore non-instructions.
3099 if (!UserInst)
Dan Gohman045f8192010-01-22 00:46:49 +00003100 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003101 // Ignore instructions in other functions (as can happen with
3102 // Constants).
3103 if (UserInst->getParent()->getParent() != L->getHeader()->getParent())
Dan Gohman045f8192010-01-22 00:46:49 +00003104 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003105 // Ignore instructions not dominated by the loop.
3106 const BasicBlock *UseBB = !isa<PHINode>(UserInst) ?
3107 UserInst->getParent() :
3108 cast<PHINode>(UserInst)->getIncomingBlock(
Chandler Carruthcdf47882014-03-09 03:16:01 +00003109 PHINode::getIncomingValueNumForOperand(U.getOperandNo()));
Dan Gohman45774ce2010-02-12 10:34:29 +00003110 if (!DT.dominates(L->getHeader(), UseBB))
3111 continue;
David Majnemerb2221842015-11-08 05:04:07 +00003112 // Don't bother if the instruction is in a BB which ends in an EHPad.
3113 if (UseBB->getTerminator()->isEHPad())
3114 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003115 // Ignore uses which are part of other SCEV expressions, to avoid
3116 // analyzing them multiple times.
Dan Gohman42ec4eb2010-04-09 19:12:34 +00003117 if (SE.isSCEVable(UserInst->getType())) {
3118 const SCEV *UserS = SE.getSCEV(const_cast<Instruction *>(UserInst));
3119 // If the user is a no-op, look through to its uses.
3120 if (!isa<SCEVUnknown>(UserS))
3121 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00003122 if (UserS == US) {
Dan Gohman42ec4eb2010-04-09 19:12:34 +00003123 Worklist.push_back(
3124 SE.getUnknown(const_cast<Instruction *>(UserInst)));
3125 continue;
3126 }
3127 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003128 // Ignore icmp instructions which are already being analyzed.
3129 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UserInst)) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00003130 unsigned OtherIdx = !U.getOperandNo();
Dan Gohman45774ce2010-02-12 10:34:29 +00003131 Value *OtherOp = const_cast<Value *>(ICI->getOperand(OtherIdx));
Dan Gohmanafd6db92010-11-17 21:23:15 +00003132 if (SE.hasComputableLoopEvolution(SE.getSCEV(OtherOp), L))
Dan Gohman45774ce2010-02-12 10:34:29 +00003133 continue;
3134 }
3135
3136 LSRFixup &LF = getNewFixup();
3137 LF.UserInst = const_cast<Instruction *>(UserInst);
Chandler Carruthcdf47882014-03-09 03:16:01 +00003138 LF.OperandValToReplace = U;
Matt Arsenault427a0fd2015-08-15 00:53:06 +00003139 std::pair<size_t, int64_t> P = getUse(
3140 S, LSRUse::Basic, MemAccessTy());
Dan Gohman45774ce2010-02-12 10:34:29 +00003141 LF.LUIdx = P.first;
3142 LF.Offset = P.second;
3143 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohmand006ab92010-04-07 22:27:08 +00003144 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohman14152082010-07-15 20:24:58 +00003145 if (!LU.WidestFixupType ||
3146 SE.getTypeSizeInBits(LU.WidestFixupType) <
3147 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
3148 LU.WidestFixupType = LF.OperandValToReplace->getType();
Chandler Carruthcdf47882014-03-09 03:16:01 +00003149 InsertSupplementalFormula(US, LU, LF.LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00003150 CountRegisters(LU.Formulae.back(), Uses.size() - 1);
3151 break;
3152 }
3153 }
3154 }
3155}
3156
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003157/// Split S into subexpressions which can be pulled out into separate
3158/// registers. If C is non-null, multiply each subexpression by C.
Andrew Trickc8037062012-07-17 05:30:37 +00003159///
3160/// Return remainder expression after factoring the subexpressions captured by
3161/// Ops. If Ops is complete, return NULL.
3162static const SCEV *CollectSubexprs(const SCEV *S, const SCEVConstant *C,
3163 SmallVectorImpl<const SCEV *> &Ops,
3164 const Loop *L,
3165 ScalarEvolution &SE,
3166 unsigned Depth = 0) {
3167 // Arbitrarily cap recursion to protect compile time.
3168 if (Depth >= 3)
3169 return S;
3170
Dan Gohman45774ce2010-02-12 10:34:29 +00003171 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
3172 // Break out add operands.
Craig Topper042a3922015-05-25 20:01:18 +00003173 for (const SCEV *S : Add->operands()) {
3174 const SCEV *Remainder = CollectSubexprs(S, C, Ops, L, SE, Depth+1);
Andrew Trickc8037062012-07-17 05:30:37 +00003175 if (Remainder)
3176 Ops.push_back(C ? SE.getMulExpr(C, Remainder) : Remainder);
3177 }
Craig Topperf40110f2014-04-25 05:29:35 +00003178 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +00003179 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
3180 // Split a non-zero base out of an addrec.
Andrew Trickc8037062012-07-17 05:30:37 +00003181 if (AR->getStart()->isZero())
3182 return S;
3183
3184 const SCEV *Remainder = CollectSubexprs(AR->getStart(),
3185 C, Ops, L, SE, Depth+1);
3186 // Split the non-zero AddRec unless it is part of a nested recurrence that
3187 // does not pertain to this loop.
3188 if (Remainder && (AR->getLoop() == L || !isa<SCEVAddRecExpr>(Remainder))) {
3189 Ops.push_back(C ? SE.getMulExpr(C, Remainder) : Remainder);
Craig Topperf40110f2014-04-25 05:29:35 +00003190 Remainder = nullptr;
Andrew Trickc8037062012-07-17 05:30:37 +00003191 }
3192 if (Remainder != AR->getStart()) {
3193 if (!Remainder)
3194 Remainder = SE.getConstant(AR->getType(), 0);
3195 return SE.getAddRecExpr(Remainder,
3196 AR->getStepRecurrence(SE),
3197 AR->getLoop(),
3198 //FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
3199 SCEV::FlagAnyWrap);
Dan Gohman45774ce2010-02-12 10:34:29 +00003200 }
3201 } else if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
3202 // Break (C * (a + b + c)) into C*a + C*b + C*c.
Andrew Trickc8037062012-07-17 05:30:37 +00003203 if (Mul->getNumOperands() != 2)
3204 return S;
3205 if (const SCEVConstant *Op0 =
3206 dyn_cast<SCEVConstant>(Mul->getOperand(0))) {
3207 C = C ? cast<SCEVConstant>(SE.getMulExpr(C, Op0)) : Op0;
3208 const SCEV *Remainder =
3209 CollectSubexprs(Mul->getOperand(1), C, Ops, L, SE, Depth+1);
3210 if (Remainder)
3211 Ops.push_back(SE.getMulExpr(C, Remainder));
Craig Topperf40110f2014-04-25 05:29:35 +00003212 return nullptr;
Andrew Trickc8037062012-07-17 05:30:37 +00003213 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003214 }
Andrew Trickc8037062012-07-17 05:30:37 +00003215 return S;
Dan Gohman45774ce2010-02-12 10:34:29 +00003216}
3217
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003218/// \brief Helper function for LSRInstance::GenerateReassociations.
3219void LSRInstance::GenerateReassociationsImpl(LSRUse &LU, unsigned LUIdx,
3220 const Formula &Base,
3221 unsigned Depth, size_t Idx,
3222 bool IsScaledReg) {
3223 const SCEV *BaseReg = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx];
3224 SmallVector<const SCEV *, 8> AddOps;
3225 const SCEV *Remainder = CollectSubexprs(BaseReg, nullptr, AddOps, L, SE);
3226 if (Remainder)
3227 AddOps.push_back(Remainder);
3228
3229 if (AddOps.size() == 1)
3230 return;
3231
3232 for (SmallVectorImpl<const SCEV *>::const_iterator J = AddOps.begin(),
3233 JE = AddOps.end();
3234 J != JE; ++J) {
3235
3236 // Loop-variant "unknown" values are uninteresting; we won't be able to
3237 // do anything meaningful with them.
3238 if (isa<SCEVUnknown>(*J) && !SE.isLoopInvariant(*J, L))
3239 continue;
3240
3241 // Don't pull a constant into a register if the constant could be folded
3242 // into an immediate field.
3243 if (isAlwaysFoldable(TTI, SE, LU.MinOffset, LU.MaxOffset, LU.Kind,
3244 LU.AccessTy, *J, Base.getNumRegs() > 1))
3245 continue;
3246
3247 // Collect all operands except *J.
3248 SmallVector<const SCEV *, 8> InnerAddOps(
3249 ((const SmallVector<const SCEV *, 8> &)AddOps).begin(), J);
3250 InnerAddOps.append(std::next(J),
3251 ((const SmallVector<const SCEV *, 8> &)AddOps).end());
3252
3253 // Don't leave just a constant behind in a register if the constant could
3254 // be folded into an immediate field.
3255 if (InnerAddOps.size() == 1 &&
3256 isAlwaysFoldable(TTI, SE, LU.MinOffset, LU.MaxOffset, LU.Kind,
3257 LU.AccessTy, InnerAddOps[0], Base.getNumRegs() > 1))
3258 continue;
3259
3260 const SCEV *InnerSum = SE.getAddExpr(InnerAddOps);
3261 if (InnerSum->isZero())
3262 continue;
3263 Formula F = Base;
3264
3265 // Add the remaining pieces of the add back into the new formula.
3266 const SCEVConstant *InnerSumSC = dyn_cast<SCEVConstant>(InnerSum);
3267 if (InnerSumSC && SE.getTypeSizeInBits(InnerSumSC->getType()) <= 64 &&
3268 TTI.isLegalAddImmediate((uint64_t)F.UnfoldedOffset +
3269 InnerSumSC->getValue()->getZExtValue())) {
3270 F.UnfoldedOffset =
3271 (uint64_t)F.UnfoldedOffset + InnerSumSC->getValue()->getZExtValue();
3272 if (IsScaledReg)
3273 F.ScaledReg = nullptr;
3274 else
3275 F.BaseRegs.erase(F.BaseRegs.begin() + Idx);
3276 } else if (IsScaledReg)
3277 F.ScaledReg = InnerSum;
3278 else
3279 F.BaseRegs[Idx] = InnerSum;
3280
3281 // Add J as its own register, or an unfolded immediate.
3282 const SCEVConstant *SC = dyn_cast<SCEVConstant>(*J);
3283 if (SC && SE.getTypeSizeInBits(SC->getType()) <= 64 &&
3284 TTI.isLegalAddImmediate((uint64_t)F.UnfoldedOffset +
3285 SC->getValue()->getZExtValue()))
3286 F.UnfoldedOffset =
3287 (uint64_t)F.UnfoldedOffset + SC->getValue()->getZExtValue();
3288 else
3289 F.BaseRegs.push_back(*J);
3290 // We may have changed the number of register in base regs, adjust the
3291 // formula accordingly.
Sanjoy Das302bfd02015-08-16 18:22:43 +00003292 F.canonicalize();
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003293
3294 if (InsertFormula(LU, LUIdx, F))
3295 // If that formula hadn't been seen before, recurse to find more like
3296 // it.
3297 GenerateReassociations(LU, LUIdx, LU.Formulae.back(), Depth + 1);
3298 }
3299}
3300
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003301/// Split out subexpressions from adds and the bases of addrecs.
Dan Gohman45774ce2010-02-12 10:34:29 +00003302void LSRInstance::GenerateReassociations(LSRUse &LU, unsigned LUIdx,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003303 Formula Base, unsigned Depth) {
3304 assert(Base.isCanonical() && "Input must be in the canonical form");
Dan Gohman45774ce2010-02-12 10:34:29 +00003305 // Arbitrarily cap recursion to protect compile time.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003306 if (Depth >= 3)
3307 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003308
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003309 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3310 GenerateReassociationsImpl(LU, LUIdx, Base, Depth, i);
Dan Gohman45774ce2010-02-12 10:34:29 +00003311
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003312 if (Base.Scale == 1)
3313 GenerateReassociationsImpl(LU, LUIdx, Base, Depth,
3314 /* Idx */ -1, /* IsScaledReg */ true);
Dan Gohman45774ce2010-02-12 10:34:29 +00003315}
3316
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003317/// Generate a formula consisting of all of the loop-dominating registers added
3318/// into a single register.
Dan Gohman45774ce2010-02-12 10:34:29 +00003319void LSRInstance::GenerateCombinations(LSRUse &LU, unsigned LUIdx,
Dan Gohmane4e51a62010-02-14 18:51:39 +00003320 Formula Base) {
Dan Gohman8b0a4192010-03-01 17:49:51 +00003321 // This method is only interesting on a plurality of registers.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003322 if (Base.BaseRegs.size() + (Base.Scale == 1) <= 1)
3323 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003324
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003325 // Flatten the representation, i.e., reg1 + 1*reg2 => reg1 + reg2, before
3326 // processing the formula.
Sanjoy Das302bfd02015-08-16 18:22:43 +00003327 Base.unscale();
Dan Gohman45774ce2010-02-12 10:34:29 +00003328 Formula F = Base;
3329 F.BaseRegs.clear();
3330 SmallVector<const SCEV *, 4> Ops;
Craig Topper042a3922015-05-25 20:01:18 +00003331 for (const SCEV *BaseReg : Base.BaseRegs) {
Dan Gohman20d9ce22010-11-17 21:41:58 +00003332 if (SE.properlyDominates(BaseReg, L->getHeader()) &&
Dan Gohmanafd6db92010-11-17 21:23:15 +00003333 !SE.hasComputableLoopEvolution(BaseReg, L))
Dan Gohman45774ce2010-02-12 10:34:29 +00003334 Ops.push_back(BaseReg);
3335 else
3336 F.BaseRegs.push_back(BaseReg);
3337 }
3338 if (Ops.size() > 1) {
Dan Gohmanbb7d5222010-02-14 18:50:49 +00003339 const SCEV *Sum = SE.getAddExpr(Ops);
3340 // TODO: If Sum is zero, it probably means ScalarEvolution missed an
3341 // opportunity to fold something. For now, just ignore such cases
Dan Gohman8b0a4192010-03-01 17:49:51 +00003342 // rather than proceed with zero in a register.
Dan Gohmanbb7d5222010-02-14 18:50:49 +00003343 if (!Sum->isZero()) {
3344 F.BaseRegs.push_back(Sum);
Sanjoy Das302bfd02015-08-16 18:22:43 +00003345 F.canonicalize();
Dan Gohmanbb7d5222010-02-14 18:50:49 +00003346 (void)InsertFormula(LU, LUIdx, F);
3347 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003348 }
3349}
3350
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003351/// \brief Helper function for LSRInstance::GenerateSymbolicOffsets.
3352void LSRInstance::GenerateSymbolicOffsetsImpl(LSRUse &LU, unsigned LUIdx,
3353 const Formula &Base, size_t Idx,
3354 bool IsScaledReg) {
3355 const SCEV *G = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx];
3356 GlobalValue *GV = ExtractSymbol(G, SE);
3357 if (G->isZero() || !GV)
3358 return;
3359 Formula F = Base;
3360 F.BaseGV = GV;
3361 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F))
3362 return;
3363 if (IsScaledReg)
3364 F.ScaledReg = G;
3365 else
3366 F.BaseRegs[Idx] = G;
3367 (void)InsertFormula(LU, LUIdx, F);
3368}
3369
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003370/// Generate reuse formulae using symbolic offsets.
Dan Gohman45774ce2010-02-12 10:34:29 +00003371void LSRInstance::GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx,
3372 Formula Base) {
3373 // We can't add a symbolic offset if the address already contains one.
Chandler Carruth6e479322013-01-07 15:04:40 +00003374 if (Base.BaseGV) return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003375
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003376 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3377 GenerateSymbolicOffsetsImpl(LU, LUIdx, Base, i);
3378 if (Base.Scale == 1)
3379 GenerateSymbolicOffsetsImpl(LU, LUIdx, Base, /* Idx */ -1,
3380 /* IsScaledReg */ true);
3381}
3382
3383/// \brief Helper function for LSRInstance::GenerateConstantOffsets.
3384void LSRInstance::GenerateConstantOffsetsImpl(
3385 LSRUse &LU, unsigned LUIdx, const Formula &Base,
3386 const SmallVectorImpl<int64_t> &Worklist, size_t Idx, bool IsScaledReg) {
3387 const SCEV *G = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx];
Craig Topper042a3922015-05-25 20:01:18 +00003388 for (int64_t Offset : Worklist) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003389 Formula F = Base;
Craig Topper042a3922015-05-25 20:01:18 +00003390 F.BaseOffset = (uint64_t)Base.BaseOffset - Offset;
3391 if (isLegalUse(TTI, LU.MinOffset - Offset, LU.MaxOffset - Offset, LU.Kind,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003392 LU.AccessTy, F)) {
3393 // Add the offset to the base register.
Craig Topper042a3922015-05-25 20:01:18 +00003394 const SCEV *NewG = SE.getAddExpr(SE.getConstant(G->getType(), Offset), G);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003395 // If it cancelled out, drop the base register, otherwise update it.
3396 if (NewG->isZero()) {
3397 if (IsScaledReg) {
3398 F.Scale = 0;
3399 F.ScaledReg = nullptr;
3400 } else
Sanjoy Das302bfd02015-08-16 18:22:43 +00003401 F.deleteBaseReg(F.BaseRegs[Idx]);
3402 F.canonicalize();
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003403 } else if (IsScaledReg)
3404 F.ScaledReg = NewG;
3405 else
3406 F.BaseRegs[Idx] = NewG;
3407
3408 (void)InsertFormula(LU, LUIdx, F);
3409 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003410 }
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003411
3412 int64_t Imm = ExtractImmediate(G, SE);
3413 if (G->isZero() || Imm == 0)
3414 return;
3415 Formula F = Base;
3416 F.BaseOffset = (uint64_t)F.BaseOffset + Imm;
3417 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F))
3418 return;
3419 if (IsScaledReg)
3420 F.ScaledReg = G;
3421 else
3422 F.BaseRegs[Idx] = G;
3423 (void)InsertFormula(LU, LUIdx, F);
Dan Gohman45774ce2010-02-12 10:34:29 +00003424}
3425
3426/// GenerateConstantOffsets - Generate reuse formulae using symbolic offsets.
3427void LSRInstance::GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx,
3428 Formula Base) {
3429 // TODO: For now, just add the min and max offset, because it usually isn't
3430 // worthwhile looking at everything inbetween.
Dan Gohman4afd4122010-07-15 15:14:45 +00003431 SmallVector<int64_t, 2> Worklist;
Dan Gohman45774ce2010-02-12 10:34:29 +00003432 Worklist.push_back(LU.MinOffset);
3433 if (LU.MaxOffset != LU.MinOffset)
3434 Worklist.push_back(LU.MaxOffset);
3435
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003436 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3437 GenerateConstantOffsetsImpl(LU, LUIdx, Base, Worklist, i);
3438 if (Base.Scale == 1)
3439 GenerateConstantOffsetsImpl(LU, LUIdx, Base, Worklist, /* Idx */ -1,
3440 /* IsScaledReg */ true);
Dan Gohman45774ce2010-02-12 10:34:29 +00003441}
3442
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003443/// For ICmpZero, check to see if we can scale up the comparison. For example, x
3444/// == y -> x*c == y*c.
Dan Gohman45774ce2010-02-12 10:34:29 +00003445void LSRInstance::GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx,
3446 Formula Base) {
3447 if (LU.Kind != LSRUse::ICmpZero) return;
3448
3449 // Determine the integer type for the base formula.
Chris Lattner229907c2011-07-18 04:54:35 +00003450 Type *IntTy = Base.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003451 if (!IntTy) return;
3452 if (SE.getTypeSizeInBits(IntTy) > 64) return;
3453
3454 // Don't do this if there is more than one offset.
3455 if (LU.MinOffset != LU.MaxOffset) return;
3456
Chandler Carruth6e479322013-01-07 15:04:40 +00003457 assert(!Base.BaseGV && "ICmpZero use is not legal!");
Dan Gohman45774ce2010-02-12 10:34:29 +00003458
3459 // Check each interesting stride.
Craig Topper042a3922015-05-25 20:01:18 +00003460 for (int64_t Factor : Factors) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003461 // Check that the multiplication doesn't overflow.
Chandler Carruth6e479322013-01-07 15:04:40 +00003462 if (Base.BaseOffset == INT64_MIN && Factor == -1)
Dan Gohman5f10d6c2010-02-17 00:41:53 +00003463 continue;
Chandler Carruth6e479322013-01-07 15:04:40 +00003464 int64_t NewBaseOffset = (uint64_t)Base.BaseOffset * Factor;
3465 if (NewBaseOffset / Factor != Base.BaseOffset)
Dan Gohman45774ce2010-02-12 10:34:29 +00003466 continue;
Andrew Trick429e9ed2014-02-26 16:31:56 +00003467 // If the offset will be truncated at this use, check that it is in bounds.
3468 if (!IntTy->isPointerTy() &&
3469 !ConstantInt::isValueValidForType(IntTy, NewBaseOffset))
3470 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003471
3472 // Check that multiplying with the use offset doesn't overflow.
3473 int64_t Offset = LU.MinOffset;
Dan Gohman5f10d6c2010-02-17 00:41:53 +00003474 if (Offset == INT64_MIN && Factor == -1)
3475 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003476 Offset = (uint64_t)Offset * Factor;
Dan Gohman13ac3b22010-02-17 00:42:19 +00003477 if (Offset / Factor != LU.MinOffset)
Dan Gohman45774ce2010-02-12 10:34:29 +00003478 continue;
Andrew Trick429e9ed2014-02-26 16:31:56 +00003479 // If the offset will be truncated at this use, check that it is in bounds.
3480 if (!IntTy->isPointerTy() &&
3481 !ConstantInt::isValueValidForType(IntTy, Offset))
3482 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003483
Dan Gohman963b1c12010-06-24 16:57:52 +00003484 Formula F = Base;
Chandler Carruth6e479322013-01-07 15:04:40 +00003485 F.BaseOffset = NewBaseOffset;
Dan Gohman963b1c12010-06-24 16:57:52 +00003486
Dan Gohman45774ce2010-02-12 10:34:29 +00003487 // Check that this scale is legal.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003488 if (!isLegalUse(TTI, Offset, Offset, LU.Kind, LU.AccessTy, F))
Dan Gohman45774ce2010-02-12 10:34:29 +00003489 continue;
3490
3491 // Compensate for the use having MinOffset built into it.
Chandler Carruth6e479322013-01-07 15:04:40 +00003492 F.BaseOffset = (uint64_t)F.BaseOffset + Offset - LU.MinOffset;
Dan Gohman45774ce2010-02-12 10:34:29 +00003493
Dan Gohman1d2ded72010-05-03 22:09:21 +00003494 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman45774ce2010-02-12 10:34:29 +00003495
3496 // Check that multiplying with each base register doesn't overflow.
3497 for (size_t i = 0, e = F.BaseRegs.size(); i != e; ++i) {
3498 F.BaseRegs[i] = SE.getMulExpr(F.BaseRegs[i], FactorS);
Dan Gohman4eebb942010-02-19 19:35:48 +00003499 if (getExactSDiv(F.BaseRegs[i], FactorS, SE) != Base.BaseRegs[i])
Dan Gohman45774ce2010-02-12 10:34:29 +00003500 goto next;
3501 }
3502
3503 // Check that multiplying with the scaled register doesn't overflow.
3504 if (F.ScaledReg) {
3505 F.ScaledReg = SE.getMulExpr(F.ScaledReg, FactorS);
Dan Gohman4eebb942010-02-19 19:35:48 +00003506 if (getExactSDiv(F.ScaledReg, FactorS, SE) != Base.ScaledReg)
Dan Gohman45774ce2010-02-12 10:34:29 +00003507 continue;
3508 }
3509
Dan Gohman6136e942011-05-03 00:46:49 +00003510 // Check that multiplying with the unfolded offset doesn't overflow.
3511 if (F.UnfoldedOffset != 0) {
Dan Gohman6c4a3192011-05-23 21:07:39 +00003512 if (F.UnfoldedOffset == INT64_MIN && Factor == -1)
3513 continue;
Dan Gohman6136e942011-05-03 00:46:49 +00003514 F.UnfoldedOffset = (uint64_t)F.UnfoldedOffset * Factor;
3515 if (F.UnfoldedOffset / Factor != Base.UnfoldedOffset)
3516 continue;
Andrew Trick429e9ed2014-02-26 16:31:56 +00003517 // If the offset will be truncated, check that it is in bounds.
3518 if (!IntTy->isPointerTy() &&
3519 !ConstantInt::isValueValidForType(IntTy, F.UnfoldedOffset))
3520 continue;
Dan Gohman6136e942011-05-03 00:46:49 +00003521 }
3522
Dan Gohman45774ce2010-02-12 10:34:29 +00003523 // If we make it here and it's legal, add it.
3524 (void)InsertFormula(LU, LUIdx, F);
3525 next:;
3526 }
3527}
3528
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003529/// Generate stride factor reuse formulae by making use of scaled-offset address
3530/// modes, for example.
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00003531void LSRInstance::GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003532 // Determine the integer type for the base formula.
Chris Lattner229907c2011-07-18 04:54:35 +00003533 Type *IntTy = Base.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003534 if (!IntTy) return;
3535
3536 // If this Formula already has a scaled register, we can't add another one.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003537 // Try to unscale the formula to generate a better scale.
Sanjoy Das302bfd02015-08-16 18:22:43 +00003538 if (Base.Scale != 0 && !Base.unscale())
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003539 return;
3540
Sanjoy Das302bfd02015-08-16 18:22:43 +00003541 assert(Base.Scale == 0 && "unscale did not did its job!");
Dan Gohman45774ce2010-02-12 10:34:29 +00003542
3543 // Check each interesting stride.
Craig Topper042a3922015-05-25 20:01:18 +00003544 for (int64_t Factor : Factors) {
Chandler Carruth6e479322013-01-07 15:04:40 +00003545 Base.Scale = Factor;
3546 Base.HasBaseReg = Base.BaseRegs.size() > 1;
Dan Gohman45774ce2010-02-12 10:34:29 +00003547 // Check whether this scale is going to be legal.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003548 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
3549 Base)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003550 // As a special-case, handle special out-of-loop Basic users specially.
3551 // TODO: Reconsider this special case.
3552 if (LU.Kind == LSRUse::Basic &&
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003553 isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LSRUse::Special,
3554 LU.AccessTy, Base) &&
Dan Gohman45774ce2010-02-12 10:34:29 +00003555 LU.AllFixupsOutsideLoop)
3556 LU.Kind = LSRUse::Special;
3557 else
3558 continue;
3559 }
3560 // For an ICmpZero, negating a solitary base register won't lead to
3561 // new solutions.
3562 if (LU.Kind == LSRUse::ICmpZero &&
Chandler Carruth6e479322013-01-07 15:04:40 +00003563 !Base.HasBaseReg && Base.BaseOffset == 0 && !Base.BaseGV)
Dan Gohman45774ce2010-02-12 10:34:29 +00003564 continue;
3565 // For each addrec base reg, apply the scale, if possible.
3566 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3567 if (const SCEVAddRecExpr *AR =
3568 dyn_cast<SCEVAddRecExpr>(Base.BaseRegs[i])) {
Dan Gohman1d2ded72010-05-03 22:09:21 +00003569 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman45774ce2010-02-12 10:34:29 +00003570 if (FactorS->isZero())
3571 continue;
3572 // Divide out the factor, ignoring high bits, since we'll be
3573 // scaling the value back up in the end.
Dan Gohman4eebb942010-02-19 19:35:48 +00003574 if (const SCEV *Quotient = getExactSDiv(AR, FactorS, SE, true)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003575 // TODO: This could be optimized to avoid all the copying.
3576 Formula F = Base;
3577 F.ScaledReg = Quotient;
Sanjoy Das302bfd02015-08-16 18:22:43 +00003578 F.deleteBaseReg(F.BaseRegs[i]);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003579 // The canonical representation of 1*reg is reg, which is already in
3580 // Base. In that case, do not try to insert the formula, it will be
3581 // rejected anyway.
3582 if (F.Scale == 1 && F.BaseRegs.empty())
3583 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003584 (void)InsertFormula(LU, LUIdx, F);
3585 }
3586 }
3587 }
3588}
3589
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003590/// Generate reuse formulae from different IV types.
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00003591void LSRInstance::GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003592 // Don't bother truncating symbolic values.
Chandler Carruth6e479322013-01-07 15:04:40 +00003593 if (Base.BaseGV) return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003594
3595 // Determine the integer type for the base formula.
Chris Lattner229907c2011-07-18 04:54:35 +00003596 Type *DstTy = Base.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003597 if (!DstTy) return;
3598 DstTy = SE.getEffectiveSCEVType(DstTy);
3599
Craig Topper042a3922015-05-25 20:01:18 +00003600 for (Type *SrcTy : Types) {
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003601 if (SrcTy != DstTy && TTI.isTruncateFree(SrcTy, DstTy)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003602 Formula F = Base;
3603
Craig Topper042a3922015-05-25 20:01:18 +00003604 if (F.ScaledReg) F.ScaledReg = SE.getAnyExtendExpr(F.ScaledReg, SrcTy);
3605 for (const SCEV *&BaseReg : F.BaseRegs)
3606 BaseReg = SE.getAnyExtendExpr(BaseReg, SrcTy);
Dan Gohman45774ce2010-02-12 10:34:29 +00003607
3608 // TODO: This assumes we've done basic processing on all uses and
3609 // have an idea what the register usage is.
3610 if (!F.hasRegsUsedByUsesOtherThan(LUIdx, RegUses))
3611 continue;
3612
3613 (void)InsertFormula(LU, LUIdx, F);
3614 }
3615 }
3616}
3617
3618namespace {
3619
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003620/// Helper class for GenerateCrossUseConstantOffsets. It's used to defer
3621/// modifications so that the search phase doesn't have to worry about the data
3622/// structures moving underneath it.
Dan Gohman45774ce2010-02-12 10:34:29 +00003623struct WorkItem {
3624 size_t LUIdx;
3625 int64_t Imm;
3626 const SCEV *OrigReg;
3627
3628 WorkItem(size_t LI, int64_t I, const SCEV *R)
3629 : LUIdx(LI), Imm(I), OrigReg(R) {}
3630
3631 void print(raw_ostream &OS) const;
3632 void dump() const;
3633};
3634
Alexander Kornienkof00654e2015-06-23 09:49:53 +00003635}
Dan Gohman45774ce2010-02-12 10:34:29 +00003636
3637void WorkItem::print(raw_ostream &OS) const {
3638 OS << "in formulae referencing " << *OrigReg << " in use " << LUIdx
3639 << " , add offset " << Imm;
3640}
3641
Davide Italiano945d05f2015-11-23 02:47:30 +00003642LLVM_DUMP_METHOD
Dan Gohman45774ce2010-02-12 10:34:29 +00003643void WorkItem::dump() const {
3644 print(errs()); errs() << '\n';
3645}
3646
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003647/// Look for registers which are a constant distance apart and try to form reuse
3648/// opportunities between them.
Dan Gohman45774ce2010-02-12 10:34:29 +00003649void LSRInstance::GenerateCrossUseConstantOffsets() {
3650 // Group the registers by their value without any added constant offset.
3651 typedef std::map<int64_t, const SCEV *> ImmMapTy;
Craig Topper042a3922015-05-25 20:01:18 +00003652 DenseMap<const SCEV *, ImmMapTy> Map;
Dan Gohman45774ce2010-02-12 10:34:29 +00003653 DenseMap<const SCEV *, SmallBitVector> UsedByIndicesMap;
3654 SmallVector<const SCEV *, 8> Sequence;
Craig Topper042a3922015-05-25 20:01:18 +00003655 for (const SCEV *Use : RegUses) {
3656 const SCEV *Reg = Use; // Make a copy for ExtractImmediate to modify.
Dan Gohman45774ce2010-02-12 10:34:29 +00003657 int64_t Imm = ExtractImmediate(Reg, SE);
Craig Topper042a3922015-05-25 20:01:18 +00003658 auto Pair = Map.insert(std::make_pair(Reg, ImmMapTy()));
Dan Gohman45774ce2010-02-12 10:34:29 +00003659 if (Pair.second)
3660 Sequence.push_back(Reg);
Craig Topper042a3922015-05-25 20:01:18 +00003661 Pair.first->second.insert(std::make_pair(Imm, Use));
3662 UsedByIndicesMap[Reg] |= RegUses.getUsedByIndices(Use);
Dan Gohman45774ce2010-02-12 10:34:29 +00003663 }
3664
3665 // Now examine each set of registers with the same base value. Build up
3666 // a list of work to do and do the work in a separate step so that we're
3667 // not adding formulae and register counts while we're searching.
Dan Gohman110ed642010-09-01 01:45:53 +00003668 SmallVector<WorkItem, 32> WorkItems;
3669 SmallSet<std::pair<size_t, int64_t>, 32> UniqueItems;
Craig Topper042a3922015-05-25 20:01:18 +00003670 for (const SCEV *Reg : Sequence) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003671 const ImmMapTy &Imms = Map.find(Reg)->second;
3672
Dan Gohman363f8472010-02-12 19:20:37 +00003673 // It's not worthwhile looking for reuse if there's only one offset.
3674 if (Imms.size() == 1)
3675 continue;
3676
Dan Gohman45774ce2010-02-12 10:34:29 +00003677 DEBUG(dbgs() << "Generating cross-use offsets for " << *Reg << ':';
Craig Topper042a3922015-05-25 20:01:18 +00003678 for (const auto &Entry : Imms)
3679 dbgs() << ' ' << Entry.first;
Dan Gohman45774ce2010-02-12 10:34:29 +00003680 dbgs() << '\n');
3681
3682 // Examine each offset.
3683 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
3684 J != JE; ++J) {
3685 const SCEV *OrigReg = J->second;
3686
3687 int64_t JImm = J->first;
3688 const SmallBitVector &UsedByIndices = RegUses.getUsedByIndices(OrigReg);
3689
3690 if (!isa<SCEVConstant>(OrigReg) &&
3691 UsedByIndicesMap[Reg].count() == 1) {
3692 DEBUG(dbgs() << "Skipping cross-use reuse for " << *OrigReg << '\n');
3693 continue;
3694 }
3695
3696 // Conservatively examine offsets between this orig reg a few selected
3697 // other orig regs.
3698 ImmMapTy::const_iterator OtherImms[] = {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00003699 Imms.begin(), std::prev(Imms.end()),
3700 Imms.lower_bound((Imms.begin()->first + std::prev(Imms.end())->first) /
3701 2)
Dan Gohman45774ce2010-02-12 10:34:29 +00003702 };
3703 for (size_t i = 0, e = array_lengthof(OtherImms); i != e; ++i) {
3704 ImmMapTy::const_iterator M = OtherImms[i];
Dan Gohman363f8472010-02-12 19:20:37 +00003705 if (M == J || M == JE) continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003706
3707 // Compute the difference between the two.
3708 int64_t Imm = (uint64_t)JImm - M->first;
3709 for (int LUIdx = UsedByIndices.find_first(); LUIdx != -1;
Dan Gohman110ed642010-09-01 01:45:53 +00003710 LUIdx = UsedByIndices.find_next(LUIdx))
Dan Gohman45774ce2010-02-12 10:34:29 +00003711 // Make a memo of this use, offset, and register tuple.
David Blaikie70573dc2014-11-19 07:49:26 +00003712 if (UniqueItems.insert(std::make_pair(LUIdx, Imm)).second)
Dan Gohman110ed642010-09-01 01:45:53 +00003713 WorkItems.push_back(WorkItem(LUIdx, Imm, OrigReg));
Evan Cheng85a9f432009-11-12 07:35:05 +00003714 }
3715 }
3716 }
3717
Dan Gohman45774ce2010-02-12 10:34:29 +00003718 Map.clear();
3719 Sequence.clear();
3720 UsedByIndicesMap.clear();
Dan Gohman110ed642010-09-01 01:45:53 +00003721 UniqueItems.clear();
Dan Gohman45774ce2010-02-12 10:34:29 +00003722
3723 // Now iterate through the worklist and add new formulae.
Craig Topper042a3922015-05-25 20:01:18 +00003724 for (const WorkItem &WI : WorkItems) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003725 size_t LUIdx = WI.LUIdx;
3726 LSRUse &LU = Uses[LUIdx];
3727 int64_t Imm = WI.Imm;
3728 const SCEV *OrigReg = WI.OrigReg;
3729
Chris Lattner229907c2011-07-18 04:54:35 +00003730 Type *IntTy = SE.getEffectiveSCEVType(OrigReg->getType());
Dan Gohman45774ce2010-02-12 10:34:29 +00003731 const SCEV *NegImmS = SE.getSCEV(ConstantInt::get(IntTy, -(uint64_t)Imm));
3732 unsigned BitWidth = SE.getTypeSizeInBits(IntTy);
3733
Dan Gohman8b0a4192010-03-01 17:49:51 +00003734 // TODO: Use a more targeted data structure.
Dan Gohman45774ce2010-02-12 10:34:29 +00003735 for (size_t L = 0, LE = LU.Formulae.size(); L != LE; ++L) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003736 Formula F = LU.Formulae[L];
3737 // FIXME: The code for the scaled and unscaled registers looks
3738 // very similar but slightly different. Investigate if they
3739 // could be merged. That way, we would not have to unscale the
3740 // Formula.
Sanjoy Das302bfd02015-08-16 18:22:43 +00003741 F.unscale();
Dan Gohman45774ce2010-02-12 10:34:29 +00003742 // Use the immediate in the scaled register.
3743 if (F.ScaledReg == OrigReg) {
Chandler Carruth6e479322013-01-07 15:04:40 +00003744 int64_t Offset = (uint64_t)F.BaseOffset + Imm * (uint64_t)F.Scale;
Dan Gohman45774ce2010-02-12 10:34:29 +00003745 // Don't create 50 + reg(-50).
3746 if (F.referencesReg(SE.getSCEV(
Chandler Carruth6e479322013-01-07 15:04:40 +00003747 ConstantInt::get(IntTy, -(uint64_t)Offset))))
Dan Gohman45774ce2010-02-12 10:34:29 +00003748 continue;
3749 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00003750 NewF.BaseOffset = Offset;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003751 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
3752 NewF))
Dan Gohman45774ce2010-02-12 10:34:29 +00003753 continue;
3754 NewF.ScaledReg = SE.getAddExpr(NegImmS, NewF.ScaledReg);
3755
3756 // If the new scale is a constant in a register, and adding the constant
3757 // value to the immediate would produce a value closer to zero than the
3758 // immediate itself, then the formula isn't worthwhile.
3759 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewF.ScaledReg))
Sanjoy Das0de2fec2015-12-17 20:28:46 +00003760 if (C->getValue()->isNegative() != (NewF.BaseOffset < 0) &&
3761 (C->getAPInt().abs() * APInt(BitWidth, F.Scale))
3762 .ule(std::abs(NewF.BaseOffset)))
Dan Gohman45774ce2010-02-12 10:34:29 +00003763 continue;
3764
3765 // OK, looks good.
Sanjoy Das302bfd02015-08-16 18:22:43 +00003766 NewF.canonicalize();
Dan Gohman45774ce2010-02-12 10:34:29 +00003767 (void)InsertFormula(LU, LUIdx, NewF);
3768 } else {
3769 // Use the immediate in a base register.
3770 for (size_t N = 0, NE = F.BaseRegs.size(); N != NE; ++N) {
3771 const SCEV *BaseReg = F.BaseRegs[N];
3772 if (BaseReg != OrigReg)
3773 continue;
3774 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00003775 NewF.BaseOffset = (uint64_t)NewF.BaseOffset + Imm;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003776 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset,
3777 LU.Kind, LU.AccessTy, NewF)) {
3778 if (!TTI.isLegalAddImmediate((uint64_t)NewF.UnfoldedOffset + Imm))
Dan Gohman6136e942011-05-03 00:46:49 +00003779 continue;
3780 NewF = F;
3781 NewF.UnfoldedOffset = (uint64_t)NewF.UnfoldedOffset + Imm;
3782 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003783 NewF.BaseRegs[N] = SE.getAddExpr(NegImmS, BaseReg);
3784
3785 // If the new formula has a constant in a register, and adding the
3786 // constant value to the immediate would produce a value closer to
3787 // zero than the immediate itself, then the formula isn't worthwhile.
Craig Topper10949ae2015-05-23 08:45:10 +00003788 for (const SCEV *NewReg : NewF.BaseRegs)
3789 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewReg))
Sanjoy Das0de2fec2015-12-17 20:28:46 +00003790 if ((C->getAPInt() + NewF.BaseOffset)
3791 .abs()
3792 .slt(std::abs(NewF.BaseOffset)) &&
3793 (C->getAPInt() + NewF.BaseOffset).countTrailingZeros() >=
3794 countTrailingZeros<uint64_t>(NewF.BaseOffset))
Dan Gohman45774ce2010-02-12 10:34:29 +00003795 goto skip_formula;
3796
3797 // Ok, looks good.
Sanjoy Das302bfd02015-08-16 18:22:43 +00003798 NewF.canonicalize();
Dan Gohman45774ce2010-02-12 10:34:29 +00003799 (void)InsertFormula(LU, LUIdx, NewF);
3800 break;
3801 skip_formula:;
3802 }
3803 }
3804 }
3805 }
Dale Johannesen02cb2bf2009-05-11 17:15:42 +00003806}
3807
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003808/// Generate formulae for each use.
Dan Gohman45774ce2010-02-12 10:34:29 +00003809void
3810LSRInstance::GenerateAllReuseFormulae() {
Dan Gohman521efe62010-02-16 01:42:53 +00003811 // This is split into multiple loops so that hasRegsUsedByUsesOtherThan
Dan Gohman45774ce2010-02-12 10:34:29 +00003812 // queries are more precise.
3813 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3814 LSRUse &LU = Uses[LUIdx];
3815 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3816 GenerateReassociations(LU, LUIdx, LU.Formulae[i]);
3817 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3818 GenerateCombinations(LU, LUIdx, LU.Formulae[i]);
3819 }
3820 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3821 LSRUse &LU = Uses[LUIdx];
3822 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3823 GenerateSymbolicOffsets(LU, LUIdx, LU.Formulae[i]);
3824 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3825 GenerateConstantOffsets(LU, LUIdx, LU.Formulae[i]);
3826 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3827 GenerateICmpZeroScales(LU, LUIdx, LU.Formulae[i]);
3828 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3829 GenerateScales(LU, LUIdx, LU.Formulae[i]);
Dan Gohman521efe62010-02-16 01:42:53 +00003830 }
3831 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3832 LSRUse &LU = Uses[LUIdx];
Dan Gohman45774ce2010-02-12 10:34:29 +00003833 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3834 GenerateTruncates(LU, LUIdx, LU.Formulae[i]);
3835 }
3836
3837 GenerateCrossUseConstantOffsets();
Dan Gohmanbf673e02010-08-29 15:21:38 +00003838
3839 DEBUG(dbgs() << "\n"
3840 "After generating reuse formulae:\n";
3841 print_uses(dbgs()));
Dan Gohman45774ce2010-02-12 10:34:29 +00003842}
3843
Dan Gohman1b61fd92010-10-07 23:43:09 +00003844/// If there are multiple formulae with the same set of registers used
Dan Gohman45774ce2010-02-12 10:34:29 +00003845/// by other uses, pick the best one and delete the others.
3846void LSRInstance::FilterOutUndesirableDedicatedRegisters() {
Dan Gohman5947e162010-10-07 23:52:18 +00003847 DenseSet<const SCEV *> VisitedRegs;
3848 SmallPtrSet<const SCEV *, 16> Regs;
Andrew Trick5df90962011-12-06 03:13:31 +00003849 SmallPtrSet<const SCEV *, 16> LoserRegs;
Dan Gohman45774ce2010-02-12 10:34:29 +00003850#ifndef NDEBUG
Dan Gohman4c4043c2010-05-20 20:05:31 +00003851 bool ChangedFormulae = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00003852#endif
3853
3854 // Collect the best formula for each unique set of shared registers. This
3855 // is reset for each use.
Preston Gurd25c3b6a2013-02-01 20:41:27 +00003856 typedef DenseMap<SmallVector<const SCEV *, 4>, size_t, UniquifierDenseMapInfo>
Dan Gohman45774ce2010-02-12 10:34:29 +00003857 BestFormulaeTy;
3858 BestFormulaeTy BestFormulae;
3859
3860 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3861 LSRUse &LU = Uses[LUIdx];
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00003862 DEBUG(dbgs() << "Filtering for use "; LU.print(dbgs()); dbgs() << '\n');
Dan Gohman45774ce2010-02-12 10:34:29 +00003863
Dan Gohman4cf99b52010-05-18 23:42:37 +00003864 bool Any = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00003865 for (size_t FIdx = 0, NumForms = LU.Formulae.size();
3866 FIdx != NumForms; ++FIdx) {
3867 Formula &F = LU.Formulae[FIdx];
3868
Andrew Trick5df90962011-12-06 03:13:31 +00003869 // Some formulas are instant losers. For example, they may depend on
3870 // nonexistent AddRecs from other loops. These need to be filtered
3871 // immediately, otherwise heuristics could choose them over others leading
3872 // to an unsatisfactory solution. Passing LoserRegs into RateFormula here
3873 // avoids the need to recompute this information across formulae using the
3874 // same bad AddRec. Passing LoserRegs is also essential unless we remove
3875 // the corresponding bad register from the Regs set.
3876 Cost CostF;
3877 Regs.clear();
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00003878 CostF.RateFormula(TTI, F, Regs, VisitedRegs, L, LU.Offsets, SE, DT, LU,
Andrew Trick5df90962011-12-06 03:13:31 +00003879 &LoserRegs);
3880 if (CostF.isLoser()) {
3881 // During initial formula generation, undesirable formulae are generated
3882 // by uses within other loops that have some non-trivial address mode or
3883 // use the postinc form of the IV. LSR needs to provide these formulae
3884 // as the basis of rediscovering the desired formula that uses an AddRec
3885 // corresponding to the existing phi. Once all formulae have been
3886 // generated, these initial losers may be pruned.
3887 DEBUG(dbgs() << " Filtering loser "; F.print(dbgs());
3888 dbgs() << "\n");
Dan Gohman45774ce2010-02-12 10:34:29 +00003889 }
Andrew Trick5df90962011-12-06 03:13:31 +00003890 else {
Preston Gurd25c3b6a2013-02-01 20:41:27 +00003891 SmallVector<const SCEV *, 4> Key;
Craig Topper77b99412015-05-23 08:01:41 +00003892 for (const SCEV *Reg : F.BaseRegs) {
Andrew Trick5df90962011-12-06 03:13:31 +00003893 if (RegUses.isRegUsedByUsesOtherThan(Reg, LUIdx))
3894 Key.push_back(Reg);
3895 }
3896 if (F.ScaledReg &&
3897 RegUses.isRegUsedByUsesOtherThan(F.ScaledReg, LUIdx))
3898 Key.push_back(F.ScaledReg);
3899 // Unstable sort by host order ok, because this is only used for
3900 // uniquifying.
3901 std::sort(Key.begin(), Key.end());
Dan Gohman45774ce2010-02-12 10:34:29 +00003902
Andrew Trick5df90962011-12-06 03:13:31 +00003903 std::pair<BestFormulaeTy::const_iterator, bool> P =
3904 BestFormulae.insert(std::make_pair(Key, FIdx));
3905 if (P.second)
3906 continue;
3907
Dan Gohman45774ce2010-02-12 10:34:29 +00003908 Formula &Best = LU.Formulae[P.first->second];
Dan Gohman5947e162010-10-07 23:52:18 +00003909
Dan Gohman5947e162010-10-07 23:52:18 +00003910 Cost CostBest;
Dan Gohman5947e162010-10-07 23:52:18 +00003911 Regs.clear();
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00003912 CostBest.RateFormula(TTI, Best, Regs, VisitedRegs, L, LU.Offsets, SE,
3913 DT, LU);
Dan Gohman5947e162010-10-07 23:52:18 +00003914 if (CostF < CostBest)
Dan Gohman45774ce2010-02-12 10:34:29 +00003915 std::swap(F, Best);
Dan Gohman8aca7ef2010-05-18 22:37:37 +00003916 DEBUG(dbgs() << " Filtering out formula "; F.print(dbgs());
Dan Gohman45774ce2010-02-12 10:34:29 +00003917 dbgs() << "\n"
Dan Gohman8aca7ef2010-05-18 22:37:37 +00003918 " in favor of formula "; Best.print(dbgs());
Dan Gohman45774ce2010-02-12 10:34:29 +00003919 dbgs() << '\n');
Dan Gohman45774ce2010-02-12 10:34:29 +00003920 }
Andrew Trick5df90962011-12-06 03:13:31 +00003921#ifndef NDEBUG
3922 ChangedFormulae = true;
3923#endif
3924 LU.DeleteFormula(F);
3925 --FIdx;
3926 --NumForms;
3927 Any = true;
Dan Gohmand0800242010-05-07 23:36:59 +00003928 }
3929
Dan Gohmanbeebef42010-05-18 23:55:57 +00003930 // Now that we've filtered out some formulae, recompute the Regs set.
Dan Gohman4cf99b52010-05-18 23:42:37 +00003931 if (Any)
3932 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohmand0800242010-05-07 23:36:59 +00003933
3934 // Reset this to prepare for the next use.
Dan Gohman45774ce2010-02-12 10:34:29 +00003935 BestFormulae.clear();
3936 }
3937
Dan Gohman4c4043c2010-05-20 20:05:31 +00003938 DEBUG(if (ChangedFormulae) {
Dan Gohman5b18f032010-02-13 02:06:02 +00003939 dbgs() << "\n"
3940 "After filtering out undesirable candidates:\n";
Dan Gohman45774ce2010-02-12 10:34:29 +00003941 print_uses(dbgs());
3942 });
3943}
3944
Dan Gohmana4eca052010-05-18 22:51:59 +00003945// This is a rough guess that seems to work fairly well.
3946static const size_t ComplexityLimit = UINT16_MAX;
3947
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003948/// Estimate the worst-case number of solutions the solver might have to
3949/// consider. It almost never considers this many solutions because it prune the
3950/// search space, but the pruning isn't always sufficient.
Dan Gohmana4eca052010-05-18 22:51:59 +00003951size_t LSRInstance::EstimateSearchSpaceComplexity() const {
Dan Gohman49d638b2010-10-07 23:37:58 +00003952 size_t Power = 1;
Craig Topper10949ae2015-05-23 08:45:10 +00003953 for (const LSRUse &LU : Uses) {
3954 size_t FSize = LU.Formulae.size();
Dan Gohmana4eca052010-05-18 22:51:59 +00003955 if (FSize >= ComplexityLimit) {
3956 Power = ComplexityLimit;
3957 break;
3958 }
3959 Power *= FSize;
3960 if (Power >= ComplexityLimit)
3961 break;
3962 }
3963 return Power;
3964}
3965
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003966/// When one formula uses a superset of the registers of another formula, it
3967/// won't help reduce register pressure (though it may not necessarily hurt
3968/// register pressure); remove it to simplify the system.
Dan Gohmane9e08732010-08-29 16:09:42 +00003969void LSRInstance::NarrowSearchSpaceByDetectingSupersets() {
Dan Gohman20fab452010-05-19 23:43:12 +00003970 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
3971 DEBUG(dbgs() << "The search space is too complex.\n");
3972
3973 DEBUG(dbgs() << "Narrowing the search space by eliminating formulae "
3974 "which use a superset of registers used by other "
3975 "formulae.\n");
3976
3977 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3978 LSRUse &LU = Uses[LUIdx];
3979 bool Any = false;
3980 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
3981 Formula &F = LU.Formulae[i];
Dan Gohman8ec018c2010-05-20 20:00:41 +00003982 // Look for a formula with a constant or GV in a register. If the use
3983 // also has a formula with that same value in an immediate field,
3984 // delete the one that uses a register.
Dan Gohman20fab452010-05-19 23:43:12 +00003985 for (SmallVectorImpl<const SCEV *>::const_iterator
3986 I = F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I) {
3987 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*I)) {
3988 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00003989 NewF.BaseOffset += C->getValue()->getSExtValue();
Dan Gohman20fab452010-05-19 23:43:12 +00003990 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
3991 (I - F.BaseRegs.begin()));
3992 if (LU.HasFormulaWithSameRegs(NewF)) {
3993 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
3994 LU.DeleteFormula(F);
3995 --i;
3996 --e;
3997 Any = true;
3998 break;
3999 }
4000 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(*I)) {
4001 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue()))
Chandler Carruth6e479322013-01-07 15:04:40 +00004002 if (!F.BaseGV) {
Dan Gohman20fab452010-05-19 23:43:12 +00004003 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00004004 NewF.BaseGV = GV;
Dan Gohman20fab452010-05-19 23:43:12 +00004005 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
4006 (I - F.BaseRegs.begin()));
4007 if (LU.HasFormulaWithSameRegs(NewF)) {
4008 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
4009 dbgs() << '\n');
4010 LU.DeleteFormula(F);
4011 --i;
4012 --e;
4013 Any = true;
4014 break;
4015 }
4016 }
4017 }
4018 }
4019 }
4020 if (Any)
4021 LU.RecomputeRegs(LUIdx, RegUses);
4022 }
4023
4024 DEBUG(dbgs() << "After pre-selection:\n";
4025 print_uses(dbgs()));
4026 }
Dan Gohmane9e08732010-08-29 16:09:42 +00004027}
Dan Gohman20fab452010-05-19 23:43:12 +00004028
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004029/// When there are many registers for expressions like A, A+1, A+2, etc.,
4030/// allocate a single register for them.
Dan Gohmane9e08732010-08-29 16:09:42 +00004031void LSRInstance::NarrowSearchSpaceByCollapsingUnrolledCode() {
Jakub Staszak11bd8352013-02-16 16:08:15 +00004032 if (EstimateSearchSpaceComplexity() < ComplexityLimit)
4033 return;
Dan Gohman20fab452010-05-19 23:43:12 +00004034
Jakub Staszak11bd8352013-02-16 16:08:15 +00004035 DEBUG(dbgs() << "The search space is too complex.\n"
4036 "Narrowing the search space by assuming that uses separated "
4037 "by a constant offset will use the same registers.\n");
Dan Gohman20fab452010-05-19 23:43:12 +00004038
Jakub Staszak11bd8352013-02-16 16:08:15 +00004039 // This is especially useful for unrolled loops.
Dan Gohman8ec018c2010-05-20 20:00:41 +00004040
Jakub Staszak11bd8352013-02-16 16:08:15 +00004041 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4042 LSRUse &LU = Uses[LUIdx];
Craig Topper77b99412015-05-23 08:01:41 +00004043 for (const Formula &F : LU.Formulae) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004044 if (F.BaseOffset == 0 || (F.Scale != 0 && F.Scale != 1))
Jakub Staszak11bd8352013-02-16 16:08:15 +00004045 continue;
Dan Gohman20fab452010-05-19 23:43:12 +00004046
Jakub Staszak11bd8352013-02-16 16:08:15 +00004047 LSRUse *LUThatHas = FindUseWithSimilarFormula(F, LU);
4048 if (!LUThatHas)
4049 continue;
Dan Gohman20fab452010-05-19 23:43:12 +00004050
Jakub Staszak11bd8352013-02-16 16:08:15 +00004051 if (!reconcileNewOffset(*LUThatHas, F.BaseOffset, /*HasBaseReg=*/ false,
4052 LU.Kind, LU.AccessTy))
4053 continue;
Dan Gohman110ed642010-09-01 01:45:53 +00004054
Jakub Staszak11bd8352013-02-16 16:08:15 +00004055 DEBUG(dbgs() << " Deleting use "; LU.print(dbgs()); dbgs() << '\n');
Dan Gohman2fd85d72010-10-08 19:33:26 +00004056
Jakub Staszak11bd8352013-02-16 16:08:15 +00004057 LUThatHas->AllFixupsOutsideLoop &= LU.AllFixupsOutsideLoop;
4058
4059 // Update the relocs to reference the new use.
Craig Topper77b99412015-05-23 08:01:41 +00004060 for (LSRFixup &Fixup : Fixups) {
Jakub Staszak11bd8352013-02-16 16:08:15 +00004061 if (Fixup.LUIdx == LUIdx) {
4062 Fixup.LUIdx = LUThatHas - &Uses.front();
4063 Fixup.Offset += F.BaseOffset;
4064 // Add the new offset to LUThatHas' offset list.
4065 if (LUThatHas->Offsets.back() != Fixup.Offset) {
4066 LUThatHas->Offsets.push_back(Fixup.Offset);
4067 if (Fixup.Offset > LUThatHas->MaxOffset)
4068 LUThatHas->MaxOffset = Fixup.Offset;
4069 if (Fixup.Offset < LUThatHas->MinOffset)
4070 LUThatHas->MinOffset = Fixup.Offset;
Dan Gohman20fab452010-05-19 23:43:12 +00004071 }
Jakub Staszak11bd8352013-02-16 16:08:15 +00004072 DEBUG(dbgs() << "New fixup has offset " << Fixup.Offset << '\n');
4073 }
4074 if (Fixup.LUIdx == NumUses-1)
4075 Fixup.LUIdx = LUIdx;
4076 }
4077
4078 // Delete formulae from the new use which are no longer legal.
4079 bool Any = false;
4080 for (size_t i = 0, e = LUThatHas->Formulae.size(); i != e; ++i) {
4081 Formula &F = LUThatHas->Formulae[i];
4082 if (!isLegalUse(TTI, LUThatHas->MinOffset, LUThatHas->MaxOffset,
4083 LUThatHas->Kind, LUThatHas->AccessTy, F)) {
4084 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
4085 dbgs() << '\n');
4086 LUThatHas->DeleteFormula(F);
4087 --i;
4088 --e;
4089 Any = true;
Dan Gohman20fab452010-05-19 23:43:12 +00004090 }
4091 }
Dan Gohman20fab452010-05-19 23:43:12 +00004092
Jakub Staszak11bd8352013-02-16 16:08:15 +00004093 if (Any)
4094 LUThatHas->RecomputeRegs(LUThatHas - &Uses.front(), RegUses);
4095
4096 // Delete the old use.
4097 DeleteUse(LU, LUIdx);
4098 --LUIdx;
4099 --NumUses;
4100 break;
4101 }
Dan Gohman20fab452010-05-19 23:43:12 +00004102 }
Jakub Staszak11bd8352013-02-16 16:08:15 +00004103
4104 DEBUG(dbgs() << "After pre-selection:\n"; print_uses(dbgs()));
Dan Gohmane9e08732010-08-29 16:09:42 +00004105}
Dan Gohman20fab452010-05-19 23:43:12 +00004106
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004107/// Call FilterOutUndesirableDedicatedRegisters again, if necessary, now that
Dan Gohman002ff892010-08-29 16:39:22 +00004108/// we've done more filtering, as it may be able to find more formulae to
4109/// eliminate.
4110void LSRInstance::NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters(){
4111 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
4112 DEBUG(dbgs() << "The search space is too complex.\n");
4113
4114 DEBUG(dbgs() << "Narrowing the search space by re-filtering out "
4115 "undesirable dedicated registers.\n");
4116
4117 FilterOutUndesirableDedicatedRegisters();
4118
4119 DEBUG(dbgs() << "After pre-selection:\n";
4120 print_uses(dbgs()));
4121 }
4122}
4123
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004124/// Pick a register which seems likely to be profitable, and then in any use
4125/// which has any reference to that register, delete all formulae which do not
4126/// reference that register.
Dan Gohmane9e08732010-08-29 16:09:42 +00004127void LSRInstance::NarrowSearchSpaceByPickingWinnerRegs() {
Dan Gohmana4ca28a2010-05-20 20:52:00 +00004128 // With all other options exhausted, loop until the system is simple
4129 // enough to handle.
Dan Gohman45774ce2010-02-12 10:34:29 +00004130 SmallPtrSet<const SCEV *, 4> Taken;
Dan Gohmana4eca052010-05-18 22:51:59 +00004131 while (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004132 // Ok, we have too many of formulae on our hands to conveniently handle.
4133 // Use a rough heuristic to thin out the list.
Dan Gohman63e90152010-05-18 22:41:32 +00004134 DEBUG(dbgs() << "The search space is too complex.\n");
Dan Gohman45774ce2010-02-12 10:34:29 +00004135
4136 // Pick the register which is used by the most LSRUses, which is likely
4137 // to be a good reuse register candidate.
Craig Topperf40110f2014-04-25 05:29:35 +00004138 const SCEV *Best = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +00004139 unsigned BestNum = 0;
Craig Topper77b99412015-05-23 08:01:41 +00004140 for (const SCEV *Reg : RegUses) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004141 if (Taken.count(Reg))
4142 continue;
4143 if (!Best)
4144 Best = Reg;
4145 else {
4146 unsigned Count = RegUses.getUsedByIndices(Reg).count();
4147 if (Count > BestNum) {
4148 Best = Reg;
4149 BestNum = Count;
4150 }
4151 }
4152 }
4153
4154 DEBUG(dbgs() << "Narrowing the search space by assuming " << *Best
Dan Gohman8b0a4192010-03-01 17:49:51 +00004155 << " will yield profitable reuse.\n");
Dan Gohman45774ce2010-02-12 10:34:29 +00004156 Taken.insert(Best);
4157
4158 // In any use with formulae which references this register, delete formulae
4159 // which don't reference it.
Dan Gohman4cf99b52010-05-18 23:42:37 +00004160 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4161 LSRUse &LU = Uses[LUIdx];
Dan Gohman45774ce2010-02-12 10:34:29 +00004162 if (!LU.Regs.count(Best)) continue;
4163
Dan Gohman4cf99b52010-05-18 23:42:37 +00004164 bool Any = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00004165 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
4166 Formula &F = LU.Formulae[i];
4167 if (!F.referencesReg(Best)) {
4168 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00004169 LU.DeleteFormula(F);
Dan Gohman45774ce2010-02-12 10:34:29 +00004170 --e;
4171 --i;
Dan Gohman4cf99b52010-05-18 23:42:37 +00004172 Any = true;
Dan Gohmand0800242010-05-07 23:36:59 +00004173 assert(e != 0 && "Use has no formulae left! Is Regs inconsistent?");
Dan Gohman45774ce2010-02-12 10:34:29 +00004174 continue;
4175 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004176 }
Dan Gohman4cf99b52010-05-18 23:42:37 +00004177
4178 if (Any)
4179 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman45774ce2010-02-12 10:34:29 +00004180 }
4181
4182 DEBUG(dbgs() << "After pre-selection:\n";
4183 print_uses(dbgs()));
4184 }
4185}
4186
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004187/// If there are an extraordinary number of formulae to choose from, use some
4188/// rough heuristics to prune down the number of formulae. This keeps the main
4189/// solver from taking an extraordinary amount of time in some worst-case
4190/// scenarios.
Dan Gohmane9e08732010-08-29 16:09:42 +00004191void LSRInstance::NarrowSearchSpaceUsingHeuristics() {
4192 NarrowSearchSpaceByDetectingSupersets();
4193 NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman002ff892010-08-29 16:39:22 +00004194 NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Dan Gohmane9e08732010-08-29 16:09:42 +00004195 NarrowSearchSpaceByPickingWinnerRegs();
4196}
4197
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004198/// This is the recursive solver.
Dan Gohman45774ce2010-02-12 10:34:29 +00004199void LSRInstance::SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
4200 Cost &SolutionCost,
4201 SmallVectorImpl<const Formula *> &Workspace,
4202 const Cost &CurCost,
4203 const SmallPtrSet<const SCEV *, 16> &CurRegs,
4204 DenseSet<const SCEV *> &VisitedRegs) const {
4205 // Some ideas:
4206 // - prune more:
4207 // - use more aggressive filtering
4208 // - sort the formula so that the most profitable solutions are found first
4209 // - sort the uses too
4210 // - search faster:
Dan Gohman8b0a4192010-03-01 17:49:51 +00004211 // - don't compute a cost, and then compare. compare while computing a cost
Dan Gohman45774ce2010-02-12 10:34:29 +00004212 // and bail early.
4213 // - track register sets with SmallBitVector
4214
4215 const LSRUse &LU = Uses[Workspace.size()];
4216
4217 // If this use references any register that's already a part of the
4218 // in-progress solution, consider it a requirement that a formula must
4219 // reference that register in order to be considered. This prunes out
4220 // unprofitable searching.
4221 SmallSetVector<const SCEV *, 4> ReqRegs;
Craig Topper46276792014-08-24 23:23:06 +00004222 for (const SCEV *S : CurRegs)
4223 if (LU.Regs.count(S))
4224 ReqRegs.insert(S);
Dan Gohman45774ce2010-02-12 10:34:29 +00004225
4226 SmallPtrSet<const SCEV *, 16> NewRegs;
4227 Cost NewCost;
Craig Topper77b99412015-05-23 08:01:41 +00004228 for (const Formula &F : LU.Formulae) {
Adam Nemetdeab6f92014-04-29 18:25:28 +00004229 // Ignore formulae which may not be ideal in terms of register reuse of
4230 // ReqRegs. The formula should use all required registers before
4231 // introducing new ones.
4232 int NumReqRegsToFind = std::min(F.getNumRegs(), ReqRegs.size());
Craig Topper77b99412015-05-23 08:01:41 +00004233 for (const SCEV *Reg : ReqRegs) {
Adam Nemetdeab6f92014-04-29 18:25:28 +00004234 if ((F.ScaledReg && F.ScaledReg == Reg) ||
4235 std::find(F.BaseRegs.begin(), F.BaseRegs.end(), Reg) !=
Andrew Tricke3502cb2012-03-22 22:42:51 +00004236 F.BaseRegs.end()) {
Adam Nemetdeab6f92014-04-29 18:25:28 +00004237 --NumReqRegsToFind;
4238 if (NumReqRegsToFind == 0)
4239 break;
Andrew Tricke3502cb2012-03-22 22:42:51 +00004240 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004241 }
Adam Nemetdeab6f92014-04-29 18:25:28 +00004242 if (NumReqRegsToFind != 0) {
Andrew Tricke3502cb2012-03-22 22:42:51 +00004243 // If none of the formulae satisfied the required registers, then we could
4244 // clear ReqRegs and try again. Currently, we simply give up in this case.
4245 continue;
4246 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004247
4248 // Evaluate the cost of the current formula. If it's already worse than
4249 // the current best, prune the search at that point.
4250 NewCost = CurCost;
4251 NewRegs = CurRegs;
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00004252 NewCost.RateFormula(TTI, F, NewRegs, VisitedRegs, L, LU.Offsets, SE, DT,
4253 LU);
Dan Gohman45774ce2010-02-12 10:34:29 +00004254 if (NewCost < SolutionCost) {
4255 Workspace.push_back(&F);
4256 if (Workspace.size() != Uses.size()) {
4257 SolveRecurse(Solution, SolutionCost, Workspace, NewCost,
4258 NewRegs, VisitedRegs);
4259 if (F.getNumRegs() == 1 && Workspace.size() == 1)
4260 VisitedRegs.insert(F.ScaledReg ? F.ScaledReg : F.BaseRegs[0]);
4261 } else {
4262 DEBUG(dbgs() << "New best at "; NewCost.print(dbgs());
Andrew Trick4dc3eff2012-01-09 18:58:16 +00004263 dbgs() << ".\n Regs:";
Craig Topper46276792014-08-24 23:23:06 +00004264 for (const SCEV *S : NewRegs)
4265 dbgs() << ' ' << *S;
Dan Gohman45774ce2010-02-12 10:34:29 +00004266 dbgs() << '\n');
4267
4268 SolutionCost = NewCost;
4269 Solution = Workspace;
4270 }
4271 Workspace.pop_back();
4272 }
Dan Gohman5b18f032010-02-13 02:06:02 +00004273 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004274}
4275
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004276/// Choose one formula from each use. Return the results in the given Solution
4277/// vector.
Dan Gohman45774ce2010-02-12 10:34:29 +00004278void LSRInstance::Solve(SmallVectorImpl<const Formula *> &Solution) const {
4279 SmallVector<const Formula *, 8> Workspace;
4280 Cost SolutionCost;
Tim Northoverbc6659c2014-01-22 13:27:00 +00004281 SolutionCost.Lose();
Dan Gohman45774ce2010-02-12 10:34:29 +00004282 Cost CurCost;
4283 SmallPtrSet<const SCEV *, 16> CurRegs;
4284 DenseSet<const SCEV *> VisitedRegs;
4285 Workspace.reserve(Uses.size());
4286
Dan Gohman8ec018c2010-05-20 20:00:41 +00004287 // SolveRecurse does all the work.
Dan Gohman45774ce2010-02-12 10:34:29 +00004288 SolveRecurse(Solution, SolutionCost, Workspace, CurCost,
4289 CurRegs, VisitedRegs);
Andrew Trick58124392011-09-27 00:44:14 +00004290 if (Solution.empty()) {
4291 DEBUG(dbgs() << "\nNo Satisfactory Solution\n");
4292 return;
4293 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004294
4295 // Ok, we've now made all our decisions.
4296 DEBUG(dbgs() << "\n"
4297 "The chosen solution requires "; SolutionCost.print(dbgs());
4298 dbgs() << ":\n";
4299 for (size_t i = 0, e = Uses.size(); i != e; ++i) {
4300 dbgs() << " ";
4301 Uses[i].print(dbgs());
4302 dbgs() << "\n"
4303 " ";
4304 Solution[i]->print(dbgs());
4305 dbgs() << '\n';
4306 });
Dan Gohman6295f2e2010-05-20 20:59:23 +00004307
4308 assert(Solution.size() == Uses.size() && "Malformed solution!");
Dan Gohman45774ce2010-02-12 10:34:29 +00004309}
4310
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004311/// Helper for AdjustInsertPositionForExpand. Climb up the dominator tree far as
4312/// we can go while still being dominated by the input positions. This helps
4313/// canonicalize the insert position, which encourages sharing.
Dan Gohman607e02b2010-04-09 22:07:05 +00004314BasicBlock::iterator
4315LSRInstance::HoistInsertPosition(BasicBlock::iterator IP,
4316 const SmallVectorImpl<Instruction *> &Inputs)
4317 const {
Geoff Berry43e51602016-06-06 19:10:46 +00004318 Instruction *Tentative = &*IP;
Dan Gohman607e02b2010-04-09 22:07:05 +00004319 for (;;) {
Geoff Berry43e51602016-06-06 19:10:46 +00004320 bool AllDominate = true;
4321 Instruction *BetterPos = nullptr;
4322 // Don't bother attempting to insert before a catchswitch, their basic block
4323 // cannot have other non-PHI instructions.
4324 if (isa<CatchSwitchInst>(Tentative))
4325 return IP;
4326
4327 for (Instruction *Inst : Inputs) {
4328 if (Inst == Tentative || !DT.dominates(Inst, Tentative)) {
4329 AllDominate = false;
4330 break;
4331 }
4332 // Attempt to find an insert position in the middle of the block,
4333 // instead of at the end, so that it can be used for other expansions.
4334 if (Tentative->getParent() == Inst->getParent() &&
4335 (!BetterPos || !DT.dominates(Inst, BetterPos)))
4336 BetterPos = &*std::next(BasicBlock::iterator(Inst));
4337 }
4338 if (!AllDominate)
4339 break;
4340 if (BetterPos)
4341 IP = BetterPos->getIterator();
4342 else
4343 IP = Tentative->getIterator();
4344
Dan Gohman607e02b2010-04-09 22:07:05 +00004345 const Loop *IPLoop = LI.getLoopFor(IP->getParent());
4346 unsigned IPLoopDepth = IPLoop ? IPLoop->getLoopDepth() : 0;
4347
4348 BasicBlock *IDom;
Dan Gohman8ce95cc2010-05-20 20:00:25 +00004349 for (DomTreeNode *Rung = DT.getNode(IP->getParent()); ; ) {
Dan Gohman9b48b852010-05-20 22:46:54 +00004350 if (!Rung) return IP;
Dan Gohman8ce95cc2010-05-20 20:00:25 +00004351 Rung = Rung->getIDom();
4352 if (!Rung) return IP;
4353 IDom = Rung->getBlock();
Dan Gohman607e02b2010-04-09 22:07:05 +00004354
4355 // Don't climb into a loop though.
4356 const Loop *IDomLoop = LI.getLoopFor(IDom);
4357 unsigned IDomDepth = IDomLoop ? IDomLoop->getLoopDepth() : 0;
4358 if (IDomDepth <= IPLoopDepth &&
4359 (IDomDepth != IPLoopDepth || IDomLoop == IPLoop))
4360 break;
4361 }
4362
Geoff Berry43e51602016-06-06 19:10:46 +00004363 Tentative = IDom->getTerminator();
Dan Gohman607e02b2010-04-09 22:07:05 +00004364 }
4365
4366 return IP;
4367}
4368
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004369/// Determine an input position which will be dominated by the operands and
4370/// which will dominate the result.
Dan Gohmand2df6432010-04-09 02:00:38 +00004371BasicBlock::iterator
Andrew Trickc908b432012-01-20 07:41:13 +00004372LSRInstance::AdjustInsertPositionForExpand(BasicBlock::iterator LowestIP,
Dan Gohman607e02b2010-04-09 22:07:05 +00004373 const LSRFixup &LF,
Andrew Trickc908b432012-01-20 07:41:13 +00004374 const LSRUse &LU,
4375 SCEVExpander &Rewriter) const {
Dan Gohmand2df6432010-04-09 02:00:38 +00004376 // Collect some instructions which must be dominated by the
Dan Gohmand006ab92010-04-07 22:27:08 +00004377 // expanding replacement. These must be dominated by any operands that
Dan Gohman45774ce2010-02-12 10:34:29 +00004378 // will be required in the expansion.
4379 SmallVector<Instruction *, 4> Inputs;
4380 if (Instruction *I = dyn_cast<Instruction>(LF.OperandValToReplace))
4381 Inputs.push_back(I);
4382 if (LU.Kind == LSRUse::ICmpZero)
4383 if (Instruction *I =
4384 dyn_cast<Instruction>(cast<ICmpInst>(LF.UserInst)->getOperand(1)))
4385 Inputs.push_back(I);
Dan Gohmand006ab92010-04-07 22:27:08 +00004386 if (LF.PostIncLoops.count(L)) {
4387 if (LF.isUseFullyOutsideLoop(L))
Dan Gohman52f55632010-03-02 01:59:21 +00004388 Inputs.push_back(L->getLoopLatch()->getTerminator());
4389 else
4390 Inputs.push_back(IVIncInsertPos);
4391 }
Dan Gohman45065392010-04-08 05:57:57 +00004392 // The expansion must also be dominated by the increment positions of any
4393 // loops it for which it is using post-inc mode.
Craig Topper77b99412015-05-23 08:01:41 +00004394 for (const Loop *PIL : LF.PostIncLoops) {
Dan Gohman45065392010-04-08 05:57:57 +00004395 if (PIL == L) continue;
4396
Dan Gohman607e02b2010-04-09 22:07:05 +00004397 // Be dominated by the loop exit.
Dan Gohman45065392010-04-08 05:57:57 +00004398 SmallVector<BasicBlock *, 4> ExitingBlocks;
4399 PIL->getExitingBlocks(ExitingBlocks);
4400 if (!ExitingBlocks.empty()) {
4401 BasicBlock *BB = ExitingBlocks[0];
4402 for (unsigned i = 1, e = ExitingBlocks.size(); i != e; ++i)
4403 BB = DT.findNearestCommonDominator(BB, ExitingBlocks[i]);
4404 Inputs.push_back(BB->getTerminator());
4405 }
4406 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004407
David Majnemerba275f92015-08-19 19:54:02 +00004408 assert(!isa<PHINode>(LowestIP) && !LowestIP->isEHPad()
Andrew Trickc908b432012-01-20 07:41:13 +00004409 && !isa<DbgInfoIntrinsic>(LowestIP) &&
4410 "Insertion point must be a normal instruction");
4411
Dan Gohman45774ce2010-02-12 10:34:29 +00004412 // Then, climb up the immediate dominator tree as far as we can go while
4413 // still being dominated by the input positions.
Andrew Trickc908b432012-01-20 07:41:13 +00004414 BasicBlock::iterator IP = HoistInsertPosition(LowestIP, Inputs);
Dan Gohmand2df6432010-04-09 02:00:38 +00004415
4416 // Don't insert instructions before PHI nodes.
Dan Gohman45774ce2010-02-12 10:34:29 +00004417 while (isa<PHINode>(IP)) ++IP;
Dan Gohmand2df6432010-04-09 02:00:38 +00004418
Bill Wendling86c5cbe2011-08-24 21:06:46 +00004419 // Ignore landingpad instructions.
David Majnemere09d0352016-03-24 21:40:22 +00004420 while (IP->isEHPad()) ++IP;
Bill Wendling86c5cbe2011-08-24 21:06:46 +00004421
Dan Gohmand2df6432010-04-09 02:00:38 +00004422 // Ignore debug intrinsics.
Dan Gohmand42e09d2010-03-26 00:33:27 +00004423 while (isa<DbgInfoIntrinsic>(IP)) ++IP;
Dan Gohman45774ce2010-02-12 10:34:29 +00004424
Andrew Trickc908b432012-01-20 07:41:13 +00004425 // Set IP below instructions recently inserted by SCEVExpander. This keeps the
4426 // IP consistent across expansions and allows the previously inserted
4427 // instructions to be reused by subsequent expansion.
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00004428 while (Rewriter.isInsertedInstruction(&*IP) && IP != LowestIP)
4429 ++IP;
Andrew Trickc908b432012-01-20 07:41:13 +00004430
Dan Gohmand2df6432010-04-09 02:00:38 +00004431 return IP;
4432}
4433
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004434/// Emit instructions for the leading candidate expression for this LSRUse (this
4435/// is called "expanding").
Dan Gohmand2df6432010-04-09 02:00:38 +00004436Value *LSRInstance::Expand(const LSRFixup &LF,
4437 const Formula &F,
4438 BasicBlock::iterator IP,
4439 SCEVExpander &Rewriter,
4440 SmallVectorImpl<WeakVH> &DeadInsts) const {
4441 const LSRUse &LU = Uses[LF.LUIdx];
Andrew Trick57243da2013-10-25 21:35:56 +00004442 if (LU.RigidFormula)
4443 return LF.OperandValToReplace;
Dan Gohmand2df6432010-04-09 02:00:38 +00004444
4445 // Determine an input position which will be dominated by the operands and
4446 // which will dominate the result.
Andrew Trickc908b432012-01-20 07:41:13 +00004447 IP = AdjustInsertPositionForExpand(IP, LF, LU, Rewriter);
Dan Gohmand2df6432010-04-09 02:00:38 +00004448
Dan Gohman45774ce2010-02-12 10:34:29 +00004449 // Inform the Rewriter if we have a post-increment use, so that it can
4450 // perform an advantageous expansion.
Dan Gohmand006ab92010-04-07 22:27:08 +00004451 Rewriter.setPostInc(LF.PostIncLoops);
Dan Gohman45774ce2010-02-12 10:34:29 +00004452
4453 // This is the type that the user actually needs.
Chris Lattner229907c2011-07-18 04:54:35 +00004454 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00004455 // This will be the type that we'll initially expand to.
Chris Lattner229907c2011-07-18 04:54:35 +00004456 Type *Ty = F.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00004457 if (!Ty)
4458 // No type known; just expand directly to the ultimate type.
4459 Ty = OpTy;
4460 else if (SE.getEffectiveSCEVType(Ty) == SE.getEffectiveSCEVType(OpTy))
4461 // Expand directly to the ultimate type if it's the right size.
4462 Ty = OpTy;
4463 // This is the type to do integer arithmetic in.
Chris Lattner229907c2011-07-18 04:54:35 +00004464 Type *IntTy = SE.getEffectiveSCEVType(Ty);
Dan Gohman45774ce2010-02-12 10:34:29 +00004465
4466 // Build up a list of operands to add together to form the full base.
4467 SmallVector<const SCEV *, 8> Ops;
4468
4469 // Expand the BaseRegs portion.
Craig Topper77b99412015-05-23 08:01:41 +00004470 for (const SCEV *Reg : F.BaseRegs) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004471 assert(!Reg->isZero() && "Zero allocated in a base register!");
4472
Dan Gohmand006ab92010-04-07 22:27:08 +00004473 // If we're expanding for a post-inc user, make the post-inc adjustment.
4474 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
Sanjoy Das215df9e2015-08-04 01:52:05 +00004475 Reg = TransformForPostIncUse(Denormalize, Reg,
4476 LF.UserInst, LF.OperandValToReplace,
4477 Loops, SE, DT);
Dan Gohman45774ce2010-02-12 10:34:29 +00004478
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00004479 Ops.push_back(SE.getUnknown(Rewriter.expandCodeFor(Reg, nullptr, &*IP)));
Dan Gohman45774ce2010-02-12 10:34:29 +00004480 }
4481
4482 // Expand the ScaledReg portion.
Craig Topperf40110f2014-04-25 05:29:35 +00004483 Value *ICmpScaledV = nullptr;
Chandler Carruth6e479322013-01-07 15:04:40 +00004484 if (F.Scale != 0) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004485 const SCEV *ScaledS = F.ScaledReg;
4486
Dan Gohmand006ab92010-04-07 22:27:08 +00004487 // If we're expanding for a post-inc user, make the post-inc adjustment.
4488 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
Sanjoy Das215df9e2015-08-04 01:52:05 +00004489 ScaledS = TransformForPostIncUse(Denormalize, ScaledS,
4490 LF.UserInst, LF.OperandValToReplace,
4491 Loops, SE, DT);
Dan Gohman45774ce2010-02-12 10:34:29 +00004492
4493 if (LU.Kind == LSRUse::ICmpZero) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004494 // Expand ScaleReg as if it was part of the base regs.
4495 if (F.Scale == 1)
Sanjoy Das215df9e2015-08-04 01:52:05 +00004496 Ops.push_back(
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00004497 SE.getUnknown(Rewriter.expandCodeFor(ScaledS, nullptr, &*IP)));
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004498 else {
4499 // An interesting way of "folding" with an icmp is to use a negated
4500 // scale, which we'll implement by inserting it into the other operand
4501 // of the icmp.
4502 assert(F.Scale == -1 &&
4503 "The only scale supported by ICmpZero uses is -1!");
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00004504 ICmpScaledV = Rewriter.expandCodeFor(ScaledS, nullptr, &*IP);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004505 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004506 } else {
4507 // Otherwise just expand the scaled register and an explicit scale,
4508 // which is expected to be matched as part of the address.
Andrew Trick8370c7c2012-06-15 20:07:29 +00004509
4510 // Flush the operand list to suppress SCEVExpander hoisting address modes.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004511 // Unless the addressing mode will not be folded.
4512 if (!Ops.empty() && LU.Kind == LSRUse::Address &&
4513 isAMCompletelyFolded(TTI, LU, F)) {
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00004514 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, &*IP);
Andrew Trick8370c7c2012-06-15 20:07:29 +00004515 Ops.clear();
4516 Ops.push_back(SE.getUnknown(FullV));
4517 }
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00004518 ScaledS = SE.getUnknown(Rewriter.expandCodeFor(ScaledS, nullptr, &*IP));
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004519 if (F.Scale != 1)
4520 ScaledS =
4521 SE.getMulExpr(ScaledS, SE.getConstant(ScaledS->getType(), F.Scale));
Dan Gohman45774ce2010-02-12 10:34:29 +00004522 Ops.push_back(ScaledS);
4523 }
4524 }
4525
Dan Gohman29707de2010-03-03 05:29:13 +00004526 // Expand the GV portion.
Chandler Carruth6e479322013-01-07 15:04:40 +00004527 if (F.BaseGV) {
Dan Gohman29707de2010-03-03 05:29:13 +00004528 // Flush the operand list to suppress SCEVExpander hoisting.
Andrew Trick8370c7c2012-06-15 20:07:29 +00004529 if (!Ops.empty()) {
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00004530 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, &*IP);
Andrew Trick8370c7c2012-06-15 20:07:29 +00004531 Ops.clear();
4532 Ops.push_back(SE.getUnknown(FullV));
4533 }
Chandler Carruth6e479322013-01-07 15:04:40 +00004534 Ops.push_back(SE.getUnknown(F.BaseGV));
Andrew Trick8370c7c2012-06-15 20:07:29 +00004535 }
4536
4537 // Flush the operand list to suppress SCEVExpander hoisting of both folded and
4538 // unfolded offsets. LSR assumes they both live next to their uses.
4539 if (!Ops.empty()) {
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00004540 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, &*IP);
Dan Gohman29707de2010-03-03 05:29:13 +00004541 Ops.clear();
4542 Ops.push_back(SE.getUnknown(FullV));
4543 }
4544
4545 // Expand the immediate portion.
Chandler Carruth6e479322013-01-07 15:04:40 +00004546 int64_t Offset = (uint64_t)F.BaseOffset + LF.Offset;
Dan Gohman45774ce2010-02-12 10:34:29 +00004547 if (Offset != 0) {
4548 if (LU.Kind == LSRUse::ICmpZero) {
4549 // The other interesting way of "folding" with an ICmpZero is to use a
4550 // negated immediate.
4551 if (!ICmpScaledV)
Eli Friedmanb46345d2011-10-13 23:48:33 +00004552 ICmpScaledV = ConstantInt::get(IntTy, -(uint64_t)Offset);
Dan Gohman45774ce2010-02-12 10:34:29 +00004553 else {
4554 Ops.push_back(SE.getUnknown(ICmpScaledV));
4555 ICmpScaledV = ConstantInt::get(IntTy, Offset);
4556 }
4557 } else {
4558 // Just add the immediate values. These again are expected to be matched
4559 // as part of the address.
Dan Gohman29707de2010-03-03 05:29:13 +00004560 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy, Offset)));
Dan Gohman45774ce2010-02-12 10:34:29 +00004561 }
4562 }
4563
Dan Gohman6136e942011-05-03 00:46:49 +00004564 // Expand the unfolded offset portion.
4565 int64_t UnfoldedOffset = F.UnfoldedOffset;
4566 if (UnfoldedOffset != 0) {
4567 // Just add the immediate values.
4568 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy,
4569 UnfoldedOffset)));
4570 }
4571
Dan Gohman45774ce2010-02-12 10:34:29 +00004572 // Emit instructions summing all the operands.
4573 const SCEV *FullS = Ops.empty() ?
Dan Gohman1d2ded72010-05-03 22:09:21 +00004574 SE.getConstant(IntTy, 0) :
Dan Gohman45774ce2010-02-12 10:34:29 +00004575 SE.getAddExpr(Ops);
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00004576 Value *FullV = Rewriter.expandCodeFor(FullS, Ty, &*IP);
Dan Gohman45774ce2010-02-12 10:34:29 +00004577
4578 // We're done expanding now, so reset the rewriter.
Dan Gohmand006ab92010-04-07 22:27:08 +00004579 Rewriter.clearPostInc();
Dan Gohman45774ce2010-02-12 10:34:29 +00004580
4581 // An ICmpZero Formula represents an ICmp which we're handling as a
4582 // comparison against zero. Now that we've expanded an expression for that
4583 // form, update the ICmp's other operand.
4584 if (LU.Kind == LSRUse::ICmpZero) {
4585 ICmpInst *CI = cast<ICmpInst>(LF.UserInst);
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00004586 DeadInsts.emplace_back(CI->getOperand(1));
Chandler Carruth6e479322013-01-07 15:04:40 +00004587 assert(!F.BaseGV && "ICmp does not support folding a global value and "
Dan Gohman45774ce2010-02-12 10:34:29 +00004588 "a scale at the same time!");
Chandler Carruth6e479322013-01-07 15:04:40 +00004589 if (F.Scale == -1) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004590 if (ICmpScaledV->getType() != OpTy) {
4591 Instruction *Cast =
4592 CastInst::Create(CastInst::getCastOpcode(ICmpScaledV, false,
4593 OpTy, false),
4594 ICmpScaledV, OpTy, "tmp", CI);
4595 ICmpScaledV = Cast;
4596 }
4597 CI->setOperand(1, ICmpScaledV);
4598 } else {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004599 // A scale of 1 means that the scale has been expanded as part of the
4600 // base regs.
4601 assert((F.Scale == 0 || F.Scale == 1) &&
Dan Gohman45774ce2010-02-12 10:34:29 +00004602 "ICmp does not support folding a global value and "
4603 "a scale at the same time!");
4604 Constant *C = ConstantInt::getSigned(SE.getEffectiveSCEVType(OpTy),
4605 -(uint64_t)Offset);
4606 if (C->getType() != OpTy)
4607 C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
4608 OpTy, false),
4609 C, OpTy);
4610
4611 CI->setOperand(1, C);
4612 }
4613 }
4614
4615 return FullV;
4616}
4617
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004618/// Helper for Rewrite. PHI nodes are special because the use of their operands
4619/// effectively happens in their predecessor blocks, so the expression may need
4620/// to be expanded in multiple places.
Dan Gohman6deab962010-02-16 20:25:07 +00004621void LSRInstance::RewriteForPHI(PHINode *PN,
4622 const LSRFixup &LF,
4623 const Formula &F,
Dan Gohman6deab962010-02-16 20:25:07 +00004624 SCEVExpander &Rewriter,
Justin Bogner843fb202015-12-15 19:40:57 +00004625 SmallVectorImpl<WeakVH> &DeadInsts) const {
Dan Gohman6deab962010-02-16 20:25:07 +00004626 DenseMap<BasicBlock *, Value *> Inserted;
4627 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
4628 if (PN->getIncomingValue(i) == LF.OperandValToReplace) {
4629 BasicBlock *BB = PN->getIncomingBlock(i);
4630
4631 // If this is a critical edge, split the edge so that we do not insert
4632 // the code on all predecessor/successor paths. We do this unless this
4633 // is the canonical backedge for this loop, which complicates post-inc
4634 // users.
4635 if (e != 1 && BB->getTerminator()->getNumSuccessors() > 1 &&
Dan Gohmande7f6992011-02-08 00:55:13 +00004636 !isa<IndirectBrInst>(BB->getTerminator())) {
Bill Wendling07efd6f2011-08-25 01:08:34 +00004637 BasicBlock *Parent = PN->getParent();
4638 Loop *PNLoop = LI.getLoopFor(Parent);
4639 if (!PNLoop || Parent != PNLoop->getHeader()) {
Dan Gohmande7f6992011-02-08 00:55:13 +00004640 // Split the critical edge.
Craig Topperf40110f2014-04-25 05:29:35 +00004641 BasicBlock *NewBB = nullptr;
Bill Wendling3fb137f2011-08-25 05:55:40 +00004642 if (!Parent->isLandingPad()) {
Chandler Carruth37df2cf2015-01-19 12:09:11 +00004643 NewBB = SplitCriticalEdge(BB, Parent,
4644 CriticalEdgeSplittingOptions(&DT, &LI)
4645 .setMergeIdenticalEdges()
4646 .setDontDeleteUselessPHIs());
Bill Wendling3fb137f2011-08-25 05:55:40 +00004647 } else {
4648 SmallVector<BasicBlock*, 2> NewBBs;
Chandler Carruth96ada252015-07-22 09:52:54 +00004649 SplitLandingPadPredecessors(Parent, BB, "", "", NewBBs, &DT, &LI);
Bill Wendling3fb137f2011-08-25 05:55:40 +00004650 NewBB = NewBBs[0];
4651 }
Andrew Trick402edbb2012-09-18 17:51:33 +00004652 // If NewBB==NULL, then SplitCriticalEdge refused to split because all
4653 // phi predecessors are identical. The simple thing to do is skip
4654 // splitting in this case rather than complicate the API.
4655 if (NewBB) {
4656 // If PN is outside of the loop and BB is in the loop, we want to
4657 // move the block to be immediately before the PHI block, not
4658 // immediately after BB.
4659 if (L->contains(BB) && !L->contains(PN))
4660 NewBB->moveBefore(PN->getParent());
Dan Gohman6deab962010-02-16 20:25:07 +00004661
Andrew Trick402edbb2012-09-18 17:51:33 +00004662 // Splitting the edge can reduce the number of PHI entries we have.
4663 e = PN->getNumIncomingValues();
4664 BB = NewBB;
4665 i = PN->getBasicBlockIndex(BB);
4666 }
Dan Gohmande7f6992011-02-08 00:55:13 +00004667 }
Dan Gohman6deab962010-02-16 20:25:07 +00004668 }
4669
4670 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> Pair =
Craig Topperf40110f2014-04-25 05:29:35 +00004671 Inserted.insert(std::make_pair(BB, static_cast<Value *>(nullptr)));
Dan Gohman6deab962010-02-16 20:25:07 +00004672 if (!Pair.second)
4673 PN->setIncomingValue(i, Pair.first->second);
4674 else {
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00004675 Value *FullV = Expand(LF, F, BB->getTerminator()->getIterator(),
4676 Rewriter, DeadInsts);
Dan Gohman6deab962010-02-16 20:25:07 +00004677
4678 // If this is reuse-by-noop-cast, insert the noop cast.
Chris Lattner229907c2011-07-18 04:54:35 +00004679 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman6deab962010-02-16 20:25:07 +00004680 if (FullV->getType() != OpTy)
4681 FullV =
4682 CastInst::Create(CastInst::getCastOpcode(FullV, false,
4683 OpTy, false),
4684 FullV, LF.OperandValToReplace->getType(),
4685 "tmp", BB->getTerminator());
4686
4687 PN->setIncomingValue(i, FullV);
4688 Pair.first->second = FullV;
4689 }
4690 }
4691}
4692
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004693/// Emit instructions for the leading candidate expression for this LSRUse (this
4694/// is called "expanding"), and update the UserInst to reference the newly
4695/// expanded value.
Dan Gohman45774ce2010-02-12 10:34:29 +00004696void LSRInstance::Rewrite(const LSRFixup &LF,
4697 const Formula &F,
Dan Gohman45774ce2010-02-12 10:34:29 +00004698 SCEVExpander &Rewriter,
Justin Bogner843fb202015-12-15 19:40:57 +00004699 SmallVectorImpl<WeakVH> &DeadInsts) const {
Dan Gohman45774ce2010-02-12 10:34:29 +00004700 // First, find an insertion point that dominates UserInst. For PHI nodes,
4701 // find the nearest block which dominates all the relevant uses.
4702 if (PHINode *PN = dyn_cast<PHINode>(LF.UserInst)) {
Justin Bogner843fb202015-12-15 19:40:57 +00004703 RewriteForPHI(PN, LF, F, Rewriter, DeadInsts);
Dan Gohman45774ce2010-02-12 10:34:29 +00004704 } else {
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00004705 Value *FullV =
4706 Expand(LF, F, LF.UserInst->getIterator(), Rewriter, DeadInsts);
Dan Gohman45774ce2010-02-12 10:34:29 +00004707
4708 // If this is reuse-by-noop-cast, insert the noop cast.
Chris Lattner229907c2011-07-18 04:54:35 +00004709 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00004710 if (FullV->getType() != OpTy) {
4711 Instruction *Cast =
4712 CastInst::Create(CastInst::getCastOpcode(FullV, false, OpTy, false),
4713 FullV, OpTy, "tmp", LF.UserInst);
4714 FullV = Cast;
4715 }
4716
4717 // Update the user. ICmpZero is handled specially here (for now) because
4718 // Expand may have updated one of the operands of the icmp already, and
4719 // its new value may happen to be equal to LF.OperandValToReplace, in
4720 // which case doing replaceUsesOfWith leads to replacing both operands
4721 // with the same value. TODO: Reorganize this.
4722 if (Uses[LF.LUIdx].Kind == LSRUse::ICmpZero)
4723 LF.UserInst->setOperand(0, FullV);
4724 else
4725 LF.UserInst->replaceUsesOfWith(LF.OperandValToReplace, FullV);
4726 }
4727
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00004728 DeadInsts.emplace_back(LF.OperandValToReplace);
Dan Gohman45774ce2010-02-12 10:34:29 +00004729}
4730
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004731/// Rewrite all the fixup locations with new values, following the chosen
4732/// solution.
Justin Bogner843fb202015-12-15 19:40:57 +00004733void LSRInstance::ImplementSolution(
4734 const SmallVectorImpl<const Formula *> &Solution) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004735 // Keep track of instructions we may have made dead, so that
4736 // we can remove them after we are done working.
4737 SmallVector<WeakVH, 16> DeadInsts;
4738
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004739 SCEVExpander Rewriter(SE, L->getHeader()->getModule()->getDataLayout(),
4740 "lsr");
Andrew Trick4dc3eff2012-01-09 18:58:16 +00004741#ifndef NDEBUG
4742 Rewriter.setDebugType(DEBUG_TYPE);
4743#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00004744 Rewriter.disableCanonicalMode();
Andrew Trick7fb669a2011-10-07 23:46:21 +00004745 Rewriter.enableLSRMode();
Dan Gohman45774ce2010-02-12 10:34:29 +00004746 Rewriter.setIVIncInsertPos(L, IVIncInsertPos);
4747
Andrew Trickd5d2db92012-01-10 01:45:08 +00004748 // Mark phi nodes that terminate chains so the expander tries to reuse them.
Craig Topper77b99412015-05-23 08:01:41 +00004749 for (const IVChain &Chain : IVChainVec) {
4750 if (PHINode *PN = dyn_cast<PHINode>(Chain.tailUserInst()))
Andrew Trickd5d2db92012-01-10 01:45:08 +00004751 Rewriter.setChainedPhi(PN);
4752 }
4753
Dan Gohman45774ce2010-02-12 10:34:29 +00004754 // Expand the new value definitions and update the users.
Craig Topper77b99412015-05-23 08:01:41 +00004755 for (const LSRFixup &Fixup : Fixups) {
Justin Bogner843fb202015-12-15 19:40:57 +00004756 Rewrite(Fixup, *Solution[Fixup.LUIdx], Rewriter, DeadInsts);
Dan Gohman45774ce2010-02-12 10:34:29 +00004757
4758 Changed = true;
4759 }
4760
Craig Topper77b99412015-05-23 08:01:41 +00004761 for (const IVChain &Chain : IVChainVec) {
4762 GenerateIVChain(Chain, Rewriter, DeadInsts);
Andrew Trick248d4102012-01-09 21:18:52 +00004763 Changed = true;
4764 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004765 // Clean up after ourselves. This must be done before deleting any
4766 // instructions.
4767 Rewriter.clear();
4768
4769 Changed |= DeleteTriviallyDeadInstructions(DeadInsts);
4770}
4771
Justin Bogner843fb202015-12-15 19:40:57 +00004772LSRInstance::LSRInstance(Loop *L, IVUsers &IU, ScalarEvolution &SE,
4773 DominatorTree &DT, LoopInfo &LI,
4774 const TargetTransformInfo &TTI)
4775 : IU(IU), SE(SE), DT(DT), LI(LI), TTI(TTI), L(L), Changed(false),
4776 IVIncInsertPos(nullptr) {
Dan Gohmana83ac2d2009-11-05 21:11:53 +00004777 // If LoopSimplify form is not available, stay out of trouble.
Andrew Trick732ad802012-01-07 03:16:50 +00004778 if (!L->isLoopSimplifyForm())
4779 return;
Dan Gohmana83ac2d2009-11-05 21:11:53 +00004780
Andrew Trick070e5402012-03-16 03:16:56 +00004781 // If there's no interesting work to be done, bail early.
4782 if (IU.empty()) return;
4783
Andrew Trick19f80c12012-04-18 04:00:10 +00004784 // If there's too much analysis to be done, bail early. We won't be able to
4785 // model the problem anyway.
4786 unsigned NumUsers = 0;
Craig Topper77b99412015-05-23 08:01:41 +00004787 for (const IVStrideUse &U : IU) {
Andrew Trick19f80c12012-04-18 04:00:10 +00004788 if (++NumUsers > MaxIVUsers) {
Craig Topper37d0d862015-05-23 08:20:33 +00004789 (void)U;
Craig Topper77b99412015-05-23 08:01:41 +00004790 DEBUG(dbgs() << "LSR skipping loop, too many IV Users in " << U << "\n");
Andrew Trick19f80c12012-04-18 04:00:10 +00004791 return;
4792 }
David Majnemera53b5bb2016-02-03 21:30:34 +00004793 // Bail out if we have a PHI on an EHPad that gets a value from a
4794 // CatchSwitchInst. Because the CatchSwitchInst cannot be split, there is
4795 // no good place to stick any instructions.
4796 if (auto *PN = dyn_cast<PHINode>(U.getUser())) {
4797 auto *FirstNonPHI = PN->getParent()->getFirstNonPHI();
4798 if (isa<FuncletPadInst>(FirstNonPHI) ||
4799 isa<CatchSwitchInst>(FirstNonPHI))
4800 for (BasicBlock *PredBB : PN->blocks())
4801 if (isa<CatchSwitchInst>(PredBB->getFirstNonPHI()))
4802 return;
4803 }
Andrew Trick19f80c12012-04-18 04:00:10 +00004804 }
4805
Andrew Trick070e5402012-03-16 03:16:56 +00004806#ifndef NDEBUG
Andrew Trick12728f02012-01-17 06:45:52 +00004807 // All dominating loops must have preheaders, or SCEVExpander may not be able
4808 // to materialize an AddRecExpr whose Start is an outer AddRecExpr.
4809 //
Andrew Trick070e5402012-03-16 03:16:56 +00004810 // IVUsers analysis should only create users that are dominated by simple loop
4811 // headers. Since this loop should dominate all of its users, its user list
4812 // should be empty if this loop itself is not within a simple loop nest.
Andrew Trick12728f02012-01-17 06:45:52 +00004813 for (DomTreeNode *Rung = DT.getNode(L->getLoopPreheader());
4814 Rung; Rung = Rung->getIDom()) {
4815 BasicBlock *BB = Rung->getBlock();
4816 const Loop *DomLoop = LI.getLoopFor(BB);
4817 if (DomLoop && DomLoop->getHeader() == BB) {
Andrew Trick070e5402012-03-16 03:16:56 +00004818 assert(DomLoop->getLoopPreheader() && "LSR needs a simplified loop nest");
Andrew Trick12728f02012-01-17 06:45:52 +00004819 }
Andrew Trick732ad802012-01-07 03:16:50 +00004820 }
Andrew Trick070e5402012-03-16 03:16:56 +00004821#endif // DEBUG
Dan Gohman85875f72009-03-09 20:34:59 +00004822
Dan Gohman45774ce2010-02-12 10:34:29 +00004823 DEBUG(dbgs() << "\nLSR on loop ";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00004824 L->getHeader()->printAsOperand(dbgs(), /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00004825 dbgs() << ":\n");
Dan Gohmane201f8f2009-03-09 20:46:50 +00004826
Dan Gohman927bcaa2010-05-20 20:33:18 +00004827 // First, perform some low-level loop optimizations.
Dan Gohman45774ce2010-02-12 10:34:29 +00004828 OptimizeShadowIV();
Dan Gohman4c4043c2010-05-20 20:05:31 +00004829 OptimizeLoopTermCond();
Evan Cheng78a4eb82009-05-11 22:33:01 +00004830
Andrew Trick8acb4342011-07-21 00:40:04 +00004831 // If loop preparation eliminates all interesting IV users, bail.
4832 if (IU.empty()) return;
4833
Andrew Trick168dfff2011-09-29 01:53:08 +00004834 // Skip nested loops until we can model them better with formulae.
Andrew Trickd97b83e2012-03-22 22:42:45 +00004835 if (!L->empty()) {
Andrew Trickbc6de902011-09-29 01:33:38 +00004836 DEBUG(dbgs() << "LSR skipping outer loop " << *L << "\n");
Andrew Trick168dfff2011-09-29 01:53:08 +00004837 return;
Andrew Trickbc6de902011-09-29 01:33:38 +00004838 }
4839
Dan Gohman927bcaa2010-05-20 20:33:18 +00004840 // Start collecting data and preparing for the solver.
Andrew Trick29fe5f02012-01-09 19:50:34 +00004841 CollectChains();
Dan Gohman45774ce2010-02-12 10:34:29 +00004842 CollectInterestingTypesAndFactors();
4843 CollectFixupsAndInitialFormulae();
4844 CollectLoopInvariantFixupsAndFormulae();
Chris Lattner9bfa6f82005-08-08 05:28:22 +00004845
Andrew Trick248d4102012-01-09 21:18:52 +00004846 assert(!Uses.empty() && "IVUsers reported at least one use");
Dan Gohman45774ce2010-02-12 10:34:29 +00004847 DEBUG(dbgs() << "LSR found " << Uses.size() << " uses:\n";
4848 print_uses(dbgs()));
Misha Brukmanb1c93172005-04-21 23:48:37 +00004849
Dan Gohman45774ce2010-02-12 10:34:29 +00004850 // Now use the reuse data to generate a bunch of interesting ways
4851 // to formulate the values needed for the uses.
4852 GenerateAllReuseFormulae();
Evan Cheng3df447d2006-03-16 21:53:05 +00004853
Dan Gohman45774ce2010-02-12 10:34:29 +00004854 FilterOutUndesirableDedicatedRegisters();
4855 NarrowSearchSpaceUsingHeuristics();
Dan Gohman92c36962009-12-18 00:06:20 +00004856
Dan Gohman45774ce2010-02-12 10:34:29 +00004857 SmallVector<const Formula *, 8> Solution;
4858 Solve(Solution);
Dan Gohman92c36962009-12-18 00:06:20 +00004859
Dan Gohman45774ce2010-02-12 10:34:29 +00004860 // Release memory that is no longer needed.
4861 Factors.clear();
4862 Types.clear();
4863 RegUses.clear();
4864
Andrew Trick58124392011-09-27 00:44:14 +00004865 if (Solution.empty())
4866 return;
4867
Dan Gohman45774ce2010-02-12 10:34:29 +00004868#ifndef NDEBUG
4869 // Formulae should be legal.
Craig Topper77b99412015-05-23 08:01:41 +00004870 for (const LSRUse &LU : Uses) {
4871 for (const Formula &F : LU.Formulae)
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004872 assert(isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
Craig Topper77b99412015-05-23 08:01:41 +00004873 F) && "Illegal formula generated!");
Dan Gohman45774ce2010-02-12 10:34:29 +00004874 };
4875#endif
4876
4877 // Now that we've decided what we want, make it so.
Justin Bogner843fb202015-12-15 19:40:57 +00004878 ImplementSolution(Solution);
Dan Gohman45774ce2010-02-12 10:34:29 +00004879}
4880
4881void LSRInstance::print_factors_and_types(raw_ostream &OS) const {
4882 if (Factors.empty() && Types.empty()) return;
4883
4884 OS << "LSR has identified the following interesting factors and types: ";
4885 bool First = true;
4886
Craig Topper10949ae2015-05-23 08:45:10 +00004887 for (int64_t Factor : Factors) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004888 if (!First) OS << ", ";
4889 First = false;
Craig Topper10949ae2015-05-23 08:45:10 +00004890 OS << '*' << Factor;
Evan Cheng87fe40b2009-11-10 21:14:05 +00004891 }
Dale Johannesen02cb2bf2009-05-11 17:15:42 +00004892
Craig Topper10949ae2015-05-23 08:45:10 +00004893 for (Type *Ty : Types) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004894 if (!First) OS << ", ";
4895 First = false;
Craig Topper10949ae2015-05-23 08:45:10 +00004896 OS << '(' << *Ty << ')';
Dan Gohman45774ce2010-02-12 10:34:29 +00004897 }
4898 OS << '\n';
4899}
4900
4901void LSRInstance::print_fixups(raw_ostream &OS) const {
4902 OS << "LSR is examining the following fixup sites:\n";
Craig Topper77b99412015-05-23 08:01:41 +00004903 for (const LSRFixup &LF : Fixups) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004904 dbgs() << " ";
Craig Topper77b99412015-05-23 08:01:41 +00004905 LF.print(OS);
Dan Gohman45774ce2010-02-12 10:34:29 +00004906 OS << '\n';
4907 }
4908}
4909
4910void LSRInstance::print_uses(raw_ostream &OS) const {
4911 OS << "LSR is examining the following uses:\n";
Craig Topper77b99412015-05-23 08:01:41 +00004912 for (const LSRUse &LU : Uses) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004913 dbgs() << " ";
4914 LU.print(OS);
4915 OS << '\n';
Craig Topper77b99412015-05-23 08:01:41 +00004916 for (const Formula &F : LU.Formulae) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004917 OS << " ";
Craig Topper77b99412015-05-23 08:01:41 +00004918 F.print(OS);
Dan Gohman45774ce2010-02-12 10:34:29 +00004919 OS << '\n';
4920 }
4921 }
4922}
4923
4924void LSRInstance::print(raw_ostream &OS) const {
4925 print_factors_and_types(OS);
4926 print_fixups(OS);
4927 print_uses(OS);
4928}
4929
Davide Italiano945d05f2015-11-23 02:47:30 +00004930LLVM_DUMP_METHOD
Dan Gohman45774ce2010-02-12 10:34:29 +00004931void LSRInstance::dump() const {
4932 print(errs()); errs() << '\n';
4933}
4934
4935namespace {
4936
4937class LoopStrengthReduce : public LoopPass {
Dan Gohman45774ce2010-02-12 10:34:29 +00004938public:
4939 static char ID; // Pass ID, replacement for typeid
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004940 LoopStrengthReduce();
Dan Gohman45774ce2010-02-12 10:34:29 +00004941
4942private:
Craig Topper3e4c6972014-03-05 09:10:37 +00004943 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
4944 void getAnalysisUsage(AnalysisUsage &AU) const override;
Dan Gohman45774ce2010-02-12 10:34:29 +00004945};
4946
Alexander Kornienkof00654e2015-06-23 09:49:53 +00004947}
Dan Gohman45774ce2010-02-12 10:34:29 +00004948
4949char LoopStrengthReduce::ID = 0;
Owen Anderson8ac477f2010-10-12 19:48:12 +00004950INITIALIZE_PASS_BEGIN(LoopStrengthReduce, "loop-reduce",
Owen Andersondf7a4f22010-10-07 22:25:06 +00004951 "Loop Strength Reduction", false, false)
Chandler Carruth705b1852015-01-31 03:43:40 +00004952INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
Chandler Carruth73523022014-01-13 13:07:17 +00004953INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Chandler Carruth2f1fd162015-08-17 02:08:17 +00004954INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass)
Owen Anderson8ac477f2010-10-12 19:48:12 +00004955INITIALIZE_PASS_DEPENDENCY(IVUsers)
Chandler Carruth4f8f3072015-01-17 14:16:18 +00004956INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
Owen Andersona4fefc12010-10-19 20:08:44 +00004957INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
Owen Anderson8ac477f2010-10-12 19:48:12 +00004958INITIALIZE_PASS_END(LoopStrengthReduce, "loop-reduce",
4959 "Loop Strength Reduction", false, false)
4960
Nadav Rotem4dc976f2012-10-19 21:28:43 +00004961
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004962Pass *llvm::createLoopStrengthReducePass() {
4963 return new LoopStrengthReduce();
Dan Gohman45774ce2010-02-12 10:34:29 +00004964}
4965
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004966LoopStrengthReduce::LoopStrengthReduce() : LoopPass(ID) {
4967 initializeLoopStrengthReducePass(*PassRegistry::getPassRegistry());
4968}
Dan Gohman45774ce2010-02-12 10:34:29 +00004969
4970void LoopStrengthReduce::getAnalysisUsage(AnalysisUsage &AU) const {
4971 // We split critical edges, so we change the CFG. However, we do update
4972 // many analyses if they are around.
Eric Christopherda6bd452011-02-10 01:48:24 +00004973 AU.addPreservedID(LoopSimplifyID);
Dan Gohman45774ce2010-02-12 10:34:29 +00004974
Chandler Carruth4f8f3072015-01-17 14:16:18 +00004975 AU.addRequired<LoopInfoWrapperPass>();
4976 AU.addPreserved<LoopInfoWrapperPass>();
Eric Christopherda6bd452011-02-10 01:48:24 +00004977 AU.addRequiredID(LoopSimplifyID);
Chandler Carruth73523022014-01-13 13:07:17 +00004978 AU.addRequired<DominatorTreeWrapperPass>();
4979 AU.addPreserved<DominatorTreeWrapperPass>();
Chandler Carruth2f1fd162015-08-17 02:08:17 +00004980 AU.addRequired<ScalarEvolutionWrapperPass>();
4981 AU.addPreserved<ScalarEvolutionWrapperPass>();
Cameron Zwarich97dae4d2011-02-10 23:53:14 +00004982 // Requiring LoopSimplify a second time here prevents IVUsers from running
4983 // twice, since LoopSimplify was invalidated by running ScalarEvolution.
4984 AU.addRequiredID(LoopSimplifyID);
Dan Gohman45774ce2010-02-12 10:34:29 +00004985 AU.addRequired<IVUsers>();
4986 AU.addPreserved<IVUsers>();
Chandler Carruth705b1852015-01-31 03:43:40 +00004987 AU.addRequired<TargetTransformInfoWrapperPass>();
Dan Gohman45774ce2010-02-12 10:34:29 +00004988}
4989
4990bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager & /*LPM*/) {
Andrew Kayloraa641a52016-04-22 22:06:11 +00004991 if (skipLoop(L))
Paul Robinsonaf4e64d2014-02-06 00:07:05 +00004992 return false;
4993
Justin Bogner843fb202015-12-15 19:40:57 +00004994 auto &IU = getAnalysis<IVUsers>();
4995 auto &SE = getAnalysis<ScalarEvolutionWrapperPass>().getSE();
4996 auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
4997 auto &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
4998 const auto &TTI = getAnalysis<TargetTransformInfoWrapperPass>().getTTI(
4999 *L->getHeader()->getParent());
Dan Gohman45774ce2010-02-12 10:34:29 +00005000 bool Changed = false;
5001
5002 // Run the main LSR transformation.
Justin Bogner843fb202015-12-15 19:40:57 +00005003 Changed |= LSRInstance(L, IU, SE, DT, LI, TTI).getChanged();
Dan Gohman45774ce2010-02-12 10:34:29 +00005004
Andrew Trick2ec61a82012-01-07 01:36:44 +00005005 // Remove any extra phis created by processing inner loops.
Dan Gohmanb5358002010-01-05 16:31:45 +00005006 Changed |= DeleteDeadPHIs(L->getHeader());
Andrew Trickf950ce82013-01-06 05:59:39 +00005007 if (EnablePhiElim && L->isLoopSimplifyForm()) {
Andrew Trick2ec61a82012-01-07 01:36:44 +00005008 SmallVector<WeakVH, 16> DeadInsts;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00005009 const DataLayout &DL = L->getHeader()->getModule()->getDataLayout();
Chandler Carruth2f1fd162015-08-17 02:08:17 +00005010 SCEVExpander Rewriter(getAnalysis<ScalarEvolutionWrapperPass>().getSE(), DL,
5011 "lsr");
Andrew Trick2ec61a82012-01-07 01:36:44 +00005012#ifndef NDEBUG
5013 Rewriter.setDebugType(DEBUG_TYPE);
5014#endif
Chandler Carruth73523022014-01-13 13:07:17 +00005015 unsigned numFolded = Rewriter.replaceCongruentIVs(
5016 L, &getAnalysis<DominatorTreeWrapperPass>().getDomTree(), DeadInsts,
Chandler Carruthfdb9c572015-02-01 12:01:35 +00005017 &getAnalysis<TargetTransformInfoWrapperPass>().getTTI(
5018 *L->getHeader()->getParent()));
Andrew Trick2ec61a82012-01-07 01:36:44 +00005019 if (numFolded) {
5020 Changed = true;
5021 DeleteTriviallyDeadInstructions(DeadInsts);
5022 DeleteDeadPHIs(L->getHeader());
5023 }
5024 }
Evan Cheng03001cb2008-07-07 19:51:32 +00005025 return Changed;
Nate Begemanb18121e2004-10-18 21:08:22 +00005026}