blob: 2c0769a91e464e760269de0f43810214d3c82e37 [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
31// the value of the register before the add and some using // it after. In this
32// example, the icmp is a post-increment user, since it uses %i.next, which is
33// the value of the induction variable after the increment. The other common
34// case of post-increment users is users outside the loop.
35//
36// TODO: More sophistication in the way Formulae are generated and filtered.
37//
38// TODO: Handle multiple loops at a time.
39//
Chandler 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"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000071#include "llvm/IR/ValueHandle.h"
Andrew Trick58124392011-09-27 00:44:14 +000072#include "llvm/Support/CommandLine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000073#include "llvm/Support/Debug.h"
Daniel Dunbar6115b392009-07-26 09:48:23 +000074#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000075#include "llvm/Transforms/Utils/BasicBlockUtils.h"
76#include "llvm/Transforms/Utils/Local.h"
Jeff Cohenc5009912005-07-30 18:22:27 +000077#include <algorithm>
Nate Begemanb18121e2004-10-18 21:08:22 +000078using namespace llvm;
79
Chandler Carruth964daaa2014-04-22 02:55:47 +000080#define DEBUG_TYPE "loop-reduce"
81
Andrew Trick19f80c12012-04-18 04:00:10 +000082/// MaxIVUsers is an arbitrary threshold that provides an early opportunitiy for
83/// bail out. This threshold is far beyond the number of users that LSR can
84/// conceivably solve, so it should not affect generated code, but catches the
85/// worst cases before LSR burns too much compile time and stack space.
86static const unsigned MaxIVUsers = 200;
87
Andrew Trickecbe22b2011-10-11 02:30:45 +000088// Temporary flag to cleanup congruent phis after LSR phi expansion.
89// It's currently disabled until we can determine whether it's truly useful or
90// not. The flag should be removed after the v3.0 release.
Andrew Trick06f6c052012-01-07 07:08:17 +000091// This is now needed for ivchains.
Benjamin Kramer7ba71be2011-11-26 23:01:57 +000092static cl::opt<bool> EnablePhiElim(
Andrew Trick06f6c052012-01-07 07:08:17 +000093 "enable-lsr-phielim", cl::Hidden, cl::init(true),
94 cl::desc("Enable LSR phi elimination"));
Andrew Trick58124392011-09-27 00:44:14 +000095
Andrew Trick248d4102012-01-09 21:18:52 +000096#ifndef NDEBUG
97// Stress test IV chain generation.
98static cl::opt<bool> StressIVChain(
99 "stress-ivchain", cl::Hidden, cl::init(false),
100 cl::desc("Stress test LSR IV chains"));
101#else
102static bool StressIVChain = false;
103#endif
104
Dan Gohman45774ce2010-02-12 10:34:29 +0000105namespace {
Nate Begemanb18121e2004-10-18 21:08:22 +0000106
Dan Gohman45774ce2010-02-12 10:34:29 +0000107/// RegSortData - This class holds data which is used to order reuse candidates.
108class RegSortData {
109public:
110 /// UsedByIndices - This represents the set of LSRUse indices which reference
111 /// a particular register.
112 SmallBitVector UsedByIndices;
113
114 RegSortData() {}
115
116 void print(raw_ostream &OS) const;
117 void dump() const;
118};
119
120}
121
122void RegSortData::print(raw_ostream &OS) const {
123 OS << "[NumUses=" << UsedByIndices.count() << ']';
124}
125
Manman Ren49d684e2012-09-12 05:06:18 +0000126#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +0000127void RegSortData::dump() const {
128 print(errs()); errs() << '\n';
129}
Manman Renc3366cc2012-09-06 19:55:56 +0000130#endif
Dan Gohman2a12ae72009-02-20 04:17:46 +0000131
Chris Lattner79a42ac2006-12-19 21:40:18 +0000132namespace {
Dale Johannesene3a02be2007-03-20 00:47:50 +0000133
Dan Gohman45774ce2010-02-12 10:34:29 +0000134/// RegUseTracker - Map register candidates to information about how they are
135/// used.
136class RegUseTracker {
137 typedef DenseMap<const SCEV *, RegSortData> RegUsesTy;
Dale Johannesene3a02be2007-03-20 00:47:50 +0000138
Dan Gohman248c41d2010-05-18 22:33:00 +0000139 RegUsesTy RegUsesMap;
Dan Gohman45774ce2010-02-12 10:34:29 +0000140 SmallVector<const SCEV *, 16> RegSequence;
Evan Cheng3df447d2006-03-16 21:53:05 +0000141
Dan Gohman45774ce2010-02-12 10:34:29 +0000142public:
143 void CountRegister(const SCEV *Reg, size_t LUIdx);
Dan Gohman4cf99b52010-05-18 23:42:37 +0000144 void DropRegister(const SCEV *Reg, size_t LUIdx);
Dan Gohmana7b68d62010-10-07 23:33:43 +0000145 void SwapAndDropUse(size_t LUIdx, size_t LastLUIdx);
Dan Gohman51ad99d2010-01-21 02:09:26 +0000146
Dan Gohman45774ce2010-02-12 10:34:29 +0000147 bool isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const;
Dan Gohman51ad99d2010-01-21 02:09:26 +0000148
Dan Gohman45774ce2010-02-12 10:34:29 +0000149 const SmallBitVector &getUsedByIndices(const SCEV *Reg) const;
Dan Gohman51ad99d2010-01-21 02:09:26 +0000150
Dan Gohman45774ce2010-02-12 10:34:29 +0000151 void clear();
Dan Gohman51ad99d2010-01-21 02:09:26 +0000152
Dan Gohman45774ce2010-02-12 10:34:29 +0000153 typedef SmallVectorImpl<const SCEV *>::iterator iterator;
154 typedef SmallVectorImpl<const SCEV *>::const_iterator const_iterator;
155 iterator begin() { return RegSequence.begin(); }
156 iterator end() { return RegSequence.end(); }
157 const_iterator begin() const { return RegSequence.begin(); }
158 const_iterator end() const { return RegSequence.end(); }
159};
Dan Gohman51ad99d2010-01-21 02:09:26 +0000160
Dan Gohman51ad99d2010-01-21 02:09:26 +0000161}
162
Dan Gohman45774ce2010-02-12 10:34:29 +0000163void
164RegUseTracker::CountRegister(const SCEV *Reg, size_t LUIdx) {
165 std::pair<RegUsesTy::iterator, bool> Pair =
Dan Gohman248c41d2010-05-18 22:33:00 +0000166 RegUsesMap.insert(std::make_pair(Reg, RegSortData()));
Dan Gohman45774ce2010-02-12 10:34:29 +0000167 RegSortData &RSD = Pair.first->second;
168 if (Pair.second)
169 RegSequence.push_back(Reg);
170 RSD.UsedByIndices.resize(std::max(RSD.UsedByIndices.size(), LUIdx + 1));
171 RSD.UsedByIndices.set(LUIdx);
Dan Gohman51ad99d2010-01-21 02:09:26 +0000172}
173
Dan Gohman4cf99b52010-05-18 23:42:37 +0000174void
175RegUseTracker::DropRegister(const SCEV *Reg, size_t LUIdx) {
176 RegUsesTy::iterator It = RegUsesMap.find(Reg);
177 assert(It != RegUsesMap.end());
178 RegSortData &RSD = It->second;
179 assert(RSD.UsedByIndices.size() > LUIdx);
180 RSD.UsedByIndices.reset(LUIdx);
181}
182
Dan Gohman20fab452010-05-19 23:43:12 +0000183void
Dan Gohmana7b68d62010-10-07 23:33:43 +0000184RegUseTracker::SwapAndDropUse(size_t LUIdx, size_t LastLUIdx) {
185 assert(LUIdx <= LastLUIdx);
186
187 // Update RegUses. The data structure is not optimized for this purpose;
188 // we must iterate through it and update each of the bit vectors.
Dan Gohman20fab452010-05-19 23:43:12 +0000189 for (RegUsesTy::iterator I = RegUsesMap.begin(), E = RegUsesMap.end();
Dan Gohmana7b68d62010-10-07 23:33:43 +0000190 I != E; ++I) {
191 SmallBitVector &UsedByIndices = I->second.UsedByIndices;
192 if (LUIdx < UsedByIndices.size())
193 UsedByIndices[LUIdx] =
194 LastLUIdx < UsedByIndices.size() ? UsedByIndices[LastLUIdx] : 0;
195 UsedByIndices.resize(std::min(UsedByIndices.size(), LastLUIdx));
196 }
Dan Gohman20fab452010-05-19 23:43:12 +0000197}
198
Dan Gohman45774ce2010-02-12 10:34:29 +0000199bool
200RegUseTracker::isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const {
Dan Gohman4f13bbf2010-08-29 15:18:49 +0000201 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
202 if (I == RegUsesMap.end())
203 return false;
204 const SmallBitVector &UsedByIndices = I->second.UsedByIndices;
Dan Gohman45774ce2010-02-12 10:34:29 +0000205 int i = UsedByIndices.find_first();
206 if (i == -1) return false;
207 if ((size_t)i != LUIdx) return true;
208 return UsedByIndices.find_next(i) != -1;
209}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000210
Dan Gohman45774ce2010-02-12 10:34:29 +0000211const SmallBitVector &RegUseTracker::getUsedByIndices(const SCEV *Reg) const {
Dan Gohman248c41d2010-05-18 22:33:00 +0000212 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
213 assert(I != RegUsesMap.end() && "Unknown register!");
Dan Gohman45774ce2010-02-12 10:34:29 +0000214 return I->second.UsedByIndices;
215}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000216
Dan Gohman45774ce2010-02-12 10:34:29 +0000217void RegUseTracker::clear() {
Dan Gohman248c41d2010-05-18 22:33:00 +0000218 RegUsesMap.clear();
Dan Gohman45774ce2010-02-12 10:34:29 +0000219 RegSequence.clear();
220}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000221
Dan Gohman45774ce2010-02-12 10:34:29 +0000222namespace {
223
224/// Formula - This class holds information that describes a formula for
225/// computing satisfying a use. It may include broken-out immediates and scaled
226/// registers.
227struct Formula {
Chandler Carruth6e479322013-01-07 15:04:40 +0000228 /// Global base address used for complex addressing.
229 GlobalValue *BaseGV;
230
231 /// Base offset for complex addressing.
232 int64_t BaseOffset;
233
234 /// Whether any complex addressing has a base register.
235 bool HasBaseReg;
236
237 /// The scale of any complex addressing.
238 int64_t Scale;
Dan Gohman45774ce2010-02-12 10:34:29 +0000239
240 /// BaseRegs - The list of "base" registers for this use. When this is
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000241 /// non-empty. The canonical representation of a formula is
242 /// 1. BaseRegs.size > 1 implies ScaledReg != NULL and
243 /// 2. ScaledReg != NULL implies Scale != 1 || !BaseRegs.empty().
244 /// #1 enforces that the scaled register is always used when at least two
245 /// registers are needed by the formula: e.g., reg1 + reg2 is reg1 + 1 * reg2.
246 /// #2 enforces that 1 * reg is reg.
247 /// This invariant can be temporarly broken while building a formula.
248 /// However, every formula inserted into the LSRInstance must be in canonical
249 /// form.
Preston Gurd25c3b6a2013-02-01 20:41:27 +0000250 SmallVector<const SCEV *, 4> BaseRegs;
Dan Gohman45774ce2010-02-12 10:34:29 +0000251
252 /// ScaledReg - The 'scaled' register for this use. This should be non-null
Chandler Carruth6e479322013-01-07 15:04:40 +0000253 /// when Scale is not zero.
Dan Gohman45774ce2010-02-12 10:34:29 +0000254 const SCEV *ScaledReg;
255
Dan Gohman6136e942011-05-03 00:46:49 +0000256 /// UnfoldedOffset - An additional constant offset which added near the
257 /// use. This requires a temporary register, but the offset itself can
258 /// live in an add immediate field rather than a register.
259 int64_t UnfoldedOffset;
260
Chandler Carruth6e479322013-01-07 15:04:40 +0000261 Formula()
Craig Topperf40110f2014-04-25 05:29:35 +0000262 : BaseGV(nullptr), BaseOffset(0), HasBaseReg(false), Scale(0),
263 ScaledReg(nullptr), UnfoldedOffset(0) {}
Dan Gohman45774ce2010-02-12 10:34:29 +0000264
Dan Gohman20d9ce22010-11-17 21:41:58 +0000265 void InitialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000266
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000267 bool isCanonical() const;
268
269 void Canonicalize();
270
271 bool Unscale();
272
Adam Nemetdeab6f92014-04-29 18:25:28 +0000273 size_t getNumRegs() const;
Chris Lattner229907c2011-07-18 04:54:35 +0000274 Type *getType() const;
Dan Gohman45774ce2010-02-12 10:34:29 +0000275
Dan Gohman80a96082010-05-20 15:17:54 +0000276 void DeleteBaseReg(const SCEV *&S);
277
Dan Gohman45774ce2010-02-12 10:34:29 +0000278 bool referencesReg(const SCEV *S) const;
279 bool hasRegsUsedByUsesOtherThan(size_t LUIdx,
280 const RegUseTracker &RegUses) const;
281
282 void print(raw_ostream &OS) const;
283 void dump() const;
284};
285
286}
287
Dan Gohman8b0a4192010-03-01 17:49:51 +0000288/// DoInitialMatch - Recursion helper for InitialMatch.
Dan Gohman45774ce2010-02-12 10:34:29 +0000289static void DoInitialMatch(const SCEV *S, Loop *L,
290 SmallVectorImpl<const SCEV *> &Good,
291 SmallVectorImpl<const SCEV *> &Bad,
Dan Gohman20d9ce22010-11-17 21:41:58 +0000292 ScalarEvolution &SE) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000293 // Collect expressions which properly dominate the loop header.
Dan Gohman20d9ce22010-11-17 21:41:58 +0000294 if (SE.properlyDominates(S, L->getHeader())) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000295 Good.push_back(S);
296 return;
Dan Gohman51ad99d2010-01-21 02:09:26 +0000297 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000298
299 // Look at add operands.
300 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
301 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
302 I != E; ++I)
Dan Gohman20d9ce22010-11-17 21:41:58 +0000303 DoInitialMatch(*I, L, Good, Bad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000304 return;
305 }
306
307 // Look at addrec operands.
308 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S))
309 if (!AR->getStart()->isZero()) {
Dan Gohman20d9ce22010-11-17 21:41:58 +0000310 DoInitialMatch(AR->getStart(), L, Good, Bad, SE);
Dan Gohman1d2ded72010-05-03 22:09:21 +0000311 DoInitialMatch(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
Dan Gohman45774ce2010-02-12 10:34:29 +0000312 AR->getStepRecurrence(SE),
Andrew Trick8b55b732011-03-14 16:50:06 +0000313 // FIXME: AR->getNoWrapFlags()
314 AR->getLoop(), SCEV::FlagAnyWrap),
Dan Gohman20d9ce22010-11-17 21:41:58 +0000315 L, Good, Bad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000316 return;
317 }
318
319 // Handle a multiplication by -1 (negation) if it didn't fold.
320 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S))
321 if (Mul->getOperand(0)->isAllOnesValue()) {
322 SmallVector<const SCEV *, 4> Ops(Mul->op_begin()+1, Mul->op_end());
323 const SCEV *NewMul = SE.getMulExpr(Ops);
324
325 SmallVector<const SCEV *, 4> MyGood;
326 SmallVector<const SCEV *, 4> MyBad;
Dan Gohman20d9ce22010-11-17 21:41:58 +0000327 DoInitialMatch(NewMul, L, MyGood, MyBad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000328 const SCEV *NegOne = SE.getSCEV(ConstantInt::getAllOnesValue(
329 SE.getEffectiveSCEVType(NewMul->getType())));
330 for (SmallVectorImpl<const SCEV *>::const_iterator I = MyGood.begin(),
331 E = MyGood.end(); I != E; ++I)
332 Good.push_back(SE.getMulExpr(NegOne, *I));
333 for (SmallVectorImpl<const SCEV *>::const_iterator I = MyBad.begin(),
334 E = MyBad.end(); I != E; ++I)
335 Bad.push_back(SE.getMulExpr(NegOne, *I));
336 return;
337 }
338
339 // Ok, we can't do anything interesting. Just stuff the whole thing into a
340 // register and hope for the best.
341 Bad.push_back(S);
342}
343
344/// InitialMatch - Incorporate loop-variant parts of S into this Formula,
345/// attempting to keep all loop-invariant and loop-computable values in a
346/// single base register.
Dan Gohman20d9ce22010-11-17 21:41:58 +0000347void Formula::InitialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000348 SmallVector<const SCEV *, 4> Good;
349 SmallVector<const SCEV *, 4> Bad;
Dan Gohman20d9ce22010-11-17 21:41:58 +0000350 DoInitialMatch(S, L, Good, Bad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000351 if (!Good.empty()) {
Dan Gohman9b5d0bb72010-04-08 23:36:27 +0000352 const SCEV *Sum = SE.getAddExpr(Good);
353 if (!Sum->isZero())
354 BaseRegs.push_back(Sum);
Chandler Carruth6e479322013-01-07 15:04:40 +0000355 HasBaseReg = true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000356 }
357 if (!Bad.empty()) {
Dan Gohman9b5d0bb72010-04-08 23:36:27 +0000358 const SCEV *Sum = SE.getAddExpr(Bad);
359 if (!Sum->isZero())
360 BaseRegs.push_back(Sum);
Chandler Carruth6e479322013-01-07 15:04:40 +0000361 HasBaseReg = true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000362 }
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000363 Canonicalize();
364}
365
366/// \brief Check whether or not this formula statisfies the canonical
367/// representation.
368/// \see Formula::BaseRegs.
369bool Formula::isCanonical() const {
370 if (ScaledReg)
371 return Scale != 1 || !BaseRegs.empty();
372 return BaseRegs.size() <= 1;
373}
374
375/// \brief Helper method to morph a formula into its canonical representation.
376/// \see Formula::BaseRegs.
377/// Every formula having more than one base register, must use the ScaledReg
378/// field. Otherwise, we would have to do special cases everywhere in LSR
379/// to treat reg1 + reg2 + ... the same way as reg1 + 1*reg2 + ...
380/// On the other hand, 1*reg should be canonicalized into reg.
381void Formula::Canonicalize() {
382 if (isCanonical())
383 return;
384 // So far we did not need this case. This is easy to implement but it is
385 // useless to maintain dead code. Beside it could hurt compile time.
386 assert(!BaseRegs.empty() && "1*reg => reg, should not be needed.");
387 // Keep the invariant sum in BaseRegs and one of the variant sum in ScaledReg.
388 ScaledReg = BaseRegs.back();
389 BaseRegs.pop_back();
390 Scale = 1;
391 size_t BaseRegsSize = BaseRegs.size();
392 size_t Try = 0;
393 // If ScaledReg is an invariant, try to find a variant expression.
394 while (Try < BaseRegsSize && !isa<SCEVAddRecExpr>(ScaledReg))
395 std::swap(ScaledReg, BaseRegs[Try++]);
396}
397
398/// \brief Get rid of the scale in the formula.
399/// In other words, this method morphes reg1 + 1*reg2 into reg1 + reg2.
400/// \return true if it was possible to get rid of the scale, false otherwise.
401/// \note After this operation the formula may not be in the canonical form.
402bool Formula::Unscale() {
403 if (Scale != 1)
404 return false;
405 Scale = 0;
406 BaseRegs.push_back(ScaledReg);
407 ScaledReg = nullptr;
408 return true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000409}
410
411/// getNumRegs - Return the total number of register operands used by this
412/// formula. This does not include register uses implied by non-constant
413/// addrec strides.
Adam Nemetdeab6f92014-04-29 18:25:28 +0000414size_t Formula::getNumRegs() const {
Dan Gohman45774ce2010-02-12 10:34:29 +0000415 return !!ScaledReg + BaseRegs.size();
416}
417
418/// getType - Return the type of this formula, if it has one, or null
419/// otherwise. This type is meaningless except for the bit size.
Chris Lattner229907c2011-07-18 04:54:35 +0000420Type *Formula::getType() const {
Dan Gohman45774ce2010-02-12 10:34:29 +0000421 return !BaseRegs.empty() ? BaseRegs.front()->getType() :
422 ScaledReg ? ScaledReg->getType() :
Chandler Carruth6e479322013-01-07 15:04:40 +0000423 BaseGV ? BaseGV->getType() :
Craig Topperf40110f2014-04-25 05:29:35 +0000424 nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000425}
426
Dan Gohman80a96082010-05-20 15:17:54 +0000427/// DeleteBaseReg - Delete the given base reg from the BaseRegs list.
428void Formula::DeleteBaseReg(const SCEV *&S) {
429 if (&S != &BaseRegs.back())
430 std::swap(S, BaseRegs.back());
431 BaseRegs.pop_back();
432}
433
Dan Gohman45774ce2010-02-12 10:34:29 +0000434/// referencesReg - Test if this formula references the given register.
435bool Formula::referencesReg(const SCEV *S) const {
436 return S == ScaledReg ||
437 std::find(BaseRegs.begin(), BaseRegs.end(), S) != BaseRegs.end();
438}
439
440/// hasRegsUsedByUsesOtherThan - Test whether this formula uses registers
441/// which are used by uses other than the use with the given index.
442bool Formula::hasRegsUsedByUsesOtherThan(size_t LUIdx,
443 const RegUseTracker &RegUses) const {
444 if (ScaledReg)
445 if (RegUses.isRegUsedByUsesOtherThan(ScaledReg, LUIdx))
446 return true;
447 for (SmallVectorImpl<const SCEV *>::const_iterator I = BaseRegs.begin(),
448 E = BaseRegs.end(); I != E; ++I)
449 if (RegUses.isRegUsedByUsesOtherThan(*I, LUIdx))
450 return true;
451 return false;
452}
453
454void Formula::print(raw_ostream &OS) const {
455 bool First = true;
Chandler Carruth6e479322013-01-07 15:04:40 +0000456 if (BaseGV) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000457 if (!First) OS << " + "; else First = false;
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000458 BaseGV->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +0000459 }
Chandler Carruth6e479322013-01-07 15:04:40 +0000460 if (BaseOffset != 0) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000461 if (!First) OS << " + "; else First = false;
Chandler Carruth6e479322013-01-07 15:04:40 +0000462 OS << BaseOffset;
Dan Gohman45774ce2010-02-12 10:34:29 +0000463 }
464 for (SmallVectorImpl<const SCEV *>::const_iterator I = BaseRegs.begin(),
465 E = BaseRegs.end(); I != E; ++I) {
466 if (!First) OS << " + "; else First = false;
467 OS << "reg(" << **I << ')';
468 }
Chandler Carruth6e479322013-01-07 15:04:40 +0000469 if (HasBaseReg && BaseRegs.empty()) {
Dan Gohman06ab08f2010-05-18 22:35:55 +0000470 if (!First) OS << " + "; else First = false;
471 OS << "**error: HasBaseReg**";
Chandler Carruth6e479322013-01-07 15:04:40 +0000472 } else if (!HasBaseReg && !BaseRegs.empty()) {
Dan Gohman06ab08f2010-05-18 22:35:55 +0000473 if (!First) OS << " + "; else First = false;
474 OS << "**error: !HasBaseReg**";
475 }
Chandler Carruth6e479322013-01-07 15:04:40 +0000476 if (Scale != 0) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000477 if (!First) OS << " + "; else First = false;
Chandler Carruth6e479322013-01-07 15:04:40 +0000478 OS << Scale << "*reg(";
Dan Gohman45774ce2010-02-12 10:34:29 +0000479 if (ScaledReg)
480 OS << *ScaledReg;
481 else
482 OS << "<unknown>";
483 OS << ')';
484 }
Dan Gohman6136e942011-05-03 00:46:49 +0000485 if (UnfoldedOffset != 0) {
Arnaud A. de Grandmaison75c9e6d2014-03-15 22:13:15 +0000486 if (!First) OS << " + ";
Dan Gohman6136e942011-05-03 00:46:49 +0000487 OS << "imm(" << UnfoldedOffset << ')';
488 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000489}
490
Manman Ren49d684e2012-09-12 05:06:18 +0000491#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +0000492void Formula::dump() const {
493 print(errs()); errs() << '\n';
494}
Manman Renc3366cc2012-09-06 19:55:56 +0000495#endif
Dan Gohman45774ce2010-02-12 10:34:29 +0000496
Dan Gohman85af2562010-02-19 19:32:49 +0000497/// isAddRecSExtable - Return true if the given addrec can be sign-extended
498/// without changing its value.
499static bool isAddRecSExtable(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
Chris Lattner229907c2011-07-18 04:54:35 +0000500 Type *WideTy =
Dan Gohmanab5fb7f2010-05-20 19:44:23 +0000501 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(AR->getType()) + 1);
Dan Gohman85af2562010-02-19 19:32:49 +0000502 return isa<SCEVAddRecExpr>(SE.getSignExtendExpr(AR, WideTy));
503}
504
505/// isAddSExtable - Return true if the given add can be sign-extended
506/// without changing its value.
507static bool isAddSExtable(const SCEVAddExpr *A, ScalarEvolution &SE) {
Chris Lattner229907c2011-07-18 04:54:35 +0000508 Type *WideTy =
Dan Gohmanab5fb7f2010-05-20 19:44:23 +0000509 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(A->getType()) + 1);
Dan Gohman85af2562010-02-19 19:32:49 +0000510 return isa<SCEVAddExpr>(SE.getSignExtendExpr(A, WideTy));
511}
512
Dan Gohmanab542222010-06-24 16:45:11 +0000513/// isMulSExtable - Return true if the given mul can be sign-extended
Dan Gohman85af2562010-02-19 19:32:49 +0000514/// without changing its value.
Dan Gohmanab542222010-06-24 16:45:11 +0000515static bool isMulSExtable(const SCEVMulExpr *M, ScalarEvolution &SE) {
Chris Lattner229907c2011-07-18 04:54:35 +0000516 Type *WideTy =
Dan Gohmanab542222010-06-24 16:45:11 +0000517 IntegerType::get(SE.getContext(),
518 SE.getTypeSizeInBits(M->getType()) * M->getNumOperands());
519 return isa<SCEVMulExpr>(SE.getSignExtendExpr(M, WideTy));
Dan Gohman85af2562010-02-19 19:32:49 +0000520}
521
Dan Gohman4eebb942010-02-19 19:35:48 +0000522/// getExactSDiv - Return an expression for LHS /s RHS, if it can be determined
523/// and if the remainder is known to be zero, or null otherwise. If
524/// IgnoreSignificantBits is true, expressions like (X * Y) /s Y are simplified
525/// to Y, ignoring that the multiplication may overflow, which is useful when
526/// the result will be used in a context where the most significant bits are
527/// ignored.
528static const SCEV *getExactSDiv(const SCEV *LHS, const SCEV *RHS,
529 ScalarEvolution &SE,
530 bool IgnoreSignificantBits = false) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000531 // Handle the trivial case, which works for any SCEV type.
532 if (LHS == RHS)
Dan Gohman1d2ded72010-05-03 22:09:21 +0000533 return SE.getConstant(LHS->getType(), 1);
Dan Gohman45774ce2010-02-12 10:34:29 +0000534
Dan Gohman47ddf762010-06-24 16:51:25 +0000535 // Handle a few RHS special cases.
536 const SCEVConstant *RC = dyn_cast<SCEVConstant>(RHS);
537 if (RC) {
538 const APInt &RA = RC->getValue()->getValue();
539 // Handle x /s -1 as x * -1, to give ScalarEvolution a chance to do
540 // some folding.
541 if (RA.isAllOnesValue())
542 return SE.getMulExpr(LHS, RC);
543 // Handle x /s 1 as x.
544 if (RA == 1)
545 return LHS;
546 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000547
548 // Check for a division of a constant by a constant.
549 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(LHS)) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000550 if (!RC)
Craig Topperf40110f2014-04-25 05:29:35 +0000551 return nullptr;
Dan Gohman47ddf762010-06-24 16:51:25 +0000552 const APInt &LA = C->getValue()->getValue();
553 const APInt &RA = RC->getValue()->getValue();
554 if (LA.srem(RA) != 0)
Craig Topperf40110f2014-04-25 05:29:35 +0000555 return nullptr;
Dan Gohman47ddf762010-06-24 16:51:25 +0000556 return SE.getConstant(LA.sdiv(RA));
Dan Gohman45774ce2010-02-12 10:34:29 +0000557 }
558
Dan Gohman85af2562010-02-19 19:32:49 +0000559 // Distribute the sdiv over addrec operands, if the addrec doesn't overflow.
Dan Gohman45774ce2010-02-12 10:34:29 +0000560 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS)) {
Dan Gohman85af2562010-02-19 19:32:49 +0000561 if (IgnoreSignificantBits || isAddRecSExtable(AR, SE)) {
Dan Gohman4eebb942010-02-19 19:35:48 +0000562 const SCEV *Step = getExactSDiv(AR->getStepRecurrence(SE), RHS, SE,
563 IgnoreSignificantBits);
Craig Topperf40110f2014-04-25 05:29:35 +0000564 if (!Step) return nullptr;
Dan Gohman129a8162010-08-19 01:02:31 +0000565 const SCEV *Start = getExactSDiv(AR->getStart(), RHS, SE,
566 IgnoreSignificantBits);
Craig Topperf40110f2014-04-25 05:29:35 +0000567 if (!Start) return nullptr;
Andrew Trick8b55b732011-03-14 16:50:06 +0000568 // FlagNW is independent of the start value, step direction, and is
569 // preserved with smaller magnitude steps.
570 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
571 return SE.getAddRecExpr(Start, Step, AR->getLoop(), SCEV::FlagAnyWrap);
Dan Gohman85af2562010-02-19 19:32:49 +0000572 }
Craig Topperf40110f2014-04-25 05:29:35 +0000573 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000574 }
575
Dan Gohman85af2562010-02-19 19:32:49 +0000576 // Distribute the sdiv over add operands, if the add doesn't overflow.
Dan Gohman45774ce2010-02-12 10:34:29 +0000577 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) {
Dan Gohman85af2562010-02-19 19:32:49 +0000578 if (IgnoreSignificantBits || isAddSExtable(Add, SE)) {
579 SmallVector<const SCEV *, 8> Ops;
580 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
581 I != E; ++I) {
Dan Gohman4eebb942010-02-19 19:35:48 +0000582 const SCEV *Op = getExactSDiv(*I, RHS, SE,
583 IgnoreSignificantBits);
Craig Topperf40110f2014-04-25 05:29:35 +0000584 if (!Op) return nullptr;
Dan Gohman85af2562010-02-19 19:32:49 +0000585 Ops.push_back(Op);
586 }
587 return SE.getAddExpr(Ops);
Dan Gohman45774ce2010-02-12 10:34:29 +0000588 }
Craig Topperf40110f2014-04-25 05:29:35 +0000589 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000590 }
591
592 // Check for a multiply operand that we can pull RHS out of.
Dan Gohman963b1c12010-06-24 16:57:52 +0000593 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(LHS)) {
Dan Gohman85af2562010-02-19 19:32:49 +0000594 if (IgnoreSignificantBits || isMulSExtable(Mul, SE)) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000595 SmallVector<const SCEV *, 4> Ops;
596 bool Found = false;
597 for (SCEVMulExpr::op_iterator I = Mul->op_begin(), E = Mul->op_end();
598 I != E; ++I) {
Dan Gohman6b733fc2010-05-20 16:23:28 +0000599 const SCEV *S = *I;
Dan Gohman45774ce2010-02-12 10:34:29 +0000600 if (!Found)
Dan Gohman6b733fc2010-05-20 16:23:28 +0000601 if (const SCEV *Q = getExactSDiv(S, RHS, SE,
Dan Gohman4eebb942010-02-19 19:35:48 +0000602 IgnoreSignificantBits)) {
Dan Gohman6b733fc2010-05-20 16:23:28 +0000603 S = Q;
Dan Gohman45774ce2010-02-12 10:34:29 +0000604 Found = true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000605 }
Dan Gohman6b733fc2010-05-20 16:23:28 +0000606 Ops.push_back(S);
Dan Gohman45774ce2010-02-12 10:34:29 +0000607 }
Craig Topperf40110f2014-04-25 05:29:35 +0000608 return Found ? SE.getMulExpr(Ops) : nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000609 }
Craig Topperf40110f2014-04-25 05:29:35 +0000610 return nullptr;
Dan Gohman963b1c12010-06-24 16:57:52 +0000611 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000612
613 // Otherwise we don't know.
Craig Topperf40110f2014-04-25 05:29:35 +0000614 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000615}
616
617/// ExtractImmediate - If S involves the addition of a constant integer value,
618/// return that integer value, and mutate S to point to a new SCEV with that
619/// value excluded.
620static int64_t ExtractImmediate(const SCEV *&S, ScalarEvolution &SE) {
621 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) {
622 if (C->getValue()->getValue().getMinSignedBits() <= 64) {
Dan Gohman1d2ded72010-05-03 22:09:21 +0000623 S = SE.getConstant(C->getType(), 0);
Dan Gohman45774ce2010-02-12 10:34:29 +0000624 return C->getValue()->getSExtValue();
625 }
626 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
627 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
628 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000629 if (Result != 0)
630 S = SE.getAddExpr(NewOps);
Dan Gohman45774ce2010-02-12 10:34:29 +0000631 return Result;
632 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
633 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
634 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000635 if (Result != 0)
Andrew Trick8b55b732011-03-14 16:50:06 +0000636 S = SE.getAddRecExpr(NewOps, AR->getLoop(),
637 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
638 SCEV::FlagAnyWrap);
Dan Gohman45774ce2010-02-12 10:34:29 +0000639 return Result;
640 }
641 return 0;
642}
643
644/// ExtractSymbol - If S involves the addition of a GlobalValue address,
645/// return that symbol, and mutate S to point to a new SCEV with that
646/// value excluded.
647static GlobalValue *ExtractSymbol(const SCEV *&S, ScalarEvolution &SE) {
648 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
649 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue())) {
Dan Gohman1d2ded72010-05-03 22:09:21 +0000650 S = SE.getConstant(GV->getType(), 0);
Dan Gohman45774ce2010-02-12 10:34:29 +0000651 return GV;
652 }
653 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
654 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
655 GlobalValue *Result = ExtractSymbol(NewOps.back(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000656 if (Result)
657 S = SE.getAddExpr(NewOps);
Dan Gohman45774ce2010-02-12 10:34:29 +0000658 return Result;
659 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
660 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
661 GlobalValue *Result = ExtractSymbol(NewOps.front(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000662 if (Result)
Andrew Trick8b55b732011-03-14 16:50:06 +0000663 S = SE.getAddRecExpr(NewOps, AR->getLoop(),
664 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
665 SCEV::FlagAnyWrap);
Dan Gohman45774ce2010-02-12 10:34:29 +0000666 return Result;
667 }
Craig Topperf40110f2014-04-25 05:29:35 +0000668 return nullptr;
Nate Begemanb18121e2004-10-18 21:08:22 +0000669}
670
Dan Gohmand0b1fbd2009-02-18 00:08:39 +0000671/// isAddressUse - Returns true if the specified instruction is using the
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000672/// specified value as an address.
673static bool isAddressUse(Instruction *Inst, Value *OperandVal) {
674 bool isAddress = isa<LoadInst>(Inst);
675 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
676 if (SI->getOperand(1) == OperandVal)
677 isAddress = true;
678 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
679 // Addressing modes can also be folded into prefetches and a variety
680 // of intrinsics.
681 switch (II->getIntrinsicID()) {
682 default: break;
683 case Intrinsic::prefetch:
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000684 case Intrinsic::x86_sse_storeu_ps:
685 case Intrinsic::x86_sse2_storeu_pd:
686 case Intrinsic::x86_sse2_storeu_dq:
687 case Intrinsic::x86_sse2_storel_dq:
Gabor Greif8ae30952010-06-30 09:15:28 +0000688 if (II->getArgOperand(0) == OperandVal)
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000689 isAddress = true;
690 break;
691 }
692 }
693 return isAddress;
694}
Chris Lattnere4ed42a2005-10-03 01:04:44 +0000695
Dan Gohman917ffe42009-03-09 21:01:17 +0000696/// getAccessType - Return the type of the memory being accessed.
Chris Lattner229907c2011-07-18 04:54:35 +0000697static Type *getAccessType(const Instruction *Inst) {
698 Type *AccessTy = Inst->getType();
Dan Gohman917ffe42009-03-09 21:01:17 +0000699 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst))
Dan Gohman14d13392009-05-18 16:45:28 +0000700 AccessTy = SI->getOperand(0)->getType();
Dan Gohman917ffe42009-03-09 21:01:17 +0000701 else if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
702 // Addressing modes can also be folded into prefetches and a variety
703 // of intrinsics.
704 switch (II->getIntrinsicID()) {
705 default: break;
706 case Intrinsic::x86_sse_storeu_ps:
707 case Intrinsic::x86_sse2_storeu_pd:
708 case Intrinsic::x86_sse2_storeu_dq:
709 case Intrinsic::x86_sse2_storel_dq:
Gabor Greif8ae30952010-06-30 09:15:28 +0000710 AccessTy = II->getArgOperand(0)->getType();
Dan Gohman917ffe42009-03-09 21:01:17 +0000711 break;
712 }
713 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000714
715 // All pointers have the same requirements, so canonicalize them to an
716 // arbitrary pointer type to minimize variation.
Chris Lattner229907c2011-07-18 04:54:35 +0000717 if (PointerType *PTy = dyn_cast<PointerType>(AccessTy))
Dan Gohman45774ce2010-02-12 10:34:29 +0000718 AccessTy = PointerType::get(IntegerType::get(PTy->getContext(), 1),
719 PTy->getAddressSpace());
720
Dan Gohman14d13392009-05-18 16:45:28 +0000721 return AccessTy;
Dan Gohman917ffe42009-03-09 21:01:17 +0000722}
723
Andrew Trick5df90962011-12-06 03:13:31 +0000724/// isExistingPhi - Return true if this AddRec is already a phi in its loop.
725static bool isExistingPhi(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
726 for (BasicBlock::iterator I = AR->getLoop()->getHeader()->begin();
727 PHINode *PN = dyn_cast<PHINode>(I); ++I) {
728 if (SE.isSCEVable(PN->getType()) &&
729 (SE.getEffectiveSCEVType(PN->getType()) ==
730 SE.getEffectiveSCEVType(AR->getType())) &&
731 SE.getSCEV(PN) == AR)
732 return true;
733 }
734 return false;
735}
736
Andrew Trickd5d2db92012-01-10 01:45:08 +0000737/// Check if expanding this expression is likely to incur significant cost. This
738/// is tricky because SCEV doesn't track which expressions are actually computed
739/// by the current IR.
740///
741/// We currently allow expansion of IV increments that involve adds,
742/// multiplication by constants, and AddRecs from existing phis.
743///
744/// TODO: Allow UDivExpr if we can find an existing IV increment that is an
745/// obvious multiple of the UDivExpr.
746static bool isHighCostExpansion(const SCEV *S,
Craig Topper71b7b682014-08-21 05:55:13 +0000747 SmallPtrSetImpl<const SCEV*> &Processed,
Andrew Trickd5d2db92012-01-10 01:45:08 +0000748 ScalarEvolution &SE) {
749 // Zero/One operand expressions
750 switch (S->getSCEVType()) {
751 case scUnknown:
752 case scConstant:
753 return false;
754 case scTruncate:
755 return isHighCostExpansion(cast<SCEVTruncateExpr>(S)->getOperand(),
756 Processed, SE);
757 case scZeroExtend:
758 return isHighCostExpansion(cast<SCEVZeroExtendExpr>(S)->getOperand(),
759 Processed, SE);
760 case scSignExtend:
761 return isHighCostExpansion(cast<SCEVSignExtendExpr>(S)->getOperand(),
762 Processed, SE);
763 }
764
David Blaikie70573dc2014-11-19 07:49:26 +0000765 if (!Processed.insert(S).second)
Andrew Trickd5d2db92012-01-10 01:45:08 +0000766 return false;
767
768 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
769 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
770 I != E; ++I) {
771 if (isHighCostExpansion(*I, Processed, SE))
772 return true;
773 }
774 return false;
775 }
776
777 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
778 if (Mul->getNumOperands() == 2) {
779 // Multiplication by a constant is ok
780 if (isa<SCEVConstant>(Mul->getOperand(0)))
781 return isHighCostExpansion(Mul->getOperand(1), Processed, SE);
782
783 // If we have the value of one operand, check if an existing
784 // multiplication already generates this expression.
785 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(Mul->getOperand(1))) {
786 Value *UVal = U->getValue();
Chandler Carruthcdf47882014-03-09 03:16:01 +0000787 for (User *UR : UVal->users()) {
Andrew Trick14779cc2012-03-26 20:28:37 +0000788 // If U is a constant, it may be used by a ConstantExpr.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000789 Instruction *UI = dyn_cast<Instruction>(UR);
790 if (UI && UI->getOpcode() == Instruction::Mul &&
791 SE.isSCEVable(UI->getType())) {
792 return SE.getSCEV(UI) == Mul;
Andrew Trickd5d2db92012-01-10 01:45:08 +0000793 }
794 }
795 }
796 }
797 }
798
799 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
800 if (isExistingPhi(AR, SE))
801 return false;
802 }
803
804 // Fow now, consider any other type of expression (div/mul/min/max) high cost.
805 return true;
806}
807
Dan Gohman45774ce2010-02-12 10:34:29 +0000808/// DeleteTriviallyDeadInstructions - If any of the instructions is the
809/// specified set are trivially dead, delete them and see if this makes any of
810/// their operands subsequently dead.
811static bool
812DeleteTriviallyDeadInstructions(SmallVectorImpl<WeakVH> &DeadInsts) {
813 bool Changed = false;
814
815 while (!DeadInsts.empty()) {
Richard Smithad9c8e82012-08-21 20:35:14 +0000816 Value *V = DeadInsts.pop_back_val();
817 Instruction *I = dyn_cast_or_null<Instruction>(V);
Dan Gohman45774ce2010-02-12 10:34:29 +0000818
Craig Topperf40110f2014-04-25 05:29:35 +0000819 if (!I || !isInstructionTriviallyDead(I))
Dan Gohman45774ce2010-02-12 10:34:29 +0000820 continue;
821
822 for (User::op_iterator OI = I->op_begin(), E = I->op_end(); OI != E; ++OI)
823 if (Instruction *U = dyn_cast<Instruction>(*OI)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000824 *OI = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000825 if (U->use_empty())
826 DeadInsts.push_back(U);
827 }
828
829 I->eraseFromParent();
830 Changed = true;
831 }
832
833 return Changed;
834}
835
Dan Gohman045f8192010-01-22 00:46:49 +0000836namespace {
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000837class LSRUse;
838}
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000839
840/// \brief Check if the addressing mode defined by \p F is completely
841/// folded in \p LU at isel time.
842/// This includes address-mode folding and special icmp tricks.
843/// This function returns true if \p LU can accommodate what \p F
844/// defines and up to 1 base + 1 scaled + offset.
845/// In other words, if \p F has several base registers, this function may
846/// still return true. Therefore, users still need to account for
847/// additional base registers and/or unfolded offsets to derive an
848/// accurate cost model.
849static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
850 const LSRUse &LU, const Formula &F);
Quentin Colombetbf490d42013-05-31 21:29:03 +0000851// Get the cost of the scaling factor used in F for LU.
852static unsigned getScalingFactorCost(const TargetTransformInfo &TTI,
853 const LSRUse &LU, const Formula &F);
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000854
855namespace {
Jim Grosbach60f48542009-11-17 17:53:56 +0000856
Dan Gohman45774ce2010-02-12 10:34:29 +0000857/// Cost - This class is used to measure and compare candidate formulae.
858class Cost {
859 /// TODO: Some of these could be merged. Also, a lexical ordering
860 /// isn't always optimal.
861 unsigned NumRegs;
862 unsigned AddRecCost;
863 unsigned NumIVMuls;
864 unsigned NumBaseAdds;
865 unsigned ImmCost;
866 unsigned SetupCost;
Quentin Colombetbf490d42013-05-31 21:29:03 +0000867 unsigned ScaleCost;
Nate Begemane68bcd12005-07-30 00:15:07 +0000868
Dan Gohman45774ce2010-02-12 10:34:29 +0000869public:
870 Cost()
871 : NumRegs(0), AddRecCost(0), NumIVMuls(0), NumBaseAdds(0), ImmCost(0),
Quentin Colombetbf490d42013-05-31 21:29:03 +0000872 SetupCost(0), ScaleCost(0) {}
Jim Grosbach60f48542009-11-17 17:53:56 +0000873
Dan Gohman45774ce2010-02-12 10:34:29 +0000874 bool operator<(const Cost &Other) const;
Dan Gohman045f8192010-01-22 00:46:49 +0000875
Tim Northoverbc6659c2014-01-22 13:27:00 +0000876 void Lose();
Dan Gohman045f8192010-01-22 00:46:49 +0000877
Andrew Trick784729d2011-09-26 23:11:04 +0000878#ifndef NDEBUG
879 // Once any of the metrics loses, they must all remain losers.
880 bool isValid() {
881 return ((NumRegs | AddRecCost | NumIVMuls | NumBaseAdds
Quentin Colombetbf490d42013-05-31 21:29:03 +0000882 | ImmCost | SetupCost | ScaleCost) != ~0u)
Andrew Trick784729d2011-09-26 23:11:04 +0000883 || ((NumRegs & AddRecCost & NumIVMuls & NumBaseAdds
Quentin Colombetbf490d42013-05-31 21:29:03 +0000884 & ImmCost & SetupCost & ScaleCost) == ~0u);
Andrew Trick784729d2011-09-26 23:11:04 +0000885 }
886#endif
887
888 bool isLoser() {
889 assert(isValid() && "invalid cost");
890 return NumRegs == ~0u;
891 }
892
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000893 void RateFormula(const TargetTransformInfo &TTI,
894 const Formula &F,
Craig Topper71b7b682014-08-21 05:55:13 +0000895 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman45774ce2010-02-12 10:34:29 +0000896 const DenseSet<const SCEV *> &VisitedRegs,
897 const Loop *L,
898 const SmallVectorImpl<int64_t> &Offsets,
Andrew Trick5df90962011-12-06 03:13:31 +0000899 ScalarEvolution &SE, DominatorTree &DT,
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000900 const LSRUse &LU,
Craig Topper71b7b682014-08-21 05:55:13 +0000901 SmallPtrSetImpl<const SCEV *> *LoserRegs = nullptr);
Dan Gohman045f8192010-01-22 00:46:49 +0000902
Dan Gohman45774ce2010-02-12 10:34:29 +0000903 void print(raw_ostream &OS) const;
904 void dump() const;
Dan Gohman045f8192010-01-22 00:46:49 +0000905
Dan Gohman45774ce2010-02-12 10:34:29 +0000906private:
907 void RateRegister(const SCEV *Reg,
Craig Topper71b7b682014-08-21 05:55:13 +0000908 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman45774ce2010-02-12 10:34:29 +0000909 const Loop *L,
910 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman5b18f032010-02-13 02:06:02 +0000911 void RatePrimaryRegister(const SCEV *Reg,
Craig Topper71b7b682014-08-21 05:55:13 +0000912 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman5b18f032010-02-13 02:06:02 +0000913 const Loop *L,
Andrew Trick5df90962011-12-06 03:13:31 +0000914 ScalarEvolution &SE, DominatorTree &DT,
Craig Topper71b7b682014-08-21 05:55:13 +0000915 SmallPtrSetImpl<const SCEV *> *LoserRegs);
Dan Gohman45774ce2010-02-12 10:34:29 +0000916};
917
918}
919
920/// RateRegister - Tally up interesting quantities from the given register.
921void Cost::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 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Reg)) {
Andrew Trickbc6de902011-09-29 01:33:38 +0000926 // If this is an addrec for another loop, don't second-guess its addrec phi
927 // nodes. LSR isn't currently smart enough to reason about more than one
Andrew Trickd97b83e2012-03-22 22:42:45 +0000928 // loop at a time. LSR has already run on inner loops, will not run on outer
929 // loops, and cannot be expected to change sibling loops.
930 if (AR->getLoop() != L) {
931 // If the AddRec exists, consider it's register free and leave it alone.
Andrew Trick5df90962011-12-06 03:13:31 +0000932 if (isExistingPhi(AR, SE))
933 return;
934
Andrew Trickd97b83e2012-03-22 22:42:45 +0000935 // Otherwise, do not consider this formula at all.
Tim Northoverbc6659c2014-01-22 13:27:00 +0000936 Lose();
Andrew Trickd97b83e2012-03-22 22:42:45 +0000937 return;
Dan Gohman45774ce2010-02-12 10:34:29 +0000938 }
Andrew Trickd97b83e2012-03-22 22:42:45 +0000939 AddRecCost += 1; /// TODO: This should be a function of the stride.
Dan Gohman45774ce2010-02-12 10:34:29 +0000940
Dan Gohman5b18f032010-02-13 02:06:02 +0000941 // Add the step value register, if it needs one.
942 // TODO: The non-affine case isn't precisely modeled here.
Andrew Trick8868fae2011-09-26 23:35:25 +0000943 if (!AR->isAffine() || !isa<SCEVConstant>(AR->getOperand(1))) {
944 if (!Regs.count(AR->getOperand(1))) {
Dan Gohman5b18f032010-02-13 02:06:02 +0000945 RateRegister(AR->getOperand(1), Regs, L, SE, DT);
Andrew Trick8868fae2011-09-26 23:35:25 +0000946 if (isLoser())
947 return;
948 }
949 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000950 }
Dan Gohman5b18f032010-02-13 02:06:02 +0000951 ++NumRegs;
952
953 // Rough heuristic; favor registers which don't require extra setup
954 // instructions in the preheader.
955 if (!isa<SCEVUnknown>(Reg) &&
956 !isa<SCEVConstant>(Reg) &&
957 !(isa<SCEVAddRecExpr>(Reg) &&
958 (isa<SCEVUnknown>(cast<SCEVAddRecExpr>(Reg)->getStart()) ||
959 isa<SCEVConstant>(cast<SCEVAddRecExpr>(Reg)->getStart()))))
960 ++SetupCost;
Dan Gohman34f37e02010-10-07 23:41:58 +0000961
962 NumIVMuls += isa<SCEVMulExpr>(Reg) &&
Dan Gohmanafd6db92010-11-17 21:23:15 +0000963 SE.hasComputableLoopEvolution(Reg, L);
Dan Gohman5b18f032010-02-13 02:06:02 +0000964}
965
966/// RatePrimaryRegister - Record this register in the set. If we haven't seen it
Andrew Trick5df90962011-12-06 03:13:31 +0000967/// before, rate it. Optional LoserRegs provides a way to declare any formula
968/// that refers to one of those regs an instant loser.
Dan Gohman5b18f032010-02-13 02:06:02 +0000969void Cost::RatePrimaryRegister(const SCEV *Reg,
Craig Topper71b7b682014-08-21 05:55:13 +0000970 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman0849ed52010-02-16 19:42:34 +0000971 const Loop *L,
Andrew Trick5df90962011-12-06 03:13:31 +0000972 ScalarEvolution &SE, DominatorTree &DT,
Craig Topper71b7b682014-08-21 05:55:13 +0000973 SmallPtrSetImpl<const SCEV *> *LoserRegs) {
Andrew Trick5df90962011-12-06 03:13:31 +0000974 if (LoserRegs && LoserRegs->count(Reg)) {
Tim Northoverbc6659c2014-01-22 13:27:00 +0000975 Lose();
Andrew Trick5df90962011-12-06 03:13:31 +0000976 return;
977 }
David Blaikie70573dc2014-11-19 07:49:26 +0000978 if (Regs.insert(Reg).second) {
Dan Gohman5b18f032010-02-13 02:06:02 +0000979 RateRegister(Reg, Regs, L, SE, DT);
Andrew Tricka1c01ba2013-03-19 04:14:57 +0000980 if (LoserRegs && isLoser())
Andrew Trick5df90962011-12-06 03:13:31 +0000981 LoserRegs->insert(Reg);
982 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000983}
984
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000985void Cost::RateFormula(const TargetTransformInfo &TTI,
986 const Formula &F,
Craig Topper71b7b682014-08-21 05:55:13 +0000987 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman45774ce2010-02-12 10:34:29 +0000988 const DenseSet<const SCEV *> &VisitedRegs,
989 const Loop *L,
990 const SmallVectorImpl<int64_t> &Offsets,
Andrew Trick5df90962011-12-06 03:13:31 +0000991 ScalarEvolution &SE, DominatorTree &DT,
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000992 const LSRUse &LU,
Craig Topper71b7b682014-08-21 05:55:13 +0000993 SmallPtrSetImpl<const SCEV *> *LoserRegs) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000994 assert(F.isCanonical() && "Cost is accurate only for canonical formula");
Dan Gohman45774ce2010-02-12 10:34:29 +0000995 // Tally up the registers.
996 if (const SCEV *ScaledReg = F.ScaledReg) {
997 if (VisitedRegs.count(ScaledReg)) {
Tim Northoverbc6659c2014-01-22 13:27:00 +0000998 Lose();
Dan Gohman45774ce2010-02-12 10:34:29 +0000999 return;
1000 }
Andrew Trick5df90962011-12-06 03:13:31 +00001001 RatePrimaryRegister(ScaledReg, Regs, L, SE, DT, LoserRegs);
Andrew Trick784729d2011-09-26 23:11:04 +00001002 if (isLoser())
1003 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00001004 }
1005 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
1006 E = F.BaseRegs.end(); I != E; ++I) {
1007 const SCEV *BaseReg = *I;
1008 if (VisitedRegs.count(BaseReg)) {
Tim Northoverbc6659c2014-01-22 13:27:00 +00001009 Lose();
Dan Gohman45774ce2010-02-12 10:34:29 +00001010 return;
1011 }
Andrew Trick5df90962011-12-06 03:13:31 +00001012 RatePrimaryRegister(BaseReg, Regs, L, SE, DT, LoserRegs);
Andrew Trick784729d2011-09-26 23:11:04 +00001013 if (isLoser())
1014 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00001015 }
1016
Dan Gohman6136e942011-05-03 00:46:49 +00001017 // Determine how many (unfolded) adds we'll need inside the loop.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001018 size_t NumBaseParts = F.getNumRegs();
Dan Gohman6136e942011-05-03 00:46:49 +00001019 if (NumBaseParts > 1)
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001020 // Do not count the base and a possible second register if the target
1021 // allows to fold 2 registers.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001022 NumBaseAdds +=
1023 NumBaseParts - (1 + (F.Scale && isAMCompletelyFolded(TTI, LU, F)));
1024 NumBaseAdds += (F.UnfoldedOffset != 0);
Dan Gohman45774ce2010-02-12 10:34:29 +00001025
Quentin Colombetbf490d42013-05-31 21:29:03 +00001026 // Accumulate non-free scaling amounts.
1027 ScaleCost += getScalingFactorCost(TTI, LU, F);
1028
Dan Gohman45774ce2010-02-12 10:34:29 +00001029 // Tally up the non-zero immediates.
1030 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
1031 E = Offsets.end(); I != E; ++I) {
Chandler Carruth6e479322013-01-07 15:04:40 +00001032 int64_t Offset = (uint64_t)*I + F.BaseOffset;
1033 if (F.BaseGV)
Dan Gohman45774ce2010-02-12 10:34:29 +00001034 ImmCost += 64; // Handle symbolic values conservatively.
1035 // TODO: This should probably be the pointer size.
1036 else if (Offset != 0)
1037 ImmCost += APInt(64, Offset, true).getMinSignedBits();
1038 }
Andrew Trick784729d2011-09-26 23:11:04 +00001039 assert(isValid() && "invalid cost");
Dan Gohman45774ce2010-02-12 10:34:29 +00001040}
1041
Tim Northoverbc6659c2014-01-22 13:27:00 +00001042/// Lose - Set this cost to a losing value.
1043void Cost::Lose() {
Dan Gohman45774ce2010-02-12 10:34:29 +00001044 NumRegs = ~0u;
1045 AddRecCost = ~0u;
1046 NumIVMuls = ~0u;
1047 NumBaseAdds = ~0u;
1048 ImmCost = ~0u;
1049 SetupCost = ~0u;
Quentin Colombetbf490d42013-05-31 21:29:03 +00001050 ScaleCost = ~0u;
Dan Gohman45774ce2010-02-12 10:34:29 +00001051}
1052
1053/// operator< - Choose the lower cost.
1054bool Cost::operator<(const Cost &Other) const {
Benjamin Kramerb2f034b2014-03-03 19:58:30 +00001055 return std::tie(NumRegs, AddRecCost, NumIVMuls, NumBaseAdds, ScaleCost,
1056 ImmCost, SetupCost) <
1057 std::tie(Other.NumRegs, Other.AddRecCost, Other.NumIVMuls,
1058 Other.NumBaseAdds, Other.ScaleCost, Other.ImmCost,
1059 Other.SetupCost);
Dan Gohman45774ce2010-02-12 10:34:29 +00001060}
1061
1062void Cost::print(raw_ostream &OS) const {
1063 OS << NumRegs << " reg" << (NumRegs == 1 ? "" : "s");
1064 if (AddRecCost != 0)
1065 OS << ", with addrec cost " << AddRecCost;
1066 if (NumIVMuls != 0)
1067 OS << ", plus " << NumIVMuls << " IV mul" << (NumIVMuls == 1 ? "" : "s");
1068 if (NumBaseAdds != 0)
1069 OS << ", plus " << NumBaseAdds << " base add"
1070 << (NumBaseAdds == 1 ? "" : "s");
Quentin Colombetbf490d42013-05-31 21:29:03 +00001071 if (ScaleCost != 0)
1072 OS << ", plus " << ScaleCost << " scale cost";
Dan Gohman45774ce2010-02-12 10:34:29 +00001073 if (ImmCost != 0)
1074 OS << ", plus " << ImmCost << " imm cost";
1075 if (SetupCost != 0)
1076 OS << ", plus " << SetupCost << " setup cost";
1077}
1078
Manman Ren49d684e2012-09-12 05:06:18 +00001079#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +00001080void Cost::dump() const {
1081 print(errs()); errs() << '\n';
1082}
Manman Renc3366cc2012-09-06 19:55:56 +00001083#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00001084
1085namespace {
1086
1087/// LSRFixup - An operand value in an instruction which is to be replaced
1088/// with some equivalent, possibly strength-reduced, replacement.
1089struct LSRFixup {
1090 /// UserInst - The instruction which will be updated.
1091 Instruction *UserInst;
1092
1093 /// OperandValToReplace - The operand of the instruction which will
1094 /// be replaced. The operand may be used more than once; every instance
1095 /// will be replaced.
1096 Value *OperandValToReplace;
1097
Dan Gohmand006ab92010-04-07 22:27:08 +00001098 /// PostIncLoops - If this user is to use the post-incremented value of an
Dan Gohman45774ce2010-02-12 10:34:29 +00001099 /// induction variable, this variable is non-null and holds the loop
1100 /// associated with the induction variable.
Dan Gohmand006ab92010-04-07 22:27:08 +00001101 PostIncLoopSet PostIncLoops;
Dan Gohman45774ce2010-02-12 10:34:29 +00001102
1103 /// LUIdx - The index of the LSRUse describing the expression which
1104 /// this fixup needs, minus an offset (below).
1105 size_t LUIdx;
1106
1107 /// Offset - A constant offset to be added to the LSRUse expression.
1108 /// This allows multiple fixups to share the same LSRUse with different
1109 /// offsets, for example in an unrolled loop.
1110 int64_t Offset;
1111
Dan Gohmand006ab92010-04-07 22:27:08 +00001112 bool isUseFullyOutsideLoop(const Loop *L) const;
1113
Dan Gohman45774ce2010-02-12 10:34:29 +00001114 LSRFixup();
1115
1116 void print(raw_ostream &OS) const;
1117 void dump() const;
1118};
1119
1120}
1121
1122LSRFixup::LSRFixup()
Craig Topperf40110f2014-04-25 05:29:35 +00001123 : UserInst(nullptr), OperandValToReplace(nullptr), LUIdx(~size_t(0)),
1124 Offset(0) {}
Dan Gohman45774ce2010-02-12 10:34:29 +00001125
Dan Gohmand006ab92010-04-07 22:27:08 +00001126/// isUseFullyOutsideLoop - Test whether this fixup always uses its
1127/// value outside of the given loop.
1128bool LSRFixup::isUseFullyOutsideLoop(const Loop *L) const {
1129 // PHI nodes use their value in their incoming blocks.
1130 if (const PHINode *PN = dyn_cast<PHINode>(UserInst)) {
1131 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
1132 if (PN->getIncomingValue(i) == OperandValToReplace &&
1133 L->contains(PN->getIncomingBlock(i)))
1134 return false;
1135 return true;
1136 }
1137
1138 return !L->contains(UserInst);
1139}
1140
Dan Gohman45774ce2010-02-12 10:34:29 +00001141void LSRFixup::print(raw_ostream &OS) const {
1142 OS << "UserInst=";
1143 // Store is common and interesting enough to be worth special-casing.
1144 if (StoreInst *Store = dyn_cast<StoreInst>(UserInst)) {
1145 OS << "store ";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001146 Store->getOperand(0)->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001147 } else if (UserInst->getType()->isVoidTy())
1148 OS << UserInst->getOpcodeName();
1149 else
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001150 UserInst->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001151
1152 OS << ", OperandValToReplace=";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001153 OperandValToReplace->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001154
Dan Gohmand006ab92010-04-07 22:27:08 +00001155 for (PostIncLoopSet::const_iterator I = PostIncLoops.begin(),
1156 E = PostIncLoops.end(); I != E; ++I) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001157 OS << ", PostIncLoop=";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001158 (*I)->getHeader()->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001159 }
1160
1161 if (LUIdx != ~size_t(0))
1162 OS << ", LUIdx=" << LUIdx;
1163
1164 if (Offset != 0)
1165 OS << ", Offset=" << Offset;
1166}
1167
Manman Ren49d684e2012-09-12 05:06:18 +00001168#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +00001169void LSRFixup::dump() const {
1170 print(errs()); errs() << '\n';
1171}
Manman Renc3366cc2012-09-06 19:55:56 +00001172#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00001173
1174namespace {
1175
1176/// UniquifierDenseMapInfo - A DenseMapInfo implementation for holding
1177/// DenseMaps and DenseSets of sorted SmallVectors of const SCEV*.
1178struct UniquifierDenseMapInfo {
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001179 static SmallVector<const SCEV *, 4> getEmptyKey() {
1180 SmallVector<const SCEV *, 4> V;
Dan Gohman45774ce2010-02-12 10:34:29 +00001181 V.push_back(reinterpret_cast<const SCEV *>(-1));
1182 return V;
1183 }
1184
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001185 static SmallVector<const SCEV *, 4> getTombstoneKey() {
1186 SmallVector<const SCEV *, 4> V;
Dan Gohman45774ce2010-02-12 10:34:29 +00001187 V.push_back(reinterpret_cast<const SCEV *>(-2));
1188 return V;
1189 }
1190
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001191 static unsigned getHashValue(const SmallVector<const SCEV *, 4> &V) {
Benjamin Kramer62fb0cf2014-03-15 17:17:48 +00001192 return static_cast<unsigned>(hash_combine_range(V.begin(), V.end()));
Dan Gohman45774ce2010-02-12 10:34:29 +00001193 }
1194
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001195 static bool isEqual(const SmallVector<const SCEV *, 4> &LHS,
1196 const SmallVector<const SCEV *, 4> &RHS) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001197 return LHS == RHS;
1198 }
1199};
1200
1201/// LSRUse - This class holds the state that LSR keeps for each use in
1202/// IVUsers, as well as uses invented by LSR itself. It includes information
1203/// about what kinds of things can be folded into the user, information about
1204/// the user itself, and information about how the use may be satisfied.
1205/// TODO: Represent multiple users of the same expression in common?
1206class LSRUse {
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001207 DenseSet<SmallVector<const SCEV *, 4>, UniquifierDenseMapInfo> Uniquifier;
Dan Gohman45774ce2010-02-12 10:34:29 +00001208
1209public:
1210 /// KindType - An enum for a kind of use, indicating what types of
1211 /// scaled and immediate operands it might support.
1212 enum KindType {
1213 Basic, ///< A normal use, with no folding.
1214 Special, ///< A special case of basic, allowing -1 scales.
Nadav Rotem4dc976f2012-10-19 21:28:43 +00001215 Address, ///< An address use; folding according to TargetLowering
Dan Gohman45774ce2010-02-12 10:34:29 +00001216 ICmpZero ///< An equality icmp with both operands folded into one.
1217 // TODO: Add a generic icmp too?
Dan Gohman045f8192010-01-22 00:46:49 +00001218 };
Dan Gohman45774ce2010-02-12 10:34:29 +00001219
Benjamin Kramer62fb0cf2014-03-15 17:17:48 +00001220 typedef PointerIntPair<const SCEV *, 2, KindType> SCEVUseKindPair;
1221
Dan Gohman45774ce2010-02-12 10:34:29 +00001222 KindType Kind;
Chris Lattner229907c2011-07-18 04:54:35 +00001223 Type *AccessTy;
Dan Gohman45774ce2010-02-12 10:34:29 +00001224
1225 SmallVector<int64_t, 8> Offsets;
1226 int64_t MinOffset;
1227 int64_t MaxOffset;
1228
1229 /// AllFixupsOutsideLoop - This records whether all of the fixups using this
1230 /// LSRUse are outside of the loop, in which case some special-case heuristics
1231 /// may be used.
1232 bool AllFixupsOutsideLoop;
1233
Andrew Trick57243da2013-10-25 21:35:56 +00001234 /// RigidFormula is set to true to guarantee that this use will be associated
1235 /// with a single formula--the one that initially matched. Some SCEV
1236 /// expressions cannot be expanded. This allows LSR to consider the registers
1237 /// used by those expressions without the need to expand them later after
1238 /// changing the formula.
1239 bool RigidFormula;
1240
Dan Gohman14152082010-07-15 20:24:58 +00001241 /// WidestFixupType - This records the widest use type for any fixup using
1242 /// this LSRUse. FindUseWithSimilarFormula can't consider uses with different
1243 /// max fixup widths to be equivalent, because the narrower one may be relying
1244 /// on the implicit truncation to truncate away bogus bits.
Chris Lattner229907c2011-07-18 04:54:35 +00001245 Type *WidestFixupType;
Dan Gohman14152082010-07-15 20:24:58 +00001246
Dan Gohman45774ce2010-02-12 10:34:29 +00001247 /// Formulae - A list of ways to build a value that can satisfy this user.
1248 /// After the list is populated, one of these is selected heuristically and
1249 /// used to formulate a replacement for OperandValToReplace in UserInst.
1250 SmallVector<Formula, 12> Formulae;
1251
1252 /// Regs - The set of register candidates used by all formulae in this LSRUse.
1253 SmallPtrSet<const SCEV *, 4> Regs;
1254
Chris Lattner229907c2011-07-18 04:54:35 +00001255 LSRUse(KindType K, Type *T) : Kind(K), AccessTy(T),
Dan Gohman45774ce2010-02-12 10:34:29 +00001256 MinOffset(INT64_MAX),
1257 MaxOffset(INT64_MIN),
Dan Gohman14152082010-07-15 20:24:58 +00001258 AllFixupsOutsideLoop(true),
Andrew Trick57243da2013-10-25 21:35:56 +00001259 RigidFormula(false),
Craig Topperf40110f2014-04-25 05:29:35 +00001260 WidestFixupType(nullptr) {}
Dan Gohman45774ce2010-02-12 10:34:29 +00001261
Dan Gohman20fab452010-05-19 23:43:12 +00001262 bool HasFormulaWithSameRegs(const Formula &F) const;
Dan Gohman8c16b382010-02-22 04:11:59 +00001263 bool InsertFormula(const Formula &F);
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00001264 void DeleteFormula(Formula &F);
Dan Gohman4cf99b52010-05-18 23:42:37 +00001265 void RecomputeRegs(size_t LUIdx, RegUseTracker &Reguses);
Dan Gohman45774ce2010-02-12 10:34:29 +00001266
Dan Gohman45774ce2010-02-12 10:34:29 +00001267 void print(raw_ostream &OS) const;
1268 void dump() const;
1269};
1270
Dan Gohman297fb8b2010-06-19 21:21:39 +00001271}
1272
Dan Gohman20fab452010-05-19 23:43:12 +00001273/// HasFormula - Test whether this use as a formula which has the same
1274/// registers as the given formula.
1275bool LSRUse::HasFormulaWithSameRegs(const Formula &F) const {
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001276 SmallVector<const SCEV *, 4> Key = F.BaseRegs;
Dan Gohman20fab452010-05-19 23:43:12 +00001277 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1278 // Unstable sort by host order ok, because this is only used for uniquifying.
1279 std::sort(Key.begin(), Key.end());
1280 return Uniquifier.count(Key);
1281}
1282
Dan Gohman45774ce2010-02-12 10:34:29 +00001283/// InsertFormula - If the given formula has not yet been inserted, add it to
1284/// the list, and return true. Return false otherwise.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001285/// The formula must be in canonical form.
Dan Gohman8c16b382010-02-22 04:11:59 +00001286bool LSRUse::InsertFormula(const Formula &F) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001287 assert(F.isCanonical() && "Invalid canonical representation");
1288
Andrew Trick57243da2013-10-25 21:35:56 +00001289 if (!Formulae.empty() && RigidFormula)
1290 return false;
1291
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001292 SmallVector<const SCEV *, 4> Key = F.BaseRegs;
Dan Gohman45774ce2010-02-12 10:34:29 +00001293 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1294 // Unstable sort by host order ok, because this is only used for uniquifying.
1295 std::sort(Key.begin(), Key.end());
1296
1297 if (!Uniquifier.insert(Key).second)
1298 return false;
1299
1300 // Using a register to hold the value of 0 is not profitable.
1301 assert((!F.ScaledReg || !F.ScaledReg->isZero()) &&
1302 "Zero allocated in a scaled register!");
1303#ifndef NDEBUG
1304 for (SmallVectorImpl<const SCEV *>::const_iterator I =
1305 F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I)
1306 assert(!(*I)->isZero() && "Zero allocated in a base register!");
1307#endif
1308
1309 // Add the formula to the list.
1310 Formulae.push_back(F);
1311
1312 // Record registers now being used by this use.
Dan Gohman45774ce2010-02-12 10:34:29 +00001313 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001314 if (F.ScaledReg)
1315 Regs.insert(F.ScaledReg);
Dan Gohman45774ce2010-02-12 10:34:29 +00001316
1317 return true;
Dan Gohman045f8192010-01-22 00:46:49 +00001318}
1319
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00001320/// DeleteFormula - Remove the given formula from this use's list.
1321void LSRUse::DeleteFormula(Formula &F) {
Dan Gohman80a96082010-05-20 15:17:54 +00001322 if (&F != &Formulae.back())
1323 std::swap(F, Formulae.back());
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00001324 Formulae.pop_back();
1325}
1326
Dan Gohman4cf99b52010-05-18 23:42:37 +00001327/// RecomputeRegs - Recompute the Regs field, and update RegUses.
1328void LSRUse::RecomputeRegs(size_t LUIdx, RegUseTracker &RegUses) {
1329 // Now that we've filtered out some formulae, recompute the Regs set.
Benjamin Kramer1c2beed2015-02-19 17:19:43 +00001330 SmallPtrSet<const SCEV *, 4> OldRegs = std::move(Regs);
Dan Gohman4cf99b52010-05-18 23:42:37 +00001331 Regs.clear();
Benjamin Kramer1c2beed2015-02-19 17:19:43 +00001332 for (const Formula &F : Formulae) {
Dan Gohman4cf99b52010-05-18 23:42:37 +00001333 if (F.ScaledReg) Regs.insert(F.ScaledReg);
1334 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1335 }
1336
1337 // Update the RegTracker.
Craig Topper46276792014-08-24 23:23:06 +00001338 for (const SCEV *S : OldRegs)
1339 if (!Regs.count(S))
1340 RegUses.DropRegister(S, LUIdx);
Dan Gohman4cf99b52010-05-18 23:42:37 +00001341}
1342
Dan Gohman45774ce2010-02-12 10:34:29 +00001343void LSRUse::print(raw_ostream &OS) const {
1344 OS << "LSR Use: Kind=";
1345 switch (Kind) {
1346 case Basic: OS << "Basic"; break;
1347 case Special: OS << "Special"; break;
1348 case ICmpZero: OS << "ICmpZero"; break;
1349 case Address:
1350 OS << "Address of ";
Duncan Sands19d0b472010-02-16 11:11:14 +00001351 if (AccessTy->isPointerTy())
Dan Gohman45774ce2010-02-12 10:34:29 +00001352 OS << "pointer"; // the full pointer type could be really verbose
1353 else
1354 OS << *AccessTy;
Evan Cheng133694d2007-10-25 09:11:16 +00001355 }
1356
Dan Gohman45774ce2010-02-12 10:34:29 +00001357 OS << ", Offsets={";
1358 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
1359 E = Offsets.end(); I != E; ++I) {
1360 OS << *I;
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001361 if (std::next(I) != E)
Dan Gohman45774ce2010-02-12 10:34:29 +00001362 OS << ',';
Dan Gohman045f8192010-01-22 00:46:49 +00001363 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001364 OS << '}';
Dan Gohman045f8192010-01-22 00:46:49 +00001365
Dan Gohman45774ce2010-02-12 10:34:29 +00001366 if (AllFixupsOutsideLoop)
1367 OS << ", all-fixups-outside-loop";
Dan Gohman14152082010-07-15 20:24:58 +00001368
1369 if (WidestFixupType)
1370 OS << ", widest fixup type: " << *WidestFixupType;
Dan Gohman045f8192010-01-22 00:46:49 +00001371}
1372
Manman Ren49d684e2012-09-12 05:06:18 +00001373#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +00001374void LSRUse::dump() const {
1375 print(errs()); errs() << '\n';
1376}
Manman Renc3366cc2012-09-06 19:55:56 +00001377#endif
Dan Gohman045f8192010-01-22 00:46:49 +00001378
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001379static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1380 LSRUse::KindType Kind, Type *AccessTy,
1381 GlobalValue *BaseGV, int64_t BaseOffset,
1382 bool HasBaseReg, int64_t Scale) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001383 switch (Kind) {
1384 case LSRUse::Address:
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001385 return TTI.isLegalAddressingMode(AccessTy, BaseGV, BaseOffset, HasBaseReg, Scale);
Dan Gohman45774ce2010-02-12 10:34:29 +00001386
1387 // Otherwise, just guess that reg+reg addressing is legal.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001388 //return ;
Dan Gohman45774ce2010-02-12 10:34:29 +00001389
1390 case LSRUse::ICmpZero:
1391 // There's not even a target hook for querying whether it would be legal to
1392 // fold a GV into an ICmp.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001393 if (BaseGV)
Dan Gohman45774ce2010-02-12 10:34:29 +00001394 return false;
1395
1396 // ICmp only has two operands; don't allow more than two non-trivial parts.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001397 if (Scale != 0 && HasBaseReg && BaseOffset != 0)
Dan Gohman45774ce2010-02-12 10:34:29 +00001398 return false;
1399
1400 // ICmp only supports no scale or a -1 scale, as we can "fold" a -1 scale by
1401 // putting the scaled register in the other operand of the icmp.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001402 if (Scale != 0 && Scale != -1)
Dan Gohman45774ce2010-02-12 10:34:29 +00001403 return false;
1404
1405 // If we have low-level target information, ask the target if it can fold an
1406 // integer immediate on an icmp.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001407 if (BaseOffset != 0) {
Jakob Stoklund Olesenf2390e82012-04-05 03:10:56 +00001408 // We have one of:
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001409 // ICmpZero BaseReg + BaseOffset => ICmp BaseReg, -BaseOffset
1410 // ICmpZero -1*ScaleReg + BaseOffset => ICmp ScaleReg, BaseOffset
Jakob Stoklund Olesenf2390e82012-04-05 03:10:56 +00001411 // Offs is the ICmp immediate.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001412 if (Scale == 0)
1413 // The cast does the right thing with INT64_MIN.
1414 BaseOffset = -(uint64_t)BaseOffset;
1415 return TTI.isLegalICmpImmediate(BaseOffset);
Dan Gohman045f8192010-01-22 00:46:49 +00001416 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001417
Jakob Stoklund Olesenf2390e82012-04-05 03:10:56 +00001418 // ICmpZero BaseReg + -1*ScaleReg => ICmp BaseReg, ScaleReg
Dan Gohman45774ce2010-02-12 10:34:29 +00001419 return true;
1420
1421 case LSRUse::Basic:
1422 // Only handle single-register values.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001423 return !BaseGV && Scale == 0 && BaseOffset == 0;
Dan Gohman45774ce2010-02-12 10:34:29 +00001424
1425 case LSRUse::Special:
Andrew Trickaca8fb32012-06-15 20:07:26 +00001426 // Special case Basic to handle -1 scales.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001427 return !BaseGV && (Scale == 0 || Scale == -1) && BaseOffset == 0;
Dan Gohman045f8192010-01-22 00:46:49 +00001428 }
1429
David Blaikie46a9f012012-01-20 21:51:11 +00001430 llvm_unreachable("Invalid LSRUse Kind!");
Dan Gohman045f8192010-01-22 00:46:49 +00001431}
1432
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001433static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1434 int64_t MinOffset, int64_t MaxOffset,
1435 LSRUse::KindType Kind, Type *AccessTy,
1436 GlobalValue *BaseGV, int64_t BaseOffset,
1437 bool HasBaseReg, int64_t Scale) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001438 // Check for overflow.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001439 if (((int64_t)((uint64_t)BaseOffset + MinOffset) > BaseOffset) !=
Dan Gohman45774ce2010-02-12 10:34:29 +00001440 (MinOffset > 0))
1441 return false;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001442 MinOffset = (uint64_t)BaseOffset + MinOffset;
1443 if (((int64_t)((uint64_t)BaseOffset + MaxOffset) > BaseOffset) !=
1444 (MaxOffset > 0))
1445 return false;
1446 MaxOffset = (uint64_t)BaseOffset + MaxOffset;
1447
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001448 return isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, MinOffset,
1449 HasBaseReg, Scale) &&
1450 isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, MaxOffset,
1451 HasBaseReg, Scale);
1452}
1453
1454static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1455 int64_t MinOffset, int64_t MaxOffset,
1456 LSRUse::KindType Kind, Type *AccessTy,
1457 const Formula &F) {
1458 // For the purpose of isAMCompletelyFolded either having a canonical formula
1459 // or a scale not equal to zero is correct.
1460 // Problems may arise from non canonical formulae having a scale == 0.
1461 // Strictly speaking it would best to just rely on canonical formulae.
1462 // However, when we generate the scaled formulae, we first check that the
1463 // scaling factor is profitable before computing the actual ScaledReg for
1464 // compile time sake.
1465 assert((F.isCanonical() || F.Scale != 0));
1466 return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy,
1467 F.BaseGV, F.BaseOffset, F.HasBaseReg, F.Scale);
1468}
1469
1470/// isLegalUse - Test whether we know how to expand the current formula.
1471static bool isLegalUse(const TargetTransformInfo &TTI, int64_t MinOffset,
1472 int64_t MaxOffset, LSRUse::KindType Kind, Type *AccessTy,
1473 GlobalValue *BaseGV, int64_t BaseOffset, bool HasBaseReg,
1474 int64_t Scale) {
1475 // We know how to expand completely foldable formulae.
1476 return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, BaseGV,
1477 BaseOffset, HasBaseReg, Scale) ||
1478 // Or formulae that use a base register produced by a sum of base
1479 // registers.
1480 (Scale == 1 &&
1481 isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy,
1482 BaseGV, BaseOffset, true, 0));
Dan Gohman045f8192010-01-22 00:46:49 +00001483}
1484
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001485static bool isLegalUse(const TargetTransformInfo &TTI, int64_t MinOffset,
1486 int64_t MaxOffset, LSRUse::KindType Kind, Type *AccessTy,
1487 const Formula &F) {
Chandler Carruth6e479322013-01-07 15:04:40 +00001488 return isLegalUse(TTI, MinOffset, MaxOffset, Kind, AccessTy, F.BaseGV,
1489 F.BaseOffset, F.HasBaseReg, F.Scale);
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001490}
1491
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001492static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1493 const LSRUse &LU, const Formula &F) {
1494 return isAMCompletelyFolded(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind,
1495 LU.AccessTy, F.BaseGV, F.BaseOffset, F.HasBaseReg,
1496 F.Scale);
1497}
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001498
Quentin Colombetbf490d42013-05-31 21:29:03 +00001499static unsigned getScalingFactorCost(const TargetTransformInfo &TTI,
1500 const LSRUse &LU, const Formula &F) {
1501 if (!F.Scale)
1502 return 0;
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001503
1504 // If the use is not completely folded in that instruction, we will have to
1505 // pay an extra cost only for scale != 1.
1506 if (!isAMCompletelyFolded(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind,
1507 LU.AccessTy, F))
1508 return F.Scale != 1;
Quentin Colombetbf490d42013-05-31 21:29:03 +00001509
1510 switch (LU.Kind) {
1511 case LSRUse::Address: {
Quentin Colombet145eb972013-06-19 19:59:41 +00001512 // Check the scaling factor cost with both the min and max offsets.
1513 int ScaleCostMinOffset =
1514 TTI.getScalingFactorCost(LU.AccessTy, F.BaseGV,
1515 F.BaseOffset + LU.MinOffset,
1516 F.HasBaseReg, F.Scale);
1517 int ScaleCostMaxOffset =
1518 TTI.getScalingFactorCost(LU.AccessTy, F.BaseGV,
1519 F.BaseOffset + LU.MaxOffset,
1520 F.HasBaseReg, F.Scale);
1521
1522 assert(ScaleCostMinOffset >= 0 && ScaleCostMaxOffset >= 0 &&
1523 "Legal addressing mode has an illegal cost!");
1524 return std::max(ScaleCostMinOffset, ScaleCostMaxOffset);
Quentin Colombetbf490d42013-05-31 21:29:03 +00001525 }
1526 case LSRUse::ICmpZero:
Quentin Colombetbf490d42013-05-31 21:29:03 +00001527 case LSRUse::Basic:
1528 case LSRUse::Special:
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001529 // The use is completely folded, i.e., everything is folded into the
1530 // instruction.
Quentin Colombetbf490d42013-05-31 21:29:03 +00001531 return 0;
1532 }
1533
1534 llvm_unreachable("Invalid LSRUse Kind!");
1535}
1536
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001537static bool isAlwaysFoldable(const TargetTransformInfo &TTI,
Chris Lattner229907c2011-07-18 04:54:35 +00001538 LSRUse::KindType Kind, Type *AccessTy,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001539 GlobalValue *BaseGV, int64_t BaseOffset,
1540 bool HasBaseReg) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001541 // Fast-path: zero is always foldable.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001542 if (BaseOffset == 0 && !BaseGV) return true;
Dan Gohman045f8192010-01-22 00:46:49 +00001543
Dan Gohman45774ce2010-02-12 10:34:29 +00001544 // Conservatively, create an address with an immediate and a
1545 // base and a scale.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001546 int64_t Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman045f8192010-01-22 00:46:49 +00001547
Dan Gohman20fab452010-05-19 23:43:12 +00001548 // Canonicalize a scale of 1 to a base register if the formula doesn't
1549 // already have a base register.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001550 if (!HasBaseReg && Scale == 1) {
1551 Scale = 0;
1552 HasBaseReg = true;
Dan Gohman20fab452010-05-19 23:43:12 +00001553 }
1554
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001555 return isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, BaseOffset,
1556 HasBaseReg, Scale);
Dan Gohman045f8192010-01-22 00:46:49 +00001557}
1558
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001559static bool isAlwaysFoldable(const TargetTransformInfo &TTI,
1560 ScalarEvolution &SE, int64_t MinOffset,
1561 int64_t MaxOffset, LSRUse::KindType Kind,
1562 Type *AccessTy, const SCEV *S, bool HasBaseReg) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001563 // Fast-path: zero is always foldable.
1564 if (S->isZero()) return true;
1565
1566 // Conservatively, create an address with an immediate and a
1567 // base and a scale.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001568 int64_t BaseOffset = ExtractImmediate(S, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +00001569 GlobalValue *BaseGV = ExtractSymbol(S, SE);
1570
1571 // If there's anything else involved, it's not foldable.
1572 if (!S->isZero()) return false;
1573
1574 // Fast-path: zero is always foldable.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001575 if (BaseOffset == 0 && !BaseGV) return true;
Dan Gohman45774ce2010-02-12 10:34:29 +00001576
1577 // Conservatively, create an address with an immediate and a
1578 // base and a scale.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001579 int64_t Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman45774ce2010-02-12 10:34:29 +00001580
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001581 return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, BaseGV,
1582 BaseOffset, HasBaseReg, Scale);
Dan Gohman045f8192010-01-22 00:46:49 +00001583}
1584
Dan Gohman297fb8b2010-06-19 21:21:39 +00001585namespace {
1586
Andrew Trick29fe5f02012-01-09 19:50:34 +00001587/// IVInc - An individual increment in a Chain of IV increments.
1588/// Relate an IV user to an expression that computes the IV it uses from the IV
1589/// used by the previous link in the Chain.
1590///
1591/// For the head of a chain, IncExpr holds the absolute SCEV expression for the
1592/// original IVOperand. The head of the chain's IVOperand is only valid during
1593/// chain collection, before LSR replaces IV users. During chain generation,
1594/// IncExpr can be used to find the new IVOperand that computes the same
1595/// expression.
1596struct IVInc {
1597 Instruction *UserInst;
1598 Value* IVOperand;
1599 const SCEV *IncExpr;
1600
1601 IVInc(Instruction *U, Value *O, const SCEV *E):
1602 UserInst(U), IVOperand(O), IncExpr(E) {}
1603};
1604
1605// IVChain - The list of IV increments in program order.
1606// We typically add the head of a chain without finding subsequent links.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001607struct IVChain {
1608 SmallVector<IVInc,1> Incs;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001609 const SCEV *ExprBase;
1610
Craig Topperf40110f2014-04-25 05:29:35 +00001611 IVChain() : ExprBase(nullptr) {}
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001612
1613 IVChain(const IVInc &Head, const SCEV *Base)
1614 : Incs(1, Head), ExprBase(Base) {}
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001615
1616 typedef SmallVectorImpl<IVInc>::const_iterator const_iterator;
1617
1618 // begin - return the first increment in the chain.
1619 const_iterator begin() const {
1620 assert(!Incs.empty());
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001621 return std::next(Incs.begin());
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001622 }
1623 const_iterator end() const {
1624 return Incs.end();
1625 }
1626
1627 // hasIncs - Returns true if this chain contains any increments.
1628 bool hasIncs() const { return Incs.size() >= 2; }
1629
1630 // add - Add an IVInc to the end of this chain.
1631 void add(const IVInc &X) { Incs.push_back(X); }
1632
1633 // tailUserInst - Returns the last UserInst in the chain.
1634 Instruction *tailUserInst() const { return Incs.back().UserInst; }
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001635
1636 // isProfitableIncrement - Returns true if IncExpr can be profitably added to
1637 // this chain.
1638 bool isProfitableIncrement(const SCEV *OperExpr,
1639 const SCEV *IncExpr,
1640 ScalarEvolution&);
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001641};
Andrew Trick29fe5f02012-01-09 19:50:34 +00001642
1643/// ChainUsers - Helper for CollectChains to track multiple IV increment uses.
1644/// Distinguish between FarUsers that definitely cross IV increments and
1645/// NearUsers that may be used between IV increments.
1646struct ChainUsers {
1647 SmallPtrSet<Instruction*, 4> FarUsers;
1648 SmallPtrSet<Instruction*, 4> NearUsers;
1649};
1650
Dan Gohman45774ce2010-02-12 10:34:29 +00001651/// LSRInstance - This class holds state for the main loop strength reduction
1652/// logic.
1653class LSRInstance {
1654 IVUsers &IU;
1655 ScalarEvolution &SE;
1656 DominatorTree &DT;
Dan Gohman607e02b2010-04-09 22:07:05 +00001657 LoopInfo &LI;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001658 const TargetTransformInfo &TTI;
Dan Gohman45774ce2010-02-12 10:34:29 +00001659 Loop *const L;
1660 bool Changed;
1661
1662 /// IVIncInsertPos - This is the insert position that the current loop's
1663 /// induction variable increment should be placed. In simple loops, this is
1664 /// the latch block's terminator. But in more complicated cases, this is a
1665 /// position which will dominate all the in-loop post-increment users.
1666 Instruction *IVIncInsertPos;
1667
1668 /// Factors - Interesting factors between use strides.
1669 SmallSetVector<int64_t, 8> Factors;
1670
1671 /// Types - Interesting use types, to facilitate truncation reuse.
Chris Lattner229907c2011-07-18 04:54:35 +00001672 SmallSetVector<Type *, 4> Types;
Dan Gohman45774ce2010-02-12 10:34:29 +00001673
1674 /// Fixups - The list of operands which are to be replaced.
1675 SmallVector<LSRFixup, 16> Fixups;
1676
1677 /// Uses - The list of interesting uses.
1678 SmallVector<LSRUse, 16> Uses;
1679
1680 /// RegUses - Track which uses use which register candidates.
1681 RegUseTracker RegUses;
1682
Andrew Trick29fe5f02012-01-09 19:50:34 +00001683 // Limit the number of chains to avoid quadratic behavior. We don't expect to
1684 // have more than a few IV increment chains in a loop. Missing a Chain falls
1685 // back to normal LSR behavior for those uses.
1686 static const unsigned MaxChains = 8;
1687
1688 /// IVChainVec - IV users can form a chain of IV increments.
1689 SmallVector<IVChain, MaxChains> IVChainVec;
1690
Andrew Trick248d4102012-01-09 21:18:52 +00001691 /// IVIncSet - IV users that belong to profitable IVChains.
1692 SmallPtrSet<Use*, MaxChains> IVIncSet;
1693
Dan Gohman45774ce2010-02-12 10:34:29 +00001694 void OptimizeShadowIV();
1695 bool FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse);
1696 ICmpInst *OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse);
Dan Gohman4c4043c2010-05-20 20:05:31 +00001697 void OptimizeLoopTermCond();
Dan Gohman45774ce2010-02-12 10:34:29 +00001698
Andrew Trick29fe5f02012-01-09 19:50:34 +00001699 void ChainInstruction(Instruction *UserInst, Instruction *IVOper,
1700 SmallVectorImpl<ChainUsers> &ChainUsersVec);
Andrew Trick248d4102012-01-09 21:18:52 +00001701 void FinalizeChain(IVChain &Chain);
Andrew Trick29fe5f02012-01-09 19:50:34 +00001702 void CollectChains();
Andrew Trick248d4102012-01-09 21:18:52 +00001703 void GenerateIVChain(const IVChain &Chain, SCEVExpander &Rewriter,
1704 SmallVectorImpl<WeakVH> &DeadInsts);
Andrew Trick29fe5f02012-01-09 19:50:34 +00001705
Dan Gohman45774ce2010-02-12 10:34:29 +00001706 void CollectInterestingTypesAndFactors();
1707 void CollectFixupsAndInitialFormulae();
1708
1709 LSRFixup &getNewFixup() {
1710 Fixups.push_back(LSRFixup());
1711 return Fixups.back();
1712 }
1713
1714 // Support for sharing of LSRUses between LSRFixups.
Benjamin Kramer62fb0cf2014-03-15 17:17:48 +00001715 typedef DenseMap<LSRUse::SCEVUseKindPair, size_t> UseMapTy;
Dan Gohman45774ce2010-02-12 10:34:29 +00001716 UseMapTy UseMap;
1717
Dan Gohman110ed642010-09-01 01:45:53 +00001718 bool reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Chris Lattner229907c2011-07-18 04:54:35 +00001719 LSRUse::KindType Kind, Type *AccessTy);
Dan Gohman45774ce2010-02-12 10:34:29 +00001720
1721 std::pair<size_t, int64_t> getUse(const SCEV *&Expr,
1722 LSRUse::KindType Kind,
Chris Lattner229907c2011-07-18 04:54:35 +00001723 Type *AccessTy);
Dan Gohman45774ce2010-02-12 10:34:29 +00001724
Dan Gohmana7b68d62010-10-07 23:33:43 +00001725 void DeleteUse(LSRUse &LU, size_t LUIdx);
Dan Gohman80a96082010-05-20 15:17:54 +00001726
Dan Gohman110ed642010-09-01 01:45:53 +00001727 LSRUse *FindUseWithSimilarFormula(const Formula &F, const LSRUse &OrigLU);
Dan Gohman20fab452010-05-19 23:43:12 +00001728
Dan Gohman8c16b382010-02-22 04:11:59 +00001729 void InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00001730 void InsertSupplementalFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
1731 void CountRegisters(const Formula &F, size_t LUIdx);
1732 bool InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F);
1733
1734 void CollectLoopInvariantFixupsAndFormulae();
1735
1736 void GenerateReassociations(LSRUse &LU, unsigned LUIdx, Formula Base,
1737 unsigned Depth = 0);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001738
1739 void GenerateReassociationsImpl(LSRUse &LU, unsigned LUIdx,
1740 const Formula &Base, unsigned Depth,
1741 size_t Idx, bool IsScaledReg = false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001742 void GenerateCombinations(LSRUse &LU, unsigned LUIdx, Formula Base);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001743 void GenerateSymbolicOffsetsImpl(LSRUse &LU, unsigned LUIdx,
1744 const Formula &Base, size_t Idx,
1745 bool IsScaledReg = false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001746 void GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001747 void GenerateConstantOffsetsImpl(LSRUse &LU, unsigned LUIdx,
1748 const Formula &Base,
1749 const SmallVectorImpl<int64_t> &Worklist,
1750 size_t Idx, bool IsScaledReg = false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001751 void GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1752 void GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1753 void GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1754 void GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base);
1755 void GenerateCrossUseConstantOffsets();
1756 void GenerateAllReuseFormulae();
1757
1758 void FilterOutUndesirableDedicatedRegisters();
Dan Gohmana4eca052010-05-18 22:51:59 +00001759
1760 size_t EstimateSearchSpaceComplexity() const;
Dan Gohmane9e08732010-08-29 16:09:42 +00001761 void NarrowSearchSpaceByDetectingSupersets();
1762 void NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman002ff892010-08-29 16:39:22 +00001763 void NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Dan Gohmane9e08732010-08-29 16:09:42 +00001764 void NarrowSearchSpaceByPickingWinnerRegs();
Dan Gohman45774ce2010-02-12 10:34:29 +00001765 void NarrowSearchSpaceUsingHeuristics();
1766
1767 void SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
1768 Cost &SolutionCost,
1769 SmallVectorImpl<const Formula *> &Workspace,
1770 const Cost &CurCost,
1771 const SmallPtrSet<const SCEV *, 16> &CurRegs,
1772 DenseSet<const SCEV *> &VisitedRegs) const;
1773 void Solve(SmallVectorImpl<const Formula *> &Solution) const;
1774
Dan Gohman607e02b2010-04-09 22:07:05 +00001775 BasicBlock::iterator
1776 HoistInsertPosition(BasicBlock::iterator IP,
1777 const SmallVectorImpl<Instruction *> &Inputs) const;
Andrew Trickc908b432012-01-20 07:41:13 +00001778 BasicBlock::iterator
1779 AdjustInsertPositionForExpand(BasicBlock::iterator IP,
1780 const LSRFixup &LF,
1781 const LSRUse &LU,
1782 SCEVExpander &Rewriter) const;
Dan Gohmand2df6432010-04-09 02:00:38 +00001783
Dan Gohman45774ce2010-02-12 10:34:29 +00001784 Value *Expand(const LSRFixup &LF,
1785 const Formula &F,
Dan Gohman8c16b382010-02-22 04:11:59 +00001786 BasicBlock::iterator IP,
Dan Gohman45774ce2010-02-12 10:34:29 +00001787 SCEVExpander &Rewriter,
Dan Gohman8c16b382010-02-22 04:11:59 +00001788 SmallVectorImpl<WeakVH> &DeadInsts) const;
Dan Gohman6deab962010-02-16 20:25:07 +00001789 void RewriteForPHI(PHINode *PN, const LSRFixup &LF,
1790 const Formula &F,
Dan Gohman6deab962010-02-16 20:25:07 +00001791 SCEVExpander &Rewriter,
1792 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman6deab962010-02-16 20:25:07 +00001793 Pass *P) const;
Dan Gohman45774ce2010-02-12 10:34:29 +00001794 void Rewrite(const LSRFixup &LF,
1795 const Formula &F,
Dan Gohman45774ce2010-02-12 10:34:29 +00001796 SCEVExpander &Rewriter,
1797 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman45774ce2010-02-12 10:34:29 +00001798 Pass *P) const;
1799 void ImplementSolution(const SmallVectorImpl<const Formula *> &Solution,
1800 Pass *P);
1801
Andrew Trickdc18e382011-12-13 00:55:33 +00001802public:
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001803 LSRInstance(Loop *L, Pass *P);
Dan Gohman45774ce2010-02-12 10:34:29 +00001804
1805 bool getChanged() const { return Changed; }
1806
1807 void print_factors_and_types(raw_ostream &OS) const;
1808 void print_fixups(raw_ostream &OS) const;
1809 void print_uses(raw_ostream &OS) const;
1810 void print(raw_ostream &OS) const;
1811 void dump() const;
1812};
1813
1814}
1815
1816/// OptimizeShadowIV - If IV is used in a int-to-float cast
Dan Gohman8b0a4192010-03-01 17:49:51 +00001817/// inside the loop then try to eliminate the cast operation.
Dan Gohman45774ce2010-02-12 10:34:29 +00001818void LSRInstance::OptimizeShadowIV() {
1819 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
1820 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1821 return;
1822
1823 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end();
1824 UI != E; /* empty */) {
1825 IVUsers::const_iterator CandidateUI = UI;
1826 ++UI;
1827 Instruction *ShadowUse = CandidateUI->getUser();
Craig Topperf40110f2014-04-25 05:29:35 +00001828 Type *DestTy = nullptr;
Andrew Trick858e9f02011-07-21 01:05:01 +00001829 bool IsSigned = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00001830
1831 /* If shadow use is a int->float cast then insert a second IV
1832 to eliminate this cast.
1833
1834 for (unsigned i = 0; i < n; ++i)
1835 foo((double)i);
1836
1837 is transformed into
1838
1839 double d = 0.0;
1840 for (unsigned i = 0; i < n; ++i, ++d)
1841 foo(d);
1842 */
Andrew Trick858e9f02011-07-21 01:05:01 +00001843 if (UIToFPInst *UCast = dyn_cast<UIToFPInst>(CandidateUI->getUser())) {
1844 IsSigned = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00001845 DestTy = UCast->getDestTy();
Andrew Trick858e9f02011-07-21 01:05:01 +00001846 }
1847 else if (SIToFPInst *SCast = dyn_cast<SIToFPInst>(CandidateUI->getUser())) {
1848 IsSigned = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00001849 DestTy = SCast->getDestTy();
Andrew Trick858e9f02011-07-21 01:05:01 +00001850 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001851 if (!DestTy) continue;
1852
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001853 // If target does not support DestTy natively then do not apply
1854 // this transformation.
1855 if (!TTI.isTypeLegal(DestTy)) continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00001856
1857 PHINode *PH = dyn_cast<PHINode>(ShadowUse->getOperand(0));
1858 if (!PH) continue;
1859 if (PH->getNumIncomingValues() != 2) continue;
1860
Chris Lattner229907c2011-07-18 04:54:35 +00001861 Type *SrcTy = PH->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00001862 int Mantissa = DestTy->getFPMantissaWidth();
1863 if (Mantissa == -1) continue;
1864 if ((int)SE.getTypeSizeInBits(SrcTy) > Mantissa)
1865 continue;
1866
1867 unsigned Entry, Latch;
1868 if (PH->getIncomingBlock(0) == L->getLoopPreheader()) {
1869 Entry = 0;
1870 Latch = 1;
Dan Gohman045f8192010-01-22 00:46:49 +00001871 } else {
Dan Gohman45774ce2010-02-12 10:34:29 +00001872 Entry = 1;
1873 Latch = 0;
Dan Gohman045f8192010-01-22 00:46:49 +00001874 }
Dan Gohman045f8192010-01-22 00:46:49 +00001875
Dan Gohman45774ce2010-02-12 10:34:29 +00001876 ConstantInt *Init = dyn_cast<ConstantInt>(PH->getIncomingValue(Entry));
1877 if (!Init) continue;
Andrew Trick858e9f02011-07-21 01:05:01 +00001878 Constant *NewInit = ConstantFP::get(DestTy, IsSigned ?
Andrew Trickbd243d02011-07-21 01:45:54 +00001879 (double)Init->getSExtValue() :
1880 (double)Init->getZExtValue());
Dan Gohman045f8192010-01-22 00:46:49 +00001881
Dan Gohman45774ce2010-02-12 10:34:29 +00001882 BinaryOperator *Incr =
1883 dyn_cast<BinaryOperator>(PH->getIncomingValue(Latch));
1884 if (!Incr) continue;
1885 if (Incr->getOpcode() != Instruction::Add
1886 && Incr->getOpcode() != Instruction::Sub)
Dan Gohman045f8192010-01-22 00:46:49 +00001887 continue;
Dan Gohman045f8192010-01-22 00:46:49 +00001888
Dan Gohman45774ce2010-02-12 10:34:29 +00001889 /* Initialize new IV, double d = 0.0 in above example. */
Craig Topperf40110f2014-04-25 05:29:35 +00001890 ConstantInt *C = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +00001891 if (Incr->getOperand(0) == PH)
1892 C = dyn_cast<ConstantInt>(Incr->getOperand(1));
1893 else if (Incr->getOperand(1) == PH)
1894 C = dyn_cast<ConstantInt>(Incr->getOperand(0));
Dan Gohman045f8192010-01-22 00:46:49 +00001895 else
Dan Gohman045f8192010-01-22 00:46:49 +00001896 continue;
1897
Dan Gohman45774ce2010-02-12 10:34:29 +00001898 if (!C) continue;
Dan Gohman045f8192010-01-22 00:46:49 +00001899
Dan Gohman45774ce2010-02-12 10:34:29 +00001900 // Ignore negative constants, as the code below doesn't handle them
1901 // correctly. TODO: Remove this restriction.
1902 if (!C->getValue().isStrictlyPositive()) continue;
Dan Gohman045f8192010-01-22 00:46:49 +00001903
Dan Gohman45774ce2010-02-12 10:34:29 +00001904 /* Add new PHINode. */
Jay Foad52131342011-03-30 11:28:46 +00001905 PHINode *NewPH = PHINode::Create(DestTy, 2, "IV.S.", PH);
Dan Gohman045f8192010-01-22 00:46:49 +00001906
Dan Gohman45774ce2010-02-12 10:34:29 +00001907 /* create new increment. '++d' in above example. */
1908 Constant *CFP = ConstantFP::get(DestTy, C->getZExtValue());
1909 BinaryOperator *NewIncr =
1910 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
1911 Instruction::FAdd : Instruction::FSub,
1912 NewPH, CFP, "IV.S.next.", Incr);
Dan Gohman045f8192010-01-22 00:46:49 +00001913
Dan Gohman45774ce2010-02-12 10:34:29 +00001914 NewPH->addIncoming(NewInit, PH->getIncomingBlock(Entry));
1915 NewPH->addIncoming(NewIncr, PH->getIncomingBlock(Latch));
Dan Gohman045f8192010-01-22 00:46:49 +00001916
Dan Gohman45774ce2010-02-12 10:34:29 +00001917 /* Remove cast operation */
1918 ShadowUse->replaceAllUsesWith(NewPH);
1919 ShadowUse->eraseFromParent();
Dan Gohman4c4043c2010-05-20 20:05:31 +00001920 Changed = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00001921 break;
Dan Gohman045f8192010-01-22 00:46:49 +00001922 }
1923}
1924
1925/// FindIVUserForCond - If Cond has an operand that is an expression of an IV,
1926/// set the IV user and stride information and return true, otherwise return
1927/// false.
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00001928bool LSRInstance::FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001929 for (IVUsers::iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
1930 if (UI->getUser() == Cond) {
1931 // NOTE: we could handle setcc instructions with multiple uses here, but
1932 // InstCombine does it as well for simple uses, it's not clear that it
1933 // occurs enough in real life to handle.
1934 CondUse = UI;
1935 return true;
1936 }
Dan Gohman045f8192010-01-22 00:46:49 +00001937 return false;
Evan Cheng133694d2007-10-25 09:11:16 +00001938}
1939
Dan Gohman045f8192010-01-22 00:46:49 +00001940/// OptimizeMax - Rewrite the loop's terminating condition if it uses
1941/// a max computation.
1942///
1943/// This is a narrow solution to a specific, but acute, problem. For loops
1944/// like this:
1945///
1946/// i = 0;
1947/// do {
1948/// p[i] = 0.0;
1949/// } while (++i < n);
1950///
1951/// the trip count isn't just 'n', because 'n' might not be positive. And
1952/// unfortunately this can come up even for loops where the user didn't use
1953/// a C do-while loop. For example, seemingly well-behaved top-test loops
1954/// will commonly be lowered like this:
1955//
1956/// if (n > 0) {
1957/// i = 0;
1958/// do {
1959/// p[i] = 0.0;
1960/// } while (++i < n);
1961/// }
1962///
1963/// and then it's possible for subsequent optimization to obscure the if
1964/// test in such a way that indvars can't find it.
1965///
1966/// When indvars can't find the if test in loops like this, it creates a
1967/// max expression, which allows it to give the loop a canonical
1968/// induction variable:
1969///
1970/// i = 0;
1971/// max = n < 1 ? 1 : n;
1972/// do {
1973/// p[i] = 0.0;
1974/// } while (++i != max);
1975///
1976/// Canonical induction variables are necessary because the loop passes
1977/// are designed around them. The most obvious example of this is the
1978/// LoopInfo analysis, which doesn't remember trip count values. It
1979/// expects to be able to rediscover the trip count each time it is
Dan Gohman45774ce2010-02-12 10:34:29 +00001980/// needed, and it does this using a simple analysis that only succeeds if
Dan Gohman045f8192010-01-22 00:46:49 +00001981/// the loop has a canonical induction variable.
1982///
1983/// However, when it comes time to generate code, the maximum operation
1984/// can be quite costly, especially if it's inside of an outer loop.
1985///
1986/// This function solves this problem by detecting this type of loop and
1987/// rewriting their conditions from ICMP_NE back to ICMP_SLT, and deleting
1988/// the instructions for the maximum computation.
1989///
Dan Gohman45774ce2010-02-12 10:34:29 +00001990ICmpInst *LSRInstance::OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse) {
Dan Gohman045f8192010-01-22 00:46:49 +00001991 // Check that the loop matches the pattern we're looking for.
1992 if (Cond->getPredicate() != CmpInst::ICMP_EQ &&
1993 Cond->getPredicate() != CmpInst::ICMP_NE)
1994 return Cond;
Dan Gohman51ad99d2010-01-21 02:09:26 +00001995
Dan Gohman045f8192010-01-22 00:46:49 +00001996 SelectInst *Sel = dyn_cast<SelectInst>(Cond->getOperand(1));
1997 if (!Sel || !Sel->hasOneUse()) return Cond;
Dan Gohman51ad99d2010-01-21 02:09:26 +00001998
Dan Gohman45774ce2010-02-12 10:34:29 +00001999 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
Dan Gohman045f8192010-01-22 00:46:49 +00002000 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
2001 return Cond;
Dan Gohman1d2ded72010-05-03 22:09:21 +00002002 const SCEV *One = SE.getConstant(BackedgeTakenCount->getType(), 1);
Dan Gohman51ad99d2010-01-21 02:09:26 +00002003
Dan Gohman045f8192010-01-22 00:46:49 +00002004 // Add one to the backedge-taken count to get the trip count.
Dan Gohman9b7632d2010-08-16 15:39:27 +00002005 const SCEV *IterationCount = SE.getAddExpr(One, BackedgeTakenCount);
Dan Gohman534ba372010-04-24 03:13:44 +00002006 if (IterationCount != SE.getSCEV(Sel)) return Cond;
Dan Gohman045f8192010-01-22 00:46:49 +00002007
Dan Gohman534ba372010-04-24 03:13:44 +00002008 // Check for a max calculation that matches the pattern. There's no check
2009 // for ICMP_ULE here because the comparison would be with zero, which
2010 // isn't interesting.
2011 CmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE;
Craig Topperf40110f2014-04-25 05:29:35 +00002012 const SCEVNAryExpr *Max = nullptr;
Dan Gohman534ba372010-04-24 03:13:44 +00002013 if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(BackedgeTakenCount)) {
2014 Pred = ICmpInst::ICMP_SLE;
2015 Max = S;
2016 } else if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(IterationCount)) {
2017 Pred = ICmpInst::ICMP_SLT;
2018 Max = S;
2019 } else if (const SCEVUMaxExpr *U = dyn_cast<SCEVUMaxExpr>(IterationCount)) {
2020 Pred = ICmpInst::ICMP_ULT;
2021 Max = U;
2022 } else {
2023 // No match; bail.
Dan Gohman045f8192010-01-22 00:46:49 +00002024 return Cond;
Dan Gohman534ba372010-04-24 03:13:44 +00002025 }
Dan Gohman045f8192010-01-22 00:46:49 +00002026
2027 // To handle a max with more than two operands, this optimization would
2028 // require additional checking and setup.
2029 if (Max->getNumOperands() != 2)
2030 return Cond;
2031
2032 const SCEV *MaxLHS = Max->getOperand(0);
2033 const SCEV *MaxRHS = Max->getOperand(1);
Dan Gohman534ba372010-04-24 03:13:44 +00002034
2035 // ScalarEvolution canonicalizes constants to the left. For < and >, look
2036 // for a comparison with 1. For <= and >=, a comparison with zero.
2037 if (!MaxLHS ||
2038 (ICmpInst::isTrueWhenEqual(Pred) ? !MaxLHS->isZero() : (MaxLHS != One)))
2039 return Cond;
2040
Dan Gohman045f8192010-01-22 00:46:49 +00002041 // Check the relevant induction variable for conformance to
2042 // the pattern.
Dan Gohman45774ce2010-02-12 10:34:29 +00002043 const SCEV *IV = SE.getSCEV(Cond->getOperand(0));
Dan Gohman045f8192010-01-22 00:46:49 +00002044 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(IV);
2045 if (!AR || !AR->isAffine() ||
2046 AR->getStart() != One ||
Dan Gohman45774ce2010-02-12 10:34:29 +00002047 AR->getStepRecurrence(SE) != One)
Dan Gohman045f8192010-01-22 00:46:49 +00002048 return Cond;
2049
2050 assert(AR->getLoop() == L &&
2051 "Loop condition operand is an addrec in a different loop!");
2052
2053 // Check the right operand of the select, and remember it, as it will
2054 // be used in the new comparison instruction.
Craig Topperf40110f2014-04-25 05:29:35 +00002055 Value *NewRHS = nullptr;
Dan Gohman534ba372010-04-24 03:13:44 +00002056 if (ICmpInst::isTrueWhenEqual(Pred)) {
2057 // Look for n+1, and grab n.
2058 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(1)))
Jakub Staszakf6df1e32013-03-24 09:25:47 +00002059 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1)))
2060 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS)
2061 NewRHS = BO->getOperand(0);
Dan Gohman534ba372010-04-24 03:13:44 +00002062 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(2)))
Jakub Staszakf6df1e32013-03-24 09:25:47 +00002063 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1)))
2064 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS)
2065 NewRHS = BO->getOperand(0);
Dan Gohman534ba372010-04-24 03:13:44 +00002066 if (!NewRHS)
2067 return Cond;
2068 } else if (SE.getSCEV(Sel->getOperand(1)) == MaxRHS)
Dan Gohman045f8192010-01-22 00:46:49 +00002069 NewRHS = Sel->getOperand(1);
Dan Gohman45774ce2010-02-12 10:34:29 +00002070 else if (SE.getSCEV(Sel->getOperand(2)) == MaxRHS)
Dan Gohman045f8192010-01-22 00:46:49 +00002071 NewRHS = Sel->getOperand(2);
Dan Gohman1081f1a2010-06-22 23:07:13 +00002072 else if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(MaxRHS))
2073 NewRHS = SU->getValue();
Dan Gohman534ba372010-04-24 03:13:44 +00002074 else
Dan Gohman1081f1a2010-06-22 23:07:13 +00002075 // Max doesn't match expected pattern.
2076 return Cond;
Dan Gohman045f8192010-01-22 00:46:49 +00002077
2078 // Determine the new comparison opcode. It may be signed or unsigned,
2079 // and the original comparison may be either equality or inequality.
Dan Gohman045f8192010-01-22 00:46:49 +00002080 if (Cond->getPredicate() == CmpInst::ICMP_EQ)
2081 Pred = CmpInst::getInversePredicate(Pred);
2082
2083 // Ok, everything looks ok to change the condition into an SLT or SGE and
2084 // delete the max calculation.
2085 ICmpInst *NewCond =
2086 new ICmpInst(Cond, Pred, Cond->getOperand(0), NewRHS, "scmp");
2087
2088 // Delete the max calculation instructions.
2089 Cond->replaceAllUsesWith(NewCond);
2090 CondUse->setUser(NewCond);
2091 Instruction *Cmp = cast<Instruction>(Sel->getOperand(0));
2092 Cond->eraseFromParent();
2093 Sel->eraseFromParent();
2094 if (Cmp->use_empty())
2095 Cmp->eraseFromParent();
2096 return NewCond;
Dan Gohman68e77352008-09-15 21:22:06 +00002097}
2098
Jim Grosbach60f48542009-11-17 17:53:56 +00002099/// OptimizeLoopTermCond - Change loop terminating condition to use the
Evan Cheng85a9f432009-11-12 07:35:05 +00002100/// postinc iv when possible.
Dan Gohman4c4043c2010-05-20 20:05:31 +00002101void
Dan Gohman45774ce2010-02-12 10:34:29 +00002102LSRInstance::OptimizeLoopTermCond() {
2103 SmallPtrSet<Instruction *, 4> PostIncs;
2104
Evan Cheng85a9f432009-11-12 07:35:05 +00002105 BasicBlock *LatchBlock = L->getLoopLatch();
Evan Chengba4e5da72009-11-17 18:10:11 +00002106 SmallVector<BasicBlock*, 8> ExitingBlocks;
2107 L->getExitingBlocks(ExitingBlocks);
Jim Grosbach60f48542009-11-17 17:53:56 +00002108
Evan Chengba4e5da72009-11-17 18:10:11 +00002109 for (unsigned i = 0, e = ExitingBlocks.size(); i != e; ++i) {
2110 BasicBlock *ExitingBlock = ExitingBlocks[i];
Evan Cheng85a9f432009-11-12 07:35:05 +00002111
Dan Gohman45774ce2010-02-12 10:34:29 +00002112 // Get the terminating condition for the loop if possible. If we
Evan Chengba4e5da72009-11-17 18:10:11 +00002113 // can, we want to change it to use a post-incremented version of its
2114 // induction variable, to allow coalescing the live ranges for the IV into
2115 // one register value.
Evan Cheng85a9f432009-11-12 07:35:05 +00002116
Evan Chengba4e5da72009-11-17 18:10:11 +00002117 BranchInst *TermBr = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
2118 if (!TermBr)
2119 continue;
2120 // FIXME: Overly conservative, termination condition could be an 'or' etc..
2121 if (TermBr->isUnconditional() || !isa<ICmpInst>(TermBr->getCondition()))
2122 continue;
Evan Cheng85a9f432009-11-12 07:35:05 +00002123
Evan Chengba4e5da72009-11-17 18:10:11 +00002124 // Search IVUsesByStride to find Cond's IVUse if there is one.
Craig Topperf40110f2014-04-25 05:29:35 +00002125 IVStrideUse *CondUse = nullptr;
Evan Chengba4e5da72009-11-17 18:10:11 +00002126 ICmpInst *Cond = cast<ICmpInst>(TermBr->getCondition());
Dan Gohman45774ce2010-02-12 10:34:29 +00002127 if (!FindIVUserForCond(Cond, CondUse))
Evan Chengba4e5da72009-11-17 18:10:11 +00002128 continue;
2129
Evan Chengba4e5da72009-11-17 18:10:11 +00002130 // If the trip count is computed in terms of a max (due to ScalarEvolution
2131 // being unable to find a sufficient guard, for example), change the loop
2132 // comparison to use SLT or ULT instead of NE.
Dan Gohman45774ce2010-02-12 10:34:29 +00002133 // One consequence of doing this now is that it disrupts the count-down
2134 // optimization. That's not always a bad thing though, because in such
2135 // cases it may still be worthwhile to avoid a max.
2136 Cond = OptimizeMax(Cond, CondUse);
Evan Chengba4e5da72009-11-17 18:10:11 +00002137
Dan Gohman45774ce2010-02-12 10:34:29 +00002138 // If this exiting block dominates the latch block, it may also use
2139 // the post-inc value if it won't be shared with other uses.
2140 // Check for dominance.
2141 if (!DT.dominates(ExitingBlock, LatchBlock))
Dan Gohman045f8192010-01-22 00:46:49 +00002142 continue;
Evan Chengba4e5da72009-11-17 18:10:11 +00002143
Dan Gohman45774ce2010-02-12 10:34:29 +00002144 // Conservatively avoid trying to use the post-inc value in non-latch
2145 // exits if there may be pre-inc users in intervening blocks.
Dan Gohman2d0f96d2010-02-14 03:21:49 +00002146 if (LatchBlock != ExitingBlock)
Dan Gohman45774ce2010-02-12 10:34:29 +00002147 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
2148 // Test if the use is reachable from the exiting block. This dominator
2149 // query is a conservative approximation of reachability.
2150 if (&*UI != CondUse &&
2151 !DT.properlyDominates(UI->getUser()->getParent(), ExitingBlock)) {
2152 // Conservatively assume there may be reuse if the quotient of their
2153 // strides could be a legal scale.
Dan Gohmane637ff52010-04-19 21:48:58 +00002154 const SCEV *A = IU.getStride(*CondUse, L);
2155 const SCEV *B = IU.getStride(*UI, L);
Dan Gohmand006ab92010-04-07 22:27:08 +00002156 if (!A || !B) continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00002157 if (SE.getTypeSizeInBits(A->getType()) !=
2158 SE.getTypeSizeInBits(B->getType())) {
2159 if (SE.getTypeSizeInBits(A->getType()) >
2160 SE.getTypeSizeInBits(B->getType()))
2161 B = SE.getSignExtendExpr(B, A->getType());
2162 else
2163 A = SE.getSignExtendExpr(A, B->getType());
2164 }
2165 if (const SCEVConstant *D =
Dan Gohman4eebb942010-02-19 19:35:48 +00002166 dyn_cast_or_null<SCEVConstant>(getExactSDiv(B, A, SE))) {
Dan Gohman86110fa2010-05-20 22:25:20 +00002167 const ConstantInt *C = D->getValue();
Dan Gohman45774ce2010-02-12 10:34:29 +00002168 // Stride of one or negative one can have reuse with non-addresses.
Dan Gohman86110fa2010-05-20 22:25:20 +00002169 if (C->isOne() || C->isAllOnesValue())
Dan Gohman45774ce2010-02-12 10:34:29 +00002170 goto decline_post_inc;
2171 // Avoid weird situations.
Dan Gohman86110fa2010-05-20 22:25:20 +00002172 if (C->getValue().getMinSignedBits() >= 64 ||
2173 C->getValue().isMinSignedValue())
Dan Gohman45774ce2010-02-12 10:34:29 +00002174 goto decline_post_inc;
2175 // Check for possible scaled-address reuse.
Chris Lattner229907c2011-07-18 04:54:35 +00002176 Type *AccessTy = getAccessType(UI->getUser());
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002177 int64_t Scale = C->getSExtValue();
Craig Topperf40110f2014-04-25 05:29:35 +00002178 if (TTI.isLegalAddressingMode(AccessTy, /*BaseGV=*/ nullptr,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002179 /*BaseOffset=*/ 0,
2180 /*HasBaseReg=*/ false, Scale))
Dan Gohman45774ce2010-02-12 10:34:29 +00002181 goto decline_post_inc;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002182 Scale = -Scale;
Craig Topperf40110f2014-04-25 05:29:35 +00002183 if (TTI.isLegalAddressingMode(AccessTy, /*BaseGV=*/ nullptr,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002184 /*BaseOffset=*/ 0,
2185 /*HasBaseReg=*/ false, Scale))
Dan Gohman45774ce2010-02-12 10:34:29 +00002186 goto decline_post_inc;
2187 }
2188 }
2189
David Greene2330f782009-12-23 22:58:38 +00002190 DEBUG(dbgs() << " Change loop exiting icmp to use postinc iv: "
Dan Gohman45774ce2010-02-12 10:34:29 +00002191 << *Cond << '\n');
Evan Chengba4e5da72009-11-17 18:10:11 +00002192
2193 // It's possible for the setcc instruction to be anywhere in the loop, and
2194 // possible for it to have multiple users. If it is not immediately before
2195 // the exiting block branch, move it.
Dan Gohman45774ce2010-02-12 10:34:29 +00002196 if (&*++BasicBlock::iterator(Cond) != TermBr) {
2197 if (Cond->hasOneUse()) {
Evan Chengba4e5da72009-11-17 18:10:11 +00002198 Cond->moveBefore(TermBr);
2199 } else {
Dan Gohman45774ce2010-02-12 10:34:29 +00002200 // Clone the terminating condition and insert into the loopend.
2201 ICmpInst *OldCond = Cond;
Evan Chengba4e5da72009-11-17 18:10:11 +00002202 Cond = cast<ICmpInst>(Cond->clone());
2203 Cond->setName(L->getHeader()->getName() + ".termcond");
2204 ExitingBlock->getInstList().insert(TermBr, Cond);
2205
2206 // Clone the IVUse, as the old use still exists!
Andrew Trickfc4ccb22011-06-21 15:43:52 +00002207 CondUse = &IU.AddUser(Cond, CondUse->getOperandValToReplace());
Dan Gohman45774ce2010-02-12 10:34:29 +00002208 TermBr->replaceUsesOfWith(OldCond, Cond);
Evan Chengba4e5da72009-11-17 18:10:11 +00002209 }
Evan Cheng85a9f432009-11-12 07:35:05 +00002210 }
2211
Evan Chengba4e5da72009-11-17 18:10:11 +00002212 // If we get to here, we know that we can transform the setcc instruction to
2213 // use the post-incremented version of the IV, allowing us to coalesce the
2214 // live ranges for the IV correctly.
Dan Gohmand006ab92010-04-07 22:27:08 +00002215 CondUse->transformToPostInc(L);
Evan Chengba4e5da72009-11-17 18:10:11 +00002216 Changed = true;
2217
Dan Gohman45774ce2010-02-12 10:34:29 +00002218 PostIncs.insert(Cond);
2219 decline_post_inc:;
Dan Gohman51ad99d2010-01-21 02:09:26 +00002220 }
Dan Gohman45774ce2010-02-12 10:34:29 +00002221
2222 // Determine an insertion point for the loop induction variable increment. It
2223 // must dominate all the post-inc comparisons we just set up, and it must
2224 // dominate the loop latch edge.
2225 IVIncInsertPos = L->getLoopLatch()->getTerminator();
Craig Topper46276792014-08-24 23:23:06 +00002226 for (Instruction *Inst : PostIncs) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002227 BasicBlock *BB =
2228 DT.findNearestCommonDominator(IVIncInsertPos->getParent(),
Craig Topper46276792014-08-24 23:23:06 +00002229 Inst->getParent());
2230 if (BB == Inst->getParent())
2231 IVIncInsertPos = Inst;
Dan Gohman45774ce2010-02-12 10:34:29 +00002232 else if (BB != IVIncInsertPos->getParent())
2233 IVIncInsertPos = BB->getTerminator();
2234 }
Dan Gohman51ad99d2010-01-21 02:09:26 +00002235}
2236
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00002237/// reconcileNewOffset - Determine if the given use can accommodate a fixup
Dan Gohmana4ca28a2010-05-20 20:52:00 +00002238/// at the given offset and other details. If so, update the use and
2239/// return true.
Dan Gohman45774ce2010-02-12 10:34:29 +00002240bool
Dan Gohman110ed642010-09-01 01:45:53 +00002241LSRInstance::reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Chris Lattner229907c2011-07-18 04:54:35 +00002242 LSRUse::KindType Kind, Type *AccessTy) {
Dan Gohman110ed642010-09-01 01:45:53 +00002243 int64_t NewMinOffset = LU.MinOffset;
2244 int64_t NewMaxOffset = LU.MaxOffset;
Chris Lattner229907c2011-07-18 04:54:35 +00002245 Type *NewAccessTy = AccessTy;
Dan Gohman045f8192010-01-22 00:46:49 +00002246
Dan Gohman45774ce2010-02-12 10:34:29 +00002247 // Check for a mismatched kind. It's tempting to collapse mismatched kinds to
2248 // something conservative, however this can pessimize in the case that one of
2249 // the uses will have all its uses outside the loop, for example.
2250 if (LU.Kind != Kind)
Dan Gohman045f8192010-01-22 00:46:49 +00002251 return false;
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00002252
Dan Gohman45774ce2010-02-12 10:34:29 +00002253 // Check for a mismatched access type, and fall back conservatively as needed.
Dan Gohman32655902010-06-19 21:30:18 +00002254 // TODO: Be less conservative when the type is similar and can use the same
2255 // addressing modes.
Dan Gohman45774ce2010-02-12 10:34:29 +00002256 if (Kind == LSRUse::Address && AccessTy != LU.AccessTy)
Dan Gohman110ed642010-09-01 01:45:53 +00002257 NewAccessTy = Type::getVoidTy(AccessTy->getContext());
Dan Gohman51ad99d2010-01-21 02:09:26 +00002258
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00002259 // Conservatively assume HasBaseReg is true for now.
2260 if (NewOffset < LU.MinOffset) {
2261 if (!isAlwaysFoldable(TTI, Kind, NewAccessTy, /*BaseGV=*/nullptr,
2262 LU.MaxOffset - NewOffset, HasBaseReg))
2263 return false;
2264 NewMinOffset = NewOffset;
2265 } else if (NewOffset > LU.MaxOffset) {
2266 if (!isAlwaysFoldable(TTI, Kind, NewAccessTy, /*BaseGV=*/nullptr,
2267 NewOffset - LU.MinOffset, HasBaseReg))
2268 return false;
2269 NewMaxOffset = NewOffset;
2270 }
2271
Dan Gohman45774ce2010-02-12 10:34:29 +00002272 // Update the use.
Dan Gohman110ed642010-09-01 01:45:53 +00002273 LU.MinOffset = NewMinOffset;
2274 LU.MaxOffset = NewMaxOffset;
2275 LU.AccessTy = NewAccessTy;
2276 if (NewOffset != LU.Offsets.back())
2277 LU.Offsets.push_back(NewOffset);
Dan Gohman29916e02010-01-21 22:42:49 +00002278 return true;
2279}
2280
Dan Gohman45774ce2010-02-12 10:34:29 +00002281/// getUse - Return an LSRUse index and an offset value for a fixup which
2282/// needs the given expression, with the given kind and optional access type.
Dan Gohman8b0a4192010-03-01 17:49:51 +00002283/// Either reuse an existing use or create a new one, as needed.
Dan Gohman45774ce2010-02-12 10:34:29 +00002284std::pair<size_t, int64_t>
2285LSRInstance::getUse(const SCEV *&Expr,
Chris Lattner229907c2011-07-18 04:54:35 +00002286 LSRUse::KindType Kind, Type *AccessTy) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002287 const SCEV *Copy = Expr;
2288 int64_t Offset = ExtractImmediate(Expr, SE);
Evan Cheng85a9f432009-11-12 07:35:05 +00002289
Dan Gohman45774ce2010-02-12 10:34:29 +00002290 // Basic uses can't accept any offset, for example.
Craig Topperf40110f2014-04-25 05:29:35 +00002291 if (!isAlwaysFoldable(TTI, Kind, AccessTy, /*BaseGV=*/ nullptr,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002292 Offset, /*HasBaseReg=*/ true)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002293 Expr = Copy;
2294 Offset = 0;
2295 }
2296
2297 std::pair<UseMapTy::iterator, bool> P =
Benjamin Kramer62fb0cf2014-03-15 17:17:48 +00002298 UseMap.insert(std::make_pair(LSRUse::SCEVUseKindPair(Expr, Kind), 0));
Dan Gohman45774ce2010-02-12 10:34:29 +00002299 if (!P.second) {
2300 // A use already existed with this base.
2301 size_t LUIdx = P.first->second;
2302 LSRUse &LU = Uses[LUIdx];
Dan Gohman110ed642010-09-01 01:45:53 +00002303 if (reconcileNewOffset(LU, Offset, /*HasBaseReg=*/true, Kind, AccessTy))
Dan Gohman45774ce2010-02-12 10:34:29 +00002304 // Reuse this use.
2305 return std::make_pair(LUIdx, Offset);
2306 }
2307
2308 // Create a new use.
2309 size_t LUIdx = Uses.size();
2310 P.first->second = LUIdx;
2311 Uses.push_back(LSRUse(Kind, AccessTy));
2312 LSRUse &LU = Uses[LUIdx];
2313
Dan Gohman110ed642010-09-01 01:45:53 +00002314 // We don't need to track redundant offsets, but we don't need to go out
2315 // of our way here to avoid them.
2316 if (LU.Offsets.empty() || Offset != LU.Offsets.back())
2317 LU.Offsets.push_back(Offset);
2318
Dan Gohman45774ce2010-02-12 10:34:29 +00002319 LU.MinOffset = Offset;
2320 LU.MaxOffset = Offset;
2321 return std::make_pair(LUIdx, Offset);
2322}
2323
Dan Gohman80a96082010-05-20 15:17:54 +00002324/// DeleteUse - Delete the given use from the Uses list.
Dan Gohmana7b68d62010-10-07 23:33:43 +00002325void LSRInstance::DeleteUse(LSRUse &LU, size_t LUIdx) {
Dan Gohman110ed642010-09-01 01:45:53 +00002326 if (&LU != &Uses.back())
Dan Gohman80a96082010-05-20 15:17:54 +00002327 std::swap(LU, Uses.back());
2328 Uses.pop_back();
Dan Gohmana7b68d62010-10-07 23:33:43 +00002329
2330 // Update RegUses.
2331 RegUses.SwapAndDropUse(LUIdx, Uses.size());
Dan Gohman80a96082010-05-20 15:17:54 +00002332}
2333
Dan Gohman20fab452010-05-19 23:43:12 +00002334/// FindUseWithFormula - Look for a use distinct from OrigLU which is has
2335/// a formula that has the same registers as the given formula.
2336LSRUse *
2337LSRInstance::FindUseWithSimilarFormula(const Formula &OrigF,
Dan Gohman110ed642010-09-01 01:45:53 +00002338 const LSRUse &OrigLU) {
2339 // Search all uses for the formula. This could be more clever.
Dan Gohman20fab452010-05-19 23:43:12 +00002340 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2341 LSRUse &LU = Uses[LUIdx];
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002342 // Check whether this use is close enough to OrigLU, to see whether it's
2343 // worthwhile looking through its formulae.
2344 // Ignore ICmpZero uses because they may contain formulae generated by
2345 // GenerateICmpZeroScales, in which case adding fixup offsets may
2346 // be invalid.
Dan Gohman20fab452010-05-19 23:43:12 +00002347 if (&LU != &OrigLU &&
2348 LU.Kind != LSRUse::ICmpZero &&
2349 LU.Kind == OrigLU.Kind && OrigLU.AccessTy == LU.AccessTy &&
Dan Gohman14152082010-07-15 20:24:58 +00002350 LU.WidestFixupType == OrigLU.WidestFixupType &&
Dan Gohman20fab452010-05-19 23:43:12 +00002351 LU.HasFormulaWithSameRegs(OrigF)) {
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002352 // Scan through this use's formulae.
Dan Gohman927bcaa2010-05-20 20:33:18 +00002353 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
2354 E = LU.Formulae.end(); I != E; ++I) {
2355 const Formula &F = *I;
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002356 // Check to see if this formula has the same registers and symbols
2357 // as OrigF.
Dan Gohman20fab452010-05-19 23:43:12 +00002358 if (F.BaseRegs == OrigF.BaseRegs &&
2359 F.ScaledReg == OrigF.ScaledReg &&
Chandler Carruth6e479322013-01-07 15:04:40 +00002360 F.BaseGV == OrigF.BaseGV &&
2361 F.Scale == OrigF.Scale &&
Dan Gohman6136e942011-05-03 00:46:49 +00002362 F.UnfoldedOffset == OrigF.UnfoldedOffset) {
Chandler Carruth6e479322013-01-07 15:04:40 +00002363 if (F.BaseOffset == 0)
Dan Gohman20fab452010-05-19 23:43:12 +00002364 return &LU;
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002365 // This is the formula where all the registers and symbols matched;
2366 // there aren't going to be any others. Since we declined it, we
Benjamin Kramerbde91762012-06-02 10:20:22 +00002367 // can skip the rest of the formulae and proceed to the next LSRUse.
Dan Gohman20fab452010-05-19 23:43:12 +00002368 break;
2369 }
2370 }
2371 }
2372 }
2373
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002374 // Nothing looked good.
Craig Topperf40110f2014-04-25 05:29:35 +00002375 return nullptr;
Dan Gohman20fab452010-05-19 23:43:12 +00002376}
2377
Dan Gohman45774ce2010-02-12 10:34:29 +00002378void LSRInstance::CollectInterestingTypesAndFactors() {
2379 SmallSetVector<const SCEV *, 4> Strides;
2380
Dan Gohman2446f572010-02-19 00:05:23 +00002381 // Collect interesting types and strides.
Dan Gohmand006ab92010-04-07 22:27:08 +00002382 SmallVector<const SCEV *, 4> Worklist;
Dan Gohman45774ce2010-02-12 10:34:29 +00002383 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) {
Dan Gohmane637ff52010-04-19 21:48:58 +00002384 const SCEV *Expr = IU.getExpr(*UI);
Dan Gohman45774ce2010-02-12 10:34:29 +00002385
2386 // Collect interesting types.
Dan Gohmand006ab92010-04-07 22:27:08 +00002387 Types.insert(SE.getEffectiveSCEVType(Expr->getType()));
Dan Gohman45774ce2010-02-12 10:34:29 +00002388
Dan Gohmand006ab92010-04-07 22:27:08 +00002389 // Add strides for mentioned loops.
2390 Worklist.push_back(Expr);
2391 do {
2392 const SCEV *S = Worklist.pop_back_val();
2393 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
Andrew Trickd97b83e2012-03-22 22:42:45 +00002394 if (AR->getLoop() == L)
Andrew Tricke8b4f402011-12-10 00:25:00 +00002395 Strides.insert(AR->getStepRecurrence(SE));
Dan Gohmand006ab92010-04-07 22:27:08 +00002396 Worklist.push_back(AR->getStart());
2397 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Dan Gohmandd41bba2010-06-21 19:47:52 +00002398 Worklist.append(Add->op_begin(), Add->op_end());
Dan Gohmand006ab92010-04-07 22:27:08 +00002399 }
2400 } while (!Worklist.empty());
Dan Gohman2446f572010-02-19 00:05:23 +00002401 }
2402
2403 // Compute interesting factors from the set of interesting strides.
2404 for (SmallSetVector<const SCEV *, 4>::const_iterator
2405 I = Strides.begin(), E = Strides.end(); I != E; ++I)
Dan Gohman45774ce2010-02-12 10:34:29 +00002406 for (SmallSetVector<const SCEV *, 4>::const_iterator NewStrideIter =
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002407 std::next(I); NewStrideIter != E; ++NewStrideIter) {
Dan Gohman2446f572010-02-19 00:05:23 +00002408 const SCEV *OldStride = *I;
Dan Gohman45774ce2010-02-12 10:34:29 +00002409 const SCEV *NewStride = *NewStrideIter;
Dan Gohman45774ce2010-02-12 10:34:29 +00002410
2411 if (SE.getTypeSizeInBits(OldStride->getType()) !=
2412 SE.getTypeSizeInBits(NewStride->getType())) {
2413 if (SE.getTypeSizeInBits(OldStride->getType()) >
2414 SE.getTypeSizeInBits(NewStride->getType()))
2415 NewStride = SE.getSignExtendExpr(NewStride, OldStride->getType());
2416 else
2417 OldStride = SE.getSignExtendExpr(OldStride, NewStride->getType());
2418 }
2419 if (const SCEVConstant *Factor =
Dan Gohman4eebb942010-02-19 19:35:48 +00002420 dyn_cast_or_null<SCEVConstant>(getExactSDiv(NewStride, OldStride,
2421 SE, true))) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002422 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2423 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2424 } else if (const SCEVConstant *Factor =
Dan Gohman8c16b382010-02-22 04:11:59 +00002425 dyn_cast_or_null<SCEVConstant>(getExactSDiv(OldStride,
2426 NewStride,
Dan Gohman4eebb942010-02-19 19:35:48 +00002427 SE, true))) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002428 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2429 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2430 }
2431 }
Dan Gohman45774ce2010-02-12 10:34:29 +00002432
2433 // If all uses use the same type, don't bother looking for truncation-based
2434 // reuse.
2435 if (Types.size() == 1)
2436 Types.clear();
2437
2438 DEBUG(print_factors_and_types(dbgs()));
2439}
2440
Andrew Trick29fe5f02012-01-09 19:50:34 +00002441/// findIVOperand - Helper for CollectChains that finds an IV operand (computed
2442/// by an AddRec in this loop) within [OI,OE) or returns OE. If IVUsers mapped
2443/// Instructions to IVStrideUses, we could partially skip this.
2444static User::op_iterator
2445findIVOperand(User::op_iterator OI, User::op_iterator OE,
2446 Loop *L, ScalarEvolution &SE) {
2447 for(; OI != OE; ++OI) {
2448 if (Instruction *Oper = dyn_cast<Instruction>(*OI)) {
2449 if (!SE.isSCEVable(Oper->getType()))
2450 continue;
2451
2452 if (const SCEVAddRecExpr *AR =
2453 dyn_cast<SCEVAddRecExpr>(SE.getSCEV(Oper))) {
2454 if (AR->getLoop() == L)
2455 break;
2456 }
2457 }
2458 }
2459 return OI;
2460}
2461
2462/// getWideOperand - IVChain logic must consistenctly peek base TruncInst
2463/// operands, so wrap it in a convenient helper.
2464static Value *getWideOperand(Value *Oper) {
2465 if (TruncInst *Trunc = dyn_cast<TruncInst>(Oper))
2466 return Trunc->getOperand(0);
2467 return Oper;
2468}
2469
2470/// isCompatibleIVType - Return true if we allow an IV chain to include both
2471/// types.
2472static bool isCompatibleIVType(Value *LVal, Value *RVal) {
2473 Type *LType = LVal->getType();
2474 Type *RType = RVal->getType();
2475 return (LType == RType) || (LType->isPointerTy() && RType->isPointerTy());
2476}
2477
Andrew Trickd5d2db92012-01-10 01:45:08 +00002478/// getExprBase - Return an approximation of this SCEV expression's "base", or
2479/// NULL for any constant. Returning the expression itself is
2480/// conservative. Returning a deeper subexpression is more precise and valid as
2481/// long as it isn't less complex than another subexpression. For expressions
2482/// involving multiple unscaled values, we need to return the pointer-type
2483/// SCEVUnknown. This avoids forming chains across objects, such as:
2484/// PrevOper==a[i], IVOper==b[i], IVInc==b-a.
2485///
2486/// Since SCEVUnknown is the rightmost type, and pointers are the rightmost
2487/// SCEVUnknown, we simply return the rightmost SCEV operand.
2488static const SCEV *getExprBase(const SCEV *S) {
2489 switch (S->getSCEVType()) {
2490 default: // uncluding scUnknown.
2491 return S;
2492 case scConstant:
Craig Topperf40110f2014-04-25 05:29:35 +00002493 return nullptr;
Andrew Trickd5d2db92012-01-10 01:45:08 +00002494 case scTruncate:
2495 return getExprBase(cast<SCEVTruncateExpr>(S)->getOperand());
2496 case scZeroExtend:
2497 return getExprBase(cast<SCEVZeroExtendExpr>(S)->getOperand());
2498 case scSignExtend:
2499 return getExprBase(cast<SCEVSignExtendExpr>(S)->getOperand());
2500 case scAddExpr: {
2501 // Skip over scaled operands (scMulExpr) to follow add operands as long as
2502 // there's nothing more complex.
2503 // FIXME: not sure if we want to recognize negation.
2504 const SCEVAddExpr *Add = cast<SCEVAddExpr>(S);
2505 for (std::reverse_iterator<SCEVAddExpr::op_iterator> I(Add->op_end()),
2506 E(Add->op_begin()); I != E; ++I) {
2507 const SCEV *SubExpr = *I;
2508 if (SubExpr->getSCEVType() == scAddExpr)
2509 return getExprBase(SubExpr);
2510
2511 if (SubExpr->getSCEVType() != scMulExpr)
2512 return SubExpr;
2513 }
2514 return S; // all operands are scaled, be conservative.
2515 }
2516 case scAddRecExpr:
2517 return getExprBase(cast<SCEVAddRecExpr>(S)->getStart());
2518 }
2519}
2520
Andrew Trick248d4102012-01-09 21:18:52 +00002521/// Return true if the chain increment is profitable to expand into a loop
2522/// invariant value, which may require its own register. A profitable chain
2523/// increment will be an offset relative to the same base. We allow such offsets
2524/// to potentially be used as chain increment as long as it's not obviously
2525/// expensive to expand using real instructions.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002526bool IVChain::isProfitableIncrement(const SCEV *OperExpr,
2527 const SCEV *IncExpr,
2528 ScalarEvolution &SE) {
2529 // Aggressively form chains when -stress-ivchain.
Andrew Trick248d4102012-01-09 21:18:52 +00002530 if (StressIVChain)
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002531 return true;
Andrew Trick248d4102012-01-09 21:18:52 +00002532
Andrew Trickd5d2db92012-01-10 01:45:08 +00002533 // Do not replace a constant offset from IV head with a nonconstant IV
2534 // increment.
2535 if (!isa<SCEVConstant>(IncExpr)) {
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002536 const SCEV *HeadExpr = SE.getSCEV(getWideOperand(Incs[0].IVOperand));
Andrew Trickd5d2db92012-01-10 01:45:08 +00002537 if (isa<SCEVConstant>(SE.getMinusSCEV(OperExpr, HeadExpr)))
2538 return 0;
2539 }
2540
2541 SmallPtrSet<const SCEV*, 8> Processed;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002542 return !isHighCostExpansion(IncExpr, Processed, SE);
Andrew Trick248d4102012-01-09 21:18:52 +00002543}
2544
2545/// Return true if the number of registers needed for the chain is estimated to
2546/// be less than the number required for the individual IV users. First prohibit
2547/// any IV users that keep the IV live across increments (the Users set should
2548/// be empty). Next count the number and type of increments in the chain.
2549///
2550/// Chaining IVs can lead to considerable code bloat if ISEL doesn't
2551/// effectively use postinc addressing modes. Only consider it profitable it the
2552/// increments can be computed in fewer registers when chained.
2553///
2554/// TODO: Consider IVInc free if it's already used in another chains.
2555static bool
Craig Topper71b7b682014-08-21 05:55:13 +00002556isProfitableChain(IVChain &Chain, SmallPtrSetImpl<Instruction*> &Users,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002557 ScalarEvolution &SE, const TargetTransformInfo &TTI) {
Andrew Trick248d4102012-01-09 21:18:52 +00002558 if (StressIVChain)
2559 return true;
2560
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002561 if (!Chain.hasIncs())
Andrew Trickd5d2db92012-01-10 01:45:08 +00002562 return false;
2563
2564 if (!Users.empty()) {
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002565 DEBUG(dbgs() << "Chain: " << *Chain.Incs[0].UserInst << " users:\n";
Craig Topper46276792014-08-24 23:23:06 +00002566 for (Instruction *Inst : Users) {
2567 dbgs() << " " << *Inst << "\n";
Andrew Trickd5d2db92012-01-10 01:45:08 +00002568 });
2569 return false;
2570 }
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002571 assert(!Chain.Incs.empty() && "empty IV chains are not allowed");
Andrew Trickd5d2db92012-01-10 01:45:08 +00002572
2573 // The chain itself may require a register, so intialize cost to 1.
2574 int cost = 1;
2575
2576 // A complete chain likely eliminates the need for keeping the original IV in
2577 // a register. LSR does not currently know how to form a complete chain unless
2578 // the header phi already exists.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002579 if (isa<PHINode>(Chain.tailUserInst())
2580 && SE.getSCEV(Chain.tailUserInst()) == Chain.Incs[0].IncExpr) {
Andrew Trickd5d2db92012-01-10 01:45:08 +00002581 --cost;
2582 }
Craig Topperf40110f2014-04-25 05:29:35 +00002583 const SCEV *LastIncExpr = nullptr;
Andrew Trickd5d2db92012-01-10 01:45:08 +00002584 unsigned NumConstIncrements = 0;
2585 unsigned NumVarIncrements = 0;
2586 unsigned NumReusedIncrements = 0;
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002587 for (IVChain::const_iterator I = Chain.begin(), E = Chain.end();
Andrew Trickd5d2db92012-01-10 01:45:08 +00002588 I != E; ++I) {
2589
2590 if (I->IncExpr->isZero())
2591 continue;
2592
2593 // Incrementing by zero or some constant is neutral. We assume constants can
2594 // be folded into an addressing mode or an add's immediate operand.
2595 if (isa<SCEVConstant>(I->IncExpr)) {
2596 ++NumConstIncrements;
2597 continue;
2598 }
2599
2600 if (I->IncExpr == LastIncExpr)
2601 ++NumReusedIncrements;
2602 else
2603 ++NumVarIncrements;
2604
2605 LastIncExpr = I->IncExpr;
2606 }
2607 // An IV chain with a single increment is handled by LSR's postinc
2608 // uses. However, a chain with multiple increments requires keeping the IV's
2609 // value live longer than it needs to be if chained.
2610 if (NumConstIncrements > 1)
2611 --cost;
2612
2613 // Materializing increment expressions in the preheader that didn't exist in
2614 // the original code may cost a register. For example, sign-extended array
2615 // indices can produce ridiculous increments like this:
2616 // IV + ((sext i32 (2 * %s) to i64) + (-1 * (sext i32 %s to i64)))
2617 cost += NumVarIncrements;
2618
2619 // Reusing variable increments likely saves a register to hold the multiple of
2620 // the stride.
2621 cost -= NumReusedIncrements;
2622
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002623 DEBUG(dbgs() << "Chain: " << *Chain.Incs[0].UserInst << " Cost: " << cost
2624 << "\n");
Andrew Trickd5d2db92012-01-10 01:45:08 +00002625
2626 return cost < 0;
Andrew Trick248d4102012-01-09 21:18:52 +00002627}
2628
Andrew Trick29fe5f02012-01-09 19:50:34 +00002629/// ChainInstruction - Add this IV user to an existing chain or make it the head
2630/// of a new chain.
2631void LSRInstance::ChainInstruction(Instruction *UserInst, Instruction *IVOper,
2632 SmallVectorImpl<ChainUsers> &ChainUsersVec) {
2633 // When IVs are used as types of varying widths, they are generally converted
2634 // to a wider type with some uses remaining narrow under a (free) trunc.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002635 Value *const NextIV = getWideOperand(IVOper);
2636 const SCEV *const OperExpr = SE.getSCEV(NextIV);
2637 const SCEV *const OperExprBase = getExprBase(OperExpr);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002638
2639 // Visit all existing chains. Check if its IVOper can be computed as a
2640 // profitable loop invariant increment from the last link in the Chain.
2641 unsigned ChainIdx = 0, NChains = IVChainVec.size();
Craig Topperf40110f2014-04-25 05:29:35 +00002642 const SCEV *LastIncExpr = nullptr;
Andrew Trick29fe5f02012-01-09 19:50:34 +00002643 for (; ChainIdx < NChains; ++ChainIdx) {
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002644 IVChain &Chain = IVChainVec[ChainIdx];
2645
2646 // Prune the solution space aggressively by checking that both IV operands
2647 // are expressions that operate on the same unscaled SCEVUnknown. This
2648 // "base" will be canceled by the subsequent getMinusSCEV call. Checking
2649 // first avoids creating extra SCEV expressions.
2650 if (!StressIVChain && Chain.ExprBase != OperExprBase)
2651 continue;
2652
2653 Value *PrevIV = getWideOperand(Chain.Incs.back().IVOperand);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002654 if (!isCompatibleIVType(PrevIV, NextIV))
2655 continue;
2656
Andrew Trick356a8962012-03-26 20:28:35 +00002657 // A phi node terminates a chain.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002658 if (isa<PHINode>(UserInst) && isa<PHINode>(Chain.tailUserInst()))
Andrew Trick29fe5f02012-01-09 19:50:34 +00002659 continue;
2660
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002661 // The increment must be loop-invariant so it can be kept in a register.
2662 const SCEV *PrevExpr = SE.getSCEV(PrevIV);
2663 const SCEV *IncExpr = SE.getMinusSCEV(OperExpr, PrevExpr);
2664 if (!SE.isLoopInvariant(IncExpr, L))
2665 continue;
2666
2667 if (Chain.isProfitableIncrement(OperExpr, IncExpr, SE)) {
Andrew Trick29fe5f02012-01-09 19:50:34 +00002668 LastIncExpr = IncExpr;
2669 break;
2670 }
2671 }
2672 // If we haven't found a chain, create a new one, unless we hit the max. Don't
2673 // bother for phi nodes, because they must be last in the chain.
2674 if (ChainIdx == NChains) {
2675 if (isa<PHINode>(UserInst))
2676 return;
Andrew Trick248d4102012-01-09 21:18:52 +00002677 if (NChains >= MaxChains && !StressIVChain) {
Andrew Trick29fe5f02012-01-09 19:50:34 +00002678 DEBUG(dbgs() << "IV Chain Limit\n");
2679 return;
2680 }
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002681 LastIncExpr = OperExpr;
Andrew Trickb9c822a2012-01-20 21:23:40 +00002682 // IVUsers may have skipped over sign/zero extensions. We don't currently
2683 // attempt to form chains involving extensions unless they can be hoisted
2684 // into this loop's AddRec.
2685 if (!isa<SCEVAddRecExpr>(LastIncExpr))
2686 return;
Andrew Trick29fe5f02012-01-09 19:50:34 +00002687 ++NChains;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002688 IVChainVec.push_back(IVChain(IVInc(UserInst, IVOper, LastIncExpr),
2689 OperExprBase));
Andrew Trick29fe5f02012-01-09 19:50:34 +00002690 ChainUsersVec.resize(NChains);
Jakob Stoklund Olesen293673d2012-04-25 18:01:32 +00002691 DEBUG(dbgs() << "IV Chain#" << ChainIdx << " Head: (" << *UserInst
2692 << ") IV=" << *LastIncExpr << "\n");
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002693 } else {
Jakob Stoklund Olesen293673d2012-04-25 18:01:32 +00002694 DEBUG(dbgs() << "IV Chain#" << ChainIdx << " Inc: (" << *UserInst
2695 << ") IV+" << *LastIncExpr << "\n");
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002696 // Add this IV user to the end of the chain.
2697 IVChainVec[ChainIdx].add(IVInc(UserInst, IVOper, LastIncExpr));
2698 }
Andrew Trickbc705902013-02-09 01:11:01 +00002699 IVChain &Chain = IVChainVec[ChainIdx];
Andrew Trick29fe5f02012-01-09 19:50:34 +00002700
2701 SmallPtrSet<Instruction*,4> &NearUsers = ChainUsersVec[ChainIdx].NearUsers;
2702 // This chain's NearUsers become FarUsers.
2703 if (!LastIncExpr->isZero()) {
2704 ChainUsersVec[ChainIdx].FarUsers.insert(NearUsers.begin(),
2705 NearUsers.end());
2706 NearUsers.clear();
2707 }
2708
2709 // All other uses of IVOperand become near uses of the chain.
2710 // We currently ignore intermediate values within SCEV expressions, assuming
2711 // they will eventually be used be the current chain, or can be computed
2712 // from one of the chain increments. To be more precise we could
2713 // transitively follow its user and only add leaf IV users to the set.
Chandler Carruthcdf47882014-03-09 03:16:01 +00002714 for (User *U : IVOper->users()) {
2715 Instruction *OtherUse = dyn_cast<Instruction>(U);
Andrew Trickbc705902013-02-09 01:11:01 +00002716 if (!OtherUse)
Andrew Tricke51feea2012-03-26 18:03:16 +00002717 continue;
Andrew Trickbc705902013-02-09 01:11:01 +00002718 // Uses in the chain will no longer be uses if the chain is formed.
2719 // Include the head of the chain in this iteration (not Chain.begin()).
2720 IVChain::const_iterator IncIter = Chain.Incs.begin();
2721 IVChain::const_iterator IncEnd = Chain.Incs.end();
2722 for( ; IncIter != IncEnd; ++IncIter) {
2723 if (IncIter->UserInst == OtherUse)
2724 break;
2725 }
2726 if (IncIter != IncEnd)
2727 continue;
2728
Andrew Trick29fe5f02012-01-09 19:50:34 +00002729 if (SE.isSCEVable(OtherUse->getType())
2730 && !isa<SCEVUnknown>(SE.getSCEV(OtherUse))
2731 && IU.isIVUserOrOperand(OtherUse)) {
2732 continue;
2733 }
Andrew Tricke51feea2012-03-26 18:03:16 +00002734 NearUsers.insert(OtherUse);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002735 }
2736
2737 // Since this user is part of the chain, it's no longer considered a use
2738 // of the chain.
2739 ChainUsersVec[ChainIdx].FarUsers.erase(UserInst);
2740}
2741
2742/// CollectChains - Populate the vector of Chains.
2743///
2744/// This decreases ILP at the architecture level. Targets with ample registers,
2745/// multiple memory ports, and no register renaming probably don't want
2746/// this. However, such targets should probably disable LSR altogether.
2747///
2748/// The job of LSR is to make a reasonable choice of induction variables across
2749/// the loop. Subsequent passes can easily "unchain" computation exposing more
2750/// ILP *within the loop* if the target wants it.
2751///
2752/// Finding the best IV chain is potentially a scheduling problem. Since LSR
2753/// will not reorder memory operations, it will recognize this as a chain, but
2754/// will generate redundant IV increments. Ideally this would be corrected later
2755/// by a smart scheduler:
2756/// = A[i]
2757/// = A[i+x]
2758/// A[i] =
2759/// A[i+x] =
2760///
2761/// TODO: Walk the entire domtree within this loop, not just the path to the
2762/// loop latch. This will discover chains on side paths, but requires
2763/// maintaining multiple copies of the Chains state.
2764void LSRInstance::CollectChains() {
Jakob Stoklund Olesen293673d2012-04-25 18:01:32 +00002765 DEBUG(dbgs() << "Collecting IV Chains.\n");
Andrew Trick29fe5f02012-01-09 19:50:34 +00002766 SmallVector<ChainUsers, 8> ChainUsersVec;
2767
2768 SmallVector<BasicBlock *,8> LatchPath;
2769 BasicBlock *LoopHeader = L->getHeader();
2770 for (DomTreeNode *Rung = DT.getNode(L->getLoopLatch());
2771 Rung->getBlock() != LoopHeader; Rung = Rung->getIDom()) {
2772 LatchPath.push_back(Rung->getBlock());
2773 }
2774 LatchPath.push_back(LoopHeader);
2775
2776 // Walk the instruction stream from the loop header to the loop latch.
2777 for (SmallVectorImpl<BasicBlock *>::reverse_iterator
2778 BBIter = LatchPath.rbegin(), BBEnd = LatchPath.rend();
2779 BBIter != BBEnd; ++BBIter) {
2780 for (BasicBlock::iterator I = (*BBIter)->begin(), E = (*BBIter)->end();
2781 I != E; ++I) {
2782 // Skip instructions that weren't seen by IVUsers analysis.
2783 if (isa<PHINode>(I) || !IU.isIVUserOrOperand(I))
2784 continue;
2785
2786 // Ignore users that are part of a SCEV expression. This way we only
2787 // consider leaf IV Users. This effectively rediscovers a portion of
2788 // IVUsers analysis but in program order this time.
2789 if (SE.isSCEVable(I->getType()) && !isa<SCEVUnknown>(SE.getSCEV(I)))
2790 continue;
2791
2792 // Remove this instruction from any NearUsers set it may be in.
2793 for (unsigned ChainIdx = 0, NChains = IVChainVec.size();
2794 ChainIdx < NChains; ++ChainIdx) {
2795 ChainUsersVec[ChainIdx].NearUsers.erase(I);
2796 }
2797 // Search for operands that can be chained.
2798 SmallPtrSet<Instruction*, 4> UniqueOperands;
2799 User::op_iterator IVOpEnd = I->op_end();
2800 User::op_iterator IVOpIter = findIVOperand(I->op_begin(), IVOpEnd, L, SE);
2801 while (IVOpIter != IVOpEnd) {
2802 Instruction *IVOpInst = cast<Instruction>(*IVOpIter);
David Blaikie70573dc2014-11-19 07:49:26 +00002803 if (UniqueOperands.insert(IVOpInst).second)
Andrew Trick29fe5f02012-01-09 19:50:34 +00002804 ChainInstruction(I, IVOpInst, ChainUsersVec);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002805 IVOpIter = findIVOperand(std::next(IVOpIter), IVOpEnd, L, SE);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002806 }
2807 } // Continue walking down the instructions.
2808 } // Continue walking down the domtree.
2809 // Visit phi backedges to determine if the chain can generate the IV postinc.
2810 for (BasicBlock::iterator I = L->getHeader()->begin();
2811 PHINode *PN = dyn_cast<PHINode>(I); ++I) {
2812 if (!SE.isSCEVable(PN->getType()))
2813 continue;
2814
2815 Instruction *IncV =
2816 dyn_cast<Instruction>(PN->getIncomingValueForBlock(L->getLoopLatch()));
2817 if (IncV)
2818 ChainInstruction(PN, IncV, ChainUsersVec);
2819 }
Andrew Trick248d4102012-01-09 21:18:52 +00002820 // Remove any unprofitable chains.
2821 unsigned ChainIdx = 0;
2822 for (unsigned UsersIdx = 0, NChains = IVChainVec.size();
2823 UsersIdx < NChains; ++UsersIdx) {
2824 if (!isProfitableChain(IVChainVec[UsersIdx],
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002825 ChainUsersVec[UsersIdx].FarUsers, SE, TTI))
Andrew Trick248d4102012-01-09 21:18:52 +00002826 continue;
2827 // Preserve the chain at UsesIdx.
2828 if (ChainIdx != UsersIdx)
2829 IVChainVec[ChainIdx] = IVChainVec[UsersIdx];
2830 FinalizeChain(IVChainVec[ChainIdx]);
2831 ++ChainIdx;
2832 }
2833 IVChainVec.resize(ChainIdx);
2834}
2835
2836void LSRInstance::FinalizeChain(IVChain &Chain) {
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002837 assert(!Chain.Incs.empty() && "empty IV chains are not allowed");
2838 DEBUG(dbgs() << "Final Chain: " << *Chain.Incs[0].UserInst << "\n");
Andrew Trick248d4102012-01-09 21:18:52 +00002839
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002840 for (IVChain::const_iterator I = Chain.begin(), E = Chain.end();
Andrew Trick248d4102012-01-09 21:18:52 +00002841 I != E; ++I) {
2842 DEBUG(dbgs() << " Inc: " << *I->UserInst << "\n");
2843 User::op_iterator UseI =
2844 std::find(I->UserInst->op_begin(), I->UserInst->op_end(), I->IVOperand);
2845 assert(UseI != I->UserInst->op_end() && "cannot find IV operand");
2846 IVIncSet.insert(UseI);
2847 }
2848}
2849
2850/// Return true if the IVInc can be folded into an addressing mode.
2851static bool canFoldIVIncExpr(const SCEV *IncExpr, Instruction *UserInst,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002852 Value *Operand, const TargetTransformInfo &TTI) {
Andrew Trick248d4102012-01-09 21:18:52 +00002853 const SCEVConstant *IncConst = dyn_cast<SCEVConstant>(IncExpr);
2854 if (!IncConst || !isAddressUse(UserInst, Operand))
2855 return false;
2856
2857 if (IncConst->getValue()->getValue().getMinSignedBits() > 64)
2858 return false;
2859
2860 int64_t IncOffset = IncConst->getValue()->getSExtValue();
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002861 if (!isAlwaysFoldable(TTI, LSRUse::Address,
Craig Topperf40110f2014-04-25 05:29:35 +00002862 getAccessType(UserInst), /*BaseGV=*/ nullptr,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002863 IncOffset, /*HaseBaseReg=*/ false))
Andrew Trick248d4102012-01-09 21:18:52 +00002864 return false;
2865
2866 return true;
2867}
2868
2869/// GenerateIVChains - Generate an add or subtract for each IVInc in a chain to
2870/// materialize the IV user's operand from the previous IV user's operand.
2871void LSRInstance::GenerateIVChain(const IVChain &Chain, SCEVExpander &Rewriter,
2872 SmallVectorImpl<WeakVH> &DeadInsts) {
2873 // Find the new IVOperand for the head of the chain. It may have been replaced
2874 // by LSR.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002875 const IVInc &Head = Chain.Incs[0];
Andrew Trick248d4102012-01-09 21:18:52 +00002876 User::op_iterator IVOpEnd = Head.UserInst->op_end();
Andrew Trickf3a25442013-03-19 05:10:27 +00002877 // findIVOperand returns IVOpEnd if it can no longer find a valid IV user.
Andrew Trick248d4102012-01-09 21:18:52 +00002878 User::op_iterator IVOpIter = findIVOperand(Head.UserInst->op_begin(),
2879 IVOpEnd, L, SE);
Craig Topperf40110f2014-04-25 05:29:35 +00002880 Value *IVSrc = nullptr;
Andrew Trickf3a25442013-03-19 05:10:27 +00002881 while (IVOpIter != IVOpEnd) {
Andrew Trick248d4102012-01-09 21:18:52 +00002882 IVSrc = getWideOperand(*IVOpIter);
2883
2884 // If this operand computes the expression that the chain needs, we may use
2885 // it. (Check this after setting IVSrc which is used below.)
2886 //
2887 // Note that if Head.IncExpr is wider than IVSrc, then this phi is too
2888 // narrow for the chain, so we can no longer use it. We do allow using a
2889 // wider phi, assuming the LSR checked for free truncation. In that case we
2890 // should already have a truncate on this operand such that
2891 // getSCEV(IVSrc) == IncExpr.
2892 if (SE.getSCEV(*IVOpIter) == Head.IncExpr
2893 || SE.getSCEV(IVSrc) == Head.IncExpr) {
2894 break;
2895 }
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002896 IVOpIter = findIVOperand(std::next(IVOpIter), IVOpEnd, L, SE);
Andrew Trickf3a25442013-03-19 05:10:27 +00002897 }
Andrew Trick248d4102012-01-09 21:18:52 +00002898 if (IVOpIter == IVOpEnd) {
2899 // Gracefully give up on this chain.
2900 DEBUG(dbgs() << "Concealed chain head: " << *Head.UserInst << "\n");
2901 return;
2902 }
2903
2904 DEBUG(dbgs() << "Generate chain at: " << *IVSrc << "\n");
2905 Type *IVTy = IVSrc->getType();
2906 Type *IntTy = SE.getEffectiveSCEVType(IVTy);
Craig Topperf40110f2014-04-25 05:29:35 +00002907 const SCEV *LeftOverExpr = nullptr;
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002908 for (IVChain::const_iterator IncI = Chain.begin(),
Andrew Trick248d4102012-01-09 21:18:52 +00002909 IncE = Chain.end(); IncI != IncE; ++IncI) {
2910
2911 Instruction *InsertPt = IncI->UserInst;
2912 if (isa<PHINode>(InsertPt))
2913 InsertPt = L->getLoopLatch()->getTerminator();
2914
2915 // IVOper will replace the current IV User's operand. IVSrc is the IV
2916 // value currently held in a register.
2917 Value *IVOper = IVSrc;
2918 if (!IncI->IncExpr->isZero()) {
2919 // IncExpr was the result of subtraction of two narrow values, so must
2920 // be signed.
2921 const SCEV *IncExpr = SE.getNoopOrSignExtend(IncI->IncExpr, IntTy);
2922 LeftOverExpr = LeftOverExpr ?
2923 SE.getAddExpr(LeftOverExpr, IncExpr) : IncExpr;
2924 }
2925 if (LeftOverExpr && !LeftOverExpr->isZero()) {
2926 // Expand the IV increment.
2927 Rewriter.clearPostInc();
2928 Value *IncV = Rewriter.expandCodeFor(LeftOverExpr, IntTy, InsertPt);
2929 const SCEV *IVOperExpr = SE.getAddExpr(SE.getUnknown(IVSrc),
2930 SE.getUnknown(IncV));
2931 IVOper = Rewriter.expandCodeFor(IVOperExpr, IVTy, InsertPt);
2932
2933 // If an IV increment can't be folded, use it as the next IV value.
2934 if (!canFoldIVIncExpr(LeftOverExpr, IncI->UserInst, IncI->IVOperand,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002935 TTI)) {
Andrew Trick248d4102012-01-09 21:18:52 +00002936 assert(IVTy == IVOper->getType() && "inconsistent IV increment type");
2937 IVSrc = IVOper;
Craig Topperf40110f2014-04-25 05:29:35 +00002938 LeftOverExpr = nullptr;
Andrew Trick248d4102012-01-09 21:18:52 +00002939 }
2940 }
2941 Type *OperTy = IncI->IVOperand->getType();
2942 if (IVTy != OperTy) {
2943 assert(SE.getTypeSizeInBits(IVTy) >= SE.getTypeSizeInBits(OperTy) &&
2944 "cannot extend a chained IV");
2945 IRBuilder<> Builder(InsertPt);
2946 IVOper = Builder.CreateTruncOrBitCast(IVOper, OperTy, "lsr.chain");
2947 }
2948 IncI->UserInst->replaceUsesOfWith(IncI->IVOperand, IVOper);
2949 DeadInsts.push_back(IncI->IVOperand);
2950 }
2951 // If LSR created a new, wider phi, we may also replace its postinc. We only
2952 // do this if we also found a wide value for the head of the chain.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002953 if (isa<PHINode>(Chain.tailUserInst())) {
Andrew Trick248d4102012-01-09 21:18:52 +00002954 for (BasicBlock::iterator I = L->getHeader()->begin();
2955 PHINode *Phi = dyn_cast<PHINode>(I); ++I) {
2956 if (!isCompatibleIVType(Phi, IVSrc))
2957 continue;
2958 Instruction *PostIncV = dyn_cast<Instruction>(
2959 Phi->getIncomingValueForBlock(L->getLoopLatch()));
2960 if (!PostIncV || (SE.getSCEV(PostIncV) != SE.getSCEV(IVSrc)))
2961 continue;
2962 Value *IVOper = IVSrc;
2963 Type *PostIncTy = PostIncV->getType();
2964 if (IVTy != PostIncTy) {
2965 assert(PostIncTy->isPointerTy() && "mixing int/ptr IV types");
2966 IRBuilder<> Builder(L->getLoopLatch()->getTerminator());
2967 Builder.SetCurrentDebugLocation(PostIncV->getDebugLoc());
2968 IVOper = Builder.CreatePointerCast(IVSrc, PostIncTy, "lsr.chain");
2969 }
2970 Phi->replaceUsesOfWith(PostIncV, IVOper);
2971 DeadInsts.push_back(PostIncV);
2972 }
2973 }
Andrew Trick29fe5f02012-01-09 19:50:34 +00002974}
2975
Dan Gohman45774ce2010-02-12 10:34:29 +00002976void LSRInstance::CollectFixupsAndInitialFormulae() {
2977 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) {
Andrew Trick248d4102012-01-09 21:18:52 +00002978 Instruction *UserInst = UI->getUser();
2979 // Skip IV users that are part of profitable IV Chains.
2980 User::op_iterator UseI = std::find(UserInst->op_begin(), UserInst->op_end(),
2981 UI->getOperandValToReplace());
2982 assert(UseI != UserInst->op_end() && "cannot find IV operand");
2983 if (IVIncSet.count(UseI))
2984 continue;
2985
Dan Gohman45774ce2010-02-12 10:34:29 +00002986 // Record the uses.
2987 LSRFixup &LF = getNewFixup();
Andrew Trick248d4102012-01-09 21:18:52 +00002988 LF.UserInst = UserInst;
Dan Gohman45774ce2010-02-12 10:34:29 +00002989 LF.OperandValToReplace = UI->getOperandValToReplace();
Dan Gohmand006ab92010-04-07 22:27:08 +00002990 LF.PostIncLoops = UI->getPostIncLoops();
Dan Gohman45774ce2010-02-12 10:34:29 +00002991
2992 LSRUse::KindType Kind = LSRUse::Basic;
Craig Topperf40110f2014-04-25 05:29:35 +00002993 Type *AccessTy = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +00002994 if (isAddressUse(LF.UserInst, LF.OperandValToReplace)) {
2995 Kind = LSRUse::Address;
2996 AccessTy = getAccessType(LF.UserInst);
2997 }
2998
Dan Gohmane637ff52010-04-19 21:48:58 +00002999 const SCEV *S = IU.getExpr(*UI);
Dan Gohman45774ce2010-02-12 10:34:29 +00003000
3001 // Equality (== and !=) ICmps are special. We can rewrite (i == N) as
3002 // (N - i == 0), and this allows (N - i) to be the expression that we work
3003 // with rather than just N or i, so we can consider the register
3004 // requirements for both N and i at the same time. Limiting this code to
3005 // equality icmps is not a problem because all interesting loops use
3006 // equality icmps, thanks to IndVarSimplify.
3007 if (ICmpInst *CI = dyn_cast<ICmpInst>(LF.UserInst))
3008 if (CI->isEquality()) {
3009 // Swap the operands if needed to put the OperandValToReplace on the
3010 // left, for consistency.
3011 Value *NV = CI->getOperand(1);
3012 if (NV == LF.OperandValToReplace) {
3013 CI->setOperand(1, CI->getOperand(0));
3014 CI->setOperand(0, NV);
Dan Gohmanee2fea32010-05-20 19:26:52 +00003015 NV = CI->getOperand(1);
Dan Gohmanfdf98742010-05-20 19:16:03 +00003016 Changed = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00003017 }
3018
3019 // x == y --> x - y == 0
3020 const SCEV *N = SE.getSCEV(NV);
Andrew Trick57243da2013-10-25 21:35:56 +00003021 if (SE.isLoopInvariant(N, L) && isSafeToExpand(N, SE)) {
Dan Gohman3268e4d2011-05-18 21:02:18 +00003022 // S is normalized, so normalize N before folding it into S
3023 // to keep the result normalized.
Craig Topperf40110f2014-04-25 05:29:35 +00003024 N = TransformForPostIncUse(Normalize, N, CI, nullptr,
Dan Gohman3268e4d2011-05-18 21:02:18 +00003025 LF.PostIncLoops, SE, DT);
Dan Gohman45774ce2010-02-12 10:34:29 +00003026 Kind = LSRUse::ICmpZero;
3027 S = SE.getMinusSCEV(N, S);
3028 }
3029
3030 // -1 and the negations of all interesting strides (except the negation
3031 // of -1) are now also interesting.
3032 for (size_t i = 0, e = Factors.size(); i != e; ++i)
3033 if (Factors[i] != -1)
3034 Factors.insert(-(uint64_t)Factors[i]);
3035 Factors.insert(-1);
3036 }
3037
3038 // Set up the initial formula for this use.
3039 std::pair<size_t, int64_t> P = getUse(S, Kind, AccessTy);
3040 LF.LUIdx = P.first;
3041 LF.Offset = P.second;
3042 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohmand006ab92010-04-07 22:27:08 +00003043 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohman14152082010-07-15 20:24:58 +00003044 if (!LU.WidestFixupType ||
3045 SE.getTypeSizeInBits(LU.WidestFixupType) <
3046 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
3047 LU.WidestFixupType = LF.OperandValToReplace->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003048
3049 // If this is the first use of this LSRUse, give it a formula.
3050 if (LU.Formulae.empty()) {
Dan Gohman8c16b382010-02-22 04:11:59 +00003051 InsertInitialFormula(S, LU, LF.LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00003052 CountRegisters(LU.Formulae.back(), LF.LUIdx);
3053 }
3054 }
3055
3056 DEBUG(print_fixups(dbgs()));
3057}
3058
Dan Gohmana4ca28a2010-05-20 20:52:00 +00003059/// InsertInitialFormula - Insert a formula for the given expression into
3060/// the given use, separating out loop-variant portions from loop-invariant
3061/// and loop-computable portions.
Dan Gohman45774ce2010-02-12 10:34:29 +00003062void
Dan Gohman8c16b382010-02-22 04:11:59 +00003063LSRInstance::InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx) {
Andrew Trick57243da2013-10-25 21:35:56 +00003064 // Mark uses whose expressions cannot be expanded.
3065 if (!isSafeToExpand(S, SE))
3066 LU.RigidFormula = true;
3067
Dan Gohman45774ce2010-02-12 10:34:29 +00003068 Formula F;
Dan Gohman20d9ce22010-11-17 21:41:58 +00003069 F.InitialMatch(S, L, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +00003070 bool Inserted = InsertFormula(LU, LUIdx, F);
3071 assert(Inserted && "Initial formula already exists!"); (void)Inserted;
3072}
3073
Dan Gohmana4ca28a2010-05-20 20:52:00 +00003074/// InsertSupplementalFormula - Insert a simple single-register formula for
3075/// the given expression into the given use.
Dan Gohman45774ce2010-02-12 10:34:29 +00003076void
3077LSRInstance::InsertSupplementalFormula(const SCEV *S,
3078 LSRUse &LU, size_t LUIdx) {
3079 Formula F;
3080 F.BaseRegs.push_back(S);
Chandler Carruth7e31c8f2013-01-12 23:46:04 +00003081 F.HasBaseReg = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00003082 bool Inserted = InsertFormula(LU, LUIdx, F);
3083 assert(Inserted && "Supplemental formula already exists!"); (void)Inserted;
3084}
3085
3086/// CountRegisters - Note which registers are used by the given formula,
3087/// updating RegUses.
3088void LSRInstance::CountRegisters(const Formula &F, size_t LUIdx) {
3089 if (F.ScaledReg)
3090 RegUses.CountRegister(F.ScaledReg, LUIdx);
3091 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
3092 E = F.BaseRegs.end(); I != E; ++I)
3093 RegUses.CountRegister(*I, LUIdx);
3094}
3095
3096/// InsertFormula - If the given formula has not yet been inserted, add it to
3097/// the list, and return true. Return false otherwise.
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;
Craig Topperf40110f2014-04-25 05:29:35 +00003181 std::pair<size_t, int64_t> P = getUse(S, LSRUse::Basic, nullptr);
Dan Gohman45774ce2010-02-12 10:34:29 +00003182 LF.LUIdx = P.first;
3183 LF.Offset = P.second;
3184 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohmand006ab92010-04-07 22:27:08 +00003185 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohman14152082010-07-15 20:24:58 +00003186 if (!LU.WidestFixupType ||
3187 SE.getTypeSizeInBits(LU.WidestFixupType) <
3188 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
3189 LU.WidestFixupType = LF.OperandValToReplace->getType();
Chandler Carruthcdf47882014-03-09 03:16:01 +00003190 InsertSupplementalFormula(US, LU, LF.LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00003191 CountRegisters(LU.Formulae.back(), Uses.size() - 1);
3192 break;
3193 }
3194 }
3195 }
3196}
3197
3198/// CollectSubexprs - Split S into subexpressions which can be pulled out into
3199/// separate registers. If C is non-null, multiply each subexpression by C.
Andrew Trickc8037062012-07-17 05:30:37 +00003200///
3201/// Return remainder expression after factoring the subexpressions captured by
3202/// Ops. If Ops is complete, return NULL.
3203static const SCEV *CollectSubexprs(const SCEV *S, const SCEVConstant *C,
3204 SmallVectorImpl<const SCEV *> &Ops,
3205 const Loop *L,
3206 ScalarEvolution &SE,
3207 unsigned Depth = 0) {
3208 // Arbitrarily cap recursion to protect compile time.
3209 if (Depth >= 3)
3210 return S;
3211
Dan Gohman45774ce2010-02-12 10:34:29 +00003212 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
3213 // Break out add operands.
3214 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
Andrew Trickc8037062012-07-17 05:30:37 +00003215 I != E; ++I) {
3216 const SCEV *Remainder = CollectSubexprs(*I, C, Ops, L, SE, Depth+1);
3217 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;
3374 for (SmallVectorImpl<const SCEV *>::const_iterator
3375 I = Base.BaseRegs.begin(), E = Base.BaseRegs.end(); I != E; ++I) {
3376 const SCEV *BaseReg = *I;
Dan Gohman20d9ce22010-11-17 21:41:58 +00003377 if (SE.properlyDominates(BaseReg, L->getHeader()) &&
Dan Gohmanafd6db92010-11-17 21:23:15 +00003378 !SE.hasComputableLoopEvolution(BaseReg, L))
Dan Gohman45774ce2010-02-12 10:34:29 +00003379 Ops.push_back(BaseReg);
3380 else
3381 F.BaseRegs.push_back(BaseReg);
3382 }
3383 if (Ops.size() > 1) {
Dan Gohmanbb7d5222010-02-14 18:50:49 +00003384 const SCEV *Sum = SE.getAddExpr(Ops);
3385 // TODO: If Sum is zero, it probably means ScalarEvolution missed an
3386 // opportunity to fold something. For now, just ignore such cases
Dan Gohman8b0a4192010-03-01 17:49:51 +00003387 // rather than proceed with zero in a register.
Dan Gohmanbb7d5222010-02-14 18:50:49 +00003388 if (!Sum->isZero()) {
3389 F.BaseRegs.push_back(Sum);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003390 F.Canonicalize();
Dan Gohmanbb7d5222010-02-14 18:50:49 +00003391 (void)InsertFormula(LU, LUIdx, F);
3392 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003393 }
3394}
3395
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003396/// \brief Helper function for LSRInstance::GenerateSymbolicOffsets.
3397void LSRInstance::GenerateSymbolicOffsetsImpl(LSRUse &LU, unsigned LUIdx,
3398 const Formula &Base, size_t Idx,
3399 bool IsScaledReg) {
3400 const SCEV *G = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx];
3401 GlobalValue *GV = ExtractSymbol(G, SE);
3402 if (G->isZero() || !GV)
3403 return;
3404 Formula F = Base;
3405 F.BaseGV = GV;
3406 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F))
3407 return;
3408 if (IsScaledReg)
3409 F.ScaledReg = G;
3410 else
3411 F.BaseRegs[Idx] = G;
3412 (void)InsertFormula(LU, LUIdx, F);
3413}
3414
Dan Gohman45774ce2010-02-12 10:34:29 +00003415/// GenerateSymbolicOffsets - Generate reuse formulae using symbolic offsets.
3416void LSRInstance::GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx,
3417 Formula Base) {
3418 // We can't add a symbolic offset if the address already contains one.
Chandler Carruth6e479322013-01-07 15:04:40 +00003419 if (Base.BaseGV) return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003420
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003421 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3422 GenerateSymbolicOffsetsImpl(LU, LUIdx, Base, i);
3423 if (Base.Scale == 1)
3424 GenerateSymbolicOffsetsImpl(LU, LUIdx, Base, /* Idx */ -1,
3425 /* IsScaledReg */ true);
3426}
3427
3428/// \brief Helper function for LSRInstance::GenerateConstantOffsets.
3429void LSRInstance::GenerateConstantOffsetsImpl(
3430 LSRUse &LU, unsigned LUIdx, const Formula &Base,
3431 const SmallVectorImpl<int64_t> &Worklist, size_t Idx, bool IsScaledReg) {
3432 const SCEV *G = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx];
3433 for (SmallVectorImpl<int64_t>::const_iterator I = Worklist.begin(),
3434 E = Worklist.end();
3435 I != E; ++I) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003436 Formula F = Base;
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003437 F.BaseOffset = (uint64_t)Base.BaseOffset - *I;
3438 if (isLegalUse(TTI, LU.MinOffset - *I, LU.MaxOffset - *I, LU.Kind,
3439 LU.AccessTy, F)) {
3440 // Add the offset to the base register.
3441 const SCEV *NewG = SE.getAddExpr(SE.getConstant(G->getType(), *I), G);
3442 // If it cancelled out, drop the base register, otherwise update it.
3443 if (NewG->isZero()) {
3444 if (IsScaledReg) {
3445 F.Scale = 0;
3446 F.ScaledReg = nullptr;
3447 } else
3448 F.DeleteBaseReg(F.BaseRegs[Idx]);
3449 F.Canonicalize();
3450 } else if (IsScaledReg)
3451 F.ScaledReg = NewG;
3452 else
3453 F.BaseRegs[Idx] = NewG;
3454
3455 (void)InsertFormula(LU, LUIdx, F);
3456 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003457 }
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003458
3459 int64_t Imm = ExtractImmediate(G, SE);
3460 if (G->isZero() || Imm == 0)
3461 return;
3462 Formula F = Base;
3463 F.BaseOffset = (uint64_t)F.BaseOffset + Imm;
3464 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F))
3465 return;
3466 if (IsScaledReg)
3467 F.ScaledReg = G;
3468 else
3469 F.BaseRegs[Idx] = G;
3470 (void)InsertFormula(LU, LUIdx, F);
Dan Gohman45774ce2010-02-12 10:34:29 +00003471}
3472
3473/// GenerateConstantOffsets - Generate reuse formulae using symbolic offsets.
3474void LSRInstance::GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx,
3475 Formula Base) {
3476 // TODO: For now, just add the min and max offset, because it usually isn't
3477 // worthwhile looking at everything inbetween.
Dan Gohman4afd4122010-07-15 15:14:45 +00003478 SmallVector<int64_t, 2> Worklist;
Dan Gohman45774ce2010-02-12 10:34:29 +00003479 Worklist.push_back(LU.MinOffset);
3480 if (LU.MaxOffset != LU.MinOffset)
3481 Worklist.push_back(LU.MaxOffset);
3482
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003483 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3484 GenerateConstantOffsetsImpl(LU, LUIdx, Base, Worklist, i);
3485 if (Base.Scale == 1)
3486 GenerateConstantOffsetsImpl(LU, LUIdx, Base, Worklist, /* Idx */ -1,
3487 /* IsScaledReg */ true);
Dan Gohman45774ce2010-02-12 10:34:29 +00003488}
3489
3490/// GenerateICmpZeroScales - For ICmpZero, check to see if we can scale up
3491/// the comparison. For example, x == y -> x*c == y*c.
3492void LSRInstance::GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx,
3493 Formula Base) {
3494 if (LU.Kind != LSRUse::ICmpZero) return;
3495
3496 // Determine the integer type for the base formula.
Chris Lattner229907c2011-07-18 04:54:35 +00003497 Type *IntTy = Base.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003498 if (!IntTy) return;
3499 if (SE.getTypeSizeInBits(IntTy) > 64) return;
3500
3501 // Don't do this if there is more than one offset.
3502 if (LU.MinOffset != LU.MaxOffset) return;
3503
Chandler Carruth6e479322013-01-07 15:04:40 +00003504 assert(!Base.BaseGV && "ICmpZero use is not legal!");
Dan Gohman45774ce2010-02-12 10:34:29 +00003505
3506 // Check each interesting stride.
3507 for (SmallSetVector<int64_t, 8>::const_iterator
3508 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
3509 int64_t Factor = *I;
Dan Gohman45774ce2010-02-12 10:34:29 +00003510
3511 // Check that the multiplication doesn't overflow.
Chandler Carruth6e479322013-01-07 15:04:40 +00003512 if (Base.BaseOffset == INT64_MIN && Factor == -1)
Dan Gohman5f10d6c2010-02-17 00:41:53 +00003513 continue;
Chandler Carruth6e479322013-01-07 15:04:40 +00003514 int64_t NewBaseOffset = (uint64_t)Base.BaseOffset * Factor;
3515 if (NewBaseOffset / Factor != Base.BaseOffset)
Dan Gohman45774ce2010-02-12 10:34:29 +00003516 continue;
Andrew Trick429e9ed2014-02-26 16:31:56 +00003517 // If the offset will be truncated at this use, check that it is in bounds.
3518 if (!IntTy->isPointerTy() &&
3519 !ConstantInt::isValueValidForType(IntTy, NewBaseOffset))
3520 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003521
3522 // Check that multiplying with the use offset doesn't overflow.
3523 int64_t Offset = LU.MinOffset;
Dan Gohman5f10d6c2010-02-17 00:41:53 +00003524 if (Offset == INT64_MIN && Factor == -1)
3525 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003526 Offset = (uint64_t)Offset * Factor;
Dan Gohman13ac3b22010-02-17 00:42:19 +00003527 if (Offset / Factor != LU.MinOffset)
Dan Gohman45774ce2010-02-12 10:34:29 +00003528 continue;
Andrew Trick429e9ed2014-02-26 16:31:56 +00003529 // If the offset will be truncated at this use, check that it is in bounds.
3530 if (!IntTy->isPointerTy() &&
3531 !ConstantInt::isValueValidForType(IntTy, Offset))
3532 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003533
Dan Gohman963b1c12010-06-24 16:57:52 +00003534 Formula F = Base;
Chandler Carruth6e479322013-01-07 15:04:40 +00003535 F.BaseOffset = NewBaseOffset;
Dan Gohman963b1c12010-06-24 16:57:52 +00003536
Dan Gohman45774ce2010-02-12 10:34:29 +00003537 // Check that this scale is legal.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003538 if (!isLegalUse(TTI, Offset, Offset, LU.Kind, LU.AccessTy, F))
Dan Gohman45774ce2010-02-12 10:34:29 +00003539 continue;
3540
3541 // Compensate for the use having MinOffset built into it.
Chandler Carruth6e479322013-01-07 15:04:40 +00003542 F.BaseOffset = (uint64_t)F.BaseOffset + Offset - LU.MinOffset;
Dan Gohman45774ce2010-02-12 10:34:29 +00003543
Dan Gohman1d2ded72010-05-03 22:09:21 +00003544 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman45774ce2010-02-12 10:34:29 +00003545
3546 // Check that multiplying with each base register doesn't overflow.
3547 for (size_t i = 0, e = F.BaseRegs.size(); i != e; ++i) {
3548 F.BaseRegs[i] = SE.getMulExpr(F.BaseRegs[i], FactorS);
Dan Gohman4eebb942010-02-19 19:35:48 +00003549 if (getExactSDiv(F.BaseRegs[i], FactorS, SE) != Base.BaseRegs[i])
Dan Gohman45774ce2010-02-12 10:34:29 +00003550 goto next;
3551 }
3552
3553 // Check that multiplying with the scaled register doesn't overflow.
3554 if (F.ScaledReg) {
3555 F.ScaledReg = SE.getMulExpr(F.ScaledReg, FactorS);
Dan Gohman4eebb942010-02-19 19:35:48 +00003556 if (getExactSDiv(F.ScaledReg, FactorS, SE) != Base.ScaledReg)
Dan Gohman45774ce2010-02-12 10:34:29 +00003557 continue;
3558 }
3559
Dan Gohman6136e942011-05-03 00:46:49 +00003560 // Check that multiplying with the unfolded offset doesn't overflow.
3561 if (F.UnfoldedOffset != 0) {
Dan Gohman6c4a3192011-05-23 21:07:39 +00003562 if (F.UnfoldedOffset == INT64_MIN && Factor == -1)
3563 continue;
Dan Gohman6136e942011-05-03 00:46:49 +00003564 F.UnfoldedOffset = (uint64_t)F.UnfoldedOffset * Factor;
3565 if (F.UnfoldedOffset / Factor != Base.UnfoldedOffset)
3566 continue;
Andrew Trick429e9ed2014-02-26 16:31:56 +00003567 // If the offset will be truncated, check that it is in bounds.
3568 if (!IntTy->isPointerTy() &&
3569 !ConstantInt::isValueValidForType(IntTy, F.UnfoldedOffset))
3570 continue;
Dan Gohman6136e942011-05-03 00:46:49 +00003571 }
3572
Dan Gohman45774ce2010-02-12 10:34:29 +00003573 // If we make it here and it's legal, add it.
3574 (void)InsertFormula(LU, LUIdx, F);
3575 next:;
3576 }
3577}
3578
3579/// GenerateScales - Generate stride factor reuse formulae by making use of
3580/// scaled-offset address modes, for example.
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00003581void LSRInstance::GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003582 // Determine the integer type for the base formula.
Chris Lattner229907c2011-07-18 04:54:35 +00003583 Type *IntTy = Base.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003584 if (!IntTy) return;
3585
3586 // If this Formula already has a scaled register, we can't add another one.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003587 // Try to unscale the formula to generate a better scale.
3588 if (Base.Scale != 0 && !Base.Unscale())
3589 return;
3590
3591 assert(Base.Scale == 0 && "Unscale did not did its job!");
Dan Gohman45774ce2010-02-12 10:34:29 +00003592
3593 // Check each interesting stride.
3594 for (SmallSetVector<int64_t, 8>::const_iterator
3595 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
3596 int64_t Factor = *I;
3597
Chandler Carruth6e479322013-01-07 15:04:40 +00003598 Base.Scale = Factor;
3599 Base.HasBaseReg = Base.BaseRegs.size() > 1;
Dan Gohman45774ce2010-02-12 10:34:29 +00003600 // Check whether this scale is going to be legal.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003601 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
3602 Base)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003603 // As a special-case, handle special out-of-loop Basic users specially.
3604 // TODO: Reconsider this special case.
3605 if (LU.Kind == LSRUse::Basic &&
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003606 isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LSRUse::Special,
3607 LU.AccessTy, Base) &&
Dan Gohman45774ce2010-02-12 10:34:29 +00003608 LU.AllFixupsOutsideLoop)
3609 LU.Kind = LSRUse::Special;
3610 else
3611 continue;
3612 }
3613 // For an ICmpZero, negating a solitary base register won't lead to
3614 // new solutions.
3615 if (LU.Kind == LSRUse::ICmpZero &&
Chandler Carruth6e479322013-01-07 15:04:40 +00003616 !Base.HasBaseReg && Base.BaseOffset == 0 && !Base.BaseGV)
Dan Gohman45774ce2010-02-12 10:34:29 +00003617 continue;
3618 // For each addrec base reg, apply the scale, if possible.
3619 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3620 if (const SCEVAddRecExpr *AR =
3621 dyn_cast<SCEVAddRecExpr>(Base.BaseRegs[i])) {
Dan Gohman1d2ded72010-05-03 22:09:21 +00003622 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman45774ce2010-02-12 10:34:29 +00003623 if (FactorS->isZero())
3624 continue;
3625 // Divide out the factor, ignoring high bits, since we'll be
3626 // scaling the value back up in the end.
Dan Gohman4eebb942010-02-19 19:35:48 +00003627 if (const SCEV *Quotient = getExactSDiv(AR, FactorS, SE, true)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003628 // TODO: This could be optimized to avoid all the copying.
3629 Formula F = Base;
3630 F.ScaledReg = Quotient;
Dan Gohman80a96082010-05-20 15:17:54 +00003631 F.DeleteBaseReg(F.BaseRegs[i]);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003632 // The canonical representation of 1*reg is reg, which is already in
3633 // Base. In that case, do not try to insert the formula, it will be
3634 // rejected anyway.
3635 if (F.Scale == 1 && F.BaseRegs.empty())
3636 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003637 (void)InsertFormula(LU, LUIdx, F);
3638 }
3639 }
3640 }
3641}
3642
3643/// GenerateTruncates - Generate reuse formulae from different IV types.
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00003644void LSRInstance::GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003645 // Don't bother truncating symbolic values.
Chandler Carruth6e479322013-01-07 15:04:40 +00003646 if (Base.BaseGV) return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003647
3648 // Determine the integer type for the base formula.
Chris Lattner229907c2011-07-18 04:54:35 +00003649 Type *DstTy = Base.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003650 if (!DstTy) return;
3651 DstTy = SE.getEffectiveSCEVType(DstTy);
3652
Chris Lattner229907c2011-07-18 04:54:35 +00003653 for (SmallSetVector<Type *, 4>::const_iterator
Dan Gohman45774ce2010-02-12 10:34:29 +00003654 I = Types.begin(), E = Types.end(); I != E; ++I) {
Chris Lattner229907c2011-07-18 04:54:35 +00003655 Type *SrcTy = *I;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003656 if (SrcTy != DstTy && TTI.isTruncateFree(SrcTy, DstTy)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003657 Formula F = Base;
3658
3659 if (F.ScaledReg) F.ScaledReg = SE.getAnyExtendExpr(F.ScaledReg, *I);
3660 for (SmallVectorImpl<const SCEV *>::iterator J = F.BaseRegs.begin(),
3661 JE = F.BaseRegs.end(); J != JE; ++J)
3662 *J = SE.getAnyExtendExpr(*J, SrcTy);
3663
3664 // TODO: This assumes we've done basic processing on all uses and
3665 // have an idea what the register usage is.
3666 if (!F.hasRegsUsedByUsesOtherThan(LUIdx, RegUses))
3667 continue;
3668
3669 (void)InsertFormula(LU, LUIdx, F);
3670 }
3671 }
3672}
3673
3674namespace {
3675
Dan Gohmane7f74bb2010-02-14 18:51:20 +00003676/// WorkItem - Helper class for GenerateCrossUseConstantOffsets. It's used to
Dan Gohman45774ce2010-02-12 10:34:29 +00003677/// defer modifications so that the search phase doesn't have to worry about
3678/// the data structures moving underneath it.
3679struct WorkItem {
3680 size_t LUIdx;
3681 int64_t Imm;
3682 const SCEV *OrigReg;
3683
3684 WorkItem(size_t LI, int64_t I, const SCEV *R)
3685 : LUIdx(LI), Imm(I), OrigReg(R) {}
3686
3687 void print(raw_ostream &OS) const;
3688 void dump() const;
3689};
3690
3691}
3692
3693void WorkItem::print(raw_ostream &OS) const {
3694 OS << "in formulae referencing " << *OrigReg << " in use " << LUIdx
3695 << " , add offset " << Imm;
3696}
3697
Manman Ren49d684e2012-09-12 05:06:18 +00003698#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +00003699void WorkItem::dump() const {
3700 print(errs()); errs() << '\n';
3701}
Manman Renc3366cc2012-09-06 19:55:56 +00003702#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00003703
3704/// GenerateCrossUseConstantOffsets - Look for registers which are a constant
3705/// distance apart and try to form reuse opportunities between them.
3706void LSRInstance::GenerateCrossUseConstantOffsets() {
3707 // Group the registers by their value without any added constant offset.
3708 typedef std::map<int64_t, const SCEV *> ImmMapTy;
3709 typedef DenseMap<const SCEV *, ImmMapTy> RegMapTy;
3710 RegMapTy Map;
3711 DenseMap<const SCEV *, SmallBitVector> UsedByIndicesMap;
3712 SmallVector<const SCEV *, 8> Sequence;
3713 for (RegUseTracker::const_iterator I = RegUses.begin(), E = RegUses.end();
3714 I != E; ++I) {
3715 const SCEV *Reg = *I;
3716 int64_t Imm = ExtractImmediate(Reg, SE);
3717 std::pair<RegMapTy::iterator, bool> Pair =
3718 Map.insert(std::make_pair(Reg, ImmMapTy()));
3719 if (Pair.second)
3720 Sequence.push_back(Reg);
3721 Pair.first->second.insert(std::make_pair(Imm, *I));
3722 UsedByIndicesMap[Reg] |= RegUses.getUsedByIndices(*I);
3723 }
3724
3725 // Now examine each set of registers with the same base value. Build up
3726 // a list of work to do and do the work in a separate step so that we're
3727 // not adding formulae and register counts while we're searching.
Dan Gohman110ed642010-09-01 01:45:53 +00003728 SmallVector<WorkItem, 32> WorkItems;
3729 SmallSet<std::pair<size_t, int64_t>, 32> UniqueItems;
Dan Gohman45774ce2010-02-12 10:34:29 +00003730 for (SmallVectorImpl<const SCEV *>::const_iterator I = Sequence.begin(),
3731 E = Sequence.end(); I != E; ++I) {
3732 const SCEV *Reg = *I;
3733 const ImmMapTy &Imms = Map.find(Reg)->second;
3734
Dan Gohman363f8472010-02-12 19:20:37 +00003735 // It's not worthwhile looking for reuse if there's only one offset.
3736 if (Imms.size() == 1)
3737 continue;
3738
Dan Gohman45774ce2010-02-12 10:34:29 +00003739 DEBUG(dbgs() << "Generating cross-use offsets for " << *Reg << ':';
3740 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
3741 J != JE; ++J)
3742 dbgs() << ' ' << J->first;
3743 dbgs() << '\n');
3744
3745 // Examine each offset.
3746 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
3747 J != JE; ++J) {
3748 const SCEV *OrigReg = J->second;
3749
3750 int64_t JImm = J->first;
3751 const SmallBitVector &UsedByIndices = RegUses.getUsedByIndices(OrigReg);
3752
3753 if (!isa<SCEVConstant>(OrigReg) &&
3754 UsedByIndicesMap[Reg].count() == 1) {
3755 DEBUG(dbgs() << "Skipping cross-use reuse for " << *OrigReg << '\n');
3756 continue;
3757 }
3758
3759 // Conservatively examine offsets between this orig reg a few selected
3760 // other orig regs.
3761 ImmMapTy::const_iterator OtherImms[] = {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00003762 Imms.begin(), std::prev(Imms.end()),
3763 Imms.lower_bound((Imms.begin()->first + std::prev(Imms.end())->first) /
3764 2)
Dan Gohman45774ce2010-02-12 10:34:29 +00003765 };
3766 for (size_t i = 0, e = array_lengthof(OtherImms); i != e; ++i) {
3767 ImmMapTy::const_iterator M = OtherImms[i];
Dan Gohman363f8472010-02-12 19:20:37 +00003768 if (M == J || M == JE) continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003769
3770 // Compute the difference between the two.
3771 int64_t Imm = (uint64_t)JImm - M->first;
3772 for (int LUIdx = UsedByIndices.find_first(); LUIdx != -1;
Dan Gohman110ed642010-09-01 01:45:53 +00003773 LUIdx = UsedByIndices.find_next(LUIdx))
Dan Gohman45774ce2010-02-12 10:34:29 +00003774 // Make a memo of this use, offset, and register tuple.
David Blaikie70573dc2014-11-19 07:49:26 +00003775 if (UniqueItems.insert(std::make_pair(LUIdx, Imm)).second)
Dan Gohman110ed642010-09-01 01:45:53 +00003776 WorkItems.push_back(WorkItem(LUIdx, Imm, OrigReg));
Evan Cheng85a9f432009-11-12 07:35:05 +00003777 }
3778 }
3779 }
3780
Dan Gohman45774ce2010-02-12 10:34:29 +00003781 Map.clear();
3782 Sequence.clear();
3783 UsedByIndicesMap.clear();
Dan Gohman110ed642010-09-01 01:45:53 +00003784 UniqueItems.clear();
Dan Gohman45774ce2010-02-12 10:34:29 +00003785
3786 // Now iterate through the worklist and add new formulae.
3787 for (SmallVectorImpl<WorkItem>::const_iterator I = WorkItems.begin(),
3788 E = WorkItems.end(); I != E; ++I) {
3789 const WorkItem &WI = *I;
3790 size_t LUIdx = WI.LUIdx;
3791 LSRUse &LU = Uses[LUIdx];
3792 int64_t Imm = WI.Imm;
3793 const SCEV *OrigReg = WI.OrigReg;
3794
Chris Lattner229907c2011-07-18 04:54:35 +00003795 Type *IntTy = SE.getEffectiveSCEVType(OrigReg->getType());
Dan Gohman45774ce2010-02-12 10:34:29 +00003796 const SCEV *NegImmS = SE.getSCEV(ConstantInt::get(IntTy, -(uint64_t)Imm));
3797 unsigned BitWidth = SE.getTypeSizeInBits(IntTy);
3798
Dan Gohman8b0a4192010-03-01 17:49:51 +00003799 // TODO: Use a more targeted data structure.
Dan Gohman45774ce2010-02-12 10:34:29 +00003800 for (size_t L = 0, LE = LU.Formulae.size(); L != LE; ++L) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003801 Formula F = LU.Formulae[L];
3802 // FIXME: The code for the scaled and unscaled registers looks
3803 // very similar but slightly different. Investigate if they
3804 // could be merged. That way, we would not have to unscale the
3805 // Formula.
3806 F.Unscale();
Dan Gohman45774ce2010-02-12 10:34:29 +00003807 // Use the immediate in the scaled register.
3808 if (F.ScaledReg == OrigReg) {
Chandler Carruth6e479322013-01-07 15:04:40 +00003809 int64_t Offset = (uint64_t)F.BaseOffset + Imm * (uint64_t)F.Scale;
Dan Gohman45774ce2010-02-12 10:34:29 +00003810 // Don't create 50 + reg(-50).
3811 if (F.referencesReg(SE.getSCEV(
Chandler Carruth6e479322013-01-07 15:04:40 +00003812 ConstantInt::get(IntTy, -(uint64_t)Offset))))
Dan Gohman45774ce2010-02-12 10:34:29 +00003813 continue;
3814 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00003815 NewF.BaseOffset = Offset;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003816 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
3817 NewF))
Dan Gohman45774ce2010-02-12 10:34:29 +00003818 continue;
3819 NewF.ScaledReg = SE.getAddExpr(NegImmS, NewF.ScaledReg);
3820
3821 // If the new scale is a constant in a register, and adding the constant
3822 // value to the immediate would produce a value closer to zero than the
3823 // immediate itself, then the formula isn't worthwhile.
3824 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewF.ScaledReg))
Chris Lattnerb1a15122011-07-15 06:08:15 +00003825 if (C->getValue()->isNegative() !=
Chandler Carruth6e479322013-01-07 15:04:40 +00003826 (NewF.BaseOffset < 0) &&
3827 (C->getValue()->getValue().abs() * APInt(BitWidth, F.Scale))
Benjamin Kramer7bd1f7c2015-03-09 20:20:16 +00003828 .ule(std::abs(NewF.BaseOffset)))
Dan Gohman45774ce2010-02-12 10:34:29 +00003829 continue;
3830
3831 // OK, looks good.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003832 NewF.Canonicalize();
Dan Gohman45774ce2010-02-12 10:34:29 +00003833 (void)InsertFormula(LU, LUIdx, NewF);
3834 } else {
3835 // Use the immediate in a base register.
3836 for (size_t N = 0, NE = F.BaseRegs.size(); N != NE; ++N) {
3837 const SCEV *BaseReg = F.BaseRegs[N];
3838 if (BaseReg != OrigReg)
3839 continue;
3840 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00003841 NewF.BaseOffset = (uint64_t)NewF.BaseOffset + Imm;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003842 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset,
3843 LU.Kind, LU.AccessTy, NewF)) {
3844 if (!TTI.isLegalAddImmediate((uint64_t)NewF.UnfoldedOffset + Imm))
Dan Gohman6136e942011-05-03 00:46:49 +00003845 continue;
3846 NewF = F;
3847 NewF.UnfoldedOffset = (uint64_t)NewF.UnfoldedOffset + Imm;
3848 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003849 NewF.BaseRegs[N] = SE.getAddExpr(NegImmS, BaseReg);
3850
3851 // If the new formula has a constant in a register, and adding the
3852 // constant value to the immediate would produce a value closer to
3853 // zero than the immediate itself, then the formula isn't worthwhile.
3854 for (SmallVectorImpl<const SCEV *>::const_iterator
3855 J = NewF.BaseRegs.begin(), JE = NewF.BaseRegs.end();
3856 J != JE; ++J)
3857 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*J))
Chandler Carruth6e479322013-01-07 15:04:40 +00003858 if ((C->getValue()->getValue() + NewF.BaseOffset).abs().slt(
Benjamin Kramer7bd1f7c2015-03-09 20:20:16 +00003859 std::abs(NewF.BaseOffset)) &&
Dan Gohman50f8f2c2010-05-18 23:48:08 +00003860 (C->getValue()->getValue() +
Chandler Carruth6e479322013-01-07 15:04:40 +00003861 NewF.BaseOffset).countTrailingZeros() >=
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +00003862 countTrailingZeros<uint64_t>(NewF.BaseOffset))
Dan Gohman45774ce2010-02-12 10:34:29 +00003863 goto skip_formula;
3864
3865 // Ok, looks good.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003866 NewF.Canonicalize();
Dan Gohman45774ce2010-02-12 10:34:29 +00003867 (void)InsertFormula(LU, LUIdx, NewF);
3868 break;
3869 skip_formula:;
3870 }
3871 }
3872 }
3873 }
Dale Johannesen02cb2bf2009-05-11 17:15:42 +00003874}
3875
Dan Gohman45774ce2010-02-12 10:34:29 +00003876/// GenerateAllReuseFormulae - Generate formulae for each use.
3877void
3878LSRInstance::GenerateAllReuseFormulae() {
Dan Gohman521efe62010-02-16 01:42:53 +00003879 // This is split into multiple loops so that hasRegsUsedByUsesOtherThan
Dan Gohman45774ce2010-02-12 10:34:29 +00003880 // queries are more precise.
3881 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3882 LSRUse &LU = Uses[LUIdx];
3883 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3884 GenerateReassociations(LU, LUIdx, LU.Formulae[i]);
3885 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3886 GenerateCombinations(LU, LUIdx, LU.Formulae[i]);
3887 }
3888 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3889 LSRUse &LU = Uses[LUIdx];
3890 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3891 GenerateSymbolicOffsets(LU, LUIdx, LU.Formulae[i]);
3892 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3893 GenerateConstantOffsets(LU, LUIdx, LU.Formulae[i]);
3894 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3895 GenerateICmpZeroScales(LU, LUIdx, LU.Formulae[i]);
3896 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3897 GenerateScales(LU, LUIdx, LU.Formulae[i]);
Dan Gohman521efe62010-02-16 01:42:53 +00003898 }
3899 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3900 LSRUse &LU = Uses[LUIdx];
Dan Gohman45774ce2010-02-12 10:34:29 +00003901 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3902 GenerateTruncates(LU, LUIdx, LU.Formulae[i]);
3903 }
3904
3905 GenerateCrossUseConstantOffsets();
Dan Gohmanbf673e02010-08-29 15:21:38 +00003906
3907 DEBUG(dbgs() << "\n"
3908 "After generating reuse formulae:\n";
3909 print_uses(dbgs()));
Dan Gohman45774ce2010-02-12 10:34:29 +00003910}
3911
Dan Gohman1b61fd92010-10-07 23:43:09 +00003912/// If there are multiple formulae with the same set of registers used
Dan Gohman45774ce2010-02-12 10:34:29 +00003913/// by other uses, pick the best one and delete the others.
3914void LSRInstance::FilterOutUndesirableDedicatedRegisters() {
Dan Gohman5947e162010-10-07 23:52:18 +00003915 DenseSet<const SCEV *> VisitedRegs;
3916 SmallPtrSet<const SCEV *, 16> Regs;
Andrew Trick5df90962011-12-06 03:13:31 +00003917 SmallPtrSet<const SCEV *, 16> LoserRegs;
Dan Gohman45774ce2010-02-12 10:34:29 +00003918#ifndef NDEBUG
Dan Gohman4c4043c2010-05-20 20:05:31 +00003919 bool ChangedFormulae = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00003920#endif
3921
3922 // Collect the best formula for each unique set of shared registers. This
3923 // is reset for each use.
Preston Gurd25c3b6a2013-02-01 20:41:27 +00003924 typedef DenseMap<SmallVector<const SCEV *, 4>, size_t, UniquifierDenseMapInfo>
Dan Gohman45774ce2010-02-12 10:34:29 +00003925 BestFormulaeTy;
3926 BestFormulaeTy BestFormulae;
3927
3928 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3929 LSRUse &LU = Uses[LUIdx];
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00003930 DEBUG(dbgs() << "Filtering for use "; LU.print(dbgs()); dbgs() << '\n');
Dan Gohman45774ce2010-02-12 10:34:29 +00003931
Dan Gohman4cf99b52010-05-18 23:42:37 +00003932 bool Any = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00003933 for (size_t FIdx = 0, NumForms = LU.Formulae.size();
3934 FIdx != NumForms; ++FIdx) {
3935 Formula &F = LU.Formulae[FIdx];
3936
Andrew Trick5df90962011-12-06 03:13:31 +00003937 // Some formulas are instant losers. For example, they may depend on
3938 // nonexistent AddRecs from other loops. These need to be filtered
3939 // immediately, otherwise heuristics could choose them over others leading
3940 // to an unsatisfactory solution. Passing LoserRegs into RateFormula here
3941 // avoids the need to recompute this information across formulae using the
3942 // same bad AddRec. Passing LoserRegs is also essential unless we remove
3943 // the corresponding bad register from the Regs set.
3944 Cost CostF;
3945 Regs.clear();
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00003946 CostF.RateFormula(TTI, F, Regs, VisitedRegs, L, LU.Offsets, SE, DT, LU,
Andrew Trick5df90962011-12-06 03:13:31 +00003947 &LoserRegs);
3948 if (CostF.isLoser()) {
3949 // During initial formula generation, undesirable formulae are generated
3950 // by uses within other loops that have some non-trivial address mode or
3951 // use the postinc form of the IV. LSR needs to provide these formulae
3952 // as the basis of rediscovering the desired formula that uses an AddRec
3953 // corresponding to the existing phi. Once all formulae have been
3954 // generated, these initial losers may be pruned.
3955 DEBUG(dbgs() << " Filtering loser "; F.print(dbgs());
3956 dbgs() << "\n");
Dan Gohman45774ce2010-02-12 10:34:29 +00003957 }
Andrew Trick5df90962011-12-06 03:13:31 +00003958 else {
Preston Gurd25c3b6a2013-02-01 20:41:27 +00003959 SmallVector<const SCEV *, 4> Key;
Andrew Trick5df90962011-12-06 03:13:31 +00003960 for (SmallVectorImpl<const SCEV *>::const_iterator J = F.BaseRegs.begin(),
3961 JE = F.BaseRegs.end(); J != JE; ++J) {
3962 const SCEV *Reg = *J;
3963 if (RegUses.isRegUsedByUsesOtherThan(Reg, LUIdx))
3964 Key.push_back(Reg);
3965 }
3966 if (F.ScaledReg &&
3967 RegUses.isRegUsedByUsesOtherThan(F.ScaledReg, LUIdx))
3968 Key.push_back(F.ScaledReg);
3969 // Unstable sort by host order ok, because this is only used for
3970 // uniquifying.
3971 std::sort(Key.begin(), Key.end());
Dan Gohman45774ce2010-02-12 10:34:29 +00003972
Andrew Trick5df90962011-12-06 03:13:31 +00003973 std::pair<BestFormulaeTy::const_iterator, bool> P =
3974 BestFormulae.insert(std::make_pair(Key, FIdx));
3975 if (P.second)
3976 continue;
3977
Dan Gohman45774ce2010-02-12 10:34:29 +00003978 Formula &Best = LU.Formulae[P.first->second];
Dan Gohman5947e162010-10-07 23:52:18 +00003979
Dan Gohman5947e162010-10-07 23:52:18 +00003980 Cost CostBest;
Dan Gohman5947e162010-10-07 23:52:18 +00003981 Regs.clear();
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00003982 CostBest.RateFormula(TTI, Best, Regs, VisitedRegs, L, LU.Offsets, SE,
3983 DT, LU);
Dan Gohman5947e162010-10-07 23:52:18 +00003984 if (CostF < CostBest)
Dan Gohman45774ce2010-02-12 10:34:29 +00003985 std::swap(F, Best);
Dan Gohman8aca7ef2010-05-18 22:37:37 +00003986 DEBUG(dbgs() << " Filtering out formula "; F.print(dbgs());
Dan Gohman45774ce2010-02-12 10:34:29 +00003987 dbgs() << "\n"
Dan Gohman8aca7ef2010-05-18 22:37:37 +00003988 " in favor of formula "; Best.print(dbgs());
Dan Gohman45774ce2010-02-12 10:34:29 +00003989 dbgs() << '\n');
Dan Gohman45774ce2010-02-12 10:34:29 +00003990 }
Andrew Trick5df90962011-12-06 03:13:31 +00003991#ifndef NDEBUG
3992 ChangedFormulae = true;
3993#endif
3994 LU.DeleteFormula(F);
3995 --FIdx;
3996 --NumForms;
3997 Any = true;
Dan Gohmand0800242010-05-07 23:36:59 +00003998 }
3999
Dan Gohmanbeebef42010-05-18 23:55:57 +00004000 // Now that we've filtered out some formulae, recompute the Regs set.
Dan Gohman4cf99b52010-05-18 23:42:37 +00004001 if (Any)
4002 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohmand0800242010-05-07 23:36:59 +00004003
4004 // Reset this to prepare for the next use.
Dan Gohman45774ce2010-02-12 10:34:29 +00004005 BestFormulae.clear();
4006 }
4007
Dan Gohman4c4043c2010-05-20 20:05:31 +00004008 DEBUG(if (ChangedFormulae) {
Dan Gohman5b18f032010-02-13 02:06:02 +00004009 dbgs() << "\n"
4010 "After filtering out undesirable candidates:\n";
Dan Gohman45774ce2010-02-12 10:34:29 +00004011 print_uses(dbgs());
4012 });
4013}
4014
Dan Gohmana4eca052010-05-18 22:51:59 +00004015// This is a rough guess that seems to work fairly well.
4016static const size_t ComplexityLimit = UINT16_MAX;
4017
4018/// EstimateSearchSpaceComplexity - Estimate the worst-case number of
4019/// solutions the solver might have to consider. It almost never considers
4020/// this many solutions because it prune the search space, but the pruning
4021/// isn't always sufficient.
4022size_t LSRInstance::EstimateSearchSpaceComplexity() const {
Dan Gohman49d638b2010-10-07 23:37:58 +00004023 size_t Power = 1;
Dan Gohmana4eca052010-05-18 22:51:59 +00004024 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
4025 E = Uses.end(); I != E; ++I) {
4026 size_t FSize = I->Formulae.size();
4027 if (FSize >= ComplexityLimit) {
4028 Power = ComplexityLimit;
4029 break;
4030 }
4031 Power *= FSize;
4032 if (Power >= ComplexityLimit)
4033 break;
4034 }
4035 return Power;
4036}
4037
Dan Gohmane9e08732010-08-29 16:09:42 +00004038/// NarrowSearchSpaceByDetectingSupersets - When one formula uses a superset
4039/// of the registers of another formula, it won't help reduce register
4040/// pressure (though it may not necessarily hurt register pressure); remove
4041/// it to simplify the system.
4042void LSRInstance::NarrowSearchSpaceByDetectingSupersets() {
Dan Gohman20fab452010-05-19 23:43:12 +00004043 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
4044 DEBUG(dbgs() << "The search space is too complex.\n");
4045
4046 DEBUG(dbgs() << "Narrowing the search space by eliminating formulae "
4047 "which use a superset of registers used by other "
4048 "formulae.\n");
4049
4050 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4051 LSRUse &LU = Uses[LUIdx];
4052 bool Any = false;
4053 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
4054 Formula &F = LU.Formulae[i];
Dan Gohman8ec018c2010-05-20 20:00:41 +00004055 // Look for a formula with a constant or GV in a register. If the use
4056 // also has a formula with that same value in an immediate field,
4057 // delete the one that uses a register.
Dan Gohman20fab452010-05-19 23:43:12 +00004058 for (SmallVectorImpl<const SCEV *>::const_iterator
4059 I = F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I) {
4060 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*I)) {
4061 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00004062 NewF.BaseOffset += C->getValue()->getSExtValue();
Dan Gohman20fab452010-05-19 23:43:12 +00004063 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
4064 (I - F.BaseRegs.begin()));
4065 if (LU.HasFormulaWithSameRegs(NewF)) {
4066 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
4067 LU.DeleteFormula(F);
4068 --i;
4069 --e;
4070 Any = true;
4071 break;
4072 }
4073 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(*I)) {
4074 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue()))
Chandler Carruth6e479322013-01-07 15:04:40 +00004075 if (!F.BaseGV) {
Dan Gohman20fab452010-05-19 23:43:12 +00004076 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00004077 NewF.BaseGV = GV;
Dan Gohman20fab452010-05-19 23:43:12 +00004078 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
4079 (I - F.BaseRegs.begin()));
4080 if (LU.HasFormulaWithSameRegs(NewF)) {
4081 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
4082 dbgs() << '\n');
4083 LU.DeleteFormula(F);
4084 --i;
4085 --e;
4086 Any = true;
4087 break;
4088 }
4089 }
4090 }
4091 }
4092 }
4093 if (Any)
4094 LU.RecomputeRegs(LUIdx, RegUses);
4095 }
4096
4097 DEBUG(dbgs() << "After pre-selection:\n";
4098 print_uses(dbgs()));
4099 }
Dan Gohmane9e08732010-08-29 16:09:42 +00004100}
Dan Gohman20fab452010-05-19 23:43:12 +00004101
Dan Gohmane9e08732010-08-29 16:09:42 +00004102/// NarrowSearchSpaceByCollapsingUnrolledCode - When there are many registers
4103/// for expressions like A, A+1, A+2, etc., allocate a single register for
4104/// them.
4105void LSRInstance::NarrowSearchSpaceByCollapsingUnrolledCode() {
Jakub Staszak11bd8352013-02-16 16:08:15 +00004106 if (EstimateSearchSpaceComplexity() < ComplexityLimit)
4107 return;
Dan Gohman20fab452010-05-19 23:43:12 +00004108
Jakub Staszak11bd8352013-02-16 16:08:15 +00004109 DEBUG(dbgs() << "The search space is too complex.\n"
4110 "Narrowing the search space by assuming that uses separated "
4111 "by a constant offset will use the same registers.\n");
Dan Gohman20fab452010-05-19 23:43:12 +00004112
Jakub Staszak11bd8352013-02-16 16:08:15 +00004113 // This is especially useful for unrolled loops.
Dan Gohman8ec018c2010-05-20 20:00:41 +00004114
Jakub Staszak11bd8352013-02-16 16:08:15 +00004115 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4116 LSRUse &LU = Uses[LUIdx];
4117 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
4118 E = LU.Formulae.end(); I != E; ++I) {
4119 const Formula &F = *I;
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004120 if (F.BaseOffset == 0 || (F.Scale != 0 && F.Scale != 1))
Jakub Staszak11bd8352013-02-16 16:08:15 +00004121 continue;
Dan Gohman20fab452010-05-19 23:43:12 +00004122
Jakub Staszak11bd8352013-02-16 16:08:15 +00004123 LSRUse *LUThatHas = FindUseWithSimilarFormula(F, LU);
4124 if (!LUThatHas)
4125 continue;
Dan Gohman20fab452010-05-19 23:43:12 +00004126
Jakub Staszak11bd8352013-02-16 16:08:15 +00004127 if (!reconcileNewOffset(*LUThatHas, F.BaseOffset, /*HasBaseReg=*/ false,
4128 LU.Kind, LU.AccessTy))
4129 continue;
Dan Gohman110ed642010-09-01 01:45:53 +00004130
Jakub Staszak11bd8352013-02-16 16:08:15 +00004131 DEBUG(dbgs() << " Deleting use "; LU.print(dbgs()); dbgs() << '\n');
Dan Gohman2fd85d72010-10-08 19:33:26 +00004132
Jakub Staszak11bd8352013-02-16 16:08:15 +00004133 LUThatHas->AllFixupsOutsideLoop &= LU.AllFixupsOutsideLoop;
4134
4135 // Update the relocs to reference the new use.
4136 for (SmallVectorImpl<LSRFixup>::iterator I = Fixups.begin(),
4137 E = Fixups.end(); I != E; ++I) {
4138 LSRFixup &Fixup = *I;
4139 if (Fixup.LUIdx == LUIdx) {
4140 Fixup.LUIdx = LUThatHas - &Uses.front();
4141 Fixup.Offset += F.BaseOffset;
4142 // Add the new offset to LUThatHas' offset list.
4143 if (LUThatHas->Offsets.back() != Fixup.Offset) {
4144 LUThatHas->Offsets.push_back(Fixup.Offset);
4145 if (Fixup.Offset > LUThatHas->MaxOffset)
4146 LUThatHas->MaxOffset = Fixup.Offset;
4147 if (Fixup.Offset < LUThatHas->MinOffset)
4148 LUThatHas->MinOffset = Fixup.Offset;
Dan Gohman20fab452010-05-19 23:43:12 +00004149 }
Jakub Staszak11bd8352013-02-16 16:08:15 +00004150 DEBUG(dbgs() << "New fixup has offset " << Fixup.Offset << '\n');
4151 }
4152 if (Fixup.LUIdx == NumUses-1)
4153 Fixup.LUIdx = LUIdx;
4154 }
4155
4156 // Delete formulae from the new use which are no longer legal.
4157 bool Any = false;
4158 for (size_t i = 0, e = LUThatHas->Formulae.size(); i != e; ++i) {
4159 Formula &F = LUThatHas->Formulae[i];
4160 if (!isLegalUse(TTI, LUThatHas->MinOffset, LUThatHas->MaxOffset,
4161 LUThatHas->Kind, LUThatHas->AccessTy, F)) {
4162 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
4163 dbgs() << '\n');
4164 LUThatHas->DeleteFormula(F);
4165 --i;
4166 --e;
4167 Any = true;
Dan Gohman20fab452010-05-19 23:43:12 +00004168 }
4169 }
Dan Gohman20fab452010-05-19 23:43:12 +00004170
Jakub Staszak11bd8352013-02-16 16:08:15 +00004171 if (Any)
4172 LUThatHas->RecomputeRegs(LUThatHas - &Uses.front(), RegUses);
4173
4174 // Delete the old use.
4175 DeleteUse(LU, LUIdx);
4176 --LUIdx;
4177 --NumUses;
4178 break;
4179 }
Dan Gohman20fab452010-05-19 23:43:12 +00004180 }
Jakub Staszak11bd8352013-02-16 16:08:15 +00004181
4182 DEBUG(dbgs() << "After pre-selection:\n"; print_uses(dbgs()));
Dan Gohmane9e08732010-08-29 16:09:42 +00004183}
Dan Gohman20fab452010-05-19 23:43:12 +00004184
Andrew Trick8b55b732011-03-14 16:50:06 +00004185/// NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters - Call
Dan Gohman002ff892010-08-29 16:39:22 +00004186/// FilterOutUndesirableDedicatedRegisters again, if necessary, now that
4187/// we've done more filtering, as it may be able to find more formulae to
4188/// eliminate.
4189void LSRInstance::NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters(){
4190 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
4191 DEBUG(dbgs() << "The search space is too complex.\n");
4192
4193 DEBUG(dbgs() << "Narrowing the search space by re-filtering out "
4194 "undesirable dedicated registers.\n");
4195
4196 FilterOutUndesirableDedicatedRegisters();
4197
4198 DEBUG(dbgs() << "After pre-selection:\n";
4199 print_uses(dbgs()));
4200 }
4201}
4202
Dan Gohmane9e08732010-08-29 16:09:42 +00004203/// NarrowSearchSpaceByPickingWinnerRegs - Pick a register which seems likely
4204/// to be profitable, and then in any use which has any reference to that
4205/// register, delete all formulae which do not reference that register.
4206void LSRInstance::NarrowSearchSpaceByPickingWinnerRegs() {
Dan Gohmana4ca28a2010-05-20 20:52:00 +00004207 // With all other options exhausted, loop until the system is simple
4208 // enough to handle.
Dan Gohman45774ce2010-02-12 10:34:29 +00004209 SmallPtrSet<const SCEV *, 4> Taken;
Dan Gohmana4eca052010-05-18 22:51:59 +00004210 while (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004211 // Ok, we have too many of formulae on our hands to conveniently handle.
4212 // Use a rough heuristic to thin out the list.
Dan Gohman63e90152010-05-18 22:41:32 +00004213 DEBUG(dbgs() << "The search space is too complex.\n");
Dan Gohman45774ce2010-02-12 10:34:29 +00004214
4215 // Pick the register which is used by the most LSRUses, which is likely
4216 // to be a good reuse register candidate.
Craig Topperf40110f2014-04-25 05:29:35 +00004217 const SCEV *Best = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +00004218 unsigned BestNum = 0;
4219 for (RegUseTracker::const_iterator I = RegUses.begin(), E = RegUses.end();
4220 I != E; ++I) {
4221 const SCEV *Reg = *I;
4222 if (Taken.count(Reg))
4223 continue;
4224 if (!Best)
4225 Best = Reg;
4226 else {
4227 unsigned Count = RegUses.getUsedByIndices(Reg).count();
4228 if (Count > BestNum) {
4229 Best = Reg;
4230 BestNum = Count;
4231 }
4232 }
4233 }
4234
4235 DEBUG(dbgs() << "Narrowing the search space by assuming " << *Best
Dan Gohman8b0a4192010-03-01 17:49:51 +00004236 << " will yield profitable reuse.\n");
Dan Gohman45774ce2010-02-12 10:34:29 +00004237 Taken.insert(Best);
4238
4239 // In any use with formulae which references this register, delete formulae
4240 // which don't reference it.
Dan Gohman4cf99b52010-05-18 23:42:37 +00004241 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4242 LSRUse &LU = Uses[LUIdx];
Dan Gohman45774ce2010-02-12 10:34:29 +00004243 if (!LU.Regs.count(Best)) continue;
4244
Dan Gohman4cf99b52010-05-18 23:42:37 +00004245 bool Any = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00004246 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
4247 Formula &F = LU.Formulae[i];
4248 if (!F.referencesReg(Best)) {
4249 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00004250 LU.DeleteFormula(F);
Dan Gohman45774ce2010-02-12 10:34:29 +00004251 --e;
4252 --i;
Dan Gohman4cf99b52010-05-18 23:42:37 +00004253 Any = true;
Dan Gohmand0800242010-05-07 23:36:59 +00004254 assert(e != 0 && "Use has no formulae left! Is Regs inconsistent?");
Dan Gohman45774ce2010-02-12 10:34:29 +00004255 continue;
4256 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004257 }
Dan Gohman4cf99b52010-05-18 23:42:37 +00004258
4259 if (Any)
4260 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman45774ce2010-02-12 10:34:29 +00004261 }
4262
4263 DEBUG(dbgs() << "After pre-selection:\n";
4264 print_uses(dbgs()));
4265 }
4266}
4267
Dan Gohmane9e08732010-08-29 16:09:42 +00004268/// NarrowSearchSpaceUsingHeuristics - If there are an extraordinary number of
4269/// formulae to choose from, use some rough heuristics to prune down the number
4270/// of formulae. This keeps the main solver from taking an extraordinary amount
4271/// of time in some worst-case scenarios.
4272void LSRInstance::NarrowSearchSpaceUsingHeuristics() {
4273 NarrowSearchSpaceByDetectingSupersets();
4274 NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman002ff892010-08-29 16:39:22 +00004275 NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Dan Gohmane9e08732010-08-29 16:09:42 +00004276 NarrowSearchSpaceByPickingWinnerRegs();
4277}
4278
Dan Gohman45774ce2010-02-12 10:34:29 +00004279/// SolveRecurse - This is the recursive solver.
4280void LSRInstance::SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
4281 Cost &SolutionCost,
4282 SmallVectorImpl<const Formula *> &Workspace,
4283 const Cost &CurCost,
4284 const SmallPtrSet<const SCEV *, 16> &CurRegs,
4285 DenseSet<const SCEV *> &VisitedRegs) const {
4286 // Some ideas:
4287 // - prune more:
4288 // - use more aggressive filtering
4289 // - sort the formula so that the most profitable solutions are found first
4290 // - sort the uses too
4291 // - search faster:
Dan Gohman8b0a4192010-03-01 17:49:51 +00004292 // - don't compute a cost, and then compare. compare while computing a cost
Dan Gohman45774ce2010-02-12 10:34:29 +00004293 // and bail early.
4294 // - track register sets with SmallBitVector
4295
4296 const LSRUse &LU = Uses[Workspace.size()];
4297
4298 // If this use references any register that's already a part of the
4299 // in-progress solution, consider it a requirement that a formula must
4300 // reference that register in order to be considered. This prunes out
4301 // unprofitable searching.
4302 SmallSetVector<const SCEV *, 4> ReqRegs;
Craig Topper46276792014-08-24 23:23:06 +00004303 for (const SCEV *S : CurRegs)
4304 if (LU.Regs.count(S))
4305 ReqRegs.insert(S);
Dan Gohman45774ce2010-02-12 10:34:29 +00004306
4307 SmallPtrSet<const SCEV *, 16> NewRegs;
4308 Cost NewCost;
4309 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
4310 E = LU.Formulae.end(); I != E; ++I) {
4311 const Formula &F = *I;
4312
Adam Nemetdeab6f92014-04-29 18:25:28 +00004313 // Ignore formulae which may not be ideal in terms of register reuse of
4314 // ReqRegs. The formula should use all required registers before
4315 // introducing new ones.
4316 int NumReqRegsToFind = std::min(F.getNumRegs(), ReqRegs.size());
Dan Gohman45774ce2010-02-12 10:34:29 +00004317 for (SmallSetVector<const SCEV *, 4>::const_iterator J = ReqRegs.begin(),
4318 JE = ReqRegs.end(); J != JE; ++J) {
4319 const SCEV *Reg = *J;
Adam Nemetdeab6f92014-04-29 18:25:28 +00004320 if ((F.ScaledReg && F.ScaledReg == Reg) ||
4321 std::find(F.BaseRegs.begin(), F.BaseRegs.end(), Reg) !=
Andrew Tricke3502cb2012-03-22 22:42:51 +00004322 F.BaseRegs.end()) {
Adam Nemetdeab6f92014-04-29 18:25:28 +00004323 --NumReqRegsToFind;
4324 if (NumReqRegsToFind == 0)
4325 break;
Andrew Tricke3502cb2012-03-22 22:42:51 +00004326 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004327 }
Adam Nemetdeab6f92014-04-29 18:25:28 +00004328 if (NumReqRegsToFind != 0) {
Andrew Tricke3502cb2012-03-22 22:42:51 +00004329 // If none of the formulae satisfied the required registers, then we could
4330 // clear ReqRegs and try again. Currently, we simply give up in this case.
4331 continue;
4332 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004333
4334 // Evaluate the cost of the current formula. If it's already worse than
4335 // the current best, prune the search at that point.
4336 NewCost = CurCost;
4337 NewRegs = CurRegs;
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00004338 NewCost.RateFormula(TTI, F, NewRegs, VisitedRegs, L, LU.Offsets, SE, DT,
4339 LU);
Dan Gohman45774ce2010-02-12 10:34:29 +00004340 if (NewCost < SolutionCost) {
4341 Workspace.push_back(&F);
4342 if (Workspace.size() != Uses.size()) {
4343 SolveRecurse(Solution, SolutionCost, Workspace, NewCost,
4344 NewRegs, VisitedRegs);
4345 if (F.getNumRegs() == 1 && Workspace.size() == 1)
4346 VisitedRegs.insert(F.ScaledReg ? F.ScaledReg : F.BaseRegs[0]);
4347 } else {
4348 DEBUG(dbgs() << "New best at "; NewCost.print(dbgs());
Andrew Trick4dc3eff2012-01-09 18:58:16 +00004349 dbgs() << ".\n Regs:";
Craig Topper46276792014-08-24 23:23:06 +00004350 for (const SCEV *S : NewRegs)
4351 dbgs() << ' ' << *S;
Dan Gohman45774ce2010-02-12 10:34:29 +00004352 dbgs() << '\n');
4353
4354 SolutionCost = NewCost;
4355 Solution = Workspace;
4356 }
4357 Workspace.pop_back();
4358 }
Dan Gohman5b18f032010-02-13 02:06:02 +00004359 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004360}
4361
Dan Gohmana4ca28a2010-05-20 20:52:00 +00004362/// Solve - Choose one formula from each use. Return the results in the given
4363/// Solution vector.
Dan Gohman45774ce2010-02-12 10:34:29 +00004364void LSRInstance::Solve(SmallVectorImpl<const Formula *> &Solution) const {
4365 SmallVector<const Formula *, 8> Workspace;
4366 Cost SolutionCost;
Tim Northoverbc6659c2014-01-22 13:27:00 +00004367 SolutionCost.Lose();
Dan Gohman45774ce2010-02-12 10:34:29 +00004368 Cost CurCost;
4369 SmallPtrSet<const SCEV *, 16> CurRegs;
4370 DenseSet<const SCEV *> VisitedRegs;
4371 Workspace.reserve(Uses.size());
4372
Dan Gohman8ec018c2010-05-20 20:00:41 +00004373 // SolveRecurse does all the work.
Dan Gohman45774ce2010-02-12 10:34:29 +00004374 SolveRecurse(Solution, SolutionCost, Workspace, CurCost,
4375 CurRegs, VisitedRegs);
Andrew Trick58124392011-09-27 00:44:14 +00004376 if (Solution.empty()) {
4377 DEBUG(dbgs() << "\nNo Satisfactory Solution\n");
4378 return;
4379 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004380
4381 // Ok, we've now made all our decisions.
4382 DEBUG(dbgs() << "\n"
4383 "The chosen solution requires "; SolutionCost.print(dbgs());
4384 dbgs() << ":\n";
4385 for (size_t i = 0, e = Uses.size(); i != e; ++i) {
4386 dbgs() << " ";
4387 Uses[i].print(dbgs());
4388 dbgs() << "\n"
4389 " ";
4390 Solution[i]->print(dbgs());
4391 dbgs() << '\n';
4392 });
Dan Gohman6295f2e2010-05-20 20:59:23 +00004393
4394 assert(Solution.size() == Uses.size() && "Malformed solution!");
Dan Gohman45774ce2010-02-12 10:34:29 +00004395}
4396
Dan Gohman607e02b2010-04-09 22:07:05 +00004397/// HoistInsertPosition - Helper for AdjustInsertPositionForExpand. Climb up
4398/// the dominator tree far as we can go while still being dominated by the
4399/// input positions. This helps canonicalize the insert position, which
4400/// encourages sharing.
4401BasicBlock::iterator
4402LSRInstance::HoistInsertPosition(BasicBlock::iterator IP,
4403 const SmallVectorImpl<Instruction *> &Inputs)
4404 const {
4405 for (;;) {
4406 const Loop *IPLoop = LI.getLoopFor(IP->getParent());
4407 unsigned IPLoopDepth = IPLoop ? IPLoop->getLoopDepth() : 0;
4408
4409 BasicBlock *IDom;
Dan Gohman8ce95cc2010-05-20 20:00:25 +00004410 for (DomTreeNode *Rung = DT.getNode(IP->getParent()); ; ) {
Dan Gohman9b48b852010-05-20 22:46:54 +00004411 if (!Rung) return IP;
Dan Gohman8ce95cc2010-05-20 20:00:25 +00004412 Rung = Rung->getIDom();
4413 if (!Rung) return IP;
4414 IDom = Rung->getBlock();
Dan Gohman607e02b2010-04-09 22:07:05 +00004415
4416 // Don't climb into a loop though.
4417 const Loop *IDomLoop = LI.getLoopFor(IDom);
4418 unsigned IDomDepth = IDomLoop ? IDomLoop->getLoopDepth() : 0;
4419 if (IDomDepth <= IPLoopDepth &&
4420 (IDomDepth != IPLoopDepth || IDomLoop == IPLoop))
4421 break;
4422 }
4423
4424 bool AllDominate = true;
Craig Topperf40110f2014-04-25 05:29:35 +00004425 Instruction *BetterPos = nullptr;
Dan Gohman607e02b2010-04-09 22:07:05 +00004426 Instruction *Tentative = IDom->getTerminator();
4427 for (SmallVectorImpl<Instruction *>::const_iterator I = Inputs.begin(),
4428 E = Inputs.end(); I != E; ++I) {
4429 Instruction *Inst = *I;
4430 if (Inst == Tentative || !DT.dominates(Inst, Tentative)) {
4431 AllDominate = false;
4432 break;
4433 }
4434 // Attempt to find an insert position in the middle of the block,
4435 // instead of at the end, so that it can be used for other expansions.
4436 if (IDom == Inst->getParent() &&
Rafael Espindoladd489312012-04-30 03:53:06 +00004437 (!BetterPos || !DT.dominates(Inst, BetterPos)))
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00004438 BetterPos = std::next(BasicBlock::iterator(Inst));
Dan Gohman607e02b2010-04-09 22:07:05 +00004439 }
4440 if (!AllDominate)
4441 break;
4442 if (BetterPos)
4443 IP = BetterPos;
4444 else
4445 IP = Tentative;
4446 }
4447
4448 return IP;
4449}
4450
4451/// AdjustInsertPositionForExpand - Determine an input position which will be
Dan Gohmand2df6432010-04-09 02:00:38 +00004452/// dominated by the operands and which will dominate the result.
4453BasicBlock::iterator
Andrew Trickc908b432012-01-20 07:41:13 +00004454LSRInstance::AdjustInsertPositionForExpand(BasicBlock::iterator LowestIP,
Dan Gohman607e02b2010-04-09 22:07:05 +00004455 const LSRFixup &LF,
Andrew Trickc908b432012-01-20 07:41:13 +00004456 const LSRUse &LU,
4457 SCEVExpander &Rewriter) const {
Dan Gohmand2df6432010-04-09 02:00:38 +00004458 // Collect some instructions which must be dominated by the
Dan Gohmand006ab92010-04-07 22:27:08 +00004459 // expanding replacement. These must be dominated by any operands that
Dan Gohman45774ce2010-02-12 10:34:29 +00004460 // will be required in the expansion.
4461 SmallVector<Instruction *, 4> Inputs;
4462 if (Instruction *I = dyn_cast<Instruction>(LF.OperandValToReplace))
4463 Inputs.push_back(I);
4464 if (LU.Kind == LSRUse::ICmpZero)
4465 if (Instruction *I =
4466 dyn_cast<Instruction>(cast<ICmpInst>(LF.UserInst)->getOperand(1)))
4467 Inputs.push_back(I);
Dan Gohmand006ab92010-04-07 22:27:08 +00004468 if (LF.PostIncLoops.count(L)) {
4469 if (LF.isUseFullyOutsideLoop(L))
Dan Gohman52f55632010-03-02 01:59:21 +00004470 Inputs.push_back(L->getLoopLatch()->getTerminator());
4471 else
4472 Inputs.push_back(IVIncInsertPos);
4473 }
Dan Gohman45065392010-04-08 05:57:57 +00004474 // The expansion must also be dominated by the increment positions of any
4475 // loops it for which it is using post-inc mode.
4476 for (PostIncLoopSet::const_iterator I = LF.PostIncLoops.begin(),
4477 E = LF.PostIncLoops.end(); I != E; ++I) {
4478 const Loop *PIL = *I;
4479 if (PIL == L) continue;
4480
Dan Gohman607e02b2010-04-09 22:07:05 +00004481 // Be dominated by the loop exit.
Dan Gohman45065392010-04-08 05:57:57 +00004482 SmallVector<BasicBlock *, 4> ExitingBlocks;
4483 PIL->getExitingBlocks(ExitingBlocks);
4484 if (!ExitingBlocks.empty()) {
4485 BasicBlock *BB = ExitingBlocks[0];
4486 for (unsigned i = 1, e = ExitingBlocks.size(); i != e; ++i)
4487 BB = DT.findNearestCommonDominator(BB, ExitingBlocks[i]);
4488 Inputs.push_back(BB->getTerminator());
4489 }
4490 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004491
Andrew Trickc908b432012-01-20 07:41:13 +00004492 assert(!isa<PHINode>(LowestIP) && !isa<LandingPadInst>(LowestIP)
4493 && !isa<DbgInfoIntrinsic>(LowestIP) &&
4494 "Insertion point must be a normal instruction");
4495
Dan Gohman45774ce2010-02-12 10:34:29 +00004496 // Then, climb up the immediate dominator tree as far as we can go while
4497 // still being dominated by the input positions.
Andrew Trickc908b432012-01-20 07:41:13 +00004498 BasicBlock::iterator IP = HoistInsertPosition(LowestIP, Inputs);
Dan Gohmand2df6432010-04-09 02:00:38 +00004499
4500 // Don't insert instructions before PHI nodes.
Dan Gohman45774ce2010-02-12 10:34:29 +00004501 while (isa<PHINode>(IP)) ++IP;
Dan Gohmand2df6432010-04-09 02:00:38 +00004502
Bill Wendling86c5cbe2011-08-24 21:06:46 +00004503 // Ignore landingpad instructions.
4504 while (isa<LandingPadInst>(IP)) ++IP;
4505
Dan Gohmand2df6432010-04-09 02:00:38 +00004506 // Ignore debug intrinsics.
Dan Gohmand42e09d2010-03-26 00:33:27 +00004507 while (isa<DbgInfoIntrinsic>(IP)) ++IP;
Dan Gohman45774ce2010-02-12 10:34:29 +00004508
Andrew Trickc908b432012-01-20 07:41:13 +00004509 // Set IP below instructions recently inserted by SCEVExpander. This keeps the
4510 // IP consistent across expansions and allows the previously inserted
4511 // instructions to be reused by subsequent expansion.
4512 while (Rewriter.isInsertedInstruction(IP) && IP != LowestIP) ++IP;
4513
Dan Gohmand2df6432010-04-09 02:00:38 +00004514 return IP;
4515}
4516
Dan Gohmana4ca28a2010-05-20 20:52:00 +00004517/// Expand - Emit instructions for the leading candidate expression for this
4518/// LSRUse (this is called "expanding").
Dan Gohmand2df6432010-04-09 02:00:38 +00004519Value *LSRInstance::Expand(const LSRFixup &LF,
4520 const Formula &F,
4521 BasicBlock::iterator IP,
4522 SCEVExpander &Rewriter,
4523 SmallVectorImpl<WeakVH> &DeadInsts) const {
4524 const LSRUse &LU = Uses[LF.LUIdx];
Andrew Trick57243da2013-10-25 21:35:56 +00004525 if (LU.RigidFormula)
4526 return LF.OperandValToReplace;
Dan Gohmand2df6432010-04-09 02:00:38 +00004527
4528 // Determine an input position which will be dominated by the operands and
4529 // which will dominate the result.
Andrew Trickc908b432012-01-20 07:41:13 +00004530 IP = AdjustInsertPositionForExpand(IP, LF, LU, Rewriter);
Dan Gohmand2df6432010-04-09 02:00:38 +00004531
Dan Gohman45774ce2010-02-12 10:34:29 +00004532 // Inform the Rewriter if we have a post-increment use, so that it can
4533 // perform an advantageous expansion.
Dan Gohmand006ab92010-04-07 22:27:08 +00004534 Rewriter.setPostInc(LF.PostIncLoops);
Dan Gohman45774ce2010-02-12 10:34:29 +00004535
4536 // This is the type that the user actually needs.
Chris Lattner229907c2011-07-18 04:54:35 +00004537 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00004538 // This will be the type that we'll initially expand to.
Chris Lattner229907c2011-07-18 04:54:35 +00004539 Type *Ty = F.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00004540 if (!Ty)
4541 // No type known; just expand directly to the ultimate type.
4542 Ty = OpTy;
4543 else if (SE.getEffectiveSCEVType(Ty) == SE.getEffectiveSCEVType(OpTy))
4544 // Expand directly to the ultimate type if it's the right size.
4545 Ty = OpTy;
4546 // This is the type to do integer arithmetic in.
Chris Lattner229907c2011-07-18 04:54:35 +00004547 Type *IntTy = SE.getEffectiveSCEVType(Ty);
Dan Gohman45774ce2010-02-12 10:34:29 +00004548
4549 // Build up a list of operands to add together to form the full base.
4550 SmallVector<const SCEV *, 8> Ops;
4551
4552 // Expand the BaseRegs portion.
4553 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
4554 E = F.BaseRegs.end(); I != E; ++I) {
4555 const SCEV *Reg = *I;
4556 assert(!Reg->isZero() && "Zero allocated in a base register!");
4557
Dan Gohmand006ab92010-04-07 22:27:08 +00004558 // If we're expanding for a post-inc user, make the post-inc adjustment.
4559 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
4560 Reg = TransformForPostIncUse(Denormalize, Reg,
4561 LF.UserInst, LF.OperandValToReplace,
4562 Loops, SE, DT);
Dan Gohman45774ce2010-02-12 10:34:29 +00004563
Craig Topperf40110f2014-04-25 05:29:35 +00004564 Ops.push_back(SE.getUnknown(Rewriter.expandCodeFor(Reg, nullptr, IP)));
Dan Gohman45774ce2010-02-12 10:34:29 +00004565 }
4566
4567 // Expand the ScaledReg portion.
Craig Topperf40110f2014-04-25 05:29:35 +00004568 Value *ICmpScaledV = nullptr;
Chandler Carruth6e479322013-01-07 15:04:40 +00004569 if (F.Scale != 0) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004570 const SCEV *ScaledS = F.ScaledReg;
4571
Dan Gohmand006ab92010-04-07 22:27:08 +00004572 // If we're expanding for a post-inc user, make the post-inc adjustment.
4573 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
4574 ScaledS = TransformForPostIncUse(Denormalize, ScaledS,
4575 LF.UserInst, LF.OperandValToReplace,
4576 Loops, SE, DT);
Dan Gohman45774ce2010-02-12 10:34:29 +00004577
4578 if (LU.Kind == LSRUse::ICmpZero) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004579 // Expand ScaleReg as if it was part of the base regs.
4580 if (F.Scale == 1)
4581 Ops.push_back(
4582 SE.getUnknown(Rewriter.expandCodeFor(ScaledS, nullptr, IP)));
4583 else {
4584 // An interesting way of "folding" with an icmp is to use a negated
4585 // scale, which we'll implement by inserting it into the other operand
4586 // of the icmp.
4587 assert(F.Scale == -1 &&
4588 "The only scale supported by ICmpZero uses is -1!");
4589 ICmpScaledV = Rewriter.expandCodeFor(ScaledS, nullptr, IP);
4590 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004591 } else {
4592 // Otherwise just expand the scaled register and an explicit scale,
4593 // which is expected to be matched as part of the address.
Andrew Trick8370c7c2012-06-15 20:07:29 +00004594
4595 // Flush the operand list to suppress SCEVExpander hoisting address modes.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004596 // Unless the addressing mode will not be folded.
4597 if (!Ops.empty() && LU.Kind == LSRUse::Address &&
4598 isAMCompletelyFolded(TTI, LU, F)) {
Andrew Trick8370c7c2012-06-15 20:07:29 +00004599 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
4600 Ops.clear();
4601 Ops.push_back(SE.getUnknown(FullV));
4602 }
Craig Topperf40110f2014-04-25 05:29:35 +00004603 ScaledS = SE.getUnknown(Rewriter.expandCodeFor(ScaledS, nullptr, IP));
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004604 if (F.Scale != 1)
4605 ScaledS =
4606 SE.getMulExpr(ScaledS, SE.getConstant(ScaledS->getType(), F.Scale));
Dan Gohman45774ce2010-02-12 10:34:29 +00004607 Ops.push_back(ScaledS);
4608 }
4609 }
4610
Dan Gohman29707de2010-03-03 05:29:13 +00004611 // Expand the GV portion.
Chandler Carruth6e479322013-01-07 15:04:40 +00004612 if (F.BaseGV) {
Dan Gohman29707de2010-03-03 05:29:13 +00004613 // Flush the operand list to suppress SCEVExpander hoisting.
Andrew Trick8370c7c2012-06-15 20:07:29 +00004614 if (!Ops.empty()) {
4615 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
4616 Ops.clear();
4617 Ops.push_back(SE.getUnknown(FullV));
4618 }
Chandler Carruth6e479322013-01-07 15:04:40 +00004619 Ops.push_back(SE.getUnknown(F.BaseGV));
Andrew Trick8370c7c2012-06-15 20:07:29 +00004620 }
4621
4622 // Flush the operand list to suppress SCEVExpander hoisting of both folded and
4623 // unfolded offsets. LSR assumes they both live next to their uses.
4624 if (!Ops.empty()) {
Dan Gohman29707de2010-03-03 05:29:13 +00004625 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
4626 Ops.clear();
4627 Ops.push_back(SE.getUnknown(FullV));
4628 }
4629
4630 // Expand the immediate portion.
Chandler Carruth6e479322013-01-07 15:04:40 +00004631 int64_t Offset = (uint64_t)F.BaseOffset + LF.Offset;
Dan Gohman45774ce2010-02-12 10:34:29 +00004632 if (Offset != 0) {
4633 if (LU.Kind == LSRUse::ICmpZero) {
4634 // The other interesting way of "folding" with an ICmpZero is to use a
4635 // negated immediate.
4636 if (!ICmpScaledV)
Eli Friedmanb46345d2011-10-13 23:48:33 +00004637 ICmpScaledV = ConstantInt::get(IntTy, -(uint64_t)Offset);
Dan Gohman45774ce2010-02-12 10:34:29 +00004638 else {
4639 Ops.push_back(SE.getUnknown(ICmpScaledV));
4640 ICmpScaledV = ConstantInt::get(IntTy, Offset);
4641 }
4642 } else {
4643 // Just add the immediate values. These again are expected to be matched
4644 // as part of the address.
Dan Gohman29707de2010-03-03 05:29:13 +00004645 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy, Offset)));
Dan Gohman45774ce2010-02-12 10:34:29 +00004646 }
4647 }
4648
Dan Gohman6136e942011-05-03 00:46:49 +00004649 // Expand the unfolded offset portion.
4650 int64_t UnfoldedOffset = F.UnfoldedOffset;
4651 if (UnfoldedOffset != 0) {
4652 // Just add the immediate values.
4653 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy,
4654 UnfoldedOffset)));
4655 }
4656
Dan Gohman45774ce2010-02-12 10:34:29 +00004657 // Emit instructions summing all the operands.
4658 const SCEV *FullS = Ops.empty() ?
Dan Gohman1d2ded72010-05-03 22:09:21 +00004659 SE.getConstant(IntTy, 0) :
Dan Gohman45774ce2010-02-12 10:34:29 +00004660 SE.getAddExpr(Ops);
4661 Value *FullV = Rewriter.expandCodeFor(FullS, Ty, IP);
4662
4663 // We're done expanding now, so reset the rewriter.
Dan Gohmand006ab92010-04-07 22:27:08 +00004664 Rewriter.clearPostInc();
Dan Gohman45774ce2010-02-12 10:34:29 +00004665
4666 // An ICmpZero Formula represents an ICmp which we're handling as a
4667 // comparison against zero. Now that we've expanded an expression for that
4668 // form, update the ICmp's other operand.
4669 if (LU.Kind == LSRUse::ICmpZero) {
4670 ICmpInst *CI = cast<ICmpInst>(LF.UserInst);
4671 DeadInsts.push_back(CI->getOperand(1));
Chandler Carruth6e479322013-01-07 15:04:40 +00004672 assert(!F.BaseGV && "ICmp does not support folding a global value and "
Dan Gohman45774ce2010-02-12 10:34:29 +00004673 "a scale at the same time!");
Chandler Carruth6e479322013-01-07 15:04:40 +00004674 if (F.Scale == -1) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004675 if (ICmpScaledV->getType() != OpTy) {
4676 Instruction *Cast =
4677 CastInst::Create(CastInst::getCastOpcode(ICmpScaledV, false,
4678 OpTy, false),
4679 ICmpScaledV, OpTy, "tmp", CI);
4680 ICmpScaledV = Cast;
4681 }
4682 CI->setOperand(1, ICmpScaledV);
4683 } else {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004684 // A scale of 1 means that the scale has been expanded as part of the
4685 // base regs.
4686 assert((F.Scale == 0 || F.Scale == 1) &&
Dan Gohman45774ce2010-02-12 10:34:29 +00004687 "ICmp does not support folding a global value and "
4688 "a scale at the same time!");
4689 Constant *C = ConstantInt::getSigned(SE.getEffectiveSCEVType(OpTy),
4690 -(uint64_t)Offset);
4691 if (C->getType() != OpTy)
4692 C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
4693 OpTy, false),
4694 C, OpTy);
4695
4696 CI->setOperand(1, C);
4697 }
4698 }
4699
4700 return FullV;
4701}
4702
Dan Gohman6deab962010-02-16 20:25:07 +00004703/// RewriteForPHI - Helper for Rewrite. PHI nodes are special because the use
4704/// of their operands effectively happens in their predecessor blocks, so the
4705/// expression may need to be expanded in multiple places.
4706void LSRInstance::RewriteForPHI(PHINode *PN,
4707 const LSRFixup &LF,
4708 const Formula &F,
Dan Gohman6deab962010-02-16 20:25:07 +00004709 SCEVExpander &Rewriter,
4710 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman6deab962010-02-16 20:25:07 +00004711 Pass *P) const {
4712 DenseMap<BasicBlock *, Value *> Inserted;
4713 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
4714 if (PN->getIncomingValue(i) == LF.OperandValToReplace) {
4715 BasicBlock *BB = PN->getIncomingBlock(i);
4716
4717 // If this is a critical edge, split the edge so that we do not insert
4718 // the code on all predecessor/successor paths. We do this unless this
4719 // is the canonical backedge for this loop, which complicates post-inc
4720 // users.
4721 if (e != 1 && BB->getTerminator()->getNumSuccessors() > 1 &&
Dan Gohmande7f6992011-02-08 00:55:13 +00004722 !isa<IndirectBrInst>(BB->getTerminator())) {
Bill Wendling07efd6f2011-08-25 01:08:34 +00004723 BasicBlock *Parent = PN->getParent();
4724 Loop *PNLoop = LI.getLoopFor(Parent);
4725 if (!PNLoop || Parent != PNLoop->getHeader()) {
Dan Gohmande7f6992011-02-08 00:55:13 +00004726 // Split the critical edge.
Craig Topperf40110f2014-04-25 05:29:35 +00004727 BasicBlock *NewBB = nullptr;
Bill Wendling3fb137f2011-08-25 05:55:40 +00004728 if (!Parent->isLandingPad()) {
Chandler Carruth37df2cf2015-01-19 12:09:11 +00004729 NewBB = SplitCriticalEdge(BB, Parent,
4730 CriticalEdgeSplittingOptions(&DT, &LI)
4731 .setMergeIdenticalEdges()
4732 .setDontDeleteUselessPHIs());
Bill Wendling3fb137f2011-08-25 05:55:40 +00004733 } else {
4734 SmallVector<BasicBlock*, 2> NewBBs;
Chandler Carruth0eae1122015-01-19 03:03:39 +00004735 SplitLandingPadPredecessors(Parent, BB, "", "", NewBBs,
4736 /*AliasAnalysis*/ nullptr, &DT, &LI);
Bill Wendling3fb137f2011-08-25 05:55:40 +00004737 NewBB = NewBBs[0];
4738 }
Andrew Trick402edbb2012-09-18 17:51:33 +00004739 // If NewBB==NULL, then SplitCriticalEdge refused to split because all
4740 // phi predecessors are identical. The simple thing to do is skip
4741 // splitting in this case rather than complicate the API.
4742 if (NewBB) {
4743 // If PN is outside of the loop and BB is in the loop, we want to
4744 // move the block to be immediately before the PHI block, not
4745 // immediately after BB.
4746 if (L->contains(BB) && !L->contains(PN))
4747 NewBB->moveBefore(PN->getParent());
Dan Gohman6deab962010-02-16 20:25:07 +00004748
Andrew Trick402edbb2012-09-18 17:51:33 +00004749 // Splitting the edge can reduce the number of PHI entries we have.
4750 e = PN->getNumIncomingValues();
4751 BB = NewBB;
4752 i = PN->getBasicBlockIndex(BB);
4753 }
Dan Gohmande7f6992011-02-08 00:55:13 +00004754 }
Dan Gohman6deab962010-02-16 20:25:07 +00004755 }
4756
4757 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> Pair =
Craig Topperf40110f2014-04-25 05:29:35 +00004758 Inserted.insert(std::make_pair(BB, static_cast<Value *>(nullptr)));
Dan Gohman6deab962010-02-16 20:25:07 +00004759 if (!Pair.second)
4760 PN->setIncomingValue(i, Pair.first->second);
4761 else {
Dan Gohman8c16b382010-02-22 04:11:59 +00004762 Value *FullV = Expand(LF, F, BB->getTerminator(), Rewriter, DeadInsts);
Dan Gohman6deab962010-02-16 20:25:07 +00004763
4764 // If this is reuse-by-noop-cast, insert the noop cast.
Chris Lattner229907c2011-07-18 04:54:35 +00004765 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman6deab962010-02-16 20:25:07 +00004766 if (FullV->getType() != OpTy)
4767 FullV =
4768 CastInst::Create(CastInst::getCastOpcode(FullV, false,
4769 OpTy, false),
4770 FullV, LF.OperandValToReplace->getType(),
4771 "tmp", BB->getTerminator());
4772
4773 PN->setIncomingValue(i, FullV);
4774 Pair.first->second = FullV;
4775 }
4776 }
4777}
4778
Dan Gohman45774ce2010-02-12 10:34:29 +00004779/// Rewrite - Emit instructions for the leading candidate expression for this
4780/// LSRUse (this is called "expanding"), and update the UserInst to reference
4781/// the newly expanded value.
4782void LSRInstance::Rewrite(const LSRFixup &LF,
4783 const Formula &F,
Dan Gohman45774ce2010-02-12 10:34:29 +00004784 SCEVExpander &Rewriter,
4785 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman45774ce2010-02-12 10:34:29 +00004786 Pass *P) const {
Dan Gohman45774ce2010-02-12 10:34:29 +00004787 // First, find an insertion point that dominates UserInst. For PHI nodes,
4788 // find the nearest block which dominates all the relevant uses.
4789 if (PHINode *PN = dyn_cast<PHINode>(LF.UserInst)) {
Dan Gohman8c16b382010-02-22 04:11:59 +00004790 RewriteForPHI(PN, LF, F, Rewriter, DeadInsts, P);
Dan Gohman45774ce2010-02-12 10:34:29 +00004791 } else {
Dan Gohman8c16b382010-02-22 04:11:59 +00004792 Value *FullV = Expand(LF, F, LF.UserInst, Rewriter, DeadInsts);
Dan Gohman45774ce2010-02-12 10:34:29 +00004793
4794 // If this is reuse-by-noop-cast, insert the noop cast.
Chris Lattner229907c2011-07-18 04:54:35 +00004795 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00004796 if (FullV->getType() != OpTy) {
4797 Instruction *Cast =
4798 CastInst::Create(CastInst::getCastOpcode(FullV, false, OpTy, false),
4799 FullV, OpTy, "tmp", LF.UserInst);
4800 FullV = Cast;
4801 }
4802
4803 // Update the user. ICmpZero is handled specially here (for now) because
4804 // Expand may have updated one of the operands of the icmp already, and
4805 // its new value may happen to be equal to LF.OperandValToReplace, in
4806 // which case doing replaceUsesOfWith leads to replacing both operands
4807 // with the same value. TODO: Reorganize this.
4808 if (Uses[LF.LUIdx].Kind == LSRUse::ICmpZero)
4809 LF.UserInst->setOperand(0, FullV);
4810 else
4811 LF.UserInst->replaceUsesOfWith(LF.OperandValToReplace, FullV);
4812 }
4813
4814 DeadInsts.push_back(LF.OperandValToReplace);
4815}
4816
Dan Gohmana4ca28a2010-05-20 20:52:00 +00004817/// ImplementSolution - Rewrite all the fixup locations with new values,
4818/// following the chosen solution.
Dan Gohman45774ce2010-02-12 10:34:29 +00004819void
4820LSRInstance::ImplementSolution(const SmallVectorImpl<const Formula *> &Solution,
4821 Pass *P) {
4822 // Keep track of instructions we may have made dead, so that
4823 // we can remove them after we are done working.
4824 SmallVector<WeakVH, 16> DeadInsts;
4825
Andrew Trick411daa52011-06-28 05:07:32 +00004826 SCEVExpander Rewriter(SE, "lsr");
Andrew Trick4dc3eff2012-01-09 18:58:16 +00004827#ifndef NDEBUG
4828 Rewriter.setDebugType(DEBUG_TYPE);
4829#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00004830 Rewriter.disableCanonicalMode();
Andrew Trick7fb669a2011-10-07 23:46:21 +00004831 Rewriter.enableLSRMode();
Dan Gohman45774ce2010-02-12 10:34:29 +00004832 Rewriter.setIVIncInsertPos(L, IVIncInsertPos);
4833
Andrew Trickd5d2db92012-01-10 01:45:08 +00004834 // Mark phi nodes that terminate chains so the expander tries to reuse them.
4835 for (SmallVectorImpl<IVChain>::const_iterator ChainI = IVChainVec.begin(),
4836 ChainE = IVChainVec.end(); ChainI != ChainE; ++ChainI) {
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00004837 if (PHINode *PN = dyn_cast<PHINode>(ChainI->tailUserInst()))
Andrew Trickd5d2db92012-01-10 01:45:08 +00004838 Rewriter.setChainedPhi(PN);
4839 }
4840
Dan Gohman45774ce2010-02-12 10:34:29 +00004841 // Expand the new value definitions and update the users.
Dan Gohman927bcaa2010-05-20 20:33:18 +00004842 for (SmallVectorImpl<LSRFixup>::const_iterator I = Fixups.begin(),
4843 E = Fixups.end(); I != E; ++I) {
4844 const LSRFixup &Fixup = *I;
Dan Gohman45774ce2010-02-12 10:34:29 +00004845
Dan Gohman927bcaa2010-05-20 20:33:18 +00004846 Rewrite(Fixup, *Solution[Fixup.LUIdx], Rewriter, DeadInsts, P);
Dan Gohman45774ce2010-02-12 10:34:29 +00004847
4848 Changed = true;
4849 }
4850
Andrew Trick248d4102012-01-09 21:18:52 +00004851 for (SmallVectorImpl<IVChain>::const_iterator ChainI = IVChainVec.begin(),
4852 ChainE = IVChainVec.end(); ChainI != ChainE; ++ChainI) {
4853 GenerateIVChain(*ChainI, Rewriter, DeadInsts);
4854 Changed = true;
4855 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004856 // Clean up after ourselves. This must be done before deleting any
4857 // instructions.
4858 Rewriter.clear();
4859
4860 Changed |= DeleteTriviallyDeadInstructions(DeadInsts);
4861}
4862
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004863LSRInstance::LSRInstance(Loop *L, Pass *P)
4864 : IU(P->getAnalysis<IVUsers>()), SE(P->getAnalysis<ScalarEvolution>()),
Chandler Carruth73523022014-01-13 13:07:17 +00004865 DT(P->getAnalysis<DominatorTreeWrapperPass>().getDomTree()),
Chandler Carruth4f8f3072015-01-17 14:16:18 +00004866 LI(P->getAnalysis<LoopInfoWrapperPass>().getLoopInfo()),
Chandler Carruthfdb9c572015-02-01 12:01:35 +00004867 TTI(P->getAnalysis<TargetTransformInfoWrapperPass>().getTTI(
4868 *L->getHeader()->getParent())),
4869 L(L), Changed(false), IVIncInsertPos(nullptr) {
Dan Gohmana83ac2d2009-11-05 21:11:53 +00004870 // If LoopSimplify form is not available, stay out of trouble.
Andrew Trick732ad802012-01-07 03:16:50 +00004871 if (!L->isLoopSimplifyForm())
4872 return;
Dan Gohmana83ac2d2009-11-05 21:11:53 +00004873
Andrew Trick070e5402012-03-16 03:16:56 +00004874 // If there's no interesting work to be done, bail early.
4875 if (IU.empty()) return;
4876
Andrew Trick19f80c12012-04-18 04:00:10 +00004877 // If there's too much analysis to be done, bail early. We won't be able to
4878 // model the problem anyway.
4879 unsigned NumUsers = 0;
4880 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) {
4881 if (++NumUsers > MaxIVUsers) {
4882 DEBUG(dbgs() << "LSR skipping loop, too many IV Users in " << *L
4883 << "\n");
4884 return;
4885 }
4886 }
4887
Andrew Trick070e5402012-03-16 03:16:56 +00004888#ifndef NDEBUG
Andrew Trick12728f02012-01-17 06:45:52 +00004889 // All dominating loops must have preheaders, or SCEVExpander may not be able
4890 // to materialize an AddRecExpr whose Start is an outer AddRecExpr.
4891 //
Andrew Trick070e5402012-03-16 03:16:56 +00004892 // IVUsers analysis should only create users that are dominated by simple loop
4893 // headers. Since this loop should dominate all of its users, its user list
4894 // should be empty if this loop itself is not within a simple loop nest.
Andrew Trick12728f02012-01-17 06:45:52 +00004895 for (DomTreeNode *Rung = DT.getNode(L->getLoopPreheader());
4896 Rung; Rung = Rung->getIDom()) {
4897 BasicBlock *BB = Rung->getBlock();
4898 const Loop *DomLoop = LI.getLoopFor(BB);
4899 if (DomLoop && DomLoop->getHeader() == BB) {
Andrew Trick070e5402012-03-16 03:16:56 +00004900 assert(DomLoop->getLoopPreheader() && "LSR needs a simplified loop nest");
Andrew Trick12728f02012-01-17 06:45:52 +00004901 }
Andrew Trick732ad802012-01-07 03:16:50 +00004902 }
Andrew Trick070e5402012-03-16 03:16:56 +00004903#endif // DEBUG
Dan Gohman85875f72009-03-09 20:34:59 +00004904
Dan Gohman45774ce2010-02-12 10:34:29 +00004905 DEBUG(dbgs() << "\nLSR on loop ";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00004906 L->getHeader()->printAsOperand(dbgs(), /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00004907 dbgs() << ":\n");
Dan Gohmane201f8f2009-03-09 20:46:50 +00004908
Dan Gohman927bcaa2010-05-20 20:33:18 +00004909 // First, perform some low-level loop optimizations.
Dan Gohman45774ce2010-02-12 10:34:29 +00004910 OptimizeShadowIV();
Dan Gohman4c4043c2010-05-20 20:05:31 +00004911 OptimizeLoopTermCond();
Evan Cheng78a4eb82009-05-11 22:33:01 +00004912
Andrew Trick8acb4342011-07-21 00:40:04 +00004913 // If loop preparation eliminates all interesting IV users, bail.
4914 if (IU.empty()) return;
4915
Andrew Trick168dfff2011-09-29 01:53:08 +00004916 // Skip nested loops until we can model them better with formulae.
Andrew Trickd97b83e2012-03-22 22:42:45 +00004917 if (!L->empty()) {
Andrew Trickbc6de902011-09-29 01:33:38 +00004918 DEBUG(dbgs() << "LSR skipping outer loop " << *L << "\n");
Andrew Trick168dfff2011-09-29 01:53:08 +00004919 return;
Andrew Trickbc6de902011-09-29 01:33:38 +00004920 }
4921
Dan Gohman927bcaa2010-05-20 20:33:18 +00004922 // Start collecting data and preparing for the solver.
Andrew Trick29fe5f02012-01-09 19:50:34 +00004923 CollectChains();
Dan Gohman45774ce2010-02-12 10:34:29 +00004924 CollectInterestingTypesAndFactors();
4925 CollectFixupsAndInitialFormulae();
4926 CollectLoopInvariantFixupsAndFormulae();
Chris Lattner9bfa6f82005-08-08 05:28:22 +00004927
Andrew Trick248d4102012-01-09 21:18:52 +00004928 assert(!Uses.empty() && "IVUsers reported at least one use");
Dan Gohman45774ce2010-02-12 10:34:29 +00004929 DEBUG(dbgs() << "LSR found " << Uses.size() << " uses:\n";
4930 print_uses(dbgs()));
Misha Brukmanb1c93172005-04-21 23:48:37 +00004931
Dan Gohman45774ce2010-02-12 10:34:29 +00004932 // Now use the reuse data to generate a bunch of interesting ways
4933 // to formulate the values needed for the uses.
4934 GenerateAllReuseFormulae();
Evan Cheng3df447d2006-03-16 21:53:05 +00004935
Dan Gohman45774ce2010-02-12 10:34:29 +00004936 FilterOutUndesirableDedicatedRegisters();
4937 NarrowSearchSpaceUsingHeuristics();
Dan Gohman92c36962009-12-18 00:06:20 +00004938
Dan Gohman45774ce2010-02-12 10:34:29 +00004939 SmallVector<const Formula *, 8> Solution;
4940 Solve(Solution);
Dan Gohman92c36962009-12-18 00:06:20 +00004941
Dan Gohman45774ce2010-02-12 10:34:29 +00004942 // Release memory that is no longer needed.
4943 Factors.clear();
4944 Types.clear();
4945 RegUses.clear();
4946
Andrew Trick58124392011-09-27 00:44:14 +00004947 if (Solution.empty())
4948 return;
4949
Dan Gohman45774ce2010-02-12 10:34:29 +00004950#ifndef NDEBUG
4951 // Formulae should be legal.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004952 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(), E = Uses.end();
4953 I != E; ++I) {
4954 const LSRUse &LU = *I;
4955 for (SmallVectorImpl<Formula>::const_iterator J = LU.Formulae.begin(),
4956 JE = LU.Formulae.end();
4957 J != JE; ++J)
4958 assert(isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
4959 *J) && "Illegal formula generated!");
Dan Gohman45774ce2010-02-12 10:34:29 +00004960 };
4961#endif
4962
4963 // Now that we've decided what we want, make it so.
4964 ImplementSolution(Solution, P);
4965}
4966
4967void LSRInstance::print_factors_and_types(raw_ostream &OS) const {
4968 if (Factors.empty() && Types.empty()) return;
4969
4970 OS << "LSR has identified the following interesting factors and types: ";
4971 bool First = true;
4972
4973 for (SmallSetVector<int64_t, 8>::const_iterator
4974 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
4975 if (!First) OS << ", ";
4976 First = false;
4977 OS << '*' << *I;
Evan Cheng87fe40b2009-11-10 21:14:05 +00004978 }
Dale Johannesen02cb2bf2009-05-11 17:15:42 +00004979
Chris Lattner229907c2011-07-18 04:54:35 +00004980 for (SmallSetVector<Type *, 4>::const_iterator
Dan Gohman45774ce2010-02-12 10:34:29 +00004981 I = Types.begin(), E = Types.end(); I != E; ++I) {
4982 if (!First) OS << ", ";
4983 First = false;
4984 OS << '(' << **I << ')';
4985 }
4986 OS << '\n';
4987}
4988
4989void LSRInstance::print_fixups(raw_ostream &OS) const {
4990 OS << "LSR is examining the following fixup sites:\n";
4991 for (SmallVectorImpl<LSRFixup>::const_iterator I = Fixups.begin(),
4992 E = Fixups.end(); I != E; ++I) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004993 dbgs() << " ";
Dan Gohman86110fa2010-05-20 22:25:20 +00004994 I->print(OS);
Dan Gohman45774ce2010-02-12 10:34:29 +00004995 OS << '\n';
4996 }
4997}
4998
4999void LSRInstance::print_uses(raw_ostream &OS) const {
5000 OS << "LSR is examining the following uses:\n";
5001 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
5002 E = Uses.end(); I != E; ++I) {
5003 const LSRUse &LU = *I;
5004 dbgs() << " ";
5005 LU.print(OS);
5006 OS << '\n';
5007 for (SmallVectorImpl<Formula>::const_iterator J = LU.Formulae.begin(),
5008 JE = LU.Formulae.end(); J != JE; ++J) {
5009 OS << " ";
5010 J->print(OS);
5011 OS << '\n';
5012 }
5013 }
5014}
5015
5016void LSRInstance::print(raw_ostream &OS) const {
5017 print_factors_and_types(OS);
5018 print_fixups(OS);
5019 print_uses(OS);
5020}
5021
Manman Ren49d684e2012-09-12 05:06:18 +00005022#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +00005023void LSRInstance::dump() const {
5024 print(errs()); errs() << '\n';
5025}
Manman Renc3366cc2012-09-06 19:55:56 +00005026#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00005027
5028namespace {
5029
5030class LoopStrengthReduce : public LoopPass {
Dan Gohman45774ce2010-02-12 10:34:29 +00005031public:
5032 static char ID; // Pass ID, replacement for typeid
Chandler Carruth26c59fa2013-01-07 14:41:08 +00005033 LoopStrengthReduce();
Dan Gohman45774ce2010-02-12 10:34:29 +00005034
5035private:
Craig Topper3e4c6972014-03-05 09:10:37 +00005036 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
5037 void getAnalysisUsage(AnalysisUsage &AU) const override;
Dan Gohman45774ce2010-02-12 10:34:29 +00005038};
5039
5040}
5041
5042char LoopStrengthReduce::ID = 0;
Owen Anderson8ac477f2010-10-12 19:48:12 +00005043INITIALIZE_PASS_BEGIN(LoopStrengthReduce, "loop-reduce",
Owen Andersondf7a4f22010-10-07 22:25:06 +00005044 "Loop Strength Reduction", false, false)
Chandler Carruth705b1852015-01-31 03:43:40 +00005045INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
Chandler Carruth73523022014-01-13 13:07:17 +00005046INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Owen Anderson8ac477f2010-10-12 19:48:12 +00005047INITIALIZE_PASS_DEPENDENCY(ScalarEvolution)
5048INITIALIZE_PASS_DEPENDENCY(IVUsers)
Chandler Carruth4f8f3072015-01-17 14:16:18 +00005049INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
Owen Andersona4fefc12010-10-19 20:08:44 +00005050INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
Owen Anderson8ac477f2010-10-12 19:48:12 +00005051INITIALIZE_PASS_END(LoopStrengthReduce, "loop-reduce",
5052 "Loop Strength Reduction", false, false)
5053
Nadav Rotem4dc976f2012-10-19 21:28:43 +00005054
Chandler Carruth26c59fa2013-01-07 14:41:08 +00005055Pass *llvm::createLoopStrengthReducePass() {
5056 return new LoopStrengthReduce();
Dan Gohman45774ce2010-02-12 10:34:29 +00005057}
5058
Chandler Carruth26c59fa2013-01-07 14:41:08 +00005059LoopStrengthReduce::LoopStrengthReduce() : LoopPass(ID) {
5060 initializeLoopStrengthReducePass(*PassRegistry::getPassRegistry());
5061}
Dan Gohman45774ce2010-02-12 10:34:29 +00005062
5063void LoopStrengthReduce::getAnalysisUsage(AnalysisUsage &AU) const {
5064 // We split critical edges, so we change the CFG. However, we do update
5065 // many analyses if they are around.
Eric Christopherda6bd452011-02-10 01:48:24 +00005066 AU.addPreservedID(LoopSimplifyID);
Dan Gohman45774ce2010-02-12 10:34:29 +00005067
Chandler Carruth4f8f3072015-01-17 14:16:18 +00005068 AU.addRequired<LoopInfoWrapperPass>();
5069 AU.addPreserved<LoopInfoWrapperPass>();
Eric Christopherda6bd452011-02-10 01:48:24 +00005070 AU.addRequiredID(LoopSimplifyID);
Chandler Carruth73523022014-01-13 13:07:17 +00005071 AU.addRequired<DominatorTreeWrapperPass>();
5072 AU.addPreserved<DominatorTreeWrapperPass>();
Dan Gohman45774ce2010-02-12 10:34:29 +00005073 AU.addRequired<ScalarEvolution>();
5074 AU.addPreserved<ScalarEvolution>();
Cameron Zwarich97dae4d2011-02-10 23:53:14 +00005075 // Requiring LoopSimplify a second time here prevents IVUsers from running
5076 // twice, since LoopSimplify was invalidated by running ScalarEvolution.
5077 AU.addRequiredID(LoopSimplifyID);
Dan Gohman45774ce2010-02-12 10:34:29 +00005078 AU.addRequired<IVUsers>();
5079 AU.addPreserved<IVUsers>();
Chandler Carruth705b1852015-01-31 03:43:40 +00005080 AU.addRequired<TargetTransformInfoWrapperPass>();
Dan Gohman45774ce2010-02-12 10:34:29 +00005081}
5082
5083bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager & /*LPM*/) {
Paul Robinsonaf4e64d2014-02-06 00:07:05 +00005084 if (skipOptnoneFunction(L))
5085 return false;
5086
Dan Gohman45774ce2010-02-12 10:34:29 +00005087 bool Changed = false;
5088
5089 // Run the main LSR transformation.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00005090 Changed |= LSRInstance(L, this).getChanged();
Dan Gohman45774ce2010-02-12 10:34:29 +00005091
Andrew Trick2ec61a82012-01-07 01:36:44 +00005092 // Remove any extra phis created by processing inner loops.
Dan Gohmanb5358002010-01-05 16:31:45 +00005093 Changed |= DeleteDeadPHIs(L->getHeader());
Andrew Trickf950ce82013-01-06 05:59:39 +00005094 if (EnablePhiElim && L->isLoopSimplifyForm()) {
Andrew Trick2ec61a82012-01-07 01:36:44 +00005095 SmallVector<WeakVH, 16> DeadInsts;
5096 SCEVExpander Rewriter(getAnalysis<ScalarEvolution>(), "lsr");
5097#ifndef NDEBUG
5098 Rewriter.setDebugType(DEBUG_TYPE);
5099#endif
Chandler Carruth73523022014-01-13 13:07:17 +00005100 unsigned numFolded = Rewriter.replaceCongruentIVs(
5101 L, &getAnalysis<DominatorTreeWrapperPass>().getDomTree(), DeadInsts,
Chandler Carruthfdb9c572015-02-01 12:01:35 +00005102 &getAnalysis<TargetTransformInfoWrapperPass>().getTTI(
5103 *L->getHeader()->getParent()));
Andrew Trick2ec61a82012-01-07 01:36:44 +00005104 if (numFolded) {
5105 Changed = true;
5106 DeleteTriviallyDeadInstructions(DeadInsts);
5107 DeleteDeadPHIs(L->getHeader());
5108 }
5109 }
Evan Cheng03001cb2008-07-07 19:51:32 +00005110 return Changed;
Nate Begemanb18121e2004-10-18 21:08:22 +00005111}