blob: 5ab32d91f52e0963307b43760b0244e2170337ef [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
Chris Lattnerbb78c972005-08-03 23:30:08 +000056#define DEBUG_TYPE "loop-reduce"
Chandler Carruthed0881b2012-12-03 16:50:05 +000057#include "llvm/Transforms/Scalar.h"
58#include "llvm/ADT/DenseSet.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"
Andrew Trick58124392011-09-27 00:44:14 +000071#include "llvm/Support/CommandLine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000072#include "llvm/Support/Debug.h"
Dan Gohmanff089952009-05-02 18:29:22 +000073#include "llvm/Support/ValueHandle.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
Andrew Trick19f80c12012-04-18 04:00:10 +000080/// MaxIVUsers is an arbitrary threshold that provides an early opportunitiy for
81/// bail out. This threshold is far beyond the number of users that LSR can
82/// conceivably solve, so it should not affect generated code, but catches the
83/// worst cases before LSR burns too much compile time and stack space.
84static const unsigned MaxIVUsers = 200;
85
Andrew Trickecbe22b2011-10-11 02:30:45 +000086// Temporary flag to cleanup congruent phis after LSR phi expansion.
87// It's currently disabled until we can determine whether it's truly useful or
88// not. The flag should be removed after the v3.0 release.
Andrew Trick06f6c052012-01-07 07:08:17 +000089// This is now needed for ivchains.
Benjamin Kramer7ba71be2011-11-26 23:01:57 +000090static cl::opt<bool> EnablePhiElim(
Andrew Trick06f6c052012-01-07 07:08:17 +000091 "enable-lsr-phielim", cl::Hidden, cl::init(true),
92 cl::desc("Enable LSR phi elimination"));
Andrew Trick58124392011-09-27 00:44:14 +000093
Andrew Trick248d4102012-01-09 21:18:52 +000094#ifndef NDEBUG
95// Stress test IV chain generation.
96static cl::opt<bool> StressIVChain(
97 "stress-ivchain", cl::Hidden, cl::init(false),
98 cl::desc("Stress test LSR IV chains"));
99#else
100static bool StressIVChain = false;
101#endif
102
Dan Gohman45774ce2010-02-12 10:34:29 +0000103namespace {
Nate Begemanb18121e2004-10-18 21:08:22 +0000104
Dan Gohman45774ce2010-02-12 10:34:29 +0000105/// RegSortData - This class holds data which is used to order reuse candidates.
106class RegSortData {
107public:
108 /// UsedByIndices - This represents the set of LSRUse indices which reference
109 /// a particular register.
110 SmallBitVector UsedByIndices;
111
112 RegSortData() {}
113
114 void print(raw_ostream &OS) const;
115 void dump() const;
116};
117
118}
119
120void RegSortData::print(raw_ostream &OS) const {
121 OS << "[NumUses=" << UsedByIndices.count() << ']';
122}
123
Manman Ren49d684e2012-09-12 05:06:18 +0000124#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +0000125void RegSortData::dump() const {
126 print(errs()); errs() << '\n';
127}
Manman Renc3366cc2012-09-06 19:55:56 +0000128#endif
Dan Gohman2a12ae72009-02-20 04:17:46 +0000129
Chris Lattner79a42ac2006-12-19 21:40:18 +0000130namespace {
Dale Johannesene3a02be2007-03-20 00:47:50 +0000131
Dan Gohman45774ce2010-02-12 10:34:29 +0000132/// RegUseTracker - Map register candidates to information about how they are
133/// used.
134class RegUseTracker {
135 typedef DenseMap<const SCEV *, RegSortData> RegUsesTy;
Dale Johannesene3a02be2007-03-20 00:47:50 +0000136
Dan Gohman248c41d2010-05-18 22:33:00 +0000137 RegUsesTy RegUsesMap;
Dan Gohman45774ce2010-02-12 10:34:29 +0000138 SmallVector<const SCEV *, 16> RegSequence;
Evan Cheng3df447d2006-03-16 21:53:05 +0000139
Dan Gohman45774ce2010-02-12 10:34:29 +0000140public:
141 void CountRegister(const SCEV *Reg, size_t LUIdx);
Dan Gohman4cf99b52010-05-18 23:42:37 +0000142 void DropRegister(const SCEV *Reg, size_t LUIdx);
Dan Gohmana7b68d62010-10-07 23:33:43 +0000143 void SwapAndDropUse(size_t LUIdx, size_t LastLUIdx);
Dan Gohman51ad99d2010-01-21 02:09:26 +0000144
Dan Gohman45774ce2010-02-12 10:34:29 +0000145 bool isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const;
Dan Gohman51ad99d2010-01-21 02:09:26 +0000146
Dan Gohman45774ce2010-02-12 10:34:29 +0000147 const SmallBitVector &getUsedByIndices(const SCEV *Reg) const;
Dan Gohman51ad99d2010-01-21 02:09:26 +0000148
Dan Gohman45774ce2010-02-12 10:34:29 +0000149 void clear();
Dan Gohman51ad99d2010-01-21 02:09:26 +0000150
Dan Gohman45774ce2010-02-12 10:34:29 +0000151 typedef SmallVectorImpl<const SCEV *>::iterator iterator;
152 typedef SmallVectorImpl<const SCEV *>::const_iterator const_iterator;
153 iterator begin() { return RegSequence.begin(); }
154 iterator end() { return RegSequence.end(); }
155 const_iterator begin() const { return RegSequence.begin(); }
156 const_iterator end() const { return RegSequence.end(); }
157};
Dan Gohman51ad99d2010-01-21 02:09:26 +0000158
Dan Gohman51ad99d2010-01-21 02:09:26 +0000159}
160
Dan Gohman45774ce2010-02-12 10:34:29 +0000161void
162RegUseTracker::CountRegister(const SCEV *Reg, size_t LUIdx) {
163 std::pair<RegUsesTy::iterator, bool> Pair =
Dan Gohman248c41d2010-05-18 22:33:00 +0000164 RegUsesMap.insert(std::make_pair(Reg, RegSortData()));
Dan Gohman45774ce2010-02-12 10:34:29 +0000165 RegSortData &RSD = Pair.first->second;
166 if (Pair.second)
167 RegSequence.push_back(Reg);
168 RSD.UsedByIndices.resize(std::max(RSD.UsedByIndices.size(), LUIdx + 1));
169 RSD.UsedByIndices.set(LUIdx);
Dan Gohman51ad99d2010-01-21 02:09:26 +0000170}
171
Dan Gohman4cf99b52010-05-18 23:42:37 +0000172void
173RegUseTracker::DropRegister(const SCEV *Reg, size_t LUIdx) {
174 RegUsesTy::iterator It = RegUsesMap.find(Reg);
175 assert(It != RegUsesMap.end());
176 RegSortData &RSD = It->second;
177 assert(RSD.UsedByIndices.size() > LUIdx);
178 RSD.UsedByIndices.reset(LUIdx);
179}
180
Dan Gohman20fab452010-05-19 23:43:12 +0000181void
Dan Gohmana7b68d62010-10-07 23:33:43 +0000182RegUseTracker::SwapAndDropUse(size_t LUIdx, size_t LastLUIdx) {
183 assert(LUIdx <= LastLUIdx);
184
185 // Update RegUses. The data structure is not optimized for this purpose;
186 // we must iterate through it and update each of the bit vectors.
Dan Gohman20fab452010-05-19 23:43:12 +0000187 for (RegUsesTy::iterator I = RegUsesMap.begin(), E = RegUsesMap.end();
Dan Gohmana7b68d62010-10-07 23:33:43 +0000188 I != E; ++I) {
189 SmallBitVector &UsedByIndices = I->second.UsedByIndices;
190 if (LUIdx < UsedByIndices.size())
191 UsedByIndices[LUIdx] =
192 LastLUIdx < UsedByIndices.size() ? UsedByIndices[LastLUIdx] : 0;
193 UsedByIndices.resize(std::min(UsedByIndices.size(), LastLUIdx));
194 }
Dan Gohman20fab452010-05-19 23:43:12 +0000195}
196
Dan Gohman45774ce2010-02-12 10:34:29 +0000197bool
198RegUseTracker::isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const {
Dan Gohman4f13bbf2010-08-29 15:18:49 +0000199 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
200 if (I == RegUsesMap.end())
201 return false;
202 const SmallBitVector &UsedByIndices = I->second.UsedByIndices;
Dan Gohman45774ce2010-02-12 10:34:29 +0000203 int i = UsedByIndices.find_first();
204 if (i == -1) return false;
205 if ((size_t)i != LUIdx) return true;
206 return UsedByIndices.find_next(i) != -1;
207}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000208
Dan Gohman45774ce2010-02-12 10:34:29 +0000209const SmallBitVector &RegUseTracker::getUsedByIndices(const SCEV *Reg) const {
Dan Gohman248c41d2010-05-18 22:33:00 +0000210 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
211 assert(I != RegUsesMap.end() && "Unknown register!");
Dan Gohman45774ce2010-02-12 10:34:29 +0000212 return I->second.UsedByIndices;
213}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000214
Dan Gohman45774ce2010-02-12 10:34:29 +0000215void RegUseTracker::clear() {
Dan Gohman248c41d2010-05-18 22:33:00 +0000216 RegUsesMap.clear();
Dan Gohman45774ce2010-02-12 10:34:29 +0000217 RegSequence.clear();
218}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000219
Dan Gohman45774ce2010-02-12 10:34:29 +0000220namespace {
221
222/// Formula - This class holds information that describes a formula for
223/// computing satisfying a use. It may include broken-out immediates and scaled
224/// registers.
225struct Formula {
Chandler Carruth6e479322013-01-07 15:04:40 +0000226 /// Global base address used for complex addressing.
227 GlobalValue *BaseGV;
228
229 /// Base offset for complex addressing.
230 int64_t BaseOffset;
231
232 /// Whether any complex addressing has a base register.
233 bool HasBaseReg;
234
235 /// The scale of any complex addressing.
236 int64_t Scale;
Dan Gohman45774ce2010-02-12 10:34:29 +0000237
238 /// BaseRegs - The list of "base" registers for this use. When this is
Chandler Carruth6e479322013-01-07 15:04:40 +0000239 /// non-empty,
Preston Gurd25c3b6a2013-02-01 20:41:27 +0000240 SmallVector<const SCEV *, 4> BaseRegs;
Dan Gohman45774ce2010-02-12 10:34:29 +0000241
242 /// ScaledReg - The 'scaled' register for this use. This should be non-null
Chandler Carruth6e479322013-01-07 15:04:40 +0000243 /// when Scale is not zero.
Dan Gohman45774ce2010-02-12 10:34:29 +0000244 const SCEV *ScaledReg;
245
Dan Gohman6136e942011-05-03 00:46:49 +0000246 /// UnfoldedOffset - An additional constant offset which added near the
247 /// use. This requires a temporary register, but the offset itself can
248 /// live in an add immediate field rather than a register.
249 int64_t UnfoldedOffset;
250
Chandler Carruth6e479322013-01-07 15:04:40 +0000251 Formula()
252 : BaseGV(0), BaseOffset(0), HasBaseReg(false), Scale(0), ScaledReg(0),
253 UnfoldedOffset(0) {}
Dan Gohman45774ce2010-02-12 10:34:29 +0000254
Dan Gohman20d9ce22010-11-17 21:41:58 +0000255 void InitialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000256
257 unsigned getNumRegs() const;
Chris Lattner229907c2011-07-18 04:54:35 +0000258 Type *getType() const;
Dan Gohman45774ce2010-02-12 10:34:29 +0000259
Dan Gohman80a96082010-05-20 15:17:54 +0000260 void DeleteBaseReg(const SCEV *&S);
261
Dan Gohman45774ce2010-02-12 10:34:29 +0000262 bool referencesReg(const SCEV *S) const;
263 bool hasRegsUsedByUsesOtherThan(size_t LUIdx,
264 const RegUseTracker &RegUses) const;
265
266 void print(raw_ostream &OS) const;
267 void dump() const;
268};
269
270}
271
Dan Gohman8b0a4192010-03-01 17:49:51 +0000272/// DoInitialMatch - Recursion helper for InitialMatch.
Dan Gohman45774ce2010-02-12 10:34:29 +0000273static void DoInitialMatch(const SCEV *S, Loop *L,
274 SmallVectorImpl<const SCEV *> &Good,
275 SmallVectorImpl<const SCEV *> &Bad,
Dan Gohman20d9ce22010-11-17 21:41:58 +0000276 ScalarEvolution &SE) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000277 // Collect expressions which properly dominate the loop header.
Dan Gohman20d9ce22010-11-17 21:41:58 +0000278 if (SE.properlyDominates(S, L->getHeader())) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000279 Good.push_back(S);
280 return;
Dan Gohman51ad99d2010-01-21 02:09:26 +0000281 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000282
283 // Look at add operands.
284 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
285 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
286 I != E; ++I)
Dan Gohman20d9ce22010-11-17 21:41:58 +0000287 DoInitialMatch(*I, L, Good, Bad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000288 return;
289 }
290
291 // Look at addrec operands.
292 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S))
293 if (!AR->getStart()->isZero()) {
Dan Gohman20d9ce22010-11-17 21:41:58 +0000294 DoInitialMatch(AR->getStart(), L, Good, Bad, SE);
Dan Gohman1d2ded72010-05-03 22:09:21 +0000295 DoInitialMatch(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
Dan Gohman45774ce2010-02-12 10:34:29 +0000296 AR->getStepRecurrence(SE),
Andrew Trick8b55b732011-03-14 16:50:06 +0000297 // FIXME: AR->getNoWrapFlags()
298 AR->getLoop(), SCEV::FlagAnyWrap),
Dan Gohman20d9ce22010-11-17 21:41:58 +0000299 L, Good, Bad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000300 return;
301 }
302
303 // Handle a multiplication by -1 (negation) if it didn't fold.
304 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S))
305 if (Mul->getOperand(0)->isAllOnesValue()) {
306 SmallVector<const SCEV *, 4> Ops(Mul->op_begin()+1, Mul->op_end());
307 const SCEV *NewMul = SE.getMulExpr(Ops);
308
309 SmallVector<const SCEV *, 4> MyGood;
310 SmallVector<const SCEV *, 4> MyBad;
Dan Gohman20d9ce22010-11-17 21:41:58 +0000311 DoInitialMatch(NewMul, L, MyGood, MyBad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000312 const SCEV *NegOne = SE.getSCEV(ConstantInt::getAllOnesValue(
313 SE.getEffectiveSCEVType(NewMul->getType())));
314 for (SmallVectorImpl<const SCEV *>::const_iterator I = MyGood.begin(),
315 E = MyGood.end(); I != E; ++I)
316 Good.push_back(SE.getMulExpr(NegOne, *I));
317 for (SmallVectorImpl<const SCEV *>::const_iterator I = MyBad.begin(),
318 E = MyBad.end(); I != E; ++I)
319 Bad.push_back(SE.getMulExpr(NegOne, *I));
320 return;
321 }
322
323 // Ok, we can't do anything interesting. Just stuff the whole thing into a
324 // register and hope for the best.
325 Bad.push_back(S);
326}
327
328/// InitialMatch - Incorporate loop-variant parts of S into this Formula,
329/// attempting to keep all loop-invariant and loop-computable values in a
330/// single base register.
Dan Gohman20d9ce22010-11-17 21:41:58 +0000331void Formula::InitialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000332 SmallVector<const SCEV *, 4> Good;
333 SmallVector<const SCEV *, 4> Bad;
Dan Gohman20d9ce22010-11-17 21:41:58 +0000334 DoInitialMatch(S, L, Good, Bad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000335 if (!Good.empty()) {
Dan Gohman9b5d0bb72010-04-08 23:36:27 +0000336 const SCEV *Sum = SE.getAddExpr(Good);
337 if (!Sum->isZero())
338 BaseRegs.push_back(Sum);
Chandler Carruth6e479322013-01-07 15:04:40 +0000339 HasBaseReg = true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000340 }
341 if (!Bad.empty()) {
Dan Gohman9b5d0bb72010-04-08 23:36:27 +0000342 const SCEV *Sum = SE.getAddExpr(Bad);
343 if (!Sum->isZero())
344 BaseRegs.push_back(Sum);
Chandler Carruth6e479322013-01-07 15:04:40 +0000345 HasBaseReg = true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000346 }
347}
348
349/// getNumRegs - Return the total number of register operands used by this
350/// formula. This does not include register uses implied by non-constant
351/// addrec strides.
352unsigned Formula::getNumRegs() const {
353 return !!ScaledReg + BaseRegs.size();
354}
355
356/// getType - Return the type of this formula, if it has one, or null
357/// otherwise. This type is meaningless except for the bit size.
Chris Lattner229907c2011-07-18 04:54:35 +0000358Type *Formula::getType() const {
Dan Gohman45774ce2010-02-12 10:34:29 +0000359 return !BaseRegs.empty() ? BaseRegs.front()->getType() :
360 ScaledReg ? ScaledReg->getType() :
Chandler Carruth6e479322013-01-07 15:04:40 +0000361 BaseGV ? BaseGV->getType() :
Dan Gohman45774ce2010-02-12 10:34:29 +0000362 0;
363}
364
Dan Gohman80a96082010-05-20 15:17:54 +0000365/// DeleteBaseReg - Delete the given base reg from the BaseRegs list.
366void Formula::DeleteBaseReg(const SCEV *&S) {
367 if (&S != &BaseRegs.back())
368 std::swap(S, BaseRegs.back());
369 BaseRegs.pop_back();
370}
371
Dan Gohman45774ce2010-02-12 10:34:29 +0000372/// referencesReg - Test if this formula references the given register.
373bool Formula::referencesReg(const SCEV *S) const {
374 return S == ScaledReg ||
375 std::find(BaseRegs.begin(), BaseRegs.end(), S) != BaseRegs.end();
376}
377
378/// hasRegsUsedByUsesOtherThan - Test whether this formula uses registers
379/// which are used by uses other than the use with the given index.
380bool Formula::hasRegsUsedByUsesOtherThan(size_t LUIdx,
381 const RegUseTracker &RegUses) const {
382 if (ScaledReg)
383 if (RegUses.isRegUsedByUsesOtherThan(ScaledReg, LUIdx))
384 return true;
385 for (SmallVectorImpl<const SCEV *>::const_iterator I = BaseRegs.begin(),
386 E = BaseRegs.end(); I != E; ++I)
387 if (RegUses.isRegUsedByUsesOtherThan(*I, LUIdx))
388 return true;
389 return false;
390}
391
392void Formula::print(raw_ostream &OS) const {
393 bool First = true;
Chandler Carruth6e479322013-01-07 15:04:40 +0000394 if (BaseGV) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000395 if (!First) OS << " + "; else First = false;
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000396 BaseGV->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +0000397 }
Chandler Carruth6e479322013-01-07 15:04:40 +0000398 if (BaseOffset != 0) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000399 if (!First) OS << " + "; else First = false;
Chandler Carruth6e479322013-01-07 15:04:40 +0000400 OS << BaseOffset;
Dan Gohman45774ce2010-02-12 10:34:29 +0000401 }
402 for (SmallVectorImpl<const SCEV *>::const_iterator I = BaseRegs.begin(),
403 E = BaseRegs.end(); I != E; ++I) {
404 if (!First) OS << " + "; else First = false;
405 OS << "reg(" << **I << ')';
406 }
Chandler Carruth6e479322013-01-07 15:04:40 +0000407 if (HasBaseReg && BaseRegs.empty()) {
Dan Gohman06ab08f2010-05-18 22:35:55 +0000408 if (!First) OS << " + "; else First = false;
409 OS << "**error: HasBaseReg**";
Chandler Carruth6e479322013-01-07 15:04:40 +0000410 } else if (!HasBaseReg && !BaseRegs.empty()) {
Dan Gohman06ab08f2010-05-18 22:35:55 +0000411 if (!First) OS << " + "; else First = false;
412 OS << "**error: !HasBaseReg**";
413 }
Chandler Carruth6e479322013-01-07 15:04:40 +0000414 if (Scale != 0) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000415 if (!First) OS << " + "; else First = false;
Chandler Carruth6e479322013-01-07 15:04:40 +0000416 OS << Scale << "*reg(";
Dan Gohman45774ce2010-02-12 10:34:29 +0000417 if (ScaledReg)
418 OS << *ScaledReg;
419 else
420 OS << "<unknown>";
421 OS << ')';
422 }
Dan Gohman6136e942011-05-03 00:46:49 +0000423 if (UnfoldedOffset != 0) {
424 if (!First) OS << " + "; else First = false;
425 OS << "imm(" << UnfoldedOffset << ')';
426 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000427}
428
Manman Ren49d684e2012-09-12 05:06:18 +0000429#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +0000430void Formula::dump() const {
431 print(errs()); errs() << '\n';
432}
Manman Renc3366cc2012-09-06 19:55:56 +0000433#endif
Dan Gohman45774ce2010-02-12 10:34:29 +0000434
Dan Gohman85af2562010-02-19 19:32:49 +0000435/// isAddRecSExtable - Return true if the given addrec can be sign-extended
436/// without changing its value.
437static bool isAddRecSExtable(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
Chris Lattner229907c2011-07-18 04:54:35 +0000438 Type *WideTy =
Dan Gohmanab5fb7f2010-05-20 19:44:23 +0000439 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(AR->getType()) + 1);
Dan Gohman85af2562010-02-19 19:32:49 +0000440 return isa<SCEVAddRecExpr>(SE.getSignExtendExpr(AR, WideTy));
441}
442
443/// isAddSExtable - Return true if the given add can be sign-extended
444/// without changing its value.
445static bool isAddSExtable(const SCEVAddExpr *A, ScalarEvolution &SE) {
Chris Lattner229907c2011-07-18 04:54:35 +0000446 Type *WideTy =
Dan Gohmanab5fb7f2010-05-20 19:44:23 +0000447 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(A->getType()) + 1);
Dan Gohman85af2562010-02-19 19:32:49 +0000448 return isa<SCEVAddExpr>(SE.getSignExtendExpr(A, WideTy));
449}
450
Dan Gohmanab542222010-06-24 16:45:11 +0000451/// isMulSExtable - Return true if the given mul can be sign-extended
Dan Gohman85af2562010-02-19 19:32:49 +0000452/// without changing its value.
Dan Gohmanab542222010-06-24 16:45:11 +0000453static bool isMulSExtable(const SCEVMulExpr *M, ScalarEvolution &SE) {
Chris Lattner229907c2011-07-18 04:54:35 +0000454 Type *WideTy =
Dan Gohmanab542222010-06-24 16:45:11 +0000455 IntegerType::get(SE.getContext(),
456 SE.getTypeSizeInBits(M->getType()) * M->getNumOperands());
457 return isa<SCEVMulExpr>(SE.getSignExtendExpr(M, WideTy));
Dan Gohman85af2562010-02-19 19:32:49 +0000458}
459
Dan Gohman4eebb942010-02-19 19:35:48 +0000460/// getExactSDiv - Return an expression for LHS /s RHS, if it can be determined
461/// and if the remainder is known to be zero, or null otherwise. If
462/// IgnoreSignificantBits is true, expressions like (X * Y) /s Y are simplified
463/// to Y, ignoring that the multiplication may overflow, which is useful when
464/// the result will be used in a context where the most significant bits are
465/// ignored.
466static const SCEV *getExactSDiv(const SCEV *LHS, const SCEV *RHS,
467 ScalarEvolution &SE,
468 bool IgnoreSignificantBits = false) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000469 // Handle the trivial case, which works for any SCEV type.
470 if (LHS == RHS)
Dan Gohman1d2ded72010-05-03 22:09:21 +0000471 return SE.getConstant(LHS->getType(), 1);
Dan Gohman45774ce2010-02-12 10:34:29 +0000472
Dan Gohman47ddf762010-06-24 16:51:25 +0000473 // Handle a few RHS special cases.
474 const SCEVConstant *RC = dyn_cast<SCEVConstant>(RHS);
475 if (RC) {
476 const APInt &RA = RC->getValue()->getValue();
477 // Handle x /s -1 as x * -1, to give ScalarEvolution a chance to do
478 // some folding.
479 if (RA.isAllOnesValue())
480 return SE.getMulExpr(LHS, RC);
481 // Handle x /s 1 as x.
482 if (RA == 1)
483 return LHS;
484 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000485
486 // Check for a division of a constant by a constant.
487 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(LHS)) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000488 if (!RC)
489 return 0;
Dan Gohman47ddf762010-06-24 16:51:25 +0000490 const APInt &LA = C->getValue()->getValue();
491 const APInt &RA = RC->getValue()->getValue();
492 if (LA.srem(RA) != 0)
Dan Gohman45774ce2010-02-12 10:34:29 +0000493 return 0;
Dan Gohman47ddf762010-06-24 16:51:25 +0000494 return SE.getConstant(LA.sdiv(RA));
Dan Gohman45774ce2010-02-12 10:34:29 +0000495 }
496
Dan Gohman85af2562010-02-19 19:32:49 +0000497 // Distribute the sdiv over addrec operands, if the addrec doesn't overflow.
Dan Gohman45774ce2010-02-12 10:34:29 +0000498 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS)) {
Dan Gohman85af2562010-02-19 19:32:49 +0000499 if (IgnoreSignificantBits || isAddRecSExtable(AR, SE)) {
Dan Gohman4eebb942010-02-19 19:35:48 +0000500 const SCEV *Step = getExactSDiv(AR->getStepRecurrence(SE), RHS, SE,
501 IgnoreSignificantBits);
Dan Gohman85af2562010-02-19 19:32:49 +0000502 if (!Step) return 0;
Dan Gohman129a8162010-08-19 01:02:31 +0000503 const SCEV *Start = getExactSDiv(AR->getStart(), RHS, SE,
504 IgnoreSignificantBits);
505 if (!Start) return 0;
Andrew Trick8b55b732011-03-14 16:50:06 +0000506 // FlagNW is independent of the start value, step direction, and is
507 // preserved with smaller magnitude steps.
508 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
509 return SE.getAddRecExpr(Start, Step, AR->getLoop(), SCEV::FlagAnyWrap);
Dan Gohman85af2562010-02-19 19:32:49 +0000510 }
Dan Gohman963b1c12010-06-24 16:57:52 +0000511 return 0;
Dan Gohman45774ce2010-02-12 10:34:29 +0000512 }
513
Dan Gohman85af2562010-02-19 19:32:49 +0000514 // Distribute the sdiv over add operands, if the add doesn't overflow.
Dan Gohman45774ce2010-02-12 10:34:29 +0000515 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) {
Dan Gohman85af2562010-02-19 19:32:49 +0000516 if (IgnoreSignificantBits || isAddSExtable(Add, SE)) {
517 SmallVector<const SCEV *, 8> Ops;
518 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
519 I != E; ++I) {
Dan Gohman4eebb942010-02-19 19:35:48 +0000520 const SCEV *Op = getExactSDiv(*I, RHS, SE,
521 IgnoreSignificantBits);
Dan Gohman85af2562010-02-19 19:32:49 +0000522 if (!Op) return 0;
523 Ops.push_back(Op);
524 }
525 return SE.getAddExpr(Ops);
Dan Gohman45774ce2010-02-12 10:34:29 +0000526 }
Dan Gohman963b1c12010-06-24 16:57:52 +0000527 return 0;
Dan Gohman45774ce2010-02-12 10:34:29 +0000528 }
529
530 // Check for a multiply operand that we can pull RHS out of.
Dan Gohman963b1c12010-06-24 16:57:52 +0000531 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(LHS)) {
Dan Gohman85af2562010-02-19 19:32:49 +0000532 if (IgnoreSignificantBits || isMulSExtable(Mul, SE)) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000533 SmallVector<const SCEV *, 4> Ops;
534 bool Found = false;
535 for (SCEVMulExpr::op_iterator I = Mul->op_begin(), E = Mul->op_end();
536 I != E; ++I) {
Dan Gohman6b733fc2010-05-20 16:23:28 +0000537 const SCEV *S = *I;
Dan Gohman45774ce2010-02-12 10:34:29 +0000538 if (!Found)
Dan Gohman6b733fc2010-05-20 16:23:28 +0000539 if (const SCEV *Q = getExactSDiv(S, RHS, SE,
Dan Gohman4eebb942010-02-19 19:35:48 +0000540 IgnoreSignificantBits)) {
Dan Gohman6b733fc2010-05-20 16:23:28 +0000541 S = Q;
Dan Gohman45774ce2010-02-12 10:34:29 +0000542 Found = true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000543 }
Dan Gohman6b733fc2010-05-20 16:23:28 +0000544 Ops.push_back(S);
Dan Gohman45774ce2010-02-12 10:34:29 +0000545 }
546 return Found ? SE.getMulExpr(Ops) : 0;
547 }
Dan Gohman963b1c12010-06-24 16:57:52 +0000548 return 0;
549 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000550
551 // Otherwise we don't know.
552 return 0;
553}
554
555/// ExtractImmediate - If S involves the addition of a constant integer value,
556/// return that integer value, and mutate S to point to a new SCEV with that
557/// value excluded.
558static int64_t ExtractImmediate(const SCEV *&S, ScalarEvolution &SE) {
559 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) {
560 if (C->getValue()->getValue().getMinSignedBits() <= 64) {
Dan Gohman1d2ded72010-05-03 22:09:21 +0000561 S = SE.getConstant(C->getType(), 0);
Dan Gohman45774ce2010-02-12 10:34:29 +0000562 return C->getValue()->getSExtValue();
563 }
564 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
565 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
566 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000567 if (Result != 0)
568 S = SE.getAddExpr(NewOps);
Dan Gohman45774ce2010-02-12 10:34:29 +0000569 return Result;
570 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
571 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
572 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000573 if (Result != 0)
Andrew Trick8b55b732011-03-14 16:50:06 +0000574 S = SE.getAddRecExpr(NewOps, AR->getLoop(),
575 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
576 SCEV::FlagAnyWrap);
Dan Gohman45774ce2010-02-12 10:34:29 +0000577 return Result;
578 }
579 return 0;
580}
581
582/// ExtractSymbol - If S involves the addition of a GlobalValue address,
583/// return that symbol, and mutate S to point to a new SCEV with that
584/// value excluded.
585static GlobalValue *ExtractSymbol(const SCEV *&S, ScalarEvolution &SE) {
586 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
587 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue())) {
Dan Gohman1d2ded72010-05-03 22:09:21 +0000588 S = SE.getConstant(GV->getType(), 0);
Dan Gohman45774ce2010-02-12 10:34:29 +0000589 return GV;
590 }
591 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
592 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
593 GlobalValue *Result = ExtractSymbol(NewOps.back(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000594 if (Result)
595 S = SE.getAddExpr(NewOps);
Dan Gohman45774ce2010-02-12 10:34:29 +0000596 return Result;
597 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
598 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
599 GlobalValue *Result = ExtractSymbol(NewOps.front(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000600 if (Result)
Andrew Trick8b55b732011-03-14 16:50:06 +0000601 S = SE.getAddRecExpr(NewOps, AR->getLoop(),
602 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
603 SCEV::FlagAnyWrap);
Dan Gohman45774ce2010-02-12 10:34:29 +0000604 return Result;
605 }
606 return 0;
Nate Begemanb18121e2004-10-18 21:08:22 +0000607}
608
Dan Gohmand0b1fbd2009-02-18 00:08:39 +0000609/// isAddressUse - Returns true if the specified instruction is using the
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000610/// specified value as an address.
611static bool isAddressUse(Instruction *Inst, Value *OperandVal) {
612 bool isAddress = isa<LoadInst>(Inst);
613 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
614 if (SI->getOperand(1) == OperandVal)
615 isAddress = true;
616 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
617 // Addressing modes can also be folded into prefetches and a variety
618 // of intrinsics.
619 switch (II->getIntrinsicID()) {
620 default: break;
621 case Intrinsic::prefetch:
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000622 case Intrinsic::x86_sse_storeu_ps:
623 case Intrinsic::x86_sse2_storeu_pd:
624 case Intrinsic::x86_sse2_storeu_dq:
625 case Intrinsic::x86_sse2_storel_dq:
Gabor Greif8ae30952010-06-30 09:15:28 +0000626 if (II->getArgOperand(0) == OperandVal)
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000627 isAddress = true;
628 break;
629 }
630 }
631 return isAddress;
632}
Chris Lattnere4ed42a2005-10-03 01:04:44 +0000633
Dan Gohman917ffe42009-03-09 21:01:17 +0000634/// getAccessType - Return the type of the memory being accessed.
Chris Lattner229907c2011-07-18 04:54:35 +0000635static Type *getAccessType(const Instruction *Inst) {
636 Type *AccessTy = Inst->getType();
Dan Gohman917ffe42009-03-09 21:01:17 +0000637 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst))
Dan Gohman14d13392009-05-18 16:45:28 +0000638 AccessTy = SI->getOperand(0)->getType();
Dan Gohman917ffe42009-03-09 21:01:17 +0000639 else if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
640 // Addressing modes can also be folded into prefetches and a variety
641 // of intrinsics.
642 switch (II->getIntrinsicID()) {
643 default: break;
644 case Intrinsic::x86_sse_storeu_ps:
645 case Intrinsic::x86_sse2_storeu_pd:
646 case Intrinsic::x86_sse2_storeu_dq:
647 case Intrinsic::x86_sse2_storel_dq:
Gabor Greif8ae30952010-06-30 09:15:28 +0000648 AccessTy = II->getArgOperand(0)->getType();
Dan Gohman917ffe42009-03-09 21:01:17 +0000649 break;
650 }
651 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000652
653 // All pointers have the same requirements, so canonicalize them to an
654 // arbitrary pointer type to minimize variation.
Chris Lattner229907c2011-07-18 04:54:35 +0000655 if (PointerType *PTy = dyn_cast<PointerType>(AccessTy))
Dan Gohman45774ce2010-02-12 10:34:29 +0000656 AccessTy = PointerType::get(IntegerType::get(PTy->getContext(), 1),
657 PTy->getAddressSpace());
658
Dan Gohman14d13392009-05-18 16:45:28 +0000659 return AccessTy;
Dan Gohman917ffe42009-03-09 21:01:17 +0000660}
661
Andrew Trick5df90962011-12-06 03:13:31 +0000662/// isExistingPhi - Return true if this AddRec is already a phi in its loop.
663static bool isExistingPhi(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
664 for (BasicBlock::iterator I = AR->getLoop()->getHeader()->begin();
665 PHINode *PN = dyn_cast<PHINode>(I); ++I) {
666 if (SE.isSCEVable(PN->getType()) &&
667 (SE.getEffectiveSCEVType(PN->getType()) ==
668 SE.getEffectiveSCEVType(AR->getType())) &&
669 SE.getSCEV(PN) == AR)
670 return true;
671 }
672 return false;
673}
674
Andrew Trickd5d2db92012-01-10 01:45:08 +0000675/// Check if expanding this expression is likely to incur significant cost. This
676/// is tricky because SCEV doesn't track which expressions are actually computed
677/// by the current IR.
678///
679/// We currently allow expansion of IV increments that involve adds,
680/// multiplication by constants, and AddRecs from existing phis.
681///
682/// TODO: Allow UDivExpr if we can find an existing IV increment that is an
683/// obvious multiple of the UDivExpr.
684static bool isHighCostExpansion(const SCEV *S,
685 SmallPtrSet<const SCEV*, 8> &Processed,
686 ScalarEvolution &SE) {
687 // Zero/One operand expressions
688 switch (S->getSCEVType()) {
689 case scUnknown:
690 case scConstant:
691 return false;
692 case scTruncate:
693 return isHighCostExpansion(cast<SCEVTruncateExpr>(S)->getOperand(),
694 Processed, SE);
695 case scZeroExtend:
696 return isHighCostExpansion(cast<SCEVZeroExtendExpr>(S)->getOperand(),
697 Processed, SE);
698 case scSignExtend:
699 return isHighCostExpansion(cast<SCEVSignExtendExpr>(S)->getOperand(),
700 Processed, SE);
701 }
702
703 if (!Processed.insert(S))
704 return false;
705
706 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
707 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
708 I != E; ++I) {
709 if (isHighCostExpansion(*I, Processed, SE))
710 return true;
711 }
712 return false;
713 }
714
715 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
716 if (Mul->getNumOperands() == 2) {
717 // Multiplication by a constant is ok
718 if (isa<SCEVConstant>(Mul->getOperand(0)))
719 return isHighCostExpansion(Mul->getOperand(1), Processed, SE);
720
721 // If we have the value of one operand, check if an existing
722 // multiplication already generates this expression.
723 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(Mul->getOperand(1))) {
724 Value *UVal = U->getValue();
725 for (Value::use_iterator UI = UVal->use_begin(), UE = UVal->use_end();
726 UI != UE; ++UI) {
Andrew Trick14779cc2012-03-26 20:28:37 +0000727 // If U is a constant, it may be used by a ConstantExpr.
728 Instruction *User = dyn_cast<Instruction>(*UI);
729 if (User && User->getOpcode() == Instruction::Mul
Andrew Trickd5d2db92012-01-10 01:45:08 +0000730 && SE.isSCEVable(User->getType())) {
731 return SE.getSCEV(User) == Mul;
732 }
733 }
734 }
735 }
736 }
737
738 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
739 if (isExistingPhi(AR, SE))
740 return false;
741 }
742
743 // Fow now, consider any other type of expression (div/mul/min/max) high cost.
744 return true;
745}
746
Dan Gohman45774ce2010-02-12 10:34:29 +0000747/// DeleteTriviallyDeadInstructions - If any of the instructions is the
748/// specified set are trivially dead, delete them and see if this makes any of
749/// their operands subsequently dead.
750static bool
751DeleteTriviallyDeadInstructions(SmallVectorImpl<WeakVH> &DeadInsts) {
752 bool Changed = false;
753
754 while (!DeadInsts.empty()) {
Richard Smithad9c8e82012-08-21 20:35:14 +0000755 Value *V = DeadInsts.pop_back_val();
756 Instruction *I = dyn_cast_or_null<Instruction>(V);
Dan Gohman45774ce2010-02-12 10:34:29 +0000757
758 if (I == 0 || !isInstructionTriviallyDead(I))
759 continue;
760
761 for (User::op_iterator OI = I->op_begin(), E = I->op_end(); OI != E; ++OI)
762 if (Instruction *U = dyn_cast<Instruction>(*OI)) {
763 *OI = 0;
764 if (U->use_empty())
765 DeadInsts.push_back(U);
766 }
767
768 I->eraseFromParent();
769 Changed = true;
770 }
771
772 return Changed;
773}
774
Dan Gohman045f8192010-01-22 00:46:49 +0000775namespace {
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000776class LSRUse;
777}
778// Check if it is legal to fold 2 base registers.
779static bool isLegal2RegAMUse(const TargetTransformInfo &TTI, const LSRUse &LU,
780 const Formula &F);
Quentin Colombetbf490d42013-05-31 21:29:03 +0000781// Get the cost of the scaling factor used in F for LU.
782static unsigned getScalingFactorCost(const TargetTransformInfo &TTI,
783 const LSRUse &LU, const Formula &F);
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000784
785namespace {
Jim Grosbach60f48542009-11-17 17:53:56 +0000786
Dan Gohman45774ce2010-02-12 10:34:29 +0000787/// Cost - This class is used to measure and compare candidate formulae.
788class Cost {
789 /// TODO: Some of these could be merged. Also, a lexical ordering
790 /// isn't always optimal.
791 unsigned NumRegs;
792 unsigned AddRecCost;
793 unsigned NumIVMuls;
794 unsigned NumBaseAdds;
795 unsigned ImmCost;
796 unsigned SetupCost;
Quentin Colombetbf490d42013-05-31 21:29:03 +0000797 unsigned ScaleCost;
Nate Begemane68bcd12005-07-30 00:15:07 +0000798
Dan Gohman45774ce2010-02-12 10:34:29 +0000799public:
800 Cost()
801 : NumRegs(0), AddRecCost(0), NumIVMuls(0), NumBaseAdds(0), ImmCost(0),
Quentin Colombetbf490d42013-05-31 21:29:03 +0000802 SetupCost(0), ScaleCost(0) {}
Jim Grosbach60f48542009-11-17 17:53:56 +0000803
Dan Gohman45774ce2010-02-12 10:34:29 +0000804 bool operator<(const Cost &Other) const;
Dan Gohman045f8192010-01-22 00:46:49 +0000805
Tim Northoverbc6659c2014-01-22 13:27:00 +0000806 void Lose();
Dan Gohman045f8192010-01-22 00:46:49 +0000807
Andrew Trick784729d2011-09-26 23:11:04 +0000808#ifndef NDEBUG
809 // Once any of the metrics loses, they must all remain losers.
810 bool isValid() {
811 return ((NumRegs | AddRecCost | NumIVMuls | NumBaseAdds
Quentin Colombetbf490d42013-05-31 21:29:03 +0000812 | ImmCost | SetupCost | ScaleCost) != ~0u)
Andrew Trick784729d2011-09-26 23:11:04 +0000813 || ((NumRegs & AddRecCost & NumIVMuls & NumBaseAdds
Quentin Colombetbf490d42013-05-31 21:29:03 +0000814 & ImmCost & SetupCost & ScaleCost) == ~0u);
Andrew Trick784729d2011-09-26 23:11:04 +0000815 }
816#endif
817
818 bool isLoser() {
819 assert(isValid() && "invalid cost");
820 return NumRegs == ~0u;
821 }
822
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000823 void RateFormula(const TargetTransformInfo &TTI,
824 const Formula &F,
Dan Gohman45774ce2010-02-12 10:34:29 +0000825 SmallPtrSet<const SCEV *, 16> &Regs,
826 const DenseSet<const SCEV *> &VisitedRegs,
827 const Loop *L,
828 const SmallVectorImpl<int64_t> &Offsets,
Andrew Trick5df90962011-12-06 03:13:31 +0000829 ScalarEvolution &SE, DominatorTree &DT,
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000830 const LSRUse &LU,
Andrew Trick5df90962011-12-06 03:13:31 +0000831 SmallPtrSet<const SCEV *, 16> *LoserRegs = 0);
Dan Gohman045f8192010-01-22 00:46:49 +0000832
Dan Gohman45774ce2010-02-12 10:34:29 +0000833 void print(raw_ostream &OS) const;
834 void dump() const;
Dan Gohman045f8192010-01-22 00:46:49 +0000835
Dan Gohman45774ce2010-02-12 10:34:29 +0000836private:
837 void RateRegister(const SCEV *Reg,
838 SmallPtrSet<const SCEV *, 16> &Regs,
839 const Loop *L,
840 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman5b18f032010-02-13 02:06:02 +0000841 void RatePrimaryRegister(const SCEV *Reg,
842 SmallPtrSet<const SCEV *, 16> &Regs,
843 const Loop *L,
Andrew Trick5df90962011-12-06 03:13:31 +0000844 ScalarEvolution &SE, DominatorTree &DT,
845 SmallPtrSet<const SCEV *, 16> *LoserRegs);
Dan Gohman45774ce2010-02-12 10:34:29 +0000846};
847
848}
849
850/// RateRegister - Tally up interesting quantities from the given register.
851void Cost::RateRegister(const SCEV *Reg,
852 SmallPtrSet<const SCEV *, 16> &Regs,
853 const Loop *L,
854 ScalarEvolution &SE, DominatorTree &DT) {
Dan Gohman5b18f032010-02-13 02:06:02 +0000855 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Reg)) {
Andrew Trickbc6de902011-09-29 01:33:38 +0000856 // If this is an addrec for another loop, don't second-guess its addrec phi
857 // nodes. LSR isn't currently smart enough to reason about more than one
Andrew Trickd97b83e2012-03-22 22:42:45 +0000858 // loop at a time. LSR has already run on inner loops, will not run on outer
859 // loops, and cannot be expected to change sibling loops.
860 if (AR->getLoop() != L) {
861 // If the AddRec exists, consider it's register free and leave it alone.
Andrew Trick5df90962011-12-06 03:13:31 +0000862 if (isExistingPhi(AR, SE))
863 return;
864
Andrew Trickd97b83e2012-03-22 22:42:45 +0000865 // Otherwise, do not consider this formula at all.
Tim Northoverbc6659c2014-01-22 13:27:00 +0000866 Lose();
Andrew Trickd97b83e2012-03-22 22:42:45 +0000867 return;
Dan Gohman45774ce2010-02-12 10:34:29 +0000868 }
Andrew Trickd97b83e2012-03-22 22:42:45 +0000869 AddRecCost += 1; /// TODO: This should be a function of the stride.
Dan Gohman45774ce2010-02-12 10:34:29 +0000870
Dan Gohman5b18f032010-02-13 02:06:02 +0000871 // Add the step value register, if it needs one.
872 // TODO: The non-affine case isn't precisely modeled here.
Andrew Trick8868fae2011-09-26 23:35:25 +0000873 if (!AR->isAffine() || !isa<SCEVConstant>(AR->getOperand(1))) {
874 if (!Regs.count(AR->getOperand(1))) {
Dan Gohman5b18f032010-02-13 02:06:02 +0000875 RateRegister(AR->getOperand(1), Regs, L, SE, DT);
Andrew Trick8868fae2011-09-26 23:35:25 +0000876 if (isLoser())
877 return;
878 }
879 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000880 }
Dan Gohman5b18f032010-02-13 02:06:02 +0000881 ++NumRegs;
882
883 // Rough heuristic; favor registers which don't require extra setup
884 // instructions in the preheader.
885 if (!isa<SCEVUnknown>(Reg) &&
886 !isa<SCEVConstant>(Reg) &&
887 !(isa<SCEVAddRecExpr>(Reg) &&
888 (isa<SCEVUnknown>(cast<SCEVAddRecExpr>(Reg)->getStart()) ||
889 isa<SCEVConstant>(cast<SCEVAddRecExpr>(Reg)->getStart()))))
890 ++SetupCost;
Dan Gohman34f37e02010-10-07 23:41:58 +0000891
892 NumIVMuls += isa<SCEVMulExpr>(Reg) &&
Dan Gohmanafd6db92010-11-17 21:23:15 +0000893 SE.hasComputableLoopEvolution(Reg, L);
Dan Gohman5b18f032010-02-13 02:06:02 +0000894}
895
896/// RatePrimaryRegister - Record this register in the set. If we haven't seen it
Andrew Trick5df90962011-12-06 03:13:31 +0000897/// before, rate it. Optional LoserRegs provides a way to declare any formula
898/// that refers to one of those regs an instant loser.
Dan Gohman5b18f032010-02-13 02:06:02 +0000899void Cost::RatePrimaryRegister(const SCEV *Reg,
Dan Gohman0849ed52010-02-16 19:42:34 +0000900 SmallPtrSet<const SCEV *, 16> &Regs,
901 const Loop *L,
Andrew Trick5df90962011-12-06 03:13:31 +0000902 ScalarEvolution &SE, DominatorTree &DT,
903 SmallPtrSet<const SCEV *, 16> *LoserRegs) {
904 if (LoserRegs && LoserRegs->count(Reg)) {
Tim Northoverbc6659c2014-01-22 13:27:00 +0000905 Lose();
Andrew Trick5df90962011-12-06 03:13:31 +0000906 return;
907 }
908 if (Regs.insert(Reg)) {
Dan Gohman5b18f032010-02-13 02:06:02 +0000909 RateRegister(Reg, Regs, L, SE, DT);
Andrew Tricka1c01ba2013-03-19 04:14:57 +0000910 if (LoserRegs && isLoser())
Andrew Trick5df90962011-12-06 03:13:31 +0000911 LoserRegs->insert(Reg);
912 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000913}
914
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000915void Cost::RateFormula(const TargetTransformInfo &TTI,
916 const Formula &F,
Dan Gohman45774ce2010-02-12 10:34:29 +0000917 SmallPtrSet<const SCEV *, 16> &Regs,
918 const DenseSet<const SCEV *> &VisitedRegs,
919 const Loop *L,
920 const SmallVectorImpl<int64_t> &Offsets,
Andrew Trick5df90962011-12-06 03:13:31 +0000921 ScalarEvolution &SE, DominatorTree &DT,
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000922 const LSRUse &LU,
Andrew Trick5df90962011-12-06 03:13:31 +0000923 SmallPtrSet<const SCEV *, 16> *LoserRegs) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000924 // Tally up the registers.
925 if (const SCEV *ScaledReg = F.ScaledReg) {
926 if (VisitedRegs.count(ScaledReg)) {
Tim Northoverbc6659c2014-01-22 13:27:00 +0000927 Lose();
Dan Gohman45774ce2010-02-12 10:34:29 +0000928 return;
929 }
Andrew Trick5df90962011-12-06 03:13:31 +0000930 RatePrimaryRegister(ScaledReg, Regs, L, SE, DT, LoserRegs);
Andrew Trick784729d2011-09-26 23:11:04 +0000931 if (isLoser())
932 return;
Dan Gohman45774ce2010-02-12 10:34:29 +0000933 }
934 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
935 E = F.BaseRegs.end(); I != E; ++I) {
936 const SCEV *BaseReg = *I;
937 if (VisitedRegs.count(BaseReg)) {
Tim Northoverbc6659c2014-01-22 13:27:00 +0000938 Lose();
Dan Gohman45774ce2010-02-12 10:34:29 +0000939 return;
940 }
Andrew Trick5df90962011-12-06 03:13:31 +0000941 RatePrimaryRegister(BaseReg, Regs, L, SE, DT, LoserRegs);
Andrew Trick784729d2011-09-26 23:11:04 +0000942 if (isLoser())
943 return;
Dan Gohman45774ce2010-02-12 10:34:29 +0000944 }
945
Dan Gohman6136e942011-05-03 00:46:49 +0000946 // Determine how many (unfolded) adds we'll need inside the loop.
947 size_t NumBaseParts = F.BaseRegs.size() + (F.UnfoldedOffset != 0);
948 if (NumBaseParts > 1)
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000949 // Do not count the base and a possible second register if the target
950 // allows to fold 2 registers.
951 NumBaseAdds += NumBaseParts - (1 + isLegal2RegAMUse(TTI, LU, F));
Dan Gohman45774ce2010-02-12 10:34:29 +0000952
Quentin Colombetbf490d42013-05-31 21:29:03 +0000953 // Accumulate non-free scaling amounts.
954 ScaleCost += getScalingFactorCost(TTI, LU, F);
955
Dan Gohman45774ce2010-02-12 10:34:29 +0000956 // Tally up the non-zero immediates.
957 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
958 E = Offsets.end(); I != E; ++I) {
Chandler Carruth6e479322013-01-07 15:04:40 +0000959 int64_t Offset = (uint64_t)*I + F.BaseOffset;
960 if (F.BaseGV)
Dan Gohman45774ce2010-02-12 10:34:29 +0000961 ImmCost += 64; // Handle symbolic values conservatively.
962 // TODO: This should probably be the pointer size.
963 else if (Offset != 0)
964 ImmCost += APInt(64, Offset, true).getMinSignedBits();
965 }
Andrew Trick784729d2011-09-26 23:11:04 +0000966 assert(isValid() && "invalid cost");
Dan Gohman45774ce2010-02-12 10:34:29 +0000967}
968
Tim Northoverbc6659c2014-01-22 13:27:00 +0000969/// Lose - Set this cost to a losing value.
970void Cost::Lose() {
Dan Gohman45774ce2010-02-12 10:34:29 +0000971 NumRegs = ~0u;
972 AddRecCost = ~0u;
973 NumIVMuls = ~0u;
974 NumBaseAdds = ~0u;
975 ImmCost = ~0u;
976 SetupCost = ~0u;
Quentin Colombetbf490d42013-05-31 21:29:03 +0000977 ScaleCost = ~0u;
Dan Gohman45774ce2010-02-12 10:34:29 +0000978}
979
980/// operator< - Choose the lower cost.
981bool Cost::operator<(const Cost &Other) const {
Benjamin Kramerb2f034b2014-03-03 19:58:30 +0000982 return std::tie(NumRegs, AddRecCost, NumIVMuls, NumBaseAdds, ScaleCost,
983 ImmCost, SetupCost) <
984 std::tie(Other.NumRegs, Other.AddRecCost, Other.NumIVMuls,
985 Other.NumBaseAdds, Other.ScaleCost, Other.ImmCost,
986 Other.SetupCost);
Dan Gohman45774ce2010-02-12 10:34:29 +0000987}
988
989void Cost::print(raw_ostream &OS) const {
990 OS << NumRegs << " reg" << (NumRegs == 1 ? "" : "s");
991 if (AddRecCost != 0)
992 OS << ", with addrec cost " << AddRecCost;
993 if (NumIVMuls != 0)
994 OS << ", plus " << NumIVMuls << " IV mul" << (NumIVMuls == 1 ? "" : "s");
995 if (NumBaseAdds != 0)
996 OS << ", plus " << NumBaseAdds << " base add"
997 << (NumBaseAdds == 1 ? "" : "s");
Quentin Colombetbf490d42013-05-31 21:29:03 +0000998 if (ScaleCost != 0)
999 OS << ", plus " << ScaleCost << " scale cost";
Dan Gohman45774ce2010-02-12 10:34:29 +00001000 if (ImmCost != 0)
1001 OS << ", plus " << ImmCost << " imm cost";
1002 if (SetupCost != 0)
1003 OS << ", plus " << SetupCost << " setup cost";
1004}
1005
Manman Ren49d684e2012-09-12 05:06:18 +00001006#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +00001007void Cost::dump() const {
1008 print(errs()); errs() << '\n';
1009}
Manman Renc3366cc2012-09-06 19:55:56 +00001010#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00001011
1012namespace {
1013
1014/// LSRFixup - An operand value in an instruction which is to be replaced
1015/// with some equivalent, possibly strength-reduced, replacement.
1016struct LSRFixup {
1017 /// UserInst - The instruction which will be updated.
1018 Instruction *UserInst;
1019
1020 /// OperandValToReplace - The operand of the instruction which will
1021 /// be replaced. The operand may be used more than once; every instance
1022 /// will be replaced.
1023 Value *OperandValToReplace;
1024
Dan Gohmand006ab92010-04-07 22:27:08 +00001025 /// PostIncLoops - If this user is to use the post-incremented value of an
Dan Gohman45774ce2010-02-12 10:34:29 +00001026 /// induction variable, this variable is non-null and holds the loop
1027 /// associated with the induction variable.
Dan Gohmand006ab92010-04-07 22:27:08 +00001028 PostIncLoopSet PostIncLoops;
Dan Gohman45774ce2010-02-12 10:34:29 +00001029
1030 /// LUIdx - The index of the LSRUse describing the expression which
1031 /// this fixup needs, minus an offset (below).
1032 size_t LUIdx;
1033
1034 /// Offset - A constant offset to be added to the LSRUse expression.
1035 /// This allows multiple fixups to share the same LSRUse with different
1036 /// offsets, for example in an unrolled loop.
1037 int64_t Offset;
1038
Dan Gohmand006ab92010-04-07 22:27:08 +00001039 bool isUseFullyOutsideLoop(const Loop *L) const;
1040
Dan Gohman45774ce2010-02-12 10:34:29 +00001041 LSRFixup();
1042
1043 void print(raw_ostream &OS) const;
1044 void dump() const;
1045};
1046
1047}
1048
1049LSRFixup::LSRFixup()
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00001050 : UserInst(0), OperandValToReplace(0), LUIdx(~size_t(0)), Offset(0) {}
Dan Gohman45774ce2010-02-12 10:34:29 +00001051
Dan Gohmand006ab92010-04-07 22:27:08 +00001052/// isUseFullyOutsideLoop - Test whether this fixup always uses its
1053/// value outside of the given loop.
1054bool LSRFixup::isUseFullyOutsideLoop(const Loop *L) const {
1055 // PHI nodes use their value in their incoming blocks.
1056 if (const PHINode *PN = dyn_cast<PHINode>(UserInst)) {
1057 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
1058 if (PN->getIncomingValue(i) == OperandValToReplace &&
1059 L->contains(PN->getIncomingBlock(i)))
1060 return false;
1061 return true;
1062 }
1063
1064 return !L->contains(UserInst);
1065}
1066
Dan Gohman45774ce2010-02-12 10:34:29 +00001067void LSRFixup::print(raw_ostream &OS) const {
1068 OS << "UserInst=";
1069 // Store is common and interesting enough to be worth special-casing.
1070 if (StoreInst *Store = dyn_cast<StoreInst>(UserInst)) {
1071 OS << "store ";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001072 Store->getOperand(0)->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001073 } else if (UserInst->getType()->isVoidTy())
1074 OS << UserInst->getOpcodeName();
1075 else
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001076 UserInst->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001077
1078 OS << ", OperandValToReplace=";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001079 OperandValToReplace->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001080
Dan Gohmand006ab92010-04-07 22:27:08 +00001081 for (PostIncLoopSet::const_iterator I = PostIncLoops.begin(),
1082 E = PostIncLoops.end(); I != E; ++I) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001083 OS << ", PostIncLoop=";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001084 (*I)->getHeader()->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001085 }
1086
1087 if (LUIdx != ~size_t(0))
1088 OS << ", LUIdx=" << LUIdx;
1089
1090 if (Offset != 0)
1091 OS << ", Offset=" << Offset;
1092}
1093
Manman Ren49d684e2012-09-12 05:06:18 +00001094#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +00001095void LSRFixup::dump() const {
1096 print(errs()); errs() << '\n';
1097}
Manman Renc3366cc2012-09-06 19:55:56 +00001098#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00001099
1100namespace {
1101
1102/// UniquifierDenseMapInfo - A DenseMapInfo implementation for holding
1103/// DenseMaps and DenseSets of sorted SmallVectors of const SCEV*.
1104struct UniquifierDenseMapInfo {
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001105 static SmallVector<const SCEV *, 4> getEmptyKey() {
1106 SmallVector<const SCEV *, 4> V;
Dan Gohman45774ce2010-02-12 10:34:29 +00001107 V.push_back(reinterpret_cast<const SCEV *>(-1));
1108 return V;
1109 }
1110
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001111 static SmallVector<const SCEV *, 4> getTombstoneKey() {
1112 SmallVector<const SCEV *, 4> V;
Dan Gohman45774ce2010-02-12 10:34:29 +00001113 V.push_back(reinterpret_cast<const SCEV *>(-2));
1114 return V;
1115 }
1116
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001117 static unsigned getHashValue(const SmallVector<const SCEV *, 4> &V) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001118 unsigned Result = 0;
1119 for (SmallVectorImpl<const SCEV *>::const_iterator I = V.begin(),
1120 E = V.end(); I != E; ++I)
1121 Result ^= DenseMapInfo<const SCEV *>::getHashValue(*I);
1122 return Result;
1123 }
1124
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001125 static bool isEqual(const SmallVector<const SCEV *, 4> &LHS,
1126 const SmallVector<const SCEV *, 4> &RHS) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001127 return LHS == RHS;
1128 }
1129};
1130
1131/// LSRUse - This class holds the state that LSR keeps for each use in
1132/// IVUsers, as well as uses invented by LSR itself. It includes information
1133/// about what kinds of things can be folded into the user, information about
1134/// the user itself, and information about how the use may be satisfied.
1135/// TODO: Represent multiple users of the same expression in common?
1136class LSRUse {
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001137 DenseSet<SmallVector<const SCEV *, 4>, UniquifierDenseMapInfo> Uniquifier;
Dan Gohman45774ce2010-02-12 10:34:29 +00001138
1139public:
1140 /// KindType - An enum for a kind of use, indicating what types of
1141 /// scaled and immediate operands it might support.
1142 enum KindType {
1143 Basic, ///< A normal use, with no folding.
1144 Special, ///< A special case of basic, allowing -1 scales.
Nadav Rotem4dc976f2012-10-19 21:28:43 +00001145 Address, ///< An address use; folding according to TargetLowering
Dan Gohman45774ce2010-02-12 10:34:29 +00001146 ICmpZero ///< An equality icmp with both operands folded into one.
1147 // TODO: Add a generic icmp too?
Dan Gohman045f8192010-01-22 00:46:49 +00001148 };
Dan Gohman45774ce2010-02-12 10:34:29 +00001149
1150 KindType Kind;
Chris Lattner229907c2011-07-18 04:54:35 +00001151 Type *AccessTy;
Dan Gohman45774ce2010-02-12 10:34:29 +00001152
1153 SmallVector<int64_t, 8> Offsets;
1154 int64_t MinOffset;
1155 int64_t MaxOffset;
1156
1157 /// AllFixupsOutsideLoop - This records whether all of the fixups using this
1158 /// LSRUse are outside of the loop, in which case some special-case heuristics
1159 /// may be used.
1160 bool AllFixupsOutsideLoop;
1161
Andrew Trick57243da2013-10-25 21:35:56 +00001162 /// RigidFormula is set to true to guarantee that this use will be associated
1163 /// with a single formula--the one that initially matched. Some SCEV
1164 /// expressions cannot be expanded. This allows LSR to consider the registers
1165 /// used by those expressions without the need to expand them later after
1166 /// changing the formula.
1167 bool RigidFormula;
1168
Dan Gohman14152082010-07-15 20:24:58 +00001169 /// WidestFixupType - This records the widest use type for any fixup using
1170 /// this LSRUse. FindUseWithSimilarFormula can't consider uses with different
1171 /// max fixup widths to be equivalent, because the narrower one may be relying
1172 /// on the implicit truncation to truncate away bogus bits.
Chris Lattner229907c2011-07-18 04:54:35 +00001173 Type *WidestFixupType;
Dan Gohman14152082010-07-15 20:24:58 +00001174
Dan Gohman45774ce2010-02-12 10:34:29 +00001175 /// Formulae - A list of ways to build a value that can satisfy this user.
1176 /// After the list is populated, one of these is selected heuristically and
1177 /// used to formulate a replacement for OperandValToReplace in UserInst.
1178 SmallVector<Formula, 12> Formulae;
1179
1180 /// Regs - The set of register candidates used by all formulae in this LSRUse.
1181 SmallPtrSet<const SCEV *, 4> Regs;
1182
Chris Lattner229907c2011-07-18 04:54:35 +00001183 LSRUse(KindType K, Type *T) : Kind(K), AccessTy(T),
Dan Gohman45774ce2010-02-12 10:34:29 +00001184 MinOffset(INT64_MAX),
1185 MaxOffset(INT64_MIN),
Dan Gohman14152082010-07-15 20:24:58 +00001186 AllFixupsOutsideLoop(true),
Andrew Trick57243da2013-10-25 21:35:56 +00001187 RigidFormula(false),
Dan Gohman14152082010-07-15 20:24:58 +00001188 WidestFixupType(0) {}
Dan Gohman45774ce2010-02-12 10:34:29 +00001189
Dan Gohman20fab452010-05-19 23:43:12 +00001190 bool HasFormulaWithSameRegs(const Formula &F) const;
Dan Gohman8c16b382010-02-22 04:11:59 +00001191 bool InsertFormula(const Formula &F);
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00001192 void DeleteFormula(Formula &F);
Dan Gohman4cf99b52010-05-18 23:42:37 +00001193 void RecomputeRegs(size_t LUIdx, RegUseTracker &Reguses);
Dan Gohman45774ce2010-02-12 10:34:29 +00001194
Dan Gohman45774ce2010-02-12 10:34:29 +00001195 void print(raw_ostream &OS) const;
1196 void dump() const;
1197};
1198
Dan Gohman297fb8b2010-06-19 21:21:39 +00001199}
1200
Dan Gohman20fab452010-05-19 23:43:12 +00001201/// HasFormula - Test whether this use as a formula which has the same
1202/// registers as the given formula.
1203bool LSRUse::HasFormulaWithSameRegs(const Formula &F) const {
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001204 SmallVector<const SCEV *, 4> Key = F.BaseRegs;
Dan Gohman20fab452010-05-19 23:43:12 +00001205 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1206 // Unstable sort by host order ok, because this is only used for uniquifying.
1207 std::sort(Key.begin(), Key.end());
1208 return Uniquifier.count(Key);
1209}
1210
Dan Gohman45774ce2010-02-12 10:34:29 +00001211/// InsertFormula - If the given formula has not yet been inserted, add it to
1212/// the list, and return true. Return false otherwise.
Dan Gohman8c16b382010-02-22 04:11:59 +00001213bool LSRUse::InsertFormula(const Formula &F) {
Andrew Trick57243da2013-10-25 21:35:56 +00001214 if (!Formulae.empty() && RigidFormula)
1215 return false;
1216
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001217 SmallVector<const SCEV *, 4> Key = F.BaseRegs;
Dan Gohman45774ce2010-02-12 10:34:29 +00001218 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1219 // Unstable sort by host order ok, because this is only used for uniquifying.
1220 std::sort(Key.begin(), Key.end());
1221
1222 if (!Uniquifier.insert(Key).second)
1223 return false;
1224
1225 // Using a register to hold the value of 0 is not profitable.
1226 assert((!F.ScaledReg || !F.ScaledReg->isZero()) &&
1227 "Zero allocated in a scaled register!");
1228#ifndef NDEBUG
1229 for (SmallVectorImpl<const SCEV *>::const_iterator I =
1230 F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I)
1231 assert(!(*I)->isZero() && "Zero allocated in a base register!");
1232#endif
1233
1234 // Add the formula to the list.
1235 Formulae.push_back(F);
1236
1237 // Record registers now being used by this use.
Dan Gohman45774ce2010-02-12 10:34:29 +00001238 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1239
1240 return true;
Dan Gohman045f8192010-01-22 00:46:49 +00001241}
1242
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00001243/// DeleteFormula - Remove the given formula from this use's list.
1244void LSRUse::DeleteFormula(Formula &F) {
Dan Gohman80a96082010-05-20 15:17:54 +00001245 if (&F != &Formulae.back())
1246 std::swap(F, Formulae.back());
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00001247 Formulae.pop_back();
1248}
1249
Dan Gohman4cf99b52010-05-18 23:42:37 +00001250/// RecomputeRegs - Recompute the Regs field, and update RegUses.
1251void LSRUse::RecomputeRegs(size_t LUIdx, RegUseTracker &RegUses) {
1252 // Now that we've filtered out some formulae, recompute the Regs set.
1253 SmallPtrSet<const SCEV *, 4> OldRegs = Regs;
1254 Regs.clear();
Dan Gohman927bcaa2010-05-20 20:33:18 +00001255 for (SmallVectorImpl<Formula>::const_iterator I = Formulae.begin(),
1256 E = Formulae.end(); I != E; ++I) {
1257 const Formula &F = *I;
Dan Gohman4cf99b52010-05-18 23:42:37 +00001258 if (F.ScaledReg) Regs.insert(F.ScaledReg);
1259 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1260 }
1261
1262 // Update the RegTracker.
1263 for (SmallPtrSet<const SCEV *, 4>::iterator I = OldRegs.begin(),
1264 E = OldRegs.end(); I != E; ++I)
1265 if (!Regs.count(*I))
1266 RegUses.DropRegister(*I, LUIdx);
1267}
1268
Dan Gohman45774ce2010-02-12 10:34:29 +00001269void LSRUse::print(raw_ostream &OS) const {
1270 OS << "LSR Use: Kind=";
1271 switch (Kind) {
1272 case Basic: OS << "Basic"; break;
1273 case Special: OS << "Special"; break;
1274 case ICmpZero: OS << "ICmpZero"; break;
1275 case Address:
1276 OS << "Address of ";
Duncan Sands19d0b472010-02-16 11:11:14 +00001277 if (AccessTy->isPointerTy())
Dan Gohman45774ce2010-02-12 10:34:29 +00001278 OS << "pointer"; // the full pointer type could be really verbose
1279 else
1280 OS << *AccessTy;
Evan Cheng133694d2007-10-25 09:11:16 +00001281 }
1282
Dan Gohman45774ce2010-02-12 10:34:29 +00001283 OS << ", Offsets={";
1284 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
1285 E = Offsets.end(); I != E; ++I) {
1286 OS << *I;
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001287 if (std::next(I) != E)
Dan Gohman45774ce2010-02-12 10:34:29 +00001288 OS << ',';
Dan Gohman045f8192010-01-22 00:46:49 +00001289 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001290 OS << '}';
Dan Gohman045f8192010-01-22 00:46:49 +00001291
Dan Gohman45774ce2010-02-12 10:34:29 +00001292 if (AllFixupsOutsideLoop)
1293 OS << ", all-fixups-outside-loop";
Dan Gohman14152082010-07-15 20:24:58 +00001294
1295 if (WidestFixupType)
1296 OS << ", widest fixup type: " << *WidestFixupType;
Dan Gohman045f8192010-01-22 00:46:49 +00001297}
1298
Manman Ren49d684e2012-09-12 05:06:18 +00001299#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +00001300void LSRUse::dump() const {
1301 print(errs()); errs() << '\n';
1302}
Manman Renc3366cc2012-09-06 19:55:56 +00001303#endif
Dan Gohman045f8192010-01-22 00:46:49 +00001304
Dan Gohman45774ce2010-02-12 10:34:29 +00001305/// isLegalUse - Test whether the use described by AM is "legal", meaning it can
1306/// be completely folded into the user instruction at isel time. This includes
1307/// address-mode folding and special icmp tricks.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001308static bool isLegalUse(const TargetTransformInfo &TTI, LSRUse::KindType Kind,
1309 Type *AccessTy, GlobalValue *BaseGV, int64_t BaseOffset,
1310 bool HasBaseReg, int64_t Scale) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001311 switch (Kind) {
1312 case LSRUse::Address:
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001313 return TTI.isLegalAddressingMode(AccessTy, BaseGV, BaseOffset, HasBaseReg, Scale);
Dan Gohman45774ce2010-02-12 10:34:29 +00001314
1315 // Otherwise, just guess that reg+reg addressing is legal.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001316 //return ;
Dan Gohman45774ce2010-02-12 10:34:29 +00001317
1318 case LSRUse::ICmpZero:
1319 // There's not even a target hook for querying whether it would be legal to
1320 // fold a GV into an ICmp.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001321 if (BaseGV)
Dan Gohman45774ce2010-02-12 10:34:29 +00001322 return false;
1323
1324 // ICmp only has two operands; don't allow more than two non-trivial parts.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001325 if (Scale != 0 && HasBaseReg && BaseOffset != 0)
Dan Gohman45774ce2010-02-12 10:34:29 +00001326 return false;
1327
1328 // ICmp only supports no scale or a -1 scale, as we can "fold" a -1 scale by
1329 // putting the scaled register in the other operand of the icmp.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001330 if (Scale != 0 && Scale != -1)
Dan Gohman45774ce2010-02-12 10:34:29 +00001331 return false;
1332
1333 // If we have low-level target information, ask the target if it can fold an
1334 // integer immediate on an icmp.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001335 if (BaseOffset != 0) {
Jakob Stoklund Olesenf2390e82012-04-05 03:10:56 +00001336 // We have one of:
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001337 // ICmpZero BaseReg + BaseOffset => ICmp BaseReg, -BaseOffset
1338 // ICmpZero -1*ScaleReg + BaseOffset => ICmp ScaleReg, BaseOffset
Jakob Stoklund Olesenf2390e82012-04-05 03:10:56 +00001339 // Offs is the ICmp immediate.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001340 if (Scale == 0)
1341 // The cast does the right thing with INT64_MIN.
1342 BaseOffset = -(uint64_t)BaseOffset;
1343 return TTI.isLegalICmpImmediate(BaseOffset);
Dan Gohman045f8192010-01-22 00:46:49 +00001344 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001345
Jakob Stoklund Olesenf2390e82012-04-05 03:10:56 +00001346 // ICmpZero BaseReg + -1*ScaleReg => ICmp BaseReg, ScaleReg
Dan Gohman45774ce2010-02-12 10:34:29 +00001347 return true;
1348
1349 case LSRUse::Basic:
1350 // Only handle single-register values.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001351 return !BaseGV && Scale == 0 && BaseOffset == 0;
Dan Gohman45774ce2010-02-12 10:34:29 +00001352
1353 case LSRUse::Special:
Andrew Trickaca8fb32012-06-15 20:07:26 +00001354 // Special case Basic to handle -1 scales.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001355 return !BaseGV && (Scale == 0 || Scale == -1) && BaseOffset == 0;
Dan Gohman045f8192010-01-22 00:46:49 +00001356 }
1357
David Blaikie46a9f012012-01-20 21:51:11 +00001358 llvm_unreachable("Invalid LSRUse Kind!");
Dan Gohman045f8192010-01-22 00:46:49 +00001359}
1360
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001361static bool isLegalUse(const TargetTransformInfo &TTI, int64_t MinOffset,
1362 int64_t MaxOffset, LSRUse::KindType Kind, Type *AccessTy,
1363 GlobalValue *BaseGV, int64_t BaseOffset, bool HasBaseReg,
1364 int64_t Scale) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001365 // Check for overflow.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001366 if (((int64_t)((uint64_t)BaseOffset + MinOffset) > BaseOffset) !=
Dan Gohman45774ce2010-02-12 10:34:29 +00001367 (MinOffset > 0))
1368 return false;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001369 MinOffset = (uint64_t)BaseOffset + MinOffset;
1370 if (((int64_t)((uint64_t)BaseOffset + MaxOffset) > BaseOffset) !=
1371 (MaxOffset > 0))
1372 return false;
1373 MaxOffset = (uint64_t)BaseOffset + MaxOffset;
1374
1375 return isLegalUse(TTI, Kind, AccessTy, BaseGV, MinOffset, HasBaseReg,
1376 Scale) &&
1377 isLegalUse(TTI, Kind, AccessTy, BaseGV, MaxOffset, HasBaseReg, Scale);
Dan Gohman045f8192010-01-22 00:46:49 +00001378}
1379
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001380static bool isLegalUse(const TargetTransformInfo &TTI, int64_t MinOffset,
1381 int64_t MaxOffset, LSRUse::KindType Kind, Type *AccessTy,
1382 const Formula &F) {
Chandler Carruth6e479322013-01-07 15:04:40 +00001383 return isLegalUse(TTI, MinOffset, MaxOffset, Kind, AccessTy, F.BaseGV,
1384 F.BaseOffset, F.HasBaseReg, F.Scale);
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001385}
1386
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001387static bool isLegal2RegAMUse(const TargetTransformInfo &TTI, const LSRUse &LU,
1388 const Formula &F) {
1389 // If F is used as an Addressing Mode, it may fold one Base plus one
1390 // scaled register. If the scaled register is nil, do as if another
1391 // element of the base regs is a 1-scaled register.
1392 // This is possible if BaseRegs has at least 2 registers.
1393
1394 // If this is not an address calculation, this is not an addressing mode
1395 // use.
1396 if (LU.Kind != LSRUse::Address)
1397 return false;
1398
1399 // F is already scaled.
1400 if (F.Scale != 0)
1401 return false;
1402
1403 // We need to keep one register for the base and one to scale.
1404 if (F.BaseRegs.size() < 2)
1405 return false;
1406
1407 return isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
1408 F.BaseGV, F.BaseOffset, F.HasBaseReg, 1);
1409 }
1410
Quentin Colombetbf490d42013-05-31 21:29:03 +00001411static unsigned getScalingFactorCost(const TargetTransformInfo &TTI,
1412 const LSRUse &LU, const Formula &F) {
1413 if (!F.Scale)
1414 return 0;
1415 assert(isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind,
1416 LU.AccessTy, F) && "Illegal formula in use.");
1417
1418 switch (LU.Kind) {
1419 case LSRUse::Address: {
Quentin Colombet145eb972013-06-19 19:59:41 +00001420 // Check the scaling factor cost with both the min and max offsets.
1421 int ScaleCostMinOffset =
1422 TTI.getScalingFactorCost(LU.AccessTy, F.BaseGV,
1423 F.BaseOffset + LU.MinOffset,
1424 F.HasBaseReg, F.Scale);
1425 int ScaleCostMaxOffset =
1426 TTI.getScalingFactorCost(LU.AccessTy, F.BaseGV,
1427 F.BaseOffset + LU.MaxOffset,
1428 F.HasBaseReg, F.Scale);
1429
1430 assert(ScaleCostMinOffset >= 0 && ScaleCostMaxOffset >= 0 &&
1431 "Legal addressing mode has an illegal cost!");
1432 return std::max(ScaleCostMinOffset, ScaleCostMaxOffset);
Quentin Colombetbf490d42013-05-31 21:29:03 +00001433 }
1434 case LSRUse::ICmpZero:
1435 // ICmpZero BaseReg + -1*ScaleReg => ICmp BaseReg, ScaleReg.
Andrew Trick57243da2013-10-25 21:35:56 +00001436 // Therefore, return 0 in case F.Scale == -1.
Quentin Colombetbf490d42013-05-31 21:29:03 +00001437 return F.Scale != -1;
1438
1439 case LSRUse::Basic:
1440 case LSRUse::Special:
1441 return 0;
1442 }
1443
1444 llvm_unreachable("Invalid LSRUse Kind!");
1445}
1446
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001447static bool isAlwaysFoldable(const TargetTransformInfo &TTI,
Chris Lattner229907c2011-07-18 04:54:35 +00001448 LSRUse::KindType Kind, Type *AccessTy,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001449 GlobalValue *BaseGV, int64_t BaseOffset,
1450 bool HasBaseReg) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001451 // Fast-path: zero is always foldable.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001452 if (BaseOffset == 0 && !BaseGV) return true;
Dan Gohman045f8192010-01-22 00:46:49 +00001453
Dan Gohman45774ce2010-02-12 10:34:29 +00001454 // Conservatively, create an address with an immediate and a
1455 // base and a scale.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001456 int64_t Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman045f8192010-01-22 00:46:49 +00001457
Dan Gohman20fab452010-05-19 23:43:12 +00001458 // Canonicalize a scale of 1 to a base register if the formula doesn't
1459 // already have a base register.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001460 if (!HasBaseReg && Scale == 1) {
1461 Scale = 0;
1462 HasBaseReg = true;
Dan Gohman20fab452010-05-19 23:43:12 +00001463 }
1464
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001465 return isLegalUse(TTI, Kind, AccessTy, BaseGV, BaseOffset, HasBaseReg, Scale);
Dan Gohman045f8192010-01-22 00:46:49 +00001466}
1467
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001468static bool isAlwaysFoldable(const TargetTransformInfo &TTI,
1469 ScalarEvolution &SE, int64_t MinOffset,
1470 int64_t MaxOffset, LSRUse::KindType Kind,
1471 Type *AccessTy, const SCEV *S, bool HasBaseReg) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001472 // Fast-path: zero is always foldable.
1473 if (S->isZero()) return true;
1474
1475 // Conservatively, create an address with an immediate and a
1476 // base and a scale.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001477 int64_t BaseOffset = ExtractImmediate(S, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +00001478 GlobalValue *BaseGV = ExtractSymbol(S, SE);
1479
1480 // If there's anything else involved, it's not foldable.
1481 if (!S->isZero()) return false;
1482
1483 // Fast-path: zero is always foldable.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001484 if (BaseOffset == 0 && !BaseGV) return true;
Dan Gohman45774ce2010-02-12 10:34:29 +00001485
1486 // Conservatively, create an address with an immediate and a
1487 // base and a scale.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001488 int64_t Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman45774ce2010-02-12 10:34:29 +00001489
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001490 return isLegalUse(TTI, MinOffset, MaxOffset, Kind, AccessTy, BaseGV,
1491 BaseOffset, HasBaseReg, Scale);
Dan Gohman045f8192010-01-22 00:46:49 +00001492}
1493
Dan Gohman297fb8b2010-06-19 21:21:39 +00001494namespace {
1495
Dan Gohman51d00092010-06-19 21:29:59 +00001496/// UseMapDenseMapInfo - A DenseMapInfo implementation for holding
1497/// DenseMaps and DenseSets of pairs of const SCEV* and LSRUse::Kind.
1498struct UseMapDenseMapInfo {
1499 static std::pair<const SCEV *, LSRUse::KindType> getEmptyKey() {
1500 return std::make_pair(reinterpret_cast<const SCEV *>(-1), LSRUse::Basic);
1501 }
1502
1503 static std::pair<const SCEV *, LSRUse::KindType> getTombstoneKey() {
1504 return std::make_pair(reinterpret_cast<const SCEV *>(-2), LSRUse::Basic);
1505 }
1506
1507 static unsigned
1508 getHashValue(const std::pair<const SCEV *, LSRUse::KindType> &V) {
1509 unsigned Result = DenseMapInfo<const SCEV *>::getHashValue(V.first);
1510 Result ^= DenseMapInfo<unsigned>::getHashValue(unsigned(V.second));
1511 return Result;
1512 }
1513
1514 static bool isEqual(const std::pair<const SCEV *, LSRUse::KindType> &LHS,
1515 const std::pair<const SCEV *, LSRUse::KindType> &RHS) {
1516 return LHS == RHS;
1517 }
1518};
1519
Andrew Trick29fe5f02012-01-09 19:50:34 +00001520/// IVInc - An individual increment in a Chain of IV increments.
1521/// Relate an IV user to an expression that computes the IV it uses from the IV
1522/// used by the previous link in the Chain.
1523///
1524/// For the head of a chain, IncExpr holds the absolute SCEV expression for the
1525/// original IVOperand. The head of the chain's IVOperand is only valid during
1526/// chain collection, before LSR replaces IV users. During chain generation,
1527/// IncExpr can be used to find the new IVOperand that computes the same
1528/// expression.
1529struct IVInc {
1530 Instruction *UserInst;
1531 Value* IVOperand;
1532 const SCEV *IncExpr;
1533
1534 IVInc(Instruction *U, Value *O, const SCEV *E):
1535 UserInst(U), IVOperand(O), IncExpr(E) {}
1536};
1537
1538// IVChain - The list of IV increments in program order.
1539// We typically add the head of a chain without finding subsequent links.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001540struct IVChain {
1541 SmallVector<IVInc,1> Incs;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001542 const SCEV *ExprBase;
1543
1544 IVChain() : ExprBase(0) {}
1545
1546 IVChain(const IVInc &Head, const SCEV *Base)
1547 : Incs(1, Head), ExprBase(Base) {}
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001548
1549 typedef SmallVectorImpl<IVInc>::const_iterator const_iterator;
1550
1551 // begin - return the first increment in the chain.
1552 const_iterator begin() const {
1553 assert(!Incs.empty());
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001554 return std::next(Incs.begin());
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001555 }
1556 const_iterator end() const {
1557 return Incs.end();
1558 }
1559
1560 // hasIncs - Returns true if this chain contains any increments.
1561 bool hasIncs() const { return Incs.size() >= 2; }
1562
1563 // add - Add an IVInc to the end of this chain.
1564 void add(const IVInc &X) { Incs.push_back(X); }
1565
1566 // tailUserInst - Returns the last UserInst in the chain.
1567 Instruction *tailUserInst() const { return Incs.back().UserInst; }
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001568
1569 // isProfitableIncrement - Returns true if IncExpr can be profitably added to
1570 // this chain.
1571 bool isProfitableIncrement(const SCEV *OperExpr,
1572 const SCEV *IncExpr,
1573 ScalarEvolution&);
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001574};
Andrew Trick29fe5f02012-01-09 19:50:34 +00001575
1576/// ChainUsers - Helper for CollectChains to track multiple IV increment uses.
1577/// Distinguish between FarUsers that definitely cross IV increments and
1578/// NearUsers that may be used between IV increments.
1579struct ChainUsers {
1580 SmallPtrSet<Instruction*, 4> FarUsers;
1581 SmallPtrSet<Instruction*, 4> NearUsers;
1582};
1583
Dan Gohman45774ce2010-02-12 10:34:29 +00001584/// LSRInstance - This class holds state for the main loop strength reduction
1585/// logic.
1586class LSRInstance {
1587 IVUsers &IU;
1588 ScalarEvolution &SE;
1589 DominatorTree &DT;
Dan Gohman607e02b2010-04-09 22:07:05 +00001590 LoopInfo &LI;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001591 const TargetTransformInfo &TTI;
Dan Gohman45774ce2010-02-12 10:34:29 +00001592 Loop *const L;
1593 bool Changed;
1594
1595 /// IVIncInsertPos - This is the insert position that the current loop's
1596 /// induction variable increment should be placed. In simple loops, this is
1597 /// the latch block's terminator. But in more complicated cases, this is a
1598 /// position which will dominate all the in-loop post-increment users.
1599 Instruction *IVIncInsertPos;
1600
1601 /// Factors - Interesting factors between use strides.
1602 SmallSetVector<int64_t, 8> Factors;
1603
1604 /// Types - Interesting use types, to facilitate truncation reuse.
Chris Lattner229907c2011-07-18 04:54:35 +00001605 SmallSetVector<Type *, 4> Types;
Dan Gohman45774ce2010-02-12 10:34:29 +00001606
1607 /// Fixups - The list of operands which are to be replaced.
1608 SmallVector<LSRFixup, 16> Fixups;
1609
1610 /// Uses - The list of interesting uses.
1611 SmallVector<LSRUse, 16> Uses;
1612
1613 /// RegUses - Track which uses use which register candidates.
1614 RegUseTracker RegUses;
1615
Andrew Trick29fe5f02012-01-09 19:50:34 +00001616 // Limit the number of chains to avoid quadratic behavior. We don't expect to
1617 // have more than a few IV increment chains in a loop. Missing a Chain falls
1618 // back to normal LSR behavior for those uses.
1619 static const unsigned MaxChains = 8;
1620
1621 /// IVChainVec - IV users can form a chain of IV increments.
1622 SmallVector<IVChain, MaxChains> IVChainVec;
1623
Andrew Trick248d4102012-01-09 21:18:52 +00001624 /// IVIncSet - IV users that belong to profitable IVChains.
1625 SmallPtrSet<Use*, MaxChains> IVIncSet;
1626
Dan Gohman45774ce2010-02-12 10:34:29 +00001627 void OptimizeShadowIV();
1628 bool FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse);
1629 ICmpInst *OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse);
Dan Gohman4c4043c2010-05-20 20:05:31 +00001630 void OptimizeLoopTermCond();
Dan Gohman45774ce2010-02-12 10:34:29 +00001631
Andrew Trick29fe5f02012-01-09 19:50:34 +00001632 void ChainInstruction(Instruction *UserInst, Instruction *IVOper,
1633 SmallVectorImpl<ChainUsers> &ChainUsersVec);
Andrew Trick248d4102012-01-09 21:18:52 +00001634 void FinalizeChain(IVChain &Chain);
Andrew Trick29fe5f02012-01-09 19:50:34 +00001635 void CollectChains();
Andrew Trick248d4102012-01-09 21:18:52 +00001636 void GenerateIVChain(const IVChain &Chain, SCEVExpander &Rewriter,
1637 SmallVectorImpl<WeakVH> &DeadInsts);
Andrew Trick29fe5f02012-01-09 19:50:34 +00001638
Dan Gohman45774ce2010-02-12 10:34:29 +00001639 void CollectInterestingTypesAndFactors();
1640 void CollectFixupsAndInitialFormulae();
1641
1642 LSRFixup &getNewFixup() {
1643 Fixups.push_back(LSRFixup());
1644 return Fixups.back();
1645 }
1646
1647 // Support for sharing of LSRUses between LSRFixups.
Dan Gohman51d00092010-06-19 21:29:59 +00001648 typedef DenseMap<std::pair<const SCEV *, LSRUse::KindType>,
1649 size_t,
1650 UseMapDenseMapInfo> UseMapTy;
Dan Gohman45774ce2010-02-12 10:34:29 +00001651 UseMapTy UseMap;
1652
Dan Gohman110ed642010-09-01 01:45:53 +00001653 bool reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Chris Lattner229907c2011-07-18 04:54:35 +00001654 LSRUse::KindType Kind, Type *AccessTy);
Dan Gohman45774ce2010-02-12 10:34:29 +00001655
1656 std::pair<size_t, int64_t> getUse(const SCEV *&Expr,
1657 LSRUse::KindType Kind,
Chris Lattner229907c2011-07-18 04:54:35 +00001658 Type *AccessTy);
Dan Gohman45774ce2010-02-12 10:34:29 +00001659
Dan Gohmana7b68d62010-10-07 23:33:43 +00001660 void DeleteUse(LSRUse &LU, size_t LUIdx);
Dan Gohman80a96082010-05-20 15:17:54 +00001661
Dan Gohman110ed642010-09-01 01:45:53 +00001662 LSRUse *FindUseWithSimilarFormula(const Formula &F, const LSRUse &OrigLU);
Dan Gohman20fab452010-05-19 23:43:12 +00001663
Dan Gohman8c16b382010-02-22 04:11:59 +00001664 void InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00001665 void InsertSupplementalFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
1666 void CountRegisters(const Formula &F, size_t LUIdx);
1667 bool InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F);
1668
1669 void CollectLoopInvariantFixupsAndFormulae();
1670
1671 void GenerateReassociations(LSRUse &LU, unsigned LUIdx, Formula Base,
1672 unsigned Depth = 0);
1673 void GenerateCombinations(LSRUse &LU, unsigned LUIdx, Formula Base);
1674 void GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1675 void GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1676 void GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1677 void GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1678 void GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base);
1679 void GenerateCrossUseConstantOffsets();
1680 void GenerateAllReuseFormulae();
1681
1682 void FilterOutUndesirableDedicatedRegisters();
Dan Gohmana4eca052010-05-18 22:51:59 +00001683
1684 size_t EstimateSearchSpaceComplexity() const;
Dan Gohmane9e08732010-08-29 16:09:42 +00001685 void NarrowSearchSpaceByDetectingSupersets();
1686 void NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman002ff892010-08-29 16:39:22 +00001687 void NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Dan Gohmane9e08732010-08-29 16:09:42 +00001688 void NarrowSearchSpaceByPickingWinnerRegs();
Dan Gohman45774ce2010-02-12 10:34:29 +00001689 void NarrowSearchSpaceUsingHeuristics();
1690
1691 void SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
1692 Cost &SolutionCost,
1693 SmallVectorImpl<const Formula *> &Workspace,
1694 const Cost &CurCost,
1695 const SmallPtrSet<const SCEV *, 16> &CurRegs,
1696 DenseSet<const SCEV *> &VisitedRegs) const;
1697 void Solve(SmallVectorImpl<const Formula *> &Solution) const;
1698
Dan Gohman607e02b2010-04-09 22:07:05 +00001699 BasicBlock::iterator
1700 HoistInsertPosition(BasicBlock::iterator IP,
1701 const SmallVectorImpl<Instruction *> &Inputs) const;
Andrew Trickc908b432012-01-20 07:41:13 +00001702 BasicBlock::iterator
1703 AdjustInsertPositionForExpand(BasicBlock::iterator IP,
1704 const LSRFixup &LF,
1705 const LSRUse &LU,
1706 SCEVExpander &Rewriter) const;
Dan Gohmand2df6432010-04-09 02:00:38 +00001707
Dan Gohman45774ce2010-02-12 10:34:29 +00001708 Value *Expand(const LSRFixup &LF,
1709 const Formula &F,
Dan Gohman8c16b382010-02-22 04:11:59 +00001710 BasicBlock::iterator IP,
Dan Gohman45774ce2010-02-12 10:34:29 +00001711 SCEVExpander &Rewriter,
Dan Gohman8c16b382010-02-22 04:11:59 +00001712 SmallVectorImpl<WeakVH> &DeadInsts) const;
Dan Gohman6deab962010-02-16 20:25:07 +00001713 void RewriteForPHI(PHINode *PN, const LSRFixup &LF,
1714 const Formula &F,
Dan Gohman6deab962010-02-16 20:25:07 +00001715 SCEVExpander &Rewriter,
1716 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman6deab962010-02-16 20:25:07 +00001717 Pass *P) const;
Dan Gohman45774ce2010-02-12 10:34:29 +00001718 void Rewrite(const LSRFixup &LF,
1719 const Formula &F,
Dan Gohman45774ce2010-02-12 10:34:29 +00001720 SCEVExpander &Rewriter,
1721 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman45774ce2010-02-12 10:34:29 +00001722 Pass *P) const;
1723 void ImplementSolution(const SmallVectorImpl<const Formula *> &Solution,
1724 Pass *P);
1725
Andrew Trickdc18e382011-12-13 00:55:33 +00001726public:
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001727 LSRInstance(Loop *L, Pass *P);
Dan Gohman45774ce2010-02-12 10:34:29 +00001728
1729 bool getChanged() const { return Changed; }
1730
1731 void print_factors_and_types(raw_ostream &OS) const;
1732 void print_fixups(raw_ostream &OS) const;
1733 void print_uses(raw_ostream &OS) const;
1734 void print(raw_ostream &OS) const;
1735 void dump() const;
1736};
1737
1738}
1739
1740/// OptimizeShadowIV - If IV is used in a int-to-float cast
Dan Gohman8b0a4192010-03-01 17:49:51 +00001741/// inside the loop then try to eliminate the cast operation.
Dan Gohman45774ce2010-02-12 10:34:29 +00001742void LSRInstance::OptimizeShadowIV() {
1743 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
1744 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1745 return;
1746
1747 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end();
1748 UI != E; /* empty */) {
1749 IVUsers::const_iterator CandidateUI = UI;
1750 ++UI;
1751 Instruction *ShadowUse = CandidateUI->getUser();
Jakub Staszak4898e622013-06-15 12:20:44 +00001752 Type *DestTy = 0;
Andrew Trick858e9f02011-07-21 01:05:01 +00001753 bool IsSigned = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00001754
1755 /* If shadow use is a int->float cast then insert a second IV
1756 to eliminate this cast.
1757
1758 for (unsigned i = 0; i < n; ++i)
1759 foo((double)i);
1760
1761 is transformed into
1762
1763 double d = 0.0;
1764 for (unsigned i = 0; i < n; ++i, ++d)
1765 foo(d);
1766 */
Andrew Trick858e9f02011-07-21 01:05:01 +00001767 if (UIToFPInst *UCast = dyn_cast<UIToFPInst>(CandidateUI->getUser())) {
1768 IsSigned = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00001769 DestTy = UCast->getDestTy();
Andrew Trick858e9f02011-07-21 01:05:01 +00001770 }
1771 else if (SIToFPInst *SCast = dyn_cast<SIToFPInst>(CandidateUI->getUser())) {
1772 IsSigned = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00001773 DestTy = SCast->getDestTy();
Andrew Trick858e9f02011-07-21 01:05:01 +00001774 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001775 if (!DestTy) continue;
1776
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001777 // If target does not support DestTy natively then do not apply
1778 // this transformation.
1779 if (!TTI.isTypeLegal(DestTy)) continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00001780
1781 PHINode *PH = dyn_cast<PHINode>(ShadowUse->getOperand(0));
1782 if (!PH) continue;
1783 if (PH->getNumIncomingValues() != 2) continue;
1784
Chris Lattner229907c2011-07-18 04:54:35 +00001785 Type *SrcTy = PH->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00001786 int Mantissa = DestTy->getFPMantissaWidth();
1787 if (Mantissa == -1) continue;
1788 if ((int)SE.getTypeSizeInBits(SrcTy) > Mantissa)
1789 continue;
1790
1791 unsigned Entry, Latch;
1792 if (PH->getIncomingBlock(0) == L->getLoopPreheader()) {
1793 Entry = 0;
1794 Latch = 1;
Dan Gohman045f8192010-01-22 00:46:49 +00001795 } else {
Dan Gohman45774ce2010-02-12 10:34:29 +00001796 Entry = 1;
1797 Latch = 0;
Dan Gohman045f8192010-01-22 00:46:49 +00001798 }
Dan Gohman045f8192010-01-22 00:46:49 +00001799
Dan Gohman45774ce2010-02-12 10:34:29 +00001800 ConstantInt *Init = dyn_cast<ConstantInt>(PH->getIncomingValue(Entry));
1801 if (!Init) continue;
Andrew Trick858e9f02011-07-21 01:05:01 +00001802 Constant *NewInit = ConstantFP::get(DestTy, IsSigned ?
Andrew Trickbd243d02011-07-21 01:45:54 +00001803 (double)Init->getSExtValue() :
1804 (double)Init->getZExtValue());
Dan Gohman045f8192010-01-22 00:46:49 +00001805
Dan Gohman45774ce2010-02-12 10:34:29 +00001806 BinaryOperator *Incr =
1807 dyn_cast<BinaryOperator>(PH->getIncomingValue(Latch));
1808 if (!Incr) continue;
1809 if (Incr->getOpcode() != Instruction::Add
1810 && Incr->getOpcode() != Instruction::Sub)
Dan Gohman045f8192010-01-22 00:46:49 +00001811 continue;
Dan Gohman045f8192010-01-22 00:46:49 +00001812
Dan Gohman45774ce2010-02-12 10:34:29 +00001813 /* Initialize new IV, double d = 0.0 in above example. */
Jakub Staszak4898e622013-06-15 12:20:44 +00001814 ConstantInt *C = 0;
Dan Gohman45774ce2010-02-12 10:34:29 +00001815 if (Incr->getOperand(0) == PH)
1816 C = dyn_cast<ConstantInt>(Incr->getOperand(1));
1817 else if (Incr->getOperand(1) == PH)
1818 C = dyn_cast<ConstantInt>(Incr->getOperand(0));
Dan Gohman045f8192010-01-22 00:46:49 +00001819 else
Dan Gohman045f8192010-01-22 00:46:49 +00001820 continue;
1821
Dan Gohman45774ce2010-02-12 10:34:29 +00001822 if (!C) continue;
Dan Gohman045f8192010-01-22 00:46:49 +00001823
Dan Gohman45774ce2010-02-12 10:34:29 +00001824 // Ignore negative constants, as the code below doesn't handle them
1825 // correctly. TODO: Remove this restriction.
1826 if (!C->getValue().isStrictlyPositive()) continue;
Dan Gohman045f8192010-01-22 00:46:49 +00001827
Dan Gohman45774ce2010-02-12 10:34:29 +00001828 /* Add new PHINode. */
Jay Foad52131342011-03-30 11:28:46 +00001829 PHINode *NewPH = PHINode::Create(DestTy, 2, "IV.S.", PH);
Dan Gohman045f8192010-01-22 00:46:49 +00001830
Dan Gohman45774ce2010-02-12 10:34:29 +00001831 /* create new increment. '++d' in above example. */
1832 Constant *CFP = ConstantFP::get(DestTy, C->getZExtValue());
1833 BinaryOperator *NewIncr =
1834 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
1835 Instruction::FAdd : Instruction::FSub,
1836 NewPH, CFP, "IV.S.next.", Incr);
Dan Gohman045f8192010-01-22 00:46:49 +00001837
Dan Gohman45774ce2010-02-12 10:34:29 +00001838 NewPH->addIncoming(NewInit, PH->getIncomingBlock(Entry));
1839 NewPH->addIncoming(NewIncr, PH->getIncomingBlock(Latch));
Dan Gohman045f8192010-01-22 00:46:49 +00001840
Dan Gohman45774ce2010-02-12 10:34:29 +00001841 /* Remove cast operation */
1842 ShadowUse->replaceAllUsesWith(NewPH);
1843 ShadowUse->eraseFromParent();
Dan Gohman4c4043c2010-05-20 20:05:31 +00001844 Changed = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00001845 break;
Dan Gohman045f8192010-01-22 00:46:49 +00001846 }
1847}
1848
1849/// FindIVUserForCond - If Cond has an operand that is an expression of an IV,
1850/// set the IV user and stride information and return true, otherwise return
1851/// false.
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00001852bool LSRInstance::FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001853 for (IVUsers::iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
1854 if (UI->getUser() == Cond) {
1855 // NOTE: we could handle setcc instructions with multiple uses here, but
1856 // InstCombine does it as well for simple uses, it's not clear that it
1857 // occurs enough in real life to handle.
1858 CondUse = UI;
1859 return true;
1860 }
Dan Gohman045f8192010-01-22 00:46:49 +00001861 return false;
Evan Cheng133694d2007-10-25 09:11:16 +00001862}
1863
Dan Gohman045f8192010-01-22 00:46:49 +00001864/// OptimizeMax - Rewrite the loop's terminating condition if it uses
1865/// a max computation.
1866///
1867/// This is a narrow solution to a specific, but acute, problem. For loops
1868/// like this:
1869///
1870/// i = 0;
1871/// do {
1872/// p[i] = 0.0;
1873/// } while (++i < n);
1874///
1875/// the trip count isn't just 'n', because 'n' might not be positive. And
1876/// unfortunately this can come up even for loops where the user didn't use
1877/// a C do-while loop. For example, seemingly well-behaved top-test loops
1878/// will commonly be lowered like this:
1879//
1880/// if (n > 0) {
1881/// i = 0;
1882/// do {
1883/// p[i] = 0.0;
1884/// } while (++i < n);
1885/// }
1886///
1887/// and then it's possible for subsequent optimization to obscure the if
1888/// test in such a way that indvars can't find it.
1889///
1890/// When indvars can't find the if test in loops like this, it creates a
1891/// max expression, which allows it to give the loop a canonical
1892/// induction variable:
1893///
1894/// i = 0;
1895/// max = n < 1 ? 1 : n;
1896/// do {
1897/// p[i] = 0.0;
1898/// } while (++i != max);
1899///
1900/// Canonical induction variables are necessary because the loop passes
1901/// are designed around them. The most obvious example of this is the
1902/// LoopInfo analysis, which doesn't remember trip count values. It
1903/// expects to be able to rediscover the trip count each time it is
Dan Gohman45774ce2010-02-12 10:34:29 +00001904/// needed, and it does this using a simple analysis that only succeeds if
Dan Gohman045f8192010-01-22 00:46:49 +00001905/// the loop has a canonical induction variable.
1906///
1907/// However, when it comes time to generate code, the maximum operation
1908/// can be quite costly, especially if it's inside of an outer loop.
1909///
1910/// This function solves this problem by detecting this type of loop and
1911/// rewriting their conditions from ICMP_NE back to ICMP_SLT, and deleting
1912/// the instructions for the maximum computation.
1913///
Dan Gohman45774ce2010-02-12 10:34:29 +00001914ICmpInst *LSRInstance::OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse) {
Dan Gohman045f8192010-01-22 00:46:49 +00001915 // Check that the loop matches the pattern we're looking for.
1916 if (Cond->getPredicate() != CmpInst::ICMP_EQ &&
1917 Cond->getPredicate() != CmpInst::ICMP_NE)
1918 return Cond;
Dan Gohman51ad99d2010-01-21 02:09:26 +00001919
Dan Gohman045f8192010-01-22 00:46:49 +00001920 SelectInst *Sel = dyn_cast<SelectInst>(Cond->getOperand(1));
1921 if (!Sel || !Sel->hasOneUse()) return Cond;
Dan Gohman51ad99d2010-01-21 02:09:26 +00001922
Dan Gohman45774ce2010-02-12 10:34:29 +00001923 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
Dan Gohman045f8192010-01-22 00:46:49 +00001924 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1925 return Cond;
Dan Gohman1d2ded72010-05-03 22:09:21 +00001926 const SCEV *One = SE.getConstant(BackedgeTakenCount->getType(), 1);
Dan Gohman51ad99d2010-01-21 02:09:26 +00001927
Dan Gohman045f8192010-01-22 00:46:49 +00001928 // Add one to the backedge-taken count to get the trip count.
Dan Gohman9b7632d2010-08-16 15:39:27 +00001929 const SCEV *IterationCount = SE.getAddExpr(One, BackedgeTakenCount);
Dan Gohman534ba372010-04-24 03:13:44 +00001930 if (IterationCount != SE.getSCEV(Sel)) return Cond;
Dan Gohman045f8192010-01-22 00:46:49 +00001931
Dan Gohman534ba372010-04-24 03:13:44 +00001932 // Check for a max calculation that matches the pattern. There's no check
1933 // for ICMP_ULE here because the comparison would be with zero, which
1934 // isn't interesting.
1935 CmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE;
1936 const SCEVNAryExpr *Max = 0;
1937 if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(BackedgeTakenCount)) {
1938 Pred = ICmpInst::ICMP_SLE;
1939 Max = S;
1940 } else if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(IterationCount)) {
1941 Pred = ICmpInst::ICMP_SLT;
1942 Max = S;
1943 } else if (const SCEVUMaxExpr *U = dyn_cast<SCEVUMaxExpr>(IterationCount)) {
1944 Pred = ICmpInst::ICMP_ULT;
1945 Max = U;
1946 } else {
1947 // No match; bail.
Dan Gohman045f8192010-01-22 00:46:49 +00001948 return Cond;
Dan Gohman534ba372010-04-24 03:13:44 +00001949 }
Dan Gohman045f8192010-01-22 00:46:49 +00001950
1951 // To handle a max with more than two operands, this optimization would
1952 // require additional checking and setup.
1953 if (Max->getNumOperands() != 2)
1954 return Cond;
1955
1956 const SCEV *MaxLHS = Max->getOperand(0);
1957 const SCEV *MaxRHS = Max->getOperand(1);
Dan Gohman534ba372010-04-24 03:13:44 +00001958
1959 // ScalarEvolution canonicalizes constants to the left. For < and >, look
1960 // for a comparison with 1. For <= and >=, a comparison with zero.
1961 if (!MaxLHS ||
1962 (ICmpInst::isTrueWhenEqual(Pred) ? !MaxLHS->isZero() : (MaxLHS != One)))
1963 return Cond;
1964
Dan Gohman045f8192010-01-22 00:46:49 +00001965 // Check the relevant induction variable for conformance to
1966 // the pattern.
Dan Gohman45774ce2010-02-12 10:34:29 +00001967 const SCEV *IV = SE.getSCEV(Cond->getOperand(0));
Dan Gohman045f8192010-01-22 00:46:49 +00001968 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(IV);
1969 if (!AR || !AR->isAffine() ||
1970 AR->getStart() != One ||
Dan Gohman45774ce2010-02-12 10:34:29 +00001971 AR->getStepRecurrence(SE) != One)
Dan Gohman045f8192010-01-22 00:46:49 +00001972 return Cond;
1973
1974 assert(AR->getLoop() == L &&
1975 "Loop condition operand is an addrec in a different loop!");
1976
1977 // Check the right operand of the select, and remember it, as it will
1978 // be used in the new comparison instruction.
1979 Value *NewRHS = 0;
Dan Gohman534ba372010-04-24 03:13:44 +00001980 if (ICmpInst::isTrueWhenEqual(Pred)) {
1981 // Look for n+1, and grab n.
1982 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(1)))
Jakub Staszakf6df1e32013-03-24 09:25:47 +00001983 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1)))
1984 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS)
1985 NewRHS = BO->getOperand(0);
Dan Gohman534ba372010-04-24 03:13:44 +00001986 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(2)))
Jakub Staszakf6df1e32013-03-24 09:25:47 +00001987 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1)))
1988 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS)
1989 NewRHS = BO->getOperand(0);
Dan Gohman534ba372010-04-24 03:13:44 +00001990 if (!NewRHS)
1991 return Cond;
1992 } else if (SE.getSCEV(Sel->getOperand(1)) == MaxRHS)
Dan Gohman045f8192010-01-22 00:46:49 +00001993 NewRHS = Sel->getOperand(1);
Dan Gohman45774ce2010-02-12 10:34:29 +00001994 else if (SE.getSCEV(Sel->getOperand(2)) == MaxRHS)
Dan Gohman045f8192010-01-22 00:46:49 +00001995 NewRHS = Sel->getOperand(2);
Dan Gohman1081f1a2010-06-22 23:07:13 +00001996 else if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(MaxRHS))
1997 NewRHS = SU->getValue();
Dan Gohman534ba372010-04-24 03:13:44 +00001998 else
Dan Gohman1081f1a2010-06-22 23:07:13 +00001999 // Max doesn't match expected pattern.
2000 return Cond;
Dan Gohman045f8192010-01-22 00:46:49 +00002001
2002 // Determine the new comparison opcode. It may be signed or unsigned,
2003 // and the original comparison may be either equality or inequality.
Dan Gohman045f8192010-01-22 00:46:49 +00002004 if (Cond->getPredicate() == CmpInst::ICMP_EQ)
2005 Pred = CmpInst::getInversePredicate(Pred);
2006
2007 // Ok, everything looks ok to change the condition into an SLT or SGE and
2008 // delete the max calculation.
2009 ICmpInst *NewCond =
2010 new ICmpInst(Cond, Pred, Cond->getOperand(0), NewRHS, "scmp");
2011
2012 // Delete the max calculation instructions.
2013 Cond->replaceAllUsesWith(NewCond);
2014 CondUse->setUser(NewCond);
2015 Instruction *Cmp = cast<Instruction>(Sel->getOperand(0));
2016 Cond->eraseFromParent();
2017 Sel->eraseFromParent();
2018 if (Cmp->use_empty())
2019 Cmp->eraseFromParent();
2020 return NewCond;
Dan Gohman68e77352008-09-15 21:22:06 +00002021}
2022
Jim Grosbach60f48542009-11-17 17:53:56 +00002023/// OptimizeLoopTermCond - Change loop terminating condition to use the
Evan Cheng85a9f432009-11-12 07:35:05 +00002024/// postinc iv when possible.
Dan Gohman4c4043c2010-05-20 20:05:31 +00002025void
Dan Gohman45774ce2010-02-12 10:34:29 +00002026LSRInstance::OptimizeLoopTermCond() {
2027 SmallPtrSet<Instruction *, 4> PostIncs;
2028
Evan Cheng85a9f432009-11-12 07:35:05 +00002029 BasicBlock *LatchBlock = L->getLoopLatch();
Evan Chengba4e5da72009-11-17 18:10:11 +00002030 SmallVector<BasicBlock*, 8> ExitingBlocks;
2031 L->getExitingBlocks(ExitingBlocks);
Jim Grosbach60f48542009-11-17 17:53:56 +00002032
Evan Chengba4e5da72009-11-17 18:10:11 +00002033 for (unsigned i = 0, e = ExitingBlocks.size(); i != e; ++i) {
2034 BasicBlock *ExitingBlock = ExitingBlocks[i];
Evan Cheng85a9f432009-11-12 07:35:05 +00002035
Dan Gohman45774ce2010-02-12 10:34:29 +00002036 // Get the terminating condition for the loop if possible. If we
Evan Chengba4e5da72009-11-17 18:10:11 +00002037 // can, we want to change it to use a post-incremented version of its
2038 // induction variable, to allow coalescing the live ranges for the IV into
2039 // one register value.
Evan Cheng85a9f432009-11-12 07:35:05 +00002040
Evan Chengba4e5da72009-11-17 18:10:11 +00002041 BranchInst *TermBr = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
2042 if (!TermBr)
2043 continue;
2044 // FIXME: Overly conservative, termination condition could be an 'or' etc..
2045 if (TermBr->isUnconditional() || !isa<ICmpInst>(TermBr->getCondition()))
2046 continue;
Evan Cheng85a9f432009-11-12 07:35:05 +00002047
Evan Chengba4e5da72009-11-17 18:10:11 +00002048 // Search IVUsesByStride to find Cond's IVUse if there is one.
2049 IVStrideUse *CondUse = 0;
Evan Chengba4e5da72009-11-17 18:10:11 +00002050 ICmpInst *Cond = cast<ICmpInst>(TermBr->getCondition());
Dan Gohman45774ce2010-02-12 10:34:29 +00002051 if (!FindIVUserForCond(Cond, CondUse))
Evan Chengba4e5da72009-11-17 18:10:11 +00002052 continue;
2053
Evan Chengba4e5da72009-11-17 18:10:11 +00002054 // If the trip count is computed in terms of a max (due to ScalarEvolution
2055 // being unable to find a sufficient guard, for example), change the loop
2056 // comparison to use SLT or ULT instead of NE.
Dan Gohman45774ce2010-02-12 10:34:29 +00002057 // One consequence of doing this now is that it disrupts the count-down
2058 // optimization. That's not always a bad thing though, because in such
2059 // cases it may still be worthwhile to avoid a max.
2060 Cond = OptimizeMax(Cond, CondUse);
Evan Chengba4e5da72009-11-17 18:10:11 +00002061
Dan Gohman45774ce2010-02-12 10:34:29 +00002062 // If this exiting block dominates the latch block, it may also use
2063 // the post-inc value if it won't be shared with other uses.
2064 // Check for dominance.
2065 if (!DT.dominates(ExitingBlock, LatchBlock))
Dan Gohman045f8192010-01-22 00:46:49 +00002066 continue;
Evan Chengba4e5da72009-11-17 18:10:11 +00002067
Dan Gohman45774ce2010-02-12 10:34:29 +00002068 // Conservatively avoid trying to use the post-inc value in non-latch
2069 // exits if there may be pre-inc users in intervening blocks.
Dan Gohman2d0f96d2010-02-14 03:21:49 +00002070 if (LatchBlock != ExitingBlock)
Dan Gohman45774ce2010-02-12 10:34:29 +00002071 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
2072 // Test if the use is reachable from the exiting block. This dominator
2073 // query is a conservative approximation of reachability.
2074 if (&*UI != CondUse &&
2075 !DT.properlyDominates(UI->getUser()->getParent(), ExitingBlock)) {
2076 // Conservatively assume there may be reuse if the quotient of their
2077 // strides could be a legal scale.
Dan Gohmane637ff52010-04-19 21:48:58 +00002078 const SCEV *A = IU.getStride(*CondUse, L);
2079 const SCEV *B = IU.getStride(*UI, L);
Dan Gohmand006ab92010-04-07 22:27:08 +00002080 if (!A || !B) continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00002081 if (SE.getTypeSizeInBits(A->getType()) !=
2082 SE.getTypeSizeInBits(B->getType())) {
2083 if (SE.getTypeSizeInBits(A->getType()) >
2084 SE.getTypeSizeInBits(B->getType()))
2085 B = SE.getSignExtendExpr(B, A->getType());
2086 else
2087 A = SE.getSignExtendExpr(A, B->getType());
2088 }
2089 if (const SCEVConstant *D =
Dan Gohman4eebb942010-02-19 19:35:48 +00002090 dyn_cast_or_null<SCEVConstant>(getExactSDiv(B, A, SE))) {
Dan Gohman86110fa2010-05-20 22:25:20 +00002091 const ConstantInt *C = D->getValue();
Dan Gohman45774ce2010-02-12 10:34:29 +00002092 // Stride of one or negative one can have reuse with non-addresses.
Dan Gohman86110fa2010-05-20 22:25:20 +00002093 if (C->isOne() || C->isAllOnesValue())
Dan Gohman45774ce2010-02-12 10:34:29 +00002094 goto decline_post_inc;
2095 // Avoid weird situations.
Dan Gohman86110fa2010-05-20 22:25:20 +00002096 if (C->getValue().getMinSignedBits() >= 64 ||
2097 C->getValue().isMinSignedValue())
Dan Gohman45774ce2010-02-12 10:34:29 +00002098 goto decline_post_inc;
2099 // Check for possible scaled-address reuse.
Chris Lattner229907c2011-07-18 04:54:35 +00002100 Type *AccessTy = getAccessType(UI->getUser());
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002101 int64_t Scale = C->getSExtValue();
2102 if (TTI.isLegalAddressingMode(AccessTy, /*BaseGV=*/ 0,
2103 /*BaseOffset=*/ 0,
2104 /*HasBaseReg=*/ false, Scale))
Dan Gohman45774ce2010-02-12 10:34:29 +00002105 goto decline_post_inc;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002106 Scale = -Scale;
2107 if (TTI.isLegalAddressingMode(AccessTy, /*BaseGV=*/ 0,
2108 /*BaseOffset=*/ 0,
2109 /*HasBaseReg=*/ false, Scale))
Dan Gohman45774ce2010-02-12 10:34:29 +00002110 goto decline_post_inc;
2111 }
2112 }
2113
David Greene2330f782009-12-23 22:58:38 +00002114 DEBUG(dbgs() << " Change loop exiting icmp to use postinc iv: "
Dan Gohman45774ce2010-02-12 10:34:29 +00002115 << *Cond << '\n');
Evan Chengba4e5da72009-11-17 18:10:11 +00002116
2117 // It's possible for the setcc instruction to be anywhere in the loop, and
2118 // possible for it to have multiple users. If it is not immediately before
2119 // the exiting block branch, move it.
Dan Gohman45774ce2010-02-12 10:34:29 +00002120 if (&*++BasicBlock::iterator(Cond) != TermBr) {
2121 if (Cond->hasOneUse()) {
Evan Chengba4e5da72009-11-17 18:10:11 +00002122 Cond->moveBefore(TermBr);
2123 } else {
Dan Gohman45774ce2010-02-12 10:34:29 +00002124 // Clone the terminating condition and insert into the loopend.
2125 ICmpInst *OldCond = Cond;
Evan Chengba4e5da72009-11-17 18:10:11 +00002126 Cond = cast<ICmpInst>(Cond->clone());
2127 Cond->setName(L->getHeader()->getName() + ".termcond");
2128 ExitingBlock->getInstList().insert(TermBr, Cond);
2129
2130 // Clone the IVUse, as the old use still exists!
Andrew Trickfc4ccb22011-06-21 15:43:52 +00002131 CondUse = &IU.AddUser(Cond, CondUse->getOperandValToReplace());
Dan Gohman45774ce2010-02-12 10:34:29 +00002132 TermBr->replaceUsesOfWith(OldCond, Cond);
Evan Chengba4e5da72009-11-17 18:10:11 +00002133 }
Evan Cheng85a9f432009-11-12 07:35:05 +00002134 }
2135
Evan Chengba4e5da72009-11-17 18:10:11 +00002136 // If we get to here, we know that we can transform the setcc instruction to
2137 // use the post-incremented version of the IV, allowing us to coalesce the
2138 // live ranges for the IV correctly.
Dan Gohmand006ab92010-04-07 22:27:08 +00002139 CondUse->transformToPostInc(L);
Evan Chengba4e5da72009-11-17 18:10:11 +00002140 Changed = true;
2141
Dan Gohman45774ce2010-02-12 10:34:29 +00002142 PostIncs.insert(Cond);
2143 decline_post_inc:;
Dan Gohman51ad99d2010-01-21 02:09:26 +00002144 }
Dan Gohman45774ce2010-02-12 10:34:29 +00002145
2146 // Determine an insertion point for the loop induction variable increment. It
2147 // must dominate all the post-inc comparisons we just set up, and it must
2148 // dominate the loop latch edge.
2149 IVIncInsertPos = L->getLoopLatch()->getTerminator();
2150 for (SmallPtrSet<Instruction *, 4>::const_iterator I = PostIncs.begin(),
2151 E = PostIncs.end(); I != E; ++I) {
2152 BasicBlock *BB =
2153 DT.findNearestCommonDominator(IVIncInsertPos->getParent(),
2154 (*I)->getParent());
2155 if (BB == (*I)->getParent())
2156 IVIncInsertPos = *I;
2157 else if (BB != IVIncInsertPos->getParent())
2158 IVIncInsertPos = BB->getTerminator();
2159 }
Dan Gohman51ad99d2010-01-21 02:09:26 +00002160}
2161
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00002162/// reconcileNewOffset - Determine if the given use can accommodate a fixup
Dan Gohmana4ca28a2010-05-20 20:52:00 +00002163/// at the given offset and other details. If so, update the use and
2164/// return true.
Dan Gohman45774ce2010-02-12 10:34:29 +00002165bool
Dan Gohman110ed642010-09-01 01:45:53 +00002166LSRInstance::reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Chris Lattner229907c2011-07-18 04:54:35 +00002167 LSRUse::KindType Kind, Type *AccessTy) {
Dan Gohman110ed642010-09-01 01:45:53 +00002168 int64_t NewMinOffset = LU.MinOffset;
2169 int64_t NewMaxOffset = LU.MaxOffset;
Chris Lattner229907c2011-07-18 04:54:35 +00002170 Type *NewAccessTy = AccessTy;
Dan Gohman045f8192010-01-22 00:46:49 +00002171
Dan Gohman45774ce2010-02-12 10:34:29 +00002172 // Check for a mismatched kind. It's tempting to collapse mismatched kinds to
2173 // something conservative, however this can pessimize in the case that one of
2174 // the uses will have all its uses outside the loop, for example.
2175 if (LU.Kind != Kind)
Dan Gohman045f8192010-01-22 00:46:49 +00002176 return false;
Dan Gohman45774ce2010-02-12 10:34:29 +00002177 // Conservatively assume HasBaseReg is true for now.
Dan Gohman110ed642010-09-01 01:45:53 +00002178 if (NewOffset < LU.MinOffset) {
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002179 if (!isAlwaysFoldable(TTI, Kind, AccessTy, /*BaseGV=*/ 0,
2180 LU.MaxOffset - NewOffset, HasBaseReg))
Dan Gohman045f8192010-01-22 00:46:49 +00002181 return false;
Dan Gohman110ed642010-09-01 01:45:53 +00002182 NewMinOffset = NewOffset;
2183 } else if (NewOffset > LU.MaxOffset) {
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002184 if (!isAlwaysFoldable(TTI, Kind, AccessTy, /*BaseGV=*/ 0,
2185 NewOffset - LU.MinOffset, HasBaseReg))
Dan Gohman045f8192010-01-22 00:46:49 +00002186 return false;
Dan Gohman110ed642010-09-01 01:45:53 +00002187 NewMaxOffset = NewOffset;
Dan Gohman51ad99d2010-01-21 02:09:26 +00002188 }
Dan Gohman45774ce2010-02-12 10:34:29 +00002189 // Check for a mismatched access type, and fall back conservatively as needed.
Dan Gohman32655902010-06-19 21:30:18 +00002190 // TODO: Be less conservative when the type is similar and can use the same
2191 // addressing modes.
Dan Gohman45774ce2010-02-12 10:34:29 +00002192 if (Kind == LSRUse::Address && AccessTy != LU.AccessTy)
Dan Gohman110ed642010-09-01 01:45:53 +00002193 NewAccessTy = Type::getVoidTy(AccessTy->getContext());
Dan Gohman51ad99d2010-01-21 02:09:26 +00002194
Dan Gohman45774ce2010-02-12 10:34:29 +00002195 // Update the use.
Dan Gohman110ed642010-09-01 01:45:53 +00002196 LU.MinOffset = NewMinOffset;
2197 LU.MaxOffset = NewMaxOffset;
2198 LU.AccessTy = NewAccessTy;
2199 if (NewOffset != LU.Offsets.back())
2200 LU.Offsets.push_back(NewOffset);
Dan Gohman29916e02010-01-21 22:42:49 +00002201 return true;
2202}
2203
Dan Gohman45774ce2010-02-12 10:34:29 +00002204/// getUse - Return an LSRUse index and an offset value for a fixup which
2205/// needs the given expression, with the given kind and optional access type.
Dan Gohman8b0a4192010-03-01 17:49:51 +00002206/// Either reuse an existing use or create a new one, as needed.
Dan Gohman45774ce2010-02-12 10:34:29 +00002207std::pair<size_t, int64_t>
2208LSRInstance::getUse(const SCEV *&Expr,
Chris Lattner229907c2011-07-18 04:54:35 +00002209 LSRUse::KindType Kind, Type *AccessTy) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002210 const SCEV *Copy = Expr;
2211 int64_t Offset = ExtractImmediate(Expr, SE);
Evan Cheng85a9f432009-11-12 07:35:05 +00002212
Dan Gohman45774ce2010-02-12 10:34:29 +00002213 // Basic uses can't accept any offset, for example.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002214 if (!isAlwaysFoldable(TTI, Kind, AccessTy, /*BaseGV=*/ 0,
2215 Offset, /*HasBaseReg=*/ true)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002216 Expr = Copy;
2217 Offset = 0;
2218 }
2219
2220 std::pair<UseMapTy::iterator, bool> P =
Dan Gohman51d00092010-06-19 21:29:59 +00002221 UseMap.insert(std::make_pair(std::make_pair(Expr, Kind), 0));
Dan Gohman45774ce2010-02-12 10:34:29 +00002222 if (!P.second) {
2223 // A use already existed with this base.
2224 size_t LUIdx = P.first->second;
2225 LSRUse &LU = Uses[LUIdx];
Dan Gohman110ed642010-09-01 01:45:53 +00002226 if (reconcileNewOffset(LU, Offset, /*HasBaseReg=*/true, Kind, AccessTy))
Dan Gohman45774ce2010-02-12 10:34:29 +00002227 // Reuse this use.
2228 return std::make_pair(LUIdx, Offset);
2229 }
2230
2231 // Create a new use.
2232 size_t LUIdx = Uses.size();
2233 P.first->second = LUIdx;
2234 Uses.push_back(LSRUse(Kind, AccessTy));
2235 LSRUse &LU = Uses[LUIdx];
2236
Dan Gohman110ed642010-09-01 01:45:53 +00002237 // We don't need to track redundant offsets, but we don't need to go out
2238 // of our way here to avoid them.
2239 if (LU.Offsets.empty() || Offset != LU.Offsets.back())
2240 LU.Offsets.push_back(Offset);
2241
Dan Gohman45774ce2010-02-12 10:34:29 +00002242 LU.MinOffset = Offset;
2243 LU.MaxOffset = Offset;
2244 return std::make_pair(LUIdx, Offset);
2245}
2246
Dan Gohman80a96082010-05-20 15:17:54 +00002247/// DeleteUse - Delete the given use from the Uses list.
Dan Gohmana7b68d62010-10-07 23:33:43 +00002248void LSRInstance::DeleteUse(LSRUse &LU, size_t LUIdx) {
Dan Gohman110ed642010-09-01 01:45:53 +00002249 if (&LU != &Uses.back())
Dan Gohman80a96082010-05-20 15:17:54 +00002250 std::swap(LU, Uses.back());
2251 Uses.pop_back();
Dan Gohmana7b68d62010-10-07 23:33:43 +00002252
2253 // Update RegUses.
2254 RegUses.SwapAndDropUse(LUIdx, Uses.size());
Dan Gohman80a96082010-05-20 15:17:54 +00002255}
2256
Dan Gohman20fab452010-05-19 23:43:12 +00002257/// FindUseWithFormula - Look for a use distinct from OrigLU which is has
2258/// a formula that has the same registers as the given formula.
2259LSRUse *
2260LSRInstance::FindUseWithSimilarFormula(const Formula &OrigF,
Dan Gohman110ed642010-09-01 01:45:53 +00002261 const LSRUse &OrigLU) {
2262 // Search all uses for the formula. This could be more clever.
Dan Gohman20fab452010-05-19 23:43:12 +00002263 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2264 LSRUse &LU = Uses[LUIdx];
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002265 // Check whether this use is close enough to OrigLU, to see whether it's
2266 // worthwhile looking through its formulae.
2267 // Ignore ICmpZero uses because they may contain formulae generated by
2268 // GenerateICmpZeroScales, in which case adding fixup offsets may
2269 // be invalid.
Dan Gohman20fab452010-05-19 23:43:12 +00002270 if (&LU != &OrigLU &&
2271 LU.Kind != LSRUse::ICmpZero &&
2272 LU.Kind == OrigLU.Kind && OrigLU.AccessTy == LU.AccessTy &&
Dan Gohman14152082010-07-15 20:24:58 +00002273 LU.WidestFixupType == OrigLU.WidestFixupType &&
Dan Gohman20fab452010-05-19 23:43:12 +00002274 LU.HasFormulaWithSameRegs(OrigF)) {
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002275 // Scan through this use's formulae.
Dan Gohman927bcaa2010-05-20 20:33:18 +00002276 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
2277 E = LU.Formulae.end(); I != E; ++I) {
2278 const Formula &F = *I;
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002279 // Check to see if this formula has the same registers and symbols
2280 // as OrigF.
Dan Gohman20fab452010-05-19 23:43:12 +00002281 if (F.BaseRegs == OrigF.BaseRegs &&
2282 F.ScaledReg == OrigF.ScaledReg &&
Chandler Carruth6e479322013-01-07 15:04:40 +00002283 F.BaseGV == OrigF.BaseGV &&
2284 F.Scale == OrigF.Scale &&
Dan Gohman6136e942011-05-03 00:46:49 +00002285 F.UnfoldedOffset == OrigF.UnfoldedOffset) {
Chandler Carruth6e479322013-01-07 15:04:40 +00002286 if (F.BaseOffset == 0)
Dan Gohman20fab452010-05-19 23:43:12 +00002287 return &LU;
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002288 // This is the formula where all the registers and symbols matched;
2289 // there aren't going to be any others. Since we declined it, we
Benjamin Kramerbde91762012-06-02 10:20:22 +00002290 // can skip the rest of the formulae and proceed to the next LSRUse.
Dan Gohman20fab452010-05-19 23:43:12 +00002291 break;
2292 }
2293 }
2294 }
2295 }
2296
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002297 // Nothing looked good.
Dan Gohman20fab452010-05-19 23:43:12 +00002298 return 0;
2299}
2300
Dan Gohman45774ce2010-02-12 10:34:29 +00002301void LSRInstance::CollectInterestingTypesAndFactors() {
2302 SmallSetVector<const SCEV *, 4> Strides;
2303
Dan Gohman2446f572010-02-19 00:05:23 +00002304 // Collect interesting types and strides.
Dan Gohmand006ab92010-04-07 22:27:08 +00002305 SmallVector<const SCEV *, 4> Worklist;
Dan Gohman45774ce2010-02-12 10:34:29 +00002306 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) {
Dan Gohmane637ff52010-04-19 21:48:58 +00002307 const SCEV *Expr = IU.getExpr(*UI);
Dan Gohman45774ce2010-02-12 10:34:29 +00002308
2309 // Collect interesting types.
Dan Gohmand006ab92010-04-07 22:27:08 +00002310 Types.insert(SE.getEffectiveSCEVType(Expr->getType()));
Dan Gohman45774ce2010-02-12 10:34:29 +00002311
Dan Gohmand006ab92010-04-07 22:27:08 +00002312 // Add strides for mentioned loops.
2313 Worklist.push_back(Expr);
2314 do {
2315 const SCEV *S = Worklist.pop_back_val();
2316 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
Andrew Trickd97b83e2012-03-22 22:42:45 +00002317 if (AR->getLoop() == L)
Andrew Tricke8b4f402011-12-10 00:25:00 +00002318 Strides.insert(AR->getStepRecurrence(SE));
Dan Gohmand006ab92010-04-07 22:27:08 +00002319 Worklist.push_back(AR->getStart());
2320 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Dan Gohmandd41bba2010-06-21 19:47:52 +00002321 Worklist.append(Add->op_begin(), Add->op_end());
Dan Gohmand006ab92010-04-07 22:27:08 +00002322 }
2323 } while (!Worklist.empty());
Dan Gohman2446f572010-02-19 00:05:23 +00002324 }
2325
2326 // Compute interesting factors from the set of interesting strides.
2327 for (SmallSetVector<const SCEV *, 4>::const_iterator
2328 I = Strides.begin(), E = Strides.end(); I != E; ++I)
Dan Gohman45774ce2010-02-12 10:34:29 +00002329 for (SmallSetVector<const SCEV *, 4>::const_iterator NewStrideIter =
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002330 std::next(I); NewStrideIter != E; ++NewStrideIter) {
Dan Gohman2446f572010-02-19 00:05:23 +00002331 const SCEV *OldStride = *I;
Dan Gohman45774ce2010-02-12 10:34:29 +00002332 const SCEV *NewStride = *NewStrideIter;
Dan Gohman45774ce2010-02-12 10:34:29 +00002333
2334 if (SE.getTypeSizeInBits(OldStride->getType()) !=
2335 SE.getTypeSizeInBits(NewStride->getType())) {
2336 if (SE.getTypeSizeInBits(OldStride->getType()) >
2337 SE.getTypeSizeInBits(NewStride->getType()))
2338 NewStride = SE.getSignExtendExpr(NewStride, OldStride->getType());
2339 else
2340 OldStride = SE.getSignExtendExpr(OldStride, NewStride->getType());
2341 }
2342 if (const SCEVConstant *Factor =
Dan Gohman4eebb942010-02-19 19:35:48 +00002343 dyn_cast_or_null<SCEVConstant>(getExactSDiv(NewStride, OldStride,
2344 SE, true))) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002345 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2346 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2347 } else if (const SCEVConstant *Factor =
Dan Gohman8c16b382010-02-22 04:11:59 +00002348 dyn_cast_or_null<SCEVConstant>(getExactSDiv(OldStride,
2349 NewStride,
Dan Gohman4eebb942010-02-19 19:35:48 +00002350 SE, true))) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002351 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2352 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2353 }
2354 }
Dan Gohman45774ce2010-02-12 10:34:29 +00002355
2356 // If all uses use the same type, don't bother looking for truncation-based
2357 // reuse.
2358 if (Types.size() == 1)
2359 Types.clear();
2360
2361 DEBUG(print_factors_and_types(dbgs()));
2362}
2363
Andrew Trick29fe5f02012-01-09 19:50:34 +00002364/// findIVOperand - Helper for CollectChains that finds an IV operand (computed
2365/// by an AddRec in this loop) within [OI,OE) or returns OE. If IVUsers mapped
2366/// Instructions to IVStrideUses, we could partially skip this.
2367static User::op_iterator
2368findIVOperand(User::op_iterator OI, User::op_iterator OE,
2369 Loop *L, ScalarEvolution &SE) {
2370 for(; OI != OE; ++OI) {
2371 if (Instruction *Oper = dyn_cast<Instruction>(*OI)) {
2372 if (!SE.isSCEVable(Oper->getType()))
2373 continue;
2374
2375 if (const SCEVAddRecExpr *AR =
2376 dyn_cast<SCEVAddRecExpr>(SE.getSCEV(Oper))) {
2377 if (AR->getLoop() == L)
2378 break;
2379 }
2380 }
2381 }
2382 return OI;
2383}
2384
2385/// getWideOperand - IVChain logic must consistenctly peek base TruncInst
2386/// operands, so wrap it in a convenient helper.
2387static Value *getWideOperand(Value *Oper) {
2388 if (TruncInst *Trunc = dyn_cast<TruncInst>(Oper))
2389 return Trunc->getOperand(0);
2390 return Oper;
2391}
2392
2393/// isCompatibleIVType - Return true if we allow an IV chain to include both
2394/// types.
2395static bool isCompatibleIVType(Value *LVal, Value *RVal) {
2396 Type *LType = LVal->getType();
2397 Type *RType = RVal->getType();
2398 return (LType == RType) || (LType->isPointerTy() && RType->isPointerTy());
2399}
2400
Andrew Trickd5d2db92012-01-10 01:45:08 +00002401/// getExprBase - Return an approximation of this SCEV expression's "base", or
2402/// NULL for any constant. Returning the expression itself is
2403/// conservative. Returning a deeper subexpression is more precise and valid as
2404/// long as it isn't less complex than another subexpression. For expressions
2405/// involving multiple unscaled values, we need to return the pointer-type
2406/// SCEVUnknown. This avoids forming chains across objects, such as:
2407/// PrevOper==a[i], IVOper==b[i], IVInc==b-a.
2408///
2409/// Since SCEVUnknown is the rightmost type, and pointers are the rightmost
2410/// SCEVUnknown, we simply return the rightmost SCEV operand.
2411static const SCEV *getExprBase(const SCEV *S) {
2412 switch (S->getSCEVType()) {
2413 default: // uncluding scUnknown.
2414 return S;
2415 case scConstant:
2416 return 0;
2417 case scTruncate:
2418 return getExprBase(cast<SCEVTruncateExpr>(S)->getOperand());
2419 case scZeroExtend:
2420 return getExprBase(cast<SCEVZeroExtendExpr>(S)->getOperand());
2421 case scSignExtend:
2422 return getExprBase(cast<SCEVSignExtendExpr>(S)->getOperand());
2423 case scAddExpr: {
2424 // Skip over scaled operands (scMulExpr) to follow add operands as long as
2425 // there's nothing more complex.
2426 // FIXME: not sure if we want to recognize negation.
2427 const SCEVAddExpr *Add = cast<SCEVAddExpr>(S);
2428 for (std::reverse_iterator<SCEVAddExpr::op_iterator> I(Add->op_end()),
2429 E(Add->op_begin()); I != E; ++I) {
2430 const SCEV *SubExpr = *I;
2431 if (SubExpr->getSCEVType() == scAddExpr)
2432 return getExprBase(SubExpr);
2433
2434 if (SubExpr->getSCEVType() != scMulExpr)
2435 return SubExpr;
2436 }
2437 return S; // all operands are scaled, be conservative.
2438 }
2439 case scAddRecExpr:
2440 return getExprBase(cast<SCEVAddRecExpr>(S)->getStart());
2441 }
2442}
2443
Andrew Trick248d4102012-01-09 21:18:52 +00002444/// Return true if the chain increment is profitable to expand into a loop
2445/// invariant value, which may require its own register. A profitable chain
2446/// increment will be an offset relative to the same base. We allow such offsets
2447/// to potentially be used as chain increment as long as it's not obviously
2448/// expensive to expand using real instructions.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002449bool IVChain::isProfitableIncrement(const SCEV *OperExpr,
2450 const SCEV *IncExpr,
2451 ScalarEvolution &SE) {
2452 // Aggressively form chains when -stress-ivchain.
Andrew Trick248d4102012-01-09 21:18:52 +00002453 if (StressIVChain)
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002454 return true;
Andrew Trick248d4102012-01-09 21:18:52 +00002455
Andrew Trickd5d2db92012-01-10 01:45:08 +00002456 // Do not replace a constant offset from IV head with a nonconstant IV
2457 // increment.
2458 if (!isa<SCEVConstant>(IncExpr)) {
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002459 const SCEV *HeadExpr = SE.getSCEV(getWideOperand(Incs[0].IVOperand));
Andrew Trickd5d2db92012-01-10 01:45:08 +00002460 if (isa<SCEVConstant>(SE.getMinusSCEV(OperExpr, HeadExpr)))
2461 return 0;
2462 }
2463
2464 SmallPtrSet<const SCEV*, 8> Processed;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002465 return !isHighCostExpansion(IncExpr, Processed, SE);
Andrew Trick248d4102012-01-09 21:18:52 +00002466}
2467
2468/// Return true if the number of registers needed for the chain is estimated to
2469/// be less than the number required for the individual IV users. First prohibit
2470/// any IV users that keep the IV live across increments (the Users set should
2471/// be empty). Next count the number and type of increments in the chain.
2472///
2473/// Chaining IVs can lead to considerable code bloat if ISEL doesn't
2474/// effectively use postinc addressing modes. Only consider it profitable it the
2475/// increments can be computed in fewer registers when chained.
2476///
2477/// TODO: Consider IVInc free if it's already used in another chains.
2478static bool
2479isProfitableChain(IVChain &Chain, SmallPtrSet<Instruction*, 4> &Users,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002480 ScalarEvolution &SE, const TargetTransformInfo &TTI) {
Andrew Trick248d4102012-01-09 21:18:52 +00002481 if (StressIVChain)
2482 return true;
2483
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002484 if (!Chain.hasIncs())
Andrew Trickd5d2db92012-01-10 01:45:08 +00002485 return false;
2486
2487 if (!Users.empty()) {
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002488 DEBUG(dbgs() << "Chain: " << *Chain.Incs[0].UserInst << " users:\n";
Andrew Trickd5d2db92012-01-10 01:45:08 +00002489 for (SmallPtrSet<Instruction*, 4>::const_iterator I = Users.begin(),
2490 E = Users.end(); I != E; ++I) {
2491 dbgs() << " " << **I << "\n";
2492 });
2493 return false;
2494 }
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002495 assert(!Chain.Incs.empty() && "empty IV chains are not allowed");
Andrew Trickd5d2db92012-01-10 01:45:08 +00002496
2497 // The chain itself may require a register, so intialize cost to 1.
2498 int cost = 1;
2499
2500 // A complete chain likely eliminates the need for keeping the original IV in
2501 // a register. LSR does not currently know how to form a complete chain unless
2502 // the header phi already exists.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002503 if (isa<PHINode>(Chain.tailUserInst())
2504 && SE.getSCEV(Chain.tailUserInst()) == Chain.Incs[0].IncExpr) {
Andrew Trickd5d2db92012-01-10 01:45:08 +00002505 --cost;
2506 }
2507 const SCEV *LastIncExpr = 0;
2508 unsigned NumConstIncrements = 0;
2509 unsigned NumVarIncrements = 0;
2510 unsigned NumReusedIncrements = 0;
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002511 for (IVChain::const_iterator I = Chain.begin(), E = Chain.end();
Andrew Trickd5d2db92012-01-10 01:45:08 +00002512 I != E; ++I) {
2513
2514 if (I->IncExpr->isZero())
2515 continue;
2516
2517 // Incrementing by zero or some constant is neutral. We assume constants can
2518 // be folded into an addressing mode or an add's immediate operand.
2519 if (isa<SCEVConstant>(I->IncExpr)) {
2520 ++NumConstIncrements;
2521 continue;
2522 }
2523
2524 if (I->IncExpr == LastIncExpr)
2525 ++NumReusedIncrements;
2526 else
2527 ++NumVarIncrements;
2528
2529 LastIncExpr = I->IncExpr;
2530 }
2531 // An IV chain with a single increment is handled by LSR's postinc
2532 // uses. However, a chain with multiple increments requires keeping the IV's
2533 // value live longer than it needs to be if chained.
2534 if (NumConstIncrements > 1)
2535 --cost;
2536
2537 // Materializing increment expressions in the preheader that didn't exist in
2538 // the original code may cost a register. For example, sign-extended array
2539 // indices can produce ridiculous increments like this:
2540 // IV + ((sext i32 (2 * %s) to i64) + (-1 * (sext i32 %s to i64)))
2541 cost += NumVarIncrements;
2542
2543 // Reusing variable increments likely saves a register to hold the multiple of
2544 // the stride.
2545 cost -= NumReusedIncrements;
2546
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002547 DEBUG(dbgs() << "Chain: " << *Chain.Incs[0].UserInst << " Cost: " << cost
2548 << "\n");
Andrew Trickd5d2db92012-01-10 01:45:08 +00002549
2550 return cost < 0;
Andrew Trick248d4102012-01-09 21:18:52 +00002551}
2552
Andrew Trick29fe5f02012-01-09 19:50:34 +00002553/// ChainInstruction - Add this IV user to an existing chain or make it the head
2554/// of a new chain.
2555void LSRInstance::ChainInstruction(Instruction *UserInst, Instruction *IVOper,
2556 SmallVectorImpl<ChainUsers> &ChainUsersVec) {
2557 // When IVs are used as types of varying widths, they are generally converted
2558 // to a wider type with some uses remaining narrow under a (free) trunc.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002559 Value *const NextIV = getWideOperand(IVOper);
2560 const SCEV *const OperExpr = SE.getSCEV(NextIV);
2561 const SCEV *const OperExprBase = getExprBase(OperExpr);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002562
2563 // Visit all existing chains. Check if its IVOper can be computed as a
2564 // profitable loop invariant increment from the last link in the Chain.
2565 unsigned ChainIdx = 0, NChains = IVChainVec.size();
2566 const SCEV *LastIncExpr = 0;
2567 for (; ChainIdx < NChains; ++ChainIdx) {
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002568 IVChain &Chain = IVChainVec[ChainIdx];
2569
2570 // Prune the solution space aggressively by checking that both IV operands
2571 // are expressions that operate on the same unscaled SCEVUnknown. This
2572 // "base" will be canceled by the subsequent getMinusSCEV call. Checking
2573 // first avoids creating extra SCEV expressions.
2574 if (!StressIVChain && Chain.ExprBase != OperExprBase)
2575 continue;
2576
2577 Value *PrevIV = getWideOperand(Chain.Incs.back().IVOperand);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002578 if (!isCompatibleIVType(PrevIV, NextIV))
2579 continue;
2580
Andrew Trick356a8962012-03-26 20:28:35 +00002581 // A phi node terminates a chain.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002582 if (isa<PHINode>(UserInst) && isa<PHINode>(Chain.tailUserInst()))
Andrew Trick29fe5f02012-01-09 19:50:34 +00002583 continue;
2584
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002585 // The increment must be loop-invariant so it can be kept in a register.
2586 const SCEV *PrevExpr = SE.getSCEV(PrevIV);
2587 const SCEV *IncExpr = SE.getMinusSCEV(OperExpr, PrevExpr);
2588 if (!SE.isLoopInvariant(IncExpr, L))
2589 continue;
2590
2591 if (Chain.isProfitableIncrement(OperExpr, IncExpr, SE)) {
Andrew Trick29fe5f02012-01-09 19:50:34 +00002592 LastIncExpr = IncExpr;
2593 break;
2594 }
2595 }
2596 // If we haven't found a chain, create a new one, unless we hit the max. Don't
2597 // bother for phi nodes, because they must be last in the chain.
2598 if (ChainIdx == NChains) {
2599 if (isa<PHINode>(UserInst))
2600 return;
Andrew Trick248d4102012-01-09 21:18:52 +00002601 if (NChains >= MaxChains && !StressIVChain) {
Andrew Trick29fe5f02012-01-09 19:50:34 +00002602 DEBUG(dbgs() << "IV Chain Limit\n");
2603 return;
2604 }
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002605 LastIncExpr = OperExpr;
Andrew Trickb9c822a2012-01-20 21:23:40 +00002606 // IVUsers may have skipped over sign/zero extensions. We don't currently
2607 // attempt to form chains involving extensions unless they can be hoisted
2608 // into this loop's AddRec.
2609 if (!isa<SCEVAddRecExpr>(LastIncExpr))
2610 return;
Andrew Trick29fe5f02012-01-09 19:50:34 +00002611 ++NChains;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002612 IVChainVec.push_back(IVChain(IVInc(UserInst, IVOper, LastIncExpr),
2613 OperExprBase));
Andrew Trick29fe5f02012-01-09 19:50:34 +00002614 ChainUsersVec.resize(NChains);
Jakob Stoklund Olesen293673d2012-04-25 18:01:32 +00002615 DEBUG(dbgs() << "IV Chain#" << ChainIdx << " Head: (" << *UserInst
2616 << ") IV=" << *LastIncExpr << "\n");
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002617 } else {
Jakob Stoklund Olesen293673d2012-04-25 18:01:32 +00002618 DEBUG(dbgs() << "IV Chain#" << ChainIdx << " Inc: (" << *UserInst
2619 << ") IV+" << *LastIncExpr << "\n");
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002620 // Add this IV user to the end of the chain.
2621 IVChainVec[ChainIdx].add(IVInc(UserInst, IVOper, LastIncExpr));
2622 }
Andrew Trickbc705902013-02-09 01:11:01 +00002623 IVChain &Chain = IVChainVec[ChainIdx];
Andrew Trick29fe5f02012-01-09 19:50:34 +00002624
2625 SmallPtrSet<Instruction*,4> &NearUsers = ChainUsersVec[ChainIdx].NearUsers;
2626 // This chain's NearUsers become FarUsers.
2627 if (!LastIncExpr->isZero()) {
2628 ChainUsersVec[ChainIdx].FarUsers.insert(NearUsers.begin(),
2629 NearUsers.end());
2630 NearUsers.clear();
2631 }
2632
2633 // All other uses of IVOperand become near uses of the chain.
2634 // We currently ignore intermediate values within SCEV expressions, assuming
2635 // they will eventually be used be the current chain, or can be computed
2636 // from one of the chain increments. To be more precise we could
2637 // transitively follow its user and only add leaf IV users to the set.
2638 for (Value::use_iterator UseIter = IVOper->use_begin(),
2639 UseEnd = IVOper->use_end(); UseIter != UseEnd; ++UseIter) {
2640 Instruction *OtherUse = dyn_cast<Instruction>(*UseIter);
Andrew Trickbc705902013-02-09 01:11:01 +00002641 if (!OtherUse)
Andrew Tricke51feea2012-03-26 18:03:16 +00002642 continue;
Andrew Trickbc705902013-02-09 01:11:01 +00002643 // Uses in the chain will no longer be uses if the chain is formed.
2644 // Include the head of the chain in this iteration (not Chain.begin()).
2645 IVChain::const_iterator IncIter = Chain.Incs.begin();
2646 IVChain::const_iterator IncEnd = Chain.Incs.end();
2647 for( ; IncIter != IncEnd; ++IncIter) {
2648 if (IncIter->UserInst == OtherUse)
2649 break;
2650 }
2651 if (IncIter != IncEnd)
2652 continue;
2653
Andrew Trick29fe5f02012-01-09 19:50:34 +00002654 if (SE.isSCEVable(OtherUse->getType())
2655 && !isa<SCEVUnknown>(SE.getSCEV(OtherUse))
2656 && IU.isIVUserOrOperand(OtherUse)) {
2657 continue;
2658 }
Andrew Tricke51feea2012-03-26 18:03:16 +00002659 NearUsers.insert(OtherUse);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002660 }
2661
2662 // Since this user is part of the chain, it's no longer considered a use
2663 // of the chain.
2664 ChainUsersVec[ChainIdx].FarUsers.erase(UserInst);
2665}
2666
2667/// CollectChains - Populate the vector of Chains.
2668///
2669/// This decreases ILP at the architecture level. Targets with ample registers,
2670/// multiple memory ports, and no register renaming probably don't want
2671/// this. However, such targets should probably disable LSR altogether.
2672///
2673/// The job of LSR is to make a reasonable choice of induction variables across
2674/// the loop. Subsequent passes can easily "unchain" computation exposing more
2675/// ILP *within the loop* if the target wants it.
2676///
2677/// Finding the best IV chain is potentially a scheduling problem. Since LSR
2678/// will not reorder memory operations, it will recognize this as a chain, but
2679/// will generate redundant IV increments. Ideally this would be corrected later
2680/// by a smart scheduler:
2681/// = A[i]
2682/// = A[i+x]
2683/// A[i] =
2684/// A[i+x] =
2685///
2686/// TODO: Walk the entire domtree within this loop, not just the path to the
2687/// loop latch. This will discover chains on side paths, but requires
2688/// maintaining multiple copies of the Chains state.
2689void LSRInstance::CollectChains() {
Jakob Stoklund Olesen293673d2012-04-25 18:01:32 +00002690 DEBUG(dbgs() << "Collecting IV Chains.\n");
Andrew Trick29fe5f02012-01-09 19:50:34 +00002691 SmallVector<ChainUsers, 8> ChainUsersVec;
2692
2693 SmallVector<BasicBlock *,8> LatchPath;
2694 BasicBlock *LoopHeader = L->getHeader();
2695 for (DomTreeNode *Rung = DT.getNode(L->getLoopLatch());
2696 Rung->getBlock() != LoopHeader; Rung = Rung->getIDom()) {
2697 LatchPath.push_back(Rung->getBlock());
2698 }
2699 LatchPath.push_back(LoopHeader);
2700
2701 // Walk the instruction stream from the loop header to the loop latch.
2702 for (SmallVectorImpl<BasicBlock *>::reverse_iterator
2703 BBIter = LatchPath.rbegin(), BBEnd = LatchPath.rend();
2704 BBIter != BBEnd; ++BBIter) {
2705 for (BasicBlock::iterator I = (*BBIter)->begin(), E = (*BBIter)->end();
2706 I != E; ++I) {
2707 // Skip instructions that weren't seen by IVUsers analysis.
2708 if (isa<PHINode>(I) || !IU.isIVUserOrOperand(I))
2709 continue;
2710
2711 // Ignore users that are part of a SCEV expression. This way we only
2712 // consider leaf IV Users. This effectively rediscovers a portion of
2713 // IVUsers analysis but in program order this time.
2714 if (SE.isSCEVable(I->getType()) && !isa<SCEVUnknown>(SE.getSCEV(I)))
2715 continue;
2716
2717 // Remove this instruction from any NearUsers set it may be in.
2718 for (unsigned ChainIdx = 0, NChains = IVChainVec.size();
2719 ChainIdx < NChains; ++ChainIdx) {
2720 ChainUsersVec[ChainIdx].NearUsers.erase(I);
2721 }
2722 // Search for operands that can be chained.
2723 SmallPtrSet<Instruction*, 4> UniqueOperands;
2724 User::op_iterator IVOpEnd = I->op_end();
2725 User::op_iterator IVOpIter = findIVOperand(I->op_begin(), IVOpEnd, L, SE);
2726 while (IVOpIter != IVOpEnd) {
2727 Instruction *IVOpInst = cast<Instruction>(*IVOpIter);
2728 if (UniqueOperands.insert(IVOpInst))
2729 ChainInstruction(I, IVOpInst, ChainUsersVec);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002730 IVOpIter = findIVOperand(std::next(IVOpIter), IVOpEnd, L, SE);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002731 }
2732 } // Continue walking down the instructions.
2733 } // Continue walking down the domtree.
2734 // Visit phi backedges to determine if the chain can generate the IV postinc.
2735 for (BasicBlock::iterator I = L->getHeader()->begin();
2736 PHINode *PN = dyn_cast<PHINode>(I); ++I) {
2737 if (!SE.isSCEVable(PN->getType()))
2738 continue;
2739
2740 Instruction *IncV =
2741 dyn_cast<Instruction>(PN->getIncomingValueForBlock(L->getLoopLatch()));
2742 if (IncV)
2743 ChainInstruction(PN, IncV, ChainUsersVec);
2744 }
Andrew Trick248d4102012-01-09 21:18:52 +00002745 // Remove any unprofitable chains.
2746 unsigned ChainIdx = 0;
2747 for (unsigned UsersIdx = 0, NChains = IVChainVec.size();
2748 UsersIdx < NChains; ++UsersIdx) {
2749 if (!isProfitableChain(IVChainVec[UsersIdx],
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002750 ChainUsersVec[UsersIdx].FarUsers, SE, TTI))
Andrew Trick248d4102012-01-09 21:18:52 +00002751 continue;
2752 // Preserve the chain at UsesIdx.
2753 if (ChainIdx != UsersIdx)
2754 IVChainVec[ChainIdx] = IVChainVec[UsersIdx];
2755 FinalizeChain(IVChainVec[ChainIdx]);
2756 ++ChainIdx;
2757 }
2758 IVChainVec.resize(ChainIdx);
2759}
2760
2761void LSRInstance::FinalizeChain(IVChain &Chain) {
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002762 assert(!Chain.Incs.empty() && "empty IV chains are not allowed");
2763 DEBUG(dbgs() << "Final Chain: " << *Chain.Incs[0].UserInst << "\n");
Andrew Trick248d4102012-01-09 21:18:52 +00002764
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002765 for (IVChain::const_iterator I = Chain.begin(), E = Chain.end();
Andrew Trick248d4102012-01-09 21:18:52 +00002766 I != E; ++I) {
2767 DEBUG(dbgs() << " Inc: " << *I->UserInst << "\n");
2768 User::op_iterator UseI =
2769 std::find(I->UserInst->op_begin(), I->UserInst->op_end(), I->IVOperand);
2770 assert(UseI != I->UserInst->op_end() && "cannot find IV operand");
2771 IVIncSet.insert(UseI);
2772 }
2773}
2774
2775/// Return true if the IVInc can be folded into an addressing mode.
2776static bool canFoldIVIncExpr(const SCEV *IncExpr, Instruction *UserInst,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002777 Value *Operand, const TargetTransformInfo &TTI) {
Andrew Trick248d4102012-01-09 21:18:52 +00002778 const SCEVConstant *IncConst = dyn_cast<SCEVConstant>(IncExpr);
2779 if (!IncConst || !isAddressUse(UserInst, Operand))
2780 return false;
2781
2782 if (IncConst->getValue()->getValue().getMinSignedBits() > 64)
2783 return false;
2784
2785 int64_t IncOffset = IncConst->getValue()->getSExtValue();
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002786 if (!isAlwaysFoldable(TTI, LSRUse::Address,
2787 getAccessType(UserInst), /*BaseGV=*/ 0,
2788 IncOffset, /*HaseBaseReg=*/ false))
Andrew Trick248d4102012-01-09 21:18:52 +00002789 return false;
2790
2791 return true;
2792}
2793
2794/// GenerateIVChains - Generate an add or subtract for each IVInc in a chain to
2795/// materialize the IV user's operand from the previous IV user's operand.
2796void LSRInstance::GenerateIVChain(const IVChain &Chain, SCEVExpander &Rewriter,
2797 SmallVectorImpl<WeakVH> &DeadInsts) {
2798 // Find the new IVOperand for the head of the chain. It may have been replaced
2799 // by LSR.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002800 const IVInc &Head = Chain.Incs[0];
Andrew Trick248d4102012-01-09 21:18:52 +00002801 User::op_iterator IVOpEnd = Head.UserInst->op_end();
Andrew Trickf3a25442013-03-19 05:10:27 +00002802 // findIVOperand returns IVOpEnd if it can no longer find a valid IV user.
Andrew Trick248d4102012-01-09 21:18:52 +00002803 User::op_iterator IVOpIter = findIVOperand(Head.UserInst->op_begin(),
2804 IVOpEnd, L, SE);
2805 Value *IVSrc = 0;
Andrew Trickf3a25442013-03-19 05:10:27 +00002806 while (IVOpIter != IVOpEnd) {
Andrew Trick248d4102012-01-09 21:18:52 +00002807 IVSrc = getWideOperand(*IVOpIter);
2808
2809 // If this operand computes the expression that the chain needs, we may use
2810 // it. (Check this after setting IVSrc which is used below.)
2811 //
2812 // Note that if Head.IncExpr is wider than IVSrc, then this phi is too
2813 // narrow for the chain, so we can no longer use it. We do allow using a
2814 // wider phi, assuming the LSR checked for free truncation. In that case we
2815 // should already have a truncate on this operand such that
2816 // getSCEV(IVSrc) == IncExpr.
2817 if (SE.getSCEV(*IVOpIter) == Head.IncExpr
2818 || SE.getSCEV(IVSrc) == Head.IncExpr) {
2819 break;
2820 }
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002821 IVOpIter = findIVOperand(std::next(IVOpIter), IVOpEnd, L, SE);
Andrew Trickf3a25442013-03-19 05:10:27 +00002822 }
Andrew Trick248d4102012-01-09 21:18:52 +00002823 if (IVOpIter == IVOpEnd) {
2824 // Gracefully give up on this chain.
2825 DEBUG(dbgs() << "Concealed chain head: " << *Head.UserInst << "\n");
2826 return;
2827 }
2828
2829 DEBUG(dbgs() << "Generate chain at: " << *IVSrc << "\n");
2830 Type *IVTy = IVSrc->getType();
2831 Type *IntTy = SE.getEffectiveSCEVType(IVTy);
2832 const SCEV *LeftOverExpr = 0;
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002833 for (IVChain::const_iterator IncI = Chain.begin(),
Andrew Trick248d4102012-01-09 21:18:52 +00002834 IncE = Chain.end(); IncI != IncE; ++IncI) {
2835
2836 Instruction *InsertPt = IncI->UserInst;
2837 if (isa<PHINode>(InsertPt))
2838 InsertPt = L->getLoopLatch()->getTerminator();
2839
2840 // IVOper will replace the current IV User's operand. IVSrc is the IV
2841 // value currently held in a register.
2842 Value *IVOper = IVSrc;
2843 if (!IncI->IncExpr->isZero()) {
2844 // IncExpr was the result of subtraction of two narrow values, so must
2845 // be signed.
2846 const SCEV *IncExpr = SE.getNoopOrSignExtend(IncI->IncExpr, IntTy);
2847 LeftOverExpr = LeftOverExpr ?
2848 SE.getAddExpr(LeftOverExpr, IncExpr) : IncExpr;
2849 }
2850 if (LeftOverExpr && !LeftOverExpr->isZero()) {
2851 // Expand the IV increment.
2852 Rewriter.clearPostInc();
2853 Value *IncV = Rewriter.expandCodeFor(LeftOverExpr, IntTy, InsertPt);
2854 const SCEV *IVOperExpr = SE.getAddExpr(SE.getUnknown(IVSrc),
2855 SE.getUnknown(IncV));
2856 IVOper = Rewriter.expandCodeFor(IVOperExpr, IVTy, InsertPt);
2857
2858 // If an IV increment can't be folded, use it as the next IV value.
2859 if (!canFoldIVIncExpr(LeftOverExpr, IncI->UserInst, IncI->IVOperand,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002860 TTI)) {
Andrew Trick248d4102012-01-09 21:18:52 +00002861 assert(IVTy == IVOper->getType() && "inconsistent IV increment type");
2862 IVSrc = IVOper;
2863 LeftOverExpr = 0;
2864 }
2865 }
2866 Type *OperTy = IncI->IVOperand->getType();
2867 if (IVTy != OperTy) {
2868 assert(SE.getTypeSizeInBits(IVTy) >= SE.getTypeSizeInBits(OperTy) &&
2869 "cannot extend a chained IV");
2870 IRBuilder<> Builder(InsertPt);
2871 IVOper = Builder.CreateTruncOrBitCast(IVOper, OperTy, "lsr.chain");
2872 }
2873 IncI->UserInst->replaceUsesOfWith(IncI->IVOperand, IVOper);
2874 DeadInsts.push_back(IncI->IVOperand);
2875 }
2876 // If LSR created a new, wider phi, we may also replace its postinc. We only
2877 // do this if we also found a wide value for the head of the chain.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002878 if (isa<PHINode>(Chain.tailUserInst())) {
Andrew Trick248d4102012-01-09 21:18:52 +00002879 for (BasicBlock::iterator I = L->getHeader()->begin();
2880 PHINode *Phi = dyn_cast<PHINode>(I); ++I) {
2881 if (!isCompatibleIVType(Phi, IVSrc))
2882 continue;
2883 Instruction *PostIncV = dyn_cast<Instruction>(
2884 Phi->getIncomingValueForBlock(L->getLoopLatch()));
2885 if (!PostIncV || (SE.getSCEV(PostIncV) != SE.getSCEV(IVSrc)))
2886 continue;
2887 Value *IVOper = IVSrc;
2888 Type *PostIncTy = PostIncV->getType();
2889 if (IVTy != PostIncTy) {
2890 assert(PostIncTy->isPointerTy() && "mixing int/ptr IV types");
2891 IRBuilder<> Builder(L->getLoopLatch()->getTerminator());
2892 Builder.SetCurrentDebugLocation(PostIncV->getDebugLoc());
2893 IVOper = Builder.CreatePointerCast(IVSrc, PostIncTy, "lsr.chain");
2894 }
2895 Phi->replaceUsesOfWith(PostIncV, IVOper);
2896 DeadInsts.push_back(PostIncV);
2897 }
2898 }
Andrew Trick29fe5f02012-01-09 19:50:34 +00002899}
2900
Dan Gohman45774ce2010-02-12 10:34:29 +00002901void LSRInstance::CollectFixupsAndInitialFormulae() {
2902 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) {
Andrew Trick248d4102012-01-09 21:18:52 +00002903 Instruction *UserInst = UI->getUser();
2904 // Skip IV users that are part of profitable IV Chains.
2905 User::op_iterator UseI = std::find(UserInst->op_begin(), UserInst->op_end(),
2906 UI->getOperandValToReplace());
2907 assert(UseI != UserInst->op_end() && "cannot find IV operand");
2908 if (IVIncSet.count(UseI))
2909 continue;
2910
Dan Gohman45774ce2010-02-12 10:34:29 +00002911 // Record the uses.
2912 LSRFixup &LF = getNewFixup();
Andrew Trick248d4102012-01-09 21:18:52 +00002913 LF.UserInst = UserInst;
Dan Gohman45774ce2010-02-12 10:34:29 +00002914 LF.OperandValToReplace = UI->getOperandValToReplace();
Dan Gohmand006ab92010-04-07 22:27:08 +00002915 LF.PostIncLoops = UI->getPostIncLoops();
Dan Gohman45774ce2010-02-12 10:34:29 +00002916
2917 LSRUse::KindType Kind = LSRUse::Basic;
Chris Lattner229907c2011-07-18 04:54:35 +00002918 Type *AccessTy = 0;
Dan Gohman45774ce2010-02-12 10:34:29 +00002919 if (isAddressUse(LF.UserInst, LF.OperandValToReplace)) {
2920 Kind = LSRUse::Address;
2921 AccessTy = getAccessType(LF.UserInst);
2922 }
2923
Dan Gohmane637ff52010-04-19 21:48:58 +00002924 const SCEV *S = IU.getExpr(*UI);
Dan Gohman45774ce2010-02-12 10:34:29 +00002925
2926 // Equality (== and !=) ICmps are special. We can rewrite (i == N) as
2927 // (N - i == 0), and this allows (N - i) to be the expression that we work
2928 // with rather than just N or i, so we can consider the register
2929 // requirements for both N and i at the same time. Limiting this code to
2930 // equality icmps is not a problem because all interesting loops use
2931 // equality icmps, thanks to IndVarSimplify.
2932 if (ICmpInst *CI = dyn_cast<ICmpInst>(LF.UserInst))
2933 if (CI->isEquality()) {
2934 // Swap the operands if needed to put the OperandValToReplace on the
2935 // left, for consistency.
2936 Value *NV = CI->getOperand(1);
2937 if (NV == LF.OperandValToReplace) {
2938 CI->setOperand(1, CI->getOperand(0));
2939 CI->setOperand(0, NV);
Dan Gohmanee2fea32010-05-20 19:26:52 +00002940 NV = CI->getOperand(1);
Dan Gohmanfdf98742010-05-20 19:16:03 +00002941 Changed = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00002942 }
2943
2944 // x == y --> x - y == 0
2945 const SCEV *N = SE.getSCEV(NV);
Andrew Trick57243da2013-10-25 21:35:56 +00002946 if (SE.isLoopInvariant(N, L) && isSafeToExpand(N, SE)) {
Dan Gohman3268e4d2011-05-18 21:02:18 +00002947 // S is normalized, so normalize N before folding it into S
2948 // to keep the result normalized.
2949 N = TransformForPostIncUse(Normalize, N, CI, 0,
2950 LF.PostIncLoops, SE, DT);
Dan Gohman45774ce2010-02-12 10:34:29 +00002951 Kind = LSRUse::ICmpZero;
2952 S = SE.getMinusSCEV(N, S);
2953 }
2954
2955 // -1 and the negations of all interesting strides (except the negation
2956 // of -1) are now also interesting.
2957 for (size_t i = 0, e = Factors.size(); i != e; ++i)
2958 if (Factors[i] != -1)
2959 Factors.insert(-(uint64_t)Factors[i]);
2960 Factors.insert(-1);
2961 }
2962
2963 // Set up the initial formula for this use.
2964 std::pair<size_t, int64_t> P = getUse(S, Kind, AccessTy);
2965 LF.LUIdx = P.first;
2966 LF.Offset = P.second;
2967 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohmand006ab92010-04-07 22:27:08 +00002968 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohman14152082010-07-15 20:24:58 +00002969 if (!LU.WidestFixupType ||
2970 SE.getTypeSizeInBits(LU.WidestFixupType) <
2971 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
2972 LU.WidestFixupType = LF.OperandValToReplace->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00002973
2974 // If this is the first use of this LSRUse, give it a formula.
2975 if (LU.Formulae.empty()) {
Dan Gohman8c16b382010-02-22 04:11:59 +00002976 InsertInitialFormula(S, LU, LF.LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00002977 CountRegisters(LU.Formulae.back(), LF.LUIdx);
2978 }
2979 }
2980
2981 DEBUG(print_fixups(dbgs()));
2982}
2983
Dan Gohmana4ca28a2010-05-20 20:52:00 +00002984/// InsertInitialFormula - Insert a formula for the given expression into
2985/// the given use, separating out loop-variant portions from loop-invariant
2986/// and loop-computable portions.
Dan Gohman45774ce2010-02-12 10:34:29 +00002987void
Dan Gohman8c16b382010-02-22 04:11:59 +00002988LSRInstance::InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx) {
Andrew Trick57243da2013-10-25 21:35:56 +00002989 // Mark uses whose expressions cannot be expanded.
2990 if (!isSafeToExpand(S, SE))
2991 LU.RigidFormula = true;
2992
Dan Gohman45774ce2010-02-12 10:34:29 +00002993 Formula F;
Dan Gohman20d9ce22010-11-17 21:41:58 +00002994 F.InitialMatch(S, L, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +00002995 bool Inserted = InsertFormula(LU, LUIdx, F);
2996 assert(Inserted && "Initial formula already exists!"); (void)Inserted;
2997}
2998
Dan Gohmana4ca28a2010-05-20 20:52:00 +00002999/// InsertSupplementalFormula - Insert a simple single-register formula for
3000/// the given expression into the given use.
Dan Gohman45774ce2010-02-12 10:34:29 +00003001void
3002LSRInstance::InsertSupplementalFormula(const SCEV *S,
3003 LSRUse &LU, size_t LUIdx) {
3004 Formula F;
3005 F.BaseRegs.push_back(S);
Chandler Carruth7e31c8f2013-01-12 23:46:04 +00003006 F.HasBaseReg = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00003007 bool Inserted = InsertFormula(LU, LUIdx, F);
3008 assert(Inserted && "Supplemental formula already exists!"); (void)Inserted;
3009}
3010
3011/// CountRegisters - Note which registers are used by the given formula,
3012/// updating RegUses.
3013void LSRInstance::CountRegisters(const Formula &F, size_t LUIdx) {
3014 if (F.ScaledReg)
3015 RegUses.CountRegister(F.ScaledReg, LUIdx);
3016 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
3017 E = F.BaseRegs.end(); I != E; ++I)
3018 RegUses.CountRegister(*I, LUIdx);
3019}
3020
3021/// InsertFormula - If the given formula has not yet been inserted, add it to
3022/// the list, and return true. Return false otherwise.
3023bool LSRInstance::InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F) {
Dan Gohman8c16b382010-02-22 04:11:59 +00003024 if (!LU.InsertFormula(F))
Dan Gohman45774ce2010-02-12 10:34:29 +00003025 return false;
3026
3027 CountRegisters(F, LUIdx);
3028 return true;
3029}
3030
3031/// CollectLoopInvariantFixupsAndFormulae - Check for other uses of
3032/// loop-invariant values which we're tracking. These other uses will pin these
3033/// values in registers, making them less profitable for elimination.
3034/// TODO: This currently misses non-constant addrec step registers.
3035/// TODO: Should this give more weight to users inside the loop?
3036void
3037LSRInstance::CollectLoopInvariantFixupsAndFormulae() {
3038 SmallVector<const SCEV *, 8> Worklist(RegUses.begin(), RegUses.end());
3039 SmallPtrSet<const SCEV *, 8> Inserted;
3040
3041 while (!Worklist.empty()) {
3042 const SCEV *S = Worklist.pop_back_val();
3043
3044 if (const SCEVNAryExpr *N = dyn_cast<SCEVNAryExpr>(S))
Dan Gohmandd41bba2010-06-21 19:47:52 +00003045 Worklist.append(N->op_begin(), N->op_end());
Dan Gohman45774ce2010-02-12 10:34:29 +00003046 else if (const SCEVCastExpr *C = dyn_cast<SCEVCastExpr>(S))
3047 Worklist.push_back(C->getOperand());
3048 else if (const SCEVUDivExpr *D = dyn_cast<SCEVUDivExpr>(S)) {
3049 Worklist.push_back(D->getLHS());
3050 Worklist.push_back(D->getRHS());
3051 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
3052 if (!Inserted.insert(U)) continue;
3053 const Value *V = U->getValue();
Dan Gohman67b44032010-06-04 23:16:05 +00003054 if (const Instruction *Inst = dyn_cast<Instruction>(V)) {
3055 // Look for instructions defined outside the loop.
Dan Gohman45774ce2010-02-12 10:34:29 +00003056 if (L->contains(Inst)) continue;
Dan Gohman67b44032010-06-04 23:16:05 +00003057 } else if (isa<UndefValue>(V))
3058 // Undef doesn't have a live range, so it doesn't matter.
3059 continue;
Gabor Greifc78d7202010-03-25 23:06:16 +00003060 for (Value::const_use_iterator UI = V->use_begin(), UE = V->use_end();
Dan Gohman45774ce2010-02-12 10:34:29 +00003061 UI != UE; ++UI) {
3062 const Instruction *UserInst = dyn_cast<Instruction>(*UI);
3063 // Ignore non-instructions.
3064 if (!UserInst)
Dan Gohman045f8192010-01-22 00:46:49 +00003065 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003066 // Ignore instructions in other functions (as can happen with
3067 // Constants).
3068 if (UserInst->getParent()->getParent() != L->getHeader()->getParent())
Dan Gohman045f8192010-01-22 00:46:49 +00003069 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003070 // Ignore instructions not dominated by the loop.
3071 const BasicBlock *UseBB = !isa<PHINode>(UserInst) ?
3072 UserInst->getParent() :
3073 cast<PHINode>(UserInst)->getIncomingBlock(
3074 PHINode::getIncomingValueNumForOperand(UI.getOperandNo()));
3075 if (!DT.dominates(L->getHeader(), UseBB))
3076 continue;
3077 // Ignore uses which are part of other SCEV expressions, to avoid
3078 // analyzing them multiple times.
Dan Gohman42ec4eb2010-04-09 19:12:34 +00003079 if (SE.isSCEVable(UserInst->getType())) {
3080 const SCEV *UserS = SE.getSCEV(const_cast<Instruction *>(UserInst));
3081 // If the user is a no-op, look through to its uses.
3082 if (!isa<SCEVUnknown>(UserS))
3083 continue;
3084 if (UserS == U) {
3085 Worklist.push_back(
3086 SE.getUnknown(const_cast<Instruction *>(UserInst)));
3087 continue;
3088 }
3089 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003090 // Ignore icmp instructions which are already being analyzed.
3091 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UserInst)) {
3092 unsigned OtherIdx = !UI.getOperandNo();
3093 Value *OtherOp = const_cast<Value *>(ICI->getOperand(OtherIdx));
Dan Gohmanafd6db92010-11-17 21:23:15 +00003094 if (SE.hasComputableLoopEvolution(SE.getSCEV(OtherOp), L))
Dan Gohman45774ce2010-02-12 10:34:29 +00003095 continue;
3096 }
3097
3098 LSRFixup &LF = getNewFixup();
3099 LF.UserInst = const_cast<Instruction *>(UserInst);
3100 LF.OperandValToReplace = UI.getUse();
3101 std::pair<size_t, int64_t> P = getUse(S, LSRUse::Basic, 0);
3102 LF.LUIdx = P.first;
3103 LF.Offset = P.second;
3104 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohmand006ab92010-04-07 22:27:08 +00003105 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohman14152082010-07-15 20:24:58 +00003106 if (!LU.WidestFixupType ||
3107 SE.getTypeSizeInBits(LU.WidestFixupType) <
3108 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
3109 LU.WidestFixupType = LF.OperandValToReplace->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003110 InsertSupplementalFormula(U, LU, LF.LUIdx);
3111 CountRegisters(LU.Formulae.back(), Uses.size() - 1);
3112 break;
3113 }
3114 }
3115 }
3116}
3117
3118/// CollectSubexprs - Split S into subexpressions which can be pulled out into
3119/// separate registers. If C is non-null, multiply each subexpression by C.
Andrew Trickc8037062012-07-17 05:30:37 +00003120///
3121/// Return remainder expression after factoring the subexpressions captured by
3122/// Ops. If Ops is complete, return NULL.
3123static const SCEV *CollectSubexprs(const SCEV *S, const SCEVConstant *C,
3124 SmallVectorImpl<const SCEV *> &Ops,
3125 const Loop *L,
3126 ScalarEvolution &SE,
3127 unsigned Depth = 0) {
3128 // Arbitrarily cap recursion to protect compile time.
3129 if (Depth >= 3)
3130 return S;
3131
Dan Gohman45774ce2010-02-12 10:34:29 +00003132 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
3133 // Break out add operands.
3134 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
Andrew Trickc8037062012-07-17 05:30:37 +00003135 I != E; ++I) {
3136 const SCEV *Remainder = CollectSubexprs(*I, C, Ops, L, SE, Depth+1);
3137 if (Remainder)
3138 Ops.push_back(C ? SE.getMulExpr(C, Remainder) : Remainder);
3139 }
Jakub Staszak4898e622013-06-15 12:20:44 +00003140 return 0;
Dan Gohman45774ce2010-02-12 10:34:29 +00003141 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
3142 // Split a non-zero base out of an addrec.
Andrew Trickc8037062012-07-17 05:30:37 +00003143 if (AR->getStart()->isZero())
3144 return S;
3145
3146 const SCEV *Remainder = CollectSubexprs(AR->getStart(),
3147 C, Ops, L, SE, Depth+1);
3148 // Split the non-zero AddRec unless it is part of a nested recurrence that
3149 // does not pertain to this loop.
3150 if (Remainder && (AR->getLoop() == L || !isa<SCEVAddRecExpr>(Remainder))) {
3151 Ops.push_back(C ? SE.getMulExpr(C, Remainder) : Remainder);
Jakub Staszak4898e622013-06-15 12:20:44 +00003152 Remainder = 0;
Andrew Trickc8037062012-07-17 05:30:37 +00003153 }
3154 if (Remainder != AR->getStart()) {
3155 if (!Remainder)
3156 Remainder = SE.getConstant(AR->getType(), 0);
3157 return SE.getAddRecExpr(Remainder,
3158 AR->getStepRecurrence(SE),
3159 AR->getLoop(),
3160 //FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
3161 SCEV::FlagAnyWrap);
Dan Gohman45774ce2010-02-12 10:34:29 +00003162 }
3163 } else if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
3164 // Break (C * (a + b + c)) into C*a + C*b + C*c.
Andrew Trickc8037062012-07-17 05:30:37 +00003165 if (Mul->getNumOperands() != 2)
3166 return S;
3167 if (const SCEVConstant *Op0 =
3168 dyn_cast<SCEVConstant>(Mul->getOperand(0))) {
3169 C = C ? cast<SCEVConstant>(SE.getMulExpr(C, Op0)) : Op0;
3170 const SCEV *Remainder =
3171 CollectSubexprs(Mul->getOperand(1), C, Ops, L, SE, Depth+1);
3172 if (Remainder)
3173 Ops.push_back(SE.getMulExpr(C, Remainder));
Jakub Staszak4898e622013-06-15 12:20:44 +00003174 return 0;
Andrew Trickc8037062012-07-17 05:30:37 +00003175 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003176 }
Andrew Trickc8037062012-07-17 05:30:37 +00003177 return S;
Dan Gohman45774ce2010-02-12 10:34:29 +00003178}
3179
3180/// GenerateReassociations - Split out subexpressions from adds and the bases of
3181/// addrecs.
3182void LSRInstance::GenerateReassociations(LSRUse &LU, unsigned LUIdx,
3183 Formula Base,
3184 unsigned Depth) {
3185 // Arbitrarily cap recursion to protect compile time.
3186 if (Depth >= 3) return;
3187
3188 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
3189 const SCEV *BaseReg = Base.BaseRegs[i];
3190
Dan Gohman89fdbaf2010-08-16 15:50:00 +00003191 SmallVector<const SCEV *, 8> AddOps;
Andrew Trickc8037062012-07-17 05:30:37 +00003192 const SCEV *Remainder = CollectSubexprs(BaseReg, 0, AddOps, L, SE);
3193 if (Remainder)
3194 AddOps.push_back(Remainder);
Dan Gohmanfb9712b2010-06-25 22:32:18 +00003195
Dan Gohman45774ce2010-02-12 10:34:29 +00003196 if (AddOps.size() == 1) continue;
3197
3198 for (SmallVectorImpl<const SCEV *>::const_iterator J = AddOps.begin(),
3199 JE = AddOps.end(); J != JE; ++J) {
Dan Gohman89fdbaf2010-08-16 15:50:00 +00003200
3201 // Loop-variant "unknown" values are uninteresting; we won't be able to
3202 // do anything meaningful with them.
Dan Gohmanafd6db92010-11-17 21:23:15 +00003203 if (isa<SCEVUnknown>(*J) && !SE.isLoopInvariant(*J, L))
Dan Gohman89fdbaf2010-08-16 15:50:00 +00003204 continue;
3205
Dan Gohman45774ce2010-02-12 10:34:29 +00003206 // Don't pull a constant into a register if the constant could be folded
3207 // into an immediate field.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003208 if (isAlwaysFoldable(TTI, SE, LU.MinOffset, LU.MaxOffset, LU.Kind,
3209 LU.AccessTy, *J, Base.getNumRegs() > 1))
Dan Gohman45774ce2010-02-12 10:34:29 +00003210 continue;
3211
3212 // Collect all operands except *J.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00003213 SmallVector<const SCEV *, 8> InnerAddOps(
3214 ((const SmallVector<const SCEV *, 8> &)AddOps).begin(), J);
3215 InnerAddOps.append(std::next(J),
3216 ((const SmallVector<const SCEV *, 8> &)AddOps).end());
Dan Gohman45774ce2010-02-12 10:34:29 +00003217
3218 // Don't leave just a constant behind in a register if the constant could
3219 // be folded into an immediate field.
3220 if (InnerAddOps.size() == 1 &&
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003221 isAlwaysFoldable(TTI, SE, LU.MinOffset, LU.MaxOffset, LU.Kind,
3222 LU.AccessTy, InnerAddOps[0], Base.getNumRegs() > 1))
Dan Gohman45774ce2010-02-12 10:34:29 +00003223 continue;
3224
Dan Gohman997bbc52010-04-23 01:55:05 +00003225 const SCEV *InnerSum = SE.getAddExpr(InnerAddOps);
3226 if (InnerSum->isZero())
3227 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003228 Formula F = Base;
Dan Gohman6136e942011-05-03 00:46:49 +00003229
3230 // Add the remaining pieces of the add back into the new formula.
3231 const SCEVConstant *InnerSumSC = dyn_cast<SCEVConstant>(InnerSum);
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003232 if (InnerSumSC &&
Dan Gohman6136e942011-05-03 00:46:49 +00003233 SE.getTypeSizeInBits(InnerSumSC->getType()) <= 64 &&
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003234 TTI.isLegalAddImmediate((uint64_t)F.UnfoldedOffset +
3235 InnerSumSC->getValue()->getZExtValue())) {
Dan Gohman6136e942011-05-03 00:46:49 +00003236 F.UnfoldedOffset = (uint64_t)F.UnfoldedOffset +
3237 InnerSumSC->getValue()->getZExtValue();
3238 F.BaseRegs.erase(F.BaseRegs.begin() + i);
3239 } else
3240 F.BaseRegs[i] = InnerSum;
3241
3242 // Add J as its own register, or an unfolded immediate.
3243 const SCEVConstant *SC = dyn_cast<SCEVConstant>(*J);
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003244 if (SC && SE.getTypeSizeInBits(SC->getType()) <= 64 &&
3245 TTI.isLegalAddImmediate((uint64_t)F.UnfoldedOffset +
3246 SC->getValue()->getZExtValue()))
Dan Gohman6136e942011-05-03 00:46:49 +00003247 F.UnfoldedOffset = (uint64_t)F.UnfoldedOffset +
3248 SC->getValue()->getZExtValue();
3249 else
3250 F.BaseRegs.push_back(*J);
3251
Dan Gohman45774ce2010-02-12 10:34:29 +00003252 if (InsertFormula(LU, LUIdx, F))
3253 // If that formula hadn't been seen before, recurse to find more like
3254 // it.
3255 GenerateReassociations(LU, LUIdx, LU.Formulae.back(), Depth+1);
3256 }
3257 }
3258}
3259
3260/// GenerateCombinations - Generate a formula consisting of all of the
3261/// loop-dominating registers added into a single register.
3262void LSRInstance::GenerateCombinations(LSRUse &LU, unsigned LUIdx,
Dan Gohmane4e51a62010-02-14 18:51:39 +00003263 Formula Base) {
Dan Gohman8b0a4192010-03-01 17:49:51 +00003264 // This method is only interesting on a plurality of registers.
Dan Gohman45774ce2010-02-12 10:34:29 +00003265 if (Base.BaseRegs.size() <= 1) return;
3266
3267 Formula F = Base;
3268 F.BaseRegs.clear();
3269 SmallVector<const SCEV *, 4> Ops;
3270 for (SmallVectorImpl<const SCEV *>::const_iterator
3271 I = Base.BaseRegs.begin(), E = Base.BaseRegs.end(); I != E; ++I) {
3272 const SCEV *BaseReg = *I;
Dan Gohman20d9ce22010-11-17 21:41:58 +00003273 if (SE.properlyDominates(BaseReg, L->getHeader()) &&
Dan Gohmanafd6db92010-11-17 21:23:15 +00003274 !SE.hasComputableLoopEvolution(BaseReg, L))
Dan Gohman45774ce2010-02-12 10:34:29 +00003275 Ops.push_back(BaseReg);
3276 else
3277 F.BaseRegs.push_back(BaseReg);
3278 }
3279 if (Ops.size() > 1) {
Dan Gohmanbb7d5222010-02-14 18:50:49 +00003280 const SCEV *Sum = SE.getAddExpr(Ops);
3281 // TODO: If Sum is zero, it probably means ScalarEvolution missed an
3282 // opportunity to fold something. For now, just ignore such cases
Dan Gohman8b0a4192010-03-01 17:49:51 +00003283 // rather than proceed with zero in a register.
Dan Gohmanbb7d5222010-02-14 18:50:49 +00003284 if (!Sum->isZero()) {
3285 F.BaseRegs.push_back(Sum);
3286 (void)InsertFormula(LU, LUIdx, F);
3287 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003288 }
3289}
3290
3291/// GenerateSymbolicOffsets - Generate reuse formulae using symbolic offsets.
3292void LSRInstance::GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx,
3293 Formula Base) {
3294 // We can't add a symbolic offset if the address already contains one.
Chandler Carruth6e479322013-01-07 15:04:40 +00003295 if (Base.BaseGV) return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003296
3297 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
3298 const SCEV *G = Base.BaseRegs[i];
3299 GlobalValue *GV = ExtractSymbol(G, SE);
3300 if (G->isZero() || !GV)
3301 continue;
3302 Formula F = Base;
Chandler Carruth6e479322013-01-07 15:04:40 +00003303 F.BaseGV = GV;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003304 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F))
Dan Gohman45774ce2010-02-12 10:34:29 +00003305 continue;
3306 F.BaseRegs[i] = G;
3307 (void)InsertFormula(LU, LUIdx, F);
3308 }
3309}
3310
3311/// GenerateConstantOffsets - Generate reuse formulae using symbolic offsets.
3312void LSRInstance::GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx,
3313 Formula Base) {
3314 // TODO: For now, just add the min and max offset, because it usually isn't
3315 // worthwhile looking at everything inbetween.
Dan Gohman4afd4122010-07-15 15:14:45 +00003316 SmallVector<int64_t, 2> Worklist;
Dan Gohman45774ce2010-02-12 10:34:29 +00003317 Worklist.push_back(LU.MinOffset);
3318 if (LU.MaxOffset != LU.MinOffset)
3319 Worklist.push_back(LU.MaxOffset);
3320
3321 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
3322 const SCEV *G = Base.BaseRegs[i];
3323
3324 for (SmallVectorImpl<int64_t>::const_iterator I = Worklist.begin(),
3325 E = Worklist.end(); I != E; ++I) {
3326 Formula F = Base;
Chandler Carruth6e479322013-01-07 15:04:40 +00003327 F.BaseOffset = (uint64_t)Base.BaseOffset - *I;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003328 if (isLegalUse(TTI, LU.MinOffset - *I, LU.MaxOffset - *I, LU.Kind,
3329 LU.AccessTy, F)) {
Dan Gohman4afd4122010-07-15 15:14:45 +00003330 // Add the offset to the base register.
Dan Gohman9b7632d2010-08-16 15:39:27 +00003331 const SCEV *NewG = SE.getAddExpr(SE.getConstant(G->getType(), *I), G);
Dan Gohman4afd4122010-07-15 15:14:45 +00003332 // If it cancelled out, drop the base register, otherwise update it.
3333 if (NewG->isZero()) {
3334 std::swap(F.BaseRegs[i], F.BaseRegs.back());
3335 F.BaseRegs.pop_back();
3336 } else
3337 F.BaseRegs[i] = NewG;
Dan Gohman45774ce2010-02-12 10:34:29 +00003338
3339 (void)InsertFormula(LU, LUIdx, F);
3340 }
3341 }
3342
3343 int64_t Imm = ExtractImmediate(G, SE);
3344 if (G->isZero() || Imm == 0)
3345 continue;
3346 Formula F = Base;
Chandler Carruth6e479322013-01-07 15:04:40 +00003347 F.BaseOffset = (uint64_t)F.BaseOffset + Imm;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003348 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F))
Dan Gohman45774ce2010-02-12 10:34:29 +00003349 continue;
3350 F.BaseRegs[i] = G;
3351 (void)InsertFormula(LU, LUIdx, F);
3352 }
3353}
3354
3355/// GenerateICmpZeroScales - For ICmpZero, check to see if we can scale up
3356/// the comparison. For example, x == y -> x*c == y*c.
3357void LSRInstance::GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx,
3358 Formula Base) {
3359 if (LU.Kind != LSRUse::ICmpZero) return;
3360
3361 // Determine the integer type for the base formula.
Chris Lattner229907c2011-07-18 04:54:35 +00003362 Type *IntTy = Base.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003363 if (!IntTy) return;
3364 if (SE.getTypeSizeInBits(IntTy) > 64) return;
3365
3366 // Don't do this if there is more than one offset.
3367 if (LU.MinOffset != LU.MaxOffset) return;
3368
Chandler Carruth6e479322013-01-07 15:04:40 +00003369 assert(!Base.BaseGV && "ICmpZero use is not legal!");
Dan Gohman45774ce2010-02-12 10:34:29 +00003370
3371 // Check each interesting stride.
3372 for (SmallSetVector<int64_t, 8>::const_iterator
3373 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
3374 int64_t Factor = *I;
Dan Gohman45774ce2010-02-12 10:34:29 +00003375
3376 // Check that the multiplication doesn't overflow.
Chandler Carruth6e479322013-01-07 15:04:40 +00003377 if (Base.BaseOffset == INT64_MIN && Factor == -1)
Dan Gohman5f10d6c2010-02-17 00:41:53 +00003378 continue;
Chandler Carruth6e479322013-01-07 15:04:40 +00003379 int64_t NewBaseOffset = (uint64_t)Base.BaseOffset * Factor;
3380 if (NewBaseOffset / Factor != Base.BaseOffset)
Dan Gohman45774ce2010-02-12 10:34:29 +00003381 continue;
Andrew Trick429e9ed2014-02-26 16:31:56 +00003382 // If the offset will be truncated at this use, check that it is in bounds.
3383 if (!IntTy->isPointerTy() &&
3384 !ConstantInt::isValueValidForType(IntTy, NewBaseOffset))
3385 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003386
3387 // Check that multiplying with the use offset doesn't overflow.
3388 int64_t Offset = LU.MinOffset;
Dan Gohman5f10d6c2010-02-17 00:41:53 +00003389 if (Offset == INT64_MIN && Factor == -1)
3390 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003391 Offset = (uint64_t)Offset * Factor;
Dan Gohman13ac3b22010-02-17 00:42:19 +00003392 if (Offset / Factor != LU.MinOffset)
Dan Gohman45774ce2010-02-12 10:34:29 +00003393 continue;
Andrew Trick429e9ed2014-02-26 16:31:56 +00003394 // If the offset will be truncated at this use, check that it is in bounds.
3395 if (!IntTy->isPointerTy() &&
3396 !ConstantInt::isValueValidForType(IntTy, Offset))
3397 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003398
Dan Gohman963b1c12010-06-24 16:57:52 +00003399 Formula F = Base;
Chandler Carruth6e479322013-01-07 15:04:40 +00003400 F.BaseOffset = NewBaseOffset;
Dan Gohman963b1c12010-06-24 16:57:52 +00003401
Dan Gohman45774ce2010-02-12 10:34:29 +00003402 // Check that this scale is legal.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003403 if (!isLegalUse(TTI, Offset, Offset, LU.Kind, LU.AccessTy, F))
Dan Gohman45774ce2010-02-12 10:34:29 +00003404 continue;
3405
3406 // Compensate for the use having MinOffset built into it.
Chandler Carruth6e479322013-01-07 15:04:40 +00003407 F.BaseOffset = (uint64_t)F.BaseOffset + Offset - LU.MinOffset;
Dan Gohman45774ce2010-02-12 10:34:29 +00003408
Dan Gohman1d2ded72010-05-03 22:09:21 +00003409 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman45774ce2010-02-12 10:34:29 +00003410
3411 // Check that multiplying with each base register doesn't overflow.
3412 for (size_t i = 0, e = F.BaseRegs.size(); i != e; ++i) {
3413 F.BaseRegs[i] = SE.getMulExpr(F.BaseRegs[i], FactorS);
Dan Gohman4eebb942010-02-19 19:35:48 +00003414 if (getExactSDiv(F.BaseRegs[i], FactorS, SE) != Base.BaseRegs[i])
Dan Gohman45774ce2010-02-12 10:34:29 +00003415 goto next;
3416 }
3417
3418 // Check that multiplying with the scaled register doesn't overflow.
3419 if (F.ScaledReg) {
3420 F.ScaledReg = SE.getMulExpr(F.ScaledReg, FactorS);
Dan Gohman4eebb942010-02-19 19:35:48 +00003421 if (getExactSDiv(F.ScaledReg, FactorS, SE) != Base.ScaledReg)
Dan Gohman45774ce2010-02-12 10:34:29 +00003422 continue;
3423 }
3424
Dan Gohman6136e942011-05-03 00:46:49 +00003425 // Check that multiplying with the unfolded offset doesn't overflow.
3426 if (F.UnfoldedOffset != 0) {
Dan Gohman6c4a3192011-05-23 21:07:39 +00003427 if (F.UnfoldedOffset == INT64_MIN && Factor == -1)
3428 continue;
Dan Gohman6136e942011-05-03 00:46:49 +00003429 F.UnfoldedOffset = (uint64_t)F.UnfoldedOffset * Factor;
3430 if (F.UnfoldedOffset / Factor != Base.UnfoldedOffset)
3431 continue;
Andrew Trick429e9ed2014-02-26 16:31:56 +00003432 // If the offset will be truncated, check that it is in bounds.
3433 if (!IntTy->isPointerTy() &&
3434 !ConstantInt::isValueValidForType(IntTy, F.UnfoldedOffset))
3435 continue;
Dan Gohman6136e942011-05-03 00:46:49 +00003436 }
3437
Dan Gohman45774ce2010-02-12 10:34:29 +00003438 // If we make it here and it's legal, add it.
3439 (void)InsertFormula(LU, LUIdx, F);
3440 next:;
3441 }
3442}
3443
3444/// GenerateScales - Generate stride factor reuse formulae by making use of
3445/// scaled-offset address modes, for example.
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00003446void LSRInstance::GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003447 // Determine the integer type for the base formula.
Chris Lattner229907c2011-07-18 04:54:35 +00003448 Type *IntTy = Base.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003449 if (!IntTy) return;
3450
3451 // If this Formula already has a scaled register, we can't add another one.
Chandler Carruth6e479322013-01-07 15:04:40 +00003452 if (Base.Scale != 0) return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003453
3454 // Check each interesting stride.
3455 for (SmallSetVector<int64_t, 8>::const_iterator
3456 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
3457 int64_t Factor = *I;
3458
Chandler Carruth6e479322013-01-07 15:04:40 +00003459 Base.Scale = Factor;
3460 Base.HasBaseReg = Base.BaseRegs.size() > 1;
Dan Gohman45774ce2010-02-12 10:34:29 +00003461 // Check whether this scale is going to be legal.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003462 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
3463 Base)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003464 // As a special-case, handle special out-of-loop Basic users specially.
3465 // TODO: Reconsider this special case.
3466 if (LU.Kind == LSRUse::Basic &&
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003467 isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LSRUse::Special,
3468 LU.AccessTy, Base) &&
Dan Gohman45774ce2010-02-12 10:34:29 +00003469 LU.AllFixupsOutsideLoop)
3470 LU.Kind = LSRUse::Special;
3471 else
3472 continue;
3473 }
3474 // For an ICmpZero, negating a solitary base register won't lead to
3475 // new solutions.
3476 if (LU.Kind == LSRUse::ICmpZero &&
Chandler Carruth6e479322013-01-07 15:04:40 +00003477 !Base.HasBaseReg && Base.BaseOffset == 0 && !Base.BaseGV)
Dan Gohman45774ce2010-02-12 10:34:29 +00003478 continue;
3479 // For each addrec base reg, apply the scale, if possible.
3480 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3481 if (const SCEVAddRecExpr *AR =
3482 dyn_cast<SCEVAddRecExpr>(Base.BaseRegs[i])) {
Dan Gohman1d2ded72010-05-03 22:09:21 +00003483 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman45774ce2010-02-12 10:34:29 +00003484 if (FactorS->isZero())
3485 continue;
3486 // Divide out the factor, ignoring high bits, since we'll be
3487 // scaling the value back up in the end.
Dan Gohman4eebb942010-02-19 19:35:48 +00003488 if (const SCEV *Quotient = getExactSDiv(AR, FactorS, SE, true)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003489 // TODO: This could be optimized to avoid all the copying.
3490 Formula F = Base;
3491 F.ScaledReg = Quotient;
Dan Gohman80a96082010-05-20 15:17:54 +00003492 F.DeleteBaseReg(F.BaseRegs[i]);
Dan Gohman45774ce2010-02-12 10:34:29 +00003493 (void)InsertFormula(LU, LUIdx, F);
3494 }
3495 }
3496 }
3497}
3498
3499/// GenerateTruncates - Generate reuse formulae from different IV types.
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00003500void LSRInstance::GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003501 // Don't bother truncating symbolic values.
Chandler Carruth6e479322013-01-07 15:04:40 +00003502 if (Base.BaseGV) return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003503
3504 // Determine the integer type for the base formula.
Chris Lattner229907c2011-07-18 04:54:35 +00003505 Type *DstTy = Base.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003506 if (!DstTy) return;
3507 DstTy = SE.getEffectiveSCEVType(DstTy);
3508
Chris Lattner229907c2011-07-18 04:54:35 +00003509 for (SmallSetVector<Type *, 4>::const_iterator
Dan Gohman45774ce2010-02-12 10:34:29 +00003510 I = Types.begin(), E = Types.end(); I != E; ++I) {
Chris Lattner229907c2011-07-18 04:54:35 +00003511 Type *SrcTy = *I;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003512 if (SrcTy != DstTy && TTI.isTruncateFree(SrcTy, DstTy)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003513 Formula F = Base;
3514
3515 if (F.ScaledReg) F.ScaledReg = SE.getAnyExtendExpr(F.ScaledReg, *I);
3516 for (SmallVectorImpl<const SCEV *>::iterator J = F.BaseRegs.begin(),
3517 JE = F.BaseRegs.end(); J != JE; ++J)
3518 *J = SE.getAnyExtendExpr(*J, SrcTy);
3519
3520 // TODO: This assumes we've done basic processing on all uses and
3521 // have an idea what the register usage is.
3522 if (!F.hasRegsUsedByUsesOtherThan(LUIdx, RegUses))
3523 continue;
3524
3525 (void)InsertFormula(LU, LUIdx, F);
3526 }
3527 }
3528}
3529
3530namespace {
3531
Dan Gohmane7f74bb2010-02-14 18:51:20 +00003532/// WorkItem - Helper class for GenerateCrossUseConstantOffsets. It's used to
Dan Gohman45774ce2010-02-12 10:34:29 +00003533/// defer modifications so that the search phase doesn't have to worry about
3534/// the data structures moving underneath it.
3535struct WorkItem {
3536 size_t LUIdx;
3537 int64_t Imm;
3538 const SCEV *OrigReg;
3539
3540 WorkItem(size_t LI, int64_t I, const SCEV *R)
3541 : LUIdx(LI), Imm(I), OrigReg(R) {}
3542
3543 void print(raw_ostream &OS) const;
3544 void dump() const;
3545};
3546
3547}
3548
3549void WorkItem::print(raw_ostream &OS) const {
3550 OS << "in formulae referencing " << *OrigReg << " in use " << LUIdx
3551 << " , add offset " << Imm;
3552}
3553
Manman Ren49d684e2012-09-12 05:06:18 +00003554#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +00003555void WorkItem::dump() const {
3556 print(errs()); errs() << '\n';
3557}
Manman Renc3366cc2012-09-06 19:55:56 +00003558#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00003559
3560/// GenerateCrossUseConstantOffsets - Look for registers which are a constant
3561/// distance apart and try to form reuse opportunities between them.
3562void LSRInstance::GenerateCrossUseConstantOffsets() {
3563 // Group the registers by their value without any added constant offset.
3564 typedef std::map<int64_t, const SCEV *> ImmMapTy;
3565 typedef DenseMap<const SCEV *, ImmMapTy> RegMapTy;
3566 RegMapTy Map;
3567 DenseMap<const SCEV *, SmallBitVector> UsedByIndicesMap;
3568 SmallVector<const SCEV *, 8> Sequence;
3569 for (RegUseTracker::const_iterator I = RegUses.begin(), E = RegUses.end();
3570 I != E; ++I) {
3571 const SCEV *Reg = *I;
3572 int64_t Imm = ExtractImmediate(Reg, SE);
3573 std::pair<RegMapTy::iterator, bool> Pair =
3574 Map.insert(std::make_pair(Reg, ImmMapTy()));
3575 if (Pair.second)
3576 Sequence.push_back(Reg);
3577 Pair.first->second.insert(std::make_pair(Imm, *I));
3578 UsedByIndicesMap[Reg] |= RegUses.getUsedByIndices(*I);
3579 }
3580
3581 // Now examine each set of registers with the same base value. Build up
3582 // a list of work to do and do the work in a separate step so that we're
3583 // not adding formulae and register counts while we're searching.
Dan Gohman110ed642010-09-01 01:45:53 +00003584 SmallVector<WorkItem, 32> WorkItems;
3585 SmallSet<std::pair<size_t, int64_t>, 32> UniqueItems;
Dan Gohman45774ce2010-02-12 10:34:29 +00003586 for (SmallVectorImpl<const SCEV *>::const_iterator I = Sequence.begin(),
3587 E = Sequence.end(); I != E; ++I) {
3588 const SCEV *Reg = *I;
3589 const ImmMapTy &Imms = Map.find(Reg)->second;
3590
Dan Gohman363f8472010-02-12 19:20:37 +00003591 // It's not worthwhile looking for reuse if there's only one offset.
3592 if (Imms.size() == 1)
3593 continue;
3594
Dan Gohman45774ce2010-02-12 10:34:29 +00003595 DEBUG(dbgs() << "Generating cross-use offsets for " << *Reg << ':';
3596 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
3597 J != JE; ++J)
3598 dbgs() << ' ' << J->first;
3599 dbgs() << '\n');
3600
3601 // Examine each offset.
3602 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
3603 J != JE; ++J) {
3604 const SCEV *OrigReg = J->second;
3605
3606 int64_t JImm = J->first;
3607 const SmallBitVector &UsedByIndices = RegUses.getUsedByIndices(OrigReg);
3608
3609 if (!isa<SCEVConstant>(OrigReg) &&
3610 UsedByIndicesMap[Reg].count() == 1) {
3611 DEBUG(dbgs() << "Skipping cross-use reuse for " << *OrigReg << '\n');
3612 continue;
3613 }
3614
3615 // Conservatively examine offsets between this orig reg a few selected
3616 // other orig regs.
3617 ImmMapTy::const_iterator OtherImms[] = {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00003618 Imms.begin(), std::prev(Imms.end()),
3619 Imms.lower_bound((Imms.begin()->first + std::prev(Imms.end())->first) /
3620 2)
Dan Gohman45774ce2010-02-12 10:34:29 +00003621 };
3622 for (size_t i = 0, e = array_lengthof(OtherImms); i != e; ++i) {
3623 ImmMapTy::const_iterator M = OtherImms[i];
Dan Gohman363f8472010-02-12 19:20:37 +00003624 if (M == J || M == JE) continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003625
3626 // Compute the difference between the two.
3627 int64_t Imm = (uint64_t)JImm - M->first;
3628 for (int LUIdx = UsedByIndices.find_first(); LUIdx != -1;
Dan Gohman110ed642010-09-01 01:45:53 +00003629 LUIdx = UsedByIndices.find_next(LUIdx))
Dan Gohman45774ce2010-02-12 10:34:29 +00003630 // Make a memo of this use, offset, and register tuple.
Dan Gohman110ed642010-09-01 01:45:53 +00003631 if (UniqueItems.insert(std::make_pair(LUIdx, Imm)))
3632 WorkItems.push_back(WorkItem(LUIdx, Imm, OrigReg));
Evan Cheng85a9f432009-11-12 07:35:05 +00003633 }
3634 }
3635 }
3636
Dan Gohman45774ce2010-02-12 10:34:29 +00003637 Map.clear();
3638 Sequence.clear();
3639 UsedByIndicesMap.clear();
Dan Gohman110ed642010-09-01 01:45:53 +00003640 UniqueItems.clear();
Dan Gohman45774ce2010-02-12 10:34:29 +00003641
3642 // Now iterate through the worklist and add new formulae.
3643 for (SmallVectorImpl<WorkItem>::const_iterator I = WorkItems.begin(),
3644 E = WorkItems.end(); I != E; ++I) {
3645 const WorkItem &WI = *I;
3646 size_t LUIdx = WI.LUIdx;
3647 LSRUse &LU = Uses[LUIdx];
3648 int64_t Imm = WI.Imm;
3649 const SCEV *OrigReg = WI.OrigReg;
3650
Chris Lattner229907c2011-07-18 04:54:35 +00003651 Type *IntTy = SE.getEffectiveSCEVType(OrigReg->getType());
Dan Gohman45774ce2010-02-12 10:34:29 +00003652 const SCEV *NegImmS = SE.getSCEV(ConstantInt::get(IntTy, -(uint64_t)Imm));
3653 unsigned BitWidth = SE.getTypeSizeInBits(IntTy);
3654
Dan Gohman8b0a4192010-03-01 17:49:51 +00003655 // TODO: Use a more targeted data structure.
Dan Gohman45774ce2010-02-12 10:34:29 +00003656 for (size_t L = 0, LE = LU.Formulae.size(); L != LE; ++L) {
Dan Gohman86110fa2010-05-20 22:25:20 +00003657 const Formula &F = LU.Formulae[L];
Dan Gohman45774ce2010-02-12 10:34:29 +00003658 // Use the immediate in the scaled register.
3659 if (F.ScaledReg == OrigReg) {
Chandler Carruth6e479322013-01-07 15:04:40 +00003660 int64_t Offset = (uint64_t)F.BaseOffset + Imm * (uint64_t)F.Scale;
Dan Gohman45774ce2010-02-12 10:34:29 +00003661 // Don't create 50 + reg(-50).
3662 if (F.referencesReg(SE.getSCEV(
Chandler Carruth6e479322013-01-07 15:04:40 +00003663 ConstantInt::get(IntTy, -(uint64_t)Offset))))
Dan Gohman45774ce2010-02-12 10:34:29 +00003664 continue;
3665 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00003666 NewF.BaseOffset = Offset;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003667 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
3668 NewF))
Dan Gohman45774ce2010-02-12 10:34:29 +00003669 continue;
3670 NewF.ScaledReg = SE.getAddExpr(NegImmS, NewF.ScaledReg);
3671
3672 // If the new scale is a constant in a register, and adding the constant
3673 // value to the immediate would produce a value closer to zero than the
3674 // immediate itself, then the formula isn't worthwhile.
3675 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewF.ScaledReg))
Chris Lattnerb1a15122011-07-15 06:08:15 +00003676 if (C->getValue()->isNegative() !=
Chandler Carruth6e479322013-01-07 15:04:40 +00003677 (NewF.BaseOffset < 0) &&
3678 (C->getValue()->getValue().abs() * APInt(BitWidth, F.Scale))
3679 .ule(abs64(NewF.BaseOffset)))
Dan Gohman45774ce2010-02-12 10:34:29 +00003680 continue;
3681
3682 // OK, looks good.
3683 (void)InsertFormula(LU, LUIdx, NewF);
3684 } else {
3685 // Use the immediate in a base register.
3686 for (size_t N = 0, NE = F.BaseRegs.size(); N != NE; ++N) {
3687 const SCEV *BaseReg = F.BaseRegs[N];
3688 if (BaseReg != OrigReg)
3689 continue;
3690 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00003691 NewF.BaseOffset = (uint64_t)NewF.BaseOffset + Imm;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003692 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset,
3693 LU.Kind, LU.AccessTy, NewF)) {
3694 if (!TTI.isLegalAddImmediate((uint64_t)NewF.UnfoldedOffset + Imm))
Dan Gohman6136e942011-05-03 00:46:49 +00003695 continue;
3696 NewF = F;
3697 NewF.UnfoldedOffset = (uint64_t)NewF.UnfoldedOffset + Imm;
3698 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003699 NewF.BaseRegs[N] = SE.getAddExpr(NegImmS, BaseReg);
3700
3701 // If the new formula has a constant in a register, and adding the
3702 // constant value to the immediate would produce a value closer to
3703 // zero than the immediate itself, then the formula isn't worthwhile.
3704 for (SmallVectorImpl<const SCEV *>::const_iterator
3705 J = NewF.BaseRegs.begin(), JE = NewF.BaseRegs.end();
3706 J != JE; ++J)
3707 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*J))
Chandler Carruth6e479322013-01-07 15:04:40 +00003708 if ((C->getValue()->getValue() + NewF.BaseOffset).abs().slt(
3709 abs64(NewF.BaseOffset)) &&
Dan Gohman50f8f2c2010-05-18 23:48:08 +00003710 (C->getValue()->getValue() +
Chandler Carruth6e479322013-01-07 15:04:40 +00003711 NewF.BaseOffset).countTrailingZeros() >=
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +00003712 countTrailingZeros<uint64_t>(NewF.BaseOffset))
Dan Gohman45774ce2010-02-12 10:34:29 +00003713 goto skip_formula;
3714
3715 // Ok, looks good.
3716 (void)InsertFormula(LU, LUIdx, NewF);
3717 break;
3718 skip_formula:;
3719 }
3720 }
3721 }
3722 }
Dale Johannesen02cb2bf2009-05-11 17:15:42 +00003723}
3724
Dan Gohman45774ce2010-02-12 10:34:29 +00003725/// GenerateAllReuseFormulae - Generate formulae for each use.
3726void
3727LSRInstance::GenerateAllReuseFormulae() {
Dan Gohman521efe62010-02-16 01:42:53 +00003728 // This is split into multiple loops so that hasRegsUsedByUsesOtherThan
Dan Gohman45774ce2010-02-12 10:34:29 +00003729 // queries are more precise.
3730 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3731 LSRUse &LU = Uses[LUIdx];
3732 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3733 GenerateReassociations(LU, LUIdx, LU.Formulae[i]);
3734 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3735 GenerateCombinations(LU, LUIdx, LU.Formulae[i]);
3736 }
3737 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3738 LSRUse &LU = Uses[LUIdx];
3739 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3740 GenerateSymbolicOffsets(LU, LUIdx, LU.Formulae[i]);
3741 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3742 GenerateConstantOffsets(LU, LUIdx, LU.Formulae[i]);
3743 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3744 GenerateICmpZeroScales(LU, LUIdx, LU.Formulae[i]);
3745 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3746 GenerateScales(LU, LUIdx, LU.Formulae[i]);
Dan Gohman521efe62010-02-16 01:42:53 +00003747 }
3748 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3749 LSRUse &LU = Uses[LUIdx];
Dan Gohman45774ce2010-02-12 10:34:29 +00003750 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3751 GenerateTruncates(LU, LUIdx, LU.Formulae[i]);
3752 }
3753
3754 GenerateCrossUseConstantOffsets();
Dan Gohmanbf673e02010-08-29 15:21:38 +00003755
3756 DEBUG(dbgs() << "\n"
3757 "After generating reuse formulae:\n";
3758 print_uses(dbgs()));
Dan Gohman45774ce2010-02-12 10:34:29 +00003759}
3760
Dan Gohman1b61fd92010-10-07 23:43:09 +00003761/// If there are multiple formulae with the same set of registers used
Dan Gohman45774ce2010-02-12 10:34:29 +00003762/// by other uses, pick the best one and delete the others.
3763void LSRInstance::FilterOutUndesirableDedicatedRegisters() {
Dan Gohman5947e162010-10-07 23:52:18 +00003764 DenseSet<const SCEV *> VisitedRegs;
3765 SmallPtrSet<const SCEV *, 16> Regs;
Andrew Trick5df90962011-12-06 03:13:31 +00003766 SmallPtrSet<const SCEV *, 16> LoserRegs;
Dan Gohman45774ce2010-02-12 10:34:29 +00003767#ifndef NDEBUG
Dan Gohman4c4043c2010-05-20 20:05:31 +00003768 bool ChangedFormulae = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00003769#endif
3770
3771 // Collect the best formula for each unique set of shared registers. This
3772 // is reset for each use.
Preston Gurd25c3b6a2013-02-01 20:41:27 +00003773 typedef DenseMap<SmallVector<const SCEV *, 4>, size_t, UniquifierDenseMapInfo>
Dan Gohman45774ce2010-02-12 10:34:29 +00003774 BestFormulaeTy;
3775 BestFormulaeTy BestFormulae;
3776
3777 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3778 LSRUse &LU = Uses[LUIdx];
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00003779 DEBUG(dbgs() << "Filtering for use "; LU.print(dbgs()); dbgs() << '\n');
Dan Gohman45774ce2010-02-12 10:34:29 +00003780
Dan Gohman4cf99b52010-05-18 23:42:37 +00003781 bool Any = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00003782 for (size_t FIdx = 0, NumForms = LU.Formulae.size();
3783 FIdx != NumForms; ++FIdx) {
3784 Formula &F = LU.Formulae[FIdx];
3785
Andrew Trick5df90962011-12-06 03:13:31 +00003786 // Some formulas are instant losers. For example, they may depend on
3787 // nonexistent AddRecs from other loops. These need to be filtered
3788 // immediately, otherwise heuristics could choose them over others leading
3789 // to an unsatisfactory solution. Passing LoserRegs into RateFormula here
3790 // avoids the need to recompute this information across formulae using the
3791 // same bad AddRec. Passing LoserRegs is also essential unless we remove
3792 // the corresponding bad register from the Regs set.
3793 Cost CostF;
3794 Regs.clear();
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00003795 CostF.RateFormula(TTI, F, Regs, VisitedRegs, L, LU.Offsets, SE, DT, LU,
Andrew Trick5df90962011-12-06 03:13:31 +00003796 &LoserRegs);
3797 if (CostF.isLoser()) {
3798 // During initial formula generation, undesirable formulae are generated
3799 // by uses within other loops that have some non-trivial address mode or
3800 // use the postinc form of the IV. LSR needs to provide these formulae
3801 // as the basis of rediscovering the desired formula that uses an AddRec
3802 // corresponding to the existing phi. Once all formulae have been
3803 // generated, these initial losers may be pruned.
3804 DEBUG(dbgs() << " Filtering loser "; F.print(dbgs());
3805 dbgs() << "\n");
Dan Gohman45774ce2010-02-12 10:34:29 +00003806 }
Andrew Trick5df90962011-12-06 03:13:31 +00003807 else {
Preston Gurd25c3b6a2013-02-01 20:41:27 +00003808 SmallVector<const SCEV *, 4> Key;
Andrew Trick5df90962011-12-06 03:13:31 +00003809 for (SmallVectorImpl<const SCEV *>::const_iterator J = F.BaseRegs.begin(),
3810 JE = F.BaseRegs.end(); J != JE; ++J) {
3811 const SCEV *Reg = *J;
3812 if (RegUses.isRegUsedByUsesOtherThan(Reg, LUIdx))
3813 Key.push_back(Reg);
3814 }
3815 if (F.ScaledReg &&
3816 RegUses.isRegUsedByUsesOtherThan(F.ScaledReg, LUIdx))
3817 Key.push_back(F.ScaledReg);
3818 // Unstable sort by host order ok, because this is only used for
3819 // uniquifying.
3820 std::sort(Key.begin(), Key.end());
Dan Gohman45774ce2010-02-12 10:34:29 +00003821
Andrew Trick5df90962011-12-06 03:13:31 +00003822 std::pair<BestFormulaeTy::const_iterator, bool> P =
3823 BestFormulae.insert(std::make_pair(Key, FIdx));
3824 if (P.second)
3825 continue;
3826
Dan Gohman45774ce2010-02-12 10:34:29 +00003827 Formula &Best = LU.Formulae[P.first->second];
Dan Gohman5947e162010-10-07 23:52:18 +00003828
Dan Gohman5947e162010-10-07 23:52:18 +00003829 Cost CostBest;
Dan Gohman5947e162010-10-07 23:52:18 +00003830 Regs.clear();
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00003831 CostBest.RateFormula(TTI, Best, Regs, VisitedRegs, L, LU.Offsets, SE,
3832 DT, LU);
Dan Gohman5947e162010-10-07 23:52:18 +00003833 if (CostF < CostBest)
Dan Gohman45774ce2010-02-12 10:34:29 +00003834 std::swap(F, Best);
Dan Gohman8aca7ef2010-05-18 22:37:37 +00003835 DEBUG(dbgs() << " Filtering out formula "; F.print(dbgs());
Dan Gohman45774ce2010-02-12 10:34:29 +00003836 dbgs() << "\n"
Dan Gohman8aca7ef2010-05-18 22:37:37 +00003837 " in favor of formula "; Best.print(dbgs());
Dan Gohman45774ce2010-02-12 10:34:29 +00003838 dbgs() << '\n');
Dan Gohman45774ce2010-02-12 10:34:29 +00003839 }
Andrew Trick5df90962011-12-06 03:13:31 +00003840#ifndef NDEBUG
3841 ChangedFormulae = true;
3842#endif
3843 LU.DeleteFormula(F);
3844 --FIdx;
3845 --NumForms;
3846 Any = true;
Dan Gohmand0800242010-05-07 23:36:59 +00003847 }
3848
Dan Gohmanbeebef42010-05-18 23:55:57 +00003849 // Now that we've filtered out some formulae, recompute the Regs set.
Dan Gohman4cf99b52010-05-18 23:42:37 +00003850 if (Any)
3851 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohmand0800242010-05-07 23:36:59 +00003852
3853 // Reset this to prepare for the next use.
Dan Gohman45774ce2010-02-12 10:34:29 +00003854 BestFormulae.clear();
3855 }
3856
Dan Gohman4c4043c2010-05-20 20:05:31 +00003857 DEBUG(if (ChangedFormulae) {
Dan Gohman5b18f032010-02-13 02:06:02 +00003858 dbgs() << "\n"
3859 "After filtering out undesirable candidates:\n";
Dan Gohman45774ce2010-02-12 10:34:29 +00003860 print_uses(dbgs());
3861 });
3862}
3863
Dan Gohmana4eca052010-05-18 22:51:59 +00003864// This is a rough guess that seems to work fairly well.
3865static const size_t ComplexityLimit = UINT16_MAX;
3866
3867/// EstimateSearchSpaceComplexity - Estimate the worst-case number of
3868/// solutions the solver might have to consider. It almost never considers
3869/// this many solutions because it prune the search space, but the pruning
3870/// isn't always sufficient.
3871size_t LSRInstance::EstimateSearchSpaceComplexity() const {
Dan Gohman49d638b2010-10-07 23:37:58 +00003872 size_t Power = 1;
Dan Gohmana4eca052010-05-18 22:51:59 +00003873 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
3874 E = Uses.end(); I != E; ++I) {
3875 size_t FSize = I->Formulae.size();
3876 if (FSize >= ComplexityLimit) {
3877 Power = ComplexityLimit;
3878 break;
3879 }
3880 Power *= FSize;
3881 if (Power >= ComplexityLimit)
3882 break;
3883 }
3884 return Power;
3885}
3886
Dan Gohmane9e08732010-08-29 16:09:42 +00003887/// NarrowSearchSpaceByDetectingSupersets - When one formula uses a superset
3888/// of the registers of another formula, it won't help reduce register
3889/// pressure (though it may not necessarily hurt register pressure); remove
3890/// it to simplify the system.
3891void LSRInstance::NarrowSearchSpaceByDetectingSupersets() {
Dan Gohman20fab452010-05-19 23:43:12 +00003892 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
3893 DEBUG(dbgs() << "The search space is too complex.\n");
3894
3895 DEBUG(dbgs() << "Narrowing the search space by eliminating formulae "
3896 "which use a superset of registers used by other "
3897 "formulae.\n");
3898
3899 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3900 LSRUse &LU = Uses[LUIdx];
3901 bool Any = false;
3902 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
3903 Formula &F = LU.Formulae[i];
Dan Gohman8ec018c2010-05-20 20:00:41 +00003904 // Look for a formula with a constant or GV in a register. If the use
3905 // also has a formula with that same value in an immediate field,
3906 // delete the one that uses a register.
Dan Gohman20fab452010-05-19 23:43:12 +00003907 for (SmallVectorImpl<const SCEV *>::const_iterator
3908 I = F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I) {
3909 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*I)) {
3910 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00003911 NewF.BaseOffset += C->getValue()->getSExtValue();
Dan Gohman20fab452010-05-19 23:43:12 +00003912 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
3913 (I - F.BaseRegs.begin()));
3914 if (LU.HasFormulaWithSameRegs(NewF)) {
3915 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
3916 LU.DeleteFormula(F);
3917 --i;
3918 --e;
3919 Any = true;
3920 break;
3921 }
3922 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(*I)) {
3923 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue()))
Chandler Carruth6e479322013-01-07 15:04:40 +00003924 if (!F.BaseGV) {
Dan Gohman20fab452010-05-19 23:43:12 +00003925 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00003926 NewF.BaseGV = GV;
Dan Gohman20fab452010-05-19 23:43:12 +00003927 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
3928 (I - F.BaseRegs.begin()));
3929 if (LU.HasFormulaWithSameRegs(NewF)) {
3930 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
3931 dbgs() << '\n');
3932 LU.DeleteFormula(F);
3933 --i;
3934 --e;
3935 Any = true;
3936 break;
3937 }
3938 }
3939 }
3940 }
3941 }
3942 if (Any)
3943 LU.RecomputeRegs(LUIdx, RegUses);
3944 }
3945
3946 DEBUG(dbgs() << "After pre-selection:\n";
3947 print_uses(dbgs()));
3948 }
Dan Gohmane9e08732010-08-29 16:09:42 +00003949}
Dan Gohman20fab452010-05-19 23:43:12 +00003950
Dan Gohmane9e08732010-08-29 16:09:42 +00003951/// NarrowSearchSpaceByCollapsingUnrolledCode - When there are many registers
3952/// for expressions like A, A+1, A+2, etc., allocate a single register for
3953/// them.
3954void LSRInstance::NarrowSearchSpaceByCollapsingUnrolledCode() {
Jakub Staszak11bd8352013-02-16 16:08:15 +00003955 if (EstimateSearchSpaceComplexity() < ComplexityLimit)
3956 return;
Dan Gohman20fab452010-05-19 23:43:12 +00003957
Jakub Staszak11bd8352013-02-16 16:08:15 +00003958 DEBUG(dbgs() << "The search space is too complex.\n"
3959 "Narrowing the search space by assuming that uses separated "
3960 "by a constant offset will use the same registers.\n");
Dan Gohman20fab452010-05-19 23:43:12 +00003961
Jakub Staszak11bd8352013-02-16 16:08:15 +00003962 // This is especially useful for unrolled loops.
Dan Gohman8ec018c2010-05-20 20:00:41 +00003963
Jakub Staszak11bd8352013-02-16 16:08:15 +00003964 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3965 LSRUse &LU = Uses[LUIdx];
3966 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
3967 E = LU.Formulae.end(); I != E; ++I) {
3968 const Formula &F = *I;
3969 if (F.BaseOffset == 0 || F.Scale != 0)
3970 continue;
Dan Gohman20fab452010-05-19 23:43:12 +00003971
Jakub Staszak11bd8352013-02-16 16:08:15 +00003972 LSRUse *LUThatHas = FindUseWithSimilarFormula(F, LU);
3973 if (!LUThatHas)
3974 continue;
Dan Gohman20fab452010-05-19 23:43:12 +00003975
Jakub Staszak11bd8352013-02-16 16:08:15 +00003976 if (!reconcileNewOffset(*LUThatHas, F.BaseOffset, /*HasBaseReg=*/ false,
3977 LU.Kind, LU.AccessTy))
3978 continue;
Dan Gohman110ed642010-09-01 01:45:53 +00003979
Jakub Staszak11bd8352013-02-16 16:08:15 +00003980 DEBUG(dbgs() << " Deleting use "; LU.print(dbgs()); dbgs() << '\n');
Dan Gohman2fd85d72010-10-08 19:33:26 +00003981
Jakub Staszak11bd8352013-02-16 16:08:15 +00003982 LUThatHas->AllFixupsOutsideLoop &= LU.AllFixupsOutsideLoop;
3983
3984 // Update the relocs to reference the new use.
3985 for (SmallVectorImpl<LSRFixup>::iterator I = Fixups.begin(),
3986 E = Fixups.end(); I != E; ++I) {
3987 LSRFixup &Fixup = *I;
3988 if (Fixup.LUIdx == LUIdx) {
3989 Fixup.LUIdx = LUThatHas - &Uses.front();
3990 Fixup.Offset += F.BaseOffset;
3991 // Add the new offset to LUThatHas' offset list.
3992 if (LUThatHas->Offsets.back() != Fixup.Offset) {
3993 LUThatHas->Offsets.push_back(Fixup.Offset);
3994 if (Fixup.Offset > LUThatHas->MaxOffset)
3995 LUThatHas->MaxOffset = Fixup.Offset;
3996 if (Fixup.Offset < LUThatHas->MinOffset)
3997 LUThatHas->MinOffset = Fixup.Offset;
Dan Gohman20fab452010-05-19 23:43:12 +00003998 }
Jakub Staszak11bd8352013-02-16 16:08:15 +00003999 DEBUG(dbgs() << "New fixup has offset " << Fixup.Offset << '\n');
4000 }
4001 if (Fixup.LUIdx == NumUses-1)
4002 Fixup.LUIdx = LUIdx;
4003 }
4004
4005 // Delete formulae from the new use which are no longer legal.
4006 bool Any = false;
4007 for (size_t i = 0, e = LUThatHas->Formulae.size(); i != e; ++i) {
4008 Formula &F = LUThatHas->Formulae[i];
4009 if (!isLegalUse(TTI, LUThatHas->MinOffset, LUThatHas->MaxOffset,
4010 LUThatHas->Kind, LUThatHas->AccessTy, F)) {
4011 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
4012 dbgs() << '\n');
4013 LUThatHas->DeleteFormula(F);
4014 --i;
4015 --e;
4016 Any = true;
Dan Gohman20fab452010-05-19 23:43:12 +00004017 }
4018 }
Dan Gohman20fab452010-05-19 23:43:12 +00004019
Jakub Staszak11bd8352013-02-16 16:08:15 +00004020 if (Any)
4021 LUThatHas->RecomputeRegs(LUThatHas - &Uses.front(), RegUses);
4022
4023 // Delete the old use.
4024 DeleteUse(LU, LUIdx);
4025 --LUIdx;
4026 --NumUses;
4027 break;
4028 }
Dan Gohman20fab452010-05-19 23:43:12 +00004029 }
Jakub Staszak11bd8352013-02-16 16:08:15 +00004030
4031 DEBUG(dbgs() << "After pre-selection:\n"; print_uses(dbgs()));
Dan Gohmane9e08732010-08-29 16:09:42 +00004032}
Dan Gohman20fab452010-05-19 23:43:12 +00004033
Andrew Trick8b55b732011-03-14 16:50:06 +00004034/// NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters - Call
Dan Gohman002ff892010-08-29 16:39:22 +00004035/// FilterOutUndesirableDedicatedRegisters again, if necessary, now that
4036/// we've done more filtering, as it may be able to find more formulae to
4037/// eliminate.
4038void LSRInstance::NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters(){
4039 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
4040 DEBUG(dbgs() << "The search space is too complex.\n");
4041
4042 DEBUG(dbgs() << "Narrowing the search space by re-filtering out "
4043 "undesirable dedicated registers.\n");
4044
4045 FilterOutUndesirableDedicatedRegisters();
4046
4047 DEBUG(dbgs() << "After pre-selection:\n";
4048 print_uses(dbgs()));
4049 }
4050}
4051
Dan Gohmane9e08732010-08-29 16:09:42 +00004052/// NarrowSearchSpaceByPickingWinnerRegs - Pick a register which seems likely
4053/// to be profitable, and then in any use which has any reference to that
4054/// register, delete all formulae which do not reference that register.
4055void LSRInstance::NarrowSearchSpaceByPickingWinnerRegs() {
Dan Gohmana4ca28a2010-05-20 20:52:00 +00004056 // With all other options exhausted, loop until the system is simple
4057 // enough to handle.
Dan Gohman45774ce2010-02-12 10:34:29 +00004058 SmallPtrSet<const SCEV *, 4> Taken;
Dan Gohmana4eca052010-05-18 22:51:59 +00004059 while (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004060 // Ok, we have too many of formulae on our hands to conveniently handle.
4061 // Use a rough heuristic to thin out the list.
Dan Gohman63e90152010-05-18 22:41:32 +00004062 DEBUG(dbgs() << "The search space is too complex.\n");
Dan Gohman45774ce2010-02-12 10:34:29 +00004063
4064 // Pick the register which is used by the most LSRUses, which is likely
4065 // to be a good reuse register candidate.
4066 const SCEV *Best = 0;
4067 unsigned BestNum = 0;
4068 for (RegUseTracker::const_iterator I = RegUses.begin(), E = RegUses.end();
4069 I != E; ++I) {
4070 const SCEV *Reg = *I;
4071 if (Taken.count(Reg))
4072 continue;
4073 if (!Best)
4074 Best = Reg;
4075 else {
4076 unsigned Count = RegUses.getUsedByIndices(Reg).count();
4077 if (Count > BestNum) {
4078 Best = Reg;
4079 BestNum = Count;
4080 }
4081 }
4082 }
4083
4084 DEBUG(dbgs() << "Narrowing the search space by assuming " << *Best
Dan Gohman8b0a4192010-03-01 17:49:51 +00004085 << " will yield profitable reuse.\n");
Dan Gohman45774ce2010-02-12 10:34:29 +00004086 Taken.insert(Best);
4087
4088 // In any use with formulae which references this register, delete formulae
4089 // which don't reference it.
Dan Gohman4cf99b52010-05-18 23:42:37 +00004090 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4091 LSRUse &LU = Uses[LUIdx];
Dan Gohman45774ce2010-02-12 10:34:29 +00004092 if (!LU.Regs.count(Best)) continue;
4093
Dan Gohman4cf99b52010-05-18 23:42:37 +00004094 bool Any = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00004095 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
4096 Formula &F = LU.Formulae[i];
4097 if (!F.referencesReg(Best)) {
4098 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00004099 LU.DeleteFormula(F);
Dan Gohman45774ce2010-02-12 10:34:29 +00004100 --e;
4101 --i;
Dan Gohman4cf99b52010-05-18 23:42:37 +00004102 Any = true;
Dan Gohmand0800242010-05-07 23:36:59 +00004103 assert(e != 0 && "Use has no formulae left! Is Regs inconsistent?");
Dan Gohman45774ce2010-02-12 10:34:29 +00004104 continue;
4105 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004106 }
Dan Gohman4cf99b52010-05-18 23:42:37 +00004107
4108 if (Any)
4109 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman45774ce2010-02-12 10:34:29 +00004110 }
4111
4112 DEBUG(dbgs() << "After pre-selection:\n";
4113 print_uses(dbgs()));
4114 }
4115}
4116
Dan Gohmane9e08732010-08-29 16:09:42 +00004117/// NarrowSearchSpaceUsingHeuristics - If there are an extraordinary number of
4118/// formulae to choose from, use some rough heuristics to prune down the number
4119/// of formulae. This keeps the main solver from taking an extraordinary amount
4120/// of time in some worst-case scenarios.
4121void LSRInstance::NarrowSearchSpaceUsingHeuristics() {
4122 NarrowSearchSpaceByDetectingSupersets();
4123 NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman002ff892010-08-29 16:39:22 +00004124 NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Dan Gohmane9e08732010-08-29 16:09:42 +00004125 NarrowSearchSpaceByPickingWinnerRegs();
4126}
4127
Dan Gohman45774ce2010-02-12 10:34:29 +00004128/// SolveRecurse - This is the recursive solver.
4129void LSRInstance::SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
4130 Cost &SolutionCost,
4131 SmallVectorImpl<const Formula *> &Workspace,
4132 const Cost &CurCost,
4133 const SmallPtrSet<const SCEV *, 16> &CurRegs,
4134 DenseSet<const SCEV *> &VisitedRegs) const {
4135 // Some ideas:
4136 // - prune more:
4137 // - use more aggressive filtering
4138 // - sort the formula so that the most profitable solutions are found first
4139 // - sort the uses too
4140 // - search faster:
Dan Gohman8b0a4192010-03-01 17:49:51 +00004141 // - don't compute a cost, and then compare. compare while computing a cost
Dan Gohman45774ce2010-02-12 10:34:29 +00004142 // and bail early.
4143 // - track register sets with SmallBitVector
4144
4145 const LSRUse &LU = Uses[Workspace.size()];
4146
4147 // If this use references any register that's already a part of the
4148 // in-progress solution, consider it a requirement that a formula must
4149 // reference that register in order to be considered. This prunes out
4150 // unprofitable searching.
4151 SmallSetVector<const SCEV *, 4> ReqRegs;
4152 for (SmallPtrSet<const SCEV *, 16>::const_iterator I = CurRegs.begin(),
4153 E = CurRegs.end(); I != E; ++I)
Dan Gohman5b18f032010-02-13 02:06:02 +00004154 if (LU.Regs.count(*I))
Dan Gohman45774ce2010-02-12 10:34:29 +00004155 ReqRegs.insert(*I);
Dan Gohman45774ce2010-02-12 10:34:29 +00004156
4157 SmallPtrSet<const SCEV *, 16> NewRegs;
4158 Cost NewCost;
4159 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
4160 E = LU.Formulae.end(); I != E; ++I) {
4161 const Formula &F = *I;
4162
4163 // Ignore formulae which do not use any of the required registers.
Andrew Tricke3502cb2012-03-22 22:42:51 +00004164 bool SatisfiedReqReg = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00004165 for (SmallSetVector<const SCEV *, 4>::const_iterator J = ReqRegs.begin(),
4166 JE = ReqRegs.end(); J != JE; ++J) {
4167 const SCEV *Reg = *J;
4168 if ((!F.ScaledReg || F.ScaledReg != Reg) &&
4169 std::find(F.BaseRegs.begin(), F.BaseRegs.end(), Reg) ==
Andrew Tricke3502cb2012-03-22 22:42:51 +00004170 F.BaseRegs.end()) {
4171 SatisfiedReqReg = false;
4172 break;
4173 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004174 }
Andrew Tricke3502cb2012-03-22 22:42:51 +00004175 if (!SatisfiedReqReg) {
4176 // If none of the formulae satisfied the required registers, then we could
4177 // clear ReqRegs and try again. Currently, we simply give up in this case.
4178 continue;
4179 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004180
4181 // Evaluate the cost of the current formula. If it's already worse than
4182 // the current best, prune the search at that point.
4183 NewCost = CurCost;
4184 NewRegs = CurRegs;
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00004185 NewCost.RateFormula(TTI, F, NewRegs, VisitedRegs, L, LU.Offsets, SE, DT,
4186 LU);
Dan Gohman45774ce2010-02-12 10:34:29 +00004187 if (NewCost < SolutionCost) {
4188 Workspace.push_back(&F);
4189 if (Workspace.size() != Uses.size()) {
4190 SolveRecurse(Solution, SolutionCost, Workspace, NewCost,
4191 NewRegs, VisitedRegs);
4192 if (F.getNumRegs() == 1 && Workspace.size() == 1)
4193 VisitedRegs.insert(F.ScaledReg ? F.ScaledReg : F.BaseRegs[0]);
4194 } else {
4195 DEBUG(dbgs() << "New best at "; NewCost.print(dbgs());
Andrew Trick4dc3eff2012-01-09 18:58:16 +00004196 dbgs() << ".\n Regs:";
Dan Gohman45774ce2010-02-12 10:34:29 +00004197 for (SmallPtrSet<const SCEV *, 16>::const_iterator
4198 I = NewRegs.begin(), E = NewRegs.end(); I != E; ++I)
4199 dbgs() << ' ' << **I;
4200 dbgs() << '\n');
4201
4202 SolutionCost = NewCost;
4203 Solution = Workspace;
4204 }
4205 Workspace.pop_back();
4206 }
Dan Gohman5b18f032010-02-13 02:06:02 +00004207 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004208}
4209
Dan Gohmana4ca28a2010-05-20 20:52:00 +00004210/// Solve - Choose one formula from each use. Return the results in the given
4211/// Solution vector.
Dan Gohman45774ce2010-02-12 10:34:29 +00004212void LSRInstance::Solve(SmallVectorImpl<const Formula *> &Solution) const {
4213 SmallVector<const Formula *, 8> Workspace;
4214 Cost SolutionCost;
Tim Northoverbc6659c2014-01-22 13:27:00 +00004215 SolutionCost.Lose();
Dan Gohman45774ce2010-02-12 10:34:29 +00004216 Cost CurCost;
4217 SmallPtrSet<const SCEV *, 16> CurRegs;
4218 DenseSet<const SCEV *> VisitedRegs;
4219 Workspace.reserve(Uses.size());
4220
Dan Gohman8ec018c2010-05-20 20:00:41 +00004221 // SolveRecurse does all the work.
Dan Gohman45774ce2010-02-12 10:34:29 +00004222 SolveRecurse(Solution, SolutionCost, Workspace, CurCost,
4223 CurRegs, VisitedRegs);
Andrew Trick58124392011-09-27 00:44:14 +00004224 if (Solution.empty()) {
4225 DEBUG(dbgs() << "\nNo Satisfactory Solution\n");
4226 return;
4227 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004228
4229 // Ok, we've now made all our decisions.
4230 DEBUG(dbgs() << "\n"
4231 "The chosen solution requires "; SolutionCost.print(dbgs());
4232 dbgs() << ":\n";
4233 for (size_t i = 0, e = Uses.size(); i != e; ++i) {
4234 dbgs() << " ";
4235 Uses[i].print(dbgs());
4236 dbgs() << "\n"
4237 " ";
4238 Solution[i]->print(dbgs());
4239 dbgs() << '\n';
4240 });
Dan Gohman6295f2e2010-05-20 20:59:23 +00004241
4242 assert(Solution.size() == Uses.size() && "Malformed solution!");
Dan Gohman45774ce2010-02-12 10:34:29 +00004243}
4244
Dan Gohman607e02b2010-04-09 22:07:05 +00004245/// HoistInsertPosition - Helper for AdjustInsertPositionForExpand. Climb up
4246/// the dominator tree far as we can go while still being dominated by the
4247/// input positions. This helps canonicalize the insert position, which
4248/// encourages sharing.
4249BasicBlock::iterator
4250LSRInstance::HoistInsertPosition(BasicBlock::iterator IP,
4251 const SmallVectorImpl<Instruction *> &Inputs)
4252 const {
4253 for (;;) {
4254 const Loop *IPLoop = LI.getLoopFor(IP->getParent());
4255 unsigned IPLoopDepth = IPLoop ? IPLoop->getLoopDepth() : 0;
4256
4257 BasicBlock *IDom;
Dan Gohman8ce95cc2010-05-20 20:00:25 +00004258 for (DomTreeNode *Rung = DT.getNode(IP->getParent()); ; ) {
Dan Gohman9b48b852010-05-20 22:46:54 +00004259 if (!Rung) return IP;
Dan Gohman8ce95cc2010-05-20 20:00:25 +00004260 Rung = Rung->getIDom();
4261 if (!Rung) return IP;
4262 IDom = Rung->getBlock();
Dan Gohman607e02b2010-04-09 22:07:05 +00004263
4264 // Don't climb into a loop though.
4265 const Loop *IDomLoop = LI.getLoopFor(IDom);
4266 unsigned IDomDepth = IDomLoop ? IDomLoop->getLoopDepth() : 0;
4267 if (IDomDepth <= IPLoopDepth &&
4268 (IDomDepth != IPLoopDepth || IDomLoop == IPLoop))
4269 break;
4270 }
4271
4272 bool AllDominate = true;
4273 Instruction *BetterPos = 0;
4274 Instruction *Tentative = IDom->getTerminator();
4275 for (SmallVectorImpl<Instruction *>::const_iterator I = Inputs.begin(),
4276 E = Inputs.end(); I != E; ++I) {
4277 Instruction *Inst = *I;
4278 if (Inst == Tentative || !DT.dominates(Inst, Tentative)) {
4279 AllDominate = false;
4280 break;
4281 }
4282 // Attempt to find an insert position in the middle of the block,
4283 // instead of at the end, so that it can be used for other expansions.
4284 if (IDom == Inst->getParent() &&
Rafael Espindoladd489312012-04-30 03:53:06 +00004285 (!BetterPos || !DT.dominates(Inst, BetterPos)))
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00004286 BetterPos = std::next(BasicBlock::iterator(Inst));
Dan Gohman607e02b2010-04-09 22:07:05 +00004287 }
4288 if (!AllDominate)
4289 break;
4290 if (BetterPos)
4291 IP = BetterPos;
4292 else
4293 IP = Tentative;
4294 }
4295
4296 return IP;
4297}
4298
4299/// AdjustInsertPositionForExpand - Determine an input position which will be
Dan Gohmand2df6432010-04-09 02:00:38 +00004300/// dominated by the operands and which will dominate the result.
4301BasicBlock::iterator
Andrew Trickc908b432012-01-20 07:41:13 +00004302LSRInstance::AdjustInsertPositionForExpand(BasicBlock::iterator LowestIP,
Dan Gohman607e02b2010-04-09 22:07:05 +00004303 const LSRFixup &LF,
Andrew Trickc908b432012-01-20 07:41:13 +00004304 const LSRUse &LU,
4305 SCEVExpander &Rewriter) const {
Dan Gohmand2df6432010-04-09 02:00:38 +00004306 // Collect some instructions which must be dominated by the
Dan Gohmand006ab92010-04-07 22:27:08 +00004307 // expanding replacement. These must be dominated by any operands that
Dan Gohman45774ce2010-02-12 10:34:29 +00004308 // will be required in the expansion.
4309 SmallVector<Instruction *, 4> Inputs;
4310 if (Instruction *I = dyn_cast<Instruction>(LF.OperandValToReplace))
4311 Inputs.push_back(I);
4312 if (LU.Kind == LSRUse::ICmpZero)
4313 if (Instruction *I =
4314 dyn_cast<Instruction>(cast<ICmpInst>(LF.UserInst)->getOperand(1)))
4315 Inputs.push_back(I);
Dan Gohmand006ab92010-04-07 22:27:08 +00004316 if (LF.PostIncLoops.count(L)) {
4317 if (LF.isUseFullyOutsideLoop(L))
Dan Gohman52f55632010-03-02 01:59:21 +00004318 Inputs.push_back(L->getLoopLatch()->getTerminator());
4319 else
4320 Inputs.push_back(IVIncInsertPos);
4321 }
Dan Gohman45065392010-04-08 05:57:57 +00004322 // The expansion must also be dominated by the increment positions of any
4323 // loops it for which it is using post-inc mode.
4324 for (PostIncLoopSet::const_iterator I = LF.PostIncLoops.begin(),
4325 E = LF.PostIncLoops.end(); I != E; ++I) {
4326 const Loop *PIL = *I;
4327 if (PIL == L) continue;
4328
Dan Gohman607e02b2010-04-09 22:07:05 +00004329 // Be dominated by the loop exit.
Dan Gohman45065392010-04-08 05:57:57 +00004330 SmallVector<BasicBlock *, 4> ExitingBlocks;
4331 PIL->getExitingBlocks(ExitingBlocks);
4332 if (!ExitingBlocks.empty()) {
4333 BasicBlock *BB = ExitingBlocks[0];
4334 for (unsigned i = 1, e = ExitingBlocks.size(); i != e; ++i)
4335 BB = DT.findNearestCommonDominator(BB, ExitingBlocks[i]);
4336 Inputs.push_back(BB->getTerminator());
4337 }
4338 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004339
Andrew Trickc908b432012-01-20 07:41:13 +00004340 assert(!isa<PHINode>(LowestIP) && !isa<LandingPadInst>(LowestIP)
4341 && !isa<DbgInfoIntrinsic>(LowestIP) &&
4342 "Insertion point must be a normal instruction");
4343
Dan Gohman45774ce2010-02-12 10:34:29 +00004344 // Then, climb up the immediate dominator tree as far as we can go while
4345 // still being dominated by the input positions.
Andrew Trickc908b432012-01-20 07:41:13 +00004346 BasicBlock::iterator IP = HoistInsertPosition(LowestIP, Inputs);
Dan Gohmand2df6432010-04-09 02:00:38 +00004347
4348 // Don't insert instructions before PHI nodes.
Dan Gohman45774ce2010-02-12 10:34:29 +00004349 while (isa<PHINode>(IP)) ++IP;
Dan Gohmand2df6432010-04-09 02:00:38 +00004350
Bill Wendling86c5cbe2011-08-24 21:06:46 +00004351 // Ignore landingpad instructions.
4352 while (isa<LandingPadInst>(IP)) ++IP;
4353
Dan Gohmand2df6432010-04-09 02:00:38 +00004354 // Ignore debug intrinsics.
Dan Gohmand42e09d2010-03-26 00:33:27 +00004355 while (isa<DbgInfoIntrinsic>(IP)) ++IP;
Dan Gohman45774ce2010-02-12 10:34:29 +00004356
Andrew Trickc908b432012-01-20 07:41:13 +00004357 // Set IP below instructions recently inserted by SCEVExpander. This keeps the
4358 // IP consistent across expansions and allows the previously inserted
4359 // instructions to be reused by subsequent expansion.
4360 while (Rewriter.isInsertedInstruction(IP) && IP != LowestIP) ++IP;
4361
Dan Gohmand2df6432010-04-09 02:00:38 +00004362 return IP;
4363}
4364
Dan Gohmana4ca28a2010-05-20 20:52:00 +00004365/// Expand - Emit instructions for the leading candidate expression for this
4366/// LSRUse (this is called "expanding").
Dan Gohmand2df6432010-04-09 02:00:38 +00004367Value *LSRInstance::Expand(const LSRFixup &LF,
4368 const Formula &F,
4369 BasicBlock::iterator IP,
4370 SCEVExpander &Rewriter,
4371 SmallVectorImpl<WeakVH> &DeadInsts) const {
4372 const LSRUse &LU = Uses[LF.LUIdx];
Andrew Trick57243da2013-10-25 21:35:56 +00004373 if (LU.RigidFormula)
4374 return LF.OperandValToReplace;
Dan Gohmand2df6432010-04-09 02:00:38 +00004375
4376 // Determine an input position which will be dominated by the operands and
4377 // which will dominate the result.
Andrew Trickc908b432012-01-20 07:41:13 +00004378 IP = AdjustInsertPositionForExpand(IP, LF, LU, Rewriter);
Dan Gohmand2df6432010-04-09 02:00:38 +00004379
Dan Gohman45774ce2010-02-12 10:34:29 +00004380 // Inform the Rewriter if we have a post-increment use, so that it can
4381 // perform an advantageous expansion.
Dan Gohmand006ab92010-04-07 22:27:08 +00004382 Rewriter.setPostInc(LF.PostIncLoops);
Dan Gohman45774ce2010-02-12 10:34:29 +00004383
4384 // This is the type that the user actually needs.
Chris Lattner229907c2011-07-18 04:54:35 +00004385 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00004386 // This will be the type that we'll initially expand to.
Chris Lattner229907c2011-07-18 04:54:35 +00004387 Type *Ty = F.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00004388 if (!Ty)
4389 // No type known; just expand directly to the ultimate type.
4390 Ty = OpTy;
4391 else if (SE.getEffectiveSCEVType(Ty) == SE.getEffectiveSCEVType(OpTy))
4392 // Expand directly to the ultimate type if it's the right size.
4393 Ty = OpTy;
4394 // This is the type to do integer arithmetic in.
Chris Lattner229907c2011-07-18 04:54:35 +00004395 Type *IntTy = SE.getEffectiveSCEVType(Ty);
Dan Gohman45774ce2010-02-12 10:34:29 +00004396
4397 // Build up a list of operands to add together to form the full base.
4398 SmallVector<const SCEV *, 8> Ops;
4399
4400 // Expand the BaseRegs portion.
4401 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
4402 E = F.BaseRegs.end(); I != E; ++I) {
4403 const SCEV *Reg = *I;
4404 assert(!Reg->isZero() && "Zero allocated in a base register!");
4405
Dan Gohmand006ab92010-04-07 22:27:08 +00004406 // If we're expanding for a post-inc user, make the post-inc adjustment.
4407 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
4408 Reg = TransformForPostIncUse(Denormalize, Reg,
4409 LF.UserInst, LF.OperandValToReplace,
4410 Loops, SE, DT);
Dan Gohman45774ce2010-02-12 10:34:29 +00004411
4412 Ops.push_back(SE.getUnknown(Rewriter.expandCodeFor(Reg, 0, IP)));
4413 }
4414
4415 // Expand the ScaledReg portion.
4416 Value *ICmpScaledV = 0;
Chandler Carruth6e479322013-01-07 15:04:40 +00004417 if (F.Scale != 0) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004418 const SCEV *ScaledS = F.ScaledReg;
4419
Dan Gohmand006ab92010-04-07 22:27:08 +00004420 // If we're expanding for a post-inc user, make the post-inc adjustment.
4421 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
4422 ScaledS = TransformForPostIncUse(Denormalize, ScaledS,
4423 LF.UserInst, LF.OperandValToReplace,
4424 Loops, SE, DT);
Dan Gohman45774ce2010-02-12 10:34:29 +00004425
4426 if (LU.Kind == LSRUse::ICmpZero) {
4427 // An interesting way of "folding" with an icmp is to use a negated
4428 // scale, which we'll implement by inserting it into the other operand
4429 // of the icmp.
Chandler Carruth6e479322013-01-07 15:04:40 +00004430 assert(F.Scale == -1 &&
Dan Gohman45774ce2010-02-12 10:34:29 +00004431 "The only scale supported by ICmpZero uses is -1!");
4432 ICmpScaledV = Rewriter.expandCodeFor(ScaledS, 0, IP);
4433 } else {
4434 // Otherwise just expand the scaled register and an explicit scale,
4435 // which is expected to be matched as part of the address.
Andrew Trick8370c7c2012-06-15 20:07:29 +00004436
4437 // Flush the operand list to suppress SCEVExpander hoisting address modes.
4438 if (!Ops.empty() && LU.Kind == LSRUse::Address) {
4439 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
4440 Ops.clear();
4441 Ops.push_back(SE.getUnknown(FullV));
4442 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004443 ScaledS = SE.getUnknown(Rewriter.expandCodeFor(ScaledS, 0, IP));
4444 ScaledS = SE.getMulExpr(ScaledS,
Chandler Carruth6e479322013-01-07 15:04:40 +00004445 SE.getConstant(ScaledS->getType(), F.Scale));
Dan Gohman45774ce2010-02-12 10:34:29 +00004446 Ops.push_back(ScaledS);
4447 }
4448 }
4449
Dan Gohman29707de2010-03-03 05:29:13 +00004450 // Expand the GV portion.
Chandler Carruth6e479322013-01-07 15:04:40 +00004451 if (F.BaseGV) {
Dan Gohman29707de2010-03-03 05:29:13 +00004452 // Flush the operand list to suppress SCEVExpander hoisting.
Andrew Trick8370c7c2012-06-15 20:07:29 +00004453 if (!Ops.empty()) {
4454 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
4455 Ops.clear();
4456 Ops.push_back(SE.getUnknown(FullV));
4457 }
Chandler Carruth6e479322013-01-07 15:04:40 +00004458 Ops.push_back(SE.getUnknown(F.BaseGV));
Andrew Trick8370c7c2012-06-15 20:07:29 +00004459 }
4460
4461 // Flush the operand list to suppress SCEVExpander hoisting of both folded and
4462 // unfolded offsets. LSR assumes they both live next to their uses.
4463 if (!Ops.empty()) {
Dan Gohman29707de2010-03-03 05:29:13 +00004464 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
4465 Ops.clear();
4466 Ops.push_back(SE.getUnknown(FullV));
4467 }
4468
4469 // Expand the immediate portion.
Chandler Carruth6e479322013-01-07 15:04:40 +00004470 int64_t Offset = (uint64_t)F.BaseOffset + LF.Offset;
Dan Gohman45774ce2010-02-12 10:34:29 +00004471 if (Offset != 0) {
4472 if (LU.Kind == LSRUse::ICmpZero) {
4473 // The other interesting way of "folding" with an ICmpZero is to use a
4474 // negated immediate.
4475 if (!ICmpScaledV)
Eli Friedmanb46345d2011-10-13 23:48:33 +00004476 ICmpScaledV = ConstantInt::get(IntTy, -(uint64_t)Offset);
Dan Gohman45774ce2010-02-12 10:34:29 +00004477 else {
4478 Ops.push_back(SE.getUnknown(ICmpScaledV));
4479 ICmpScaledV = ConstantInt::get(IntTy, Offset);
4480 }
4481 } else {
4482 // Just add the immediate values. These again are expected to be matched
4483 // as part of the address.
Dan Gohman29707de2010-03-03 05:29:13 +00004484 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy, Offset)));
Dan Gohman45774ce2010-02-12 10:34:29 +00004485 }
4486 }
4487
Dan Gohman6136e942011-05-03 00:46:49 +00004488 // Expand the unfolded offset portion.
4489 int64_t UnfoldedOffset = F.UnfoldedOffset;
4490 if (UnfoldedOffset != 0) {
4491 // Just add the immediate values.
4492 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy,
4493 UnfoldedOffset)));
4494 }
4495
Dan Gohman45774ce2010-02-12 10:34:29 +00004496 // Emit instructions summing all the operands.
4497 const SCEV *FullS = Ops.empty() ?
Dan Gohman1d2ded72010-05-03 22:09:21 +00004498 SE.getConstant(IntTy, 0) :
Dan Gohman45774ce2010-02-12 10:34:29 +00004499 SE.getAddExpr(Ops);
4500 Value *FullV = Rewriter.expandCodeFor(FullS, Ty, IP);
4501
4502 // We're done expanding now, so reset the rewriter.
Dan Gohmand006ab92010-04-07 22:27:08 +00004503 Rewriter.clearPostInc();
Dan Gohman45774ce2010-02-12 10:34:29 +00004504
4505 // An ICmpZero Formula represents an ICmp which we're handling as a
4506 // comparison against zero. Now that we've expanded an expression for that
4507 // form, update the ICmp's other operand.
4508 if (LU.Kind == LSRUse::ICmpZero) {
4509 ICmpInst *CI = cast<ICmpInst>(LF.UserInst);
4510 DeadInsts.push_back(CI->getOperand(1));
Chandler Carruth6e479322013-01-07 15:04:40 +00004511 assert(!F.BaseGV && "ICmp does not support folding a global value and "
Dan Gohman45774ce2010-02-12 10:34:29 +00004512 "a scale at the same time!");
Chandler Carruth6e479322013-01-07 15:04:40 +00004513 if (F.Scale == -1) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004514 if (ICmpScaledV->getType() != OpTy) {
4515 Instruction *Cast =
4516 CastInst::Create(CastInst::getCastOpcode(ICmpScaledV, false,
4517 OpTy, false),
4518 ICmpScaledV, OpTy, "tmp", CI);
4519 ICmpScaledV = Cast;
4520 }
4521 CI->setOperand(1, ICmpScaledV);
4522 } else {
Chandler Carruth6e479322013-01-07 15:04:40 +00004523 assert(F.Scale == 0 &&
Dan Gohman45774ce2010-02-12 10:34:29 +00004524 "ICmp does not support folding a global value and "
4525 "a scale at the same time!");
4526 Constant *C = ConstantInt::getSigned(SE.getEffectiveSCEVType(OpTy),
4527 -(uint64_t)Offset);
4528 if (C->getType() != OpTy)
4529 C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
4530 OpTy, false),
4531 C, OpTy);
4532
4533 CI->setOperand(1, C);
4534 }
4535 }
4536
4537 return FullV;
4538}
4539
Dan Gohman6deab962010-02-16 20:25:07 +00004540/// RewriteForPHI - Helper for Rewrite. PHI nodes are special because the use
4541/// of their operands effectively happens in their predecessor blocks, so the
4542/// expression may need to be expanded in multiple places.
4543void LSRInstance::RewriteForPHI(PHINode *PN,
4544 const LSRFixup &LF,
4545 const Formula &F,
Dan Gohman6deab962010-02-16 20:25:07 +00004546 SCEVExpander &Rewriter,
4547 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman6deab962010-02-16 20:25:07 +00004548 Pass *P) const {
4549 DenseMap<BasicBlock *, Value *> Inserted;
4550 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
4551 if (PN->getIncomingValue(i) == LF.OperandValToReplace) {
4552 BasicBlock *BB = PN->getIncomingBlock(i);
4553
4554 // If this is a critical edge, split the edge so that we do not insert
4555 // the code on all predecessor/successor paths. We do this unless this
4556 // is the canonical backedge for this loop, which complicates post-inc
4557 // users.
4558 if (e != 1 && BB->getTerminator()->getNumSuccessors() > 1 &&
Dan Gohmande7f6992011-02-08 00:55:13 +00004559 !isa<IndirectBrInst>(BB->getTerminator())) {
Bill Wendling07efd6f2011-08-25 01:08:34 +00004560 BasicBlock *Parent = PN->getParent();
4561 Loop *PNLoop = LI.getLoopFor(Parent);
4562 if (!PNLoop || Parent != PNLoop->getHeader()) {
Dan Gohmande7f6992011-02-08 00:55:13 +00004563 // Split the critical edge.
Bill Wendling3fb137f2011-08-25 05:55:40 +00004564 BasicBlock *NewBB = 0;
4565 if (!Parent->isLandingPad()) {
Andrew Trick8de329a2011-10-04 03:50:44 +00004566 NewBB = SplitCriticalEdge(BB, Parent, P,
4567 /*MergeIdenticalEdges=*/true,
4568 /*DontDeleteUselessPhis=*/true);
Bill Wendling3fb137f2011-08-25 05:55:40 +00004569 } else {
4570 SmallVector<BasicBlock*, 2> NewBBs;
4571 SplitLandingPadPredecessors(Parent, BB, "", "", P, NewBBs);
4572 NewBB = NewBBs[0];
4573 }
Andrew Trick402edbb2012-09-18 17:51:33 +00004574 // If NewBB==NULL, then SplitCriticalEdge refused to split because all
4575 // phi predecessors are identical. The simple thing to do is skip
4576 // splitting in this case rather than complicate the API.
4577 if (NewBB) {
4578 // If PN is outside of the loop and BB is in the loop, we want to
4579 // move the block to be immediately before the PHI block, not
4580 // immediately after BB.
4581 if (L->contains(BB) && !L->contains(PN))
4582 NewBB->moveBefore(PN->getParent());
Dan Gohman6deab962010-02-16 20:25:07 +00004583
Andrew Trick402edbb2012-09-18 17:51:33 +00004584 // Splitting the edge can reduce the number of PHI entries we have.
4585 e = PN->getNumIncomingValues();
4586 BB = NewBB;
4587 i = PN->getBasicBlockIndex(BB);
4588 }
Dan Gohmande7f6992011-02-08 00:55:13 +00004589 }
Dan Gohman6deab962010-02-16 20:25:07 +00004590 }
4591
4592 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> Pair =
4593 Inserted.insert(std::make_pair(BB, static_cast<Value *>(0)));
4594 if (!Pair.second)
4595 PN->setIncomingValue(i, Pair.first->second);
4596 else {
Dan Gohman8c16b382010-02-22 04:11:59 +00004597 Value *FullV = Expand(LF, F, BB->getTerminator(), Rewriter, DeadInsts);
Dan Gohman6deab962010-02-16 20:25:07 +00004598
4599 // If this is reuse-by-noop-cast, insert the noop cast.
Chris Lattner229907c2011-07-18 04:54:35 +00004600 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman6deab962010-02-16 20:25:07 +00004601 if (FullV->getType() != OpTy)
4602 FullV =
4603 CastInst::Create(CastInst::getCastOpcode(FullV, false,
4604 OpTy, false),
4605 FullV, LF.OperandValToReplace->getType(),
4606 "tmp", BB->getTerminator());
4607
4608 PN->setIncomingValue(i, FullV);
4609 Pair.first->second = FullV;
4610 }
4611 }
4612}
4613
Dan Gohman45774ce2010-02-12 10:34:29 +00004614/// Rewrite - Emit instructions for the leading candidate expression for this
4615/// LSRUse (this is called "expanding"), and update the UserInst to reference
4616/// the newly expanded value.
4617void LSRInstance::Rewrite(const LSRFixup &LF,
4618 const Formula &F,
Dan Gohman45774ce2010-02-12 10:34:29 +00004619 SCEVExpander &Rewriter,
4620 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman45774ce2010-02-12 10:34:29 +00004621 Pass *P) const {
Dan Gohman45774ce2010-02-12 10:34:29 +00004622 // First, find an insertion point that dominates UserInst. For PHI nodes,
4623 // find the nearest block which dominates all the relevant uses.
4624 if (PHINode *PN = dyn_cast<PHINode>(LF.UserInst)) {
Dan Gohman8c16b382010-02-22 04:11:59 +00004625 RewriteForPHI(PN, LF, F, Rewriter, DeadInsts, P);
Dan Gohman45774ce2010-02-12 10:34:29 +00004626 } else {
Dan Gohman8c16b382010-02-22 04:11:59 +00004627 Value *FullV = Expand(LF, F, LF.UserInst, Rewriter, DeadInsts);
Dan Gohman45774ce2010-02-12 10:34:29 +00004628
4629 // If this is reuse-by-noop-cast, insert the noop cast.
Chris Lattner229907c2011-07-18 04:54:35 +00004630 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00004631 if (FullV->getType() != OpTy) {
4632 Instruction *Cast =
4633 CastInst::Create(CastInst::getCastOpcode(FullV, false, OpTy, false),
4634 FullV, OpTy, "tmp", LF.UserInst);
4635 FullV = Cast;
4636 }
4637
4638 // Update the user. ICmpZero is handled specially here (for now) because
4639 // Expand may have updated one of the operands of the icmp already, and
4640 // its new value may happen to be equal to LF.OperandValToReplace, in
4641 // which case doing replaceUsesOfWith leads to replacing both operands
4642 // with the same value. TODO: Reorganize this.
4643 if (Uses[LF.LUIdx].Kind == LSRUse::ICmpZero)
4644 LF.UserInst->setOperand(0, FullV);
4645 else
4646 LF.UserInst->replaceUsesOfWith(LF.OperandValToReplace, FullV);
4647 }
4648
4649 DeadInsts.push_back(LF.OperandValToReplace);
4650}
4651
Dan Gohmana4ca28a2010-05-20 20:52:00 +00004652/// ImplementSolution - Rewrite all the fixup locations with new values,
4653/// following the chosen solution.
Dan Gohman45774ce2010-02-12 10:34:29 +00004654void
4655LSRInstance::ImplementSolution(const SmallVectorImpl<const Formula *> &Solution,
4656 Pass *P) {
4657 // Keep track of instructions we may have made dead, so that
4658 // we can remove them after we are done working.
4659 SmallVector<WeakVH, 16> DeadInsts;
4660
Andrew Trick411daa52011-06-28 05:07:32 +00004661 SCEVExpander Rewriter(SE, "lsr");
Andrew Trick4dc3eff2012-01-09 18:58:16 +00004662#ifndef NDEBUG
4663 Rewriter.setDebugType(DEBUG_TYPE);
4664#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00004665 Rewriter.disableCanonicalMode();
Andrew Trick7fb669a2011-10-07 23:46:21 +00004666 Rewriter.enableLSRMode();
Dan Gohman45774ce2010-02-12 10:34:29 +00004667 Rewriter.setIVIncInsertPos(L, IVIncInsertPos);
4668
Andrew Trickd5d2db92012-01-10 01:45:08 +00004669 // Mark phi nodes that terminate chains so the expander tries to reuse them.
4670 for (SmallVectorImpl<IVChain>::const_iterator ChainI = IVChainVec.begin(),
4671 ChainE = IVChainVec.end(); ChainI != ChainE; ++ChainI) {
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00004672 if (PHINode *PN = dyn_cast<PHINode>(ChainI->tailUserInst()))
Andrew Trickd5d2db92012-01-10 01:45:08 +00004673 Rewriter.setChainedPhi(PN);
4674 }
4675
Dan Gohman45774ce2010-02-12 10:34:29 +00004676 // Expand the new value definitions and update the users.
Dan Gohman927bcaa2010-05-20 20:33:18 +00004677 for (SmallVectorImpl<LSRFixup>::const_iterator I = Fixups.begin(),
4678 E = Fixups.end(); I != E; ++I) {
4679 const LSRFixup &Fixup = *I;
Dan Gohman45774ce2010-02-12 10:34:29 +00004680
Dan Gohman927bcaa2010-05-20 20:33:18 +00004681 Rewrite(Fixup, *Solution[Fixup.LUIdx], Rewriter, DeadInsts, P);
Dan Gohman45774ce2010-02-12 10:34:29 +00004682
4683 Changed = true;
4684 }
4685
Andrew Trick248d4102012-01-09 21:18:52 +00004686 for (SmallVectorImpl<IVChain>::const_iterator ChainI = IVChainVec.begin(),
4687 ChainE = IVChainVec.end(); ChainI != ChainE; ++ChainI) {
4688 GenerateIVChain(*ChainI, Rewriter, DeadInsts);
4689 Changed = true;
4690 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004691 // Clean up after ourselves. This must be done before deleting any
4692 // instructions.
4693 Rewriter.clear();
4694
4695 Changed |= DeleteTriviallyDeadInstructions(DeadInsts);
4696}
4697
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004698LSRInstance::LSRInstance(Loop *L, Pass *P)
4699 : IU(P->getAnalysis<IVUsers>()), SE(P->getAnalysis<ScalarEvolution>()),
Chandler Carruth73523022014-01-13 13:07:17 +00004700 DT(P->getAnalysis<DominatorTreeWrapperPass>().getDomTree()),
4701 LI(P->getAnalysis<LoopInfo>()),
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004702 TTI(P->getAnalysis<TargetTransformInfo>()), L(L), Changed(false),
4703 IVIncInsertPos(0) {
Dan Gohmana83ac2d2009-11-05 21:11:53 +00004704 // If LoopSimplify form is not available, stay out of trouble.
Andrew Trick732ad802012-01-07 03:16:50 +00004705 if (!L->isLoopSimplifyForm())
4706 return;
Dan Gohmana83ac2d2009-11-05 21:11:53 +00004707
Andrew Trick070e5402012-03-16 03:16:56 +00004708 // If there's no interesting work to be done, bail early.
4709 if (IU.empty()) return;
4710
Andrew Trick19f80c12012-04-18 04:00:10 +00004711 // If there's too much analysis to be done, bail early. We won't be able to
4712 // model the problem anyway.
4713 unsigned NumUsers = 0;
4714 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) {
4715 if (++NumUsers > MaxIVUsers) {
4716 DEBUG(dbgs() << "LSR skipping loop, too many IV Users in " << *L
4717 << "\n");
4718 return;
4719 }
4720 }
4721
Andrew Trick070e5402012-03-16 03:16:56 +00004722#ifndef NDEBUG
Andrew Trick12728f02012-01-17 06:45:52 +00004723 // All dominating loops must have preheaders, or SCEVExpander may not be able
4724 // to materialize an AddRecExpr whose Start is an outer AddRecExpr.
4725 //
Andrew Trick070e5402012-03-16 03:16:56 +00004726 // IVUsers analysis should only create users that are dominated by simple loop
4727 // headers. Since this loop should dominate all of its users, its user list
4728 // should be empty if this loop itself is not within a simple loop nest.
Andrew Trick12728f02012-01-17 06:45:52 +00004729 for (DomTreeNode *Rung = DT.getNode(L->getLoopPreheader());
4730 Rung; Rung = Rung->getIDom()) {
4731 BasicBlock *BB = Rung->getBlock();
4732 const Loop *DomLoop = LI.getLoopFor(BB);
4733 if (DomLoop && DomLoop->getHeader() == BB) {
Andrew Trick070e5402012-03-16 03:16:56 +00004734 assert(DomLoop->getLoopPreheader() && "LSR needs a simplified loop nest");
Andrew Trick12728f02012-01-17 06:45:52 +00004735 }
Andrew Trick732ad802012-01-07 03:16:50 +00004736 }
Andrew Trick070e5402012-03-16 03:16:56 +00004737#endif // DEBUG
Dan Gohman85875f72009-03-09 20:34:59 +00004738
Dan Gohman45774ce2010-02-12 10:34:29 +00004739 DEBUG(dbgs() << "\nLSR on loop ";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00004740 L->getHeader()->printAsOperand(dbgs(), /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00004741 dbgs() << ":\n");
Dan Gohmane201f8f2009-03-09 20:46:50 +00004742
Dan Gohman927bcaa2010-05-20 20:33:18 +00004743 // First, perform some low-level loop optimizations.
Dan Gohman45774ce2010-02-12 10:34:29 +00004744 OptimizeShadowIV();
Dan Gohman4c4043c2010-05-20 20:05:31 +00004745 OptimizeLoopTermCond();
Evan Cheng78a4eb82009-05-11 22:33:01 +00004746
Andrew Trick8acb4342011-07-21 00:40:04 +00004747 // If loop preparation eliminates all interesting IV users, bail.
4748 if (IU.empty()) return;
4749
Andrew Trick168dfff2011-09-29 01:53:08 +00004750 // Skip nested loops until we can model them better with formulae.
Andrew Trickd97b83e2012-03-22 22:42:45 +00004751 if (!L->empty()) {
Andrew Trickbc6de902011-09-29 01:33:38 +00004752 DEBUG(dbgs() << "LSR skipping outer loop " << *L << "\n");
Andrew Trick168dfff2011-09-29 01:53:08 +00004753 return;
Andrew Trickbc6de902011-09-29 01:33:38 +00004754 }
4755
Dan Gohman927bcaa2010-05-20 20:33:18 +00004756 // Start collecting data and preparing for the solver.
Andrew Trick29fe5f02012-01-09 19:50:34 +00004757 CollectChains();
Dan Gohman45774ce2010-02-12 10:34:29 +00004758 CollectInterestingTypesAndFactors();
4759 CollectFixupsAndInitialFormulae();
4760 CollectLoopInvariantFixupsAndFormulae();
Chris Lattner9bfa6f82005-08-08 05:28:22 +00004761
Andrew Trick248d4102012-01-09 21:18:52 +00004762 assert(!Uses.empty() && "IVUsers reported at least one use");
Dan Gohman45774ce2010-02-12 10:34:29 +00004763 DEBUG(dbgs() << "LSR found " << Uses.size() << " uses:\n";
4764 print_uses(dbgs()));
Misha Brukmanb1c93172005-04-21 23:48:37 +00004765
Dan Gohman45774ce2010-02-12 10:34:29 +00004766 // Now use the reuse data to generate a bunch of interesting ways
4767 // to formulate the values needed for the uses.
4768 GenerateAllReuseFormulae();
Evan Cheng3df447d2006-03-16 21:53:05 +00004769
Dan Gohman45774ce2010-02-12 10:34:29 +00004770 FilterOutUndesirableDedicatedRegisters();
4771 NarrowSearchSpaceUsingHeuristics();
Dan Gohman92c36962009-12-18 00:06:20 +00004772
Dan Gohman45774ce2010-02-12 10:34:29 +00004773 SmallVector<const Formula *, 8> Solution;
4774 Solve(Solution);
Dan Gohman92c36962009-12-18 00:06:20 +00004775
Dan Gohman45774ce2010-02-12 10:34:29 +00004776 // Release memory that is no longer needed.
4777 Factors.clear();
4778 Types.clear();
4779 RegUses.clear();
4780
Andrew Trick58124392011-09-27 00:44:14 +00004781 if (Solution.empty())
4782 return;
4783
Dan Gohman45774ce2010-02-12 10:34:29 +00004784#ifndef NDEBUG
4785 // Formulae should be legal.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004786 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(), E = Uses.end();
4787 I != E; ++I) {
4788 const LSRUse &LU = *I;
4789 for (SmallVectorImpl<Formula>::const_iterator J = LU.Formulae.begin(),
4790 JE = LU.Formulae.end();
4791 J != JE; ++J)
4792 assert(isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
4793 *J) && "Illegal formula generated!");
Dan Gohman45774ce2010-02-12 10:34:29 +00004794 };
4795#endif
4796
4797 // Now that we've decided what we want, make it so.
4798 ImplementSolution(Solution, P);
4799}
4800
4801void LSRInstance::print_factors_and_types(raw_ostream &OS) const {
4802 if (Factors.empty() && Types.empty()) return;
4803
4804 OS << "LSR has identified the following interesting factors and types: ";
4805 bool First = true;
4806
4807 for (SmallSetVector<int64_t, 8>::const_iterator
4808 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
4809 if (!First) OS << ", ";
4810 First = false;
4811 OS << '*' << *I;
Evan Cheng87fe40b2009-11-10 21:14:05 +00004812 }
Dale Johannesen02cb2bf2009-05-11 17:15:42 +00004813
Chris Lattner229907c2011-07-18 04:54:35 +00004814 for (SmallSetVector<Type *, 4>::const_iterator
Dan Gohman45774ce2010-02-12 10:34:29 +00004815 I = Types.begin(), E = Types.end(); I != E; ++I) {
4816 if (!First) OS << ", ";
4817 First = false;
4818 OS << '(' << **I << ')';
4819 }
4820 OS << '\n';
4821}
4822
4823void LSRInstance::print_fixups(raw_ostream &OS) const {
4824 OS << "LSR is examining the following fixup sites:\n";
4825 for (SmallVectorImpl<LSRFixup>::const_iterator I = Fixups.begin(),
4826 E = Fixups.end(); I != E; ++I) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004827 dbgs() << " ";
Dan Gohman86110fa2010-05-20 22:25:20 +00004828 I->print(OS);
Dan Gohman45774ce2010-02-12 10:34:29 +00004829 OS << '\n';
4830 }
4831}
4832
4833void LSRInstance::print_uses(raw_ostream &OS) const {
4834 OS << "LSR is examining the following uses:\n";
4835 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
4836 E = Uses.end(); I != E; ++I) {
4837 const LSRUse &LU = *I;
4838 dbgs() << " ";
4839 LU.print(OS);
4840 OS << '\n';
4841 for (SmallVectorImpl<Formula>::const_iterator J = LU.Formulae.begin(),
4842 JE = LU.Formulae.end(); J != JE; ++J) {
4843 OS << " ";
4844 J->print(OS);
4845 OS << '\n';
4846 }
4847 }
4848}
4849
4850void LSRInstance::print(raw_ostream &OS) const {
4851 print_factors_and_types(OS);
4852 print_fixups(OS);
4853 print_uses(OS);
4854}
4855
Manman Ren49d684e2012-09-12 05:06:18 +00004856#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +00004857void LSRInstance::dump() const {
4858 print(errs()); errs() << '\n';
4859}
Manman Renc3366cc2012-09-06 19:55:56 +00004860#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00004861
4862namespace {
4863
4864class LoopStrengthReduce : public LoopPass {
Dan Gohman45774ce2010-02-12 10:34:29 +00004865public:
4866 static char ID; // Pass ID, replacement for typeid
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004867 LoopStrengthReduce();
Dan Gohman45774ce2010-02-12 10:34:29 +00004868
4869private:
4870 bool runOnLoop(Loop *L, LPPassManager &LPM);
4871 void getAnalysisUsage(AnalysisUsage &AU) const;
4872};
4873
4874}
4875
4876char LoopStrengthReduce::ID = 0;
Owen Anderson8ac477f2010-10-12 19:48:12 +00004877INITIALIZE_PASS_BEGIN(LoopStrengthReduce, "loop-reduce",
Owen Andersondf7a4f22010-10-07 22:25:06 +00004878 "Loop Strength Reduction", false, false)
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004879INITIALIZE_AG_DEPENDENCY(TargetTransformInfo)
Chandler Carruth73523022014-01-13 13:07:17 +00004880INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Owen Anderson8ac477f2010-10-12 19:48:12 +00004881INITIALIZE_PASS_DEPENDENCY(ScalarEvolution)
4882INITIALIZE_PASS_DEPENDENCY(IVUsers)
Owen Andersona4fefc12010-10-19 20:08:44 +00004883INITIALIZE_PASS_DEPENDENCY(LoopInfo)
4884INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
Owen Anderson8ac477f2010-10-12 19:48:12 +00004885INITIALIZE_PASS_END(LoopStrengthReduce, "loop-reduce",
4886 "Loop Strength Reduction", false, false)
4887
Nadav Rotem4dc976f2012-10-19 21:28:43 +00004888
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004889Pass *llvm::createLoopStrengthReducePass() {
4890 return new LoopStrengthReduce();
Dan Gohman45774ce2010-02-12 10:34:29 +00004891}
4892
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004893LoopStrengthReduce::LoopStrengthReduce() : LoopPass(ID) {
4894 initializeLoopStrengthReducePass(*PassRegistry::getPassRegistry());
4895}
Dan Gohman45774ce2010-02-12 10:34:29 +00004896
4897void LoopStrengthReduce::getAnalysisUsage(AnalysisUsage &AU) const {
4898 // We split critical edges, so we change the CFG. However, we do update
4899 // many analyses if they are around.
Eric Christopherda6bd452011-02-10 01:48:24 +00004900 AU.addPreservedID(LoopSimplifyID);
Dan Gohman45774ce2010-02-12 10:34:29 +00004901
Eric Christopherda6bd452011-02-10 01:48:24 +00004902 AU.addRequired<LoopInfo>();
4903 AU.addPreserved<LoopInfo>();
4904 AU.addRequiredID(LoopSimplifyID);
Chandler Carruth73523022014-01-13 13:07:17 +00004905 AU.addRequired<DominatorTreeWrapperPass>();
4906 AU.addPreserved<DominatorTreeWrapperPass>();
Dan Gohman45774ce2010-02-12 10:34:29 +00004907 AU.addRequired<ScalarEvolution>();
4908 AU.addPreserved<ScalarEvolution>();
Cameron Zwarich97dae4d2011-02-10 23:53:14 +00004909 // Requiring LoopSimplify a second time here prevents IVUsers from running
4910 // twice, since LoopSimplify was invalidated by running ScalarEvolution.
4911 AU.addRequiredID(LoopSimplifyID);
Dan Gohman45774ce2010-02-12 10:34:29 +00004912 AU.addRequired<IVUsers>();
4913 AU.addPreserved<IVUsers>();
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004914 AU.addRequired<TargetTransformInfo>();
Dan Gohman45774ce2010-02-12 10:34:29 +00004915}
4916
4917bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager & /*LPM*/) {
Paul Robinsonaf4e64d2014-02-06 00:07:05 +00004918 if (skipOptnoneFunction(L))
4919 return false;
4920
Dan Gohman45774ce2010-02-12 10:34:29 +00004921 bool Changed = false;
4922
4923 // Run the main LSR transformation.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004924 Changed |= LSRInstance(L, this).getChanged();
Dan Gohman45774ce2010-02-12 10:34:29 +00004925
Andrew Trick2ec61a82012-01-07 01:36:44 +00004926 // Remove any extra phis created by processing inner loops.
Dan Gohmanb5358002010-01-05 16:31:45 +00004927 Changed |= DeleteDeadPHIs(L->getHeader());
Andrew Trickf950ce82013-01-06 05:59:39 +00004928 if (EnablePhiElim && L->isLoopSimplifyForm()) {
Andrew Trick2ec61a82012-01-07 01:36:44 +00004929 SmallVector<WeakVH, 16> DeadInsts;
4930 SCEVExpander Rewriter(getAnalysis<ScalarEvolution>(), "lsr");
4931#ifndef NDEBUG
4932 Rewriter.setDebugType(DEBUG_TYPE);
4933#endif
Chandler Carruth73523022014-01-13 13:07:17 +00004934 unsigned numFolded = Rewriter.replaceCongruentIVs(
4935 L, &getAnalysis<DominatorTreeWrapperPass>().getDomTree(), DeadInsts,
4936 &getAnalysis<TargetTransformInfo>());
Andrew Trick2ec61a82012-01-07 01:36:44 +00004937 if (numFolded) {
4938 Changed = true;
4939 DeleteTriviallyDeadInstructions(DeadInsts);
4940 DeleteDeadPHIs(L->getHeader());
4941 }
4942 }
Evan Cheng03001cb2008-07-07 19:51:32 +00004943 return Changed;
Nate Begemanb18121e2004-10-18 21:08:22 +00004944}