blob: a634d9ffb15747f47ade54808a464a0947757c57 [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
Dan Gohman45774ce2010-02-12 10:34:29 +0000131/// RegSortData - This class holds data which is used to order reuse candidates.
132class RegSortData {
133public:
134 /// UsedByIndices - This represents the set of LSRUse indices which reference
135 /// 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
Manman Ren49d684e2012-09-12 05:06:18 +0000148#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +0000149void RegSortData::dump() const {
150 print(errs()); errs() << '\n';
151}
Manman Renc3366cc2012-09-06 19:55:56 +0000152#endif
Dan Gohman2a12ae72009-02-20 04:17:46 +0000153
Chris Lattner79a42ac2006-12-19 21:40:18 +0000154namespace {
Dale Johannesene3a02be2007-03-20 00:47:50 +0000155
Dan Gohman45774ce2010-02-12 10:34:29 +0000156/// RegUseTracker - Map register candidates to information about how they are
157/// used.
158class RegUseTracker {
159 typedef DenseMap<const SCEV *, RegSortData> RegUsesTy;
Dale Johannesene3a02be2007-03-20 00:47:50 +0000160
Dan Gohman248c41d2010-05-18 22:33:00 +0000161 RegUsesTy RegUsesMap;
Dan Gohman45774ce2010-02-12 10:34:29 +0000162 SmallVector<const SCEV *, 16> RegSequence;
Evan Cheng3df447d2006-03-16 21:53:05 +0000163
Dan Gohman45774ce2010-02-12 10:34:29 +0000164public:
165 void CountRegister(const SCEV *Reg, size_t LUIdx);
Dan Gohman4cf99b52010-05-18 23:42:37 +0000166 void DropRegister(const SCEV *Reg, size_t LUIdx);
Dan Gohmana7b68d62010-10-07 23:33:43 +0000167 void SwapAndDropUse(size_t LUIdx, size_t LastLUIdx);
Dan Gohman51ad99d2010-01-21 02:09:26 +0000168
Dan Gohman45774ce2010-02-12 10:34:29 +0000169 bool isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const;
Dan Gohman51ad99d2010-01-21 02:09:26 +0000170
Dan Gohman45774ce2010-02-12 10:34:29 +0000171 const SmallBitVector &getUsedByIndices(const SCEV *Reg) const;
Dan Gohman51ad99d2010-01-21 02:09:26 +0000172
Dan Gohman45774ce2010-02-12 10:34:29 +0000173 void clear();
Dan Gohman51ad99d2010-01-21 02:09:26 +0000174
Dan Gohman45774ce2010-02-12 10:34:29 +0000175 typedef SmallVectorImpl<const SCEV *>::iterator iterator;
176 typedef SmallVectorImpl<const SCEV *>::const_iterator const_iterator;
177 iterator begin() { return RegSequence.begin(); }
178 iterator end() { return RegSequence.end(); }
179 const_iterator begin() const { return RegSequence.begin(); }
180 const_iterator end() const { return RegSequence.end(); }
181};
Dan Gohman51ad99d2010-01-21 02:09:26 +0000182
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000183}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000184
Dan Gohman45774ce2010-02-12 10:34:29 +0000185void
186RegUseTracker::CountRegister(const SCEV *Reg, size_t LUIdx) {
187 std::pair<RegUsesTy::iterator, bool> Pair =
Dan Gohman248c41d2010-05-18 22:33:00 +0000188 RegUsesMap.insert(std::make_pair(Reg, RegSortData()));
Dan Gohman45774ce2010-02-12 10:34:29 +0000189 RegSortData &RSD = Pair.first->second;
190 if (Pair.second)
191 RegSequence.push_back(Reg);
192 RSD.UsedByIndices.resize(std::max(RSD.UsedByIndices.size(), LUIdx + 1));
193 RSD.UsedByIndices.set(LUIdx);
Dan Gohman51ad99d2010-01-21 02:09:26 +0000194}
195
Dan Gohman4cf99b52010-05-18 23:42:37 +0000196void
197RegUseTracker::DropRegister(const SCEV *Reg, size_t LUIdx) {
198 RegUsesTy::iterator It = RegUsesMap.find(Reg);
199 assert(It != RegUsesMap.end());
200 RegSortData &RSD = It->second;
201 assert(RSD.UsedByIndices.size() > LUIdx);
202 RSD.UsedByIndices.reset(LUIdx);
203}
204
Dan Gohman20fab452010-05-19 23:43:12 +0000205void
Dan Gohmana7b68d62010-10-07 23:33:43 +0000206RegUseTracker::SwapAndDropUse(size_t LUIdx, size_t LastLUIdx) {
207 assert(LUIdx <= LastLUIdx);
208
209 // Update RegUses. The data structure is not optimized for this purpose;
210 // we must iterate through it and update each of the bit vectors.
Craig Topper10949ae2015-05-23 08:45:10 +0000211 for (auto &Pair : RegUsesMap) {
212 SmallBitVector &UsedByIndices = Pair.second.UsedByIndices;
Dan Gohmana7b68d62010-10-07 23:33:43 +0000213 if (LUIdx < UsedByIndices.size())
214 UsedByIndices[LUIdx] =
215 LastLUIdx < UsedByIndices.size() ? UsedByIndices[LastLUIdx] : 0;
216 UsedByIndices.resize(std::min(UsedByIndices.size(), LastLUIdx));
217 }
Dan Gohman20fab452010-05-19 23:43:12 +0000218}
219
Dan Gohman45774ce2010-02-12 10:34:29 +0000220bool
221RegUseTracker::isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const {
Dan Gohman4f13bbf2010-08-29 15:18:49 +0000222 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
223 if (I == RegUsesMap.end())
224 return false;
225 const SmallBitVector &UsedByIndices = I->second.UsedByIndices;
Dan Gohman45774ce2010-02-12 10:34:29 +0000226 int i = UsedByIndices.find_first();
227 if (i == -1) return false;
228 if ((size_t)i != LUIdx) return true;
229 return UsedByIndices.find_next(i) != -1;
230}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000231
Dan Gohman45774ce2010-02-12 10:34:29 +0000232const SmallBitVector &RegUseTracker::getUsedByIndices(const SCEV *Reg) const {
Dan Gohman248c41d2010-05-18 22:33:00 +0000233 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
234 assert(I != RegUsesMap.end() && "Unknown register!");
Dan Gohman45774ce2010-02-12 10:34:29 +0000235 return I->second.UsedByIndices;
236}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000237
Dan Gohman45774ce2010-02-12 10:34:29 +0000238void RegUseTracker::clear() {
Dan Gohman248c41d2010-05-18 22:33:00 +0000239 RegUsesMap.clear();
Dan Gohman45774ce2010-02-12 10:34:29 +0000240 RegSequence.clear();
241}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000242
Dan Gohman45774ce2010-02-12 10:34:29 +0000243namespace {
244
245/// Formula - This class holds information that describes a formula for
246/// computing satisfying a use. It may include broken-out immediates and scaled
247/// registers.
248struct Formula {
Chandler Carruth6e479322013-01-07 15:04:40 +0000249 /// Global base address used for complex addressing.
250 GlobalValue *BaseGV;
251
252 /// Base offset for complex addressing.
253 int64_t BaseOffset;
254
255 /// Whether any complex addressing has a base register.
256 bool HasBaseReg;
257
258 /// The scale of any complex addressing.
259 int64_t Scale;
Dan Gohman45774ce2010-02-12 10:34:29 +0000260
261 /// BaseRegs - The list of "base" registers for this use. When this is
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000262 /// non-empty. The canonical representation of a formula is
263 /// 1. BaseRegs.size > 1 implies ScaledReg != NULL and
264 /// 2. ScaledReg != NULL implies Scale != 1 || !BaseRegs.empty().
265 /// #1 enforces that the scaled register is always used when at least two
266 /// registers are needed by the formula: e.g., reg1 + reg2 is reg1 + 1 * reg2.
267 /// #2 enforces that 1 * reg is reg.
268 /// This invariant can be temporarly broken while building a formula.
269 /// However, every formula inserted into the LSRInstance must be in canonical
270 /// form.
Preston Gurd25c3b6a2013-02-01 20:41:27 +0000271 SmallVector<const SCEV *, 4> BaseRegs;
Dan Gohman45774ce2010-02-12 10:34:29 +0000272
273 /// ScaledReg - The 'scaled' register for this use. This should be non-null
Chandler Carruth6e479322013-01-07 15:04:40 +0000274 /// when Scale is not zero.
Dan Gohman45774ce2010-02-12 10:34:29 +0000275 const SCEV *ScaledReg;
276
Dan Gohman6136e942011-05-03 00:46:49 +0000277 /// UnfoldedOffset - An additional constant offset which added near the
278 /// use. This requires a temporary register, but the offset itself can
279 /// live in an add immediate field rather than a register.
280 int64_t UnfoldedOffset;
281
Chandler Carruth6e479322013-01-07 15:04:40 +0000282 Formula()
Craig Topperf40110f2014-04-25 05:29:35 +0000283 : BaseGV(nullptr), BaseOffset(0), HasBaseReg(false), Scale(0),
Sanjoy Das215df9e2015-08-04 01:52:05 +0000284 ScaledReg(nullptr), UnfoldedOffset(0) {}
Dan Gohman45774ce2010-02-12 10:34:29 +0000285
Dan Gohman20d9ce22010-11-17 21:41:58 +0000286 void InitialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000287
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000288 bool isCanonical() const;
289
290 void Canonicalize();
291
292 bool Unscale();
293
Adam Nemetdeab6f92014-04-29 18:25:28 +0000294 size_t getNumRegs() const;
Chris Lattner229907c2011-07-18 04:54:35 +0000295 Type *getType() const;
Dan Gohman45774ce2010-02-12 10:34:29 +0000296
Dan Gohman80a96082010-05-20 15:17:54 +0000297 void DeleteBaseReg(const SCEV *&S);
298
Dan Gohman45774ce2010-02-12 10:34:29 +0000299 bool referencesReg(const SCEV *S) const;
300 bool hasRegsUsedByUsesOtherThan(size_t LUIdx,
301 const RegUseTracker &RegUses) const;
302
303 void print(raw_ostream &OS) const;
304 void dump() const;
305};
306
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000307}
Dan Gohman45774ce2010-02-12 10:34:29 +0000308
Dan Gohman8b0a4192010-03-01 17:49:51 +0000309/// DoInitialMatch - Recursion helper for InitialMatch.
Dan Gohman45774ce2010-02-12 10:34:29 +0000310static void DoInitialMatch(const SCEV *S, Loop *L,
311 SmallVectorImpl<const SCEV *> &Good,
312 SmallVectorImpl<const SCEV *> &Bad,
Dan Gohman20d9ce22010-11-17 21:41:58 +0000313 ScalarEvolution &SE) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000314 // Collect expressions which properly dominate the loop header.
Dan Gohman20d9ce22010-11-17 21:41:58 +0000315 if (SE.properlyDominates(S, L->getHeader())) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000316 Good.push_back(S);
317 return;
Dan Gohman51ad99d2010-01-21 02:09:26 +0000318 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000319
320 // Look at add operands.
321 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Craig Topper77b99412015-05-23 08:01:41 +0000322 for (const SCEV *S : Add->operands())
323 DoInitialMatch(S, L, Good, Bad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000324 return;
325 }
326
327 // Look at addrec operands.
328 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S))
329 if (!AR->getStart()->isZero()) {
Dan Gohman20d9ce22010-11-17 21:41:58 +0000330 DoInitialMatch(AR->getStart(), L, Good, Bad, SE);
Dan Gohman1d2ded72010-05-03 22:09:21 +0000331 DoInitialMatch(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
Dan Gohman45774ce2010-02-12 10:34:29 +0000332 AR->getStepRecurrence(SE),
Andrew Trick8b55b732011-03-14 16:50:06 +0000333 // FIXME: AR->getNoWrapFlags()
334 AR->getLoop(), SCEV::FlagAnyWrap),
Dan Gohman20d9ce22010-11-17 21:41:58 +0000335 L, Good, Bad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000336 return;
337 }
338
339 // Handle a multiplication by -1 (negation) if it didn't fold.
340 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S))
341 if (Mul->getOperand(0)->isAllOnesValue()) {
342 SmallVector<const SCEV *, 4> Ops(Mul->op_begin()+1, Mul->op_end());
343 const SCEV *NewMul = SE.getMulExpr(Ops);
344
345 SmallVector<const SCEV *, 4> MyGood;
346 SmallVector<const SCEV *, 4> MyBad;
Dan Gohman20d9ce22010-11-17 21:41:58 +0000347 DoInitialMatch(NewMul, L, MyGood, MyBad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000348 const SCEV *NegOne = SE.getSCEV(ConstantInt::getAllOnesValue(
349 SE.getEffectiveSCEVType(NewMul->getType())));
Craig Topper042a3922015-05-25 20:01:18 +0000350 for (const SCEV *S : MyGood)
351 Good.push_back(SE.getMulExpr(NegOne, S));
352 for (const SCEV *S : MyBad)
353 Bad.push_back(SE.getMulExpr(NegOne, S));
Dan Gohman45774ce2010-02-12 10:34:29 +0000354 return;
355 }
356
357 // Ok, we can't do anything interesting. Just stuff the whole thing into a
358 // register and hope for the best.
359 Bad.push_back(S);
360}
361
362/// InitialMatch - Incorporate loop-variant parts of S into this Formula,
363/// attempting to keep all loop-invariant and loop-computable values in a
364/// single base register.
Dan Gohman20d9ce22010-11-17 21:41:58 +0000365void Formula::InitialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000366 SmallVector<const SCEV *, 4> Good;
367 SmallVector<const SCEV *, 4> Bad;
Dan Gohman20d9ce22010-11-17 21:41:58 +0000368 DoInitialMatch(S, L, Good, Bad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000369 if (!Good.empty()) {
Dan Gohman9b5d0bb72010-04-08 23:36:27 +0000370 const SCEV *Sum = SE.getAddExpr(Good);
371 if (!Sum->isZero())
372 BaseRegs.push_back(Sum);
Chandler Carruth6e479322013-01-07 15:04:40 +0000373 HasBaseReg = true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000374 }
375 if (!Bad.empty()) {
Dan Gohman9b5d0bb72010-04-08 23:36:27 +0000376 const SCEV *Sum = SE.getAddExpr(Bad);
377 if (!Sum->isZero())
378 BaseRegs.push_back(Sum);
Chandler Carruth6e479322013-01-07 15:04:40 +0000379 HasBaseReg = true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000380 }
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000381 Canonicalize();
382}
383
384/// \brief Check whether or not this formula statisfies the canonical
385/// representation.
386/// \see Formula::BaseRegs.
387bool Formula::isCanonical() const {
388 if (ScaledReg)
389 return Scale != 1 || !BaseRegs.empty();
390 return BaseRegs.size() <= 1;
391}
392
393/// \brief Helper method to morph a formula into its canonical representation.
394/// \see Formula::BaseRegs.
395/// Every formula having more than one base register, must use the ScaledReg
396/// field. Otherwise, we would have to do special cases everywhere in LSR
397/// to treat reg1 + reg2 + ... the same way as reg1 + 1*reg2 + ...
398/// On the other hand, 1*reg should be canonicalized into reg.
399void Formula::Canonicalize() {
400 if (isCanonical())
401 return;
402 // So far we did not need this case. This is easy to implement but it is
403 // useless to maintain dead code. Beside it could hurt compile time.
404 assert(!BaseRegs.empty() && "1*reg => reg, should not be needed.");
405 // Keep the invariant sum in BaseRegs and one of the variant sum in ScaledReg.
406 ScaledReg = BaseRegs.back();
407 BaseRegs.pop_back();
408 Scale = 1;
409 size_t BaseRegsSize = BaseRegs.size();
410 size_t Try = 0;
411 // If ScaledReg is an invariant, try to find a variant expression.
412 while (Try < BaseRegsSize && !isa<SCEVAddRecExpr>(ScaledReg))
413 std::swap(ScaledReg, BaseRegs[Try++]);
414}
415
416/// \brief Get rid of the scale in the formula.
417/// In other words, this method morphes reg1 + 1*reg2 into reg1 + reg2.
418/// \return true if it was possible to get rid of the scale, false otherwise.
419/// \note After this operation the formula may not be in the canonical form.
420bool Formula::Unscale() {
421 if (Scale != 1)
422 return false;
423 Scale = 0;
424 BaseRegs.push_back(ScaledReg);
425 ScaledReg = nullptr;
426 return true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000427}
428
429/// getNumRegs - Return the total number of register operands used by this
430/// formula. This does not include register uses implied by non-constant
431/// addrec strides.
Adam Nemetdeab6f92014-04-29 18:25:28 +0000432size_t Formula::getNumRegs() const {
Dan Gohman45774ce2010-02-12 10:34:29 +0000433 return !!ScaledReg + BaseRegs.size();
434}
435
436/// getType - Return the type of this formula, if it has one, or null
437/// otherwise. This type is meaningless except for the bit size.
Chris Lattner229907c2011-07-18 04:54:35 +0000438Type *Formula::getType() const {
Sanjoy Das215df9e2015-08-04 01:52:05 +0000439 return !BaseRegs.empty() ? BaseRegs.front()->getType() :
440 ScaledReg ? ScaledReg->getType() :
441 BaseGV ? BaseGV->getType() :
442 nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000443}
444
Dan Gohman80a96082010-05-20 15:17:54 +0000445/// DeleteBaseReg - Delete the given base reg from the BaseRegs list.
446void Formula::DeleteBaseReg(const SCEV *&S) {
447 if (&S != &BaseRegs.back())
448 std::swap(S, BaseRegs.back());
449 BaseRegs.pop_back();
450}
451
Dan Gohman45774ce2010-02-12 10:34:29 +0000452/// referencesReg - Test if this formula references the given register.
453bool Formula::referencesReg(const SCEV *S) const {
454 return S == ScaledReg ||
455 std::find(BaseRegs.begin(), BaseRegs.end(), S) != BaseRegs.end();
456}
457
458/// hasRegsUsedByUsesOtherThan - Test whether this formula uses registers
459/// which are used by uses other than the use with the given index.
460bool Formula::hasRegsUsedByUsesOtherThan(size_t LUIdx,
461 const RegUseTracker &RegUses) const {
462 if (ScaledReg)
463 if (RegUses.isRegUsedByUsesOtherThan(ScaledReg, LUIdx))
464 return true;
Craig Topper042a3922015-05-25 20:01:18 +0000465 for (const SCEV *BaseReg : BaseRegs)
466 if (RegUses.isRegUsedByUsesOtherThan(BaseReg, LUIdx))
Dan Gohman45774ce2010-02-12 10:34:29 +0000467 return true;
468 return false;
469}
470
471void Formula::print(raw_ostream &OS) const {
472 bool First = true;
Chandler Carruth6e479322013-01-07 15:04:40 +0000473 if (BaseGV) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000474 if (!First) OS << " + "; else First = false;
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000475 BaseGV->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +0000476 }
Chandler Carruth6e479322013-01-07 15:04:40 +0000477 if (BaseOffset != 0) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000478 if (!First) OS << " + "; else First = false;
Chandler Carruth6e479322013-01-07 15:04:40 +0000479 OS << BaseOffset;
Dan Gohman45774ce2010-02-12 10:34:29 +0000480 }
Craig Topper042a3922015-05-25 20:01:18 +0000481 for (const SCEV *BaseReg : BaseRegs) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000482 if (!First) OS << " + "; else First = false;
Sanjoy Das215df9e2015-08-04 01:52:05 +0000483 OS << "reg(" << *BaseReg << ')';
Dan Gohman45774ce2010-02-12 10:34:29 +0000484 }
Chandler Carruth6e479322013-01-07 15:04:40 +0000485 if (HasBaseReg && BaseRegs.empty()) {
Dan Gohman06ab08f2010-05-18 22:35:55 +0000486 if (!First) OS << " + "; else First = false;
487 OS << "**error: HasBaseReg**";
Chandler Carruth6e479322013-01-07 15:04:40 +0000488 } else if (!HasBaseReg && !BaseRegs.empty()) {
Dan Gohman06ab08f2010-05-18 22:35:55 +0000489 if (!First) OS << " + "; else First = false;
490 OS << "**error: !HasBaseReg**";
491 }
Chandler Carruth6e479322013-01-07 15:04:40 +0000492 if (Scale != 0) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000493 if (!First) OS << " + "; else First = false;
Chandler Carruth6e479322013-01-07 15:04:40 +0000494 OS << Scale << "*reg(";
Sanjoy Das215df9e2015-08-04 01:52:05 +0000495 if (ScaledReg)
496 OS << *ScaledReg;
497 else
Dan Gohman45774ce2010-02-12 10:34:29 +0000498 OS << "<unknown>";
499 OS << ')';
500 }
Dan Gohman6136e942011-05-03 00:46:49 +0000501 if (UnfoldedOffset != 0) {
Arnaud A. de Grandmaison75c9e6d2014-03-15 22:13:15 +0000502 if (!First) OS << " + ";
Dan Gohman6136e942011-05-03 00:46:49 +0000503 OS << "imm(" << UnfoldedOffset << ')';
504 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000505}
506
Manman Ren49d684e2012-09-12 05:06:18 +0000507#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +0000508void Formula::dump() const {
509 print(errs()); errs() << '\n';
510}
Manman Renc3366cc2012-09-06 19:55:56 +0000511#endif
Dan Gohman45774ce2010-02-12 10:34:29 +0000512
Dan Gohman85af2562010-02-19 19:32:49 +0000513/// isAddRecSExtable - Return true if the given addrec can be sign-extended
514/// without changing its value.
515static bool isAddRecSExtable(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
Chris Lattner229907c2011-07-18 04:54:35 +0000516 Type *WideTy =
Dan Gohmanab5fb7f2010-05-20 19:44:23 +0000517 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(AR->getType()) + 1);
Dan Gohman85af2562010-02-19 19:32:49 +0000518 return isa<SCEVAddRecExpr>(SE.getSignExtendExpr(AR, WideTy));
519}
520
521/// isAddSExtable - Return true if the given add can be sign-extended
522/// without changing its value.
523static bool isAddSExtable(const SCEVAddExpr *A, ScalarEvolution &SE) {
Chris Lattner229907c2011-07-18 04:54:35 +0000524 Type *WideTy =
Dan Gohmanab5fb7f2010-05-20 19:44:23 +0000525 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(A->getType()) + 1);
Dan Gohman85af2562010-02-19 19:32:49 +0000526 return isa<SCEVAddExpr>(SE.getSignExtendExpr(A, WideTy));
527}
528
Dan Gohmanab542222010-06-24 16:45:11 +0000529/// isMulSExtable - Return true if the given mul can be sign-extended
Dan Gohman85af2562010-02-19 19:32:49 +0000530/// without changing its value.
Dan Gohmanab542222010-06-24 16:45:11 +0000531static bool isMulSExtable(const SCEVMulExpr *M, ScalarEvolution &SE) {
Chris Lattner229907c2011-07-18 04:54:35 +0000532 Type *WideTy =
Dan Gohmanab542222010-06-24 16:45:11 +0000533 IntegerType::get(SE.getContext(),
534 SE.getTypeSizeInBits(M->getType()) * M->getNumOperands());
535 return isa<SCEVMulExpr>(SE.getSignExtendExpr(M, WideTy));
Dan Gohman85af2562010-02-19 19:32:49 +0000536}
537
Dan Gohman4eebb942010-02-19 19:35:48 +0000538/// getExactSDiv - Return an expression for LHS /s RHS, if it can be determined
539/// and if the remainder is known to be zero, or null otherwise. If
540/// IgnoreSignificantBits is true, expressions like (X * Y) /s Y are simplified
541/// to Y, ignoring that the multiplication may overflow, which is useful when
542/// the result will be used in a context where the most significant bits are
543/// ignored.
544static const SCEV *getExactSDiv(const SCEV *LHS, const SCEV *RHS,
545 ScalarEvolution &SE,
546 bool IgnoreSignificantBits = false) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000547 // Handle the trivial case, which works for any SCEV type.
548 if (LHS == RHS)
Dan Gohman1d2ded72010-05-03 22:09:21 +0000549 return SE.getConstant(LHS->getType(), 1);
Dan Gohman45774ce2010-02-12 10:34:29 +0000550
Dan Gohman47ddf762010-06-24 16:51:25 +0000551 // Handle a few RHS special cases.
552 const SCEVConstant *RC = dyn_cast<SCEVConstant>(RHS);
553 if (RC) {
554 const APInt &RA = RC->getValue()->getValue();
555 // Handle x /s -1 as x * -1, to give ScalarEvolution a chance to do
556 // some folding.
557 if (RA.isAllOnesValue())
558 return SE.getMulExpr(LHS, RC);
559 // Handle x /s 1 as x.
560 if (RA == 1)
561 return LHS;
562 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000563
564 // Check for a division of a constant by a constant.
565 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(LHS)) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000566 if (!RC)
Craig Topperf40110f2014-04-25 05:29:35 +0000567 return nullptr;
Dan Gohman47ddf762010-06-24 16:51:25 +0000568 const APInt &LA = C->getValue()->getValue();
569 const APInt &RA = RC->getValue()->getValue();
570 if (LA.srem(RA) != 0)
Craig Topperf40110f2014-04-25 05:29:35 +0000571 return nullptr;
Dan Gohman47ddf762010-06-24 16:51:25 +0000572 return SE.getConstant(LA.sdiv(RA));
Dan Gohman45774ce2010-02-12 10:34:29 +0000573 }
574
Dan Gohman85af2562010-02-19 19:32:49 +0000575 // Distribute the sdiv over addrec operands, if the addrec doesn't overflow.
Dan Gohman45774ce2010-02-12 10:34:29 +0000576 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS)) {
Dan Gohman85af2562010-02-19 19:32:49 +0000577 if (IgnoreSignificantBits || isAddRecSExtable(AR, SE)) {
Dan Gohman4eebb942010-02-19 19:35:48 +0000578 const SCEV *Step = getExactSDiv(AR->getStepRecurrence(SE), RHS, SE,
579 IgnoreSignificantBits);
Craig Topperf40110f2014-04-25 05:29:35 +0000580 if (!Step) return nullptr;
Dan Gohman129a8162010-08-19 01:02:31 +0000581 const SCEV *Start = getExactSDiv(AR->getStart(), RHS, SE,
582 IgnoreSignificantBits);
Craig Topperf40110f2014-04-25 05:29:35 +0000583 if (!Start) return nullptr;
Andrew Trick8b55b732011-03-14 16:50:06 +0000584 // FlagNW is independent of the start value, step direction, and is
585 // preserved with smaller magnitude steps.
586 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
587 return SE.getAddRecExpr(Start, Step, AR->getLoop(), SCEV::FlagAnyWrap);
Dan Gohman85af2562010-02-19 19:32:49 +0000588 }
Craig Topperf40110f2014-04-25 05:29:35 +0000589 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000590 }
591
Dan Gohman85af2562010-02-19 19:32:49 +0000592 // Distribute the sdiv over add operands, if the add doesn't overflow.
Dan Gohman45774ce2010-02-12 10:34:29 +0000593 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) {
Dan Gohman85af2562010-02-19 19:32:49 +0000594 if (IgnoreSignificantBits || isAddSExtable(Add, SE)) {
595 SmallVector<const SCEV *, 8> Ops;
Craig Topper042a3922015-05-25 20:01:18 +0000596 for (const SCEV *S : Add->operands()) {
597 const SCEV *Op = getExactSDiv(S, RHS, SE, IgnoreSignificantBits);
Craig Topperf40110f2014-04-25 05:29:35 +0000598 if (!Op) return nullptr;
Dan Gohman85af2562010-02-19 19:32:49 +0000599 Ops.push_back(Op);
600 }
601 return SE.getAddExpr(Ops);
Dan Gohman45774ce2010-02-12 10:34:29 +0000602 }
Craig Topperf40110f2014-04-25 05:29:35 +0000603 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000604 }
605
606 // Check for a multiply operand that we can pull RHS out of.
Dan Gohman963b1c12010-06-24 16:57:52 +0000607 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(LHS)) {
Dan Gohman85af2562010-02-19 19:32:49 +0000608 if (IgnoreSignificantBits || isMulSExtable(Mul, SE)) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000609 SmallVector<const SCEV *, 4> Ops;
610 bool Found = false;
Craig Topper042a3922015-05-25 20:01:18 +0000611 for (const SCEV *S : Mul->operands()) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000612 if (!Found)
Dan Gohman6b733fc2010-05-20 16:23:28 +0000613 if (const SCEV *Q = getExactSDiv(S, RHS, SE,
Dan Gohman4eebb942010-02-19 19:35:48 +0000614 IgnoreSignificantBits)) {
Dan Gohman6b733fc2010-05-20 16:23:28 +0000615 S = Q;
Dan Gohman45774ce2010-02-12 10:34:29 +0000616 Found = true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000617 }
Dan Gohman6b733fc2010-05-20 16:23:28 +0000618 Ops.push_back(S);
Dan Gohman45774ce2010-02-12 10:34:29 +0000619 }
Craig Topperf40110f2014-04-25 05:29:35 +0000620 return Found ? SE.getMulExpr(Ops) : nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000621 }
Craig Topperf40110f2014-04-25 05:29:35 +0000622 return nullptr;
Dan Gohman963b1c12010-06-24 16:57:52 +0000623 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000624
625 // Otherwise we don't know.
Craig Topperf40110f2014-04-25 05:29:35 +0000626 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000627}
628
629/// ExtractImmediate - If S involves the addition of a constant integer value,
630/// return that integer value, and mutate S to point to a new SCEV with that
631/// value excluded.
632static int64_t ExtractImmediate(const SCEV *&S, ScalarEvolution &SE) {
633 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) {
634 if (C->getValue()->getValue().getMinSignedBits() <= 64) {
Dan Gohman1d2ded72010-05-03 22:09:21 +0000635 S = SE.getConstant(C->getType(), 0);
Dan Gohman45774ce2010-02-12 10:34:29 +0000636 return C->getValue()->getSExtValue();
637 }
638 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
639 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
640 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000641 if (Result != 0)
642 S = SE.getAddExpr(NewOps);
Dan Gohman45774ce2010-02-12 10:34:29 +0000643 return Result;
644 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
645 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
646 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000647 if (Result != 0)
Andrew Trick8b55b732011-03-14 16:50:06 +0000648 S = SE.getAddRecExpr(NewOps, AR->getLoop(),
649 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
650 SCEV::FlagAnyWrap);
Dan Gohman45774ce2010-02-12 10:34:29 +0000651 return Result;
652 }
653 return 0;
654}
655
656/// ExtractSymbol - If S involves the addition of a GlobalValue address,
657/// return that symbol, and mutate S to point to a new SCEV with that
658/// value excluded.
659static GlobalValue *ExtractSymbol(const SCEV *&S, ScalarEvolution &SE) {
660 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
661 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue())) {
Dan Gohman1d2ded72010-05-03 22:09:21 +0000662 S = SE.getConstant(GV->getType(), 0);
Dan Gohman45774ce2010-02-12 10:34:29 +0000663 return GV;
664 }
665 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
666 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
667 GlobalValue *Result = ExtractSymbol(NewOps.back(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000668 if (Result)
669 S = SE.getAddExpr(NewOps);
Dan Gohman45774ce2010-02-12 10:34:29 +0000670 return Result;
671 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
672 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
673 GlobalValue *Result = ExtractSymbol(NewOps.front(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000674 if (Result)
Andrew Trick8b55b732011-03-14 16:50:06 +0000675 S = SE.getAddRecExpr(NewOps, AR->getLoop(),
676 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
677 SCEV::FlagAnyWrap);
Dan Gohman45774ce2010-02-12 10:34:29 +0000678 return Result;
679 }
Craig Topperf40110f2014-04-25 05:29:35 +0000680 return nullptr;
Nate Begemanb18121e2004-10-18 21:08:22 +0000681}
682
Dan Gohmand0b1fbd2009-02-18 00:08:39 +0000683/// isAddressUse - Returns true if the specified instruction is using the
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000684/// specified value as an address.
685static bool isAddressUse(Instruction *Inst, Value *OperandVal) {
686 bool isAddress = isa<LoadInst>(Inst);
687 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
688 if (SI->getOperand(1) == OperandVal)
689 isAddress = true;
690 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
691 // Addressing modes can also be folded into prefetches and a variety
692 // of intrinsics.
693 switch (II->getIntrinsicID()) {
694 default: break;
695 case Intrinsic::prefetch:
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000696 case Intrinsic::x86_sse_storeu_ps:
697 case Intrinsic::x86_sse2_storeu_pd:
698 case Intrinsic::x86_sse2_storeu_dq:
699 case Intrinsic::x86_sse2_storel_dq:
Gabor Greif8ae30952010-06-30 09:15:28 +0000700 if (II->getArgOperand(0) == OperandVal)
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000701 isAddress = true;
702 break;
703 }
704 }
705 return isAddress;
706}
Chris Lattnere4ed42a2005-10-03 01:04:44 +0000707
Dan Gohman917ffe42009-03-09 21:01:17 +0000708/// getAccessType - Return the type of the memory being accessed.
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000709static MemAccessTy getAccessType(const Instruction *Inst) {
710 MemAccessTy AccessTy(Inst->getType(), MemAccessTy::UnknownAddressSpace);
711 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
712 AccessTy.MemTy = SI->getOperand(0)->getType();
713 AccessTy.AddrSpace = SI->getPointerAddressSpace();
714 } else if (const LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
715 AccessTy.AddrSpace = LI->getPointerAddressSpace();
716 } else if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
Dan Gohman917ffe42009-03-09 21:01:17 +0000717 // Addressing modes can also be folded into prefetches and a variety
718 // of intrinsics.
719 switch (II->getIntrinsicID()) {
720 default: break;
721 case Intrinsic::x86_sse_storeu_ps:
722 case Intrinsic::x86_sse2_storeu_pd:
723 case Intrinsic::x86_sse2_storeu_dq:
724 case Intrinsic::x86_sse2_storel_dq:
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000725 AccessTy.MemTy = II->getArgOperand(0)->getType();
Dan Gohman917ffe42009-03-09 21:01:17 +0000726 break;
727 }
728 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000729
730 // All pointers have the same requirements, so canonicalize them to an
731 // arbitrary pointer type to minimize variation.
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000732 if (PointerType *PTy = dyn_cast<PointerType>(AccessTy.MemTy))
733 AccessTy.MemTy = PointerType::get(IntegerType::get(PTy->getContext(), 1),
734 PTy->getAddressSpace());
Dan Gohman45774ce2010-02-12 10:34:29 +0000735
Dan Gohman14d13392009-05-18 16:45:28 +0000736 return AccessTy;
Dan Gohman917ffe42009-03-09 21:01:17 +0000737}
738
Andrew Trick5df90962011-12-06 03:13:31 +0000739/// isExistingPhi - Return true if this AddRec is already a phi in its loop.
740static bool isExistingPhi(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
741 for (BasicBlock::iterator I = AR->getLoop()->getHeader()->begin();
742 PHINode *PN = dyn_cast<PHINode>(I); ++I) {
743 if (SE.isSCEVable(PN->getType()) &&
744 (SE.getEffectiveSCEVType(PN->getType()) ==
745 SE.getEffectiveSCEVType(AR->getType())) &&
746 SE.getSCEV(PN) == AR)
747 return true;
748 }
749 return false;
750}
751
Andrew Trickd5d2db92012-01-10 01:45:08 +0000752/// Check if expanding this expression is likely to incur significant cost. This
753/// is tricky because SCEV doesn't track which expressions are actually computed
754/// by the current IR.
755///
756/// We currently allow expansion of IV increments that involve adds,
757/// multiplication by constants, and AddRecs from existing phis.
758///
759/// TODO: Allow UDivExpr if we can find an existing IV increment that is an
760/// obvious multiple of the UDivExpr.
761static bool isHighCostExpansion(const SCEV *S,
Craig Topper71b7b682014-08-21 05:55:13 +0000762 SmallPtrSetImpl<const SCEV*> &Processed,
Andrew Trickd5d2db92012-01-10 01:45:08 +0000763 ScalarEvolution &SE) {
764 // Zero/One operand expressions
765 switch (S->getSCEVType()) {
766 case scUnknown:
767 case scConstant:
768 return false;
769 case scTruncate:
770 return isHighCostExpansion(cast<SCEVTruncateExpr>(S)->getOperand(),
771 Processed, SE);
772 case scZeroExtend:
773 return isHighCostExpansion(cast<SCEVZeroExtendExpr>(S)->getOperand(),
774 Processed, SE);
775 case scSignExtend:
776 return isHighCostExpansion(cast<SCEVSignExtendExpr>(S)->getOperand(),
777 Processed, SE);
778 }
779
David Blaikie70573dc2014-11-19 07:49:26 +0000780 if (!Processed.insert(S).second)
Andrew Trickd5d2db92012-01-10 01:45:08 +0000781 return false;
782
783 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Craig Topper042a3922015-05-25 20:01:18 +0000784 for (const SCEV *S : Add->operands()) {
785 if (isHighCostExpansion(S, Processed, SE))
Andrew Trickd5d2db92012-01-10 01:45:08 +0000786 return true;
787 }
788 return false;
789 }
790
791 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
792 if (Mul->getNumOperands() == 2) {
793 // Multiplication by a constant is ok
794 if (isa<SCEVConstant>(Mul->getOperand(0)))
795 return isHighCostExpansion(Mul->getOperand(1), Processed, SE);
796
797 // If we have the value of one operand, check if an existing
798 // multiplication already generates this expression.
799 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(Mul->getOperand(1))) {
800 Value *UVal = U->getValue();
Chandler Carruthcdf47882014-03-09 03:16:01 +0000801 for (User *UR : UVal->users()) {
Andrew Trick14779cc2012-03-26 20:28:37 +0000802 // If U is a constant, it may be used by a ConstantExpr.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000803 Instruction *UI = dyn_cast<Instruction>(UR);
804 if (UI && UI->getOpcode() == Instruction::Mul &&
805 SE.isSCEVable(UI->getType())) {
806 return SE.getSCEV(UI) == Mul;
Andrew Trickd5d2db92012-01-10 01:45:08 +0000807 }
808 }
809 }
810 }
811 }
812
813 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
814 if (isExistingPhi(AR, SE))
815 return false;
816 }
817
818 // Fow now, consider any other type of expression (div/mul/min/max) high cost.
819 return true;
820}
821
Dan Gohman45774ce2010-02-12 10:34:29 +0000822/// DeleteTriviallyDeadInstructions - If any of the instructions is the
823/// specified set are trivially dead, delete them and see if this makes any of
824/// their operands subsequently dead.
825static bool
826DeleteTriviallyDeadInstructions(SmallVectorImpl<WeakVH> &DeadInsts) {
827 bool Changed = false;
828
829 while (!DeadInsts.empty()) {
Richard Smithad9c8e82012-08-21 20:35:14 +0000830 Value *V = DeadInsts.pop_back_val();
831 Instruction *I = dyn_cast_or_null<Instruction>(V);
Dan Gohman45774ce2010-02-12 10:34:29 +0000832
Craig Topperf40110f2014-04-25 05:29:35 +0000833 if (!I || !isInstructionTriviallyDead(I))
Dan Gohman45774ce2010-02-12 10:34:29 +0000834 continue;
835
Craig Topper042a3922015-05-25 20:01:18 +0000836 for (Use &O : I->operands())
837 if (Instruction *U = dyn_cast<Instruction>(O)) {
838 O = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000839 if (U->use_empty())
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +0000840 DeadInsts.emplace_back(U);
Dan Gohman45774ce2010-02-12 10:34:29 +0000841 }
842
843 I->eraseFromParent();
844 Changed = true;
845 }
846
847 return Changed;
848}
849
Dan Gohman045f8192010-01-22 00:46:49 +0000850namespace {
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000851class LSRUse;
852}
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000853
854/// \brief Check if the addressing mode defined by \p F is completely
855/// folded in \p LU at isel time.
856/// This includes address-mode folding and special icmp tricks.
857/// This function returns true if \p LU can accommodate what \p F
858/// defines and up to 1 base + 1 scaled + offset.
859/// In other words, if \p F has several base registers, this function may
860/// still return true. Therefore, users still need to account for
861/// additional base registers and/or unfolded offsets to derive an
862/// accurate cost model.
863static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
864 const LSRUse &LU, const Formula &F);
Quentin Colombetbf490d42013-05-31 21:29:03 +0000865// Get the cost of the scaling factor used in F for LU.
866static unsigned getScalingFactorCost(const TargetTransformInfo &TTI,
867 const LSRUse &LU, const Formula &F);
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000868
869namespace {
Jim Grosbach60f48542009-11-17 17:53:56 +0000870
Dan Gohman45774ce2010-02-12 10:34:29 +0000871/// Cost - This class is used to measure and compare candidate formulae.
872class Cost {
873 /// TODO: Some of these could be merged. Also, a lexical ordering
874 /// isn't always optimal.
875 unsigned NumRegs;
876 unsigned AddRecCost;
877 unsigned NumIVMuls;
878 unsigned NumBaseAdds;
879 unsigned ImmCost;
880 unsigned SetupCost;
Quentin Colombetbf490d42013-05-31 21:29:03 +0000881 unsigned ScaleCost;
Nate Begemane68bcd12005-07-30 00:15:07 +0000882
Dan Gohman45774ce2010-02-12 10:34:29 +0000883public:
884 Cost()
885 : NumRegs(0), AddRecCost(0), NumIVMuls(0), NumBaseAdds(0), ImmCost(0),
Quentin Colombetbf490d42013-05-31 21:29:03 +0000886 SetupCost(0), ScaleCost(0) {}
Jim Grosbach60f48542009-11-17 17:53:56 +0000887
Dan Gohman45774ce2010-02-12 10:34:29 +0000888 bool operator<(const Cost &Other) const;
Dan Gohman045f8192010-01-22 00:46:49 +0000889
Tim Northoverbc6659c2014-01-22 13:27:00 +0000890 void Lose();
Dan Gohman045f8192010-01-22 00:46:49 +0000891
Andrew Trick784729d2011-09-26 23:11:04 +0000892#ifndef NDEBUG
893 // Once any of the metrics loses, they must all remain losers.
894 bool isValid() {
895 return ((NumRegs | AddRecCost | NumIVMuls | NumBaseAdds
Quentin Colombetbf490d42013-05-31 21:29:03 +0000896 | ImmCost | SetupCost | ScaleCost) != ~0u)
Andrew Trick784729d2011-09-26 23:11:04 +0000897 || ((NumRegs & AddRecCost & NumIVMuls & NumBaseAdds
Quentin Colombetbf490d42013-05-31 21:29:03 +0000898 & ImmCost & SetupCost & ScaleCost) == ~0u);
Andrew Trick784729d2011-09-26 23:11:04 +0000899 }
900#endif
901
902 bool isLoser() {
903 assert(isValid() && "invalid cost");
904 return NumRegs == ~0u;
905 }
906
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000907 void RateFormula(const TargetTransformInfo &TTI,
908 const Formula &F,
Craig Topper71b7b682014-08-21 05:55:13 +0000909 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman45774ce2010-02-12 10:34:29 +0000910 const DenseSet<const SCEV *> &VisitedRegs,
911 const Loop *L,
912 const SmallVectorImpl<int64_t> &Offsets,
Andrew Trick5df90962011-12-06 03:13:31 +0000913 ScalarEvolution &SE, DominatorTree &DT,
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000914 const LSRUse &LU,
Craig Topper71b7b682014-08-21 05:55:13 +0000915 SmallPtrSetImpl<const SCEV *> *LoserRegs = nullptr);
Dan Gohman045f8192010-01-22 00:46:49 +0000916
Dan Gohman45774ce2010-02-12 10:34:29 +0000917 void print(raw_ostream &OS) const;
918 void dump() const;
Dan Gohman045f8192010-01-22 00:46:49 +0000919
Dan Gohman45774ce2010-02-12 10:34:29 +0000920private:
921 void RateRegister(const SCEV *Reg,
Craig Topper71b7b682014-08-21 05:55:13 +0000922 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman45774ce2010-02-12 10:34:29 +0000923 const Loop *L,
924 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman5b18f032010-02-13 02:06:02 +0000925 void RatePrimaryRegister(const SCEV *Reg,
Craig Topper71b7b682014-08-21 05:55:13 +0000926 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman5b18f032010-02-13 02:06:02 +0000927 const Loop *L,
Andrew Trick5df90962011-12-06 03:13:31 +0000928 ScalarEvolution &SE, DominatorTree &DT,
Craig Topper71b7b682014-08-21 05:55:13 +0000929 SmallPtrSetImpl<const SCEV *> *LoserRegs);
Dan Gohman45774ce2010-02-12 10:34:29 +0000930};
931
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000932}
Dan Gohman45774ce2010-02-12 10:34:29 +0000933
934/// RateRegister - Tally up interesting quantities from the given register.
935void Cost::RateRegister(const SCEV *Reg,
Craig Topper71b7b682014-08-21 05:55:13 +0000936 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman45774ce2010-02-12 10:34:29 +0000937 const Loop *L,
938 ScalarEvolution &SE, DominatorTree &DT) {
Dan Gohman5b18f032010-02-13 02:06:02 +0000939 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Reg)) {
Andrew Trickbc6de902011-09-29 01:33:38 +0000940 // If this is an addrec for another loop, don't second-guess its addrec phi
941 // nodes. LSR isn't currently smart enough to reason about more than one
Andrew Trickd97b83e2012-03-22 22:42:45 +0000942 // loop at a time. LSR has already run on inner loops, will not run on outer
943 // loops, and cannot be expected to change sibling loops.
944 if (AR->getLoop() != L) {
945 // If the AddRec exists, consider it's register free and leave it alone.
Andrew Trick5df90962011-12-06 03:13:31 +0000946 if (isExistingPhi(AR, SE))
947 return;
948
Andrew Trickd97b83e2012-03-22 22:42:45 +0000949 // Otherwise, do not consider this formula at all.
Tim Northoverbc6659c2014-01-22 13:27:00 +0000950 Lose();
Andrew Trickd97b83e2012-03-22 22:42:45 +0000951 return;
Dan Gohman45774ce2010-02-12 10:34:29 +0000952 }
Andrew Trickd97b83e2012-03-22 22:42:45 +0000953 AddRecCost += 1; /// TODO: This should be a function of the stride.
Dan Gohman45774ce2010-02-12 10:34:29 +0000954
Dan Gohman5b18f032010-02-13 02:06:02 +0000955 // Add the step value register, if it needs one.
956 // TODO: The non-affine case isn't precisely modeled here.
Andrew Trick8868fae2011-09-26 23:35:25 +0000957 if (!AR->isAffine() || !isa<SCEVConstant>(AR->getOperand(1))) {
958 if (!Regs.count(AR->getOperand(1))) {
Dan Gohman5b18f032010-02-13 02:06:02 +0000959 RateRegister(AR->getOperand(1), Regs, L, SE, DT);
Andrew Trick8868fae2011-09-26 23:35:25 +0000960 if (isLoser())
961 return;
962 }
963 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000964 }
Dan Gohman5b18f032010-02-13 02:06:02 +0000965 ++NumRegs;
966
967 // Rough heuristic; favor registers which don't require extra setup
968 // instructions in the preheader.
969 if (!isa<SCEVUnknown>(Reg) &&
970 !isa<SCEVConstant>(Reg) &&
971 !(isa<SCEVAddRecExpr>(Reg) &&
972 (isa<SCEVUnknown>(cast<SCEVAddRecExpr>(Reg)->getStart()) ||
973 isa<SCEVConstant>(cast<SCEVAddRecExpr>(Reg)->getStart()))))
974 ++SetupCost;
Dan Gohman34f37e02010-10-07 23:41:58 +0000975
976 NumIVMuls += isa<SCEVMulExpr>(Reg) &&
Dan Gohmanafd6db92010-11-17 21:23:15 +0000977 SE.hasComputableLoopEvolution(Reg, L);
Dan Gohman5b18f032010-02-13 02:06:02 +0000978}
979
980/// RatePrimaryRegister - Record this register in the set. If we haven't seen it
Andrew Trick5df90962011-12-06 03:13:31 +0000981/// before, rate it. Optional LoserRegs provides a way to declare any formula
982/// that refers to one of those regs an instant loser.
Dan Gohman5b18f032010-02-13 02:06:02 +0000983void Cost::RatePrimaryRegister(const SCEV *Reg,
Craig Topper71b7b682014-08-21 05:55:13 +0000984 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman0849ed52010-02-16 19:42:34 +0000985 const Loop *L,
Andrew Trick5df90962011-12-06 03:13:31 +0000986 ScalarEvolution &SE, DominatorTree &DT,
Craig Topper71b7b682014-08-21 05:55:13 +0000987 SmallPtrSetImpl<const SCEV *> *LoserRegs) {
Andrew Trick5df90962011-12-06 03:13:31 +0000988 if (LoserRegs && LoserRegs->count(Reg)) {
Tim Northoverbc6659c2014-01-22 13:27:00 +0000989 Lose();
Andrew Trick5df90962011-12-06 03:13:31 +0000990 return;
991 }
David Blaikie70573dc2014-11-19 07:49:26 +0000992 if (Regs.insert(Reg).second) {
Dan Gohman5b18f032010-02-13 02:06:02 +0000993 RateRegister(Reg, Regs, L, SE, DT);
Andrew Tricka1c01ba2013-03-19 04:14:57 +0000994 if (LoserRegs && isLoser())
Andrew Trick5df90962011-12-06 03:13:31 +0000995 LoserRegs->insert(Reg);
996 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000997}
998
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000999void Cost::RateFormula(const TargetTransformInfo &TTI,
1000 const Formula &F,
Craig Topper71b7b682014-08-21 05:55:13 +00001001 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman45774ce2010-02-12 10:34:29 +00001002 const DenseSet<const SCEV *> &VisitedRegs,
1003 const Loop *L,
1004 const SmallVectorImpl<int64_t> &Offsets,
Andrew Trick5df90962011-12-06 03:13:31 +00001005 ScalarEvolution &SE, DominatorTree &DT,
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001006 const LSRUse &LU,
Craig Topper71b7b682014-08-21 05:55:13 +00001007 SmallPtrSetImpl<const SCEV *> *LoserRegs) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001008 assert(F.isCanonical() && "Cost is accurate only for canonical formula");
Dan Gohman45774ce2010-02-12 10:34:29 +00001009 // Tally up the registers.
1010 if (const SCEV *ScaledReg = F.ScaledReg) {
1011 if (VisitedRegs.count(ScaledReg)) {
Tim Northoverbc6659c2014-01-22 13:27:00 +00001012 Lose();
Dan Gohman45774ce2010-02-12 10:34:29 +00001013 return;
1014 }
Andrew Trick5df90962011-12-06 03:13:31 +00001015 RatePrimaryRegister(ScaledReg, Regs, L, SE, DT, LoserRegs);
Andrew Trick784729d2011-09-26 23:11:04 +00001016 if (isLoser())
1017 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00001018 }
Craig Topper042a3922015-05-25 20:01:18 +00001019 for (const SCEV *BaseReg : F.BaseRegs) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001020 if (VisitedRegs.count(BaseReg)) {
Tim Northoverbc6659c2014-01-22 13:27:00 +00001021 Lose();
Dan Gohman45774ce2010-02-12 10:34:29 +00001022 return;
1023 }
Andrew Trick5df90962011-12-06 03:13:31 +00001024 RatePrimaryRegister(BaseReg, Regs, L, SE, DT, LoserRegs);
Andrew Trick784729d2011-09-26 23:11:04 +00001025 if (isLoser())
1026 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00001027 }
1028
Dan Gohman6136e942011-05-03 00:46:49 +00001029 // Determine how many (unfolded) adds we'll need inside the loop.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001030 size_t NumBaseParts = F.getNumRegs();
Dan Gohman6136e942011-05-03 00:46:49 +00001031 if (NumBaseParts > 1)
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001032 // Do not count the base and a possible second register if the target
1033 // allows to fold 2 registers.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001034 NumBaseAdds +=
1035 NumBaseParts - (1 + (F.Scale && isAMCompletelyFolded(TTI, LU, F)));
1036 NumBaseAdds += (F.UnfoldedOffset != 0);
Dan Gohman45774ce2010-02-12 10:34:29 +00001037
Quentin Colombetbf490d42013-05-31 21:29:03 +00001038 // Accumulate non-free scaling amounts.
1039 ScaleCost += getScalingFactorCost(TTI, LU, F);
1040
Dan Gohman45774ce2010-02-12 10:34:29 +00001041 // Tally up the non-zero immediates.
Craig Topper042a3922015-05-25 20:01:18 +00001042 for (int64_t O : Offsets) {
1043 int64_t Offset = (uint64_t)O + F.BaseOffset;
Chandler Carruth6e479322013-01-07 15:04:40 +00001044 if (F.BaseGV)
Dan Gohman45774ce2010-02-12 10:34:29 +00001045 ImmCost += 64; // Handle symbolic values conservatively.
1046 // TODO: This should probably be the pointer size.
1047 else if (Offset != 0)
1048 ImmCost += APInt(64, Offset, true).getMinSignedBits();
1049 }
Andrew Trick784729d2011-09-26 23:11:04 +00001050 assert(isValid() && "invalid cost");
Dan Gohman45774ce2010-02-12 10:34:29 +00001051}
1052
Tim Northoverbc6659c2014-01-22 13:27:00 +00001053/// Lose - Set this cost to a losing value.
1054void Cost::Lose() {
Dan Gohman45774ce2010-02-12 10:34:29 +00001055 NumRegs = ~0u;
1056 AddRecCost = ~0u;
1057 NumIVMuls = ~0u;
1058 NumBaseAdds = ~0u;
1059 ImmCost = ~0u;
1060 SetupCost = ~0u;
Quentin Colombetbf490d42013-05-31 21:29:03 +00001061 ScaleCost = ~0u;
Dan Gohman45774ce2010-02-12 10:34:29 +00001062}
1063
1064/// operator< - Choose the lower cost.
1065bool Cost::operator<(const Cost &Other) const {
Benjamin Kramerb2f034b2014-03-03 19:58:30 +00001066 return std::tie(NumRegs, AddRecCost, NumIVMuls, NumBaseAdds, ScaleCost,
1067 ImmCost, SetupCost) <
1068 std::tie(Other.NumRegs, Other.AddRecCost, Other.NumIVMuls,
1069 Other.NumBaseAdds, Other.ScaleCost, Other.ImmCost,
1070 Other.SetupCost);
Dan Gohman45774ce2010-02-12 10:34:29 +00001071}
1072
1073void Cost::print(raw_ostream &OS) const {
1074 OS << NumRegs << " reg" << (NumRegs == 1 ? "" : "s");
1075 if (AddRecCost != 0)
1076 OS << ", with addrec cost " << AddRecCost;
1077 if (NumIVMuls != 0)
1078 OS << ", plus " << NumIVMuls << " IV mul" << (NumIVMuls == 1 ? "" : "s");
1079 if (NumBaseAdds != 0)
1080 OS << ", plus " << NumBaseAdds << " base add"
1081 << (NumBaseAdds == 1 ? "" : "s");
Quentin Colombetbf490d42013-05-31 21:29:03 +00001082 if (ScaleCost != 0)
1083 OS << ", plus " << ScaleCost << " scale cost";
Dan Gohman45774ce2010-02-12 10:34:29 +00001084 if (ImmCost != 0)
1085 OS << ", plus " << ImmCost << " imm cost";
1086 if (SetupCost != 0)
1087 OS << ", plus " << SetupCost << " setup cost";
1088}
1089
Manman Ren49d684e2012-09-12 05:06:18 +00001090#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +00001091void Cost::dump() const {
1092 print(errs()); errs() << '\n';
1093}
Manman Renc3366cc2012-09-06 19:55:56 +00001094#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00001095
1096namespace {
1097
1098/// LSRFixup - An operand value in an instruction which is to be replaced
1099/// with some equivalent, possibly strength-reduced, replacement.
1100struct LSRFixup {
1101 /// UserInst - The instruction which will be updated.
1102 Instruction *UserInst;
1103
1104 /// OperandValToReplace - The operand of the instruction which will
1105 /// be replaced. The operand may be used more than once; every instance
1106 /// will be replaced.
1107 Value *OperandValToReplace;
1108
Dan Gohmand006ab92010-04-07 22:27:08 +00001109 /// PostIncLoops - If this user is to use the post-incremented value of an
Dan Gohman45774ce2010-02-12 10:34:29 +00001110 /// induction variable, this variable is non-null and holds the loop
1111 /// associated with the induction variable.
Dan Gohmand006ab92010-04-07 22:27:08 +00001112 PostIncLoopSet PostIncLoops;
Dan Gohman45774ce2010-02-12 10:34:29 +00001113
1114 /// LUIdx - The index of the LSRUse describing the expression which
1115 /// this fixup needs, minus an offset (below).
1116 size_t LUIdx;
1117
1118 /// Offset - A constant offset to be added to the LSRUse expression.
1119 /// This allows multiple fixups to share the same LSRUse with different
1120 /// offsets, for example in an unrolled loop.
1121 int64_t Offset;
1122
Dan Gohmand006ab92010-04-07 22:27:08 +00001123 bool isUseFullyOutsideLoop(const Loop *L) const;
1124
Dan Gohman45774ce2010-02-12 10:34:29 +00001125 LSRFixup();
1126
1127 void print(raw_ostream &OS) const;
1128 void dump() const;
1129};
1130
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001131}
Dan Gohman45774ce2010-02-12 10:34:29 +00001132
1133LSRFixup::LSRFixup()
Craig Topperf40110f2014-04-25 05:29:35 +00001134 : UserInst(nullptr), OperandValToReplace(nullptr), LUIdx(~size_t(0)),
1135 Offset(0) {}
Dan Gohman45774ce2010-02-12 10:34:29 +00001136
Dan Gohmand006ab92010-04-07 22:27:08 +00001137/// isUseFullyOutsideLoop - Test whether this fixup always uses its
1138/// value outside of the given loop.
1139bool LSRFixup::isUseFullyOutsideLoop(const Loop *L) const {
1140 // PHI nodes use their value in their incoming blocks.
1141 if (const PHINode *PN = dyn_cast<PHINode>(UserInst)) {
1142 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
1143 if (PN->getIncomingValue(i) == OperandValToReplace &&
1144 L->contains(PN->getIncomingBlock(i)))
1145 return false;
1146 return true;
1147 }
1148
1149 return !L->contains(UserInst);
1150}
1151
Dan Gohman45774ce2010-02-12 10:34:29 +00001152void LSRFixup::print(raw_ostream &OS) const {
1153 OS << "UserInst=";
1154 // Store is common and interesting enough to be worth special-casing.
1155 if (StoreInst *Store = dyn_cast<StoreInst>(UserInst)) {
1156 OS << "store ";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001157 Store->getOperand(0)->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001158 } else if (UserInst->getType()->isVoidTy())
1159 OS << UserInst->getOpcodeName();
1160 else
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001161 UserInst->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001162
1163 OS << ", OperandValToReplace=";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001164 OperandValToReplace->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001165
Craig Topper042a3922015-05-25 20:01:18 +00001166 for (const Loop *PIL : PostIncLoops) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001167 OS << ", PostIncLoop=";
Craig Topper042a3922015-05-25 20:01:18 +00001168 PIL->getHeader()->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001169 }
1170
1171 if (LUIdx != ~size_t(0))
1172 OS << ", LUIdx=" << LUIdx;
1173
1174 if (Offset != 0)
1175 OS << ", Offset=" << Offset;
1176}
1177
Manman Ren49d684e2012-09-12 05:06:18 +00001178#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +00001179void LSRFixup::dump() const {
1180 print(errs()); errs() << '\n';
1181}
Manman Renc3366cc2012-09-06 19:55:56 +00001182#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00001183
1184namespace {
1185
1186/// UniquifierDenseMapInfo - A DenseMapInfo implementation for holding
1187/// DenseMaps and DenseSets of sorted SmallVectors of const SCEV*.
1188struct UniquifierDenseMapInfo {
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001189 static SmallVector<const SCEV *, 4> getEmptyKey() {
1190 SmallVector<const SCEV *, 4> V;
Dan Gohman45774ce2010-02-12 10:34:29 +00001191 V.push_back(reinterpret_cast<const SCEV *>(-1));
1192 return V;
1193 }
1194
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001195 static SmallVector<const SCEV *, 4> getTombstoneKey() {
1196 SmallVector<const SCEV *, 4> V;
Dan Gohman45774ce2010-02-12 10:34:29 +00001197 V.push_back(reinterpret_cast<const SCEV *>(-2));
1198 return V;
1199 }
1200
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001201 static unsigned getHashValue(const SmallVector<const SCEV *, 4> &V) {
Benjamin Kramer62fb0cf2014-03-15 17:17:48 +00001202 return static_cast<unsigned>(hash_combine_range(V.begin(), V.end()));
Dan Gohman45774ce2010-02-12 10:34:29 +00001203 }
1204
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001205 static bool isEqual(const SmallVector<const SCEV *, 4> &LHS,
1206 const SmallVector<const SCEV *, 4> &RHS) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001207 return LHS == RHS;
1208 }
1209};
1210
1211/// LSRUse - This class holds the state that LSR keeps for each use in
1212/// IVUsers, as well as uses invented by LSR itself. It includes information
1213/// about what kinds of things can be folded into the user, information about
1214/// the user itself, and information about how the use may be satisfied.
1215/// TODO: Represent multiple users of the same expression in common?
1216class LSRUse {
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001217 DenseSet<SmallVector<const SCEV *, 4>, UniquifierDenseMapInfo> Uniquifier;
Dan Gohman45774ce2010-02-12 10:34:29 +00001218
1219public:
1220 /// KindType - An enum for a kind of use, indicating what types of
1221 /// scaled and immediate operands it might support.
1222 enum KindType {
1223 Basic, ///< A normal use, with no folding.
1224 Special, ///< A special case of basic, allowing -1 scales.
Nadav Rotem4dc976f2012-10-19 21:28:43 +00001225 Address, ///< An address use; folding according to TargetLowering
Dan Gohman45774ce2010-02-12 10:34:29 +00001226 ICmpZero ///< An equality icmp with both operands folded into one.
1227 // TODO: Add a generic icmp too?
Dan Gohman045f8192010-01-22 00:46:49 +00001228 };
Dan Gohman45774ce2010-02-12 10:34:29 +00001229
Benjamin Kramer62fb0cf2014-03-15 17:17:48 +00001230 typedef PointerIntPair<const SCEV *, 2, KindType> SCEVUseKindPair;
1231
Dan Gohman45774ce2010-02-12 10:34:29 +00001232 KindType Kind;
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001233 MemAccessTy AccessTy;
Dan Gohman45774ce2010-02-12 10:34:29 +00001234
1235 SmallVector<int64_t, 8> Offsets;
1236 int64_t MinOffset;
1237 int64_t MaxOffset;
1238
1239 /// AllFixupsOutsideLoop - This records whether all of the fixups using this
1240 /// LSRUse are outside of the loop, in which case some special-case heuristics
1241 /// may be used.
1242 bool AllFixupsOutsideLoop;
1243
Andrew Trick57243da2013-10-25 21:35:56 +00001244 /// RigidFormula is set to true to guarantee that this use will be associated
1245 /// with a single formula--the one that initially matched. Some SCEV
1246 /// expressions cannot be expanded. This allows LSR to consider the registers
1247 /// used by those expressions without the need to expand them later after
1248 /// changing the formula.
1249 bool RigidFormula;
1250
Dan Gohman14152082010-07-15 20:24:58 +00001251 /// WidestFixupType - This records the widest use type for any fixup using
1252 /// this LSRUse. FindUseWithSimilarFormula can't consider uses with different
1253 /// max fixup widths to be equivalent, because the narrower one may be relying
1254 /// on the implicit truncation to truncate away bogus bits.
Chris Lattner229907c2011-07-18 04:54:35 +00001255 Type *WidestFixupType;
Dan Gohman14152082010-07-15 20:24:58 +00001256
Dan Gohman45774ce2010-02-12 10:34:29 +00001257 /// Formulae - A list of ways to build a value that can satisfy this user.
1258 /// After the list is populated, one of these is selected heuristically and
1259 /// used to formulate a replacement for OperandValToReplace in UserInst.
1260 SmallVector<Formula, 12> Formulae;
1261
1262 /// Regs - The set of register candidates used by all formulae in this LSRUse.
1263 SmallPtrSet<const SCEV *, 4> Regs;
1264
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001265 LSRUse(KindType K, MemAccessTy AT)
1266 : Kind(K), AccessTy(AT), MinOffset(INT64_MAX), MaxOffset(INT64_MIN),
1267 AllFixupsOutsideLoop(true), RigidFormula(false),
1268 WidestFixupType(nullptr) {}
Dan Gohman45774ce2010-02-12 10:34:29 +00001269
Dan Gohman20fab452010-05-19 23:43:12 +00001270 bool HasFormulaWithSameRegs(const Formula &F) const;
Dan Gohman8c16b382010-02-22 04:11:59 +00001271 bool InsertFormula(const Formula &F);
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00001272 void DeleteFormula(Formula &F);
Dan Gohman4cf99b52010-05-18 23:42:37 +00001273 void RecomputeRegs(size_t LUIdx, RegUseTracker &Reguses);
Dan Gohman45774ce2010-02-12 10:34:29 +00001274
Dan Gohman45774ce2010-02-12 10:34:29 +00001275 void print(raw_ostream &OS) const;
1276 void dump() const;
1277};
1278
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001279}
Dan Gohman297fb8b2010-06-19 21:21:39 +00001280
Dan Gohman20fab452010-05-19 23:43:12 +00001281/// HasFormula - Test whether this use as a formula which has the same
1282/// registers as the given formula.
1283bool LSRUse::HasFormulaWithSameRegs(const Formula &F) const {
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001284 SmallVector<const SCEV *, 4> Key = F.BaseRegs;
Dan Gohman20fab452010-05-19 23:43:12 +00001285 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1286 // Unstable sort by host order ok, because this is only used for uniquifying.
1287 std::sort(Key.begin(), Key.end());
1288 return Uniquifier.count(Key);
1289}
1290
Dan Gohman45774ce2010-02-12 10:34:29 +00001291/// InsertFormula - If the given formula has not yet been inserted, add it to
1292/// the list, and return true. Return false otherwise.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001293/// The formula must be in canonical form.
Dan Gohman8c16b382010-02-22 04:11:59 +00001294bool LSRUse::InsertFormula(const Formula &F) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001295 assert(F.isCanonical() && "Invalid canonical representation");
1296
Andrew Trick57243da2013-10-25 21:35:56 +00001297 if (!Formulae.empty() && RigidFormula)
1298 return false;
1299
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001300 SmallVector<const SCEV *, 4> Key = F.BaseRegs;
Dan Gohman45774ce2010-02-12 10:34:29 +00001301 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1302 // Unstable sort by host order ok, because this is only used for uniquifying.
1303 std::sort(Key.begin(), Key.end());
1304
1305 if (!Uniquifier.insert(Key).second)
1306 return false;
1307
1308 // Using a register to hold the value of 0 is not profitable.
1309 assert((!F.ScaledReg || !F.ScaledReg->isZero()) &&
1310 "Zero allocated in a scaled register!");
1311#ifndef NDEBUG
Craig Topper042a3922015-05-25 20:01:18 +00001312 for (const SCEV *BaseReg : F.BaseRegs)
1313 assert(!BaseReg->isZero() && "Zero allocated in a base register!");
Dan Gohman45774ce2010-02-12 10:34:29 +00001314#endif
1315
1316 // Add the formula to the list.
1317 Formulae.push_back(F);
1318
1319 // Record registers now being used by this use.
Dan Gohman45774ce2010-02-12 10:34:29 +00001320 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001321 if (F.ScaledReg)
1322 Regs.insert(F.ScaledReg);
Dan Gohman45774ce2010-02-12 10:34:29 +00001323
1324 return true;
Dan Gohman045f8192010-01-22 00:46:49 +00001325}
1326
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00001327/// DeleteFormula - Remove the given formula from this use's list.
1328void LSRUse::DeleteFormula(Formula &F) {
Dan Gohman80a96082010-05-20 15:17:54 +00001329 if (&F != &Formulae.back())
1330 std::swap(F, Formulae.back());
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00001331 Formulae.pop_back();
1332}
1333
Dan Gohman4cf99b52010-05-18 23:42:37 +00001334/// RecomputeRegs - Recompute the Regs field, and update RegUses.
1335void LSRUse::RecomputeRegs(size_t LUIdx, RegUseTracker &RegUses) {
1336 // Now that we've filtered out some formulae, recompute the Regs set.
Benjamin Kramer1c2beed2015-02-19 17:19:43 +00001337 SmallPtrSet<const SCEV *, 4> OldRegs = std::move(Regs);
Dan Gohman4cf99b52010-05-18 23:42:37 +00001338 Regs.clear();
Benjamin Kramer1c2beed2015-02-19 17:19:43 +00001339 for (const Formula &F : Formulae) {
Dan Gohman4cf99b52010-05-18 23:42:37 +00001340 if (F.ScaledReg) Regs.insert(F.ScaledReg);
1341 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1342 }
1343
1344 // Update the RegTracker.
Craig Topper46276792014-08-24 23:23:06 +00001345 for (const SCEV *S : OldRegs)
1346 if (!Regs.count(S))
1347 RegUses.DropRegister(S, LUIdx);
Dan Gohman4cf99b52010-05-18 23:42:37 +00001348}
1349
Dan Gohman45774ce2010-02-12 10:34:29 +00001350void LSRUse::print(raw_ostream &OS) const {
1351 OS << "LSR Use: Kind=";
1352 switch (Kind) {
1353 case Basic: OS << "Basic"; break;
1354 case Special: OS << "Special"; break;
1355 case ICmpZero: OS << "ICmpZero"; break;
1356 case Address:
1357 OS << "Address of ";
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001358 if (AccessTy.MemTy->isPointerTy())
Dan Gohman45774ce2010-02-12 10:34:29 +00001359 OS << "pointer"; // the full pointer type could be really verbose
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001360 else {
1361 OS << *AccessTy.MemTy;
1362 }
1363
1364 OS << " in addrspace(" << AccessTy.AddrSpace << ')';
Evan Cheng133694d2007-10-25 09:11:16 +00001365 }
1366
Dan Gohman45774ce2010-02-12 10:34:29 +00001367 OS << ", Offsets={";
Craig Topper042a3922015-05-25 20:01:18 +00001368 bool NeedComma = false;
1369 for (int64_t O : Offsets) {
1370 if (NeedComma) OS << ',';
1371 OS << O;
1372 NeedComma = true;
Dan Gohman045f8192010-01-22 00:46:49 +00001373 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001374 OS << '}';
Dan Gohman045f8192010-01-22 00:46:49 +00001375
Dan Gohman45774ce2010-02-12 10:34:29 +00001376 if (AllFixupsOutsideLoop)
1377 OS << ", all-fixups-outside-loop";
Dan Gohman14152082010-07-15 20:24:58 +00001378
1379 if (WidestFixupType)
1380 OS << ", widest fixup type: " << *WidestFixupType;
Dan Gohman045f8192010-01-22 00:46:49 +00001381}
1382
Manman Ren49d684e2012-09-12 05:06:18 +00001383#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +00001384void LSRUse::dump() const {
1385 print(errs()); errs() << '\n';
1386}
Manman Renc3366cc2012-09-06 19:55:56 +00001387#endif
Dan Gohman045f8192010-01-22 00:46:49 +00001388
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001389static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001390 LSRUse::KindType Kind, MemAccessTy AccessTy,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001391 GlobalValue *BaseGV, int64_t BaseOffset,
1392 bool HasBaseReg, int64_t Scale) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001393 switch (Kind) {
1394 case LSRUse::Address:
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001395 return TTI.isLegalAddressingMode(AccessTy.MemTy, BaseGV, BaseOffset,
1396 HasBaseReg, Scale, AccessTy.AddrSpace);
Dan Gohman45774ce2010-02-12 10:34:29 +00001397
Dan Gohman45774ce2010-02-12 10:34:29 +00001398 case LSRUse::ICmpZero:
1399 // There's not even a target hook for querying whether it would be legal to
1400 // fold a GV into an ICmp.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001401 if (BaseGV)
Dan Gohman45774ce2010-02-12 10:34:29 +00001402 return false;
1403
1404 // ICmp only has two operands; don't allow more than two non-trivial parts.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001405 if (Scale != 0 && HasBaseReg && BaseOffset != 0)
Dan Gohman45774ce2010-02-12 10:34:29 +00001406 return false;
1407
1408 // ICmp only supports no scale or a -1 scale, as we can "fold" a -1 scale by
1409 // putting the scaled register in the other operand of the icmp.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001410 if (Scale != 0 && Scale != -1)
Dan Gohman45774ce2010-02-12 10:34:29 +00001411 return false;
1412
1413 // If we have low-level target information, ask the target if it can fold an
1414 // integer immediate on an icmp.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001415 if (BaseOffset != 0) {
Jakob Stoklund Olesenf2390e82012-04-05 03:10:56 +00001416 // We have one of:
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001417 // ICmpZero BaseReg + BaseOffset => ICmp BaseReg, -BaseOffset
1418 // ICmpZero -1*ScaleReg + BaseOffset => ICmp ScaleReg, BaseOffset
Jakob Stoklund Olesenf2390e82012-04-05 03:10:56 +00001419 // Offs is the ICmp immediate.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001420 if (Scale == 0)
1421 // The cast does the right thing with INT64_MIN.
1422 BaseOffset = -(uint64_t)BaseOffset;
1423 return TTI.isLegalICmpImmediate(BaseOffset);
Dan Gohman045f8192010-01-22 00:46:49 +00001424 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001425
Jakob Stoklund Olesenf2390e82012-04-05 03:10:56 +00001426 // ICmpZero BaseReg + -1*ScaleReg => ICmp BaseReg, ScaleReg
Dan Gohman45774ce2010-02-12 10:34:29 +00001427 return true;
1428
1429 case LSRUse::Basic:
1430 // Only handle single-register values.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001431 return !BaseGV && Scale == 0 && BaseOffset == 0;
Dan Gohman45774ce2010-02-12 10:34:29 +00001432
1433 case LSRUse::Special:
Andrew Trickaca8fb32012-06-15 20:07:26 +00001434 // Special case Basic to handle -1 scales.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001435 return !BaseGV && (Scale == 0 || Scale == -1) && BaseOffset == 0;
Dan Gohman045f8192010-01-22 00:46:49 +00001436 }
1437
David Blaikie46a9f012012-01-20 21:51:11 +00001438 llvm_unreachable("Invalid LSRUse Kind!");
Dan Gohman045f8192010-01-22 00:46:49 +00001439}
1440
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001441static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1442 int64_t MinOffset, int64_t MaxOffset,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001443 LSRUse::KindType Kind, MemAccessTy AccessTy,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001444 GlobalValue *BaseGV, int64_t BaseOffset,
1445 bool HasBaseReg, int64_t Scale) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001446 // Check for overflow.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001447 if (((int64_t)((uint64_t)BaseOffset + MinOffset) > BaseOffset) !=
Dan Gohman45774ce2010-02-12 10:34:29 +00001448 (MinOffset > 0))
1449 return false;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001450 MinOffset = (uint64_t)BaseOffset + MinOffset;
1451 if (((int64_t)((uint64_t)BaseOffset + MaxOffset) > BaseOffset) !=
1452 (MaxOffset > 0))
1453 return false;
1454 MaxOffset = (uint64_t)BaseOffset + MaxOffset;
1455
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001456 return isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, MinOffset,
1457 HasBaseReg, Scale) &&
1458 isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, MaxOffset,
1459 HasBaseReg, Scale);
1460}
1461
1462static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1463 int64_t MinOffset, int64_t MaxOffset,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001464 LSRUse::KindType Kind, MemAccessTy AccessTy,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001465 const Formula &F) {
1466 // For the purpose of isAMCompletelyFolded either having a canonical formula
1467 // or a scale not equal to zero is correct.
1468 // Problems may arise from non canonical formulae having a scale == 0.
1469 // Strictly speaking it would best to just rely on canonical formulae.
1470 // However, when we generate the scaled formulae, we first check that the
1471 // scaling factor is profitable before computing the actual ScaledReg for
1472 // compile time sake.
1473 assert((F.isCanonical() || F.Scale != 0));
1474 return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy,
1475 F.BaseGV, F.BaseOffset, F.HasBaseReg, F.Scale);
1476}
1477
1478/// isLegalUse - Test whether we know how to expand the current formula.
1479static bool isLegalUse(const TargetTransformInfo &TTI, int64_t MinOffset,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001480 int64_t MaxOffset, LSRUse::KindType Kind,
1481 MemAccessTy AccessTy, GlobalValue *BaseGV,
1482 int64_t BaseOffset, bool HasBaseReg, int64_t Scale) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001483 // We know how to expand completely foldable formulae.
1484 return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, BaseGV,
1485 BaseOffset, HasBaseReg, Scale) ||
1486 // Or formulae that use a base register produced by a sum of base
1487 // registers.
1488 (Scale == 1 &&
1489 isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy,
1490 BaseGV, BaseOffset, true, 0));
Dan Gohman045f8192010-01-22 00:46:49 +00001491}
1492
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001493static bool isLegalUse(const TargetTransformInfo &TTI, int64_t MinOffset,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001494 int64_t MaxOffset, LSRUse::KindType Kind,
1495 MemAccessTy AccessTy, const Formula &F) {
Chandler Carruth6e479322013-01-07 15:04:40 +00001496 return isLegalUse(TTI, MinOffset, MaxOffset, Kind, AccessTy, F.BaseGV,
1497 F.BaseOffset, F.HasBaseReg, F.Scale);
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001498}
1499
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001500static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1501 const LSRUse &LU, const Formula &F) {
1502 return isAMCompletelyFolded(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind,
1503 LU.AccessTy, F.BaseGV, F.BaseOffset, F.HasBaseReg,
1504 F.Scale);
1505}
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001506
Quentin Colombetbf490d42013-05-31 21:29:03 +00001507static unsigned getScalingFactorCost(const TargetTransformInfo &TTI,
1508 const LSRUse &LU, const Formula &F) {
1509 if (!F.Scale)
1510 return 0;
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001511
1512 // If the use is not completely folded in that instruction, we will have to
1513 // pay an extra cost only for scale != 1.
1514 if (!isAMCompletelyFolded(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind,
1515 LU.AccessTy, F))
1516 return F.Scale != 1;
Quentin Colombetbf490d42013-05-31 21:29:03 +00001517
1518 switch (LU.Kind) {
1519 case LSRUse::Address: {
Quentin Colombet145eb972013-06-19 19:59:41 +00001520 // Check the scaling factor cost with both the min and max offsets.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001521 int ScaleCostMinOffset = TTI.getScalingFactorCost(
1522 LU.AccessTy.MemTy, F.BaseGV, F.BaseOffset + LU.MinOffset, F.HasBaseReg,
1523 F.Scale, LU.AccessTy.AddrSpace);
1524 int ScaleCostMaxOffset = TTI.getScalingFactorCost(
1525 LU.AccessTy.MemTy, F.BaseGV, F.BaseOffset + LU.MaxOffset, F.HasBaseReg,
1526 F.Scale, LU.AccessTy.AddrSpace);
Quentin Colombet145eb972013-06-19 19:59:41 +00001527
1528 assert(ScaleCostMinOffset >= 0 && ScaleCostMaxOffset >= 0 &&
1529 "Legal addressing mode has an illegal cost!");
1530 return std::max(ScaleCostMinOffset, ScaleCostMaxOffset);
Quentin Colombetbf490d42013-05-31 21:29:03 +00001531 }
1532 case LSRUse::ICmpZero:
Quentin Colombetbf490d42013-05-31 21:29:03 +00001533 case LSRUse::Basic:
1534 case LSRUse::Special:
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001535 // The use is completely folded, i.e., everything is folded into the
1536 // instruction.
Quentin Colombetbf490d42013-05-31 21:29:03 +00001537 return 0;
1538 }
1539
1540 llvm_unreachable("Invalid LSRUse Kind!");
1541}
1542
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001543static bool isAlwaysFoldable(const TargetTransformInfo &TTI,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001544 LSRUse::KindType Kind, MemAccessTy AccessTy,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001545 GlobalValue *BaseGV, int64_t BaseOffset,
1546 bool HasBaseReg) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001547 // Fast-path: zero is always foldable.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001548 if (BaseOffset == 0 && !BaseGV) return true;
Dan Gohman045f8192010-01-22 00:46:49 +00001549
Dan Gohman45774ce2010-02-12 10:34:29 +00001550 // Conservatively, create an address with an immediate and a
1551 // base and a scale.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001552 int64_t Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman045f8192010-01-22 00:46:49 +00001553
Dan Gohman20fab452010-05-19 23:43:12 +00001554 // Canonicalize a scale of 1 to a base register if the formula doesn't
1555 // already have a base register.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001556 if (!HasBaseReg && Scale == 1) {
1557 Scale = 0;
1558 HasBaseReg = true;
Dan Gohman20fab452010-05-19 23:43:12 +00001559 }
1560
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001561 return isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, BaseOffset,
1562 HasBaseReg, Scale);
Dan Gohman045f8192010-01-22 00:46:49 +00001563}
1564
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001565static bool isAlwaysFoldable(const TargetTransformInfo &TTI,
1566 ScalarEvolution &SE, int64_t MinOffset,
1567 int64_t MaxOffset, LSRUse::KindType Kind,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001568 MemAccessTy AccessTy, const SCEV *S,
1569 bool HasBaseReg) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001570 // Fast-path: zero is always foldable.
1571 if (S->isZero()) return true;
1572
1573 // Conservatively, create an address with an immediate and a
1574 // base and a scale.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001575 int64_t BaseOffset = ExtractImmediate(S, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +00001576 GlobalValue *BaseGV = ExtractSymbol(S, SE);
1577
1578 // If there's anything else involved, it's not foldable.
1579 if (!S->isZero()) return false;
1580
1581 // Fast-path: zero is always foldable.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001582 if (BaseOffset == 0 && !BaseGV) return true;
Dan Gohman45774ce2010-02-12 10:34:29 +00001583
1584 // Conservatively, create an address with an immediate and a
1585 // base and a scale.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001586 int64_t Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman45774ce2010-02-12 10:34:29 +00001587
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001588 return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, BaseGV,
1589 BaseOffset, HasBaseReg, Scale);
Dan Gohman045f8192010-01-22 00:46:49 +00001590}
1591
Dan Gohman297fb8b2010-06-19 21:21:39 +00001592namespace {
1593
Andrew Trick29fe5f02012-01-09 19:50:34 +00001594/// IVInc - An individual increment in a Chain of IV increments.
1595/// Relate an IV user to an expression that computes the IV it uses from the IV
1596/// used by the previous link in the Chain.
1597///
1598/// For the head of a chain, IncExpr holds the absolute SCEV expression for the
1599/// original IVOperand. The head of the chain's IVOperand is only valid during
1600/// chain collection, before LSR replaces IV users. During chain generation,
1601/// IncExpr can be used to find the new IVOperand that computes the same
1602/// expression.
1603struct IVInc {
1604 Instruction *UserInst;
1605 Value* IVOperand;
1606 const SCEV *IncExpr;
1607
1608 IVInc(Instruction *U, Value *O, const SCEV *E):
1609 UserInst(U), IVOperand(O), IncExpr(E) {}
1610};
1611
1612// IVChain - The list of IV increments in program order.
1613// We typically add the head of a chain without finding subsequent links.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001614struct IVChain {
1615 SmallVector<IVInc,1> Incs;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001616 const SCEV *ExprBase;
1617
Craig Topperf40110f2014-04-25 05:29:35 +00001618 IVChain() : ExprBase(nullptr) {}
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001619
1620 IVChain(const IVInc &Head, const SCEV *Base)
1621 : Incs(1, Head), ExprBase(Base) {}
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001622
1623 typedef SmallVectorImpl<IVInc>::const_iterator const_iterator;
1624
1625 // begin - return the first increment in the chain.
1626 const_iterator begin() const {
1627 assert(!Incs.empty());
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001628 return std::next(Incs.begin());
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001629 }
1630 const_iterator end() const {
1631 return Incs.end();
1632 }
1633
1634 // hasIncs - Returns true if this chain contains any increments.
1635 bool hasIncs() const { return Incs.size() >= 2; }
1636
1637 // add - Add an IVInc to the end of this chain.
1638 void add(const IVInc &X) { Incs.push_back(X); }
1639
1640 // tailUserInst - Returns the last UserInst in the chain.
1641 Instruction *tailUserInst() const { return Incs.back().UserInst; }
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001642
1643 // isProfitableIncrement - Returns true if IncExpr can be profitably added to
1644 // this chain.
1645 bool isProfitableIncrement(const SCEV *OperExpr,
1646 const SCEV *IncExpr,
1647 ScalarEvolution&);
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001648};
Andrew Trick29fe5f02012-01-09 19:50:34 +00001649
1650/// ChainUsers - Helper for CollectChains to track multiple IV increment uses.
1651/// Distinguish between FarUsers that definitely cross IV increments and
1652/// NearUsers that may be used between IV increments.
1653struct ChainUsers {
1654 SmallPtrSet<Instruction*, 4> FarUsers;
1655 SmallPtrSet<Instruction*, 4> NearUsers;
1656};
1657
Dan Gohman45774ce2010-02-12 10:34:29 +00001658/// LSRInstance - This class holds state for the main loop strength reduction
1659/// logic.
1660class LSRInstance {
1661 IVUsers &IU;
1662 ScalarEvolution &SE;
1663 DominatorTree &DT;
Dan Gohman607e02b2010-04-09 22:07:05 +00001664 LoopInfo &LI;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001665 const TargetTransformInfo &TTI;
Dan Gohman45774ce2010-02-12 10:34:29 +00001666 Loop *const L;
1667 bool Changed;
1668
1669 /// IVIncInsertPos - This is the insert position that the current loop's
1670 /// induction variable increment should be placed. In simple loops, this is
1671 /// the latch block's terminator. But in more complicated cases, this is a
1672 /// position which will dominate all the in-loop post-increment users.
1673 Instruction *IVIncInsertPos;
1674
1675 /// Factors - Interesting factors between use strides.
1676 SmallSetVector<int64_t, 8> Factors;
1677
1678 /// Types - Interesting use types, to facilitate truncation reuse.
Chris Lattner229907c2011-07-18 04:54:35 +00001679 SmallSetVector<Type *, 4> Types;
Dan Gohman45774ce2010-02-12 10:34:29 +00001680
1681 /// Fixups - The list of operands which are to be replaced.
1682 SmallVector<LSRFixup, 16> Fixups;
1683
1684 /// Uses - The list of interesting uses.
1685 SmallVector<LSRUse, 16> Uses;
1686
1687 /// RegUses - Track which uses use which register candidates.
1688 RegUseTracker RegUses;
1689
Andrew Trick29fe5f02012-01-09 19:50:34 +00001690 // Limit the number of chains to avoid quadratic behavior. We don't expect to
1691 // have more than a few IV increment chains in a loop. Missing a Chain falls
1692 // back to normal LSR behavior for those uses.
1693 static const unsigned MaxChains = 8;
1694
1695 /// IVChainVec - IV users can form a chain of IV increments.
1696 SmallVector<IVChain, MaxChains> IVChainVec;
1697
Andrew Trick248d4102012-01-09 21:18:52 +00001698 /// IVIncSet - IV users that belong to profitable IVChains.
1699 SmallPtrSet<Use*, MaxChains> IVIncSet;
1700
Dan Gohman45774ce2010-02-12 10:34:29 +00001701 void OptimizeShadowIV();
1702 bool FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse);
1703 ICmpInst *OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse);
Dan Gohman4c4043c2010-05-20 20:05:31 +00001704 void OptimizeLoopTermCond();
Dan Gohman45774ce2010-02-12 10:34:29 +00001705
Andrew Trick29fe5f02012-01-09 19:50:34 +00001706 void ChainInstruction(Instruction *UserInst, Instruction *IVOper,
1707 SmallVectorImpl<ChainUsers> &ChainUsersVec);
Andrew Trick248d4102012-01-09 21:18:52 +00001708 void FinalizeChain(IVChain &Chain);
Andrew Trick29fe5f02012-01-09 19:50:34 +00001709 void CollectChains();
Andrew Trick248d4102012-01-09 21:18:52 +00001710 void GenerateIVChain(const IVChain &Chain, SCEVExpander &Rewriter,
1711 SmallVectorImpl<WeakVH> &DeadInsts);
Andrew Trick29fe5f02012-01-09 19:50:34 +00001712
Dan Gohman45774ce2010-02-12 10:34:29 +00001713 void CollectInterestingTypesAndFactors();
1714 void CollectFixupsAndInitialFormulae();
1715
1716 LSRFixup &getNewFixup() {
1717 Fixups.push_back(LSRFixup());
1718 return Fixups.back();
1719 }
1720
1721 // Support for sharing of LSRUses between LSRFixups.
Benjamin Kramer62fb0cf2014-03-15 17:17:48 +00001722 typedef DenseMap<LSRUse::SCEVUseKindPair, size_t> UseMapTy;
Dan Gohman45774ce2010-02-12 10:34:29 +00001723 UseMapTy UseMap;
1724
Dan Gohman110ed642010-09-01 01:45:53 +00001725 bool reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001726 LSRUse::KindType Kind, MemAccessTy AccessTy);
Dan Gohman45774ce2010-02-12 10:34:29 +00001727
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001728 std::pair<size_t, int64_t> getUse(const SCEV *&Expr, LSRUse::KindType Kind,
1729 MemAccessTy AccessTy);
Dan Gohman45774ce2010-02-12 10:34:29 +00001730
Dan Gohmana7b68d62010-10-07 23:33:43 +00001731 void DeleteUse(LSRUse &LU, size_t LUIdx);
Dan Gohman80a96082010-05-20 15:17:54 +00001732
Dan Gohman110ed642010-09-01 01:45:53 +00001733 LSRUse *FindUseWithSimilarFormula(const Formula &F, const LSRUse &OrigLU);
Dan Gohman20fab452010-05-19 23:43:12 +00001734
Dan Gohman8c16b382010-02-22 04:11:59 +00001735 void InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00001736 void InsertSupplementalFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
1737 void CountRegisters(const Formula &F, size_t LUIdx);
1738 bool InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F);
1739
1740 void CollectLoopInvariantFixupsAndFormulae();
1741
1742 void GenerateReassociations(LSRUse &LU, unsigned LUIdx, Formula Base,
1743 unsigned Depth = 0);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001744
1745 void GenerateReassociationsImpl(LSRUse &LU, unsigned LUIdx,
1746 const Formula &Base, unsigned Depth,
1747 size_t Idx, bool IsScaledReg = false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001748 void GenerateCombinations(LSRUse &LU, unsigned LUIdx, Formula Base);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001749 void GenerateSymbolicOffsetsImpl(LSRUse &LU, unsigned LUIdx,
1750 const Formula &Base, size_t Idx,
1751 bool IsScaledReg = false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001752 void GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001753 void GenerateConstantOffsetsImpl(LSRUse &LU, unsigned LUIdx,
1754 const Formula &Base,
1755 const SmallVectorImpl<int64_t> &Worklist,
1756 size_t Idx, bool IsScaledReg = false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001757 void GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1758 void GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1759 void GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1760 void GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base);
1761 void GenerateCrossUseConstantOffsets();
1762 void GenerateAllReuseFormulae();
1763
1764 void FilterOutUndesirableDedicatedRegisters();
Dan Gohmana4eca052010-05-18 22:51:59 +00001765
1766 size_t EstimateSearchSpaceComplexity() const;
Dan Gohmane9e08732010-08-29 16:09:42 +00001767 void NarrowSearchSpaceByDetectingSupersets();
1768 void NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman002ff892010-08-29 16:39:22 +00001769 void NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Dan Gohmane9e08732010-08-29 16:09:42 +00001770 void NarrowSearchSpaceByPickingWinnerRegs();
Dan Gohman45774ce2010-02-12 10:34:29 +00001771 void NarrowSearchSpaceUsingHeuristics();
1772
1773 void SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
1774 Cost &SolutionCost,
1775 SmallVectorImpl<const Formula *> &Workspace,
1776 const Cost &CurCost,
1777 const SmallPtrSet<const SCEV *, 16> &CurRegs,
1778 DenseSet<const SCEV *> &VisitedRegs) const;
1779 void Solve(SmallVectorImpl<const Formula *> &Solution) const;
1780
Dan Gohman607e02b2010-04-09 22:07:05 +00001781 BasicBlock::iterator
1782 HoistInsertPosition(BasicBlock::iterator IP,
1783 const SmallVectorImpl<Instruction *> &Inputs) const;
Andrew Trickc908b432012-01-20 07:41:13 +00001784 BasicBlock::iterator
1785 AdjustInsertPositionForExpand(BasicBlock::iterator IP,
1786 const LSRFixup &LF,
1787 const LSRUse &LU,
1788 SCEVExpander &Rewriter) const;
Dan Gohmand2df6432010-04-09 02:00:38 +00001789
Dan Gohman45774ce2010-02-12 10:34:29 +00001790 Value *Expand(const LSRFixup &LF,
1791 const Formula &F,
Dan Gohman8c16b382010-02-22 04:11:59 +00001792 BasicBlock::iterator IP,
Dan Gohman45774ce2010-02-12 10:34:29 +00001793 SCEVExpander &Rewriter,
Dan Gohman8c16b382010-02-22 04:11:59 +00001794 SmallVectorImpl<WeakVH> &DeadInsts) const;
Dan Gohman6deab962010-02-16 20:25:07 +00001795 void RewriteForPHI(PHINode *PN, const LSRFixup &LF,
1796 const Formula &F,
Dan Gohman6deab962010-02-16 20:25:07 +00001797 SCEVExpander &Rewriter,
1798 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman6deab962010-02-16 20:25:07 +00001799 Pass *P) const;
Dan Gohman45774ce2010-02-12 10:34:29 +00001800 void Rewrite(const LSRFixup &LF,
1801 const Formula &F,
Dan Gohman45774ce2010-02-12 10:34:29 +00001802 SCEVExpander &Rewriter,
1803 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman45774ce2010-02-12 10:34:29 +00001804 Pass *P) const;
1805 void ImplementSolution(const SmallVectorImpl<const Formula *> &Solution,
1806 Pass *P);
1807
Andrew Trickdc18e382011-12-13 00:55:33 +00001808public:
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001809 LSRInstance(Loop *L, Pass *P);
Dan Gohman45774ce2010-02-12 10:34:29 +00001810
1811 bool getChanged() const { return Changed; }
1812
1813 void print_factors_and_types(raw_ostream &OS) const;
1814 void print_fixups(raw_ostream &OS) const;
1815 void print_uses(raw_ostream &OS) const;
1816 void print(raw_ostream &OS) const;
1817 void dump() const;
1818};
1819
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001820}
Dan Gohman45774ce2010-02-12 10:34:29 +00001821
1822/// OptimizeShadowIV - If IV is used in a int-to-float cast
Dan Gohman8b0a4192010-03-01 17:49:51 +00001823/// inside the loop then try to eliminate the cast operation.
Dan Gohman45774ce2010-02-12 10:34:29 +00001824void LSRInstance::OptimizeShadowIV() {
1825 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
1826 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1827 return;
1828
1829 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end();
1830 UI != E; /* empty */) {
1831 IVUsers::const_iterator CandidateUI = UI;
1832 ++UI;
1833 Instruction *ShadowUse = CandidateUI->getUser();
Craig Topperf40110f2014-04-25 05:29:35 +00001834 Type *DestTy = nullptr;
Andrew Trick858e9f02011-07-21 01:05:01 +00001835 bool IsSigned = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00001836
1837 /* If shadow use is a int->float cast then insert a second IV
1838 to eliminate this cast.
1839
1840 for (unsigned i = 0; i < n; ++i)
1841 foo((double)i);
1842
1843 is transformed into
1844
1845 double d = 0.0;
1846 for (unsigned i = 0; i < n; ++i, ++d)
1847 foo(d);
1848 */
Andrew Trick858e9f02011-07-21 01:05:01 +00001849 if (UIToFPInst *UCast = dyn_cast<UIToFPInst>(CandidateUI->getUser())) {
1850 IsSigned = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00001851 DestTy = UCast->getDestTy();
Andrew Trick858e9f02011-07-21 01:05:01 +00001852 }
1853 else if (SIToFPInst *SCast = dyn_cast<SIToFPInst>(CandidateUI->getUser())) {
1854 IsSigned = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00001855 DestTy = SCast->getDestTy();
Andrew Trick858e9f02011-07-21 01:05:01 +00001856 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001857 if (!DestTy) continue;
1858
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001859 // If target does not support DestTy natively then do not apply
1860 // this transformation.
1861 if (!TTI.isTypeLegal(DestTy)) continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00001862
1863 PHINode *PH = dyn_cast<PHINode>(ShadowUse->getOperand(0));
1864 if (!PH) continue;
1865 if (PH->getNumIncomingValues() != 2) continue;
1866
Chris Lattner229907c2011-07-18 04:54:35 +00001867 Type *SrcTy = PH->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00001868 int Mantissa = DestTy->getFPMantissaWidth();
1869 if (Mantissa == -1) continue;
1870 if ((int)SE.getTypeSizeInBits(SrcTy) > Mantissa)
1871 continue;
1872
1873 unsigned Entry, Latch;
1874 if (PH->getIncomingBlock(0) == L->getLoopPreheader()) {
1875 Entry = 0;
1876 Latch = 1;
Dan Gohman045f8192010-01-22 00:46:49 +00001877 } else {
Dan Gohman45774ce2010-02-12 10:34:29 +00001878 Entry = 1;
1879 Latch = 0;
Dan Gohman045f8192010-01-22 00:46:49 +00001880 }
Dan Gohman045f8192010-01-22 00:46:49 +00001881
Dan Gohman45774ce2010-02-12 10:34:29 +00001882 ConstantInt *Init = dyn_cast<ConstantInt>(PH->getIncomingValue(Entry));
1883 if (!Init) continue;
Andrew Trick858e9f02011-07-21 01:05:01 +00001884 Constant *NewInit = ConstantFP::get(DestTy, IsSigned ?
Andrew Trickbd243d02011-07-21 01:45:54 +00001885 (double)Init->getSExtValue() :
1886 (double)Init->getZExtValue());
Dan Gohman045f8192010-01-22 00:46:49 +00001887
Dan Gohman45774ce2010-02-12 10:34:29 +00001888 BinaryOperator *Incr =
1889 dyn_cast<BinaryOperator>(PH->getIncomingValue(Latch));
1890 if (!Incr) continue;
1891 if (Incr->getOpcode() != Instruction::Add
1892 && Incr->getOpcode() != Instruction::Sub)
Dan Gohman045f8192010-01-22 00:46:49 +00001893 continue;
Dan Gohman045f8192010-01-22 00:46:49 +00001894
Dan Gohman45774ce2010-02-12 10:34:29 +00001895 /* Initialize new IV, double d = 0.0 in above example. */
Craig Topperf40110f2014-04-25 05:29:35 +00001896 ConstantInt *C = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +00001897 if (Incr->getOperand(0) == PH)
1898 C = dyn_cast<ConstantInt>(Incr->getOperand(1));
1899 else if (Incr->getOperand(1) == PH)
1900 C = dyn_cast<ConstantInt>(Incr->getOperand(0));
Dan Gohman045f8192010-01-22 00:46:49 +00001901 else
Dan Gohman045f8192010-01-22 00:46:49 +00001902 continue;
1903
Dan Gohman45774ce2010-02-12 10:34:29 +00001904 if (!C) continue;
Dan Gohman045f8192010-01-22 00:46:49 +00001905
Dan Gohman45774ce2010-02-12 10:34:29 +00001906 // Ignore negative constants, as the code below doesn't handle them
1907 // correctly. TODO: Remove this restriction.
1908 if (!C->getValue().isStrictlyPositive()) continue;
Dan Gohman045f8192010-01-22 00:46:49 +00001909
Dan Gohman45774ce2010-02-12 10:34:29 +00001910 /* Add new PHINode. */
Jay Foad52131342011-03-30 11:28:46 +00001911 PHINode *NewPH = PHINode::Create(DestTy, 2, "IV.S.", PH);
Dan Gohman045f8192010-01-22 00:46:49 +00001912
Dan Gohman45774ce2010-02-12 10:34:29 +00001913 /* create new increment. '++d' in above example. */
1914 Constant *CFP = ConstantFP::get(DestTy, C->getZExtValue());
1915 BinaryOperator *NewIncr =
1916 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
1917 Instruction::FAdd : Instruction::FSub,
1918 NewPH, CFP, "IV.S.next.", Incr);
Dan Gohman045f8192010-01-22 00:46:49 +00001919
Dan Gohman45774ce2010-02-12 10:34:29 +00001920 NewPH->addIncoming(NewInit, PH->getIncomingBlock(Entry));
1921 NewPH->addIncoming(NewIncr, PH->getIncomingBlock(Latch));
Dan Gohman045f8192010-01-22 00:46:49 +00001922
Dan Gohman45774ce2010-02-12 10:34:29 +00001923 /* Remove cast operation */
1924 ShadowUse->replaceAllUsesWith(NewPH);
1925 ShadowUse->eraseFromParent();
Dan Gohman4c4043c2010-05-20 20:05:31 +00001926 Changed = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00001927 break;
Dan Gohman045f8192010-01-22 00:46:49 +00001928 }
1929}
1930
1931/// FindIVUserForCond - If Cond has an operand that is an expression of an IV,
1932/// set the IV user and stride information and return true, otherwise return
1933/// false.
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00001934bool LSRInstance::FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse) {
Craig Topper042a3922015-05-25 20:01:18 +00001935 for (IVStrideUse &U : IU)
1936 if (U.getUser() == Cond) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001937 // NOTE: we could handle setcc instructions with multiple uses here, but
1938 // InstCombine does it as well for simple uses, it's not clear that it
1939 // occurs enough in real life to handle.
Craig Topper042a3922015-05-25 20:01:18 +00001940 CondUse = &U;
Dan Gohman45774ce2010-02-12 10:34:29 +00001941 return true;
1942 }
Dan Gohman045f8192010-01-22 00:46:49 +00001943 return false;
Evan Cheng133694d2007-10-25 09:11:16 +00001944}
1945
Dan Gohman045f8192010-01-22 00:46:49 +00001946/// OptimizeMax - Rewrite the loop's terminating condition if it uses
1947/// a max computation.
1948///
1949/// This is a narrow solution to a specific, but acute, problem. For loops
1950/// like this:
1951///
1952/// i = 0;
1953/// do {
1954/// p[i] = 0.0;
1955/// } while (++i < n);
1956///
1957/// the trip count isn't just 'n', because 'n' might not be positive. And
1958/// unfortunately this can come up even for loops where the user didn't use
1959/// a C do-while loop. For example, seemingly well-behaved top-test loops
1960/// will commonly be lowered like this:
1961//
1962/// if (n > 0) {
1963/// i = 0;
1964/// do {
1965/// p[i] = 0.0;
1966/// } while (++i < n);
1967/// }
1968///
1969/// and then it's possible for subsequent optimization to obscure the if
1970/// test in such a way that indvars can't find it.
1971///
1972/// When indvars can't find the if test in loops like this, it creates a
1973/// max expression, which allows it to give the loop a canonical
1974/// induction variable:
1975///
1976/// i = 0;
1977/// max = n < 1 ? 1 : n;
1978/// do {
1979/// p[i] = 0.0;
1980/// } while (++i != max);
1981///
1982/// Canonical induction variables are necessary because the loop passes
1983/// are designed around them. The most obvious example of this is the
1984/// LoopInfo analysis, which doesn't remember trip count values. It
1985/// expects to be able to rediscover the trip count each time it is
Dan Gohman45774ce2010-02-12 10:34:29 +00001986/// needed, and it does this using a simple analysis that only succeeds if
Dan Gohman045f8192010-01-22 00:46:49 +00001987/// the loop has a canonical induction variable.
1988///
1989/// However, when it comes time to generate code, the maximum operation
1990/// can be quite costly, especially if it's inside of an outer loop.
1991///
1992/// This function solves this problem by detecting this type of loop and
1993/// rewriting their conditions from ICMP_NE back to ICMP_SLT, and deleting
1994/// the instructions for the maximum computation.
1995///
Dan Gohman45774ce2010-02-12 10:34:29 +00001996ICmpInst *LSRInstance::OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse) {
Dan Gohman045f8192010-01-22 00:46:49 +00001997 // Check that the loop matches the pattern we're looking for.
1998 if (Cond->getPredicate() != CmpInst::ICMP_EQ &&
1999 Cond->getPredicate() != CmpInst::ICMP_NE)
2000 return Cond;
Dan Gohman51ad99d2010-01-21 02:09:26 +00002001
Dan Gohman045f8192010-01-22 00:46:49 +00002002 SelectInst *Sel = dyn_cast<SelectInst>(Cond->getOperand(1));
2003 if (!Sel || !Sel->hasOneUse()) return Cond;
Dan Gohman51ad99d2010-01-21 02:09:26 +00002004
Dan Gohman45774ce2010-02-12 10:34:29 +00002005 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
Dan Gohman045f8192010-01-22 00:46:49 +00002006 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
2007 return Cond;
Dan Gohman1d2ded72010-05-03 22:09:21 +00002008 const SCEV *One = SE.getConstant(BackedgeTakenCount->getType(), 1);
Dan Gohman51ad99d2010-01-21 02:09:26 +00002009
Dan Gohman045f8192010-01-22 00:46:49 +00002010 // Add one to the backedge-taken count to get the trip count.
Dan Gohman9b7632d2010-08-16 15:39:27 +00002011 const SCEV *IterationCount = SE.getAddExpr(One, BackedgeTakenCount);
Dan Gohman534ba372010-04-24 03:13:44 +00002012 if (IterationCount != SE.getSCEV(Sel)) return Cond;
Dan Gohman045f8192010-01-22 00:46:49 +00002013
Dan Gohman534ba372010-04-24 03:13:44 +00002014 // Check for a max calculation that matches the pattern. There's no check
2015 // for ICMP_ULE here because the comparison would be with zero, which
2016 // isn't interesting.
2017 CmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE;
Craig Topperf40110f2014-04-25 05:29:35 +00002018 const SCEVNAryExpr *Max = nullptr;
Dan Gohman534ba372010-04-24 03:13:44 +00002019 if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(BackedgeTakenCount)) {
2020 Pred = ICmpInst::ICMP_SLE;
2021 Max = S;
2022 } else if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(IterationCount)) {
2023 Pred = ICmpInst::ICMP_SLT;
2024 Max = S;
2025 } else if (const SCEVUMaxExpr *U = dyn_cast<SCEVUMaxExpr>(IterationCount)) {
2026 Pred = ICmpInst::ICMP_ULT;
2027 Max = U;
2028 } else {
2029 // No match; bail.
Dan Gohman045f8192010-01-22 00:46:49 +00002030 return Cond;
Dan Gohman534ba372010-04-24 03:13:44 +00002031 }
Dan Gohman045f8192010-01-22 00:46:49 +00002032
2033 // To handle a max with more than two operands, this optimization would
2034 // require additional checking and setup.
2035 if (Max->getNumOperands() != 2)
2036 return Cond;
2037
2038 const SCEV *MaxLHS = Max->getOperand(0);
2039 const SCEV *MaxRHS = Max->getOperand(1);
Dan Gohman534ba372010-04-24 03:13:44 +00002040
2041 // ScalarEvolution canonicalizes constants to the left. For < and >, look
2042 // for a comparison with 1. For <= and >=, a comparison with zero.
2043 if (!MaxLHS ||
2044 (ICmpInst::isTrueWhenEqual(Pred) ? !MaxLHS->isZero() : (MaxLHS != One)))
2045 return Cond;
2046
Dan Gohman045f8192010-01-22 00:46:49 +00002047 // Check the relevant induction variable for conformance to
2048 // the pattern.
Dan Gohman45774ce2010-02-12 10:34:29 +00002049 const SCEV *IV = SE.getSCEV(Cond->getOperand(0));
Dan Gohman045f8192010-01-22 00:46:49 +00002050 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(IV);
2051 if (!AR || !AR->isAffine() ||
2052 AR->getStart() != One ||
Dan Gohman45774ce2010-02-12 10:34:29 +00002053 AR->getStepRecurrence(SE) != One)
Dan Gohman045f8192010-01-22 00:46:49 +00002054 return Cond;
2055
2056 assert(AR->getLoop() == L &&
2057 "Loop condition operand is an addrec in a different loop!");
2058
2059 // Check the right operand of the select, and remember it, as it will
2060 // be used in the new comparison instruction.
Craig Topperf40110f2014-04-25 05:29:35 +00002061 Value *NewRHS = nullptr;
Dan Gohman534ba372010-04-24 03:13:44 +00002062 if (ICmpInst::isTrueWhenEqual(Pred)) {
2063 // Look for n+1, and grab n.
2064 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(1)))
Jakub Staszakf6df1e32013-03-24 09:25:47 +00002065 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1)))
2066 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS)
2067 NewRHS = BO->getOperand(0);
Dan Gohman534ba372010-04-24 03:13:44 +00002068 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(2)))
Jakub Staszakf6df1e32013-03-24 09:25:47 +00002069 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1)))
2070 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS)
2071 NewRHS = BO->getOperand(0);
Dan Gohman534ba372010-04-24 03:13:44 +00002072 if (!NewRHS)
2073 return Cond;
2074 } else if (SE.getSCEV(Sel->getOperand(1)) == MaxRHS)
Dan Gohman045f8192010-01-22 00:46:49 +00002075 NewRHS = Sel->getOperand(1);
Dan Gohman45774ce2010-02-12 10:34:29 +00002076 else if (SE.getSCEV(Sel->getOperand(2)) == MaxRHS)
Dan Gohman045f8192010-01-22 00:46:49 +00002077 NewRHS = Sel->getOperand(2);
Dan Gohman1081f1a2010-06-22 23:07:13 +00002078 else if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(MaxRHS))
2079 NewRHS = SU->getValue();
Dan Gohman534ba372010-04-24 03:13:44 +00002080 else
Dan Gohman1081f1a2010-06-22 23:07:13 +00002081 // Max doesn't match expected pattern.
2082 return Cond;
Dan Gohman045f8192010-01-22 00:46:49 +00002083
2084 // Determine the new comparison opcode. It may be signed or unsigned,
2085 // and the original comparison may be either equality or inequality.
Dan Gohman045f8192010-01-22 00:46:49 +00002086 if (Cond->getPredicate() == CmpInst::ICMP_EQ)
2087 Pred = CmpInst::getInversePredicate(Pred);
2088
2089 // Ok, everything looks ok to change the condition into an SLT or SGE and
2090 // delete the max calculation.
2091 ICmpInst *NewCond =
2092 new ICmpInst(Cond, Pred, Cond->getOperand(0), NewRHS, "scmp");
2093
2094 // Delete the max calculation instructions.
2095 Cond->replaceAllUsesWith(NewCond);
2096 CondUse->setUser(NewCond);
2097 Instruction *Cmp = cast<Instruction>(Sel->getOperand(0));
2098 Cond->eraseFromParent();
2099 Sel->eraseFromParent();
2100 if (Cmp->use_empty())
2101 Cmp->eraseFromParent();
2102 return NewCond;
Dan Gohman68e77352008-09-15 21:22:06 +00002103}
2104
Jim Grosbach60f48542009-11-17 17:53:56 +00002105/// OptimizeLoopTermCond - Change loop terminating condition to use the
Evan Cheng85a9f432009-11-12 07:35:05 +00002106/// postinc iv when possible.
Dan Gohman4c4043c2010-05-20 20:05:31 +00002107void
Dan Gohman45774ce2010-02-12 10:34:29 +00002108LSRInstance::OptimizeLoopTermCond() {
2109 SmallPtrSet<Instruction *, 4> PostIncs;
2110
Evan Cheng85a9f432009-11-12 07:35:05 +00002111 BasicBlock *LatchBlock = L->getLoopLatch();
Evan Chengba4e5da72009-11-17 18:10:11 +00002112 SmallVector<BasicBlock*, 8> ExitingBlocks;
2113 L->getExitingBlocks(ExitingBlocks);
Jim Grosbach60f48542009-11-17 17:53:56 +00002114
Craig Topper042a3922015-05-25 20:01:18 +00002115 for (BasicBlock *ExitingBlock : ExitingBlocks) {
Evan Cheng85a9f432009-11-12 07:35:05 +00002116
Dan Gohman45774ce2010-02-12 10:34:29 +00002117 // Get the terminating condition for the loop if possible. If we
Evan Chengba4e5da72009-11-17 18:10:11 +00002118 // can, we want to change it to use a post-incremented version of its
2119 // induction variable, to allow coalescing the live ranges for the IV into
2120 // one register value.
Evan Cheng85a9f432009-11-12 07:35:05 +00002121
Evan Chengba4e5da72009-11-17 18:10:11 +00002122 BranchInst *TermBr = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
2123 if (!TermBr)
2124 continue;
2125 // FIXME: Overly conservative, termination condition could be an 'or' etc..
2126 if (TermBr->isUnconditional() || !isa<ICmpInst>(TermBr->getCondition()))
2127 continue;
Evan Cheng85a9f432009-11-12 07:35:05 +00002128
Evan Chengba4e5da72009-11-17 18:10:11 +00002129 // Search IVUsesByStride to find Cond's IVUse if there is one.
Craig Topperf40110f2014-04-25 05:29:35 +00002130 IVStrideUse *CondUse = nullptr;
Evan Chengba4e5da72009-11-17 18:10:11 +00002131 ICmpInst *Cond = cast<ICmpInst>(TermBr->getCondition());
Dan Gohman45774ce2010-02-12 10:34:29 +00002132 if (!FindIVUserForCond(Cond, CondUse))
Evan Chengba4e5da72009-11-17 18:10:11 +00002133 continue;
2134
Evan Chengba4e5da72009-11-17 18:10:11 +00002135 // If the trip count is computed in terms of a max (due to ScalarEvolution
2136 // being unable to find a sufficient guard, for example), change the loop
2137 // comparison to use SLT or ULT instead of NE.
Dan Gohman45774ce2010-02-12 10:34:29 +00002138 // One consequence of doing this now is that it disrupts the count-down
2139 // optimization. That's not always a bad thing though, because in such
2140 // cases it may still be worthwhile to avoid a max.
2141 Cond = OptimizeMax(Cond, CondUse);
Evan Chengba4e5da72009-11-17 18:10:11 +00002142
Dan Gohman45774ce2010-02-12 10:34:29 +00002143 // If this exiting block dominates the latch block, it may also use
2144 // the post-inc value if it won't be shared with other uses.
2145 // Check for dominance.
2146 if (!DT.dominates(ExitingBlock, LatchBlock))
Dan Gohman045f8192010-01-22 00:46:49 +00002147 continue;
Evan Chengba4e5da72009-11-17 18:10:11 +00002148
Dan Gohman45774ce2010-02-12 10:34:29 +00002149 // Conservatively avoid trying to use the post-inc value in non-latch
2150 // exits if there may be pre-inc users in intervening blocks.
Dan Gohman2d0f96d2010-02-14 03:21:49 +00002151 if (LatchBlock != ExitingBlock)
Dan Gohman45774ce2010-02-12 10:34:29 +00002152 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
2153 // Test if the use is reachable from the exiting block. This dominator
2154 // query is a conservative approximation of reachability.
2155 if (&*UI != CondUse &&
2156 !DT.properlyDominates(UI->getUser()->getParent(), ExitingBlock)) {
2157 // Conservatively assume there may be reuse if the quotient of their
2158 // strides could be a legal scale.
Dan Gohmane637ff52010-04-19 21:48:58 +00002159 const SCEV *A = IU.getStride(*CondUse, L);
2160 const SCEV *B = IU.getStride(*UI, L);
Dan Gohmand006ab92010-04-07 22:27:08 +00002161 if (!A || !B) continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00002162 if (SE.getTypeSizeInBits(A->getType()) !=
2163 SE.getTypeSizeInBits(B->getType())) {
2164 if (SE.getTypeSizeInBits(A->getType()) >
2165 SE.getTypeSizeInBits(B->getType()))
2166 B = SE.getSignExtendExpr(B, A->getType());
2167 else
2168 A = SE.getSignExtendExpr(A, B->getType());
2169 }
2170 if (const SCEVConstant *D =
Dan Gohman4eebb942010-02-19 19:35:48 +00002171 dyn_cast_or_null<SCEVConstant>(getExactSDiv(B, A, SE))) {
Dan Gohman86110fa2010-05-20 22:25:20 +00002172 const ConstantInt *C = D->getValue();
Dan Gohman45774ce2010-02-12 10:34:29 +00002173 // Stride of one or negative one can have reuse with non-addresses.
Dan Gohman86110fa2010-05-20 22:25:20 +00002174 if (C->isOne() || C->isAllOnesValue())
Dan Gohman45774ce2010-02-12 10:34:29 +00002175 goto decline_post_inc;
2176 // Avoid weird situations.
Dan Gohman86110fa2010-05-20 22:25:20 +00002177 if (C->getValue().getMinSignedBits() >= 64 ||
2178 C->getValue().isMinSignedValue())
Dan Gohman45774ce2010-02-12 10:34:29 +00002179 goto decline_post_inc;
2180 // Check for possible scaled-address reuse.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002181 MemAccessTy AccessTy = getAccessType(UI->getUser());
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002182 int64_t Scale = C->getSExtValue();
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002183 if (TTI.isLegalAddressingMode(AccessTy.MemTy, /*BaseGV=*/nullptr,
2184 /*BaseOffset=*/0,
2185 /*HasBaseReg=*/false, Scale,
2186 AccessTy.AddrSpace))
Dan Gohman45774ce2010-02-12 10:34:29 +00002187 goto decline_post_inc;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002188 Scale = -Scale;
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002189 if (TTI.isLegalAddressingMode(AccessTy.MemTy, /*BaseGV=*/nullptr,
2190 /*BaseOffset=*/0,
2191 /*HasBaseReg=*/false, Scale,
2192 AccessTy.AddrSpace))
Dan Gohman45774ce2010-02-12 10:34:29 +00002193 goto decline_post_inc;
2194 }
2195 }
2196
David Greene2330f782009-12-23 22:58:38 +00002197 DEBUG(dbgs() << " Change loop exiting icmp to use postinc iv: "
Dan Gohman45774ce2010-02-12 10:34:29 +00002198 << *Cond << '\n');
Evan Chengba4e5da72009-11-17 18:10:11 +00002199
2200 // It's possible for the setcc instruction to be anywhere in the loop, and
2201 // possible for it to have multiple users. If it is not immediately before
2202 // the exiting block branch, move it.
Dan Gohman45774ce2010-02-12 10:34:29 +00002203 if (&*++BasicBlock::iterator(Cond) != TermBr) {
2204 if (Cond->hasOneUse()) {
Evan Chengba4e5da72009-11-17 18:10:11 +00002205 Cond->moveBefore(TermBr);
2206 } else {
Dan Gohman45774ce2010-02-12 10:34:29 +00002207 // Clone the terminating condition and insert into the loopend.
2208 ICmpInst *OldCond = Cond;
Evan Chengba4e5da72009-11-17 18:10:11 +00002209 Cond = cast<ICmpInst>(Cond->clone());
2210 Cond->setName(L->getHeader()->getName() + ".termcond");
2211 ExitingBlock->getInstList().insert(TermBr, Cond);
2212
2213 // Clone the IVUse, as the old use still exists!
Andrew Trickfc4ccb22011-06-21 15:43:52 +00002214 CondUse = &IU.AddUser(Cond, CondUse->getOperandValToReplace());
Dan Gohman45774ce2010-02-12 10:34:29 +00002215 TermBr->replaceUsesOfWith(OldCond, Cond);
Evan Chengba4e5da72009-11-17 18:10:11 +00002216 }
Evan Cheng85a9f432009-11-12 07:35:05 +00002217 }
2218
Evan Chengba4e5da72009-11-17 18:10:11 +00002219 // If we get to here, we know that we can transform the setcc instruction to
2220 // use the post-incremented version of the IV, allowing us to coalesce the
2221 // live ranges for the IV correctly.
Dan Gohmand006ab92010-04-07 22:27:08 +00002222 CondUse->transformToPostInc(L);
Evan Chengba4e5da72009-11-17 18:10:11 +00002223 Changed = true;
2224
Dan Gohman45774ce2010-02-12 10:34:29 +00002225 PostIncs.insert(Cond);
2226 decline_post_inc:;
Dan Gohman51ad99d2010-01-21 02:09:26 +00002227 }
Dan Gohman45774ce2010-02-12 10:34:29 +00002228
2229 // Determine an insertion point for the loop induction variable increment. It
2230 // must dominate all the post-inc comparisons we just set up, and it must
2231 // dominate the loop latch edge.
2232 IVIncInsertPos = L->getLoopLatch()->getTerminator();
Craig Topper46276792014-08-24 23:23:06 +00002233 for (Instruction *Inst : PostIncs) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002234 BasicBlock *BB =
2235 DT.findNearestCommonDominator(IVIncInsertPos->getParent(),
Craig Topper46276792014-08-24 23:23:06 +00002236 Inst->getParent());
2237 if (BB == Inst->getParent())
2238 IVIncInsertPos = Inst;
Dan Gohman45774ce2010-02-12 10:34:29 +00002239 else if (BB != IVIncInsertPos->getParent())
2240 IVIncInsertPos = BB->getTerminator();
2241 }
Dan Gohman51ad99d2010-01-21 02:09:26 +00002242}
2243
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00002244/// reconcileNewOffset - Determine if the given use can accommodate a fixup
Dan Gohmana4ca28a2010-05-20 20:52:00 +00002245/// at the given offset and other details. If so, update the use and
2246/// return true.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002247bool LSRInstance::reconcileNewOffset(LSRUse &LU, int64_t NewOffset,
2248 bool HasBaseReg, LSRUse::KindType Kind,
2249 MemAccessTy AccessTy) {
Dan Gohman110ed642010-09-01 01:45:53 +00002250 int64_t NewMinOffset = LU.MinOffset;
2251 int64_t NewMaxOffset = LU.MaxOffset;
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002252 MemAccessTy NewAccessTy = AccessTy;
Dan Gohman045f8192010-01-22 00:46:49 +00002253
Dan Gohman45774ce2010-02-12 10:34:29 +00002254 // Check for a mismatched kind. It's tempting to collapse mismatched kinds to
2255 // something conservative, however this can pessimize in the case that one of
2256 // the uses will have all its uses outside the loop, for example.
2257 if (LU.Kind != Kind)
Dan Gohman045f8192010-01-22 00:46:49 +00002258 return false;
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00002259
Dan Gohman45774ce2010-02-12 10:34:29 +00002260 // Check for a mismatched access type, and fall back conservatively as needed.
Dan Gohman32655902010-06-19 21:30:18 +00002261 // TODO: Be less conservative when the type is similar and can use the same
2262 // addressing modes.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002263 if (Kind == LSRUse::Address) {
2264 if (AccessTy != LU.AccessTy)
2265 NewAccessTy = MemAccessTy::getUnknown(AccessTy.MemTy->getContext());
2266 }
Dan Gohman51ad99d2010-01-21 02:09:26 +00002267
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00002268 // Conservatively assume HasBaseReg is true for now.
2269 if (NewOffset < LU.MinOffset) {
2270 if (!isAlwaysFoldable(TTI, Kind, NewAccessTy, /*BaseGV=*/nullptr,
2271 LU.MaxOffset - NewOffset, HasBaseReg))
2272 return false;
2273 NewMinOffset = NewOffset;
2274 } else if (NewOffset > LU.MaxOffset) {
2275 if (!isAlwaysFoldable(TTI, Kind, NewAccessTy, /*BaseGV=*/nullptr,
2276 NewOffset - LU.MinOffset, HasBaseReg))
2277 return false;
2278 NewMaxOffset = NewOffset;
2279 }
2280
Dan Gohman45774ce2010-02-12 10:34:29 +00002281 // Update the use.
Dan Gohman110ed642010-09-01 01:45:53 +00002282 LU.MinOffset = NewMinOffset;
2283 LU.MaxOffset = NewMaxOffset;
2284 LU.AccessTy = NewAccessTy;
2285 if (NewOffset != LU.Offsets.back())
2286 LU.Offsets.push_back(NewOffset);
Dan Gohman29916e02010-01-21 22:42:49 +00002287 return true;
2288}
2289
Dan Gohman45774ce2010-02-12 10:34:29 +00002290/// getUse - Return an LSRUse index and an offset value for a fixup which
2291/// needs the given expression, with the given kind and optional access type.
Dan Gohman8b0a4192010-03-01 17:49:51 +00002292/// Either reuse an existing use or create a new one, as needed.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002293std::pair<size_t, int64_t> LSRInstance::getUse(const SCEV *&Expr,
2294 LSRUse::KindType Kind,
2295 MemAccessTy AccessTy) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002296 const SCEV *Copy = Expr;
2297 int64_t Offset = ExtractImmediate(Expr, SE);
Evan Cheng85a9f432009-11-12 07:35:05 +00002298
Dan Gohman45774ce2010-02-12 10:34:29 +00002299 // Basic uses can't accept any offset, for example.
Craig Topperf40110f2014-04-25 05:29:35 +00002300 if (!isAlwaysFoldable(TTI, Kind, AccessTy, /*BaseGV=*/ nullptr,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002301 Offset, /*HasBaseReg=*/ true)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002302 Expr = Copy;
2303 Offset = 0;
2304 }
2305
2306 std::pair<UseMapTy::iterator, bool> P =
Benjamin Kramer62fb0cf2014-03-15 17:17:48 +00002307 UseMap.insert(std::make_pair(LSRUse::SCEVUseKindPair(Expr, Kind), 0));
Dan Gohman45774ce2010-02-12 10:34:29 +00002308 if (!P.second) {
2309 // A use already existed with this base.
2310 size_t LUIdx = P.first->second;
2311 LSRUse &LU = Uses[LUIdx];
Dan Gohman110ed642010-09-01 01:45:53 +00002312 if (reconcileNewOffset(LU, Offset, /*HasBaseReg=*/true, Kind, AccessTy))
Dan Gohman45774ce2010-02-12 10:34:29 +00002313 // Reuse this use.
2314 return std::make_pair(LUIdx, Offset);
2315 }
2316
2317 // Create a new use.
2318 size_t LUIdx = Uses.size();
2319 P.first->second = LUIdx;
2320 Uses.push_back(LSRUse(Kind, AccessTy));
2321 LSRUse &LU = Uses[LUIdx];
2322
Dan Gohman110ed642010-09-01 01:45:53 +00002323 // We don't need to track redundant offsets, but we don't need to go out
2324 // of our way here to avoid them.
2325 if (LU.Offsets.empty() || Offset != LU.Offsets.back())
2326 LU.Offsets.push_back(Offset);
2327
Dan Gohman45774ce2010-02-12 10:34:29 +00002328 LU.MinOffset = Offset;
2329 LU.MaxOffset = Offset;
2330 return std::make_pair(LUIdx, Offset);
2331}
2332
Dan Gohman80a96082010-05-20 15:17:54 +00002333/// DeleteUse - Delete the given use from the Uses list.
Dan Gohmana7b68d62010-10-07 23:33:43 +00002334void LSRInstance::DeleteUse(LSRUse &LU, size_t LUIdx) {
Dan Gohman110ed642010-09-01 01:45:53 +00002335 if (&LU != &Uses.back())
Dan Gohman80a96082010-05-20 15:17:54 +00002336 std::swap(LU, Uses.back());
2337 Uses.pop_back();
Dan Gohmana7b68d62010-10-07 23:33:43 +00002338
2339 // Update RegUses.
2340 RegUses.SwapAndDropUse(LUIdx, Uses.size());
Dan Gohman80a96082010-05-20 15:17:54 +00002341}
2342
Dan Gohman20fab452010-05-19 23:43:12 +00002343/// FindUseWithFormula - Look for a use distinct from OrigLU which is has
2344/// a formula that has the same registers as the given formula.
2345LSRUse *
2346LSRInstance::FindUseWithSimilarFormula(const Formula &OrigF,
Dan Gohman110ed642010-09-01 01:45:53 +00002347 const LSRUse &OrigLU) {
2348 // Search all uses for the formula. This could be more clever.
Dan Gohman20fab452010-05-19 23:43:12 +00002349 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2350 LSRUse &LU = Uses[LUIdx];
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002351 // Check whether this use is close enough to OrigLU, to see whether it's
2352 // worthwhile looking through its formulae.
2353 // Ignore ICmpZero uses because they may contain formulae generated by
2354 // GenerateICmpZeroScales, in which case adding fixup offsets may
2355 // be invalid.
Dan Gohman20fab452010-05-19 23:43:12 +00002356 if (&LU != &OrigLU &&
2357 LU.Kind != LSRUse::ICmpZero &&
2358 LU.Kind == OrigLU.Kind && OrigLU.AccessTy == LU.AccessTy &&
Dan Gohman14152082010-07-15 20:24:58 +00002359 LU.WidestFixupType == OrigLU.WidestFixupType &&
Dan Gohman20fab452010-05-19 23:43:12 +00002360 LU.HasFormulaWithSameRegs(OrigF)) {
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002361 // Scan through this use's formulae.
Craig Topper042a3922015-05-25 20:01:18 +00002362 for (const Formula &F : LU.Formulae) {
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002363 // Check to see if this formula has the same registers and symbols
2364 // as OrigF.
Dan Gohman20fab452010-05-19 23:43:12 +00002365 if (F.BaseRegs == OrigF.BaseRegs &&
2366 F.ScaledReg == OrigF.ScaledReg &&
Chandler Carruth6e479322013-01-07 15:04:40 +00002367 F.BaseGV == OrigF.BaseGV &&
2368 F.Scale == OrigF.Scale &&
Dan Gohman6136e942011-05-03 00:46:49 +00002369 F.UnfoldedOffset == OrigF.UnfoldedOffset) {
Chandler Carruth6e479322013-01-07 15:04:40 +00002370 if (F.BaseOffset == 0)
Dan Gohman20fab452010-05-19 23:43:12 +00002371 return &LU;
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002372 // This is the formula where all the registers and symbols matched;
2373 // there aren't going to be any others. Since we declined it, we
Benjamin Kramerbde91762012-06-02 10:20:22 +00002374 // can skip the rest of the formulae and proceed to the next LSRUse.
Dan Gohman20fab452010-05-19 23:43:12 +00002375 break;
2376 }
2377 }
2378 }
2379 }
2380
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002381 // Nothing looked good.
Craig Topperf40110f2014-04-25 05:29:35 +00002382 return nullptr;
Dan Gohman20fab452010-05-19 23:43:12 +00002383}
2384
Dan Gohman45774ce2010-02-12 10:34:29 +00002385void LSRInstance::CollectInterestingTypesAndFactors() {
2386 SmallSetVector<const SCEV *, 4> Strides;
2387
Dan Gohman2446f572010-02-19 00:05:23 +00002388 // Collect interesting types and strides.
Dan Gohmand006ab92010-04-07 22:27:08 +00002389 SmallVector<const SCEV *, 4> Worklist;
Craig Topper042a3922015-05-25 20:01:18 +00002390 for (const IVStrideUse &U : IU) {
2391 const SCEV *Expr = IU.getExpr(U);
Dan Gohman45774ce2010-02-12 10:34:29 +00002392
2393 // Collect interesting types.
Dan Gohmand006ab92010-04-07 22:27:08 +00002394 Types.insert(SE.getEffectiveSCEVType(Expr->getType()));
Dan Gohman45774ce2010-02-12 10:34:29 +00002395
Dan Gohmand006ab92010-04-07 22:27:08 +00002396 // Add strides for mentioned loops.
2397 Worklist.push_back(Expr);
2398 do {
2399 const SCEV *S = Worklist.pop_back_val();
2400 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
Andrew Trickd97b83e2012-03-22 22:42:45 +00002401 if (AR->getLoop() == L)
Andrew Tricke8b4f402011-12-10 00:25:00 +00002402 Strides.insert(AR->getStepRecurrence(SE));
Dan Gohmand006ab92010-04-07 22:27:08 +00002403 Worklist.push_back(AR->getStart());
2404 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Dan Gohmandd41bba2010-06-21 19:47:52 +00002405 Worklist.append(Add->op_begin(), Add->op_end());
Dan Gohmand006ab92010-04-07 22:27:08 +00002406 }
2407 } while (!Worklist.empty());
Dan Gohman2446f572010-02-19 00:05:23 +00002408 }
2409
2410 // Compute interesting factors from the set of interesting strides.
2411 for (SmallSetVector<const SCEV *, 4>::const_iterator
2412 I = Strides.begin(), E = Strides.end(); I != E; ++I)
Dan Gohman45774ce2010-02-12 10:34:29 +00002413 for (SmallSetVector<const SCEV *, 4>::const_iterator NewStrideIter =
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002414 std::next(I); NewStrideIter != E; ++NewStrideIter) {
Dan Gohman2446f572010-02-19 00:05:23 +00002415 const SCEV *OldStride = *I;
Dan Gohman45774ce2010-02-12 10:34:29 +00002416 const SCEV *NewStride = *NewStrideIter;
Dan Gohman45774ce2010-02-12 10:34:29 +00002417
2418 if (SE.getTypeSizeInBits(OldStride->getType()) !=
2419 SE.getTypeSizeInBits(NewStride->getType())) {
2420 if (SE.getTypeSizeInBits(OldStride->getType()) >
2421 SE.getTypeSizeInBits(NewStride->getType()))
2422 NewStride = SE.getSignExtendExpr(NewStride, OldStride->getType());
2423 else
2424 OldStride = SE.getSignExtendExpr(OldStride, NewStride->getType());
2425 }
2426 if (const SCEVConstant *Factor =
Dan Gohman4eebb942010-02-19 19:35:48 +00002427 dyn_cast_or_null<SCEVConstant>(getExactSDiv(NewStride, OldStride,
2428 SE, true))) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002429 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2430 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2431 } else if (const SCEVConstant *Factor =
Dan Gohman8c16b382010-02-22 04:11:59 +00002432 dyn_cast_or_null<SCEVConstant>(getExactSDiv(OldStride,
2433 NewStride,
Dan Gohman4eebb942010-02-19 19:35:48 +00002434 SE, true))) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002435 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2436 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2437 }
2438 }
Dan Gohman45774ce2010-02-12 10:34:29 +00002439
2440 // If all uses use the same type, don't bother looking for truncation-based
2441 // reuse.
2442 if (Types.size() == 1)
2443 Types.clear();
2444
2445 DEBUG(print_factors_and_types(dbgs()));
2446}
2447
Andrew Trick29fe5f02012-01-09 19:50:34 +00002448/// findIVOperand - Helper for CollectChains that finds an IV operand (computed
2449/// by an AddRec in this loop) within [OI,OE) or returns OE. If IVUsers mapped
2450/// Instructions to IVStrideUses, we could partially skip this.
2451static User::op_iterator
2452findIVOperand(User::op_iterator OI, User::op_iterator OE,
2453 Loop *L, ScalarEvolution &SE) {
2454 for(; OI != OE; ++OI) {
2455 if (Instruction *Oper = dyn_cast<Instruction>(*OI)) {
2456 if (!SE.isSCEVable(Oper->getType()))
2457 continue;
2458
2459 if (const SCEVAddRecExpr *AR =
2460 dyn_cast<SCEVAddRecExpr>(SE.getSCEV(Oper))) {
2461 if (AR->getLoop() == L)
2462 break;
2463 }
2464 }
2465 }
2466 return OI;
2467}
2468
2469/// getWideOperand - IVChain logic must consistenctly peek base TruncInst
2470/// operands, so wrap it in a convenient helper.
2471static Value *getWideOperand(Value *Oper) {
2472 if (TruncInst *Trunc = dyn_cast<TruncInst>(Oper))
2473 return Trunc->getOperand(0);
2474 return Oper;
2475}
2476
2477/// isCompatibleIVType - Return true if we allow an IV chain to include both
2478/// types.
2479static bool isCompatibleIVType(Value *LVal, Value *RVal) {
2480 Type *LType = LVal->getType();
2481 Type *RType = RVal->getType();
2482 return (LType == RType) || (LType->isPointerTy() && RType->isPointerTy());
2483}
2484
Andrew Trickd5d2db92012-01-10 01:45:08 +00002485/// getExprBase - Return an approximation of this SCEV expression's "base", or
2486/// NULL for any constant. Returning the expression itself is
2487/// conservative. Returning a deeper subexpression is more precise and valid as
2488/// long as it isn't less complex than another subexpression. For expressions
2489/// involving multiple unscaled values, we need to return the pointer-type
2490/// SCEVUnknown. This avoids forming chains across objects, such as:
2491/// PrevOper==a[i], IVOper==b[i], IVInc==b-a.
2492///
2493/// Since SCEVUnknown is the rightmost type, and pointers are the rightmost
2494/// SCEVUnknown, we simply return the rightmost SCEV operand.
2495static const SCEV *getExprBase(const SCEV *S) {
2496 switch (S->getSCEVType()) {
2497 default: // uncluding scUnknown.
2498 return S;
2499 case scConstant:
Craig Topperf40110f2014-04-25 05:29:35 +00002500 return nullptr;
Andrew Trickd5d2db92012-01-10 01:45:08 +00002501 case scTruncate:
2502 return getExprBase(cast<SCEVTruncateExpr>(S)->getOperand());
2503 case scZeroExtend:
2504 return getExprBase(cast<SCEVZeroExtendExpr>(S)->getOperand());
2505 case scSignExtend:
2506 return getExprBase(cast<SCEVSignExtendExpr>(S)->getOperand());
2507 case scAddExpr: {
2508 // Skip over scaled operands (scMulExpr) to follow add operands as long as
2509 // there's nothing more complex.
2510 // FIXME: not sure if we want to recognize negation.
2511 const SCEVAddExpr *Add = cast<SCEVAddExpr>(S);
2512 for (std::reverse_iterator<SCEVAddExpr::op_iterator> I(Add->op_end()),
2513 E(Add->op_begin()); I != E; ++I) {
2514 const SCEV *SubExpr = *I;
2515 if (SubExpr->getSCEVType() == scAddExpr)
2516 return getExprBase(SubExpr);
2517
2518 if (SubExpr->getSCEVType() != scMulExpr)
2519 return SubExpr;
2520 }
2521 return S; // all operands are scaled, be conservative.
2522 }
2523 case scAddRecExpr:
2524 return getExprBase(cast<SCEVAddRecExpr>(S)->getStart());
2525 }
2526}
2527
Andrew Trick248d4102012-01-09 21:18:52 +00002528/// Return true if the chain increment is profitable to expand into a loop
2529/// invariant value, which may require its own register. A profitable chain
2530/// increment will be an offset relative to the same base. We allow such offsets
2531/// to potentially be used as chain increment as long as it's not obviously
2532/// expensive to expand using real instructions.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002533bool IVChain::isProfitableIncrement(const SCEV *OperExpr,
2534 const SCEV *IncExpr,
2535 ScalarEvolution &SE) {
2536 // Aggressively form chains when -stress-ivchain.
Andrew Trick248d4102012-01-09 21:18:52 +00002537 if (StressIVChain)
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002538 return true;
Andrew Trick248d4102012-01-09 21:18:52 +00002539
Andrew Trickd5d2db92012-01-10 01:45:08 +00002540 // Do not replace a constant offset from IV head with a nonconstant IV
2541 // increment.
2542 if (!isa<SCEVConstant>(IncExpr)) {
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002543 const SCEV *HeadExpr = SE.getSCEV(getWideOperand(Incs[0].IVOperand));
Andrew Trickd5d2db92012-01-10 01:45:08 +00002544 if (isa<SCEVConstant>(SE.getMinusSCEV(OperExpr, HeadExpr)))
2545 return 0;
2546 }
2547
2548 SmallPtrSet<const SCEV*, 8> Processed;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002549 return !isHighCostExpansion(IncExpr, Processed, SE);
Andrew Trick248d4102012-01-09 21:18:52 +00002550}
2551
2552/// Return true if the number of registers needed for the chain is estimated to
2553/// be less than the number required for the individual IV users. First prohibit
2554/// any IV users that keep the IV live across increments (the Users set should
2555/// be empty). Next count the number and type of increments in the chain.
2556///
2557/// Chaining IVs can lead to considerable code bloat if ISEL doesn't
2558/// effectively use postinc addressing modes. Only consider it profitable it the
2559/// increments can be computed in fewer registers when chained.
2560///
2561/// TODO: Consider IVInc free if it's already used in another chains.
2562static bool
Craig Topper71b7b682014-08-21 05:55:13 +00002563isProfitableChain(IVChain &Chain, SmallPtrSetImpl<Instruction*> &Users,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002564 ScalarEvolution &SE, const TargetTransformInfo &TTI) {
Andrew Trick248d4102012-01-09 21:18:52 +00002565 if (StressIVChain)
2566 return true;
2567
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002568 if (!Chain.hasIncs())
Andrew Trickd5d2db92012-01-10 01:45:08 +00002569 return false;
2570
2571 if (!Users.empty()) {
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002572 DEBUG(dbgs() << "Chain: " << *Chain.Incs[0].UserInst << " users:\n";
Craig Topper46276792014-08-24 23:23:06 +00002573 for (Instruction *Inst : Users) {
2574 dbgs() << " " << *Inst << "\n";
Andrew Trickd5d2db92012-01-10 01:45:08 +00002575 });
2576 return false;
2577 }
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002578 assert(!Chain.Incs.empty() && "empty IV chains are not allowed");
Andrew Trickd5d2db92012-01-10 01:45:08 +00002579
2580 // The chain itself may require a register, so intialize cost to 1.
2581 int cost = 1;
2582
2583 // A complete chain likely eliminates the need for keeping the original IV in
2584 // a register. LSR does not currently know how to form a complete chain unless
2585 // the header phi already exists.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002586 if (isa<PHINode>(Chain.tailUserInst())
2587 && SE.getSCEV(Chain.tailUserInst()) == Chain.Incs[0].IncExpr) {
Andrew Trickd5d2db92012-01-10 01:45:08 +00002588 --cost;
2589 }
Craig Topperf40110f2014-04-25 05:29:35 +00002590 const SCEV *LastIncExpr = nullptr;
Andrew Trickd5d2db92012-01-10 01:45:08 +00002591 unsigned NumConstIncrements = 0;
2592 unsigned NumVarIncrements = 0;
2593 unsigned NumReusedIncrements = 0;
Craig Topper042a3922015-05-25 20:01:18 +00002594 for (const IVInc &Inc : Chain) {
2595 if (Inc.IncExpr->isZero())
Andrew Trickd5d2db92012-01-10 01:45:08 +00002596 continue;
2597
2598 // Incrementing by zero or some constant is neutral. We assume constants can
2599 // be folded into an addressing mode or an add's immediate operand.
Craig Topper042a3922015-05-25 20:01:18 +00002600 if (isa<SCEVConstant>(Inc.IncExpr)) {
Andrew Trickd5d2db92012-01-10 01:45:08 +00002601 ++NumConstIncrements;
2602 continue;
2603 }
2604
Craig Topper042a3922015-05-25 20:01:18 +00002605 if (Inc.IncExpr == LastIncExpr)
Andrew Trickd5d2db92012-01-10 01:45:08 +00002606 ++NumReusedIncrements;
2607 else
2608 ++NumVarIncrements;
2609
Craig Topper042a3922015-05-25 20:01:18 +00002610 LastIncExpr = Inc.IncExpr;
Andrew Trickd5d2db92012-01-10 01:45:08 +00002611 }
2612 // An IV chain with a single increment is handled by LSR's postinc
2613 // uses. However, a chain with multiple increments requires keeping the IV's
2614 // value live longer than it needs to be if chained.
2615 if (NumConstIncrements > 1)
2616 --cost;
2617
2618 // Materializing increment expressions in the preheader that didn't exist in
2619 // the original code may cost a register. For example, sign-extended array
2620 // indices can produce ridiculous increments like this:
2621 // IV + ((sext i32 (2 * %s) to i64) + (-1 * (sext i32 %s to i64)))
2622 cost += NumVarIncrements;
2623
2624 // Reusing variable increments likely saves a register to hold the multiple of
2625 // the stride.
2626 cost -= NumReusedIncrements;
2627
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002628 DEBUG(dbgs() << "Chain: " << *Chain.Incs[0].UserInst << " Cost: " << cost
2629 << "\n");
Andrew Trickd5d2db92012-01-10 01:45:08 +00002630
2631 return cost < 0;
Andrew Trick248d4102012-01-09 21:18:52 +00002632}
2633
Andrew Trick29fe5f02012-01-09 19:50:34 +00002634/// ChainInstruction - Add this IV user to an existing chain or make it the head
2635/// of a new chain.
2636void LSRInstance::ChainInstruction(Instruction *UserInst, Instruction *IVOper,
2637 SmallVectorImpl<ChainUsers> &ChainUsersVec) {
2638 // When IVs are used as types of varying widths, they are generally converted
2639 // to a wider type with some uses remaining narrow under a (free) trunc.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002640 Value *const NextIV = getWideOperand(IVOper);
2641 const SCEV *const OperExpr = SE.getSCEV(NextIV);
2642 const SCEV *const OperExprBase = getExprBase(OperExpr);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002643
2644 // Visit all existing chains. Check if its IVOper can be computed as a
2645 // profitable loop invariant increment from the last link in the Chain.
2646 unsigned ChainIdx = 0, NChains = IVChainVec.size();
Craig Topperf40110f2014-04-25 05:29:35 +00002647 const SCEV *LastIncExpr = nullptr;
Andrew Trick29fe5f02012-01-09 19:50:34 +00002648 for (; ChainIdx < NChains; ++ChainIdx) {
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002649 IVChain &Chain = IVChainVec[ChainIdx];
2650
2651 // Prune the solution space aggressively by checking that both IV operands
2652 // are expressions that operate on the same unscaled SCEVUnknown. This
2653 // "base" will be canceled by the subsequent getMinusSCEV call. Checking
2654 // first avoids creating extra SCEV expressions.
2655 if (!StressIVChain && Chain.ExprBase != OperExprBase)
2656 continue;
2657
2658 Value *PrevIV = getWideOperand(Chain.Incs.back().IVOperand);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002659 if (!isCompatibleIVType(PrevIV, NextIV))
2660 continue;
2661
Andrew Trick356a8962012-03-26 20:28:35 +00002662 // A phi node terminates a chain.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002663 if (isa<PHINode>(UserInst) && isa<PHINode>(Chain.tailUserInst()))
Andrew Trick29fe5f02012-01-09 19:50:34 +00002664 continue;
2665
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002666 // The increment must be loop-invariant so it can be kept in a register.
2667 const SCEV *PrevExpr = SE.getSCEV(PrevIV);
2668 const SCEV *IncExpr = SE.getMinusSCEV(OperExpr, PrevExpr);
2669 if (!SE.isLoopInvariant(IncExpr, L))
2670 continue;
2671
2672 if (Chain.isProfitableIncrement(OperExpr, IncExpr, SE)) {
Andrew Trick29fe5f02012-01-09 19:50:34 +00002673 LastIncExpr = IncExpr;
2674 break;
2675 }
2676 }
2677 // If we haven't found a chain, create a new one, unless we hit the max. Don't
2678 // bother for phi nodes, because they must be last in the chain.
2679 if (ChainIdx == NChains) {
2680 if (isa<PHINode>(UserInst))
2681 return;
Andrew Trick248d4102012-01-09 21:18:52 +00002682 if (NChains >= MaxChains && !StressIVChain) {
Andrew Trick29fe5f02012-01-09 19:50:34 +00002683 DEBUG(dbgs() << "IV Chain Limit\n");
2684 return;
2685 }
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002686 LastIncExpr = OperExpr;
Andrew Trickb9c822a2012-01-20 21:23:40 +00002687 // IVUsers may have skipped over sign/zero extensions. We don't currently
2688 // attempt to form chains involving extensions unless they can be hoisted
2689 // into this loop's AddRec.
2690 if (!isa<SCEVAddRecExpr>(LastIncExpr))
2691 return;
Andrew Trick29fe5f02012-01-09 19:50:34 +00002692 ++NChains;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002693 IVChainVec.push_back(IVChain(IVInc(UserInst, IVOper, LastIncExpr),
2694 OperExprBase));
Andrew Trick29fe5f02012-01-09 19:50:34 +00002695 ChainUsersVec.resize(NChains);
Jakob Stoklund Olesen293673d2012-04-25 18:01:32 +00002696 DEBUG(dbgs() << "IV Chain#" << ChainIdx << " Head: (" << *UserInst
2697 << ") IV=" << *LastIncExpr << "\n");
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002698 } else {
Jakob Stoklund Olesen293673d2012-04-25 18:01:32 +00002699 DEBUG(dbgs() << "IV Chain#" << ChainIdx << " Inc: (" << *UserInst
2700 << ") IV+" << *LastIncExpr << "\n");
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002701 // Add this IV user to the end of the chain.
2702 IVChainVec[ChainIdx].add(IVInc(UserInst, IVOper, LastIncExpr));
2703 }
Andrew Trickbc705902013-02-09 01:11:01 +00002704 IVChain &Chain = IVChainVec[ChainIdx];
Andrew Trick29fe5f02012-01-09 19:50:34 +00002705
2706 SmallPtrSet<Instruction*,4> &NearUsers = ChainUsersVec[ChainIdx].NearUsers;
2707 // This chain's NearUsers become FarUsers.
2708 if (!LastIncExpr->isZero()) {
2709 ChainUsersVec[ChainIdx].FarUsers.insert(NearUsers.begin(),
2710 NearUsers.end());
2711 NearUsers.clear();
2712 }
2713
2714 // All other uses of IVOperand become near uses of the chain.
2715 // We currently ignore intermediate values within SCEV expressions, assuming
2716 // they will eventually be used be the current chain, or can be computed
2717 // from one of the chain increments. To be more precise we could
2718 // transitively follow its user and only add leaf IV users to the set.
Chandler Carruthcdf47882014-03-09 03:16:01 +00002719 for (User *U : IVOper->users()) {
2720 Instruction *OtherUse = dyn_cast<Instruction>(U);
Andrew Trickbc705902013-02-09 01:11:01 +00002721 if (!OtherUse)
Andrew Tricke51feea2012-03-26 18:03:16 +00002722 continue;
Andrew Trickbc705902013-02-09 01:11:01 +00002723 // Uses in the chain will no longer be uses if the chain is formed.
2724 // Include the head of the chain in this iteration (not Chain.begin()).
2725 IVChain::const_iterator IncIter = Chain.Incs.begin();
2726 IVChain::const_iterator IncEnd = Chain.Incs.end();
2727 for( ; IncIter != IncEnd; ++IncIter) {
2728 if (IncIter->UserInst == OtherUse)
2729 break;
2730 }
2731 if (IncIter != IncEnd)
2732 continue;
2733
Andrew Trick29fe5f02012-01-09 19:50:34 +00002734 if (SE.isSCEVable(OtherUse->getType())
2735 && !isa<SCEVUnknown>(SE.getSCEV(OtherUse))
2736 && IU.isIVUserOrOperand(OtherUse)) {
2737 continue;
2738 }
Andrew Tricke51feea2012-03-26 18:03:16 +00002739 NearUsers.insert(OtherUse);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002740 }
2741
2742 // Since this user is part of the chain, it's no longer considered a use
2743 // of the chain.
2744 ChainUsersVec[ChainIdx].FarUsers.erase(UserInst);
2745}
2746
2747/// CollectChains - Populate the vector of Chains.
2748///
2749/// This decreases ILP at the architecture level. Targets with ample registers,
2750/// multiple memory ports, and no register renaming probably don't want
2751/// this. However, such targets should probably disable LSR altogether.
2752///
2753/// The job of LSR is to make a reasonable choice of induction variables across
2754/// the loop. Subsequent passes can easily "unchain" computation exposing more
2755/// ILP *within the loop* if the target wants it.
2756///
2757/// Finding the best IV chain is potentially a scheduling problem. Since LSR
2758/// will not reorder memory operations, it will recognize this as a chain, but
2759/// will generate redundant IV increments. Ideally this would be corrected later
2760/// by a smart scheduler:
2761/// = A[i]
2762/// = A[i+x]
2763/// A[i] =
2764/// A[i+x] =
2765///
2766/// TODO: Walk the entire domtree within this loop, not just the path to the
2767/// loop latch. This will discover chains on side paths, but requires
2768/// maintaining multiple copies of the Chains state.
2769void LSRInstance::CollectChains() {
Jakob Stoklund Olesen293673d2012-04-25 18:01:32 +00002770 DEBUG(dbgs() << "Collecting IV Chains.\n");
Andrew Trick29fe5f02012-01-09 19:50:34 +00002771 SmallVector<ChainUsers, 8> ChainUsersVec;
2772
2773 SmallVector<BasicBlock *,8> LatchPath;
2774 BasicBlock *LoopHeader = L->getHeader();
2775 for (DomTreeNode *Rung = DT.getNode(L->getLoopLatch());
2776 Rung->getBlock() != LoopHeader; Rung = Rung->getIDom()) {
2777 LatchPath.push_back(Rung->getBlock());
2778 }
2779 LatchPath.push_back(LoopHeader);
2780
2781 // Walk the instruction stream from the loop header to the loop latch.
2782 for (SmallVectorImpl<BasicBlock *>::reverse_iterator
2783 BBIter = LatchPath.rbegin(), BBEnd = LatchPath.rend();
2784 BBIter != BBEnd; ++BBIter) {
2785 for (BasicBlock::iterator I = (*BBIter)->begin(), E = (*BBIter)->end();
2786 I != E; ++I) {
2787 // Skip instructions that weren't seen by IVUsers analysis.
2788 if (isa<PHINode>(I) || !IU.isIVUserOrOperand(I))
2789 continue;
2790
2791 // Ignore users that are part of a SCEV expression. This way we only
2792 // consider leaf IV Users. This effectively rediscovers a portion of
2793 // IVUsers analysis but in program order this time.
2794 if (SE.isSCEVable(I->getType()) && !isa<SCEVUnknown>(SE.getSCEV(I)))
2795 continue;
2796
2797 // Remove this instruction from any NearUsers set it may be in.
2798 for (unsigned ChainIdx = 0, NChains = IVChainVec.size();
2799 ChainIdx < NChains; ++ChainIdx) {
2800 ChainUsersVec[ChainIdx].NearUsers.erase(I);
2801 }
2802 // Search for operands that can be chained.
2803 SmallPtrSet<Instruction*, 4> UniqueOperands;
2804 User::op_iterator IVOpEnd = I->op_end();
2805 User::op_iterator IVOpIter = findIVOperand(I->op_begin(), IVOpEnd, L, SE);
2806 while (IVOpIter != IVOpEnd) {
2807 Instruction *IVOpInst = cast<Instruction>(*IVOpIter);
David Blaikie70573dc2014-11-19 07:49:26 +00002808 if (UniqueOperands.insert(IVOpInst).second)
Andrew Trick29fe5f02012-01-09 19:50:34 +00002809 ChainInstruction(I, IVOpInst, ChainUsersVec);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002810 IVOpIter = findIVOperand(std::next(IVOpIter), IVOpEnd, L, SE);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002811 }
2812 } // Continue walking down the instructions.
2813 } // Continue walking down the domtree.
2814 // Visit phi backedges to determine if the chain can generate the IV postinc.
2815 for (BasicBlock::iterator I = L->getHeader()->begin();
2816 PHINode *PN = dyn_cast<PHINode>(I); ++I) {
2817 if (!SE.isSCEVable(PN->getType()))
2818 continue;
2819
2820 Instruction *IncV =
2821 dyn_cast<Instruction>(PN->getIncomingValueForBlock(L->getLoopLatch()));
2822 if (IncV)
2823 ChainInstruction(PN, IncV, ChainUsersVec);
2824 }
Andrew Trick248d4102012-01-09 21:18:52 +00002825 // Remove any unprofitable chains.
2826 unsigned ChainIdx = 0;
2827 for (unsigned UsersIdx = 0, NChains = IVChainVec.size();
2828 UsersIdx < NChains; ++UsersIdx) {
2829 if (!isProfitableChain(IVChainVec[UsersIdx],
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002830 ChainUsersVec[UsersIdx].FarUsers, SE, TTI))
Andrew Trick248d4102012-01-09 21:18:52 +00002831 continue;
2832 // Preserve the chain at UsesIdx.
2833 if (ChainIdx != UsersIdx)
2834 IVChainVec[ChainIdx] = IVChainVec[UsersIdx];
2835 FinalizeChain(IVChainVec[ChainIdx]);
2836 ++ChainIdx;
2837 }
2838 IVChainVec.resize(ChainIdx);
2839}
2840
2841void LSRInstance::FinalizeChain(IVChain &Chain) {
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002842 assert(!Chain.Incs.empty() && "empty IV chains are not allowed");
2843 DEBUG(dbgs() << "Final Chain: " << *Chain.Incs[0].UserInst << "\n");
Andrew Trick248d4102012-01-09 21:18:52 +00002844
Craig Topper042a3922015-05-25 20:01:18 +00002845 for (const IVInc &Inc : Chain) {
2846 DEBUG(dbgs() << " Inc: " << Inc.UserInst << "\n");
2847 auto UseI = std::find(Inc.UserInst->op_begin(), Inc.UserInst->op_end(),
2848 Inc.IVOperand);
2849 assert(UseI != Inc.UserInst->op_end() && "cannot find IV operand");
Andrew Trick248d4102012-01-09 21:18:52 +00002850 IVIncSet.insert(UseI);
2851 }
2852}
2853
2854/// Return true if the IVInc can be folded into an addressing mode.
2855static bool canFoldIVIncExpr(const SCEV *IncExpr, Instruction *UserInst,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002856 Value *Operand, const TargetTransformInfo &TTI) {
Andrew Trick248d4102012-01-09 21:18:52 +00002857 const SCEVConstant *IncConst = dyn_cast<SCEVConstant>(IncExpr);
2858 if (!IncConst || !isAddressUse(UserInst, Operand))
2859 return false;
2860
2861 if (IncConst->getValue()->getValue().getMinSignedBits() > 64)
2862 return false;
2863
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002864 MemAccessTy AccessTy = getAccessType(UserInst);
Andrew Trick248d4102012-01-09 21:18:52 +00002865 int64_t IncOffset = IncConst->getValue()->getSExtValue();
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002866 if (!isAlwaysFoldable(TTI, LSRUse::Address, AccessTy, /*BaseGV=*/nullptr,
2867 IncOffset, /*HaseBaseReg=*/false))
Andrew Trick248d4102012-01-09 21:18:52 +00002868 return false;
2869
2870 return true;
2871}
2872
2873/// GenerateIVChains - Generate an add or subtract for each IVInc in a chain to
2874/// materialize the IV user's operand from the previous IV user's operand.
2875void LSRInstance::GenerateIVChain(const IVChain &Chain, SCEVExpander &Rewriter,
2876 SmallVectorImpl<WeakVH> &DeadInsts) {
2877 // Find the new IVOperand for the head of the chain. It may have been replaced
2878 // by LSR.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002879 const IVInc &Head = Chain.Incs[0];
Andrew Trick248d4102012-01-09 21:18:52 +00002880 User::op_iterator IVOpEnd = Head.UserInst->op_end();
Andrew Trickf3a25442013-03-19 05:10:27 +00002881 // findIVOperand returns IVOpEnd if it can no longer find a valid IV user.
Andrew Trick248d4102012-01-09 21:18:52 +00002882 User::op_iterator IVOpIter = findIVOperand(Head.UserInst->op_begin(),
2883 IVOpEnd, L, SE);
Craig Topperf40110f2014-04-25 05:29:35 +00002884 Value *IVSrc = nullptr;
Andrew Trickf3a25442013-03-19 05:10:27 +00002885 while (IVOpIter != IVOpEnd) {
Andrew Trick248d4102012-01-09 21:18:52 +00002886 IVSrc = getWideOperand(*IVOpIter);
2887
2888 // If this operand computes the expression that the chain needs, we may use
2889 // it. (Check this after setting IVSrc which is used below.)
2890 //
2891 // Note that if Head.IncExpr is wider than IVSrc, then this phi is too
2892 // narrow for the chain, so we can no longer use it. We do allow using a
2893 // wider phi, assuming the LSR checked for free truncation. In that case we
2894 // should already have a truncate on this operand such that
2895 // getSCEV(IVSrc) == IncExpr.
2896 if (SE.getSCEV(*IVOpIter) == Head.IncExpr
2897 || SE.getSCEV(IVSrc) == Head.IncExpr) {
2898 break;
2899 }
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002900 IVOpIter = findIVOperand(std::next(IVOpIter), IVOpEnd, L, SE);
Andrew Trickf3a25442013-03-19 05:10:27 +00002901 }
Andrew Trick248d4102012-01-09 21:18:52 +00002902 if (IVOpIter == IVOpEnd) {
2903 // Gracefully give up on this chain.
2904 DEBUG(dbgs() << "Concealed chain head: " << *Head.UserInst << "\n");
2905 return;
2906 }
2907
2908 DEBUG(dbgs() << "Generate chain at: " << *IVSrc << "\n");
2909 Type *IVTy = IVSrc->getType();
2910 Type *IntTy = SE.getEffectiveSCEVType(IVTy);
Craig Topperf40110f2014-04-25 05:29:35 +00002911 const SCEV *LeftOverExpr = nullptr;
Craig Topper042a3922015-05-25 20:01:18 +00002912 for (const IVInc &Inc : Chain) {
2913 Instruction *InsertPt = Inc.UserInst;
Andrew Trick248d4102012-01-09 21:18:52 +00002914 if (isa<PHINode>(InsertPt))
2915 InsertPt = L->getLoopLatch()->getTerminator();
2916
2917 // IVOper will replace the current IV User's operand. IVSrc is the IV
2918 // value currently held in a register.
2919 Value *IVOper = IVSrc;
Craig Topper042a3922015-05-25 20:01:18 +00002920 if (!Inc.IncExpr->isZero()) {
Andrew Trick248d4102012-01-09 21:18:52 +00002921 // IncExpr was the result of subtraction of two narrow values, so must
2922 // be signed.
Craig Topper042a3922015-05-25 20:01:18 +00002923 const SCEV *IncExpr = SE.getNoopOrSignExtend(Inc.IncExpr, IntTy);
Andrew Trick248d4102012-01-09 21:18:52 +00002924 LeftOverExpr = LeftOverExpr ?
2925 SE.getAddExpr(LeftOverExpr, IncExpr) : IncExpr;
2926 }
2927 if (LeftOverExpr && !LeftOverExpr->isZero()) {
2928 // Expand the IV increment.
2929 Rewriter.clearPostInc();
2930 Value *IncV = Rewriter.expandCodeFor(LeftOverExpr, IntTy, InsertPt);
2931 const SCEV *IVOperExpr = SE.getAddExpr(SE.getUnknown(IVSrc),
2932 SE.getUnknown(IncV));
2933 IVOper = Rewriter.expandCodeFor(IVOperExpr, IVTy, InsertPt);
2934
2935 // If an IV increment can't be folded, use it as the next IV value.
Craig Topper042a3922015-05-25 20:01:18 +00002936 if (!canFoldIVIncExpr(LeftOverExpr, Inc.UserInst, Inc.IVOperand, TTI)) {
Andrew Trick248d4102012-01-09 21:18:52 +00002937 assert(IVTy == IVOper->getType() && "inconsistent IV increment type");
2938 IVSrc = IVOper;
Craig Topperf40110f2014-04-25 05:29:35 +00002939 LeftOverExpr = nullptr;
Andrew Trick248d4102012-01-09 21:18:52 +00002940 }
2941 }
Craig Topper042a3922015-05-25 20:01:18 +00002942 Type *OperTy = Inc.IVOperand->getType();
Andrew Trick248d4102012-01-09 21:18:52 +00002943 if (IVTy != OperTy) {
2944 assert(SE.getTypeSizeInBits(IVTy) >= SE.getTypeSizeInBits(OperTy) &&
2945 "cannot extend a chained IV");
2946 IRBuilder<> Builder(InsertPt);
2947 IVOper = Builder.CreateTruncOrBitCast(IVOper, OperTy, "lsr.chain");
2948 }
Craig Topper042a3922015-05-25 20:01:18 +00002949 Inc.UserInst->replaceUsesOfWith(Inc.IVOperand, IVOper);
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00002950 DeadInsts.emplace_back(Inc.IVOperand);
Andrew Trick248d4102012-01-09 21:18:52 +00002951 }
2952 // If LSR created a new, wider phi, we may also replace its postinc. We only
2953 // do this if we also found a wide value for the head of the chain.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002954 if (isa<PHINode>(Chain.tailUserInst())) {
Andrew Trick248d4102012-01-09 21:18:52 +00002955 for (BasicBlock::iterator I = L->getHeader()->begin();
2956 PHINode *Phi = dyn_cast<PHINode>(I); ++I) {
2957 if (!isCompatibleIVType(Phi, IVSrc))
2958 continue;
2959 Instruction *PostIncV = dyn_cast<Instruction>(
2960 Phi->getIncomingValueForBlock(L->getLoopLatch()));
2961 if (!PostIncV || (SE.getSCEV(PostIncV) != SE.getSCEV(IVSrc)))
2962 continue;
2963 Value *IVOper = IVSrc;
2964 Type *PostIncTy = PostIncV->getType();
2965 if (IVTy != PostIncTy) {
2966 assert(PostIncTy->isPointerTy() && "mixing int/ptr IV types");
2967 IRBuilder<> Builder(L->getLoopLatch()->getTerminator());
2968 Builder.SetCurrentDebugLocation(PostIncV->getDebugLoc());
2969 IVOper = Builder.CreatePointerCast(IVSrc, PostIncTy, "lsr.chain");
2970 }
2971 Phi->replaceUsesOfWith(PostIncV, IVOper);
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00002972 DeadInsts.emplace_back(PostIncV);
Andrew Trick248d4102012-01-09 21:18:52 +00002973 }
2974 }
Andrew Trick29fe5f02012-01-09 19:50:34 +00002975}
2976
Dan Gohman45774ce2010-02-12 10:34:29 +00002977void LSRInstance::CollectFixupsAndInitialFormulae() {
Craig Topper042a3922015-05-25 20:01:18 +00002978 for (const IVStrideUse &U : IU) {
2979 Instruction *UserInst = U.getUser();
Andrew Trick248d4102012-01-09 21:18:52 +00002980 // Skip IV users that are part of profitable IV Chains.
2981 User::op_iterator UseI = std::find(UserInst->op_begin(), UserInst->op_end(),
Craig Topper042a3922015-05-25 20:01:18 +00002982 U.getOperandValToReplace());
Andrew Trick248d4102012-01-09 21:18:52 +00002983 assert(UseI != UserInst->op_end() && "cannot find IV operand");
2984 if (IVIncSet.count(UseI))
2985 continue;
2986
Dan Gohman45774ce2010-02-12 10:34:29 +00002987 // Record the uses.
2988 LSRFixup &LF = getNewFixup();
Andrew Trick248d4102012-01-09 21:18:52 +00002989 LF.UserInst = UserInst;
Craig Topper042a3922015-05-25 20:01:18 +00002990 LF.OperandValToReplace = U.getOperandValToReplace();
2991 LF.PostIncLoops = U.getPostIncLoops();
Dan Gohman45774ce2010-02-12 10:34:29 +00002992
2993 LSRUse::KindType Kind = LSRUse::Basic;
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002994 MemAccessTy AccessTy;
Dan Gohman45774ce2010-02-12 10:34:29 +00002995 if (isAddressUse(LF.UserInst, LF.OperandValToReplace)) {
2996 Kind = LSRUse::Address;
2997 AccessTy = getAccessType(LF.UserInst);
2998 }
2999
Craig Topper042a3922015-05-25 20:01:18 +00003000 const SCEV *S = IU.getExpr(U);
Dan Gohman45774ce2010-02-12 10:34:29 +00003001
3002 // Equality (== and !=) ICmps are special. We can rewrite (i == N) as
3003 // (N - i == 0), and this allows (N - i) to be the expression that we work
3004 // with rather than just N or i, so we can consider the register
3005 // requirements for both N and i at the same time. Limiting this code to
3006 // equality icmps is not a problem because all interesting loops use
3007 // equality icmps, thanks to IndVarSimplify.
3008 if (ICmpInst *CI = dyn_cast<ICmpInst>(LF.UserInst))
3009 if (CI->isEquality()) {
3010 // Swap the operands if needed to put the OperandValToReplace on the
3011 // left, for consistency.
3012 Value *NV = CI->getOperand(1);
3013 if (NV == LF.OperandValToReplace) {
3014 CI->setOperand(1, CI->getOperand(0));
3015 CI->setOperand(0, NV);
Dan Gohmanee2fea32010-05-20 19:26:52 +00003016 NV = CI->getOperand(1);
Dan Gohmanfdf98742010-05-20 19:16:03 +00003017 Changed = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00003018 }
3019
3020 // x == y --> x - y == 0
3021 const SCEV *N = SE.getSCEV(NV);
Andrew Trick57243da2013-10-25 21:35:56 +00003022 if (SE.isLoopInvariant(N, L) && isSafeToExpand(N, SE)) {
Dan Gohman3268e4d2011-05-18 21:02:18 +00003023 // S is normalized, so normalize N before folding it into S
3024 // to keep the result normalized.
Craig Topperf40110f2014-04-25 05:29:35 +00003025 N = TransformForPostIncUse(Normalize, N, CI, nullptr,
Dan Gohman3268e4d2011-05-18 21:02:18 +00003026 LF.PostIncLoops, SE, DT);
Dan Gohman45774ce2010-02-12 10:34:29 +00003027 Kind = LSRUse::ICmpZero;
3028 S = SE.getMinusSCEV(N, S);
3029 }
3030
3031 // -1 and the negations of all interesting strides (except the negation
3032 // of -1) are now also interesting.
3033 for (size_t i = 0, e = Factors.size(); i != e; ++i)
3034 if (Factors[i] != -1)
3035 Factors.insert(-(uint64_t)Factors[i]);
3036 Factors.insert(-1);
3037 }
3038
3039 // Set up the initial formula for this use.
3040 std::pair<size_t, int64_t> P = getUse(S, Kind, AccessTy);
3041 LF.LUIdx = P.first;
3042 LF.Offset = P.second;
3043 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohmand006ab92010-04-07 22:27:08 +00003044 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohman14152082010-07-15 20:24:58 +00003045 if (!LU.WidestFixupType ||
3046 SE.getTypeSizeInBits(LU.WidestFixupType) <
3047 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
3048 LU.WidestFixupType = LF.OperandValToReplace->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003049
3050 // If this is the first use of this LSRUse, give it a formula.
3051 if (LU.Formulae.empty()) {
Dan Gohman8c16b382010-02-22 04:11:59 +00003052 InsertInitialFormula(S, LU, LF.LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00003053 CountRegisters(LU.Formulae.back(), LF.LUIdx);
3054 }
3055 }
3056
3057 DEBUG(print_fixups(dbgs()));
3058}
3059
Dan Gohmana4ca28a2010-05-20 20:52:00 +00003060/// InsertInitialFormula - Insert a formula for the given expression into
3061/// the given use, separating out loop-variant portions from loop-invariant
3062/// and loop-computable portions.
Dan Gohman45774ce2010-02-12 10:34:29 +00003063void
Dan Gohman8c16b382010-02-22 04:11:59 +00003064LSRInstance::InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx) {
Andrew Trick57243da2013-10-25 21:35:56 +00003065 // Mark uses whose expressions cannot be expanded.
3066 if (!isSafeToExpand(S, SE))
3067 LU.RigidFormula = true;
3068
Dan Gohman45774ce2010-02-12 10:34:29 +00003069 Formula F;
Dan Gohman20d9ce22010-11-17 21:41:58 +00003070 F.InitialMatch(S, L, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +00003071 bool Inserted = InsertFormula(LU, LUIdx, F);
3072 assert(Inserted && "Initial formula already exists!"); (void)Inserted;
3073}
3074
Dan Gohmana4ca28a2010-05-20 20:52:00 +00003075/// InsertSupplementalFormula - Insert a simple single-register formula for
3076/// the given expression into the given use.
Dan Gohman45774ce2010-02-12 10:34:29 +00003077void
3078LSRInstance::InsertSupplementalFormula(const SCEV *S,
3079 LSRUse &LU, size_t LUIdx) {
3080 Formula F;
3081 F.BaseRegs.push_back(S);
Chandler Carruth7e31c8f2013-01-12 23:46:04 +00003082 F.HasBaseReg = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00003083 bool Inserted = InsertFormula(LU, LUIdx, F);
3084 assert(Inserted && "Supplemental formula already exists!"); (void)Inserted;
3085}
3086
3087/// CountRegisters - Note which registers are used by the given formula,
3088/// updating RegUses.
3089void LSRInstance::CountRegisters(const Formula &F, size_t LUIdx) {
3090 if (F.ScaledReg)
3091 RegUses.CountRegister(F.ScaledReg, LUIdx);
Craig Topper042a3922015-05-25 20:01:18 +00003092 for (const SCEV *BaseReg : F.BaseRegs)
3093 RegUses.CountRegister(BaseReg, LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00003094}
3095
3096/// InsertFormula - If the given formula has not yet been inserted, add it to
3097/// the list, and return true. Return false otherwise.
3098bool LSRInstance::InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003099 // Do not insert formula that we will not be able to expand.
3100 assert(isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F) &&
3101 "Formula is illegal");
Dan Gohman8c16b382010-02-22 04:11:59 +00003102 if (!LU.InsertFormula(F))
Dan Gohman45774ce2010-02-12 10:34:29 +00003103 return false;
3104
3105 CountRegisters(F, LUIdx);
3106 return true;
3107}
3108
3109/// CollectLoopInvariantFixupsAndFormulae - Check for other uses of
3110/// loop-invariant values which we're tracking. These other uses will pin these
3111/// values in registers, making them less profitable for elimination.
3112/// TODO: This currently misses non-constant addrec step registers.
3113/// TODO: Should this give more weight to users inside the loop?
3114void
3115LSRInstance::CollectLoopInvariantFixupsAndFormulae() {
3116 SmallVector<const SCEV *, 8> Worklist(RegUses.begin(), RegUses.end());
Andrew Trickdd925ad2014-10-25 19:59:30 +00003117 SmallPtrSet<const SCEV *, 32> Visited;
Dan Gohman45774ce2010-02-12 10:34:29 +00003118
3119 while (!Worklist.empty()) {
3120 const SCEV *S = Worklist.pop_back_val();
3121
Andrew Trick9ccbed52014-10-25 19:42:07 +00003122 // Don't process the same SCEV twice
David Blaikie70573dc2014-11-19 07:49:26 +00003123 if (!Visited.insert(S).second)
Andrew Trick9ccbed52014-10-25 19:42:07 +00003124 continue;
3125
Dan Gohman45774ce2010-02-12 10:34:29 +00003126 if (const SCEVNAryExpr *N = dyn_cast<SCEVNAryExpr>(S))
Dan Gohmandd41bba2010-06-21 19:47:52 +00003127 Worklist.append(N->op_begin(), N->op_end());
Dan Gohman45774ce2010-02-12 10:34:29 +00003128 else if (const SCEVCastExpr *C = dyn_cast<SCEVCastExpr>(S))
3129 Worklist.push_back(C->getOperand());
3130 else if (const SCEVUDivExpr *D = dyn_cast<SCEVUDivExpr>(S)) {
3131 Worklist.push_back(D->getLHS());
3132 Worklist.push_back(D->getRHS());
Chandler Carruthcdf47882014-03-09 03:16:01 +00003133 } else if (const SCEVUnknown *US = dyn_cast<SCEVUnknown>(S)) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00003134 const Value *V = US->getValue();
Dan Gohman67b44032010-06-04 23:16:05 +00003135 if (const Instruction *Inst = dyn_cast<Instruction>(V)) {
3136 // Look for instructions defined outside the loop.
Dan Gohman45774ce2010-02-12 10:34:29 +00003137 if (L->contains(Inst)) continue;
Dan Gohman67b44032010-06-04 23:16:05 +00003138 } else if (isa<UndefValue>(V))
3139 // Undef doesn't have a live range, so it doesn't matter.
3140 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00003141 for (const Use &U : V->uses()) {
3142 const Instruction *UserInst = dyn_cast<Instruction>(U.getUser());
Dan Gohman45774ce2010-02-12 10:34:29 +00003143 // Ignore non-instructions.
3144 if (!UserInst)
Dan Gohman045f8192010-01-22 00:46:49 +00003145 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003146 // Ignore instructions in other functions (as can happen with
3147 // Constants).
3148 if (UserInst->getParent()->getParent() != L->getHeader()->getParent())
Dan Gohman045f8192010-01-22 00:46:49 +00003149 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003150 // Ignore instructions not dominated by the loop.
3151 const BasicBlock *UseBB = !isa<PHINode>(UserInst) ?
3152 UserInst->getParent() :
3153 cast<PHINode>(UserInst)->getIncomingBlock(
Chandler Carruthcdf47882014-03-09 03:16:01 +00003154 PHINode::getIncomingValueNumForOperand(U.getOperandNo()));
Dan Gohman45774ce2010-02-12 10:34:29 +00003155 if (!DT.dominates(L->getHeader(), UseBB))
3156 continue;
3157 // Ignore uses which are part of other SCEV expressions, to avoid
3158 // analyzing them multiple times.
Dan Gohman42ec4eb2010-04-09 19:12:34 +00003159 if (SE.isSCEVable(UserInst->getType())) {
3160 const SCEV *UserS = SE.getSCEV(const_cast<Instruction *>(UserInst));
3161 // If the user is a no-op, look through to its uses.
3162 if (!isa<SCEVUnknown>(UserS))
3163 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00003164 if (UserS == US) {
Dan Gohman42ec4eb2010-04-09 19:12:34 +00003165 Worklist.push_back(
3166 SE.getUnknown(const_cast<Instruction *>(UserInst)));
3167 continue;
3168 }
3169 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003170 // Ignore icmp instructions which are already being analyzed.
3171 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UserInst)) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00003172 unsigned OtherIdx = !U.getOperandNo();
Dan Gohman45774ce2010-02-12 10:34:29 +00003173 Value *OtherOp = const_cast<Value *>(ICI->getOperand(OtherIdx));
Dan Gohmanafd6db92010-11-17 21:23:15 +00003174 if (SE.hasComputableLoopEvolution(SE.getSCEV(OtherOp), L))
Dan Gohman45774ce2010-02-12 10:34:29 +00003175 continue;
3176 }
3177
3178 LSRFixup &LF = getNewFixup();
3179 LF.UserInst = const_cast<Instruction *>(UserInst);
Chandler Carruthcdf47882014-03-09 03:16:01 +00003180 LF.OperandValToReplace = U;
Matt Arsenault427a0fd2015-08-15 00:53:06 +00003181 std::pair<size_t, int64_t> P = getUse(
3182 S, LSRUse::Basic, MemAccessTy());
Dan Gohman45774ce2010-02-12 10:34:29 +00003183 LF.LUIdx = P.first;
3184 LF.Offset = P.second;
3185 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohmand006ab92010-04-07 22:27:08 +00003186 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohman14152082010-07-15 20:24:58 +00003187 if (!LU.WidestFixupType ||
3188 SE.getTypeSizeInBits(LU.WidestFixupType) <
3189 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
3190 LU.WidestFixupType = LF.OperandValToReplace->getType();
Chandler Carruthcdf47882014-03-09 03:16:01 +00003191 InsertSupplementalFormula(US, LU, LF.LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00003192 CountRegisters(LU.Formulae.back(), Uses.size() - 1);
3193 break;
3194 }
3195 }
3196 }
3197}
3198
3199/// CollectSubexprs - Split S into subexpressions which can be pulled out into
3200/// separate registers. If C is non-null, multiply each subexpression by C.
Andrew Trickc8037062012-07-17 05:30:37 +00003201///
3202/// Return remainder expression after factoring the subexpressions captured by
3203/// Ops. If Ops is complete, return NULL.
3204static const SCEV *CollectSubexprs(const SCEV *S, const SCEVConstant *C,
3205 SmallVectorImpl<const SCEV *> &Ops,
3206 const Loop *L,
3207 ScalarEvolution &SE,
3208 unsigned Depth = 0) {
3209 // Arbitrarily cap recursion to protect compile time.
3210 if (Depth >= 3)
3211 return S;
3212
Dan Gohman45774ce2010-02-12 10:34:29 +00003213 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
3214 // Break out add operands.
Craig Topper042a3922015-05-25 20:01:18 +00003215 for (const SCEV *S : Add->operands()) {
3216 const SCEV *Remainder = CollectSubexprs(S, C, Ops, L, SE, Depth+1);
Andrew Trickc8037062012-07-17 05:30:37 +00003217 if (Remainder)
3218 Ops.push_back(C ? SE.getMulExpr(C, Remainder) : Remainder);
3219 }
Craig Topperf40110f2014-04-25 05:29:35 +00003220 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +00003221 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
3222 // Split a non-zero base out of an addrec.
Andrew Trickc8037062012-07-17 05:30:37 +00003223 if (AR->getStart()->isZero())
3224 return S;
3225
3226 const SCEV *Remainder = CollectSubexprs(AR->getStart(),
3227 C, Ops, L, SE, Depth+1);
3228 // Split the non-zero AddRec unless it is part of a nested recurrence that
3229 // does not pertain to this loop.
3230 if (Remainder && (AR->getLoop() == L || !isa<SCEVAddRecExpr>(Remainder))) {
3231 Ops.push_back(C ? SE.getMulExpr(C, Remainder) : Remainder);
Craig Topperf40110f2014-04-25 05:29:35 +00003232 Remainder = nullptr;
Andrew Trickc8037062012-07-17 05:30:37 +00003233 }
3234 if (Remainder != AR->getStart()) {
3235 if (!Remainder)
3236 Remainder = SE.getConstant(AR->getType(), 0);
3237 return SE.getAddRecExpr(Remainder,
3238 AR->getStepRecurrence(SE),
3239 AR->getLoop(),
3240 //FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
3241 SCEV::FlagAnyWrap);
Dan Gohman45774ce2010-02-12 10:34:29 +00003242 }
3243 } else if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
3244 // Break (C * (a + b + c)) into C*a + C*b + C*c.
Andrew Trickc8037062012-07-17 05:30:37 +00003245 if (Mul->getNumOperands() != 2)
3246 return S;
3247 if (const SCEVConstant *Op0 =
3248 dyn_cast<SCEVConstant>(Mul->getOperand(0))) {
3249 C = C ? cast<SCEVConstant>(SE.getMulExpr(C, Op0)) : Op0;
3250 const SCEV *Remainder =
3251 CollectSubexprs(Mul->getOperand(1), C, Ops, L, SE, Depth+1);
3252 if (Remainder)
3253 Ops.push_back(SE.getMulExpr(C, Remainder));
Craig Topperf40110f2014-04-25 05:29:35 +00003254 return nullptr;
Andrew Trickc8037062012-07-17 05:30:37 +00003255 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003256 }
Andrew Trickc8037062012-07-17 05:30:37 +00003257 return S;
Dan Gohman45774ce2010-02-12 10:34:29 +00003258}
3259
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003260/// \brief Helper function for LSRInstance::GenerateReassociations.
3261void LSRInstance::GenerateReassociationsImpl(LSRUse &LU, unsigned LUIdx,
3262 const Formula &Base,
3263 unsigned Depth, size_t Idx,
3264 bool IsScaledReg) {
3265 const SCEV *BaseReg = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx];
3266 SmallVector<const SCEV *, 8> AddOps;
3267 const SCEV *Remainder = CollectSubexprs(BaseReg, nullptr, AddOps, L, SE);
3268 if (Remainder)
3269 AddOps.push_back(Remainder);
3270
3271 if (AddOps.size() == 1)
3272 return;
3273
3274 for (SmallVectorImpl<const SCEV *>::const_iterator J = AddOps.begin(),
3275 JE = AddOps.end();
3276 J != JE; ++J) {
3277
3278 // Loop-variant "unknown" values are uninteresting; we won't be able to
3279 // do anything meaningful with them.
3280 if (isa<SCEVUnknown>(*J) && !SE.isLoopInvariant(*J, L))
3281 continue;
3282
3283 // Don't pull a constant into a register if the constant could be folded
3284 // into an immediate field.
3285 if (isAlwaysFoldable(TTI, SE, LU.MinOffset, LU.MaxOffset, LU.Kind,
3286 LU.AccessTy, *J, Base.getNumRegs() > 1))
3287 continue;
3288
3289 // Collect all operands except *J.
3290 SmallVector<const SCEV *, 8> InnerAddOps(
3291 ((const SmallVector<const SCEV *, 8> &)AddOps).begin(), J);
3292 InnerAddOps.append(std::next(J),
3293 ((const SmallVector<const SCEV *, 8> &)AddOps).end());
3294
3295 // Don't leave just a constant behind in a register if the constant could
3296 // be folded into an immediate field.
3297 if (InnerAddOps.size() == 1 &&
3298 isAlwaysFoldable(TTI, SE, LU.MinOffset, LU.MaxOffset, LU.Kind,
3299 LU.AccessTy, InnerAddOps[0], Base.getNumRegs() > 1))
3300 continue;
3301
3302 const SCEV *InnerSum = SE.getAddExpr(InnerAddOps);
3303 if (InnerSum->isZero())
3304 continue;
3305 Formula F = Base;
3306
3307 // Add the remaining pieces of the add back into the new formula.
3308 const SCEVConstant *InnerSumSC = dyn_cast<SCEVConstant>(InnerSum);
3309 if (InnerSumSC && SE.getTypeSizeInBits(InnerSumSC->getType()) <= 64 &&
3310 TTI.isLegalAddImmediate((uint64_t)F.UnfoldedOffset +
3311 InnerSumSC->getValue()->getZExtValue())) {
3312 F.UnfoldedOffset =
3313 (uint64_t)F.UnfoldedOffset + InnerSumSC->getValue()->getZExtValue();
3314 if (IsScaledReg)
3315 F.ScaledReg = nullptr;
3316 else
3317 F.BaseRegs.erase(F.BaseRegs.begin() + Idx);
3318 } else if (IsScaledReg)
3319 F.ScaledReg = InnerSum;
3320 else
3321 F.BaseRegs[Idx] = InnerSum;
3322
3323 // Add J as its own register, or an unfolded immediate.
3324 const SCEVConstant *SC = dyn_cast<SCEVConstant>(*J);
3325 if (SC && SE.getTypeSizeInBits(SC->getType()) <= 64 &&
3326 TTI.isLegalAddImmediate((uint64_t)F.UnfoldedOffset +
3327 SC->getValue()->getZExtValue()))
3328 F.UnfoldedOffset =
3329 (uint64_t)F.UnfoldedOffset + SC->getValue()->getZExtValue();
3330 else
3331 F.BaseRegs.push_back(*J);
3332 // We may have changed the number of register in base regs, adjust the
3333 // formula accordingly.
3334 F.Canonicalize();
3335
3336 if (InsertFormula(LU, LUIdx, F))
3337 // If that formula hadn't been seen before, recurse to find more like
3338 // it.
3339 GenerateReassociations(LU, LUIdx, LU.Formulae.back(), Depth + 1);
3340 }
3341}
3342
Dan Gohman45774ce2010-02-12 10:34:29 +00003343/// GenerateReassociations - Split out subexpressions from adds and the bases of
3344/// addrecs.
3345void LSRInstance::GenerateReassociations(LSRUse &LU, unsigned LUIdx,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003346 Formula Base, unsigned Depth) {
3347 assert(Base.isCanonical() && "Input must be in the canonical form");
Dan Gohman45774ce2010-02-12 10:34:29 +00003348 // Arbitrarily cap recursion to protect compile time.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003349 if (Depth >= 3)
3350 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003351
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003352 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3353 GenerateReassociationsImpl(LU, LUIdx, Base, Depth, i);
Dan Gohman45774ce2010-02-12 10:34:29 +00003354
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003355 if (Base.Scale == 1)
3356 GenerateReassociationsImpl(LU, LUIdx, Base, Depth,
3357 /* Idx */ -1, /* IsScaledReg */ true);
Dan Gohman45774ce2010-02-12 10:34:29 +00003358}
3359
3360/// GenerateCombinations - Generate a formula consisting of all of the
3361/// loop-dominating registers added into a single register.
3362void LSRInstance::GenerateCombinations(LSRUse &LU, unsigned LUIdx,
Dan Gohmane4e51a62010-02-14 18:51:39 +00003363 Formula Base) {
Dan Gohman8b0a4192010-03-01 17:49:51 +00003364 // This method is only interesting on a plurality of registers.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003365 if (Base.BaseRegs.size() + (Base.Scale == 1) <= 1)
3366 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003367
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003368 // Flatten the representation, i.e., reg1 + 1*reg2 => reg1 + reg2, before
3369 // processing the formula.
3370 Base.Unscale();
Dan Gohman45774ce2010-02-12 10:34:29 +00003371 Formula F = Base;
3372 F.BaseRegs.clear();
3373 SmallVector<const SCEV *, 4> Ops;
Craig Topper042a3922015-05-25 20:01:18 +00003374 for (const SCEV *BaseReg : Base.BaseRegs) {
Dan Gohman20d9ce22010-11-17 21:41:58 +00003375 if (SE.properlyDominates(BaseReg, L->getHeader()) &&
Dan Gohmanafd6db92010-11-17 21:23:15 +00003376 !SE.hasComputableLoopEvolution(BaseReg, L))
Dan Gohman45774ce2010-02-12 10:34:29 +00003377 Ops.push_back(BaseReg);
3378 else
3379 F.BaseRegs.push_back(BaseReg);
3380 }
3381 if (Ops.size() > 1) {
Dan Gohmanbb7d5222010-02-14 18:50:49 +00003382 const SCEV *Sum = SE.getAddExpr(Ops);
3383 // TODO: If Sum is zero, it probably means ScalarEvolution missed an
3384 // opportunity to fold something. For now, just ignore such cases
Dan Gohman8b0a4192010-03-01 17:49:51 +00003385 // rather than proceed with zero in a register.
Dan Gohmanbb7d5222010-02-14 18:50:49 +00003386 if (!Sum->isZero()) {
3387 F.BaseRegs.push_back(Sum);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003388 F.Canonicalize();
Dan Gohmanbb7d5222010-02-14 18:50:49 +00003389 (void)InsertFormula(LU, LUIdx, F);
3390 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003391 }
3392}
3393
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003394/// \brief Helper function for LSRInstance::GenerateSymbolicOffsets.
3395void LSRInstance::GenerateSymbolicOffsetsImpl(LSRUse &LU, unsigned LUIdx,
3396 const Formula &Base, size_t Idx,
3397 bool IsScaledReg) {
3398 const SCEV *G = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx];
3399 GlobalValue *GV = ExtractSymbol(G, SE);
3400 if (G->isZero() || !GV)
3401 return;
3402 Formula F = Base;
3403 F.BaseGV = GV;
3404 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F))
3405 return;
3406 if (IsScaledReg)
3407 F.ScaledReg = G;
3408 else
3409 F.BaseRegs[Idx] = G;
3410 (void)InsertFormula(LU, LUIdx, F);
3411}
3412
Dan Gohman45774ce2010-02-12 10:34:29 +00003413/// GenerateSymbolicOffsets - Generate reuse formulae using symbolic offsets.
3414void LSRInstance::GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx,
3415 Formula Base) {
3416 // We can't add a symbolic offset if the address already contains one.
Chandler Carruth6e479322013-01-07 15:04:40 +00003417 if (Base.BaseGV) return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003418
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003419 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3420 GenerateSymbolicOffsetsImpl(LU, LUIdx, Base, i);
3421 if (Base.Scale == 1)
3422 GenerateSymbolicOffsetsImpl(LU, LUIdx, Base, /* Idx */ -1,
3423 /* IsScaledReg */ true);
3424}
3425
3426/// \brief Helper function for LSRInstance::GenerateConstantOffsets.
3427void LSRInstance::GenerateConstantOffsetsImpl(
3428 LSRUse &LU, unsigned LUIdx, const Formula &Base,
3429 const SmallVectorImpl<int64_t> &Worklist, size_t Idx, bool IsScaledReg) {
3430 const SCEV *G = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx];
Craig Topper042a3922015-05-25 20:01:18 +00003431 for (int64_t Offset : Worklist) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003432 Formula F = Base;
Craig Topper042a3922015-05-25 20:01:18 +00003433 F.BaseOffset = (uint64_t)Base.BaseOffset - Offset;
3434 if (isLegalUse(TTI, LU.MinOffset - Offset, LU.MaxOffset - Offset, LU.Kind,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003435 LU.AccessTy, F)) {
3436 // Add the offset to the base register.
Craig Topper042a3922015-05-25 20:01:18 +00003437 const SCEV *NewG = SE.getAddExpr(SE.getConstant(G->getType(), Offset), G);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003438 // If it cancelled out, drop the base register, otherwise update it.
3439 if (NewG->isZero()) {
3440 if (IsScaledReg) {
3441 F.Scale = 0;
3442 F.ScaledReg = nullptr;
3443 } else
3444 F.DeleteBaseReg(F.BaseRegs[Idx]);
3445 F.Canonicalize();
3446 } else if (IsScaledReg)
3447 F.ScaledReg = NewG;
3448 else
3449 F.BaseRegs[Idx] = NewG;
3450
3451 (void)InsertFormula(LU, LUIdx, F);
3452 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003453 }
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003454
3455 int64_t Imm = ExtractImmediate(G, SE);
3456 if (G->isZero() || Imm == 0)
3457 return;
3458 Formula F = Base;
3459 F.BaseOffset = (uint64_t)F.BaseOffset + Imm;
3460 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F))
3461 return;
3462 if (IsScaledReg)
3463 F.ScaledReg = G;
3464 else
3465 F.BaseRegs[Idx] = G;
3466 (void)InsertFormula(LU, LUIdx, F);
Dan Gohman45774ce2010-02-12 10:34:29 +00003467}
3468
3469/// GenerateConstantOffsets - Generate reuse formulae using symbolic offsets.
3470void LSRInstance::GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx,
3471 Formula Base) {
3472 // TODO: For now, just add the min and max offset, because it usually isn't
3473 // worthwhile looking at everything inbetween.
Dan Gohman4afd4122010-07-15 15:14:45 +00003474 SmallVector<int64_t, 2> Worklist;
Dan Gohman45774ce2010-02-12 10:34:29 +00003475 Worklist.push_back(LU.MinOffset);
3476 if (LU.MaxOffset != LU.MinOffset)
3477 Worklist.push_back(LU.MaxOffset);
3478
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003479 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3480 GenerateConstantOffsetsImpl(LU, LUIdx, Base, Worklist, i);
3481 if (Base.Scale == 1)
3482 GenerateConstantOffsetsImpl(LU, LUIdx, Base, Worklist, /* Idx */ -1,
3483 /* IsScaledReg */ true);
Dan Gohman45774ce2010-02-12 10:34:29 +00003484}
3485
3486/// GenerateICmpZeroScales - For ICmpZero, check to see if we can scale up
3487/// the comparison. For example, x == y -> x*c == y*c.
3488void LSRInstance::GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx,
3489 Formula Base) {
3490 if (LU.Kind != LSRUse::ICmpZero) return;
3491
3492 // Determine the integer type for the base formula.
Chris Lattner229907c2011-07-18 04:54:35 +00003493 Type *IntTy = Base.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003494 if (!IntTy) return;
3495 if (SE.getTypeSizeInBits(IntTy) > 64) return;
3496
3497 // Don't do this if there is more than one offset.
3498 if (LU.MinOffset != LU.MaxOffset) return;
3499
Chandler Carruth6e479322013-01-07 15:04:40 +00003500 assert(!Base.BaseGV && "ICmpZero use is not legal!");
Dan Gohman45774ce2010-02-12 10:34:29 +00003501
3502 // Check each interesting stride.
Craig Topper042a3922015-05-25 20:01:18 +00003503 for (int64_t Factor : Factors) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003504 // Check that the multiplication doesn't overflow.
Chandler Carruth6e479322013-01-07 15:04:40 +00003505 if (Base.BaseOffset == INT64_MIN && Factor == -1)
Dan Gohman5f10d6c2010-02-17 00:41:53 +00003506 continue;
Chandler Carruth6e479322013-01-07 15:04:40 +00003507 int64_t NewBaseOffset = (uint64_t)Base.BaseOffset * Factor;
3508 if (NewBaseOffset / Factor != Base.BaseOffset)
Dan Gohman45774ce2010-02-12 10:34:29 +00003509 continue;
Andrew Trick429e9ed2014-02-26 16:31:56 +00003510 // If the offset will be truncated at this use, check that it is in bounds.
3511 if (!IntTy->isPointerTy() &&
3512 !ConstantInt::isValueValidForType(IntTy, NewBaseOffset))
3513 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003514
3515 // Check that multiplying with the use offset doesn't overflow.
3516 int64_t Offset = LU.MinOffset;
Dan Gohman5f10d6c2010-02-17 00:41:53 +00003517 if (Offset == INT64_MIN && Factor == -1)
3518 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003519 Offset = (uint64_t)Offset * Factor;
Dan Gohman13ac3b22010-02-17 00:42:19 +00003520 if (Offset / Factor != LU.MinOffset)
Dan Gohman45774ce2010-02-12 10:34:29 +00003521 continue;
Andrew Trick429e9ed2014-02-26 16:31:56 +00003522 // If the offset will be truncated at this use, check that it is in bounds.
3523 if (!IntTy->isPointerTy() &&
3524 !ConstantInt::isValueValidForType(IntTy, Offset))
3525 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003526
Dan Gohman963b1c12010-06-24 16:57:52 +00003527 Formula F = Base;
Chandler Carruth6e479322013-01-07 15:04:40 +00003528 F.BaseOffset = NewBaseOffset;
Dan Gohman963b1c12010-06-24 16:57:52 +00003529
Dan Gohman45774ce2010-02-12 10:34:29 +00003530 // Check that this scale is legal.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003531 if (!isLegalUse(TTI, Offset, Offset, LU.Kind, LU.AccessTy, F))
Dan Gohman45774ce2010-02-12 10:34:29 +00003532 continue;
3533
3534 // Compensate for the use having MinOffset built into it.
Chandler Carruth6e479322013-01-07 15:04:40 +00003535 F.BaseOffset = (uint64_t)F.BaseOffset + Offset - LU.MinOffset;
Dan Gohman45774ce2010-02-12 10:34:29 +00003536
Dan Gohman1d2ded72010-05-03 22:09:21 +00003537 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman45774ce2010-02-12 10:34:29 +00003538
3539 // Check that multiplying with each base register doesn't overflow.
3540 for (size_t i = 0, e = F.BaseRegs.size(); i != e; ++i) {
3541 F.BaseRegs[i] = SE.getMulExpr(F.BaseRegs[i], FactorS);
Dan Gohman4eebb942010-02-19 19:35:48 +00003542 if (getExactSDiv(F.BaseRegs[i], FactorS, SE) != Base.BaseRegs[i])
Dan Gohman45774ce2010-02-12 10:34:29 +00003543 goto next;
3544 }
3545
3546 // Check that multiplying with the scaled register doesn't overflow.
3547 if (F.ScaledReg) {
3548 F.ScaledReg = SE.getMulExpr(F.ScaledReg, FactorS);
Dan Gohman4eebb942010-02-19 19:35:48 +00003549 if (getExactSDiv(F.ScaledReg, FactorS, SE) != Base.ScaledReg)
Dan Gohman45774ce2010-02-12 10:34:29 +00003550 continue;
3551 }
3552
Dan Gohman6136e942011-05-03 00:46:49 +00003553 // Check that multiplying with the unfolded offset doesn't overflow.
3554 if (F.UnfoldedOffset != 0) {
Dan Gohman6c4a3192011-05-23 21:07:39 +00003555 if (F.UnfoldedOffset == INT64_MIN && Factor == -1)
3556 continue;
Dan Gohman6136e942011-05-03 00:46:49 +00003557 F.UnfoldedOffset = (uint64_t)F.UnfoldedOffset * Factor;
3558 if (F.UnfoldedOffset / Factor != Base.UnfoldedOffset)
3559 continue;
Andrew Trick429e9ed2014-02-26 16:31:56 +00003560 // If the offset will be truncated, check that it is in bounds.
3561 if (!IntTy->isPointerTy() &&
3562 !ConstantInt::isValueValidForType(IntTy, F.UnfoldedOffset))
3563 continue;
Dan Gohman6136e942011-05-03 00:46:49 +00003564 }
3565
Dan Gohman45774ce2010-02-12 10:34:29 +00003566 // If we make it here and it's legal, add it.
3567 (void)InsertFormula(LU, LUIdx, F);
3568 next:;
3569 }
3570}
3571
3572/// GenerateScales - Generate stride factor reuse formulae by making use of
3573/// scaled-offset address modes, for example.
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00003574void LSRInstance::GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003575 // Determine the integer type for the base formula.
Chris Lattner229907c2011-07-18 04:54:35 +00003576 Type *IntTy = Base.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003577 if (!IntTy) return;
3578
3579 // If this Formula already has a scaled register, we can't add another one.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003580 // Try to unscale the formula to generate a better scale.
3581 if (Base.Scale != 0 && !Base.Unscale())
3582 return;
3583
3584 assert(Base.Scale == 0 && "Unscale did not did its job!");
Dan Gohman45774ce2010-02-12 10:34:29 +00003585
3586 // Check each interesting stride.
Craig Topper042a3922015-05-25 20:01:18 +00003587 for (int64_t Factor : Factors) {
Chandler Carruth6e479322013-01-07 15:04:40 +00003588 Base.Scale = Factor;
3589 Base.HasBaseReg = Base.BaseRegs.size() > 1;
Dan Gohman45774ce2010-02-12 10:34:29 +00003590 // Check whether this scale is going to be legal.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003591 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
3592 Base)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003593 // As a special-case, handle special out-of-loop Basic users specially.
3594 // TODO: Reconsider this special case.
3595 if (LU.Kind == LSRUse::Basic &&
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003596 isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LSRUse::Special,
3597 LU.AccessTy, Base) &&
Dan Gohman45774ce2010-02-12 10:34:29 +00003598 LU.AllFixupsOutsideLoop)
3599 LU.Kind = LSRUse::Special;
3600 else
3601 continue;
3602 }
3603 // For an ICmpZero, negating a solitary base register won't lead to
3604 // new solutions.
3605 if (LU.Kind == LSRUse::ICmpZero &&
Chandler Carruth6e479322013-01-07 15:04:40 +00003606 !Base.HasBaseReg && Base.BaseOffset == 0 && !Base.BaseGV)
Dan Gohman45774ce2010-02-12 10:34:29 +00003607 continue;
3608 // For each addrec base reg, apply the scale, if possible.
3609 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3610 if (const SCEVAddRecExpr *AR =
3611 dyn_cast<SCEVAddRecExpr>(Base.BaseRegs[i])) {
Dan Gohman1d2ded72010-05-03 22:09:21 +00003612 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman45774ce2010-02-12 10:34:29 +00003613 if (FactorS->isZero())
3614 continue;
3615 // Divide out the factor, ignoring high bits, since we'll be
3616 // scaling the value back up in the end.
Dan Gohman4eebb942010-02-19 19:35:48 +00003617 if (const SCEV *Quotient = getExactSDiv(AR, FactorS, SE, true)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003618 // TODO: This could be optimized to avoid all the copying.
3619 Formula F = Base;
3620 F.ScaledReg = Quotient;
Dan Gohman80a96082010-05-20 15:17:54 +00003621 F.DeleteBaseReg(F.BaseRegs[i]);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003622 // The canonical representation of 1*reg is reg, which is already in
3623 // Base. In that case, do not try to insert the formula, it will be
3624 // rejected anyway.
3625 if (F.Scale == 1 && F.BaseRegs.empty())
3626 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003627 (void)InsertFormula(LU, LUIdx, F);
3628 }
3629 }
3630 }
3631}
3632
3633/// GenerateTruncates - Generate reuse formulae from different IV types.
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00003634void LSRInstance::GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003635 // Don't bother truncating symbolic values.
Chandler Carruth6e479322013-01-07 15:04:40 +00003636 if (Base.BaseGV) return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003637
3638 // Determine the integer type for the base formula.
Chris Lattner229907c2011-07-18 04:54:35 +00003639 Type *DstTy = Base.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003640 if (!DstTy) return;
3641 DstTy = SE.getEffectiveSCEVType(DstTy);
3642
Craig Topper042a3922015-05-25 20:01:18 +00003643 for (Type *SrcTy : Types) {
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003644 if (SrcTy != DstTy && TTI.isTruncateFree(SrcTy, DstTy)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003645 Formula F = Base;
3646
Craig Topper042a3922015-05-25 20:01:18 +00003647 if (F.ScaledReg) F.ScaledReg = SE.getAnyExtendExpr(F.ScaledReg, SrcTy);
3648 for (const SCEV *&BaseReg : F.BaseRegs)
3649 BaseReg = SE.getAnyExtendExpr(BaseReg, SrcTy);
Dan Gohman45774ce2010-02-12 10:34:29 +00003650
3651 // TODO: This assumes we've done basic processing on all uses and
3652 // have an idea what the register usage is.
3653 if (!F.hasRegsUsedByUsesOtherThan(LUIdx, RegUses))
3654 continue;
3655
3656 (void)InsertFormula(LU, LUIdx, F);
3657 }
3658 }
3659}
3660
3661namespace {
3662
Dan Gohmane7f74bb2010-02-14 18:51:20 +00003663/// WorkItem - Helper class for GenerateCrossUseConstantOffsets. It's used to
Dan Gohman45774ce2010-02-12 10:34:29 +00003664/// defer modifications so that the search phase doesn't have to worry about
3665/// the data structures moving underneath it.
3666struct WorkItem {
3667 size_t LUIdx;
3668 int64_t Imm;
3669 const SCEV *OrigReg;
3670
3671 WorkItem(size_t LI, int64_t I, const SCEV *R)
3672 : LUIdx(LI), Imm(I), OrigReg(R) {}
3673
3674 void print(raw_ostream &OS) const;
3675 void dump() const;
3676};
3677
Alexander Kornienkof00654e2015-06-23 09:49:53 +00003678}
Dan Gohman45774ce2010-02-12 10:34:29 +00003679
3680void WorkItem::print(raw_ostream &OS) const {
3681 OS << "in formulae referencing " << *OrigReg << " in use " << LUIdx
3682 << " , add offset " << Imm;
3683}
3684
Manman Ren49d684e2012-09-12 05:06:18 +00003685#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +00003686void WorkItem::dump() const {
3687 print(errs()); errs() << '\n';
3688}
Manman Renc3366cc2012-09-06 19:55:56 +00003689#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00003690
3691/// GenerateCrossUseConstantOffsets - Look for registers which are a constant
3692/// distance apart and try to form reuse opportunities between them.
3693void LSRInstance::GenerateCrossUseConstantOffsets() {
3694 // Group the registers by their value without any added constant offset.
3695 typedef std::map<int64_t, const SCEV *> ImmMapTy;
Craig Topper042a3922015-05-25 20:01:18 +00003696 DenseMap<const SCEV *, ImmMapTy> Map;
Dan Gohman45774ce2010-02-12 10:34:29 +00003697 DenseMap<const SCEV *, SmallBitVector> UsedByIndicesMap;
3698 SmallVector<const SCEV *, 8> Sequence;
Craig Topper042a3922015-05-25 20:01:18 +00003699 for (const SCEV *Use : RegUses) {
3700 const SCEV *Reg = Use; // Make a copy for ExtractImmediate to modify.
Dan Gohman45774ce2010-02-12 10:34:29 +00003701 int64_t Imm = ExtractImmediate(Reg, SE);
Craig Topper042a3922015-05-25 20:01:18 +00003702 auto Pair = Map.insert(std::make_pair(Reg, ImmMapTy()));
Dan Gohman45774ce2010-02-12 10:34:29 +00003703 if (Pair.second)
3704 Sequence.push_back(Reg);
Craig Topper042a3922015-05-25 20:01:18 +00003705 Pair.first->second.insert(std::make_pair(Imm, Use));
3706 UsedByIndicesMap[Reg] |= RegUses.getUsedByIndices(Use);
Dan Gohman45774ce2010-02-12 10:34:29 +00003707 }
3708
3709 // Now examine each set of registers with the same base value. Build up
3710 // a list of work to do and do the work in a separate step so that we're
3711 // not adding formulae and register counts while we're searching.
Dan Gohman110ed642010-09-01 01:45:53 +00003712 SmallVector<WorkItem, 32> WorkItems;
3713 SmallSet<std::pair<size_t, int64_t>, 32> UniqueItems;
Craig Topper042a3922015-05-25 20:01:18 +00003714 for (const SCEV *Reg : Sequence) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003715 const ImmMapTy &Imms = Map.find(Reg)->second;
3716
Dan Gohman363f8472010-02-12 19:20:37 +00003717 // It's not worthwhile looking for reuse if there's only one offset.
3718 if (Imms.size() == 1)
3719 continue;
3720
Dan Gohman45774ce2010-02-12 10:34:29 +00003721 DEBUG(dbgs() << "Generating cross-use offsets for " << *Reg << ':';
Craig Topper042a3922015-05-25 20:01:18 +00003722 for (const auto &Entry : Imms)
3723 dbgs() << ' ' << Entry.first;
Dan Gohman45774ce2010-02-12 10:34:29 +00003724 dbgs() << '\n');
3725
3726 // Examine each offset.
3727 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
3728 J != JE; ++J) {
3729 const SCEV *OrigReg = J->second;
3730
3731 int64_t JImm = J->first;
3732 const SmallBitVector &UsedByIndices = RegUses.getUsedByIndices(OrigReg);
3733
3734 if (!isa<SCEVConstant>(OrigReg) &&
3735 UsedByIndicesMap[Reg].count() == 1) {
3736 DEBUG(dbgs() << "Skipping cross-use reuse for " << *OrigReg << '\n');
3737 continue;
3738 }
3739
3740 // Conservatively examine offsets between this orig reg a few selected
3741 // other orig regs.
3742 ImmMapTy::const_iterator OtherImms[] = {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00003743 Imms.begin(), std::prev(Imms.end()),
3744 Imms.lower_bound((Imms.begin()->first + std::prev(Imms.end())->first) /
3745 2)
Dan Gohman45774ce2010-02-12 10:34:29 +00003746 };
3747 for (size_t i = 0, e = array_lengthof(OtherImms); i != e; ++i) {
3748 ImmMapTy::const_iterator M = OtherImms[i];
Dan Gohman363f8472010-02-12 19:20:37 +00003749 if (M == J || M == JE) continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003750
3751 // Compute the difference between the two.
3752 int64_t Imm = (uint64_t)JImm - M->first;
3753 for (int LUIdx = UsedByIndices.find_first(); LUIdx != -1;
Dan Gohman110ed642010-09-01 01:45:53 +00003754 LUIdx = UsedByIndices.find_next(LUIdx))
Dan Gohman45774ce2010-02-12 10:34:29 +00003755 // Make a memo of this use, offset, and register tuple.
David Blaikie70573dc2014-11-19 07:49:26 +00003756 if (UniqueItems.insert(std::make_pair(LUIdx, Imm)).second)
Dan Gohman110ed642010-09-01 01:45:53 +00003757 WorkItems.push_back(WorkItem(LUIdx, Imm, OrigReg));
Evan Cheng85a9f432009-11-12 07:35:05 +00003758 }
3759 }
3760 }
3761
Dan Gohman45774ce2010-02-12 10:34:29 +00003762 Map.clear();
3763 Sequence.clear();
3764 UsedByIndicesMap.clear();
Dan Gohman110ed642010-09-01 01:45:53 +00003765 UniqueItems.clear();
Dan Gohman45774ce2010-02-12 10:34:29 +00003766
3767 // Now iterate through the worklist and add new formulae.
Craig Topper042a3922015-05-25 20:01:18 +00003768 for (const WorkItem &WI : WorkItems) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003769 size_t LUIdx = WI.LUIdx;
3770 LSRUse &LU = Uses[LUIdx];
3771 int64_t Imm = WI.Imm;
3772 const SCEV *OrigReg = WI.OrigReg;
3773
Chris Lattner229907c2011-07-18 04:54:35 +00003774 Type *IntTy = SE.getEffectiveSCEVType(OrigReg->getType());
Dan Gohman45774ce2010-02-12 10:34:29 +00003775 const SCEV *NegImmS = SE.getSCEV(ConstantInt::get(IntTy, -(uint64_t)Imm));
3776 unsigned BitWidth = SE.getTypeSizeInBits(IntTy);
3777
Dan Gohman8b0a4192010-03-01 17:49:51 +00003778 // TODO: Use a more targeted data structure.
Dan Gohman45774ce2010-02-12 10:34:29 +00003779 for (size_t L = 0, LE = LU.Formulae.size(); L != LE; ++L) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003780 Formula F = LU.Formulae[L];
3781 // FIXME: The code for the scaled and unscaled registers looks
3782 // very similar but slightly different. Investigate if they
3783 // could be merged. That way, we would not have to unscale the
3784 // Formula.
3785 F.Unscale();
Dan Gohman45774ce2010-02-12 10:34:29 +00003786 // Use the immediate in the scaled register.
3787 if (F.ScaledReg == OrigReg) {
Chandler Carruth6e479322013-01-07 15:04:40 +00003788 int64_t Offset = (uint64_t)F.BaseOffset + Imm * (uint64_t)F.Scale;
Dan Gohman45774ce2010-02-12 10:34:29 +00003789 // Don't create 50 + reg(-50).
3790 if (F.referencesReg(SE.getSCEV(
Chandler Carruth6e479322013-01-07 15:04:40 +00003791 ConstantInt::get(IntTy, -(uint64_t)Offset))))
Dan Gohman45774ce2010-02-12 10:34:29 +00003792 continue;
3793 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00003794 NewF.BaseOffset = Offset;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003795 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
3796 NewF))
Dan Gohman45774ce2010-02-12 10:34:29 +00003797 continue;
3798 NewF.ScaledReg = SE.getAddExpr(NegImmS, NewF.ScaledReg);
3799
3800 // If the new scale is a constant in a register, and adding the constant
3801 // value to the immediate would produce a value closer to zero than the
3802 // immediate itself, then the formula isn't worthwhile.
3803 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewF.ScaledReg))
Chris Lattnerb1a15122011-07-15 06:08:15 +00003804 if (C->getValue()->isNegative() !=
Chandler Carruth6e479322013-01-07 15:04:40 +00003805 (NewF.BaseOffset < 0) &&
3806 (C->getValue()->getValue().abs() * APInt(BitWidth, F.Scale))
Benjamin Kramer7bd1f7c2015-03-09 20:20:16 +00003807 .ule(std::abs(NewF.BaseOffset)))
Dan Gohman45774ce2010-02-12 10:34:29 +00003808 continue;
3809
3810 // OK, looks good.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003811 NewF.Canonicalize();
Dan Gohman45774ce2010-02-12 10:34:29 +00003812 (void)InsertFormula(LU, LUIdx, NewF);
3813 } else {
3814 // Use the immediate in a base register.
3815 for (size_t N = 0, NE = F.BaseRegs.size(); N != NE; ++N) {
3816 const SCEV *BaseReg = F.BaseRegs[N];
3817 if (BaseReg != OrigReg)
3818 continue;
3819 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00003820 NewF.BaseOffset = (uint64_t)NewF.BaseOffset + Imm;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003821 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset,
3822 LU.Kind, LU.AccessTy, NewF)) {
3823 if (!TTI.isLegalAddImmediate((uint64_t)NewF.UnfoldedOffset + Imm))
Dan Gohman6136e942011-05-03 00:46:49 +00003824 continue;
3825 NewF = F;
3826 NewF.UnfoldedOffset = (uint64_t)NewF.UnfoldedOffset + Imm;
3827 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003828 NewF.BaseRegs[N] = SE.getAddExpr(NegImmS, BaseReg);
3829
3830 // If the new formula has a constant in a register, and adding the
3831 // constant value to the immediate would produce a value closer to
3832 // zero than the immediate itself, then the formula isn't worthwhile.
Craig Topper10949ae2015-05-23 08:45:10 +00003833 for (const SCEV *NewReg : NewF.BaseRegs)
3834 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewReg))
Chandler Carruth6e479322013-01-07 15:04:40 +00003835 if ((C->getValue()->getValue() + NewF.BaseOffset).abs().slt(
Benjamin Kramer7bd1f7c2015-03-09 20:20:16 +00003836 std::abs(NewF.BaseOffset)) &&
Dan Gohman50f8f2c2010-05-18 23:48:08 +00003837 (C->getValue()->getValue() +
Chandler Carruth6e479322013-01-07 15:04:40 +00003838 NewF.BaseOffset).countTrailingZeros() >=
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +00003839 countTrailingZeros<uint64_t>(NewF.BaseOffset))
Dan Gohman45774ce2010-02-12 10:34:29 +00003840 goto skip_formula;
3841
3842 // Ok, looks good.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003843 NewF.Canonicalize();
Dan Gohman45774ce2010-02-12 10:34:29 +00003844 (void)InsertFormula(LU, LUIdx, NewF);
3845 break;
3846 skip_formula:;
3847 }
3848 }
3849 }
3850 }
Dale Johannesen02cb2bf2009-05-11 17:15:42 +00003851}
3852
Dan Gohman45774ce2010-02-12 10:34:29 +00003853/// GenerateAllReuseFormulae - Generate formulae for each use.
3854void
3855LSRInstance::GenerateAllReuseFormulae() {
Dan Gohman521efe62010-02-16 01:42:53 +00003856 // This is split into multiple loops so that hasRegsUsedByUsesOtherThan
Dan Gohman45774ce2010-02-12 10:34:29 +00003857 // queries are more precise.
3858 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3859 LSRUse &LU = Uses[LUIdx];
3860 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3861 GenerateReassociations(LU, LUIdx, LU.Formulae[i]);
3862 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3863 GenerateCombinations(LU, LUIdx, LU.Formulae[i]);
3864 }
3865 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3866 LSRUse &LU = Uses[LUIdx];
3867 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3868 GenerateSymbolicOffsets(LU, LUIdx, LU.Formulae[i]);
3869 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3870 GenerateConstantOffsets(LU, LUIdx, LU.Formulae[i]);
3871 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3872 GenerateICmpZeroScales(LU, LUIdx, LU.Formulae[i]);
3873 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3874 GenerateScales(LU, LUIdx, LU.Formulae[i]);
Dan Gohman521efe62010-02-16 01:42:53 +00003875 }
3876 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3877 LSRUse &LU = Uses[LUIdx];
Dan Gohman45774ce2010-02-12 10:34:29 +00003878 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3879 GenerateTruncates(LU, LUIdx, LU.Formulae[i]);
3880 }
3881
3882 GenerateCrossUseConstantOffsets();
Dan Gohmanbf673e02010-08-29 15:21:38 +00003883
3884 DEBUG(dbgs() << "\n"
3885 "After generating reuse formulae:\n";
3886 print_uses(dbgs()));
Dan Gohman45774ce2010-02-12 10:34:29 +00003887}
3888
Dan Gohman1b61fd92010-10-07 23:43:09 +00003889/// If there are multiple formulae with the same set of registers used
Dan Gohman45774ce2010-02-12 10:34:29 +00003890/// by other uses, pick the best one and delete the others.
3891void LSRInstance::FilterOutUndesirableDedicatedRegisters() {
Dan Gohman5947e162010-10-07 23:52:18 +00003892 DenseSet<const SCEV *> VisitedRegs;
3893 SmallPtrSet<const SCEV *, 16> Regs;
Andrew Trick5df90962011-12-06 03:13:31 +00003894 SmallPtrSet<const SCEV *, 16> LoserRegs;
Dan Gohman45774ce2010-02-12 10:34:29 +00003895#ifndef NDEBUG
Dan Gohman4c4043c2010-05-20 20:05:31 +00003896 bool ChangedFormulae = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00003897#endif
3898
3899 // Collect the best formula for each unique set of shared registers. This
3900 // is reset for each use.
Preston Gurd25c3b6a2013-02-01 20:41:27 +00003901 typedef DenseMap<SmallVector<const SCEV *, 4>, size_t, UniquifierDenseMapInfo>
Dan Gohman45774ce2010-02-12 10:34:29 +00003902 BestFormulaeTy;
3903 BestFormulaeTy BestFormulae;
3904
3905 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3906 LSRUse &LU = Uses[LUIdx];
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00003907 DEBUG(dbgs() << "Filtering for use "; LU.print(dbgs()); dbgs() << '\n');
Dan Gohman45774ce2010-02-12 10:34:29 +00003908
Dan Gohman4cf99b52010-05-18 23:42:37 +00003909 bool Any = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00003910 for (size_t FIdx = 0, NumForms = LU.Formulae.size();
3911 FIdx != NumForms; ++FIdx) {
3912 Formula &F = LU.Formulae[FIdx];
3913
Andrew Trick5df90962011-12-06 03:13:31 +00003914 // Some formulas are instant losers. For example, they may depend on
3915 // nonexistent AddRecs from other loops. These need to be filtered
3916 // immediately, otherwise heuristics could choose them over others leading
3917 // to an unsatisfactory solution. Passing LoserRegs into RateFormula here
3918 // avoids the need to recompute this information across formulae using the
3919 // same bad AddRec. Passing LoserRegs is also essential unless we remove
3920 // the corresponding bad register from the Regs set.
3921 Cost CostF;
3922 Regs.clear();
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00003923 CostF.RateFormula(TTI, F, Regs, VisitedRegs, L, LU.Offsets, SE, DT, LU,
Andrew Trick5df90962011-12-06 03:13:31 +00003924 &LoserRegs);
3925 if (CostF.isLoser()) {
3926 // During initial formula generation, undesirable formulae are generated
3927 // by uses within other loops that have some non-trivial address mode or
3928 // use the postinc form of the IV. LSR needs to provide these formulae
3929 // as the basis of rediscovering the desired formula that uses an AddRec
3930 // corresponding to the existing phi. Once all formulae have been
3931 // generated, these initial losers may be pruned.
3932 DEBUG(dbgs() << " Filtering loser "; F.print(dbgs());
3933 dbgs() << "\n");
Dan Gohman45774ce2010-02-12 10:34:29 +00003934 }
Andrew Trick5df90962011-12-06 03:13:31 +00003935 else {
Preston Gurd25c3b6a2013-02-01 20:41:27 +00003936 SmallVector<const SCEV *, 4> Key;
Craig Topper77b99412015-05-23 08:01:41 +00003937 for (const SCEV *Reg : F.BaseRegs) {
Andrew Trick5df90962011-12-06 03:13:31 +00003938 if (RegUses.isRegUsedByUsesOtherThan(Reg, LUIdx))
3939 Key.push_back(Reg);
3940 }
3941 if (F.ScaledReg &&
3942 RegUses.isRegUsedByUsesOtherThan(F.ScaledReg, LUIdx))
3943 Key.push_back(F.ScaledReg);
3944 // Unstable sort by host order ok, because this is only used for
3945 // uniquifying.
3946 std::sort(Key.begin(), Key.end());
Dan Gohman45774ce2010-02-12 10:34:29 +00003947
Andrew Trick5df90962011-12-06 03:13:31 +00003948 std::pair<BestFormulaeTy::const_iterator, bool> P =
3949 BestFormulae.insert(std::make_pair(Key, FIdx));
3950 if (P.second)
3951 continue;
3952
Dan Gohman45774ce2010-02-12 10:34:29 +00003953 Formula &Best = LU.Formulae[P.first->second];
Dan Gohman5947e162010-10-07 23:52:18 +00003954
Dan Gohman5947e162010-10-07 23:52:18 +00003955 Cost CostBest;
Dan Gohman5947e162010-10-07 23:52:18 +00003956 Regs.clear();
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00003957 CostBest.RateFormula(TTI, Best, Regs, VisitedRegs, L, LU.Offsets, SE,
3958 DT, LU);
Dan Gohman5947e162010-10-07 23:52:18 +00003959 if (CostF < CostBest)
Dan Gohman45774ce2010-02-12 10:34:29 +00003960 std::swap(F, Best);
Dan Gohman8aca7ef2010-05-18 22:37:37 +00003961 DEBUG(dbgs() << " Filtering out formula "; F.print(dbgs());
Dan Gohman45774ce2010-02-12 10:34:29 +00003962 dbgs() << "\n"
Dan Gohman8aca7ef2010-05-18 22:37:37 +00003963 " in favor of formula "; Best.print(dbgs());
Dan Gohman45774ce2010-02-12 10:34:29 +00003964 dbgs() << '\n');
Dan Gohman45774ce2010-02-12 10:34:29 +00003965 }
Andrew Trick5df90962011-12-06 03:13:31 +00003966#ifndef NDEBUG
3967 ChangedFormulae = true;
3968#endif
3969 LU.DeleteFormula(F);
3970 --FIdx;
3971 --NumForms;
3972 Any = true;
Dan Gohmand0800242010-05-07 23:36:59 +00003973 }
3974
Dan Gohmanbeebef42010-05-18 23:55:57 +00003975 // Now that we've filtered out some formulae, recompute the Regs set.
Dan Gohman4cf99b52010-05-18 23:42:37 +00003976 if (Any)
3977 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohmand0800242010-05-07 23:36:59 +00003978
3979 // Reset this to prepare for the next use.
Dan Gohman45774ce2010-02-12 10:34:29 +00003980 BestFormulae.clear();
3981 }
3982
Dan Gohman4c4043c2010-05-20 20:05:31 +00003983 DEBUG(if (ChangedFormulae) {
Dan Gohman5b18f032010-02-13 02:06:02 +00003984 dbgs() << "\n"
3985 "After filtering out undesirable candidates:\n";
Dan Gohman45774ce2010-02-12 10:34:29 +00003986 print_uses(dbgs());
3987 });
3988}
3989
Dan Gohmana4eca052010-05-18 22:51:59 +00003990// This is a rough guess that seems to work fairly well.
3991static const size_t ComplexityLimit = UINT16_MAX;
3992
3993/// EstimateSearchSpaceComplexity - Estimate the worst-case number of
3994/// solutions the solver might have to consider. It almost never considers
3995/// this many solutions because it prune the search space, but the pruning
3996/// isn't always sufficient.
3997size_t LSRInstance::EstimateSearchSpaceComplexity() const {
Dan Gohman49d638b2010-10-07 23:37:58 +00003998 size_t Power = 1;
Craig Topper10949ae2015-05-23 08:45:10 +00003999 for (const LSRUse &LU : Uses) {
4000 size_t FSize = LU.Formulae.size();
Dan Gohmana4eca052010-05-18 22:51:59 +00004001 if (FSize >= ComplexityLimit) {
4002 Power = ComplexityLimit;
4003 break;
4004 }
4005 Power *= FSize;
4006 if (Power >= ComplexityLimit)
4007 break;
4008 }
4009 return Power;
4010}
4011
Dan Gohmane9e08732010-08-29 16:09:42 +00004012/// NarrowSearchSpaceByDetectingSupersets - When one formula uses a superset
4013/// of the registers of another formula, it won't help reduce register
4014/// pressure (though it may not necessarily hurt register pressure); remove
4015/// it to simplify the system.
4016void LSRInstance::NarrowSearchSpaceByDetectingSupersets() {
Dan Gohman20fab452010-05-19 23:43:12 +00004017 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
4018 DEBUG(dbgs() << "The search space is too complex.\n");
4019
4020 DEBUG(dbgs() << "Narrowing the search space by eliminating formulae "
4021 "which use a superset of registers used by other "
4022 "formulae.\n");
4023
4024 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4025 LSRUse &LU = Uses[LUIdx];
4026 bool Any = false;
4027 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
4028 Formula &F = LU.Formulae[i];
Dan Gohman8ec018c2010-05-20 20:00:41 +00004029 // Look for a formula with a constant or GV in a register. If the use
4030 // also has a formula with that same value in an immediate field,
4031 // delete the one that uses a register.
Dan Gohman20fab452010-05-19 23:43:12 +00004032 for (SmallVectorImpl<const SCEV *>::const_iterator
4033 I = F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I) {
4034 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*I)) {
4035 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00004036 NewF.BaseOffset += C->getValue()->getSExtValue();
Dan Gohman20fab452010-05-19 23:43:12 +00004037 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
4038 (I - F.BaseRegs.begin()));
4039 if (LU.HasFormulaWithSameRegs(NewF)) {
4040 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
4041 LU.DeleteFormula(F);
4042 --i;
4043 --e;
4044 Any = true;
4045 break;
4046 }
4047 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(*I)) {
4048 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue()))
Chandler Carruth6e479322013-01-07 15:04:40 +00004049 if (!F.BaseGV) {
Dan Gohman20fab452010-05-19 23:43:12 +00004050 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00004051 NewF.BaseGV = GV;
Dan Gohman20fab452010-05-19 23:43:12 +00004052 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
4053 (I - F.BaseRegs.begin()));
4054 if (LU.HasFormulaWithSameRegs(NewF)) {
4055 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
4056 dbgs() << '\n');
4057 LU.DeleteFormula(F);
4058 --i;
4059 --e;
4060 Any = true;
4061 break;
4062 }
4063 }
4064 }
4065 }
4066 }
4067 if (Any)
4068 LU.RecomputeRegs(LUIdx, RegUses);
4069 }
4070
4071 DEBUG(dbgs() << "After pre-selection:\n";
4072 print_uses(dbgs()));
4073 }
Dan Gohmane9e08732010-08-29 16:09:42 +00004074}
Dan Gohman20fab452010-05-19 23:43:12 +00004075
Dan Gohmane9e08732010-08-29 16:09:42 +00004076/// NarrowSearchSpaceByCollapsingUnrolledCode - When there are many registers
4077/// for expressions like A, A+1, A+2, etc., allocate a single register for
4078/// them.
4079void LSRInstance::NarrowSearchSpaceByCollapsingUnrolledCode() {
Jakub Staszak11bd8352013-02-16 16:08:15 +00004080 if (EstimateSearchSpaceComplexity() < ComplexityLimit)
4081 return;
Dan Gohman20fab452010-05-19 23:43:12 +00004082
Jakub Staszak11bd8352013-02-16 16:08:15 +00004083 DEBUG(dbgs() << "The search space is too complex.\n"
4084 "Narrowing the search space by assuming that uses separated "
4085 "by a constant offset will use the same registers.\n");
Dan Gohman20fab452010-05-19 23:43:12 +00004086
Jakub Staszak11bd8352013-02-16 16:08:15 +00004087 // This is especially useful for unrolled loops.
Dan Gohman8ec018c2010-05-20 20:00:41 +00004088
Jakub Staszak11bd8352013-02-16 16:08:15 +00004089 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4090 LSRUse &LU = Uses[LUIdx];
Craig Topper77b99412015-05-23 08:01:41 +00004091 for (const Formula &F : LU.Formulae) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004092 if (F.BaseOffset == 0 || (F.Scale != 0 && F.Scale != 1))
Jakub Staszak11bd8352013-02-16 16:08:15 +00004093 continue;
Dan Gohman20fab452010-05-19 23:43:12 +00004094
Jakub Staszak11bd8352013-02-16 16:08:15 +00004095 LSRUse *LUThatHas = FindUseWithSimilarFormula(F, LU);
4096 if (!LUThatHas)
4097 continue;
Dan Gohman20fab452010-05-19 23:43:12 +00004098
Jakub Staszak11bd8352013-02-16 16:08:15 +00004099 if (!reconcileNewOffset(*LUThatHas, F.BaseOffset, /*HasBaseReg=*/ false,
4100 LU.Kind, LU.AccessTy))
4101 continue;
Dan Gohman110ed642010-09-01 01:45:53 +00004102
Jakub Staszak11bd8352013-02-16 16:08:15 +00004103 DEBUG(dbgs() << " Deleting use "; LU.print(dbgs()); dbgs() << '\n');
Dan Gohman2fd85d72010-10-08 19:33:26 +00004104
Jakub Staszak11bd8352013-02-16 16:08:15 +00004105 LUThatHas->AllFixupsOutsideLoop &= LU.AllFixupsOutsideLoop;
4106
4107 // Update the relocs to reference the new use.
Craig Topper77b99412015-05-23 08:01:41 +00004108 for (LSRFixup &Fixup : Fixups) {
Jakub Staszak11bd8352013-02-16 16:08:15 +00004109 if (Fixup.LUIdx == LUIdx) {
4110 Fixup.LUIdx = LUThatHas - &Uses.front();
4111 Fixup.Offset += F.BaseOffset;
4112 // Add the new offset to LUThatHas' offset list.
4113 if (LUThatHas->Offsets.back() != Fixup.Offset) {
4114 LUThatHas->Offsets.push_back(Fixup.Offset);
4115 if (Fixup.Offset > LUThatHas->MaxOffset)
4116 LUThatHas->MaxOffset = Fixup.Offset;
4117 if (Fixup.Offset < LUThatHas->MinOffset)
4118 LUThatHas->MinOffset = Fixup.Offset;
Dan Gohman20fab452010-05-19 23:43:12 +00004119 }
Jakub Staszak11bd8352013-02-16 16:08:15 +00004120 DEBUG(dbgs() << "New fixup has offset " << Fixup.Offset << '\n');
4121 }
4122 if (Fixup.LUIdx == NumUses-1)
4123 Fixup.LUIdx = LUIdx;
4124 }
4125
4126 // Delete formulae from the new use which are no longer legal.
4127 bool Any = false;
4128 for (size_t i = 0, e = LUThatHas->Formulae.size(); i != e; ++i) {
4129 Formula &F = LUThatHas->Formulae[i];
4130 if (!isLegalUse(TTI, LUThatHas->MinOffset, LUThatHas->MaxOffset,
4131 LUThatHas->Kind, LUThatHas->AccessTy, F)) {
4132 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
4133 dbgs() << '\n');
4134 LUThatHas->DeleteFormula(F);
4135 --i;
4136 --e;
4137 Any = true;
Dan Gohman20fab452010-05-19 23:43:12 +00004138 }
4139 }
Dan Gohman20fab452010-05-19 23:43:12 +00004140
Jakub Staszak11bd8352013-02-16 16:08:15 +00004141 if (Any)
4142 LUThatHas->RecomputeRegs(LUThatHas - &Uses.front(), RegUses);
4143
4144 // Delete the old use.
4145 DeleteUse(LU, LUIdx);
4146 --LUIdx;
4147 --NumUses;
4148 break;
4149 }
Dan Gohman20fab452010-05-19 23:43:12 +00004150 }
Jakub Staszak11bd8352013-02-16 16:08:15 +00004151
4152 DEBUG(dbgs() << "After pre-selection:\n"; print_uses(dbgs()));
Dan Gohmane9e08732010-08-29 16:09:42 +00004153}
Dan Gohman20fab452010-05-19 23:43:12 +00004154
Andrew Trick8b55b732011-03-14 16:50:06 +00004155/// NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters - Call
Dan Gohman002ff892010-08-29 16:39:22 +00004156/// FilterOutUndesirableDedicatedRegisters again, if necessary, now that
4157/// we've done more filtering, as it may be able to find more formulae to
4158/// eliminate.
4159void LSRInstance::NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters(){
4160 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
4161 DEBUG(dbgs() << "The search space is too complex.\n");
4162
4163 DEBUG(dbgs() << "Narrowing the search space by re-filtering out "
4164 "undesirable dedicated registers.\n");
4165
4166 FilterOutUndesirableDedicatedRegisters();
4167
4168 DEBUG(dbgs() << "After pre-selection:\n";
4169 print_uses(dbgs()));
4170 }
4171}
4172
Dan Gohmane9e08732010-08-29 16:09:42 +00004173/// NarrowSearchSpaceByPickingWinnerRegs - Pick a register which seems likely
4174/// to be profitable, and then in any use which has any reference to that
4175/// register, delete all formulae which do not reference that register.
4176void LSRInstance::NarrowSearchSpaceByPickingWinnerRegs() {
Dan Gohmana4ca28a2010-05-20 20:52:00 +00004177 // With all other options exhausted, loop until the system is simple
4178 // enough to handle.
Dan Gohman45774ce2010-02-12 10:34:29 +00004179 SmallPtrSet<const SCEV *, 4> Taken;
Dan Gohmana4eca052010-05-18 22:51:59 +00004180 while (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004181 // Ok, we have too many of formulae on our hands to conveniently handle.
4182 // Use a rough heuristic to thin out the list.
Dan Gohman63e90152010-05-18 22:41:32 +00004183 DEBUG(dbgs() << "The search space is too complex.\n");
Dan Gohman45774ce2010-02-12 10:34:29 +00004184
4185 // Pick the register which is used by the most LSRUses, which is likely
4186 // to be a good reuse register candidate.
Craig Topperf40110f2014-04-25 05:29:35 +00004187 const SCEV *Best = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +00004188 unsigned BestNum = 0;
Craig Topper77b99412015-05-23 08:01:41 +00004189 for (const SCEV *Reg : RegUses) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004190 if (Taken.count(Reg))
4191 continue;
4192 if (!Best)
4193 Best = Reg;
4194 else {
4195 unsigned Count = RegUses.getUsedByIndices(Reg).count();
4196 if (Count > BestNum) {
4197 Best = Reg;
4198 BestNum = Count;
4199 }
4200 }
4201 }
4202
4203 DEBUG(dbgs() << "Narrowing the search space by assuming " << *Best
Dan Gohman8b0a4192010-03-01 17:49:51 +00004204 << " will yield profitable reuse.\n");
Dan Gohman45774ce2010-02-12 10:34:29 +00004205 Taken.insert(Best);
4206
4207 // In any use with formulae which references this register, delete formulae
4208 // which don't reference it.
Dan Gohman4cf99b52010-05-18 23:42:37 +00004209 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4210 LSRUse &LU = Uses[LUIdx];
Dan Gohman45774ce2010-02-12 10:34:29 +00004211 if (!LU.Regs.count(Best)) continue;
4212
Dan Gohman4cf99b52010-05-18 23:42:37 +00004213 bool Any = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00004214 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
4215 Formula &F = LU.Formulae[i];
4216 if (!F.referencesReg(Best)) {
4217 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00004218 LU.DeleteFormula(F);
Dan Gohman45774ce2010-02-12 10:34:29 +00004219 --e;
4220 --i;
Dan Gohman4cf99b52010-05-18 23:42:37 +00004221 Any = true;
Dan Gohmand0800242010-05-07 23:36:59 +00004222 assert(e != 0 && "Use has no formulae left! Is Regs inconsistent?");
Dan Gohman45774ce2010-02-12 10:34:29 +00004223 continue;
4224 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004225 }
Dan Gohman4cf99b52010-05-18 23:42:37 +00004226
4227 if (Any)
4228 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman45774ce2010-02-12 10:34:29 +00004229 }
4230
4231 DEBUG(dbgs() << "After pre-selection:\n";
4232 print_uses(dbgs()));
4233 }
4234}
4235
Dan Gohmane9e08732010-08-29 16:09:42 +00004236/// NarrowSearchSpaceUsingHeuristics - If there are an extraordinary number of
4237/// formulae to choose from, use some rough heuristics to prune down the number
4238/// of formulae. This keeps the main solver from taking an extraordinary amount
4239/// of time in some worst-case scenarios.
4240void LSRInstance::NarrowSearchSpaceUsingHeuristics() {
4241 NarrowSearchSpaceByDetectingSupersets();
4242 NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman002ff892010-08-29 16:39:22 +00004243 NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Dan Gohmane9e08732010-08-29 16:09:42 +00004244 NarrowSearchSpaceByPickingWinnerRegs();
4245}
4246
Dan Gohman45774ce2010-02-12 10:34:29 +00004247/// SolveRecurse - This is the recursive solver.
4248void LSRInstance::SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
4249 Cost &SolutionCost,
4250 SmallVectorImpl<const Formula *> &Workspace,
4251 const Cost &CurCost,
4252 const SmallPtrSet<const SCEV *, 16> &CurRegs,
4253 DenseSet<const SCEV *> &VisitedRegs) const {
4254 // Some ideas:
4255 // - prune more:
4256 // - use more aggressive filtering
4257 // - sort the formula so that the most profitable solutions are found first
4258 // - sort the uses too
4259 // - search faster:
Dan Gohman8b0a4192010-03-01 17:49:51 +00004260 // - don't compute a cost, and then compare. compare while computing a cost
Dan Gohman45774ce2010-02-12 10:34:29 +00004261 // and bail early.
4262 // - track register sets with SmallBitVector
4263
4264 const LSRUse &LU = Uses[Workspace.size()];
4265
4266 // If this use references any register that's already a part of the
4267 // in-progress solution, consider it a requirement that a formula must
4268 // reference that register in order to be considered. This prunes out
4269 // unprofitable searching.
4270 SmallSetVector<const SCEV *, 4> ReqRegs;
Craig Topper46276792014-08-24 23:23:06 +00004271 for (const SCEV *S : CurRegs)
4272 if (LU.Regs.count(S))
4273 ReqRegs.insert(S);
Dan Gohman45774ce2010-02-12 10:34:29 +00004274
4275 SmallPtrSet<const SCEV *, 16> NewRegs;
4276 Cost NewCost;
Craig Topper77b99412015-05-23 08:01:41 +00004277 for (const Formula &F : LU.Formulae) {
Adam Nemetdeab6f92014-04-29 18:25:28 +00004278 // Ignore formulae which may not be ideal in terms of register reuse of
4279 // ReqRegs. The formula should use all required registers before
4280 // introducing new ones.
4281 int NumReqRegsToFind = std::min(F.getNumRegs(), ReqRegs.size());
Craig Topper77b99412015-05-23 08:01:41 +00004282 for (const SCEV *Reg : ReqRegs) {
Adam Nemetdeab6f92014-04-29 18:25:28 +00004283 if ((F.ScaledReg && F.ScaledReg == Reg) ||
4284 std::find(F.BaseRegs.begin(), F.BaseRegs.end(), Reg) !=
Andrew Tricke3502cb2012-03-22 22:42:51 +00004285 F.BaseRegs.end()) {
Adam Nemetdeab6f92014-04-29 18:25:28 +00004286 --NumReqRegsToFind;
4287 if (NumReqRegsToFind == 0)
4288 break;
Andrew Tricke3502cb2012-03-22 22:42:51 +00004289 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004290 }
Adam Nemetdeab6f92014-04-29 18:25:28 +00004291 if (NumReqRegsToFind != 0) {
Andrew Tricke3502cb2012-03-22 22:42:51 +00004292 // If none of the formulae satisfied the required registers, then we could
4293 // clear ReqRegs and try again. Currently, we simply give up in this case.
4294 continue;
4295 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004296
4297 // Evaluate the cost of the current formula. If it's already worse than
4298 // the current best, prune the search at that point.
4299 NewCost = CurCost;
4300 NewRegs = CurRegs;
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00004301 NewCost.RateFormula(TTI, F, NewRegs, VisitedRegs, L, LU.Offsets, SE, DT,
4302 LU);
Dan Gohman45774ce2010-02-12 10:34:29 +00004303 if (NewCost < SolutionCost) {
4304 Workspace.push_back(&F);
4305 if (Workspace.size() != Uses.size()) {
4306 SolveRecurse(Solution, SolutionCost, Workspace, NewCost,
4307 NewRegs, VisitedRegs);
4308 if (F.getNumRegs() == 1 && Workspace.size() == 1)
4309 VisitedRegs.insert(F.ScaledReg ? F.ScaledReg : F.BaseRegs[0]);
4310 } else {
4311 DEBUG(dbgs() << "New best at "; NewCost.print(dbgs());
Andrew Trick4dc3eff2012-01-09 18:58:16 +00004312 dbgs() << ".\n Regs:";
Craig Topper46276792014-08-24 23:23:06 +00004313 for (const SCEV *S : NewRegs)
4314 dbgs() << ' ' << *S;
Dan Gohman45774ce2010-02-12 10:34:29 +00004315 dbgs() << '\n');
4316
4317 SolutionCost = NewCost;
4318 Solution = Workspace;
4319 }
4320 Workspace.pop_back();
4321 }
Dan Gohman5b18f032010-02-13 02:06:02 +00004322 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004323}
4324
Dan Gohmana4ca28a2010-05-20 20:52:00 +00004325/// Solve - Choose one formula from each use. Return the results in the given
4326/// Solution vector.
Dan Gohman45774ce2010-02-12 10:34:29 +00004327void LSRInstance::Solve(SmallVectorImpl<const Formula *> &Solution) const {
4328 SmallVector<const Formula *, 8> Workspace;
4329 Cost SolutionCost;
Tim Northoverbc6659c2014-01-22 13:27:00 +00004330 SolutionCost.Lose();
Dan Gohman45774ce2010-02-12 10:34:29 +00004331 Cost CurCost;
4332 SmallPtrSet<const SCEV *, 16> CurRegs;
4333 DenseSet<const SCEV *> VisitedRegs;
4334 Workspace.reserve(Uses.size());
4335
Dan Gohman8ec018c2010-05-20 20:00:41 +00004336 // SolveRecurse does all the work.
Dan Gohman45774ce2010-02-12 10:34:29 +00004337 SolveRecurse(Solution, SolutionCost, Workspace, CurCost,
4338 CurRegs, VisitedRegs);
Andrew Trick58124392011-09-27 00:44:14 +00004339 if (Solution.empty()) {
4340 DEBUG(dbgs() << "\nNo Satisfactory Solution\n");
4341 return;
4342 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004343
4344 // Ok, we've now made all our decisions.
4345 DEBUG(dbgs() << "\n"
4346 "The chosen solution requires "; SolutionCost.print(dbgs());
4347 dbgs() << ":\n";
4348 for (size_t i = 0, e = Uses.size(); i != e; ++i) {
4349 dbgs() << " ";
4350 Uses[i].print(dbgs());
4351 dbgs() << "\n"
4352 " ";
4353 Solution[i]->print(dbgs());
4354 dbgs() << '\n';
4355 });
Dan Gohman6295f2e2010-05-20 20:59:23 +00004356
4357 assert(Solution.size() == Uses.size() && "Malformed solution!");
Dan Gohman45774ce2010-02-12 10:34:29 +00004358}
4359
Dan Gohman607e02b2010-04-09 22:07:05 +00004360/// HoistInsertPosition - Helper for AdjustInsertPositionForExpand. Climb up
4361/// the dominator tree far as we can go while still being dominated by the
4362/// input positions. This helps canonicalize the insert position, which
4363/// encourages sharing.
4364BasicBlock::iterator
4365LSRInstance::HoistInsertPosition(BasicBlock::iterator IP,
4366 const SmallVectorImpl<Instruction *> &Inputs)
4367 const {
4368 for (;;) {
4369 const Loop *IPLoop = LI.getLoopFor(IP->getParent());
4370 unsigned IPLoopDepth = IPLoop ? IPLoop->getLoopDepth() : 0;
4371
4372 BasicBlock *IDom;
Dan Gohman8ce95cc2010-05-20 20:00:25 +00004373 for (DomTreeNode *Rung = DT.getNode(IP->getParent()); ; ) {
Dan Gohman9b48b852010-05-20 22:46:54 +00004374 if (!Rung) return IP;
Dan Gohman8ce95cc2010-05-20 20:00:25 +00004375 Rung = Rung->getIDom();
4376 if (!Rung) return IP;
4377 IDom = Rung->getBlock();
Dan Gohman607e02b2010-04-09 22:07:05 +00004378
4379 // Don't climb into a loop though.
4380 const Loop *IDomLoop = LI.getLoopFor(IDom);
4381 unsigned IDomDepth = IDomLoop ? IDomLoop->getLoopDepth() : 0;
4382 if (IDomDepth <= IPLoopDepth &&
4383 (IDomDepth != IPLoopDepth || IDomLoop == IPLoop))
4384 break;
4385 }
4386
4387 bool AllDominate = true;
Craig Topperf40110f2014-04-25 05:29:35 +00004388 Instruction *BetterPos = nullptr;
Dan Gohman607e02b2010-04-09 22:07:05 +00004389 Instruction *Tentative = IDom->getTerminator();
Craig Topper77b99412015-05-23 08:01:41 +00004390 for (Instruction *Inst : Inputs) {
Dan Gohman607e02b2010-04-09 22:07:05 +00004391 if (Inst == Tentative || !DT.dominates(Inst, Tentative)) {
4392 AllDominate = false;
4393 break;
4394 }
4395 // Attempt to find an insert position in the middle of the block,
4396 // instead of at the end, so that it can be used for other expansions.
4397 if (IDom == Inst->getParent() &&
Rafael Espindoladd489312012-04-30 03:53:06 +00004398 (!BetterPos || !DT.dominates(Inst, BetterPos)))
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00004399 BetterPos = std::next(BasicBlock::iterator(Inst));
Dan Gohman607e02b2010-04-09 22:07:05 +00004400 }
4401 if (!AllDominate)
4402 break;
4403 if (BetterPos)
4404 IP = BetterPos;
4405 else
4406 IP = Tentative;
4407 }
4408
4409 return IP;
4410}
4411
4412/// AdjustInsertPositionForExpand - Determine an input position which will be
Dan Gohmand2df6432010-04-09 02:00:38 +00004413/// dominated by the operands and which will dominate the result.
4414BasicBlock::iterator
Andrew Trickc908b432012-01-20 07:41:13 +00004415LSRInstance::AdjustInsertPositionForExpand(BasicBlock::iterator LowestIP,
Dan Gohman607e02b2010-04-09 22:07:05 +00004416 const LSRFixup &LF,
Andrew Trickc908b432012-01-20 07:41:13 +00004417 const LSRUse &LU,
4418 SCEVExpander &Rewriter) const {
Dan Gohmand2df6432010-04-09 02:00:38 +00004419 // Collect some instructions which must be dominated by the
Dan Gohmand006ab92010-04-07 22:27:08 +00004420 // expanding replacement. These must be dominated by any operands that
Dan Gohman45774ce2010-02-12 10:34:29 +00004421 // will be required in the expansion.
4422 SmallVector<Instruction *, 4> Inputs;
4423 if (Instruction *I = dyn_cast<Instruction>(LF.OperandValToReplace))
4424 Inputs.push_back(I);
4425 if (LU.Kind == LSRUse::ICmpZero)
4426 if (Instruction *I =
4427 dyn_cast<Instruction>(cast<ICmpInst>(LF.UserInst)->getOperand(1)))
4428 Inputs.push_back(I);
Dan Gohmand006ab92010-04-07 22:27:08 +00004429 if (LF.PostIncLoops.count(L)) {
4430 if (LF.isUseFullyOutsideLoop(L))
Dan Gohman52f55632010-03-02 01:59:21 +00004431 Inputs.push_back(L->getLoopLatch()->getTerminator());
4432 else
4433 Inputs.push_back(IVIncInsertPos);
4434 }
Dan Gohman45065392010-04-08 05:57:57 +00004435 // The expansion must also be dominated by the increment positions of any
4436 // loops it for which it is using post-inc mode.
Craig Topper77b99412015-05-23 08:01:41 +00004437 for (const Loop *PIL : LF.PostIncLoops) {
Dan Gohman45065392010-04-08 05:57:57 +00004438 if (PIL == L) continue;
4439
Dan Gohman607e02b2010-04-09 22:07:05 +00004440 // Be dominated by the loop exit.
Dan Gohman45065392010-04-08 05:57:57 +00004441 SmallVector<BasicBlock *, 4> ExitingBlocks;
4442 PIL->getExitingBlocks(ExitingBlocks);
4443 if (!ExitingBlocks.empty()) {
4444 BasicBlock *BB = ExitingBlocks[0];
4445 for (unsigned i = 1, e = ExitingBlocks.size(); i != e; ++i)
4446 BB = DT.findNearestCommonDominator(BB, ExitingBlocks[i]);
4447 Inputs.push_back(BB->getTerminator());
4448 }
4449 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004450
Andrew Trickc908b432012-01-20 07:41:13 +00004451 assert(!isa<PHINode>(LowestIP) && !isa<LandingPadInst>(LowestIP)
4452 && !isa<DbgInfoIntrinsic>(LowestIP) &&
4453 "Insertion point must be a normal instruction");
4454
Dan Gohman45774ce2010-02-12 10:34:29 +00004455 // Then, climb up the immediate dominator tree as far as we can go while
4456 // still being dominated by the input positions.
Andrew Trickc908b432012-01-20 07:41:13 +00004457 BasicBlock::iterator IP = HoistInsertPosition(LowestIP, Inputs);
Dan Gohmand2df6432010-04-09 02:00:38 +00004458
4459 // Don't insert instructions before PHI nodes.
Dan Gohman45774ce2010-02-12 10:34:29 +00004460 while (isa<PHINode>(IP)) ++IP;
Dan Gohmand2df6432010-04-09 02:00:38 +00004461
Bill Wendling86c5cbe2011-08-24 21:06:46 +00004462 // Ignore landingpad instructions.
4463 while (isa<LandingPadInst>(IP)) ++IP;
4464
Dan Gohmand2df6432010-04-09 02:00:38 +00004465 // Ignore debug intrinsics.
Dan Gohmand42e09d2010-03-26 00:33:27 +00004466 while (isa<DbgInfoIntrinsic>(IP)) ++IP;
Dan Gohman45774ce2010-02-12 10:34:29 +00004467
Andrew Trickc908b432012-01-20 07:41:13 +00004468 // Set IP below instructions recently inserted by SCEVExpander. This keeps the
4469 // IP consistent across expansions and allows the previously inserted
4470 // instructions to be reused by subsequent expansion.
4471 while (Rewriter.isInsertedInstruction(IP) && IP != LowestIP) ++IP;
4472
Dan Gohmand2df6432010-04-09 02:00:38 +00004473 return IP;
4474}
4475
Dan Gohmana4ca28a2010-05-20 20:52:00 +00004476/// Expand - Emit instructions for the leading candidate expression for this
4477/// LSRUse (this is called "expanding").
Dan Gohmand2df6432010-04-09 02:00:38 +00004478Value *LSRInstance::Expand(const LSRFixup &LF,
4479 const Formula &F,
4480 BasicBlock::iterator IP,
4481 SCEVExpander &Rewriter,
4482 SmallVectorImpl<WeakVH> &DeadInsts) const {
4483 const LSRUse &LU = Uses[LF.LUIdx];
Andrew Trick57243da2013-10-25 21:35:56 +00004484 if (LU.RigidFormula)
4485 return LF.OperandValToReplace;
Dan Gohmand2df6432010-04-09 02:00:38 +00004486
4487 // Determine an input position which will be dominated by the operands and
4488 // which will dominate the result.
Andrew Trickc908b432012-01-20 07:41:13 +00004489 IP = AdjustInsertPositionForExpand(IP, LF, LU, Rewriter);
Dan Gohmand2df6432010-04-09 02:00:38 +00004490
Dan Gohman45774ce2010-02-12 10:34:29 +00004491 // Inform the Rewriter if we have a post-increment use, so that it can
4492 // perform an advantageous expansion.
Dan Gohmand006ab92010-04-07 22:27:08 +00004493 Rewriter.setPostInc(LF.PostIncLoops);
Dan Gohman45774ce2010-02-12 10:34:29 +00004494
4495 // This is the type that the user actually needs.
Chris Lattner229907c2011-07-18 04:54:35 +00004496 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00004497 // This will be the type that we'll initially expand to.
Chris Lattner229907c2011-07-18 04:54:35 +00004498 Type *Ty = F.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00004499 if (!Ty)
4500 // No type known; just expand directly to the ultimate type.
4501 Ty = OpTy;
4502 else if (SE.getEffectiveSCEVType(Ty) == SE.getEffectiveSCEVType(OpTy))
4503 // Expand directly to the ultimate type if it's the right size.
4504 Ty = OpTy;
4505 // This is the type to do integer arithmetic in.
Chris Lattner229907c2011-07-18 04:54:35 +00004506 Type *IntTy = SE.getEffectiveSCEVType(Ty);
Dan Gohman45774ce2010-02-12 10:34:29 +00004507
4508 // Build up a list of operands to add together to form the full base.
4509 SmallVector<const SCEV *, 8> Ops;
4510
4511 // Expand the BaseRegs portion.
Craig Topper77b99412015-05-23 08:01:41 +00004512 for (const SCEV *Reg : F.BaseRegs) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004513 assert(!Reg->isZero() && "Zero allocated in a base register!");
4514
Dan Gohmand006ab92010-04-07 22:27:08 +00004515 // If we're expanding for a post-inc user, make the post-inc adjustment.
4516 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
Sanjoy Das215df9e2015-08-04 01:52:05 +00004517 Reg = TransformForPostIncUse(Denormalize, Reg,
4518 LF.UserInst, LF.OperandValToReplace,
4519 Loops, SE, DT);
Dan Gohman45774ce2010-02-12 10:34:29 +00004520
Sanjoy Das215df9e2015-08-04 01:52:05 +00004521 Ops.push_back(SE.getUnknown(Rewriter.expandCodeFor(Reg, nullptr, IP)));
Dan Gohman45774ce2010-02-12 10:34:29 +00004522 }
4523
4524 // Expand the ScaledReg portion.
Craig Topperf40110f2014-04-25 05:29:35 +00004525 Value *ICmpScaledV = nullptr;
Chandler Carruth6e479322013-01-07 15:04:40 +00004526 if (F.Scale != 0) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004527 const SCEV *ScaledS = F.ScaledReg;
4528
Dan Gohmand006ab92010-04-07 22:27:08 +00004529 // If we're expanding for a post-inc user, make the post-inc adjustment.
4530 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
Sanjoy Das215df9e2015-08-04 01:52:05 +00004531 ScaledS = TransformForPostIncUse(Denormalize, ScaledS,
4532 LF.UserInst, LF.OperandValToReplace,
4533 Loops, SE, DT);
Dan Gohman45774ce2010-02-12 10:34:29 +00004534
4535 if (LU.Kind == LSRUse::ICmpZero) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004536 // Expand ScaleReg as if it was part of the base regs.
4537 if (F.Scale == 1)
Sanjoy Das215df9e2015-08-04 01:52:05 +00004538 Ops.push_back(
4539 SE.getUnknown(Rewriter.expandCodeFor(ScaledS, nullptr, IP)));
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004540 else {
4541 // An interesting way of "folding" with an icmp is to use a negated
4542 // scale, which we'll implement by inserting it into the other operand
4543 // of the icmp.
4544 assert(F.Scale == -1 &&
4545 "The only scale supported by ICmpZero uses is -1!");
Sanjoy Das215df9e2015-08-04 01:52:05 +00004546 ICmpScaledV = Rewriter.expandCodeFor(ScaledS, nullptr, IP);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004547 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004548 } else {
4549 // Otherwise just expand the scaled register and an explicit scale,
4550 // which is expected to be matched as part of the address.
Andrew Trick8370c7c2012-06-15 20:07:29 +00004551
4552 // Flush the operand list to suppress SCEVExpander hoisting address modes.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004553 // Unless the addressing mode will not be folded.
4554 if (!Ops.empty() && LU.Kind == LSRUse::Address &&
4555 isAMCompletelyFolded(TTI, LU, F)) {
Andrew Trick8370c7c2012-06-15 20:07:29 +00004556 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
4557 Ops.clear();
4558 Ops.push_back(SE.getUnknown(FullV));
4559 }
Sanjoy Das215df9e2015-08-04 01:52:05 +00004560 ScaledS = SE.getUnknown(Rewriter.expandCodeFor(ScaledS, nullptr, IP));
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004561 if (F.Scale != 1)
4562 ScaledS =
4563 SE.getMulExpr(ScaledS, SE.getConstant(ScaledS->getType(), F.Scale));
Dan Gohman45774ce2010-02-12 10:34:29 +00004564 Ops.push_back(ScaledS);
4565 }
4566 }
4567
Dan Gohman29707de2010-03-03 05:29:13 +00004568 // Expand the GV portion.
Chandler Carruth6e479322013-01-07 15:04:40 +00004569 if (F.BaseGV) {
Dan Gohman29707de2010-03-03 05:29:13 +00004570 // Flush the operand list to suppress SCEVExpander hoisting.
Andrew Trick8370c7c2012-06-15 20:07:29 +00004571 if (!Ops.empty()) {
4572 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
4573 Ops.clear();
4574 Ops.push_back(SE.getUnknown(FullV));
4575 }
Chandler Carruth6e479322013-01-07 15:04:40 +00004576 Ops.push_back(SE.getUnknown(F.BaseGV));
Andrew Trick8370c7c2012-06-15 20:07:29 +00004577 }
4578
4579 // Flush the operand list to suppress SCEVExpander hoisting of both folded and
4580 // unfolded offsets. LSR assumes they both live next to their uses.
4581 if (!Ops.empty()) {
Dan Gohman29707de2010-03-03 05:29:13 +00004582 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
4583 Ops.clear();
4584 Ops.push_back(SE.getUnknown(FullV));
4585 }
4586
4587 // Expand the immediate portion.
Chandler Carruth6e479322013-01-07 15:04:40 +00004588 int64_t Offset = (uint64_t)F.BaseOffset + LF.Offset;
Dan Gohman45774ce2010-02-12 10:34:29 +00004589 if (Offset != 0) {
4590 if (LU.Kind == LSRUse::ICmpZero) {
4591 // The other interesting way of "folding" with an ICmpZero is to use a
4592 // negated immediate.
4593 if (!ICmpScaledV)
Eli Friedmanb46345d2011-10-13 23:48:33 +00004594 ICmpScaledV = ConstantInt::get(IntTy, -(uint64_t)Offset);
Dan Gohman45774ce2010-02-12 10:34:29 +00004595 else {
4596 Ops.push_back(SE.getUnknown(ICmpScaledV));
4597 ICmpScaledV = ConstantInt::get(IntTy, Offset);
4598 }
4599 } else {
4600 // Just add the immediate values. These again are expected to be matched
4601 // as part of the address.
Dan Gohman29707de2010-03-03 05:29:13 +00004602 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy, Offset)));
Dan Gohman45774ce2010-02-12 10:34:29 +00004603 }
4604 }
4605
Dan Gohman6136e942011-05-03 00:46:49 +00004606 // Expand the unfolded offset portion.
4607 int64_t UnfoldedOffset = F.UnfoldedOffset;
4608 if (UnfoldedOffset != 0) {
4609 // Just add the immediate values.
4610 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy,
4611 UnfoldedOffset)));
4612 }
4613
Dan Gohman45774ce2010-02-12 10:34:29 +00004614 // Emit instructions summing all the operands.
4615 const SCEV *FullS = Ops.empty() ?
Dan Gohman1d2ded72010-05-03 22:09:21 +00004616 SE.getConstant(IntTy, 0) :
Dan Gohman45774ce2010-02-12 10:34:29 +00004617 SE.getAddExpr(Ops);
4618 Value *FullV = Rewriter.expandCodeFor(FullS, Ty, IP);
4619
4620 // We're done expanding now, so reset the rewriter.
Dan Gohmand006ab92010-04-07 22:27:08 +00004621 Rewriter.clearPostInc();
Dan Gohman45774ce2010-02-12 10:34:29 +00004622
4623 // An ICmpZero Formula represents an ICmp which we're handling as a
4624 // comparison against zero. Now that we've expanded an expression for that
4625 // form, update the ICmp's other operand.
4626 if (LU.Kind == LSRUse::ICmpZero) {
4627 ICmpInst *CI = cast<ICmpInst>(LF.UserInst);
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00004628 DeadInsts.emplace_back(CI->getOperand(1));
Chandler Carruth6e479322013-01-07 15:04:40 +00004629 assert(!F.BaseGV && "ICmp does not support folding a global value and "
Dan Gohman45774ce2010-02-12 10:34:29 +00004630 "a scale at the same time!");
Chandler Carruth6e479322013-01-07 15:04:40 +00004631 if (F.Scale == -1) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004632 if (ICmpScaledV->getType() != OpTy) {
4633 Instruction *Cast =
4634 CastInst::Create(CastInst::getCastOpcode(ICmpScaledV, false,
4635 OpTy, false),
4636 ICmpScaledV, OpTy, "tmp", CI);
4637 ICmpScaledV = Cast;
4638 }
4639 CI->setOperand(1, ICmpScaledV);
4640 } else {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004641 // A scale of 1 means that the scale has been expanded as part of the
4642 // base regs.
4643 assert((F.Scale == 0 || F.Scale == 1) &&
Dan Gohman45774ce2010-02-12 10:34:29 +00004644 "ICmp does not support folding a global value and "
4645 "a scale at the same time!");
4646 Constant *C = ConstantInt::getSigned(SE.getEffectiveSCEVType(OpTy),
4647 -(uint64_t)Offset);
4648 if (C->getType() != OpTy)
4649 C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
4650 OpTy, false),
4651 C, OpTy);
4652
4653 CI->setOperand(1, C);
4654 }
4655 }
4656
4657 return FullV;
4658}
4659
Dan Gohman6deab962010-02-16 20:25:07 +00004660/// RewriteForPHI - Helper for Rewrite. PHI nodes are special because the use
4661/// of their operands effectively happens in their predecessor blocks, so the
4662/// expression may need to be expanded in multiple places.
4663void LSRInstance::RewriteForPHI(PHINode *PN,
4664 const LSRFixup &LF,
4665 const Formula &F,
Dan Gohman6deab962010-02-16 20:25:07 +00004666 SCEVExpander &Rewriter,
4667 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman6deab962010-02-16 20:25:07 +00004668 Pass *P) const {
4669 DenseMap<BasicBlock *, Value *> Inserted;
4670 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
4671 if (PN->getIncomingValue(i) == LF.OperandValToReplace) {
4672 BasicBlock *BB = PN->getIncomingBlock(i);
4673
4674 // If this is a critical edge, split the edge so that we do not insert
4675 // the code on all predecessor/successor paths. We do this unless this
4676 // is the canonical backedge for this loop, which complicates post-inc
4677 // users.
4678 if (e != 1 && BB->getTerminator()->getNumSuccessors() > 1 &&
Dan Gohmande7f6992011-02-08 00:55:13 +00004679 !isa<IndirectBrInst>(BB->getTerminator())) {
Bill Wendling07efd6f2011-08-25 01:08:34 +00004680 BasicBlock *Parent = PN->getParent();
4681 Loop *PNLoop = LI.getLoopFor(Parent);
4682 if (!PNLoop || Parent != PNLoop->getHeader()) {
Dan Gohmande7f6992011-02-08 00:55:13 +00004683 // Split the critical edge.
Craig Topperf40110f2014-04-25 05:29:35 +00004684 BasicBlock *NewBB = nullptr;
Bill Wendling3fb137f2011-08-25 05:55:40 +00004685 if (!Parent->isLandingPad()) {
Chandler Carruth37df2cf2015-01-19 12:09:11 +00004686 NewBB = SplitCriticalEdge(BB, Parent,
4687 CriticalEdgeSplittingOptions(&DT, &LI)
4688 .setMergeIdenticalEdges()
4689 .setDontDeleteUselessPHIs());
Bill Wendling3fb137f2011-08-25 05:55:40 +00004690 } else {
4691 SmallVector<BasicBlock*, 2> NewBBs;
Chandler Carruth96ada252015-07-22 09:52:54 +00004692 SplitLandingPadPredecessors(Parent, BB, "", "", NewBBs, &DT, &LI);
Bill Wendling3fb137f2011-08-25 05:55:40 +00004693 NewBB = NewBBs[0];
4694 }
Andrew Trick402edbb2012-09-18 17:51:33 +00004695 // If NewBB==NULL, then SplitCriticalEdge refused to split because all
4696 // phi predecessors are identical. The simple thing to do is skip
4697 // splitting in this case rather than complicate the API.
4698 if (NewBB) {
4699 // If PN is outside of the loop and BB is in the loop, we want to
4700 // move the block to be immediately before the PHI block, not
4701 // immediately after BB.
4702 if (L->contains(BB) && !L->contains(PN))
4703 NewBB->moveBefore(PN->getParent());
Dan Gohman6deab962010-02-16 20:25:07 +00004704
Andrew Trick402edbb2012-09-18 17:51:33 +00004705 // Splitting the edge can reduce the number of PHI entries we have.
4706 e = PN->getNumIncomingValues();
4707 BB = NewBB;
4708 i = PN->getBasicBlockIndex(BB);
4709 }
Dan Gohmande7f6992011-02-08 00:55:13 +00004710 }
Dan Gohman6deab962010-02-16 20:25:07 +00004711 }
4712
4713 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> Pair =
Craig Topperf40110f2014-04-25 05:29:35 +00004714 Inserted.insert(std::make_pair(BB, static_cast<Value *>(nullptr)));
Dan Gohman6deab962010-02-16 20:25:07 +00004715 if (!Pair.second)
4716 PN->setIncomingValue(i, Pair.first->second);
4717 else {
Dan Gohman8c16b382010-02-22 04:11:59 +00004718 Value *FullV = Expand(LF, F, BB->getTerminator(), Rewriter, DeadInsts);
Dan Gohman6deab962010-02-16 20:25:07 +00004719
4720 // If this is reuse-by-noop-cast, insert the noop cast.
Chris Lattner229907c2011-07-18 04:54:35 +00004721 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman6deab962010-02-16 20:25:07 +00004722 if (FullV->getType() != OpTy)
4723 FullV =
4724 CastInst::Create(CastInst::getCastOpcode(FullV, false,
4725 OpTy, false),
4726 FullV, LF.OperandValToReplace->getType(),
4727 "tmp", BB->getTerminator());
4728
4729 PN->setIncomingValue(i, FullV);
4730 Pair.first->second = FullV;
4731 }
4732 }
4733}
4734
Dan Gohman45774ce2010-02-12 10:34:29 +00004735/// Rewrite - Emit instructions for the leading candidate expression for this
4736/// LSRUse (this is called "expanding"), and update the UserInst to reference
4737/// the newly expanded value.
4738void LSRInstance::Rewrite(const LSRFixup &LF,
4739 const Formula &F,
Dan Gohman45774ce2010-02-12 10:34:29 +00004740 SCEVExpander &Rewriter,
4741 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman45774ce2010-02-12 10:34:29 +00004742 Pass *P) const {
Dan Gohman45774ce2010-02-12 10:34:29 +00004743 // First, find an insertion point that dominates UserInst. For PHI nodes,
4744 // find the nearest block which dominates all the relevant uses.
4745 if (PHINode *PN = dyn_cast<PHINode>(LF.UserInst)) {
Dan Gohman8c16b382010-02-22 04:11:59 +00004746 RewriteForPHI(PN, LF, F, Rewriter, DeadInsts, P);
Dan Gohman45774ce2010-02-12 10:34:29 +00004747 } else {
Dan Gohman8c16b382010-02-22 04:11:59 +00004748 Value *FullV = Expand(LF, F, LF.UserInst, Rewriter, DeadInsts);
Dan Gohman45774ce2010-02-12 10:34:29 +00004749
4750 // If this is reuse-by-noop-cast, insert the noop cast.
Chris Lattner229907c2011-07-18 04:54:35 +00004751 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00004752 if (FullV->getType() != OpTy) {
4753 Instruction *Cast =
4754 CastInst::Create(CastInst::getCastOpcode(FullV, false, OpTy, false),
4755 FullV, OpTy, "tmp", LF.UserInst);
4756 FullV = Cast;
4757 }
4758
4759 // Update the user. ICmpZero is handled specially here (for now) because
4760 // Expand may have updated one of the operands of the icmp already, and
4761 // its new value may happen to be equal to LF.OperandValToReplace, in
4762 // which case doing replaceUsesOfWith leads to replacing both operands
4763 // with the same value. TODO: Reorganize this.
4764 if (Uses[LF.LUIdx].Kind == LSRUse::ICmpZero)
4765 LF.UserInst->setOperand(0, FullV);
4766 else
4767 LF.UserInst->replaceUsesOfWith(LF.OperandValToReplace, FullV);
4768 }
4769
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00004770 DeadInsts.emplace_back(LF.OperandValToReplace);
Dan Gohman45774ce2010-02-12 10:34:29 +00004771}
4772
Dan Gohmana4ca28a2010-05-20 20:52:00 +00004773/// ImplementSolution - Rewrite all the fixup locations with new values,
4774/// following the chosen solution.
Dan Gohman45774ce2010-02-12 10:34:29 +00004775void
4776LSRInstance::ImplementSolution(const SmallVectorImpl<const Formula *> &Solution,
4777 Pass *P) {
4778 // Keep track of instructions we may have made dead, so that
4779 // we can remove them after we are done working.
4780 SmallVector<WeakVH, 16> DeadInsts;
4781
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004782 SCEVExpander Rewriter(SE, L->getHeader()->getModule()->getDataLayout(),
4783 "lsr");
Andrew Trick4dc3eff2012-01-09 18:58:16 +00004784#ifndef NDEBUG
4785 Rewriter.setDebugType(DEBUG_TYPE);
4786#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00004787 Rewriter.disableCanonicalMode();
Andrew Trick7fb669a2011-10-07 23:46:21 +00004788 Rewriter.enableLSRMode();
Dan Gohman45774ce2010-02-12 10:34:29 +00004789 Rewriter.setIVIncInsertPos(L, IVIncInsertPos);
4790
Andrew Trickd5d2db92012-01-10 01:45:08 +00004791 // Mark phi nodes that terminate chains so the expander tries to reuse them.
Craig Topper77b99412015-05-23 08:01:41 +00004792 for (const IVChain &Chain : IVChainVec) {
4793 if (PHINode *PN = dyn_cast<PHINode>(Chain.tailUserInst()))
Andrew Trickd5d2db92012-01-10 01:45:08 +00004794 Rewriter.setChainedPhi(PN);
4795 }
4796
Dan Gohman45774ce2010-02-12 10:34:29 +00004797 // Expand the new value definitions and update the users.
Craig Topper77b99412015-05-23 08:01:41 +00004798 for (const LSRFixup &Fixup : Fixups) {
Dan Gohman927bcaa2010-05-20 20:33:18 +00004799 Rewrite(Fixup, *Solution[Fixup.LUIdx], Rewriter, DeadInsts, P);
Dan Gohman45774ce2010-02-12 10:34:29 +00004800
4801 Changed = true;
4802 }
4803
Craig Topper77b99412015-05-23 08:01:41 +00004804 for (const IVChain &Chain : IVChainVec) {
4805 GenerateIVChain(Chain, Rewriter, DeadInsts);
Andrew Trick248d4102012-01-09 21:18:52 +00004806 Changed = true;
4807 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004808 // Clean up after ourselves. This must be done before deleting any
4809 // instructions.
4810 Rewriter.clear();
4811
4812 Changed |= DeleteTriviallyDeadInstructions(DeadInsts);
4813}
4814
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004815LSRInstance::LSRInstance(Loop *L, Pass *P)
4816 : IU(P->getAnalysis<IVUsers>()), SE(P->getAnalysis<ScalarEvolution>()),
Chandler Carruth73523022014-01-13 13:07:17 +00004817 DT(P->getAnalysis<DominatorTreeWrapperPass>().getDomTree()),
Chandler Carruth4f8f3072015-01-17 14:16:18 +00004818 LI(P->getAnalysis<LoopInfoWrapperPass>().getLoopInfo()),
Chandler Carruthfdb9c572015-02-01 12:01:35 +00004819 TTI(P->getAnalysis<TargetTransformInfoWrapperPass>().getTTI(
4820 *L->getHeader()->getParent())),
4821 L(L), Changed(false), IVIncInsertPos(nullptr) {
Dan Gohmana83ac2d2009-11-05 21:11:53 +00004822 // If LoopSimplify form is not available, stay out of trouble.
Andrew Trick732ad802012-01-07 03:16:50 +00004823 if (!L->isLoopSimplifyForm())
4824 return;
Dan Gohmana83ac2d2009-11-05 21:11:53 +00004825
Andrew Trick070e5402012-03-16 03:16:56 +00004826 // If there's no interesting work to be done, bail early.
4827 if (IU.empty()) return;
4828
Andrew Trick19f80c12012-04-18 04:00:10 +00004829 // If there's too much analysis to be done, bail early. We won't be able to
4830 // model the problem anyway.
4831 unsigned NumUsers = 0;
Craig Topper77b99412015-05-23 08:01:41 +00004832 for (const IVStrideUse &U : IU) {
Andrew Trick19f80c12012-04-18 04:00:10 +00004833 if (++NumUsers > MaxIVUsers) {
Craig Topper37d0d862015-05-23 08:20:33 +00004834 (void)U;
Craig Topper77b99412015-05-23 08:01:41 +00004835 DEBUG(dbgs() << "LSR skipping loop, too many IV Users in " << U << "\n");
Andrew Trick19f80c12012-04-18 04:00:10 +00004836 return;
4837 }
4838 }
4839
Andrew Trick070e5402012-03-16 03:16:56 +00004840#ifndef NDEBUG
Andrew Trick12728f02012-01-17 06:45:52 +00004841 // All dominating loops must have preheaders, or SCEVExpander may not be able
4842 // to materialize an AddRecExpr whose Start is an outer AddRecExpr.
4843 //
Andrew Trick070e5402012-03-16 03:16:56 +00004844 // IVUsers analysis should only create users that are dominated by simple loop
4845 // headers. Since this loop should dominate all of its users, its user list
4846 // should be empty if this loop itself is not within a simple loop nest.
Andrew Trick12728f02012-01-17 06:45:52 +00004847 for (DomTreeNode *Rung = DT.getNode(L->getLoopPreheader());
4848 Rung; Rung = Rung->getIDom()) {
4849 BasicBlock *BB = Rung->getBlock();
4850 const Loop *DomLoop = LI.getLoopFor(BB);
4851 if (DomLoop && DomLoop->getHeader() == BB) {
Andrew Trick070e5402012-03-16 03:16:56 +00004852 assert(DomLoop->getLoopPreheader() && "LSR needs a simplified loop nest");
Andrew Trick12728f02012-01-17 06:45:52 +00004853 }
Andrew Trick732ad802012-01-07 03:16:50 +00004854 }
Andrew Trick070e5402012-03-16 03:16:56 +00004855#endif // DEBUG
Dan Gohman85875f72009-03-09 20:34:59 +00004856
Dan Gohman45774ce2010-02-12 10:34:29 +00004857 DEBUG(dbgs() << "\nLSR on loop ";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00004858 L->getHeader()->printAsOperand(dbgs(), /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00004859 dbgs() << ":\n");
Dan Gohmane201f8f2009-03-09 20:46:50 +00004860
Dan Gohman927bcaa2010-05-20 20:33:18 +00004861 // First, perform some low-level loop optimizations.
Dan Gohman45774ce2010-02-12 10:34:29 +00004862 OptimizeShadowIV();
Dan Gohman4c4043c2010-05-20 20:05:31 +00004863 OptimizeLoopTermCond();
Evan Cheng78a4eb82009-05-11 22:33:01 +00004864
Andrew Trick8acb4342011-07-21 00:40:04 +00004865 // If loop preparation eliminates all interesting IV users, bail.
4866 if (IU.empty()) return;
4867
Andrew Trick168dfff2011-09-29 01:53:08 +00004868 // Skip nested loops until we can model them better with formulae.
Andrew Trickd97b83e2012-03-22 22:42:45 +00004869 if (!L->empty()) {
Andrew Trickbc6de902011-09-29 01:33:38 +00004870 DEBUG(dbgs() << "LSR skipping outer loop " << *L << "\n");
Andrew Trick168dfff2011-09-29 01:53:08 +00004871 return;
Andrew Trickbc6de902011-09-29 01:33:38 +00004872 }
4873
Dan Gohman927bcaa2010-05-20 20:33:18 +00004874 // Start collecting data and preparing for the solver.
Andrew Trick29fe5f02012-01-09 19:50:34 +00004875 CollectChains();
Dan Gohman45774ce2010-02-12 10:34:29 +00004876 CollectInterestingTypesAndFactors();
4877 CollectFixupsAndInitialFormulae();
4878 CollectLoopInvariantFixupsAndFormulae();
Chris Lattner9bfa6f82005-08-08 05:28:22 +00004879
Andrew Trick248d4102012-01-09 21:18:52 +00004880 assert(!Uses.empty() && "IVUsers reported at least one use");
Dan Gohman45774ce2010-02-12 10:34:29 +00004881 DEBUG(dbgs() << "LSR found " << Uses.size() << " uses:\n";
4882 print_uses(dbgs()));
Misha Brukmanb1c93172005-04-21 23:48:37 +00004883
Dan Gohman45774ce2010-02-12 10:34:29 +00004884 // Now use the reuse data to generate a bunch of interesting ways
4885 // to formulate the values needed for the uses.
4886 GenerateAllReuseFormulae();
Evan Cheng3df447d2006-03-16 21:53:05 +00004887
Dan Gohman45774ce2010-02-12 10:34:29 +00004888 FilterOutUndesirableDedicatedRegisters();
4889 NarrowSearchSpaceUsingHeuristics();
Dan Gohman92c36962009-12-18 00:06:20 +00004890
Dan Gohman45774ce2010-02-12 10:34:29 +00004891 SmallVector<const Formula *, 8> Solution;
4892 Solve(Solution);
Dan Gohman92c36962009-12-18 00:06:20 +00004893
Dan Gohman45774ce2010-02-12 10:34:29 +00004894 // Release memory that is no longer needed.
4895 Factors.clear();
4896 Types.clear();
4897 RegUses.clear();
4898
Andrew Trick58124392011-09-27 00:44:14 +00004899 if (Solution.empty())
4900 return;
4901
Dan Gohman45774ce2010-02-12 10:34:29 +00004902#ifndef NDEBUG
4903 // Formulae should be legal.
Craig Topper77b99412015-05-23 08:01:41 +00004904 for (const LSRUse &LU : Uses) {
4905 for (const Formula &F : LU.Formulae)
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004906 assert(isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
Craig Topper77b99412015-05-23 08:01:41 +00004907 F) && "Illegal formula generated!");
Dan Gohman45774ce2010-02-12 10:34:29 +00004908 };
4909#endif
4910
4911 // Now that we've decided what we want, make it so.
4912 ImplementSolution(Solution, P);
4913}
4914
4915void LSRInstance::print_factors_and_types(raw_ostream &OS) const {
4916 if (Factors.empty() && Types.empty()) return;
4917
4918 OS << "LSR has identified the following interesting factors and types: ";
4919 bool First = true;
4920
Craig Topper10949ae2015-05-23 08:45:10 +00004921 for (int64_t Factor : Factors) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004922 if (!First) OS << ", ";
4923 First = false;
Craig Topper10949ae2015-05-23 08:45:10 +00004924 OS << '*' << Factor;
Evan Cheng87fe40b2009-11-10 21:14:05 +00004925 }
Dale Johannesen02cb2bf2009-05-11 17:15:42 +00004926
Craig Topper10949ae2015-05-23 08:45:10 +00004927 for (Type *Ty : Types) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004928 if (!First) OS << ", ";
4929 First = false;
Craig Topper10949ae2015-05-23 08:45:10 +00004930 OS << '(' << *Ty << ')';
Dan Gohman45774ce2010-02-12 10:34:29 +00004931 }
4932 OS << '\n';
4933}
4934
4935void LSRInstance::print_fixups(raw_ostream &OS) const {
4936 OS << "LSR is examining the following fixup sites:\n";
Craig Topper77b99412015-05-23 08:01:41 +00004937 for (const LSRFixup &LF : Fixups) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004938 dbgs() << " ";
Craig Topper77b99412015-05-23 08:01:41 +00004939 LF.print(OS);
Dan Gohman45774ce2010-02-12 10:34:29 +00004940 OS << '\n';
4941 }
4942}
4943
4944void LSRInstance::print_uses(raw_ostream &OS) const {
4945 OS << "LSR is examining the following uses:\n";
Craig Topper77b99412015-05-23 08:01:41 +00004946 for (const LSRUse &LU : Uses) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004947 dbgs() << " ";
4948 LU.print(OS);
4949 OS << '\n';
Craig Topper77b99412015-05-23 08:01:41 +00004950 for (const Formula &F : LU.Formulae) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004951 OS << " ";
Craig Topper77b99412015-05-23 08:01:41 +00004952 F.print(OS);
Dan Gohman45774ce2010-02-12 10:34:29 +00004953 OS << '\n';
4954 }
4955 }
4956}
4957
4958void LSRInstance::print(raw_ostream &OS) const {
4959 print_factors_and_types(OS);
4960 print_fixups(OS);
4961 print_uses(OS);
4962}
4963
Manman Ren49d684e2012-09-12 05:06:18 +00004964#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +00004965void LSRInstance::dump() const {
4966 print(errs()); errs() << '\n';
4967}
Manman Renc3366cc2012-09-06 19:55:56 +00004968#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00004969
4970namespace {
4971
4972class LoopStrengthReduce : public LoopPass {
Dan Gohman45774ce2010-02-12 10:34:29 +00004973public:
4974 static char ID; // Pass ID, replacement for typeid
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004975 LoopStrengthReduce();
Dan Gohman45774ce2010-02-12 10:34:29 +00004976
4977private:
Craig Topper3e4c6972014-03-05 09:10:37 +00004978 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
4979 void getAnalysisUsage(AnalysisUsage &AU) const override;
Dan Gohman45774ce2010-02-12 10:34:29 +00004980};
4981
Alexander Kornienkof00654e2015-06-23 09:49:53 +00004982}
Dan Gohman45774ce2010-02-12 10:34:29 +00004983
4984char LoopStrengthReduce::ID = 0;
Owen Anderson8ac477f2010-10-12 19:48:12 +00004985INITIALIZE_PASS_BEGIN(LoopStrengthReduce, "loop-reduce",
Owen Andersondf7a4f22010-10-07 22:25:06 +00004986 "Loop Strength Reduction", false, false)
Chandler Carruth705b1852015-01-31 03:43:40 +00004987INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
Chandler Carruth73523022014-01-13 13:07:17 +00004988INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Owen Anderson8ac477f2010-10-12 19:48:12 +00004989INITIALIZE_PASS_DEPENDENCY(ScalarEvolution)
4990INITIALIZE_PASS_DEPENDENCY(IVUsers)
Chandler Carruth4f8f3072015-01-17 14:16:18 +00004991INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
Owen Andersona4fefc12010-10-19 20:08:44 +00004992INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
Owen Anderson8ac477f2010-10-12 19:48:12 +00004993INITIALIZE_PASS_END(LoopStrengthReduce, "loop-reduce",
4994 "Loop Strength Reduction", false, false)
4995
Nadav Rotem4dc976f2012-10-19 21:28:43 +00004996
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004997Pass *llvm::createLoopStrengthReducePass() {
4998 return new LoopStrengthReduce();
Dan Gohman45774ce2010-02-12 10:34:29 +00004999}
5000
Chandler Carruth26c59fa2013-01-07 14:41:08 +00005001LoopStrengthReduce::LoopStrengthReduce() : LoopPass(ID) {
5002 initializeLoopStrengthReducePass(*PassRegistry::getPassRegistry());
5003}
Dan Gohman45774ce2010-02-12 10:34:29 +00005004
5005void LoopStrengthReduce::getAnalysisUsage(AnalysisUsage &AU) const {
5006 // We split critical edges, so we change the CFG. However, we do update
5007 // many analyses if they are around.
Eric Christopherda6bd452011-02-10 01:48:24 +00005008 AU.addPreservedID(LoopSimplifyID);
Dan Gohman45774ce2010-02-12 10:34:29 +00005009
Chandler Carruth4f8f3072015-01-17 14:16:18 +00005010 AU.addRequired<LoopInfoWrapperPass>();
5011 AU.addPreserved<LoopInfoWrapperPass>();
Eric Christopherda6bd452011-02-10 01:48:24 +00005012 AU.addRequiredID(LoopSimplifyID);
Chandler Carruth73523022014-01-13 13:07:17 +00005013 AU.addRequired<DominatorTreeWrapperPass>();
5014 AU.addPreserved<DominatorTreeWrapperPass>();
Dan Gohman45774ce2010-02-12 10:34:29 +00005015 AU.addRequired<ScalarEvolution>();
5016 AU.addPreserved<ScalarEvolution>();
Cameron Zwarich97dae4d2011-02-10 23:53:14 +00005017 // Requiring LoopSimplify a second time here prevents IVUsers from running
5018 // twice, since LoopSimplify was invalidated by running ScalarEvolution.
5019 AU.addRequiredID(LoopSimplifyID);
Dan Gohman45774ce2010-02-12 10:34:29 +00005020 AU.addRequired<IVUsers>();
5021 AU.addPreserved<IVUsers>();
Chandler Carruth705b1852015-01-31 03:43:40 +00005022 AU.addRequired<TargetTransformInfoWrapperPass>();
Dan Gohman45774ce2010-02-12 10:34:29 +00005023}
5024
5025bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager & /*LPM*/) {
Paul Robinsonaf4e64d2014-02-06 00:07:05 +00005026 if (skipOptnoneFunction(L))
5027 return false;
5028
Dan Gohman45774ce2010-02-12 10:34:29 +00005029 bool Changed = false;
5030
5031 // Run the main LSR transformation.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00005032 Changed |= LSRInstance(L, this).getChanged();
Dan Gohman45774ce2010-02-12 10:34:29 +00005033
Andrew Trick2ec61a82012-01-07 01:36:44 +00005034 // Remove any extra phis created by processing inner loops.
Dan Gohmanb5358002010-01-05 16:31:45 +00005035 Changed |= DeleteDeadPHIs(L->getHeader());
Andrew Trickf950ce82013-01-06 05:59:39 +00005036 if (EnablePhiElim && L->isLoopSimplifyForm()) {
Andrew Trick2ec61a82012-01-07 01:36:44 +00005037 SmallVector<WeakVH, 16> DeadInsts;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00005038 const DataLayout &DL = L->getHeader()->getModule()->getDataLayout();
5039 SCEVExpander Rewriter(getAnalysis<ScalarEvolution>(), DL, "lsr");
Andrew Trick2ec61a82012-01-07 01:36:44 +00005040#ifndef NDEBUG
5041 Rewriter.setDebugType(DEBUG_TYPE);
5042#endif
Chandler Carruth73523022014-01-13 13:07:17 +00005043 unsigned numFolded = Rewriter.replaceCongruentIVs(
5044 L, &getAnalysis<DominatorTreeWrapperPass>().getDomTree(), DeadInsts,
Chandler Carruthfdb9c572015-02-01 12:01:35 +00005045 &getAnalysis<TargetTransformInfoWrapperPass>().getTTI(
5046 *L->getHeader()->getParent()));
Andrew Trick2ec61a82012-01-07 01:36:44 +00005047 if (numFolded) {
5048 Changed = true;
5049 DeleteTriviallyDeadInstructions(DeadInsts);
5050 DeleteDeadPHIs(L->getHeader());
5051 }
5052 }
Evan Cheng03001cb2008-07-07 19:51:32 +00005053 return Changed;
Nate Begemanb18121e2004-10-18 21:08:22 +00005054}