blob: c1b881fc1c461ae0b74e6650bd9ccc4e357891ce [file] [log] [blame]
Dan Gohman2d1be872009-04-16 03:18:22 +00001//===- LoopStrengthReduce.cpp - Strength Reduce IVs in Loops --------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
Nate Begemaneaa13852004-10-18 21:08:22 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-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 Brukmanfd939082005-04-21 23:48:37 +00007//
Nate Begemaneaa13852004-10-18 21:08:22 +00008//===----------------------------------------------------------------------===//
9//
Dan Gohmancec8f9d2009-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 Begemaneaa13852004-10-18 21:08:22 +000014// This pass performs a strength reduction on array references inside loops that
Dan Gohmancec8f9d2009-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 Begemaneaa13852004-10-18 21:08:22 +000019//
Dan Gohman572645c2010-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 Carruthe4ba75f2013-01-07 14:41:08 +000040// TODO: Should the addressing mode BaseGV be changed to a ConstantExpr instead
41// of a GlobalValue?
Dan Gohman572645c2010-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 Begemaneaa13852004-10-18 21:08:22 +000054//===----------------------------------------------------------------------===//
55
Chris Lattnerbe3e5212005-08-03 23:30:08 +000056#define DEBUG_TYPE "loop-reduce"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000057#include "llvm/Transforms/Scalar.h"
58#include "llvm/ADT/DenseSet.h"
59#include "llvm/ADT/SetVector.h"
60#include "llvm/ADT/SmallBitVector.h"
Nadav Rotemad6aedc2012-10-08 23:06:34 +000061#include "llvm/AddressingMode.h"
Dan Gohman572645c2010-02-12 10:34:29 +000062#include "llvm/Analysis/Dominators.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000063#include "llvm/Analysis/IVUsers.h"
Devang Patel0f54dcb2007-03-06 21:14:09 +000064#include "llvm/Analysis/LoopPass.h"
Nate Begeman16997482005-07-30 00:15:07 +000065#include "llvm/Analysis/ScalarEvolutionExpander.h"
Chandler Carruthe4ba75f2013-01-07 14:41:08 +000066#include "llvm/Analysis/TargetTransformInfo.h"
Chris Lattner9fc5cdf2011-01-02 22:09:33 +000067#include "llvm/Assembly/Writer.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000068#include "llvm/IR/Constants.h"
69#include "llvm/IR/DerivedTypes.h"
70#include "llvm/IR/Instructions.h"
71#include "llvm/IR/IntrinsicInst.h"
Andrew Trick80ef1b22011-09-27 00:44:14 +000072#include "llvm/Support/CommandLine.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000073#include "llvm/Support/Debug.h"
Dan Gohmanafc36a92009-05-02 18:29:22 +000074#include "llvm/Support/ValueHandle.h"
Daniel Dunbar460f6562009-07-26 09:48:23 +000075#include "llvm/Support/raw_ostream.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000076#include "llvm/Transforms/Utils/BasicBlockUtils.h"
77#include "llvm/Transforms/Utils/Local.h"
Jeff Cohencfb1d422005-07-30 18:22:27 +000078#include <algorithm>
Nate Begemaneaa13852004-10-18 21:08:22 +000079using namespace llvm;
80
Andrew Trickb5122632012-04-18 04:00:10 +000081/// MaxIVUsers is an arbitrary threshold that provides an early opportunitiy for
82/// bail out. This threshold is far beyond the number of users that LSR can
83/// conceivably solve, so it should not affect generated code, but catches the
84/// worst cases before LSR burns too much compile time and stack space.
85static const unsigned MaxIVUsers = 200;
86
Andrew Tricka02bfce2011-10-11 02:30:45 +000087// Temporary flag to cleanup congruent phis after LSR phi expansion.
88// It's currently disabled until we can determine whether it's truly useful or
89// not. The flag should be removed after the v3.0 release.
Andrew Trick24f670f2012-01-07 07:08:17 +000090// This is now needed for ivchains.
Benjamin Kramer0861f572011-11-26 23:01:57 +000091static cl::opt<bool> EnablePhiElim(
Andrew Trick24f670f2012-01-07 07:08:17 +000092 "enable-lsr-phielim", cl::Hidden, cl::init(true),
93 cl::desc("Enable LSR phi elimination"));
Andrew Trick80ef1b22011-09-27 00:44:14 +000094
Andrew Trick22d20c22012-01-09 21:18:52 +000095#ifndef NDEBUG
96// Stress test IV chain generation.
97static cl::opt<bool> StressIVChain(
98 "stress-ivchain", cl::Hidden, cl::init(false),
99 cl::desc("Stress test LSR IV chains"));
100#else
101static bool StressIVChain = false;
102#endif
103
Dan Gohman572645c2010-02-12 10:34:29 +0000104namespace {
Nate Begemaneaa13852004-10-18 21:08:22 +0000105
Dan Gohman572645c2010-02-12 10:34:29 +0000106/// RegSortData - This class holds data which is used to order reuse candidates.
107class RegSortData {
108public:
109 /// UsedByIndices - This represents the set of LSRUse indices which reference
110 /// a particular register.
111 SmallBitVector UsedByIndices;
112
113 RegSortData() {}
114
115 void print(raw_ostream &OS) const;
116 void dump() const;
117};
118
119}
120
121void RegSortData::print(raw_ostream &OS) const {
122 OS << "[NumUses=" << UsedByIndices.count() << ']';
123}
124
Manman Ren286c4dc2012-09-12 05:06:18 +0000125#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman572645c2010-02-12 10:34:29 +0000126void RegSortData::dump() const {
127 print(errs()); errs() << '\n';
128}
Manman Rencc77eec2012-09-06 19:55:56 +0000129#endif
Dan Gohmanc17e0cf2009-02-20 04:17:46 +0000130
Chris Lattner0e5f4992006-12-19 21:40:18 +0000131namespace {
Dale Johannesendc42f482007-03-20 00:47:50 +0000132
Dan Gohman572645c2010-02-12 10:34:29 +0000133/// RegUseTracker - Map register candidates to information about how they are
134/// used.
135class RegUseTracker {
136 typedef DenseMap<const SCEV *, RegSortData> RegUsesTy;
Dale Johannesendc42f482007-03-20 00:47:50 +0000137
Dan Gohman90bb3552010-05-18 22:33:00 +0000138 RegUsesTy RegUsesMap;
Dan Gohman572645c2010-02-12 10:34:29 +0000139 SmallVector<const SCEV *, 16> RegSequence;
Evan Chengd1d6b5c2006-03-16 21:53:05 +0000140
Dan Gohman572645c2010-02-12 10:34:29 +0000141public:
142 void CountRegister(const SCEV *Reg, size_t LUIdx);
Dan Gohmanb2df4332010-05-18 23:42:37 +0000143 void DropRegister(const SCEV *Reg, size_t LUIdx);
Dan Gohmanc6897702010-10-07 23:33:43 +0000144 void SwapAndDropUse(size_t LUIdx, size_t LastLUIdx);
Dan Gohmana10756e2010-01-21 02:09:26 +0000145
Dan Gohman572645c2010-02-12 10:34:29 +0000146 bool isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const;
Dan Gohmana10756e2010-01-21 02:09:26 +0000147
Dan Gohman572645c2010-02-12 10:34:29 +0000148 const SmallBitVector &getUsedByIndices(const SCEV *Reg) const;
Dan Gohmana10756e2010-01-21 02:09:26 +0000149
Dan Gohman572645c2010-02-12 10:34:29 +0000150 void clear();
Dan Gohmana10756e2010-01-21 02:09:26 +0000151
Dan Gohman572645c2010-02-12 10:34:29 +0000152 typedef SmallVectorImpl<const SCEV *>::iterator iterator;
153 typedef SmallVectorImpl<const SCEV *>::const_iterator const_iterator;
154 iterator begin() { return RegSequence.begin(); }
155 iterator end() { return RegSequence.end(); }
156 const_iterator begin() const { return RegSequence.begin(); }
157 const_iterator end() const { return RegSequence.end(); }
158};
Dan Gohmana10756e2010-01-21 02:09:26 +0000159
Dan Gohmana10756e2010-01-21 02:09:26 +0000160}
161
Dan Gohman572645c2010-02-12 10:34:29 +0000162void
163RegUseTracker::CountRegister(const SCEV *Reg, size_t LUIdx) {
164 std::pair<RegUsesTy::iterator, bool> Pair =
Dan Gohman90bb3552010-05-18 22:33:00 +0000165 RegUsesMap.insert(std::make_pair(Reg, RegSortData()));
Dan Gohman572645c2010-02-12 10:34:29 +0000166 RegSortData &RSD = Pair.first->second;
167 if (Pair.second)
168 RegSequence.push_back(Reg);
169 RSD.UsedByIndices.resize(std::max(RSD.UsedByIndices.size(), LUIdx + 1));
170 RSD.UsedByIndices.set(LUIdx);
Dan Gohmana10756e2010-01-21 02:09:26 +0000171}
172
Dan Gohmanb2df4332010-05-18 23:42:37 +0000173void
174RegUseTracker::DropRegister(const SCEV *Reg, size_t LUIdx) {
175 RegUsesTy::iterator It = RegUsesMap.find(Reg);
176 assert(It != RegUsesMap.end());
177 RegSortData &RSD = It->second;
178 assert(RSD.UsedByIndices.size() > LUIdx);
179 RSD.UsedByIndices.reset(LUIdx);
180}
181
Dan Gohmana2086b32010-05-19 23:43:12 +0000182void
Dan Gohmanc6897702010-10-07 23:33:43 +0000183RegUseTracker::SwapAndDropUse(size_t LUIdx, size_t LastLUIdx) {
184 assert(LUIdx <= LastLUIdx);
185
186 // Update RegUses. The data structure is not optimized for this purpose;
187 // we must iterate through it and update each of the bit vectors.
Dan Gohmana2086b32010-05-19 23:43:12 +0000188 for (RegUsesTy::iterator I = RegUsesMap.begin(), E = RegUsesMap.end();
Dan Gohmanc6897702010-10-07 23:33:43 +0000189 I != E; ++I) {
190 SmallBitVector &UsedByIndices = I->second.UsedByIndices;
191 if (LUIdx < UsedByIndices.size())
192 UsedByIndices[LUIdx] =
193 LastLUIdx < UsedByIndices.size() ? UsedByIndices[LastLUIdx] : 0;
194 UsedByIndices.resize(std::min(UsedByIndices.size(), LastLUIdx));
195 }
Dan Gohmana2086b32010-05-19 23:43:12 +0000196}
197
Dan Gohman572645c2010-02-12 10:34:29 +0000198bool
199RegUseTracker::isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const {
Dan Gohman46fd7a62010-08-29 15:18:49 +0000200 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
201 if (I == RegUsesMap.end())
202 return false;
203 const SmallBitVector &UsedByIndices = I->second.UsedByIndices;
Dan Gohman572645c2010-02-12 10:34:29 +0000204 int i = UsedByIndices.find_first();
205 if (i == -1) return false;
206 if ((size_t)i != LUIdx) return true;
207 return UsedByIndices.find_next(i) != -1;
208}
Dan Gohmana10756e2010-01-21 02:09:26 +0000209
Dan Gohman572645c2010-02-12 10:34:29 +0000210const SmallBitVector &RegUseTracker::getUsedByIndices(const SCEV *Reg) const {
Dan Gohman90bb3552010-05-18 22:33:00 +0000211 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
212 assert(I != RegUsesMap.end() && "Unknown register!");
Dan Gohman572645c2010-02-12 10:34:29 +0000213 return I->second.UsedByIndices;
214}
Dan Gohmana10756e2010-01-21 02:09:26 +0000215
Dan Gohman572645c2010-02-12 10:34:29 +0000216void RegUseTracker::clear() {
Dan Gohman90bb3552010-05-18 22:33:00 +0000217 RegUsesMap.clear();
Dan Gohman572645c2010-02-12 10:34:29 +0000218 RegSequence.clear();
219}
Dan Gohmana10756e2010-01-21 02:09:26 +0000220
Dan Gohman572645c2010-02-12 10:34:29 +0000221namespace {
222
223/// Formula - This class holds information that describes a formula for
224/// computing satisfying a use. It may include broken-out immediates and scaled
225/// registers.
226struct Formula {
227 /// AM - This is used to represent complex addressing, as well as other kinds
228 /// of interesting uses.
Nadav Rotemad6aedc2012-10-08 23:06:34 +0000229 AddrMode AM;
Dan Gohman572645c2010-02-12 10:34:29 +0000230
231 /// BaseRegs - The list of "base" registers for this use. When this is
232 /// non-empty, AM.HasBaseReg should be set to true.
233 SmallVector<const SCEV *, 2> BaseRegs;
234
235 /// ScaledReg - The 'scaled' register for this use. This should be non-null
236 /// when AM.Scale is not zero.
237 const SCEV *ScaledReg;
238
Dan Gohmancca82142011-05-03 00:46:49 +0000239 /// UnfoldedOffset - An additional constant offset which added near the
240 /// use. This requires a temporary register, but the offset itself can
241 /// live in an add immediate field rather than a register.
242 int64_t UnfoldedOffset;
243
244 Formula() : ScaledReg(0), UnfoldedOffset(0) {}
Dan Gohman572645c2010-02-12 10:34:29 +0000245
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000246 void InitialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE);
Dan Gohman572645c2010-02-12 10:34:29 +0000247
248 unsigned getNumRegs() const;
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000249 Type *getType() const;
Dan Gohman572645c2010-02-12 10:34:29 +0000250
Dan Gohman5ce6d052010-05-20 15:17:54 +0000251 void DeleteBaseReg(const SCEV *&S);
252
Dan Gohman572645c2010-02-12 10:34:29 +0000253 bool referencesReg(const SCEV *S) const;
254 bool hasRegsUsedByUsesOtherThan(size_t LUIdx,
255 const RegUseTracker &RegUses) const;
256
257 void print(raw_ostream &OS) const;
258 void dump() const;
259};
260
261}
262
Dan Gohman3f46a3a2010-03-01 17:49:51 +0000263/// DoInitialMatch - Recursion helper for InitialMatch.
Dan Gohman572645c2010-02-12 10:34:29 +0000264static void DoInitialMatch(const SCEV *S, Loop *L,
265 SmallVectorImpl<const SCEV *> &Good,
266 SmallVectorImpl<const SCEV *> &Bad,
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000267 ScalarEvolution &SE) {
Dan Gohman572645c2010-02-12 10:34:29 +0000268 // Collect expressions which properly dominate the loop header.
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000269 if (SE.properlyDominates(S, L->getHeader())) {
Dan Gohman572645c2010-02-12 10:34:29 +0000270 Good.push_back(S);
271 return;
Dan Gohmana10756e2010-01-21 02:09:26 +0000272 }
Dan Gohman572645c2010-02-12 10:34:29 +0000273
274 // Look at add operands.
275 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
276 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
277 I != E; ++I)
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000278 DoInitialMatch(*I, L, Good, Bad, SE);
Dan Gohman572645c2010-02-12 10:34:29 +0000279 return;
280 }
281
282 // Look at addrec operands.
283 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S))
284 if (!AR->getStart()->isZero()) {
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000285 DoInitialMatch(AR->getStart(), L, Good, Bad, SE);
Dan Gohmandeff6212010-05-03 22:09:21 +0000286 DoInitialMatch(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
Dan Gohman572645c2010-02-12 10:34:29 +0000287 AR->getStepRecurrence(SE),
Andrew Trick3228cc22011-03-14 16:50:06 +0000288 // FIXME: AR->getNoWrapFlags()
289 AR->getLoop(), SCEV::FlagAnyWrap),
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000290 L, Good, Bad, SE);
Dan Gohman572645c2010-02-12 10:34:29 +0000291 return;
292 }
293
294 // Handle a multiplication by -1 (negation) if it didn't fold.
295 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S))
296 if (Mul->getOperand(0)->isAllOnesValue()) {
297 SmallVector<const SCEV *, 4> Ops(Mul->op_begin()+1, Mul->op_end());
298 const SCEV *NewMul = SE.getMulExpr(Ops);
299
300 SmallVector<const SCEV *, 4> MyGood;
301 SmallVector<const SCEV *, 4> MyBad;
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000302 DoInitialMatch(NewMul, L, MyGood, MyBad, SE);
Dan Gohman572645c2010-02-12 10:34:29 +0000303 const SCEV *NegOne = SE.getSCEV(ConstantInt::getAllOnesValue(
304 SE.getEffectiveSCEVType(NewMul->getType())));
305 for (SmallVectorImpl<const SCEV *>::const_iterator I = MyGood.begin(),
306 E = MyGood.end(); I != E; ++I)
307 Good.push_back(SE.getMulExpr(NegOne, *I));
308 for (SmallVectorImpl<const SCEV *>::const_iterator I = MyBad.begin(),
309 E = MyBad.end(); I != E; ++I)
310 Bad.push_back(SE.getMulExpr(NegOne, *I));
311 return;
312 }
313
314 // Ok, we can't do anything interesting. Just stuff the whole thing into a
315 // register and hope for the best.
316 Bad.push_back(S);
317}
318
319/// InitialMatch - Incorporate loop-variant parts of S into this Formula,
320/// attempting to keep all loop-invariant and loop-computable values in a
321/// single base register.
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000322void Formula::InitialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE) {
Dan Gohman572645c2010-02-12 10:34:29 +0000323 SmallVector<const SCEV *, 4> Good;
324 SmallVector<const SCEV *, 4> Bad;
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000325 DoInitialMatch(S, L, Good, Bad, SE);
Dan Gohman572645c2010-02-12 10:34:29 +0000326 if (!Good.empty()) {
Dan Gohmane60bb152010-04-08 23:36:27 +0000327 const SCEV *Sum = SE.getAddExpr(Good);
328 if (!Sum->isZero())
329 BaseRegs.push_back(Sum);
Dan Gohman572645c2010-02-12 10:34:29 +0000330 AM.HasBaseReg = true;
331 }
332 if (!Bad.empty()) {
Dan Gohmane60bb152010-04-08 23:36:27 +0000333 const SCEV *Sum = SE.getAddExpr(Bad);
334 if (!Sum->isZero())
335 BaseRegs.push_back(Sum);
Dan Gohman572645c2010-02-12 10:34:29 +0000336 AM.HasBaseReg = true;
337 }
338}
339
340/// getNumRegs - Return the total number of register operands used by this
341/// formula. This does not include register uses implied by non-constant
342/// addrec strides.
343unsigned Formula::getNumRegs() const {
344 return !!ScaledReg + BaseRegs.size();
345}
346
347/// getType - Return the type of this formula, if it has one, or null
348/// otherwise. This type is meaningless except for the bit size.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000349Type *Formula::getType() const {
Dan Gohman572645c2010-02-12 10:34:29 +0000350 return !BaseRegs.empty() ? BaseRegs.front()->getType() :
351 ScaledReg ? ScaledReg->getType() :
352 AM.BaseGV ? AM.BaseGV->getType() :
353 0;
354}
355
Dan Gohman5ce6d052010-05-20 15:17:54 +0000356/// DeleteBaseReg - Delete the given base reg from the BaseRegs list.
357void Formula::DeleteBaseReg(const SCEV *&S) {
358 if (&S != &BaseRegs.back())
359 std::swap(S, BaseRegs.back());
360 BaseRegs.pop_back();
361}
362
Dan Gohman572645c2010-02-12 10:34:29 +0000363/// referencesReg - Test if this formula references the given register.
364bool Formula::referencesReg(const SCEV *S) const {
365 return S == ScaledReg ||
366 std::find(BaseRegs.begin(), BaseRegs.end(), S) != BaseRegs.end();
367}
368
369/// hasRegsUsedByUsesOtherThan - Test whether this formula uses registers
370/// which are used by uses other than the use with the given index.
371bool Formula::hasRegsUsedByUsesOtherThan(size_t LUIdx,
372 const RegUseTracker &RegUses) const {
373 if (ScaledReg)
374 if (RegUses.isRegUsedByUsesOtherThan(ScaledReg, LUIdx))
375 return true;
376 for (SmallVectorImpl<const SCEV *>::const_iterator I = BaseRegs.begin(),
377 E = BaseRegs.end(); I != E; ++I)
378 if (RegUses.isRegUsedByUsesOtherThan(*I, LUIdx))
379 return true;
380 return false;
381}
382
383void Formula::print(raw_ostream &OS) const {
384 bool First = true;
385 if (AM.BaseGV) {
386 if (!First) OS << " + "; else First = false;
387 WriteAsOperand(OS, AM.BaseGV, /*PrintType=*/false);
388 }
389 if (AM.BaseOffs != 0) {
390 if (!First) OS << " + "; else First = false;
391 OS << AM.BaseOffs;
392 }
393 for (SmallVectorImpl<const SCEV *>::const_iterator I = BaseRegs.begin(),
394 E = BaseRegs.end(); I != E; ++I) {
395 if (!First) OS << " + "; else First = false;
396 OS << "reg(" << **I << ')';
397 }
Dan Gohmanc4cfbaf2010-05-18 22:35:55 +0000398 if (AM.HasBaseReg && BaseRegs.empty()) {
399 if (!First) OS << " + "; else First = false;
400 OS << "**error: HasBaseReg**";
401 } else if (!AM.HasBaseReg && !BaseRegs.empty()) {
402 if (!First) OS << " + "; else First = false;
403 OS << "**error: !HasBaseReg**";
404 }
Dan Gohman572645c2010-02-12 10:34:29 +0000405 if (AM.Scale != 0) {
406 if (!First) OS << " + "; else First = false;
407 OS << AM.Scale << "*reg(";
408 if (ScaledReg)
409 OS << *ScaledReg;
410 else
411 OS << "<unknown>";
412 OS << ')';
413 }
Dan Gohmancca82142011-05-03 00:46:49 +0000414 if (UnfoldedOffset != 0) {
415 if (!First) OS << " + "; else First = false;
416 OS << "imm(" << UnfoldedOffset << ')';
417 }
Dan Gohman572645c2010-02-12 10:34:29 +0000418}
419
Manman Ren286c4dc2012-09-12 05:06:18 +0000420#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman572645c2010-02-12 10:34:29 +0000421void Formula::dump() const {
422 print(errs()); errs() << '\n';
423}
Manman Rencc77eec2012-09-06 19:55:56 +0000424#endif
Dan Gohman572645c2010-02-12 10:34:29 +0000425
Dan Gohmanaae01f12010-02-19 19:32:49 +0000426/// isAddRecSExtable - Return true if the given addrec can be sign-extended
427/// without changing its value.
428static bool isAddRecSExtable(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000429 Type *WideTy =
Dan Gohmanea507f52010-05-20 19:44:23 +0000430 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(AR->getType()) + 1);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000431 return isa<SCEVAddRecExpr>(SE.getSignExtendExpr(AR, WideTy));
432}
433
434/// isAddSExtable - Return true if the given add can be sign-extended
435/// without changing its value.
436static bool isAddSExtable(const SCEVAddExpr *A, ScalarEvolution &SE) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000437 Type *WideTy =
Dan Gohmanea507f52010-05-20 19:44:23 +0000438 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(A->getType()) + 1);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000439 return isa<SCEVAddExpr>(SE.getSignExtendExpr(A, WideTy));
440}
441
Dan Gohman473e6352010-06-24 16:45:11 +0000442/// isMulSExtable - Return true if the given mul can be sign-extended
Dan Gohmanaae01f12010-02-19 19:32:49 +0000443/// without changing its value.
Dan Gohman473e6352010-06-24 16:45:11 +0000444static bool isMulSExtable(const SCEVMulExpr *M, ScalarEvolution &SE) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000445 Type *WideTy =
Dan Gohman473e6352010-06-24 16:45:11 +0000446 IntegerType::get(SE.getContext(),
447 SE.getTypeSizeInBits(M->getType()) * M->getNumOperands());
448 return isa<SCEVMulExpr>(SE.getSignExtendExpr(M, WideTy));
Dan Gohmanaae01f12010-02-19 19:32:49 +0000449}
450
Dan Gohmanf09b7122010-02-19 19:35:48 +0000451/// getExactSDiv - Return an expression for LHS /s RHS, if it can be determined
452/// and if the remainder is known to be zero, or null otherwise. If
453/// IgnoreSignificantBits is true, expressions like (X * Y) /s Y are simplified
454/// to Y, ignoring that the multiplication may overflow, which is useful when
455/// the result will be used in a context where the most significant bits are
456/// ignored.
457static const SCEV *getExactSDiv(const SCEV *LHS, const SCEV *RHS,
458 ScalarEvolution &SE,
459 bool IgnoreSignificantBits = false) {
Dan Gohman572645c2010-02-12 10:34:29 +0000460 // Handle the trivial case, which works for any SCEV type.
461 if (LHS == RHS)
Dan Gohmandeff6212010-05-03 22:09:21 +0000462 return SE.getConstant(LHS->getType(), 1);
Dan Gohman572645c2010-02-12 10:34:29 +0000463
Dan Gohmand42819a2010-06-24 16:51:25 +0000464 // Handle a few RHS special cases.
465 const SCEVConstant *RC = dyn_cast<SCEVConstant>(RHS);
466 if (RC) {
467 const APInt &RA = RC->getValue()->getValue();
468 // Handle x /s -1 as x * -1, to give ScalarEvolution a chance to do
469 // some folding.
470 if (RA.isAllOnesValue())
471 return SE.getMulExpr(LHS, RC);
472 // Handle x /s 1 as x.
473 if (RA == 1)
474 return LHS;
475 }
Dan Gohman572645c2010-02-12 10:34:29 +0000476
477 // Check for a division of a constant by a constant.
478 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(LHS)) {
Dan Gohman572645c2010-02-12 10:34:29 +0000479 if (!RC)
480 return 0;
Dan Gohmand42819a2010-06-24 16:51:25 +0000481 const APInt &LA = C->getValue()->getValue();
482 const APInt &RA = RC->getValue()->getValue();
483 if (LA.srem(RA) != 0)
Dan Gohman572645c2010-02-12 10:34:29 +0000484 return 0;
Dan Gohmand42819a2010-06-24 16:51:25 +0000485 return SE.getConstant(LA.sdiv(RA));
Dan Gohman572645c2010-02-12 10:34:29 +0000486 }
487
Dan Gohmanaae01f12010-02-19 19:32:49 +0000488 // Distribute the sdiv over addrec operands, if the addrec doesn't overflow.
Dan Gohman572645c2010-02-12 10:34:29 +0000489 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000490 if (IgnoreSignificantBits || isAddRecSExtable(AR, SE)) {
Dan Gohmanf09b7122010-02-19 19:35:48 +0000491 const SCEV *Step = getExactSDiv(AR->getStepRecurrence(SE), RHS, SE,
492 IgnoreSignificantBits);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000493 if (!Step) return 0;
Dan Gohman694a15e2010-08-19 01:02:31 +0000494 const SCEV *Start = getExactSDiv(AR->getStart(), RHS, SE,
495 IgnoreSignificantBits);
496 if (!Start) return 0;
Andrew Trick3228cc22011-03-14 16:50:06 +0000497 // FlagNW is independent of the start value, step direction, and is
498 // preserved with smaller magnitude steps.
499 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
500 return SE.getAddRecExpr(Start, Step, AR->getLoop(), SCEV::FlagAnyWrap);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000501 }
Dan Gohman2ea09e02010-06-24 16:57:52 +0000502 return 0;
Dan Gohman572645c2010-02-12 10:34:29 +0000503 }
504
Dan Gohmanaae01f12010-02-19 19:32:49 +0000505 // Distribute the sdiv over add operands, if the add doesn't overflow.
Dan Gohman572645c2010-02-12 10:34:29 +0000506 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000507 if (IgnoreSignificantBits || isAddSExtable(Add, SE)) {
508 SmallVector<const SCEV *, 8> Ops;
509 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
510 I != E; ++I) {
Dan Gohmanf09b7122010-02-19 19:35:48 +0000511 const SCEV *Op = getExactSDiv(*I, RHS, SE,
512 IgnoreSignificantBits);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000513 if (!Op) return 0;
514 Ops.push_back(Op);
515 }
516 return SE.getAddExpr(Ops);
Dan Gohman572645c2010-02-12 10:34:29 +0000517 }
Dan Gohman2ea09e02010-06-24 16:57:52 +0000518 return 0;
Dan Gohman572645c2010-02-12 10:34:29 +0000519 }
520
521 // Check for a multiply operand that we can pull RHS out of.
Dan Gohman2ea09e02010-06-24 16:57:52 +0000522 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000523 if (IgnoreSignificantBits || isMulSExtable(Mul, SE)) {
Dan Gohman572645c2010-02-12 10:34:29 +0000524 SmallVector<const SCEV *, 4> Ops;
525 bool Found = false;
526 for (SCEVMulExpr::op_iterator I = Mul->op_begin(), E = Mul->op_end();
527 I != E; ++I) {
Dan Gohman47667442010-05-20 16:23:28 +0000528 const SCEV *S = *I;
Dan Gohman572645c2010-02-12 10:34:29 +0000529 if (!Found)
Dan Gohman47667442010-05-20 16:23:28 +0000530 if (const SCEV *Q = getExactSDiv(S, RHS, SE,
Dan Gohmanf09b7122010-02-19 19:35:48 +0000531 IgnoreSignificantBits)) {
Dan Gohman47667442010-05-20 16:23:28 +0000532 S = Q;
Dan Gohman572645c2010-02-12 10:34:29 +0000533 Found = true;
Dan Gohman572645c2010-02-12 10:34:29 +0000534 }
Dan Gohman47667442010-05-20 16:23:28 +0000535 Ops.push_back(S);
Dan Gohman572645c2010-02-12 10:34:29 +0000536 }
537 return Found ? SE.getMulExpr(Ops) : 0;
538 }
Dan Gohman2ea09e02010-06-24 16:57:52 +0000539 return 0;
540 }
Dan Gohman572645c2010-02-12 10:34:29 +0000541
542 // Otherwise we don't know.
543 return 0;
544}
545
546/// ExtractImmediate - If S involves the addition of a constant integer value,
547/// return that integer value, and mutate S to point to a new SCEV with that
548/// value excluded.
549static int64_t ExtractImmediate(const SCEV *&S, ScalarEvolution &SE) {
550 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) {
551 if (C->getValue()->getValue().getMinSignedBits() <= 64) {
Dan Gohmandeff6212010-05-03 22:09:21 +0000552 S = SE.getConstant(C->getType(), 0);
Dan Gohman572645c2010-02-12 10:34:29 +0000553 return C->getValue()->getSExtValue();
554 }
555 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
556 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
557 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000558 if (Result != 0)
559 S = SE.getAddExpr(NewOps);
Dan Gohman572645c2010-02-12 10:34:29 +0000560 return Result;
561 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
562 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
563 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000564 if (Result != 0)
Andrew Trick3228cc22011-03-14 16:50:06 +0000565 S = SE.getAddRecExpr(NewOps, AR->getLoop(),
566 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
567 SCEV::FlagAnyWrap);
Dan Gohman572645c2010-02-12 10:34:29 +0000568 return Result;
569 }
570 return 0;
571}
572
573/// ExtractSymbol - If S involves the addition of a GlobalValue address,
574/// return that symbol, and mutate S to point to a new SCEV with that
575/// value excluded.
576static GlobalValue *ExtractSymbol(const SCEV *&S, ScalarEvolution &SE) {
577 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
578 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue())) {
Dan Gohmandeff6212010-05-03 22:09:21 +0000579 S = SE.getConstant(GV->getType(), 0);
Dan Gohman572645c2010-02-12 10:34:29 +0000580 return GV;
581 }
582 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
583 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
584 GlobalValue *Result = ExtractSymbol(NewOps.back(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000585 if (Result)
586 S = SE.getAddExpr(NewOps);
Dan Gohman572645c2010-02-12 10:34:29 +0000587 return Result;
588 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
589 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
590 GlobalValue *Result = ExtractSymbol(NewOps.front(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000591 if (Result)
Andrew Trick3228cc22011-03-14 16:50:06 +0000592 S = SE.getAddRecExpr(NewOps, AR->getLoop(),
593 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
594 SCEV::FlagAnyWrap);
Dan Gohman572645c2010-02-12 10:34:29 +0000595 return Result;
596 }
597 return 0;
Nate Begemaneaa13852004-10-18 21:08:22 +0000598}
599
Dan Gohmanf284ce22009-02-18 00:08:39 +0000600/// isAddressUse - Returns true if the specified instruction is using the
Dale Johannesen203af582008-12-05 21:47:27 +0000601/// specified value as an address.
602static bool isAddressUse(Instruction *Inst, Value *OperandVal) {
603 bool isAddress = isa<LoadInst>(Inst);
604 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
605 if (SI->getOperand(1) == OperandVal)
606 isAddress = true;
607 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
608 // Addressing modes can also be folded into prefetches and a variety
609 // of intrinsics.
610 switch (II->getIntrinsicID()) {
611 default: break;
612 case Intrinsic::prefetch:
Dale Johannesen203af582008-12-05 21:47:27 +0000613 case Intrinsic::x86_sse_storeu_ps:
614 case Intrinsic::x86_sse2_storeu_pd:
615 case Intrinsic::x86_sse2_storeu_dq:
616 case Intrinsic::x86_sse2_storel_dq:
Gabor Greifad72e732010-06-30 09:15:28 +0000617 if (II->getArgOperand(0) == OperandVal)
Dale Johannesen203af582008-12-05 21:47:27 +0000618 isAddress = true;
619 break;
620 }
621 }
622 return isAddress;
623}
Chris Lattner0ae33eb2005-10-03 01:04:44 +0000624
Dan Gohman21e77222009-03-09 21:01:17 +0000625/// getAccessType - Return the type of the memory being accessed.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000626static Type *getAccessType(const Instruction *Inst) {
627 Type *AccessTy = Inst->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000628 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst))
Dan Gohmana537bf82009-05-18 16:45:28 +0000629 AccessTy = SI->getOperand(0)->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000630 else if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
631 // Addressing modes can also be folded into prefetches and a variety
632 // of intrinsics.
633 switch (II->getIntrinsicID()) {
634 default: break;
635 case Intrinsic::x86_sse_storeu_ps:
636 case Intrinsic::x86_sse2_storeu_pd:
637 case Intrinsic::x86_sse2_storeu_dq:
638 case Intrinsic::x86_sse2_storel_dq:
Gabor Greifad72e732010-06-30 09:15:28 +0000639 AccessTy = II->getArgOperand(0)->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000640 break;
641 }
642 }
Dan Gohman572645c2010-02-12 10:34:29 +0000643
644 // All pointers have the same requirements, so canonicalize them to an
645 // arbitrary pointer type to minimize variation.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000646 if (PointerType *PTy = dyn_cast<PointerType>(AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +0000647 AccessTy = PointerType::get(IntegerType::get(PTy->getContext(), 1),
648 PTy->getAddressSpace());
649
Dan Gohmana537bf82009-05-18 16:45:28 +0000650 return AccessTy;
Dan Gohman21e77222009-03-09 21:01:17 +0000651}
652
Andrew Trick8a5d7922011-12-06 03:13:31 +0000653/// isExistingPhi - Return true if this AddRec is already a phi in its loop.
654static bool isExistingPhi(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
655 for (BasicBlock::iterator I = AR->getLoop()->getHeader()->begin();
656 PHINode *PN = dyn_cast<PHINode>(I); ++I) {
657 if (SE.isSCEVable(PN->getType()) &&
658 (SE.getEffectiveSCEVType(PN->getType()) ==
659 SE.getEffectiveSCEVType(AR->getType())) &&
660 SE.getSCEV(PN) == AR)
661 return true;
662 }
663 return false;
664}
665
Andrew Trick64925c52012-01-10 01:45:08 +0000666/// Check if expanding this expression is likely to incur significant cost. This
667/// is tricky because SCEV doesn't track which expressions are actually computed
668/// by the current IR.
669///
670/// We currently allow expansion of IV increments that involve adds,
671/// multiplication by constants, and AddRecs from existing phis.
672///
673/// TODO: Allow UDivExpr if we can find an existing IV increment that is an
674/// obvious multiple of the UDivExpr.
675static bool isHighCostExpansion(const SCEV *S,
676 SmallPtrSet<const SCEV*, 8> &Processed,
677 ScalarEvolution &SE) {
678 // Zero/One operand expressions
679 switch (S->getSCEVType()) {
680 case scUnknown:
681 case scConstant:
682 return false;
683 case scTruncate:
684 return isHighCostExpansion(cast<SCEVTruncateExpr>(S)->getOperand(),
685 Processed, SE);
686 case scZeroExtend:
687 return isHighCostExpansion(cast<SCEVZeroExtendExpr>(S)->getOperand(),
688 Processed, SE);
689 case scSignExtend:
690 return isHighCostExpansion(cast<SCEVSignExtendExpr>(S)->getOperand(),
691 Processed, SE);
692 }
693
694 if (!Processed.insert(S))
695 return false;
696
697 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
698 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
699 I != E; ++I) {
700 if (isHighCostExpansion(*I, Processed, SE))
701 return true;
702 }
703 return false;
704 }
705
706 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
707 if (Mul->getNumOperands() == 2) {
708 // Multiplication by a constant is ok
709 if (isa<SCEVConstant>(Mul->getOperand(0)))
710 return isHighCostExpansion(Mul->getOperand(1), Processed, SE);
711
712 // If we have the value of one operand, check if an existing
713 // multiplication already generates this expression.
714 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(Mul->getOperand(1))) {
715 Value *UVal = U->getValue();
716 for (Value::use_iterator UI = UVal->use_begin(), UE = UVal->use_end();
717 UI != UE; ++UI) {
Andrew Trick05fecbe2012-03-26 20:28:37 +0000718 // If U is a constant, it may be used by a ConstantExpr.
719 Instruction *User = dyn_cast<Instruction>(*UI);
720 if (User && User->getOpcode() == Instruction::Mul
Andrew Trick64925c52012-01-10 01:45:08 +0000721 && SE.isSCEVable(User->getType())) {
722 return SE.getSCEV(User) == Mul;
723 }
724 }
725 }
726 }
727 }
728
729 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
730 if (isExistingPhi(AR, SE))
731 return false;
732 }
733
734 // Fow now, consider any other type of expression (div/mul/min/max) high cost.
735 return true;
736}
737
Dan Gohman572645c2010-02-12 10:34:29 +0000738/// DeleteTriviallyDeadInstructions - If any of the instructions is the
739/// specified set are trivially dead, delete them and see if this makes any of
740/// their operands subsequently dead.
741static bool
742DeleteTriviallyDeadInstructions(SmallVectorImpl<WeakVH> &DeadInsts) {
743 bool Changed = false;
744
745 while (!DeadInsts.empty()) {
Richard Smith875cc5d2012-08-21 20:35:14 +0000746 Value *V = DeadInsts.pop_back_val();
747 Instruction *I = dyn_cast_or_null<Instruction>(V);
Dan Gohman572645c2010-02-12 10:34:29 +0000748
749 if (I == 0 || !isInstructionTriviallyDead(I))
750 continue;
751
752 for (User::op_iterator OI = I->op_begin(), E = I->op_end(); OI != E; ++OI)
753 if (Instruction *U = dyn_cast<Instruction>(*OI)) {
754 *OI = 0;
755 if (U->use_empty())
756 DeadInsts.push_back(U);
757 }
758
759 I->eraseFromParent();
760 Changed = true;
761 }
762
763 return Changed;
764}
765
Dan Gohman7979b722010-01-22 00:46:49 +0000766namespace {
Jim Grosbach56a1f802009-11-17 17:53:56 +0000767
Dan Gohman572645c2010-02-12 10:34:29 +0000768/// Cost - This class is used to measure and compare candidate formulae.
769class Cost {
770 /// TODO: Some of these could be merged. Also, a lexical ordering
771 /// isn't always optimal.
772 unsigned NumRegs;
773 unsigned AddRecCost;
774 unsigned NumIVMuls;
775 unsigned NumBaseAdds;
776 unsigned ImmCost;
777 unsigned SetupCost;
Nate Begeman16997482005-07-30 00:15:07 +0000778
Dan Gohman572645c2010-02-12 10:34:29 +0000779public:
780 Cost()
781 : NumRegs(0), AddRecCost(0), NumIVMuls(0), NumBaseAdds(0), ImmCost(0),
782 SetupCost(0) {}
Jim Grosbach56a1f802009-11-17 17:53:56 +0000783
Dan Gohman572645c2010-02-12 10:34:29 +0000784 bool operator<(const Cost &Other) const;
Dan Gohman7979b722010-01-22 00:46:49 +0000785
Dan Gohman572645c2010-02-12 10:34:29 +0000786 void Loose();
Dan Gohman7979b722010-01-22 00:46:49 +0000787
Andrew Trick7d11bd82011-09-26 23:11:04 +0000788#ifndef NDEBUG
789 // Once any of the metrics loses, they must all remain losers.
790 bool isValid() {
791 return ((NumRegs | AddRecCost | NumIVMuls | NumBaseAdds
792 | ImmCost | SetupCost) != ~0u)
793 || ((NumRegs & AddRecCost & NumIVMuls & NumBaseAdds
794 & ImmCost & SetupCost) == ~0u);
795 }
796#endif
797
798 bool isLoser() {
799 assert(isValid() && "invalid cost");
800 return NumRegs == ~0u;
801 }
802
Dan Gohman572645c2010-02-12 10:34:29 +0000803 void RateFormula(const Formula &F,
804 SmallPtrSet<const SCEV *, 16> &Regs,
805 const DenseSet<const SCEV *> &VisitedRegs,
806 const Loop *L,
807 const SmallVectorImpl<int64_t> &Offsets,
Andrew Trick8a5d7922011-12-06 03:13:31 +0000808 ScalarEvolution &SE, DominatorTree &DT,
809 SmallPtrSet<const SCEV *, 16> *LoserRegs = 0);
Dan Gohman7979b722010-01-22 00:46:49 +0000810
Dan Gohman572645c2010-02-12 10:34:29 +0000811 void print(raw_ostream &OS) const;
812 void dump() const;
Dan Gohman7979b722010-01-22 00:46:49 +0000813
Dan Gohman572645c2010-02-12 10:34:29 +0000814private:
815 void RateRegister(const SCEV *Reg,
816 SmallPtrSet<const SCEV *, 16> &Regs,
817 const Loop *L,
818 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman9214b822010-02-13 02:06:02 +0000819 void RatePrimaryRegister(const SCEV *Reg,
820 SmallPtrSet<const SCEV *, 16> &Regs,
821 const Loop *L,
Andrew Trick8a5d7922011-12-06 03:13:31 +0000822 ScalarEvolution &SE, DominatorTree &DT,
823 SmallPtrSet<const SCEV *, 16> *LoserRegs);
Dan Gohman572645c2010-02-12 10:34:29 +0000824};
825
826}
827
828/// RateRegister - Tally up interesting quantities from the given register.
829void Cost::RateRegister(const SCEV *Reg,
830 SmallPtrSet<const SCEV *, 16> &Regs,
831 const Loop *L,
832 ScalarEvolution &SE, DominatorTree &DT) {
Dan Gohman9214b822010-02-13 02:06:02 +0000833 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Reg)) {
Andrew Trick0c01bc32011-09-29 01:33:38 +0000834 // If this is an addrec for another loop, don't second-guess its addrec phi
835 // nodes. LSR isn't currently smart enough to reason about more than one
Andrew Trickbd618f12012-03-22 22:42:45 +0000836 // loop at a time. LSR has already run on inner loops, will not run on outer
837 // loops, and cannot be expected to change sibling loops.
838 if (AR->getLoop() != L) {
839 // If the AddRec exists, consider it's register free and leave it alone.
Andrew Trick8a5d7922011-12-06 03:13:31 +0000840 if (isExistingPhi(AR, SE))
841 return;
842
Andrew Trickbd618f12012-03-22 22:42:45 +0000843 // Otherwise, do not consider this formula at all.
844 Loose();
845 return;
Dan Gohman572645c2010-02-12 10:34:29 +0000846 }
Andrew Trickbd618f12012-03-22 22:42:45 +0000847 AddRecCost += 1; /// TODO: This should be a function of the stride.
Dan Gohman572645c2010-02-12 10:34:29 +0000848
Dan Gohman9214b822010-02-13 02:06:02 +0000849 // Add the step value register, if it needs one.
850 // TODO: The non-affine case isn't precisely modeled here.
Andrew Trick25b689e2011-09-26 23:35:25 +0000851 if (!AR->isAffine() || !isa<SCEVConstant>(AR->getOperand(1))) {
852 if (!Regs.count(AR->getOperand(1))) {
Dan Gohman9214b822010-02-13 02:06:02 +0000853 RateRegister(AR->getOperand(1), Regs, L, SE, DT);
Andrew Trick25b689e2011-09-26 23:35:25 +0000854 if (isLoser())
855 return;
856 }
857 }
Dan Gohman572645c2010-02-12 10:34:29 +0000858 }
Dan Gohman9214b822010-02-13 02:06:02 +0000859 ++NumRegs;
860
861 // Rough heuristic; favor registers which don't require extra setup
862 // instructions in the preheader.
863 if (!isa<SCEVUnknown>(Reg) &&
864 !isa<SCEVConstant>(Reg) &&
865 !(isa<SCEVAddRecExpr>(Reg) &&
866 (isa<SCEVUnknown>(cast<SCEVAddRecExpr>(Reg)->getStart()) ||
867 isa<SCEVConstant>(cast<SCEVAddRecExpr>(Reg)->getStart()))))
868 ++SetupCost;
Dan Gohman23c3fde2010-10-07 23:41:58 +0000869
870 NumIVMuls += isa<SCEVMulExpr>(Reg) &&
Dan Gohman17ead4f2010-11-17 21:23:15 +0000871 SE.hasComputableLoopEvolution(Reg, L);
Dan Gohman9214b822010-02-13 02:06:02 +0000872}
873
874/// RatePrimaryRegister - Record this register in the set. If we haven't seen it
Andrew Trick8a5d7922011-12-06 03:13:31 +0000875/// before, rate it. Optional LoserRegs provides a way to declare any formula
876/// that refers to one of those regs an instant loser.
Dan Gohman9214b822010-02-13 02:06:02 +0000877void Cost::RatePrimaryRegister(const SCEV *Reg,
Dan Gohman7fca2292010-02-16 19:42:34 +0000878 SmallPtrSet<const SCEV *, 16> &Regs,
879 const Loop *L,
Andrew Trick8a5d7922011-12-06 03:13:31 +0000880 ScalarEvolution &SE, DominatorTree &DT,
881 SmallPtrSet<const SCEV *, 16> *LoserRegs) {
882 if (LoserRegs && LoserRegs->count(Reg)) {
883 Loose();
884 return;
885 }
886 if (Regs.insert(Reg)) {
Dan Gohman9214b822010-02-13 02:06:02 +0000887 RateRegister(Reg, Regs, L, SE, DT);
Andrew Trick8a5d7922011-12-06 03:13:31 +0000888 if (isLoser())
889 LoserRegs->insert(Reg);
890 }
Dan Gohman572645c2010-02-12 10:34:29 +0000891}
892
893void Cost::RateFormula(const Formula &F,
894 SmallPtrSet<const SCEV *, 16> &Regs,
895 const DenseSet<const SCEV *> &VisitedRegs,
896 const Loop *L,
897 const SmallVectorImpl<int64_t> &Offsets,
Andrew Trick8a5d7922011-12-06 03:13:31 +0000898 ScalarEvolution &SE, DominatorTree &DT,
899 SmallPtrSet<const SCEV *, 16> *LoserRegs) {
Dan Gohman572645c2010-02-12 10:34:29 +0000900 // Tally up the registers.
901 if (const SCEV *ScaledReg = F.ScaledReg) {
902 if (VisitedRegs.count(ScaledReg)) {
903 Loose();
904 return;
905 }
Andrew Trick8a5d7922011-12-06 03:13:31 +0000906 RatePrimaryRegister(ScaledReg, Regs, L, SE, DT, LoserRegs);
Andrew Trick7d11bd82011-09-26 23:11:04 +0000907 if (isLoser())
908 return;
Dan Gohman572645c2010-02-12 10:34:29 +0000909 }
910 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
911 E = F.BaseRegs.end(); I != E; ++I) {
912 const SCEV *BaseReg = *I;
913 if (VisitedRegs.count(BaseReg)) {
914 Loose();
915 return;
916 }
Andrew Trick8a5d7922011-12-06 03:13:31 +0000917 RatePrimaryRegister(BaseReg, Regs, L, SE, DT, LoserRegs);
Andrew Trick7d11bd82011-09-26 23:11:04 +0000918 if (isLoser())
919 return;
Dan Gohman572645c2010-02-12 10:34:29 +0000920 }
921
Dan Gohmancca82142011-05-03 00:46:49 +0000922 // Determine how many (unfolded) adds we'll need inside the loop.
923 size_t NumBaseParts = F.BaseRegs.size() + (F.UnfoldedOffset != 0);
924 if (NumBaseParts > 1)
925 NumBaseAdds += NumBaseParts - 1;
Dan Gohman572645c2010-02-12 10:34:29 +0000926
927 // Tally up the non-zero immediates.
928 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
929 E = Offsets.end(); I != E; ++I) {
930 int64_t Offset = (uint64_t)*I + F.AM.BaseOffs;
931 if (F.AM.BaseGV)
932 ImmCost += 64; // Handle symbolic values conservatively.
933 // TODO: This should probably be the pointer size.
934 else if (Offset != 0)
935 ImmCost += APInt(64, Offset, true).getMinSignedBits();
936 }
Andrew Trick7d11bd82011-09-26 23:11:04 +0000937 assert(isValid() && "invalid cost");
Dan Gohman572645c2010-02-12 10:34:29 +0000938}
939
Chris Lattner7a2bdde2011-04-15 05:18:47 +0000940/// Loose - Set this cost to a losing value.
Dan Gohman572645c2010-02-12 10:34:29 +0000941void Cost::Loose() {
942 NumRegs = ~0u;
943 AddRecCost = ~0u;
944 NumIVMuls = ~0u;
945 NumBaseAdds = ~0u;
946 ImmCost = ~0u;
947 SetupCost = ~0u;
948}
949
950/// operator< - Choose the lower cost.
951bool Cost::operator<(const Cost &Other) const {
952 if (NumRegs != Other.NumRegs)
953 return NumRegs < Other.NumRegs;
954 if (AddRecCost != Other.AddRecCost)
955 return AddRecCost < Other.AddRecCost;
956 if (NumIVMuls != Other.NumIVMuls)
957 return NumIVMuls < Other.NumIVMuls;
958 if (NumBaseAdds != Other.NumBaseAdds)
959 return NumBaseAdds < Other.NumBaseAdds;
960 if (ImmCost != Other.ImmCost)
961 return ImmCost < Other.ImmCost;
962 if (SetupCost != Other.SetupCost)
963 return SetupCost < Other.SetupCost;
964 return false;
965}
966
967void Cost::print(raw_ostream &OS) const {
968 OS << NumRegs << " reg" << (NumRegs == 1 ? "" : "s");
969 if (AddRecCost != 0)
970 OS << ", with addrec cost " << AddRecCost;
971 if (NumIVMuls != 0)
972 OS << ", plus " << NumIVMuls << " IV mul" << (NumIVMuls == 1 ? "" : "s");
973 if (NumBaseAdds != 0)
974 OS << ", plus " << NumBaseAdds << " base add"
975 << (NumBaseAdds == 1 ? "" : "s");
976 if (ImmCost != 0)
977 OS << ", plus " << ImmCost << " imm cost";
978 if (SetupCost != 0)
979 OS << ", plus " << SetupCost << " setup cost";
980}
981
Manman Ren286c4dc2012-09-12 05:06:18 +0000982#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman572645c2010-02-12 10:34:29 +0000983void Cost::dump() const {
984 print(errs()); errs() << '\n';
985}
Manman Rencc77eec2012-09-06 19:55:56 +0000986#endif
Dan Gohman572645c2010-02-12 10:34:29 +0000987
988namespace {
989
990/// LSRFixup - An operand value in an instruction which is to be replaced
991/// with some equivalent, possibly strength-reduced, replacement.
992struct LSRFixup {
993 /// UserInst - The instruction which will be updated.
994 Instruction *UserInst;
995
996 /// OperandValToReplace - The operand of the instruction which will
997 /// be replaced. The operand may be used more than once; every instance
998 /// will be replaced.
999 Value *OperandValToReplace;
1000
Dan Gohman448db1c2010-04-07 22:27:08 +00001001 /// PostIncLoops - If this user is to use the post-incremented value of an
Dan Gohman572645c2010-02-12 10:34:29 +00001002 /// induction variable, this variable is non-null and holds the loop
1003 /// associated with the induction variable.
Dan Gohman448db1c2010-04-07 22:27:08 +00001004 PostIncLoopSet PostIncLoops;
Dan Gohman572645c2010-02-12 10:34:29 +00001005
1006 /// LUIdx - The index of the LSRUse describing the expression which
1007 /// this fixup needs, minus an offset (below).
1008 size_t LUIdx;
1009
1010 /// Offset - A constant offset to be added to the LSRUse expression.
1011 /// This allows multiple fixups to share the same LSRUse with different
1012 /// offsets, for example in an unrolled loop.
1013 int64_t Offset;
1014
Dan Gohman448db1c2010-04-07 22:27:08 +00001015 bool isUseFullyOutsideLoop(const Loop *L) const;
1016
Dan Gohman572645c2010-02-12 10:34:29 +00001017 LSRFixup();
1018
1019 void print(raw_ostream &OS) const;
1020 void dump() const;
1021};
1022
1023}
1024
1025LSRFixup::LSRFixup()
Dan Gohmanea507f52010-05-20 19:44:23 +00001026 : UserInst(0), OperandValToReplace(0), LUIdx(~size_t(0)), Offset(0) {}
Dan Gohman572645c2010-02-12 10:34:29 +00001027
Dan Gohman448db1c2010-04-07 22:27:08 +00001028/// isUseFullyOutsideLoop - Test whether this fixup always uses its
1029/// value outside of the given loop.
1030bool LSRFixup::isUseFullyOutsideLoop(const Loop *L) const {
1031 // PHI nodes use their value in their incoming blocks.
1032 if (const PHINode *PN = dyn_cast<PHINode>(UserInst)) {
1033 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
1034 if (PN->getIncomingValue(i) == OperandValToReplace &&
1035 L->contains(PN->getIncomingBlock(i)))
1036 return false;
1037 return true;
1038 }
1039
1040 return !L->contains(UserInst);
1041}
1042
Dan Gohman572645c2010-02-12 10:34:29 +00001043void LSRFixup::print(raw_ostream &OS) const {
1044 OS << "UserInst=";
1045 // Store is common and interesting enough to be worth special-casing.
1046 if (StoreInst *Store = dyn_cast<StoreInst>(UserInst)) {
1047 OS << "store ";
1048 WriteAsOperand(OS, Store->getOperand(0), /*PrintType=*/false);
1049 } else if (UserInst->getType()->isVoidTy())
1050 OS << UserInst->getOpcodeName();
1051 else
1052 WriteAsOperand(OS, UserInst, /*PrintType=*/false);
1053
1054 OS << ", OperandValToReplace=";
1055 WriteAsOperand(OS, OperandValToReplace, /*PrintType=*/false);
1056
Dan Gohman448db1c2010-04-07 22:27:08 +00001057 for (PostIncLoopSet::const_iterator I = PostIncLoops.begin(),
1058 E = PostIncLoops.end(); I != E; ++I) {
Dan Gohman572645c2010-02-12 10:34:29 +00001059 OS << ", PostIncLoop=";
Dan Gohman448db1c2010-04-07 22:27:08 +00001060 WriteAsOperand(OS, (*I)->getHeader(), /*PrintType=*/false);
Dan Gohman572645c2010-02-12 10:34:29 +00001061 }
1062
1063 if (LUIdx != ~size_t(0))
1064 OS << ", LUIdx=" << LUIdx;
1065
1066 if (Offset != 0)
1067 OS << ", Offset=" << Offset;
1068}
1069
Manman Ren286c4dc2012-09-12 05:06:18 +00001070#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman572645c2010-02-12 10:34:29 +00001071void LSRFixup::dump() const {
1072 print(errs()); errs() << '\n';
1073}
Manman Rencc77eec2012-09-06 19:55:56 +00001074#endif
Dan Gohman572645c2010-02-12 10:34:29 +00001075
1076namespace {
1077
1078/// UniquifierDenseMapInfo - A DenseMapInfo implementation for holding
1079/// DenseMaps and DenseSets of sorted SmallVectors of const SCEV*.
1080struct UniquifierDenseMapInfo {
1081 static SmallVector<const SCEV *, 2> getEmptyKey() {
1082 SmallVector<const SCEV *, 2> V;
1083 V.push_back(reinterpret_cast<const SCEV *>(-1));
1084 return V;
1085 }
1086
1087 static SmallVector<const SCEV *, 2> getTombstoneKey() {
1088 SmallVector<const SCEV *, 2> V;
1089 V.push_back(reinterpret_cast<const SCEV *>(-2));
1090 return V;
1091 }
1092
1093 static unsigned getHashValue(const SmallVector<const SCEV *, 2> &V) {
1094 unsigned Result = 0;
1095 for (SmallVectorImpl<const SCEV *>::const_iterator I = V.begin(),
1096 E = V.end(); I != E; ++I)
1097 Result ^= DenseMapInfo<const SCEV *>::getHashValue(*I);
1098 return Result;
1099 }
1100
1101 static bool isEqual(const SmallVector<const SCEV *, 2> &LHS,
1102 const SmallVector<const SCEV *, 2> &RHS) {
1103 return LHS == RHS;
1104 }
1105};
1106
1107/// LSRUse - This class holds the state that LSR keeps for each use in
1108/// IVUsers, as well as uses invented by LSR itself. It includes information
1109/// about what kinds of things can be folded into the user, information about
1110/// the user itself, and information about how the use may be satisfied.
1111/// TODO: Represent multiple users of the same expression in common?
1112class LSRUse {
1113 DenseSet<SmallVector<const SCEV *, 2>, UniquifierDenseMapInfo> Uniquifier;
1114
1115public:
1116 /// KindType - An enum for a kind of use, indicating what types of
1117 /// scaled and immediate operands it might support.
1118 enum KindType {
1119 Basic, ///< A normal use, with no folding.
1120 Special, ///< A special case of basic, allowing -1 scales.
Nadav Rotema04a4a72012-10-19 21:28:43 +00001121 Address, ///< An address use; folding according to TargetLowering
Dan Gohman572645c2010-02-12 10:34:29 +00001122 ICmpZero ///< An equality icmp with both operands folded into one.
1123 // TODO: Add a generic icmp too?
Dan Gohman7979b722010-01-22 00:46:49 +00001124 };
Dan Gohman572645c2010-02-12 10:34:29 +00001125
1126 KindType Kind;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001127 Type *AccessTy;
Dan Gohman572645c2010-02-12 10:34:29 +00001128
1129 SmallVector<int64_t, 8> Offsets;
1130 int64_t MinOffset;
1131 int64_t MaxOffset;
1132
1133 /// AllFixupsOutsideLoop - This records whether all of the fixups using this
1134 /// LSRUse are outside of the loop, in which case some special-case heuristics
1135 /// may be used.
1136 bool AllFixupsOutsideLoop;
1137
Dan Gohmana9db1292010-07-15 20:24:58 +00001138 /// WidestFixupType - This records the widest use type for any fixup using
1139 /// this LSRUse. FindUseWithSimilarFormula can't consider uses with different
1140 /// max fixup widths to be equivalent, because the narrower one may be relying
1141 /// on the implicit truncation to truncate away bogus bits.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001142 Type *WidestFixupType;
Dan Gohmana9db1292010-07-15 20:24:58 +00001143
Dan Gohman572645c2010-02-12 10:34:29 +00001144 /// Formulae - A list of ways to build a value that can satisfy this user.
1145 /// After the list is populated, one of these is selected heuristically and
1146 /// used to formulate a replacement for OperandValToReplace in UserInst.
1147 SmallVector<Formula, 12> Formulae;
1148
1149 /// Regs - The set of register candidates used by all formulae in this LSRUse.
1150 SmallPtrSet<const SCEV *, 4> Regs;
1151
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001152 LSRUse(KindType K, Type *T) : Kind(K), AccessTy(T),
Dan Gohman572645c2010-02-12 10:34:29 +00001153 MinOffset(INT64_MAX),
1154 MaxOffset(INT64_MIN),
Dan Gohmana9db1292010-07-15 20:24:58 +00001155 AllFixupsOutsideLoop(true),
1156 WidestFixupType(0) {}
Dan Gohman572645c2010-02-12 10:34:29 +00001157
Dan Gohmana2086b32010-05-19 23:43:12 +00001158 bool HasFormulaWithSameRegs(const Formula &F) const;
Dan Gohman454d26d2010-02-22 04:11:59 +00001159 bool InsertFormula(const Formula &F);
Dan Gohmand69d6282010-05-18 22:39:15 +00001160 void DeleteFormula(Formula &F);
Dan Gohmanb2df4332010-05-18 23:42:37 +00001161 void RecomputeRegs(size_t LUIdx, RegUseTracker &Reguses);
Dan Gohman572645c2010-02-12 10:34:29 +00001162
Dan Gohman572645c2010-02-12 10:34:29 +00001163 void print(raw_ostream &OS) const;
1164 void dump() const;
1165};
1166
Dan Gohmanb6211712010-06-19 21:21:39 +00001167}
1168
Dan Gohmana2086b32010-05-19 23:43:12 +00001169/// HasFormula - Test whether this use as a formula which has the same
1170/// registers as the given formula.
1171bool LSRUse::HasFormulaWithSameRegs(const Formula &F) const {
1172 SmallVector<const SCEV *, 2> Key = F.BaseRegs;
1173 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1174 // Unstable sort by host order ok, because this is only used for uniquifying.
1175 std::sort(Key.begin(), Key.end());
1176 return Uniquifier.count(Key);
1177}
1178
Dan Gohman572645c2010-02-12 10:34:29 +00001179/// InsertFormula - If the given formula has not yet been inserted, add it to
1180/// the list, and return true. Return false otherwise.
Dan Gohman454d26d2010-02-22 04:11:59 +00001181bool LSRUse::InsertFormula(const Formula &F) {
Dan Gohman572645c2010-02-12 10:34:29 +00001182 SmallVector<const SCEV *, 2> Key = F.BaseRegs;
1183 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1184 // Unstable sort by host order ok, because this is only used for uniquifying.
1185 std::sort(Key.begin(), Key.end());
1186
1187 if (!Uniquifier.insert(Key).second)
1188 return false;
1189
1190 // Using a register to hold the value of 0 is not profitable.
1191 assert((!F.ScaledReg || !F.ScaledReg->isZero()) &&
1192 "Zero allocated in a scaled register!");
1193#ifndef NDEBUG
1194 for (SmallVectorImpl<const SCEV *>::const_iterator I =
1195 F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I)
1196 assert(!(*I)->isZero() && "Zero allocated in a base register!");
1197#endif
1198
1199 // Add the formula to the list.
1200 Formulae.push_back(F);
1201
1202 // Record registers now being used by this use.
Dan Gohman572645c2010-02-12 10:34:29 +00001203 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1204
1205 return true;
Dan Gohman7979b722010-01-22 00:46:49 +00001206}
1207
Dan Gohmand69d6282010-05-18 22:39:15 +00001208/// DeleteFormula - Remove the given formula from this use's list.
1209void LSRUse::DeleteFormula(Formula &F) {
Dan Gohman5ce6d052010-05-20 15:17:54 +00001210 if (&F != &Formulae.back())
1211 std::swap(F, Formulae.back());
Dan Gohmand69d6282010-05-18 22:39:15 +00001212 Formulae.pop_back();
1213}
1214
Dan Gohmanb2df4332010-05-18 23:42:37 +00001215/// RecomputeRegs - Recompute the Regs field, and update RegUses.
1216void LSRUse::RecomputeRegs(size_t LUIdx, RegUseTracker &RegUses) {
1217 // Now that we've filtered out some formulae, recompute the Regs set.
1218 SmallPtrSet<const SCEV *, 4> OldRegs = Regs;
1219 Regs.clear();
Dan Gohman402d4352010-05-20 20:33:18 +00001220 for (SmallVectorImpl<Formula>::const_iterator I = Formulae.begin(),
1221 E = Formulae.end(); I != E; ++I) {
1222 const Formula &F = *I;
Dan Gohmanb2df4332010-05-18 23:42:37 +00001223 if (F.ScaledReg) Regs.insert(F.ScaledReg);
1224 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1225 }
1226
1227 // Update the RegTracker.
1228 for (SmallPtrSet<const SCEV *, 4>::iterator I = OldRegs.begin(),
1229 E = OldRegs.end(); I != E; ++I)
1230 if (!Regs.count(*I))
1231 RegUses.DropRegister(*I, LUIdx);
1232}
1233
Dan Gohman572645c2010-02-12 10:34:29 +00001234void LSRUse::print(raw_ostream &OS) const {
1235 OS << "LSR Use: Kind=";
1236 switch (Kind) {
1237 case Basic: OS << "Basic"; break;
1238 case Special: OS << "Special"; break;
1239 case ICmpZero: OS << "ICmpZero"; break;
1240 case Address:
1241 OS << "Address of ";
Duncan Sands1df98592010-02-16 11:11:14 +00001242 if (AccessTy->isPointerTy())
Dan Gohman572645c2010-02-12 10:34:29 +00001243 OS << "pointer"; // the full pointer type could be really verbose
1244 else
1245 OS << *AccessTy;
Evan Chengcdf43b12007-10-25 09:11:16 +00001246 }
1247
Dan Gohman572645c2010-02-12 10:34:29 +00001248 OS << ", Offsets={";
1249 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
1250 E = Offsets.end(); I != E; ++I) {
1251 OS << *I;
Oscar Fuentesee56c422010-08-02 06:00:15 +00001252 if (llvm::next(I) != E)
Dan Gohman572645c2010-02-12 10:34:29 +00001253 OS << ',';
Dan Gohman7979b722010-01-22 00:46:49 +00001254 }
Dan Gohman572645c2010-02-12 10:34:29 +00001255 OS << '}';
Dan Gohman7979b722010-01-22 00:46:49 +00001256
Dan Gohman572645c2010-02-12 10:34:29 +00001257 if (AllFixupsOutsideLoop)
1258 OS << ", all-fixups-outside-loop";
Dan Gohmana9db1292010-07-15 20:24:58 +00001259
1260 if (WidestFixupType)
1261 OS << ", widest fixup type: " << *WidestFixupType;
Dan Gohman7979b722010-01-22 00:46:49 +00001262}
1263
Manman Ren286c4dc2012-09-12 05:06:18 +00001264#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman572645c2010-02-12 10:34:29 +00001265void LSRUse::dump() const {
1266 print(errs()); errs() << '\n';
1267}
Manman Rencc77eec2012-09-06 19:55:56 +00001268#endif
Dan Gohman7979b722010-01-22 00:46:49 +00001269
Dan Gohman572645c2010-02-12 10:34:29 +00001270/// isLegalUse - Test whether the use described by AM is "legal", meaning it can
1271/// be completely folded into the user instruction at isel time. This includes
1272/// address-mode folding and special icmp tricks.
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001273static bool isLegalUse(const TargetTransformInfo &TTI, LSRUse::KindType Kind,
1274 Type *AccessTy, GlobalValue *BaseGV, int64_t BaseOffset,
1275 bool HasBaseReg, int64_t Scale) {
Dan Gohman572645c2010-02-12 10:34:29 +00001276 switch (Kind) {
1277 case LSRUse::Address:
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001278 return TTI.isLegalAddressingMode(AccessTy, BaseGV, BaseOffset, HasBaseReg, Scale);
Dan Gohman572645c2010-02-12 10:34:29 +00001279
1280 // Otherwise, just guess that reg+reg addressing is legal.
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001281 //return ;
Dan Gohman572645c2010-02-12 10:34:29 +00001282
1283 case LSRUse::ICmpZero:
1284 // There's not even a target hook for querying whether it would be legal to
1285 // fold a GV into an ICmp.
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001286 if (BaseGV)
Dan Gohman572645c2010-02-12 10:34:29 +00001287 return false;
1288
1289 // ICmp only has two operands; don't allow more than two non-trivial parts.
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001290 if (Scale != 0 && HasBaseReg && BaseOffset != 0)
Dan Gohman572645c2010-02-12 10:34:29 +00001291 return false;
1292
1293 // ICmp only supports no scale or a -1 scale, as we can "fold" a -1 scale by
1294 // putting the scaled register in the other operand of the icmp.
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001295 if (Scale != 0 && Scale != -1)
Dan Gohman572645c2010-02-12 10:34:29 +00001296 return false;
1297
1298 // If we have low-level target information, ask the target if it can fold an
1299 // integer immediate on an icmp.
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001300 if (BaseOffset != 0) {
Jakob Stoklund Olesen9243c4f2012-04-05 03:10:56 +00001301 // We have one of:
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001302 // ICmpZero BaseReg + BaseOffset => ICmp BaseReg, -BaseOffset
1303 // ICmpZero -1*ScaleReg + BaseOffset => ICmp ScaleReg, BaseOffset
Jakob Stoklund Olesen9243c4f2012-04-05 03:10:56 +00001304 // Offs is the ICmp immediate.
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001305 if (Scale == 0)
1306 // The cast does the right thing with INT64_MIN.
1307 BaseOffset = -(uint64_t)BaseOffset;
1308 return TTI.isLegalICmpImmediate(BaseOffset);
Dan Gohman7979b722010-01-22 00:46:49 +00001309 }
Dan Gohman572645c2010-02-12 10:34:29 +00001310
Jakob Stoklund Olesen9243c4f2012-04-05 03:10:56 +00001311 // ICmpZero BaseReg + -1*ScaleReg => ICmp BaseReg, ScaleReg
Dan Gohman572645c2010-02-12 10:34:29 +00001312 return true;
1313
1314 case LSRUse::Basic:
1315 // Only handle single-register values.
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001316 return !BaseGV && Scale == 0 && BaseOffset == 0;
Dan Gohman572645c2010-02-12 10:34:29 +00001317
1318 case LSRUse::Special:
Andrew Trick546f2102012-06-15 20:07:26 +00001319 // Special case Basic to handle -1 scales.
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001320 return !BaseGV && (Scale == 0 || Scale == -1) && BaseOffset == 0;
Dan Gohman7979b722010-01-22 00:46:49 +00001321 }
1322
David Blaikie4d6ccb52012-01-20 21:51:11 +00001323 llvm_unreachable("Invalid LSRUse Kind!");
Dan Gohman7979b722010-01-22 00:46:49 +00001324}
1325
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001326static bool isLegalUse(const TargetTransformInfo &TTI, int64_t MinOffset,
1327 int64_t MaxOffset, LSRUse::KindType Kind, Type *AccessTy,
1328 GlobalValue *BaseGV, int64_t BaseOffset, bool HasBaseReg,
1329 int64_t Scale) {
Dan Gohman572645c2010-02-12 10:34:29 +00001330 // Check for overflow.
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001331 if (((int64_t)((uint64_t)BaseOffset + MinOffset) > BaseOffset) !=
Dan Gohman572645c2010-02-12 10:34:29 +00001332 (MinOffset > 0))
1333 return false;
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001334 MinOffset = (uint64_t)BaseOffset + MinOffset;
1335 if (((int64_t)((uint64_t)BaseOffset + MaxOffset) > BaseOffset) !=
1336 (MaxOffset > 0))
1337 return false;
1338 MaxOffset = (uint64_t)BaseOffset + MaxOffset;
1339
1340 return isLegalUse(TTI, Kind, AccessTy, BaseGV, MinOffset, HasBaseReg,
1341 Scale) &&
1342 isLegalUse(TTI, Kind, AccessTy, BaseGV, MaxOffset, HasBaseReg, Scale);
Dan Gohman7979b722010-01-22 00:46:49 +00001343}
1344
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001345static bool isLegalUse(const TargetTransformInfo &TTI, int64_t MinOffset,
1346 int64_t MaxOffset, LSRUse::KindType Kind, Type *AccessTy,
1347 const Formula &F) {
1348 return isLegalUse(TTI, MinOffset, MaxOffset, Kind, AccessTy, F.AM.BaseGV,
1349 F.AM.BaseOffs, F.AM.HasBaseReg, F.AM.Scale);
1350}
1351
1352static bool isAlwaysFoldable(const TargetTransformInfo &TTI,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001353 LSRUse::KindType Kind, Type *AccessTy,
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001354 GlobalValue *BaseGV, int64_t BaseOffset,
1355 bool HasBaseReg) {
Dan Gohman572645c2010-02-12 10:34:29 +00001356 // Fast-path: zero is always foldable.
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001357 if (BaseOffset == 0 && !BaseGV) return true;
Dan Gohman7979b722010-01-22 00:46:49 +00001358
Dan Gohman572645c2010-02-12 10:34:29 +00001359 // Conservatively, create an address with an immediate and a
1360 // base and a scale.
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001361 int64_t Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman7979b722010-01-22 00:46:49 +00001362
Dan Gohmana2086b32010-05-19 23:43:12 +00001363 // Canonicalize a scale of 1 to a base register if the formula doesn't
1364 // already have a base register.
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001365 if (!HasBaseReg && Scale == 1) {
1366 Scale = 0;
1367 HasBaseReg = true;
Dan Gohmana2086b32010-05-19 23:43:12 +00001368 }
1369
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001370 return isLegalUse(TTI, Kind, AccessTy, BaseGV, BaseOffset, HasBaseReg, Scale);
Dan Gohman7979b722010-01-22 00:46:49 +00001371}
1372
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001373static bool isAlwaysFoldable(const TargetTransformInfo &TTI,
1374 ScalarEvolution &SE, int64_t MinOffset,
1375 int64_t MaxOffset, LSRUse::KindType Kind,
1376 Type *AccessTy, const SCEV *S, bool HasBaseReg) {
Dan Gohman572645c2010-02-12 10:34:29 +00001377 // Fast-path: zero is always foldable.
1378 if (S->isZero()) return true;
1379
1380 // Conservatively, create an address with an immediate and a
1381 // base and a scale.
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001382 int64_t BaseOffset = ExtractImmediate(S, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00001383 GlobalValue *BaseGV = ExtractSymbol(S, SE);
1384
1385 // If there's anything else involved, it's not foldable.
1386 if (!S->isZero()) return false;
1387
1388 // Fast-path: zero is always foldable.
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001389 if (BaseOffset == 0 && !BaseGV) return true;
Dan Gohman572645c2010-02-12 10:34:29 +00001390
1391 // Conservatively, create an address with an immediate and a
1392 // base and a scale.
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001393 int64_t Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman572645c2010-02-12 10:34:29 +00001394
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001395 return isLegalUse(TTI, MinOffset, MaxOffset, Kind, AccessTy, BaseGV,
1396 BaseOffset, HasBaseReg, Scale);
Dan Gohman7979b722010-01-22 00:46:49 +00001397}
1398
Dan Gohmanb6211712010-06-19 21:21:39 +00001399namespace {
1400
Dan Gohman1e3121c2010-06-19 21:29:59 +00001401/// UseMapDenseMapInfo - A DenseMapInfo implementation for holding
1402/// DenseMaps and DenseSets of pairs of const SCEV* and LSRUse::Kind.
1403struct UseMapDenseMapInfo {
1404 static std::pair<const SCEV *, LSRUse::KindType> getEmptyKey() {
1405 return std::make_pair(reinterpret_cast<const SCEV *>(-1), LSRUse::Basic);
1406 }
1407
1408 static std::pair<const SCEV *, LSRUse::KindType> getTombstoneKey() {
1409 return std::make_pair(reinterpret_cast<const SCEV *>(-2), LSRUse::Basic);
1410 }
1411
1412 static unsigned
1413 getHashValue(const std::pair<const SCEV *, LSRUse::KindType> &V) {
1414 unsigned Result = DenseMapInfo<const SCEV *>::getHashValue(V.first);
1415 Result ^= DenseMapInfo<unsigned>::getHashValue(unsigned(V.second));
1416 return Result;
1417 }
1418
1419 static bool isEqual(const std::pair<const SCEV *, LSRUse::KindType> &LHS,
1420 const std::pair<const SCEV *, LSRUse::KindType> &RHS) {
1421 return LHS == RHS;
1422 }
1423};
1424
Andrew Trick6c7d0ae2012-01-09 19:50:34 +00001425/// IVInc - An individual increment in a Chain of IV increments.
1426/// Relate an IV user to an expression that computes the IV it uses from the IV
1427/// used by the previous link in the Chain.
1428///
1429/// For the head of a chain, IncExpr holds the absolute SCEV expression for the
1430/// original IVOperand. The head of the chain's IVOperand is only valid during
1431/// chain collection, before LSR replaces IV users. During chain generation,
1432/// IncExpr can be used to find the new IVOperand that computes the same
1433/// expression.
1434struct IVInc {
1435 Instruction *UserInst;
1436 Value* IVOperand;
1437 const SCEV *IncExpr;
1438
1439 IVInc(Instruction *U, Value *O, const SCEV *E):
1440 UserInst(U), IVOperand(O), IncExpr(E) {}
1441};
1442
1443// IVChain - The list of IV increments in program order.
1444// We typically add the head of a chain without finding subsequent links.
Jakob Stoklund Olesen70a18602012-04-26 23:33:09 +00001445struct IVChain {
1446 SmallVector<IVInc,1> Incs;
Jakob Stoklund Olesenf9f1c7a2012-04-26 23:33:11 +00001447 const SCEV *ExprBase;
1448
1449 IVChain() : ExprBase(0) {}
1450
1451 IVChain(const IVInc &Head, const SCEV *Base)
1452 : Incs(1, Head), ExprBase(Base) {}
Jakob Stoklund Olesen70a18602012-04-26 23:33:09 +00001453
1454 typedef SmallVectorImpl<IVInc>::const_iterator const_iterator;
1455
1456 // begin - return the first increment in the chain.
1457 const_iterator begin() const {
1458 assert(!Incs.empty());
1459 return llvm::next(Incs.begin());
1460 }
1461 const_iterator end() const {
1462 return Incs.end();
1463 }
1464
1465 // hasIncs - Returns true if this chain contains any increments.
1466 bool hasIncs() const { return Incs.size() >= 2; }
1467
1468 // add - Add an IVInc to the end of this chain.
1469 void add(const IVInc &X) { Incs.push_back(X); }
1470
1471 // tailUserInst - Returns the last UserInst in the chain.
1472 Instruction *tailUserInst() const { return Incs.back().UserInst; }
Jakob Stoklund Olesenf9f1c7a2012-04-26 23:33:11 +00001473
1474 // isProfitableIncrement - Returns true if IncExpr can be profitably added to
1475 // this chain.
1476 bool isProfitableIncrement(const SCEV *OperExpr,
1477 const SCEV *IncExpr,
1478 ScalarEvolution&);
Jakob Stoklund Olesen70a18602012-04-26 23:33:09 +00001479};
Andrew Trick6c7d0ae2012-01-09 19:50:34 +00001480
1481/// ChainUsers - Helper for CollectChains to track multiple IV increment uses.
1482/// Distinguish between FarUsers that definitely cross IV increments and
1483/// NearUsers that may be used between IV increments.
1484struct ChainUsers {
1485 SmallPtrSet<Instruction*, 4> FarUsers;
1486 SmallPtrSet<Instruction*, 4> NearUsers;
1487};
1488
Dan Gohman572645c2010-02-12 10:34:29 +00001489/// LSRInstance - This class holds state for the main loop strength reduction
1490/// logic.
1491class LSRInstance {
1492 IVUsers &IU;
1493 ScalarEvolution &SE;
1494 DominatorTree &DT;
Dan Gohmane5f76872010-04-09 22:07:05 +00001495 LoopInfo &LI;
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001496 const TargetTransformInfo &TTI;
Dan Gohman572645c2010-02-12 10:34:29 +00001497 Loop *const L;
1498 bool Changed;
1499
1500 /// IVIncInsertPos - This is the insert position that the current loop's
1501 /// induction variable increment should be placed. In simple loops, this is
1502 /// the latch block's terminator. But in more complicated cases, this is a
1503 /// position which will dominate all the in-loop post-increment users.
1504 Instruction *IVIncInsertPos;
1505
1506 /// Factors - Interesting factors between use strides.
1507 SmallSetVector<int64_t, 8> Factors;
1508
1509 /// Types - Interesting use types, to facilitate truncation reuse.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001510 SmallSetVector<Type *, 4> Types;
Dan Gohman572645c2010-02-12 10:34:29 +00001511
1512 /// Fixups - The list of operands which are to be replaced.
1513 SmallVector<LSRFixup, 16> Fixups;
1514
1515 /// Uses - The list of interesting uses.
1516 SmallVector<LSRUse, 16> Uses;
1517
1518 /// RegUses - Track which uses use which register candidates.
1519 RegUseTracker RegUses;
1520
Andrew Trick6c7d0ae2012-01-09 19:50:34 +00001521 // Limit the number of chains to avoid quadratic behavior. We don't expect to
1522 // have more than a few IV increment chains in a loop. Missing a Chain falls
1523 // back to normal LSR behavior for those uses.
1524 static const unsigned MaxChains = 8;
1525
1526 /// IVChainVec - IV users can form a chain of IV increments.
1527 SmallVector<IVChain, MaxChains> IVChainVec;
1528
Andrew Trick22d20c22012-01-09 21:18:52 +00001529 /// IVIncSet - IV users that belong to profitable IVChains.
1530 SmallPtrSet<Use*, MaxChains> IVIncSet;
1531
Dan Gohman572645c2010-02-12 10:34:29 +00001532 void OptimizeShadowIV();
1533 bool FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse);
1534 ICmpInst *OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse);
Dan Gohmanc6519f92010-05-20 20:05:31 +00001535 void OptimizeLoopTermCond();
Dan Gohman572645c2010-02-12 10:34:29 +00001536
Andrew Trick6c7d0ae2012-01-09 19:50:34 +00001537 void ChainInstruction(Instruction *UserInst, Instruction *IVOper,
1538 SmallVectorImpl<ChainUsers> &ChainUsersVec);
Andrew Trick22d20c22012-01-09 21:18:52 +00001539 void FinalizeChain(IVChain &Chain);
Andrew Trick6c7d0ae2012-01-09 19:50:34 +00001540 void CollectChains();
Andrew Trick22d20c22012-01-09 21:18:52 +00001541 void GenerateIVChain(const IVChain &Chain, SCEVExpander &Rewriter,
1542 SmallVectorImpl<WeakVH> &DeadInsts);
Andrew Trick6c7d0ae2012-01-09 19:50:34 +00001543
Dan Gohman572645c2010-02-12 10:34:29 +00001544 void CollectInterestingTypesAndFactors();
1545 void CollectFixupsAndInitialFormulae();
1546
1547 LSRFixup &getNewFixup() {
1548 Fixups.push_back(LSRFixup());
1549 return Fixups.back();
1550 }
1551
1552 // Support for sharing of LSRUses between LSRFixups.
Dan Gohman1e3121c2010-06-19 21:29:59 +00001553 typedef DenseMap<std::pair<const SCEV *, LSRUse::KindType>,
1554 size_t,
1555 UseMapDenseMapInfo> UseMapTy;
Dan Gohman572645c2010-02-12 10:34:29 +00001556 UseMapTy UseMap;
1557
Dan Gohman191bd642010-09-01 01:45:53 +00001558 bool reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001559 LSRUse::KindType Kind, Type *AccessTy);
Dan Gohman572645c2010-02-12 10:34:29 +00001560
1561 std::pair<size_t, int64_t> getUse(const SCEV *&Expr,
1562 LSRUse::KindType Kind,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001563 Type *AccessTy);
Dan Gohman572645c2010-02-12 10:34:29 +00001564
Dan Gohmanc6897702010-10-07 23:33:43 +00001565 void DeleteUse(LSRUse &LU, size_t LUIdx);
Dan Gohman5ce6d052010-05-20 15:17:54 +00001566
Dan Gohman191bd642010-09-01 01:45:53 +00001567 LSRUse *FindUseWithSimilarFormula(const Formula &F, const LSRUse &OrigLU);
Dan Gohmana2086b32010-05-19 23:43:12 +00001568
Dan Gohman454d26d2010-02-22 04:11:59 +00001569 void InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
Dan Gohman572645c2010-02-12 10:34:29 +00001570 void InsertSupplementalFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
1571 void CountRegisters(const Formula &F, size_t LUIdx);
1572 bool InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F);
1573
1574 void CollectLoopInvariantFixupsAndFormulae();
1575
1576 void GenerateReassociations(LSRUse &LU, unsigned LUIdx, Formula Base,
1577 unsigned Depth = 0);
1578 void GenerateCombinations(LSRUse &LU, unsigned LUIdx, Formula Base);
1579 void GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1580 void GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1581 void GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1582 void GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1583 void GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base);
1584 void GenerateCrossUseConstantOffsets();
1585 void GenerateAllReuseFormulae();
1586
1587 void FilterOutUndesirableDedicatedRegisters();
Dan Gohmand079c302010-05-18 22:51:59 +00001588
1589 size_t EstimateSearchSpaceComplexity() const;
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00001590 void NarrowSearchSpaceByDetectingSupersets();
1591 void NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman4f7e18d2010-08-29 16:39:22 +00001592 void NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00001593 void NarrowSearchSpaceByPickingWinnerRegs();
Dan Gohman572645c2010-02-12 10:34:29 +00001594 void NarrowSearchSpaceUsingHeuristics();
1595
1596 void SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
1597 Cost &SolutionCost,
1598 SmallVectorImpl<const Formula *> &Workspace,
1599 const Cost &CurCost,
1600 const SmallPtrSet<const SCEV *, 16> &CurRegs,
1601 DenseSet<const SCEV *> &VisitedRegs) const;
1602 void Solve(SmallVectorImpl<const Formula *> &Solution) const;
1603
Dan Gohmane5f76872010-04-09 22:07:05 +00001604 BasicBlock::iterator
1605 HoistInsertPosition(BasicBlock::iterator IP,
1606 const SmallVectorImpl<Instruction *> &Inputs) const;
Andrew Trickb5c26ef2012-01-20 07:41:13 +00001607 BasicBlock::iterator
1608 AdjustInsertPositionForExpand(BasicBlock::iterator IP,
1609 const LSRFixup &LF,
1610 const LSRUse &LU,
1611 SCEVExpander &Rewriter) const;
Dan Gohmand96eae82010-04-09 02:00:38 +00001612
Dan Gohman572645c2010-02-12 10:34:29 +00001613 Value *Expand(const LSRFixup &LF,
1614 const Formula &F,
Dan Gohman454d26d2010-02-22 04:11:59 +00001615 BasicBlock::iterator IP,
Dan Gohman572645c2010-02-12 10:34:29 +00001616 SCEVExpander &Rewriter,
Dan Gohman454d26d2010-02-22 04:11:59 +00001617 SmallVectorImpl<WeakVH> &DeadInsts) const;
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001618 void RewriteForPHI(PHINode *PN, const LSRFixup &LF,
1619 const Formula &F,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001620 SCEVExpander &Rewriter,
1621 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001622 Pass *P) const;
Dan Gohman572645c2010-02-12 10:34:29 +00001623 void Rewrite(const LSRFixup &LF,
1624 const Formula &F,
Dan Gohman572645c2010-02-12 10:34:29 +00001625 SCEVExpander &Rewriter,
1626 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman572645c2010-02-12 10:34:29 +00001627 Pass *P) const;
1628 void ImplementSolution(const SmallVectorImpl<const Formula *> &Solution,
1629 Pass *P);
1630
Andrew Trickd56ef8d2011-12-13 00:55:33 +00001631public:
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001632 LSRInstance(Loop *L, Pass *P);
Dan Gohman572645c2010-02-12 10:34:29 +00001633
1634 bool getChanged() const { return Changed; }
1635
1636 void print_factors_and_types(raw_ostream &OS) const;
1637 void print_fixups(raw_ostream &OS) const;
1638 void print_uses(raw_ostream &OS) const;
1639 void print(raw_ostream &OS) const;
1640 void dump() const;
1641};
1642
1643}
1644
1645/// OptimizeShadowIV - If IV is used in a int-to-float cast
Dan Gohman3f46a3a2010-03-01 17:49:51 +00001646/// inside the loop then try to eliminate the cast operation.
Dan Gohman572645c2010-02-12 10:34:29 +00001647void LSRInstance::OptimizeShadowIV() {
1648 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
1649 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1650 return;
1651
1652 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end();
1653 UI != E; /* empty */) {
1654 IVUsers::const_iterator CandidateUI = UI;
1655 ++UI;
1656 Instruction *ShadowUse = CandidateUI->getUser();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001657 Type *DestTy = NULL;
Andrew Trickc2c988e2011-07-21 01:05:01 +00001658 bool IsSigned = false;
Dan Gohman572645c2010-02-12 10:34:29 +00001659
1660 /* If shadow use is a int->float cast then insert a second IV
1661 to eliminate this cast.
1662
1663 for (unsigned i = 0; i < n; ++i)
1664 foo((double)i);
1665
1666 is transformed into
1667
1668 double d = 0.0;
1669 for (unsigned i = 0; i < n; ++i, ++d)
1670 foo(d);
1671 */
Andrew Trickc2c988e2011-07-21 01:05:01 +00001672 if (UIToFPInst *UCast = dyn_cast<UIToFPInst>(CandidateUI->getUser())) {
1673 IsSigned = false;
Dan Gohman572645c2010-02-12 10:34:29 +00001674 DestTy = UCast->getDestTy();
Andrew Trickc2c988e2011-07-21 01:05:01 +00001675 }
1676 else if (SIToFPInst *SCast = dyn_cast<SIToFPInst>(CandidateUI->getUser())) {
1677 IsSigned = true;
Dan Gohman572645c2010-02-12 10:34:29 +00001678 DestTy = SCast->getDestTy();
Andrew Trickc2c988e2011-07-21 01:05:01 +00001679 }
Dan Gohman572645c2010-02-12 10:34:29 +00001680 if (!DestTy) continue;
1681
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00001682 // If target does not support DestTy natively then do not apply
1683 // this transformation.
1684 if (!TTI.isTypeLegal(DestTy)) continue;
Dan Gohman572645c2010-02-12 10:34:29 +00001685
1686 PHINode *PH = dyn_cast<PHINode>(ShadowUse->getOperand(0));
1687 if (!PH) continue;
1688 if (PH->getNumIncomingValues() != 2) continue;
1689
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001690 Type *SrcTy = PH->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00001691 int Mantissa = DestTy->getFPMantissaWidth();
1692 if (Mantissa == -1) continue;
1693 if ((int)SE.getTypeSizeInBits(SrcTy) > Mantissa)
1694 continue;
1695
1696 unsigned Entry, Latch;
1697 if (PH->getIncomingBlock(0) == L->getLoopPreheader()) {
1698 Entry = 0;
1699 Latch = 1;
Dan Gohman7979b722010-01-22 00:46:49 +00001700 } else {
Dan Gohman572645c2010-02-12 10:34:29 +00001701 Entry = 1;
1702 Latch = 0;
Dan Gohman7979b722010-01-22 00:46:49 +00001703 }
Dan Gohman7979b722010-01-22 00:46:49 +00001704
Dan Gohman572645c2010-02-12 10:34:29 +00001705 ConstantInt *Init = dyn_cast<ConstantInt>(PH->getIncomingValue(Entry));
1706 if (!Init) continue;
Andrew Trickc2c988e2011-07-21 01:05:01 +00001707 Constant *NewInit = ConstantFP::get(DestTy, IsSigned ?
Andrew Trickc205a092011-07-21 01:45:54 +00001708 (double)Init->getSExtValue() :
1709 (double)Init->getZExtValue());
Dan Gohman7979b722010-01-22 00:46:49 +00001710
Dan Gohman572645c2010-02-12 10:34:29 +00001711 BinaryOperator *Incr =
1712 dyn_cast<BinaryOperator>(PH->getIncomingValue(Latch));
1713 if (!Incr) continue;
1714 if (Incr->getOpcode() != Instruction::Add
1715 && Incr->getOpcode() != Instruction::Sub)
Dan Gohman7979b722010-01-22 00:46:49 +00001716 continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001717
Dan Gohman572645c2010-02-12 10:34:29 +00001718 /* Initialize new IV, double d = 0.0 in above example. */
1719 ConstantInt *C = NULL;
1720 if (Incr->getOperand(0) == PH)
1721 C = dyn_cast<ConstantInt>(Incr->getOperand(1));
1722 else if (Incr->getOperand(1) == PH)
1723 C = dyn_cast<ConstantInt>(Incr->getOperand(0));
Dan Gohman7979b722010-01-22 00:46:49 +00001724 else
Dan Gohman7979b722010-01-22 00:46:49 +00001725 continue;
1726
Dan Gohman572645c2010-02-12 10:34:29 +00001727 if (!C) continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001728
Dan Gohman572645c2010-02-12 10:34:29 +00001729 // Ignore negative constants, as the code below doesn't handle them
1730 // correctly. TODO: Remove this restriction.
1731 if (!C->getValue().isStrictlyPositive()) continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001732
Dan Gohman572645c2010-02-12 10:34:29 +00001733 /* Add new PHINode. */
Jay Foad3ecfc862011-03-30 11:28:46 +00001734 PHINode *NewPH = PHINode::Create(DestTy, 2, "IV.S.", PH);
Dan Gohman7979b722010-01-22 00:46:49 +00001735
Dan Gohman572645c2010-02-12 10:34:29 +00001736 /* create new increment. '++d' in above example. */
1737 Constant *CFP = ConstantFP::get(DestTy, C->getZExtValue());
1738 BinaryOperator *NewIncr =
1739 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
1740 Instruction::FAdd : Instruction::FSub,
1741 NewPH, CFP, "IV.S.next.", Incr);
Dan Gohman7979b722010-01-22 00:46:49 +00001742
Dan Gohman572645c2010-02-12 10:34:29 +00001743 NewPH->addIncoming(NewInit, PH->getIncomingBlock(Entry));
1744 NewPH->addIncoming(NewIncr, PH->getIncomingBlock(Latch));
Dan Gohman7979b722010-01-22 00:46:49 +00001745
Dan Gohman572645c2010-02-12 10:34:29 +00001746 /* Remove cast operation */
1747 ShadowUse->replaceAllUsesWith(NewPH);
1748 ShadowUse->eraseFromParent();
Dan Gohmanc6519f92010-05-20 20:05:31 +00001749 Changed = true;
Dan Gohman572645c2010-02-12 10:34:29 +00001750 break;
Dan Gohman7979b722010-01-22 00:46:49 +00001751 }
1752}
1753
1754/// FindIVUserForCond - If Cond has an operand that is an expression of an IV,
1755/// set the IV user and stride information and return true, otherwise return
1756/// false.
Dan Gohmanea507f52010-05-20 19:44:23 +00001757bool LSRInstance::FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse) {
Dan Gohman572645c2010-02-12 10:34:29 +00001758 for (IVUsers::iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
1759 if (UI->getUser() == Cond) {
1760 // NOTE: we could handle setcc instructions with multiple uses here, but
1761 // InstCombine does it as well for simple uses, it's not clear that it
1762 // occurs enough in real life to handle.
1763 CondUse = UI;
1764 return true;
1765 }
Dan Gohman7979b722010-01-22 00:46:49 +00001766 return false;
Evan Chengcdf43b12007-10-25 09:11:16 +00001767}
1768
Dan Gohman7979b722010-01-22 00:46:49 +00001769/// OptimizeMax - Rewrite the loop's terminating condition if it uses
1770/// a max computation.
1771///
1772/// This is a narrow solution to a specific, but acute, problem. For loops
1773/// like this:
1774///
1775/// i = 0;
1776/// do {
1777/// p[i] = 0.0;
1778/// } while (++i < n);
1779///
1780/// the trip count isn't just 'n', because 'n' might not be positive. And
1781/// unfortunately this can come up even for loops where the user didn't use
1782/// a C do-while loop. For example, seemingly well-behaved top-test loops
1783/// will commonly be lowered like this:
1784//
1785/// if (n > 0) {
1786/// i = 0;
1787/// do {
1788/// p[i] = 0.0;
1789/// } while (++i < n);
1790/// }
1791///
1792/// and then it's possible for subsequent optimization to obscure the if
1793/// test in such a way that indvars can't find it.
1794///
1795/// When indvars can't find the if test in loops like this, it creates a
1796/// max expression, which allows it to give the loop a canonical
1797/// induction variable:
1798///
1799/// i = 0;
1800/// max = n < 1 ? 1 : n;
1801/// do {
1802/// p[i] = 0.0;
1803/// } while (++i != max);
1804///
1805/// Canonical induction variables are necessary because the loop passes
1806/// are designed around them. The most obvious example of this is the
1807/// LoopInfo analysis, which doesn't remember trip count values. It
1808/// expects to be able to rediscover the trip count each time it is
Dan Gohman572645c2010-02-12 10:34:29 +00001809/// needed, and it does this using a simple analysis that only succeeds if
Dan Gohman7979b722010-01-22 00:46:49 +00001810/// the loop has a canonical induction variable.
1811///
1812/// However, when it comes time to generate code, the maximum operation
1813/// can be quite costly, especially if it's inside of an outer loop.
1814///
1815/// This function solves this problem by detecting this type of loop and
1816/// rewriting their conditions from ICMP_NE back to ICMP_SLT, and deleting
1817/// the instructions for the maximum computation.
1818///
Dan Gohman572645c2010-02-12 10:34:29 +00001819ICmpInst *LSRInstance::OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse) {
Dan Gohman7979b722010-01-22 00:46:49 +00001820 // Check that the loop matches the pattern we're looking for.
1821 if (Cond->getPredicate() != CmpInst::ICMP_EQ &&
1822 Cond->getPredicate() != CmpInst::ICMP_NE)
1823 return Cond;
Dan Gohmana10756e2010-01-21 02:09:26 +00001824
Dan Gohman7979b722010-01-22 00:46:49 +00001825 SelectInst *Sel = dyn_cast<SelectInst>(Cond->getOperand(1));
1826 if (!Sel || !Sel->hasOneUse()) return Cond;
Dan Gohmana10756e2010-01-21 02:09:26 +00001827
Dan Gohman572645c2010-02-12 10:34:29 +00001828 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
Dan Gohman7979b722010-01-22 00:46:49 +00001829 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1830 return Cond;
Dan Gohmandeff6212010-05-03 22:09:21 +00001831 const SCEV *One = SE.getConstant(BackedgeTakenCount->getType(), 1);
Dan Gohmana10756e2010-01-21 02:09:26 +00001832
Dan Gohman7979b722010-01-22 00:46:49 +00001833 // Add one to the backedge-taken count to get the trip count.
Dan Gohman4065f602010-08-16 15:39:27 +00001834 const SCEV *IterationCount = SE.getAddExpr(One, BackedgeTakenCount);
Dan Gohman1d367982010-04-24 03:13:44 +00001835 if (IterationCount != SE.getSCEV(Sel)) return Cond;
Dan Gohman7979b722010-01-22 00:46:49 +00001836
Dan Gohman1d367982010-04-24 03:13:44 +00001837 // Check for a max calculation that matches the pattern. There's no check
1838 // for ICMP_ULE here because the comparison would be with zero, which
1839 // isn't interesting.
1840 CmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE;
1841 const SCEVNAryExpr *Max = 0;
1842 if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(BackedgeTakenCount)) {
1843 Pred = ICmpInst::ICMP_SLE;
1844 Max = S;
1845 } else if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(IterationCount)) {
1846 Pred = ICmpInst::ICMP_SLT;
1847 Max = S;
1848 } else if (const SCEVUMaxExpr *U = dyn_cast<SCEVUMaxExpr>(IterationCount)) {
1849 Pred = ICmpInst::ICMP_ULT;
1850 Max = U;
1851 } else {
1852 // No match; bail.
Dan Gohman7979b722010-01-22 00:46:49 +00001853 return Cond;
Dan Gohman1d367982010-04-24 03:13:44 +00001854 }
Dan Gohman7979b722010-01-22 00:46:49 +00001855
1856 // To handle a max with more than two operands, this optimization would
1857 // require additional checking and setup.
1858 if (Max->getNumOperands() != 2)
1859 return Cond;
1860
1861 const SCEV *MaxLHS = Max->getOperand(0);
1862 const SCEV *MaxRHS = Max->getOperand(1);
Dan Gohman1d367982010-04-24 03:13:44 +00001863
1864 // ScalarEvolution canonicalizes constants to the left. For < and >, look
1865 // for a comparison with 1. For <= and >=, a comparison with zero.
1866 if (!MaxLHS ||
1867 (ICmpInst::isTrueWhenEqual(Pred) ? !MaxLHS->isZero() : (MaxLHS != One)))
1868 return Cond;
1869
Dan Gohman7979b722010-01-22 00:46:49 +00001870 // Check the relevant induction variable for conformance to
1871 // the pattern.
Dan Gohman572645c2010-02-12 10:34:29 +00001872 const SCEV *IV = SE.getSCEV(Cond->getOperand(0));
Dan Gohman7979b722010-01-22 00:46:49 +00001873 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(IV);
1874 if (!AR || !AR->isAffine() ||
1875 AR->getStart() != One ||
Dan Gohman572645c2010-02-12 10:34:29 +00001876 AR->getStepRecurrence(SE) != One)
Dan Gohman7979b722010-01-22 00:46:49 +00001877 return Cond;
1878
1879 assert(AR->getLoop() == L &&
1880 "Loop condition operand is an addrec in a different loop!");
1881
1882 // Check the right operand of the select, and remember it, as it will
1883 // be used in the new comparison instruction.
1884 Value *NewRHS = 0;
Dan Gohman1d367982010-04-24 03:13:44 +00001885 if (ICmpInst::isTrueWhenEqual(Pred)) {
1886 // Look for n+1, and grab n.
1887 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(1)))
1888 if (isa<ConstantInt>(BO->getOperand(1)) &&
1889 cast<ConstantInt>(BO->getOperand(1))->isOne() &&
1890 SE.getSCEV(BO->getOperand(0)) == MaxRHS)
1891 NewRHS = BO->getOperand(0);
1892 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(2)))
1893 if (isa<ConstantInt>(BO->getOperand(1)) &&
1894 cast<ConstantInt>(BO->getOperand(1))->isOne() &&
1895 SE.getSCEV(BO->getOperand(0)) == MaxRHS)
1896 NewRHS = BO->getOperand(0);
1897 if (!NewRHS)
1898 return Cond;
1899 } else if (SE.getSCEV(Sel->getOperand(1)) == MaxRHS)
Dan Gohman7979b722010-01-22 00:46:49 +00001900 NewRHS = Sel->getOperand(1);
Dan Gohman572645c2010-02-12 10:34:29 +00001901 else if (SE.getSCEV(Sel->getOperand(2)) == MaxRHS)
Dan Gohman7979b722010-01-22 00:46:49 +00001902 NewRHS = Sel->getOperand(2);
Dan Gohmancaf71ab2010-06-22 23:07:13 +00001903 else if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(MaxRHS))
1904 NewRHS = SU->getValue();
Dan Gohman1d367982010-04-24 03:13:44 +00001905 else
Dan Gohmancaf71ab2010-06-22 23:07:13 +00001906 // Max doesn't match expected pattern.
1907 return Cond;
Dan Gohman7979b722010-01-22 00:46:49 +00001908
1909 // Determine the new comparison opcode. It may be signed or unsigned,
1910 // and the original comparison may be either equality or inequality.
Dan Gohman7979b722010-01-22 00:46:49 +00001911 if (Cond->getPredicate() == CmpInst::ICMP_EQ)
1912 Pred = CmpInst::getInversePredicate(Pred);
1913
1914 // Ok, everything looks ok to change the condition into an SLT or SGE and
1915 // delete the max calculation.
1916 ICmpInst *NewCond =
1917 new ICmpInst(Cond, Pred, Cond->getOperand(0), NewRHS, "scmp");
1918
1919 // Delete the max calculation instructions.
1920 Cond->replaceAllUsesWith(NewCond);
1921 CondUse->setUser(NewCond);
1922 Instruction *Cmp = cast<Instruction>(Sel->getOperand(0));
1923 Cond->eraseFromParent();
1924 Sel->eraseFromParent();
1925 if (Cmp->use_empty())
1926 Cmp->eraseFromParent();
1927 return NewCond;
Dan Gohmanad7321f2008-09-15 21:22:06 +00001928}
1929
Jim Grosbach56a1f802009-11-17 17:53:56 +00001930/// OptimizeLoopTermCond - Change loop terminating condition to use the
Evan Cheng586f69a2009-11-12 07:35:05 +00001931/// postinc iv when possible.
Dan Gohmanc6519f92010-05-20 20:05:31 +00001932void
Dan Gohman572645c2010-02-12 10:34:29 +00001933LSRInstance::OptimizeLoopTermCond() {
1934 SmallPtrSet<Instruction *, 4> PostIncs;
1935
Evan Cheng586f69a2009-11-12 07:35:05 +00001936 BasicBlock *LatchBlock = L->getLoopLatch();
Evan Cheng076e0852009-11-17 18:10:11 +00001937 SmallVector<BasicBlock*, 8> ExitingBlocks;
1938 L->getExitingBlocks(ExitingBlocks);
Jim Grosbach56a1f802009-11-17 17:53:56 +00001939
Evan Cheng076e0852009-11-17 18:10:11 +00001940 for (unsigned i = 0, e = ExitingBlocks.size(); i != e; ++i) {
1941 BasicBlock *ExitingBlock = ExitingBlocks[i];
Evan Cheng586f69a2009-11-12 07:35:05 +00001942
Dan Gohman572645c2010-02-12 10:34:29 +00001943 // Get the terminating condition for the loop if possible. If we
Evan Cheng076e0852009-11-17 18:10:11 +00001944 // can, we want to change it to use a post-incremented version of its
1945 // induction variable, to allow coalescing the live ranges for the IV into
1946 // one register value.
Evan Cheng586f69a2009-11-12 07:35:05 +00001947
Evan Cheng076e0852009-11-17 18:10:11 +00001948 BranchInst *TermBr = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
1949 if (!TermBr)
1950 continue;
1951 // FIXME: Overly conservative, termination condition could be an 'or' etc..
1952 if (TermBr->isUnconditional() || !isa<ICmpInst>(TermBr->getCondition()))
1953 continue;
Evan Cheng586f69a2009-11-12 07:35:05 +00001954
Evan Cheng076e0852009-11-17 18:10:11 +00001955 // Search IVUsesByStride to find Cond's IVUse if there is one.
1956 IVStrideUse *CondUse = 0;
Evan Cheng076e0852009-11-17 18:10:11 +00001957 ICmpInst *Cond = cast<ICmpInst>(TermBr->getCondition());
Dan Gohman572645c2010-02-12 10:34:29 +00001958 if (!FindIVUserForCond(Cond, CondUse))
Evan Cheng076e0852009-11-17 18:10:11 +00001959 continue;
1960
Evan Cheng076e0852009-11-17 18:10:11 +00001961 // If the trip count is computed in terms of a max (due to ScalarEvolution
1962 // being unable to find a sufficient guard, for example), change the loop
1963 // comparison to use SLT or ULT instead of NE.
Dan Gohman572645c2010-02-12 10:34:29 +00001964 // One consequence of doing this now is that it disrupts the count-down
1965 // optimization. That's not always a bad thing though, because in such
1966 // cases it may still be worthwhile to avoid a max.
1967 Cond = OptimizeMax(Cond, CondUse);
Evan Cheng076e0852009-11-17 18:10:11 +00001968
Dan Gohman572645c2010-02-12 10:34:29 +00001969 // If this exiting block dominates the latch block, it may also use
1970 // the post-inc value if it won't be shared with other uses.
1971 // Check for dominance.
1972 if (!DT.dominates(ExitingBlock, LatchBlock))
Dan Gohman7979b722010-01-22 00:46:49 +00001973 continue;
Evan Cheng076e0852009-11-17 18:10:11 +00001974
Dan Gohman572645c2010-02-12 10:34:29 +00001975 // Conservatively avoid trying to use the post-inc value in non-latch
1976 // exits if there may be pre-inc users in intervening blocks.
Dan Gohman590bfe82010-02-14 03:21:49 +00001977 if (LatchBlock != ExitingBlock)
Dan Gohman572645c2010-02-12 10:34:29 +00001978 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
1979 // Test if the use is reachable from the exiting block. This dominator
1980 // query is a conservative approximation of reachability.
1981 if (&*UI != CondUse &&
1982 !DT.properlyDominates(UI->getUser()->getParent(), ExitingBlock)) {
1983 // Conservatively assume there may be reuse if the quotient of their
1984 // strides could be a legal scale.
Dan Gohmanc0564542010-04-19 21:48:58 +00001985 const SCEV *A = IU.getStride(*CondUse, L);
1986 const SCEV *B = IU.getStride(*UI, L);
Dan Gohman448db1c2010-04-07 22:27:08 +00001987 if (!A || !B) continue;
Dan Gohman572645c2010-02-12 10:34:29 +00001988 if (SE.getTypeSizeInBits(A->getType()) !=
1989 SE.getTypeSizeInBits(B->getType())) {
1990 if (SE.getTypeSizeInBits(A->getType()) >
1991 SE.getTypeSizeInBits(B->getType()))
1992 B = SE.getSignExtendExpr(B, A->getType());
1993 else
1994 A = SE.getSignExtendExpr(A, B->getType());
1995 }
1996 if (const SCEVConstant *D =
Dan Gohmanf09b7122010-02-19 19:35:48 +00001997 dyn_cast_or_null<SCEVConstant>(getExactSDiv(B, A, SE))) {
Dan Gohman9f383eb2010-05-20 22:25:20 +00001998 const ConstantInt *C = D->getValue();
Dan Gohman572645c2010-02-12 10:34:29 +00001999 // Stride of one or negative one can have reuse with non-addresses.
Dan Gohman9f383eb2010-05-20 22:25:20 +00002000 if (C->isOne() || C->isAllOnesValue())
Dan Gohman572645c2010-02-12 10:34:29 +00002001 goto decline_post_inc;
2002 // Avoid weird situations.
Dan Gohman9f383eb2010-05-20 22:25:20 +00002003 if (C->getValue().getMinSignedBits() >= 64 ||
2004 C->getValue().isMinSignedValue())
Dan Gohman572645c2010-02-12 10:34:29 +00002005 goto decline_post_inc;
2006 // Check for possible scaled-address reuse.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002007 Type *AccessTy = getAccessType(UI->getUser());
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00002008 int64_t Scale = C->getSExtValue();
2009 if (TTI.isLegalAddressingMode(AccessTy, /*BaseGV=*/ 0,
2010 /*BaseOffset=*/ 0,
2011 /*HasBaseReg=*/ false, Scale))
Dan Gohman572645c2010-02-12 10:34:29 +00002012 goto decline_post_inc;
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00002013 Scale = -Scale;
2014 if (TTI.isLegalAddressingMode(AccessTy, /*BaseGV=*/ 0,
2015 /*BaseOffset=*/ 0,
2016 /*HasBaseReg=*/ false, Scale))
Dan Gohman572645c2010-02-12 10:34:29 +00002017 goto decline_post_inc;
2018 }
2019 }
2020
David Greene63c94632009-12-23 22:58:38 +00002021 DEBUG(dbgs() << " Change loop exiting icmp to use postinc iv: "
Dan Gohman572645c2010-02-12 10:34:29 +00002022 << *Cond << '\n');
Evan Cheng076e0852009-11-17 18:10:11 +00002023
2024 // It's possible for the setcc instruction to be anywhere in the loop, and
2025 // possible for it to have multiple users. If it is not immediately before
2026 // the exiting block branch, move it.
Dan Gohman572645c2010-02-12 10:34:29 +00002027 if (&*++BasicBlock::iterator(Cond) != TermBr) {
2028 if (Cond->hasOneUse()) {
Evan Cheng076e0852009-11-17 18:10:11 +00002029 Cond->moveBefore(TermBr);
2030 } else {
Dan Gohman572645c2010-02-12 10:34:29 +00002031 // Clone the terminating condition and insert into the loopend.
2032 ICmpInst *OldCond = Cond;
Evan Cheng076e0852009-11-17 18:10:11 +00002033 Cond = cast<ICmpInst>(Cond->clone());
2034 Cond->setName(L->getHeader()->getName() + ".termcond");
2035 ExitingBlock->getInstList().insert(TermBr, Cond);
2036
2037 // Clone the IVUse, as the old use still exists!
Andrew Trick4417e532011-06-21 15:43:52 +00002038 CondUse = &IU.AddUser(Cond, CondUse->getOperandValToReplace());
Dan Gohman572645c2010-02-12 10:34:29 +00002039 TermBr->replaceUsesOfWith(OldCond, Cond);
Evan Cheng076e0852009-11-17 18:10:11 +00002040 }
Evan Cheng586f69a2009-11-12 07:35:05 +00002041 }
2042
Evan Cheng076e0852009-11-17 18:10:11 +00002043 // If we get to here, we know that we can transform the setcc instruction to
2044 // use the post-incremented version of the IV, allowing us to coalesce the
2045 // live ranges for the IV correctly.
Dan Gohman448db1c2010-04-07 22:27:08 +00002046 CondUse->transformToPostInc(L);
Evan Cheng076e0852009-11-17 18:10:11 +00002047 Changed = true;
2048
Dan Gohman572645c2010-02-12 10:34:29 +00002049 PostIncs.insert(Cond);
2050 decline_post_inc:;
Dan Gohmana10756e2010-01-21 02:09:26 +00002051 }
Dan Gohman572645c2010-02-12 10:34:29 +00002052
2053 // Determine an insertion point for the loop induction variable increment. It
2054 // must dominate all the post-inc comparisons we just set up, and it must
2055 // dominate the loop latch edge.
2056 IVIncInsertPos = L->getLoopLatch()->getTerminator();
2057 for (SmallPtrSet<Instruction *, 4>::const_iterator I = PostIncs.begin(),
2058 E = PostIncs.end(); I != E; ++I) {
2059 BasicBlock *BB =
2060 DT.findNearestCommonDominator(IVIncInsertPos->getParent(),
2061 (*I)->getParent());
2062 if (BB == (*I)->getParent())
2063 IVIncInsertPos = *I;
2064 else if (BB != IVIncInsertPos->getParent())
2065 IVIncInsertPos = BB->getTerminator();
2066 }
Dan Gohmana10756e2010-01-21 02:09:26 +00002067}
2068
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002069/// reconcileNewOffset - Determine if the given use can accommodate a fixup
Dan Gohman76c315a2010-05-20 20:52:00 +00002070/// at the given offset and other details. If so, update the use and
2071/// return true.
Dan Gohman572645c2010-02-12 10:34:29 +00002072bool
Dan Gohman191bd642010-09-01 01:45:53 +00002073LSRInstance::reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002074 LSRUse::KindType Kind, Type *AccessTy) {
Dan Gohman191bd642010-09-01 01:45:53 +00002075 int64_t NewMinOffset = LU.MinOffset;
2076 int64_t NewMaxOffset = LU.MaxOffset;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002077 Type *NewAccessTy = AccessTy;
Dan Gohman7979b722010-01-22 00:46:49 +00002078
Dan Gohman572645c2010-02-12 10:34:29 +00002079 // Check for a mismatched kind. It's tempting to collapse mismatched kinds to
2080 // something conservative, however this can pessimize in the case that one of
2081 // the uses will have all its uses outside the loop, for example.
2082 if (LU.Kind != Kind)
Dan Gohman7979b722010-01-22 00:46:49 +00002083 return false;
Dan Gohman572645c2010-02-12 10:34:29 +00002084 // Conservatively assume HasBaseReg is true for now.
Dan Gohman191bd642010-09-01 01:45:53 +00002085 if (NewOffset < LU.MinOffset) {
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00002086 if (!isAlwaysFoldable(TTI, Kind, AccessTy, /*BaseGV=*/ 0,
2087 LU.MaxOffset - NewOffset, HasBaseReg))
Dan Gohman7979b722010-01-22 00:46:49 +00002088 return false;
Dan Gohman191bd642010-09-01 01:45:53 +00002089 NewMinOffset = NewOffset;
2090 } else if (NewOffset > LU.MaxOffset) {
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00002091 if (!isAlwaysFoldable(TTI, Kind, AccessTy, /*BaseGV=*/ 0,
2092 NewOffset - LU.MinOffset, HasBaseReg))
Dan Gohman7979b722010-01-22 00:46:49 +00002093 return false;
Dan Gohman191bd642010-09-01 01:45:53 +00002094 NewMaxOffset = NewOffset;
Dan Gohmana10756e2010-01-21 02:09:26 +00002095 }
Dan Gohman572645c2010-02-12 10:34:29 +00002096 // Check for a mismatched access type, and fall back conservatively as needed.
Dan Gohman74e5ef02010-06-19 21:30:18 +00002097 // TODO: Be less conservative when the type is similar and can use the same
2098 // addressing modes.
Dan Gohman572645c2010-02-12 10:34:29 +00002099 if (Kind == LSRUse::Address && AccessTy != LU.AccessTy)
Dan Gohman191bd642010-09-01 01:45:53 +00002100 NewAccessTy = Type::getVoidTy(AccessTy->getContext());
Dan Gohmana10756e2010-01-21 02:09:26 +00002101
Dan Gohman572645c2010-02-12 10:34:29 +00002102 // Update the use.
Dan Gohman191bd642010-09-01 01:45:53 +00002103 LU.MinOffset = NewMinOffset;
2104 LU.MaxOffset = NewMaxOffset;
2105 LU.AccessTy = NewAccessTy;
2106 if (NewOffset != LU.Offsets.back())
2107 LU.Offsets.push_back(NewOffset);
Dan Gohman8b0ade32010-01-21 22:42:49 +00002108 return true;
2109}
2110
Dan Gohman572645c2010-02-12 10:34:29 +00002111/// getUse - Return an LSRUse index and an offset value for a fixup which
2112/// needs the given expression, with the given kind and optional access type.
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002113/// Either reuse an existing use or create a new one, as needed.
Dan Gohman572645c2010-02-12 10:34:29 +00002114std::pair<size_t, int64_t>
2115LSRInstance::getUse(const SCEV *&Expr,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002116 LSRUse::KindType Kind, Type *AccessTy) {
Dan Gohman572645c2010-02-12 10:34:29 +00002117 const SCEV *Copy = Expr;
2118 int64_t Offset = ExtractImmediate(Expr, SE);
Evan Cheng586f69a2009-11-12 07:35:05 +00002119
Dan Gohman572645c2010-02-12 10:34:29 +00002120 // Basic uses can't accept any offset, for example.
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00002121 if (!isAlwaysFoldable(TTI, Kind, AccessTy, /*BaseGV=*/ 0,
2122 Offset, /*HasBaseReg=*/ true)) {
Dan Gohman572645c2010-02-12 10:34:29 +00002123 Expr = Copy;
2124 Offset = 0;
2125 }
2126
2127 std::pair<UseMapTy::iterator, bool> P =
Dan Gohman1e3121c2010-06-19 21:29:59 +00002128 UseMap.insert(std::make_pair(std::make_pair(Expr, Kind), 0));
Dan Gohman572645c2010-02-12 10:34:29 +00002129 if (!P.second) {
2130 // A use already existed with this base.
2131 size_t LUIdx = P.first->second;
2132 LSRUse &LU = Uses[LUIdx];
Dan Gohman191bd642010-09-01 01:45:53 +00002133 if (reconcileNewOffset(LU, Offset, /*HasBaseReg=*/true, Kind, AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +00002134 // Reuse this use.
2135 return std::make_pair(LUIdx, Offset);
2136 }
2137
2138 // Create a new use.
2139 size_t LUIdx = Uses.size();
2140 P.first->second = LUIdx;
2141 Uses.push_back(LSRUse(Kind, AccessTy));
2142 LSRUse &LU = Uses[LUIdx];
2143
Dan Gohman191bd642010-09-01 01:45:53 +00002144 // We don't need to track redundant offsets, but we don't need to go out
2145 // of our way here to avoid them.
2146 if (LU.Offsets.empty() || Offset != LU.Offsets.back())
2147 LU.Offsets.push_back(Offset);
2148
Dan Gohman572645c2010-02-12 10:34:29 +00002149 LU.MinOffset = Offset;
2150 LU.MaxOffset = Offset;
2151 return std::make_pair(LUIdx, Offset);
2152}
2153
Dan Gohman5ce6d052010-05-20 15:17:54 +00002154/// DeleteUse - Delete the given use from the Uses list.
Dan Gohmanc6897702010-10-07 23:33:43 +00002155void LSRInstance::DeleteUse(LSRUse &LU, size_t LUIdx) {
Dan Gohman191bd642010-09-01 01:45:53 +00002156 if (&LU != &Uses.back())
Dan Gohman5ce6d052010-05-20 15:17:54 +00002157 std::swap(LU, Uses.back());
2158 Uses.pop_back();
Dan Gohmanc6897702010-10-07 23:33:43 +00002159
2160 // Update RegUses.
2161 RegUses.SwapAndDropUse(LUIdx, Uses.size());
Dan Gohman5ce6d052010-05-20 15:17:54 +00002162}
2163
Dan Gohmana2086b32010-05-19 23:43:12 +00002164/// FindUseWithFormula - Look for a use distinct from OrigLU which is has
2165/// a formula that has the same registers as the given formula.
2166LSRUse *
2167LSRInstance::FindUseWithSimilarFormula(const Formula &OrigF,
Dan Gohman191bd642010-09-01 01:45:53 +00002168 const LSRUse &OrigLU) {
2169 // Search all uses for the formula. This could be more clever.
Dan Gohmana2086b32010-05-19 23:43:12 +00002170 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2171 LSRUse &LU = Uses[LUIdx];
Dan Gohman6a832712010-08-29 15:27:08 +00002172 // Check whether this use is close enough to OrigLU, to see whether it's
2173 // worthwhile looking through its formulae.
2174 // Ignore ICmpZero uses because they may contain formulae generated by
2175 // GenerateICmpZeroScales, in which case adding fixup offsets may
2176 // be invalid.
Dan Gohmana2086b32010-05-19 23:43:12 +00002177 if (&LU != &OrigLU &&
2178 LU.Kind != LSRUse::ICmpZero &&
2179 LU.Kind == OrigLU.Kind && OrigLU.AccessTy == LU.AccessTy &&
Dan Gohmana9db1292010-07-15 20:24:58 +00002180 LU.WidestFixupType == OrigLU.WidestFixupType &&
Dan Gohmana2086b32010-05-19 23:43:12 +00002181 LU.HasFormulaWithSameRegs(OrigF)) {
Dan Gohman6a832712010-08-29 15:27:08 +00002182 // Scan through this use's formulae.
Dan Gohman402d4352010-05-20 20:33:18 +00002183 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
2184 E = LU.Formulae.end(); I != E; ++I) {
2185 const Formula &F = *I;
Dan Gohman6a832712010-08-29 15:27:08 +00002186 // Check to see if this formula has the same registers and symbols
2187 // as OrigF.
Dan Gohmana2086b32010-05-19 23:43:12 +00002188 if (F.BaseRegs == OrigF.BaseRegs &&
2189 F.ScaledReg == OrigF.ScaledReg &&
2190 F.AM.BaseGV == OrigF.AM.BaseGV &&
Dan Gohmancca82142011-05-03 00:46:49 +00002191 F.AM.Scale == OrigF.AM.Scale &&
2192 F.UnfoldedOffset == OrigF.UnfoldedOffset) {
Dan Gohman191bd642010-09-01 01:45:53 +00002193 if (F.AM.BaseOffs == 0)
Dan Gohmana2086b32010-05-19 23:43:12 +00002194 return &LU;
Dan Gohman6a832712010-08-29 15:27:08 +00002195 // This is the formula where all the registers and symbols matched;
2196 // there aren't going to be any others. Since we declined it, we
Benjamin Kramerd9b0b022012-06-02 10:20:22 +00002197 // can skip the rest of the formulae and proceed to the next LSRUse.
Dan Gohmana2086b32010-05-19 23:43:12 +00002198 break;
2199 }
2200 }
2201 }
2202 }
2203
Dan Gohman6a832712010-08-29 15:27:08 +00002204 // Nothing looked good.
Dan Gohmana2086b32010-05-19 23:43:12 +00002205 return 0;
2206}
2207
Dan Gohman572645c2010-02-12 10:34:29 +00002208void LSRInstance::CollectInterestingTypesAndFactors() {
2209 SmallSetVector<const SCEV *, 4> Strides;
2210
Dan Gohman1b7bf182010-02-19 00:05:23 +00002211 // Collect interesting types and strides.
Dan Gohman448db1c2010-04-07 22:27:08 +00002212 SmallVector<const SCEV *, 4> Worklist;
Dan Gohman572645c2010-02-12 10:34:29 +00002213 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) {
Dan Gohmanc0564542010-04-19 21:48:58 +00002214 const SCEV *Expr = IU.getExpr(*UI);
Dan Gohman572645c2010-02-12 10:34:29 +00002215
2216 // Collect interesting types.
Dan Gohman448db1c2010-04-07 22:27:08 +00002217 Types.insert(SE.getEffectiveSCEVType(Expr->getType()));
Dan Gohman572645c2010-02-12 10:34:29 +00002218
Dan Gohman448db1c2010-04-07 22:27:08 +00002219 // Add strides for mentioned loops.
2220 Worklist.push_back(Expr);
2221 do {
2222 const SCEV *S = Worklist.pop_back_val();
2223 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
Andrew Trickbd618f12012-03-22 22:42:45 +00002224 if (AR->getLoop() == L)
Andrew Trickfa1948a2011-12-10 00:25:00 +00002225 Strides.insert(AR->getStepRecurrence(SE));
Dan Gohman448db1c2010-04-07 22:27:08 +00002226 Worklist.push_back(AR->getStart());
2227 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Dan Gohman403a8cd2010-06-21 19:47:52 +00002228 Worklist.append(Add->op_begin(), Add->op_end());
Dan Gohman448db1c2010-04-07 22:27:08 +00002229 }
2230 } while (!Worklist.empty());
Dan Gohman1b7bf182010-02-19 00:05:23 +00002231 }
2232
2233 // Compute interesting factors from the set of interesting strides.
2234 for (SmallSetVector<const SCEV *, 4>::const_iterator
2235 I = Strides.begin(), E = Strides.end(); I != E; ++I)
Dan Gohman572645c2010-02-12 10:34:29 +00002236 for (SmallSetVector<const SCEV *, 4>::const_iterator NewStrideIter =
Oscar Fuentesee56c422010-08-02 06:00:15 +00002237 llvm::next(I); NewStrideIter != E; ++NewStrideIter) {
Dan Gohman1b7bf182010-02-19 00:05:23 +00002238 const SCEV *OldStride = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00002239 const SCEV *NewStride = *NewStrideIter;
Dan Gohman572645c2010-02-12 10:34:29 +00002240
2241 if (SE.getTypeSizeInBits(OldStride->getType()) !=
2242 SE.getTypeSizeInBits(NewStride->getType())) {
2243 if (SE.getTypeSizeInBits(OldStride->getType()) >
2244 SE.getTypeSizeInBits(NewStride->getType()))
2245 NewStride = SE.getSignExtendExpr(NewStride, OldStride->getType());
2246 else
2247 OldStride = SE.getSignExtendExpr(OldStride, NewStride->getType());
2248 }
2249 if (const SCEVConstant *Factor =
Dan Gohmanf09b7122010-02-19 19:35:48 +00002250 dyn_cast_or_null<SCEVConstant>(getExactSDiv(NewStride, OldStride,
2251 SE, true))) {
Dan Gohman572645c2010-02-12 10:34:29 +00002252 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2253 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2254 } else if (const SCEVConstant *Factor =
Dan Gohman454d26d2010-02-22 04:11:59 +00002255 dyn_cast_or_null<SCEVConstant>(getExactSDiv(OldStride,
2256 NewStride,
Dan Gohmanf09b7122010-02-19 19:35:48 +00002257 SE, true))) {
Dan Gohman572645c2010-02-12 10:34:29 +00002258 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2259 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2260 }
2261 }
Dan Gohman572645c2010-02-12 10:34:29 +00002262
2263 // If all uses use the same type, don't bother looking for truncation-based
2264 // reuse.
2265 if (Types.size() == 1)
2266 Types.clear();
2267
2268 DEBUG(print_factors_and_types(dbgs()));
2269}
2270
Andrew Trick6c7d0ae2012-01-09 19:50:34 +00002271/// findIVOperand - Helper for CollectChains that finds an IV operand (computed
2272/// by an AddRec in this loop) within [OI,OE) or returns OE. If IVUsers mapped
2273/// Instructions to IVStrideUses, we could partially skip this.
2274static User::op_iterator
2275findIVOperand(User::op_iterator OI, User::op_iterator OE,
2276 Loop *L, ScalarEvolution &SE) {
2277 for(; OI != OE; ++OI) {
2278 if (Instruction *Oper = dyn_cast<Instruction>(*OI)) {
2279 if (!SE.isSCEVable(Oper->getType()))
2280 continue;
2281
2282 if (const SCEVAddRecExpr *AR =
2283 dyn_cast<SCEVAddRecExpr>(SE.getSCEV(Oper))) {
2284 if (AR->getLoop() == L)
2285 break;
2286 }
2287 }
2288 }
2289 return OI;
2290}
2291
2292/// getWideOperand - IVChain logic must consistenctly peek base TruncInst
2293/// operands, so wrap it in a convenient helper.
2294static Value *getWideOperand(Value *Oper) {
2295 if (TruncInst *Trunc = dyn_cast<TruncInst>(Oper))
2296 return Trunc->getOperand(0);
2297 return Oper;
2298}
2299
2300/// isCompatibleIVType - Return true if we allow an IV chain to include both
2301/// types.
2302static bool isCompatibleIVType(Value *LVal, Value *RVal) {
2303 Type *LType = LVal->getType();
2304 Type *RType = RVal->getType();
2305 return (LType == RType) || (LType->isPointerTy() && RType->isPointerTy());
2306}
2307
Andrew Trick64925c52012-01-10 01:45:08 +00002308/// getExprBase - Return an approximation of this SCEV expression's "base", or
2309/// NULL for any constant. Returning the expression itself is
2310/// conservative. Returning a deeper subexpression is more precise and valid as
2311/// long as it isn't less complex than another subexpression. For expressions
2312/// involving multiple unscaled values, we need to return the pointer-type
2313/// SCEVUnknown. This avoids forming chains across objects, such as:
2314/// PrevOper==a[i], IVOper==b[i], IVInc==b-a.
2315///
2316/// Since SCEVUnknown is the rightmost type, and pointers are the rightmost
2317/// SCEVUnknown, we simply return the rightmost SCEV operand.
2318static const SCEV *getExprBase(const SCEV *S) {
2319 switch (S->getSCEVType()) {
2320 default: // uncluding scUnknown.
2321 return S;
2322 case scConstant:
2323 return 0;
2324 case scTruncate:
2325 return getExprBase(cast<SCEVTruncateExpr>(S)->getOperand());
2326 case scZeroExtend:
2327 return getExprBase(cast<SCEVZeroExtendExpr>(S)->getOperand());
2328 case scSignExtend:
2329 return getExprBase(cast<SCEVSignExtendExpr>(S)->getOperand());
2330 case scAddExpr: {
2331 // Skip over scaled operands (scMulExpr) to follow add operands as long as
2332 // there's nothing more complex.
2333 // FIXME: not sure if we want to recognize negation.
2334 const SCEVAddExpr *Add = cast<SCEVAddExpr>(S);
2335 for (std::reverse_iterator<SCEVAddExpr::op_iterator> I(Add->op_end()),
2336 E(Add->op_begin()); I != E; ++I) {
2337 const SCEV *SubExpr = *I;
2338 if (SubExpr->getSCEVType() == scAddExpr)
2339 return getExprBase(SubExpr);
2340
2341 if (SubExpr->getSCEVType() != scMulExpr)
2342 return SubExpr;
2343 }
2344 return S; // all operands are scaled, be conservative.
2345 }
2346 case scAddRecExpr:
2347 return getExprBase(cast<SCEVAddRecExpr>(S)->getStart());
2348 }
2349}
2350
Andrew Trick22d20c22012-01-09 21:18:52 +00002351/// Return true if the chain increment is profitable to expand into a loop
2352/// invariant value, which may require its own register. A profitable chain
2353/// increment will be an offset relative to the same base. We allow such offsets
2354/// to potentially be used as chain increment as long as it's not obviously
2355/// expensive to expand using real instructions.
Jakob Stoklund Olesenf9f1c7a2012-04-26 23:33:11 +00002356bool IVChain::isProfitableIncrement(const SCEV *OperExpr,
2357 const SCEV *IncExpr,
2358 ScalarEvolution &SE) {
2359 // Aggressively form chains when -stress-ivchain.
Andrew Trick22d20c22012-01-09 21:18:52 +00002360 if (StressIVChain)
Jakob Stoklund Olesenf9f1c7a2012-04-26 23:33:11 +00002361 return true;
Andrew Trick22d20c22012-01-09 21:18:52 +00002362
Andrew Trick64925c52012-01-10 01:45:08 +00002363 // Do not replace a constant offset from IV head with a nonconstant IV
2364 // increment.
2365 if (!isa<SCEVConstant>(IncExpr)) {
Jakob Stoklund Olesenf9f1c7a2012-04-26 23:33:11 +00002366 const SCEV *HeadExpr = SE.getSCEV(getWideOperand(Incs[0].IVOperand));
Andrew Trick64925c52012-01-10 01:45:08 +00002367 if (isa<SCEVConstant>(SE.getMinusSCEV(OperExpr, HeadExpr)))
2368 return 0;
2369 }
2370
2371 SmallPtrSet<const SCEV*, 8> Processed;
Jakob Stoklund Olesenf9f1c7a2012-04-26 23:33:11 +00002372 return !isHighCostExpansion(IncExpr, Processed, SE);
Andrew Trick22d20c22012-01-09 21:18:52 +00002373}
2374
2375/// Return true if the number of registers needed for the chain is estimated to
2376/// be less than the number required for the individual IV users. First prohibit
2377/// any IV users that keep the IV live across increments (the Users set should
2378/// be empty). Next count the number and type of increments in the chain.
2379///
2380/// Chaining IVs can lead to considerable code bloat if ISEL doesn't
2381/// effectively use postinc addressing modes. Only consider it profitable it the
2382/// increments can be computed in fewer registers when chained.
2383///
2384/// TODO: Consider IVInc free if it's already used in another chains.
2385static bool
2386isProfitableChain(IVChain &Chain, SmallPtrSet<Instruction*, 4> &Users,
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00002387 ScalarEvolution &SE, const TargetTransformInfo &TTI) {
Andrew Trick22d20c22012-01-09 21:18:52 +00002388 if (StressIVChain)
2389 return true;
2390
Jakob Stoklund Olesen70a18602012-04-26 23:33:09 +00002391 if (!Chain.hasIncs())
Andrew Trick64925c52012-01-10 01:45:08 +00002392 return false;
2393
2394 if (!Users.empty()) {
Jakob Stoklund Olesen70a18602012-04-26 23:33:09 +00002395 DEBUG(dbgs() << "Chain: " << *Chain.Incs[0].UserInst << " users:\n";
Andrew Trick64925c52012-01-10 01:45:08 +00002396 for (SmallPtrSet<Instruction*, 4>::const_iterator I = Users.begin(),
2397 E = Users.end(); I != E; ++I) {
2398 dbgs() << " " << **I << "\n";
2399 });
2400 return false;
2401 }
Jakob Stoklund Olesen70a18602012-04-26 23:33:09 +00002402 assert(!Chain.Incs.empty() && "empty IV chains are not allowed");
Andrew Trick64925c52012-01-10 01:45:08 +00002403
2404 // The chain itself may require a register, so intialize cost to 1.
2405 int cost = 1;
2406
2407 // A complete chain likely eliminates the need for keeping the original IV in
2408 // a register. LSR does not currently know how to form a complete chain unless
2409 // the header phi already exists.
Jakob Stoklund Olesen70a18602012-04-26 23:33:09 +00002410 if (isa<PHINode>(Chain.tailUserInst())
2411 && SE.getSCEV(Chain.tailUserInst()) == Chain.Incs[0].IncExpr) {
Andrew Trick64925c52012-01-10 01:45:08 +00002412 --cost;
2413 }
2414 const SCEV *LastIncExpr = 0;
2415 unsigned NumConstIncrements = 0;
2416 unsigned NumVarIncrements = 0;
2417 unsigned NumReusedIncrements = 0;
Jakob Stoklund Olesen70a18602012-04-26 23:33:09 +00002418 for (IVChain::const_iterator I = Chain.begin(), E = Chain.end();
Andrew Trick64925c52012-01-10 01:45:08 +00002419 I != E; ++I) {
2420
2421 if (I->IncExpr->isZero())
2422 continue;
2423
2424 // Incrementing by zero or some constant is neutral. We assume constants can
2425 // be folded into an addressing mode or an add's immediate operand.
2426 if (isa<SCEVConstant>(I->IncExpr)) {
2427 ++NumConstIncrements;
2428 continue;
2429 }
2430
2431 if (I->IncExpr == LastIncExpr)
2432 ++NumReusedIncrements;
2433 else
2434 ++NumVarIncrements;
2435
2436 LastIncExpr = I->IncExpr;
2437 }
2438 // An IV chain with a single increment is handled by LSR's postinc
2439 // uses. However, a chain with multiple increments requires keeping the IV's
2440 // value live longer than it needs to be if chained.
2441 if (NumConstIncrements > 1)
2442 --cost;
2443
2444 // Materializing increment expressions in the preheader that didn't exist in
2445 // the original code may cost a register. For example, sign-extended array
2446 // indices can produce ridiculous increments like this:
2447 // IV + ((sext i32 (2 * %s) to i64) + (-1 * (sext i32 %s to i64)))
2448 cost += NumVarIncrements;
2449
2450 // Reusing variable increments likely saves a register to hold the multiple of
2451 // the stride.
2452 cost -= NumReusedIncrements;
2453
Jakob Stoklund Olesen70a18602012-04-26 23:33:09 +00002454 DEBUG(dbgs() << "Chain: " << *Chain.Incs[0].UserInst << " Cost: " << cost
2455 << "\n");
Andrew Trick64925c52012-01-10 01:45:08 +00002456
2457 return cost < 0;
Andrew Trick22d20c22012-01-09 21:18:52 +00002458}
2459
Andrew Trick6c7d0ae2012-01-09 19:50:34 +00002460/// ChainInstruction - Add this IV user to an existing chain or make it the head
2461/// of a new chain.
2462void LSRInstance::ChainInstruction(Instruction *UserInst, Instruction *IVOper,
2463 SmallVectorImpl<ChainUsers> &ChainUsersVec) {
2464 // When IVs are used as types of varying widths, they are generally converted
2465 // to a wider type with some uses remaining narrow under a (free) trunc.
Jakob Stoklund Olesenf9f1c7a2012-04-26 23:33:11 +00002466 Value *const NextIV = getWideOperand(IVOper);
2467 const SCEV *const OperExpr = SE.getSCEV(NextIV);
2468 const SCEV *const OperExprBase = getExprBase(OperExpr);
Andrew Trick6c7d0ae2012-01-09 19:50:34 +00002469
2470 // Visit all existing chains. Check if its IVOper can be computed as a
2471 // profitable loop invariant increment from the last link in the Chain.
2472 unsigned ChainIdx = 0, NChains = IVChainVec.size();
2473 const SCEV *LastIncExpr = 0;
2474 for (; ChainIdx < NChains; ++ChainIdx) {
Jakob Stoklund Olesenf9f1c7a2012-04-26 23:33:11 +00002475 IVChain &Chain = IVChainVec[ChainIdx];
2476
2477 // Prune the solution space aggressively by checking that both IV operands
2478 // are expressions that operate on the same unscaled SCEVUnknown. This
2479 // "base" will be canceled by the subsequent getMinusSCEV call. Checking
2480 // first avoids creating extra SCEV expressions.
2481 if (!StressIVChain && Chain.ExprBase != OperExprBase)
2482 continue;
2483
2484 Value *PrevIV = getWideOperand(Chain.Incs.back().IVOperand);
Andrew Trick6c7d0ae2012-01-09 19:50:34 +00002485 if (!isCompatibleIVType(PrevIV, NextIV))
2486 continue;
2487
Andrew Trickd4e46a62012-03-26 20:28:35 +00002488 // A phi node terminates a chain.
Jakob Stoklund Olesenf9f1c7a2012-04-26 23:33:11 +00002489 if (isa<PHINode>(UserInst) && isa<PHINode>(Chain.tailUserInst()))
Andrew Trick6c7d0ae2012-01-09 19:50:34 +00002490 continue;
2491
Jakob Stoklund Olesenf9f1c7a2012-04-26 23:33:11 +00002492 // The increment must be loop-invariant so it can be kept in a register.
2493 const SCEV *PrevExpr = SE.getSCEV(PrevIV);
2494 const SCEV *IncExpr = SE.getMinusSCEV(OperExpr, PrevExpr);
2495 if (!SE.isLoopInvariant(IncExpr, L))
2496 continue;
2497
2498 if (Chain.isProfitableIncrement(OperExpr, IncExpr, SE)) {
Andrew Trick6c7d0ae2012-01-09 19:50:34 +00002499 LastIncExpr = IncExpr;
2500 break;
2501 }
2502 }
2503 // If we haven't found a chain, create a new one, unless we hit the max. Don't
2504 // bother for phi nodes, because they must be last in the chain.
2505 if (ChainIdx == NChains) {
2506 if (isa<PHINode>(UserInst))
2507 return;
Andrew Trick22d20c22012-01-09 21:18:52 +00002508 if (NChains >= MaxChains && !StressIVChain) {
Andrew Trick6c7d0ae2012-01-09 19:50:34 +00002509 DEBUG(dbgs() << "IV Chain Limit\n");
2510 return;
2511 }
Jakob Stoklund Olesenf9f1c7a2012-04-26 23:33:11 +00002512 LastIncExpr = OperExpr;
Andrew Trick0041d4d2012-01-20 21:23:40 +00002513 // IVUsers may have skipped over sign/zero extensions. We don't currently
2514 // attempt to form chains involving extensions unless they can be hoisted
2515 // into this loop's AddRec.
2516 if (!isa<SCEVAddRecExpr>(LastIncExpr))
2517 return;
Andrew Trick6c7d0ae2012-01-09 19:50:34 +00002518 ++NChains;
Jakob Stoklund Olesenf9f1c7a2012-04-26 23:33:11 +00002519 IVChainVec.push_back(IVChain(IVInc(UserInst, IVOper, LastIncExpr),
2520 OperExprBase));
Andrew Trick6c7d0ae2012-01-09 19:50:34 +00002521 ChainUsersVec.resize(NChains);
Jakob Stoklund Olesen165324c2012-04-25 18:01:32 +00002522 DEBUG(dbgs() << "IV Chain#" << ChainIdx << " Head: (" << *UserInst
2523 << ") IV=" << *LastIncExpr << "\n");
Jakob Stoklund Olesenf9f1c7a2012-04-26 23:33:11 +00002524 } else {
Jakob Stoklund Olesen165324c2012-04-25 18:01:32 +00002525 DEBUG(dbgs() << "IV Chain#" << ChainIdx << " Inc: (" << *UserInst
2526 << ") IV+" << *LastIncExpr << "\n");
Jakob Stoklund Olesenf9f1c7a2012-04-26 23:33:11 +00002527 // Add this IV user to the end of the chain.
2528 IVChainVec[ChainIdx].add(IVInc(UserInst, IVOper, LastIncExpr));
2529 }
Andrew Trick6c7d0ae2012-01-09 19:50:34 +00002530
2531 SmallPtrSet<Instruction*,4> &NearUsers = ChainUsersVec[ChainIdx].NearUsers;
2532 // This chain's NearUsers become FarUsers.
2533 if (!LastIncExpr->isZero()) {
2534 ChainUsersVec[ChainIdx].FarUsers.insert(NearUsers.begin(),
2535 NearUsers.end());
2536 NearUsers.clear();
2537 }
2538
2539 // All other uses of IVOperand become near uses of the chain.
2540 // We currently ignore intermediate values within SCEV expressions, assuming
2541 // they will eventually be used be the current chain, or can be computed
2542 // from one of the chain increments. To be more precise we could
2543 // transitively follow its user and only add leaf IV users to the set.
2544 for (Value::use_iterator UseIter = IVOper->use_begin(),
2545 UseEnd = IVOper->use_end(); UseIter != UseEnd; ++UseIter) {
2546 Instruction *OtherUse = dyn_cast<Instruction>(*UseIter);
Andrew Trick81748bc2012-03-26 18:03:16 +00002547 if (!OtherUse || OtherUse == UserInst)
2548 continue;
Andrew Trick6c7d0ae2012-01-09 19:50:34 +00002549 if (SE.isSCEVable(OtherUse->getType())
2550 && !isa<SCEVUnknown>(SE.getSCEV(OtherUse))
2551 && IU.isIVUserOrOperand(OtherUse)) {
2552 continue;
2553 }
Andrew Trick81748bc2012-03-26 18:03:16 +00002554 NearUsers.insert(OtherUse);
Andrew Trick6c7d0ae2012-01-09 19:50:34 +00002555 }
2556
2557 // Since this user is part of the chain, it's no longer considered a use
2558 // of the chain.
2559 ChainUsersVec[ChainIdx].FarUsers.erase(UserInst);
2560}
2561
2562/// CollectChains - Populate the vector of Chains.
2563///
2564/// This decreases ILP at the architecture level. Targets with ample registers,
2565/// multiple memory ports, and no register renaming probably don't want
2566/// this. However, such targets should probably disable LSR altogether.
2567///
2568/// The job of LSR is to make a reasonable choice of induction variables across
2569/// the loop. Subsequent passes can easily "unchain" computation exposing more
2570/// ILP *within the loop* if the target wants it.
2571///
2572/// Finding the best IV chain is potentially a scheduling problem. Since LSR
2573/// will not reorder memory operations, it will recognize this as a chain, but
2574/// will generate redundant IV increments. Ideally this would be corrected later
2575/// by a smart scheduler:
2576/// = A[i]
2577/// = A[i+x]
2578/// A[i] =
2579/// A[i+x] =
2580///
2581/// TODO: Walk the entire domtree within this loop, not just the path to the
2582/// loop latch. This will discover chains on side paths, but requires
2583/// maintaining multiple copies of the Chains state.
2584void LSRInstance::CollectChains() {
Jakob Stoklund Olesen165324c2012-04-25 18:01:32 +00002585 DEBUG(dbgs() << "Collecting IV Chains.\n");
Andrew Trick6c7d0ae2012-01-09 19:50:34 +00002586 SmallVector<ChainUsers, 8> ChainUsersVec;
2587
2588 SmallVector<BasicBlock *,8> LatchPath;
2589 BasicBlock *LoopHeader = L->getHeader();
2590 for (DomTreeNode *Rung = DT.getNode(L->getLoopLatch());
2591 Rung->getBlock() != LoopHeader; Rung = Rung->getIDom()) {
2592 LatchPath.push_back(Rung->getBlock());
2593 }
2594 LatchPath.push_back(LoopHeader);
2595
2596 // Walk the instruction stream from the loop header to the loop latch.
2597 for (SmallVectorImpl<BasicBlock *>::reverse_iterator
2598 BBIter = LatchPath.rbegin(), BBEnd = LatchPath.rend();
2599 BBIter != BBEnd; ++BBIter) {
2600 for (BasicBlock::iterator I = (*BBIter)->begin(), E = (*BBIter)->end();
2601 I != E; ++I) {
2602 // Skip instructions that weren't seen by IVUsers analysis.
2603 if (isa<PHINode>(I) || !IU.isIVUserOrOperand(I))
2604 continue;
2605
2606 // Ignore users that are part of a SCEV expression. This way we only
2607 // consider leaf IV Users. This effectively rediscovers a portion of
2608 // IVUsers analysis but in program order this time.
2609 if (SE.isSCEVable(I->getType()) && !isa<SCEVUnknown>(SE.getSCEV(I)))
2610 continue;
2611
2612 // Remove this instruction from any NearUsers set it may be in.
2613 for (unsigned ChainIdx = 0, NChains = IVChainVec.size();
2614 ChainIdx < NChains; ++ChainIdx) {
2615 ChainUsersVec[ChainIdx].NearUsers.erase(I);
2616 }
2617 // Search for operands that can be chained.
2618 SmallPtrSet<Instruction*, 4> UniqueOperands;
2619 User::op_iterator IVOpEnd = I->op_end();
2620 User::op_iterator IVOpIter = findIVOperand(I->op_begin(), IVOpEnd, L, SE);
2621 while (IVOpIter != IVOpEnd) {
2622 Instruction *IVOpInst = cast<Instruction>(*IVOpIter);
2623 if (UniqueOperands.insert(IVOpInst))
2624 ChainInstruction(I, IVOpInst, ChainUsersVec);
2625 IVOpIter = findIVOperand(llvm::next(IVOpIter), IVOpEnd, L, SE);
2626 }
2627 } // Continue walking down the instructions.
2628 } // Continue walking down the domtree.
2629 // Visit phi backedges to determine if the chain can generate the IV postinc.
2630 for (BasicBlock::iterator I = L->getHeader()->begin();
2631 PHINode *PN = dyn_cast<PHINode>(I); ++I) {
2632 if (!SE.isSCEVable(PN->getType()))
2633 continue;
2634
2635 Instruction *IncV =
2636 dyn_cast<Instruction>(PN->getIncomingValueForBlock(L->getLoopLatch()));
2637 if (IncV)
2638 ChainInstruction(PN, IncV, ChainUsersVec);
2639 }
Andrew Trick22d20c22012-01-09 21:18:52 +00002640 // Remove any unprofitable chains.
2641 unsigned ChainIdx = 0;
2642 for (unsigned UsersIdx = 0, NChains = IVChainVec.size();
2643 UsersIdx < NChains; ++UsersIdx) {
2644 if (!isProfitableChain(IVChainVec[UsersIdx],
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00002645 ChainUsersVec[UsersIdx].FarUsers, SE, TTI))
Andrew Trick22d20c22012-01-09 21:18:52 +00002646 continue;
2647 // Preserve the chain at UsesIdx.
2648 if (ChainIdx != UsersIdx)
2649 IVChainVec[ChainIdx] = IVChainVec[UsersIdx];
2650 FinalizeChain(IVChainVec[ChainIdx]);
2651 ++ChainIdx;
2652 }
2653 IVChainVec.resize(ChainIdx);
2654}
2655
2656void LSRInstance::FinalizeChain(IVChain &Chain) {
Jakob Stoklund Olesen70a18602012-04-26 23:33:09 +00002657 assert(!Chain.Incs.empty() && "empty IV chains are not allowed");
2658 DEBUG(dbgs() << "Final Chain: " << *Chain.Incs[0].UserInst << "\n");
Andrew Trick22d20c22012-01-09 21:18:52 +00002659
Jakob Stoklund Olesen70a18602012-04-26 23:33:09 +00002660 for (IVChain::const_iterator I = Chain.begin(), E = Chain.end();
Andrew Trick22d20c22012-01-09 21:18:52 +00002661 I != E; ++I) {
2662 DEBUG(dbgs() << " Inc: " << *I->UserInst << "\n");
2663 User::op_iterator UseI =
2664 std::find(I->UserInst->op_begin(), I->UserInst->op_end(), I->IVOperand);
2665 assert(UseI != I->UserInst->op_end() && "cannot find IV operand");
2666 IVIncSet.insert(UseI);
2667 }
2668}
2669
2670/// Return true if the IVInc can be folded into an addressing mode.
2671static bool canFoldIVIncExpr(const SCEV *IncExpr, Instruction *UserInst,
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00002672 Value *Operand, const TargetTransformInfo &TTI) {
Andrew Trick22d20c22012-01-09 21:18:52 +00002673 const SCEVConstant *IncConst = dyn_cast<SCEVConstant>(IncExpr);
2674 if (!IncConst || !isAddressUse(UserInst, Operand))
2675 return false;
2676
2677 if (IncConst->getValue()->getValue().getMinSignedBits() > 64)
2678 return false;
2679
2680 int64_t IncOffset = IncConst->getValue()->getSExtValue();
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00002681 if (!isAlwaysFoldable(TTI, LSRUse::Address,
2682 getAccessType(UserInst), /*BaseGV=*/ 0,
2683 IncOffset, /*HaseBaseReg=*/ false))
Andrew Trick22d20c22012-01-09 21:18:52 +00002684 return false;
2685
2686 return true;
2687}
2688
2689/// GenerateIVChains - Generate an add or subtract for each IVInc in a chain to
2690/// materialize the IV user's operand from the previous IV user's operand.
2691void LSRInstance::GenerateIVChain(const IVChain &Chain, SCEVExpander &Rewriter,
2692 SmallVectorImpl<WeakVH> &DeadInsts) {
2693 // Find the new IVOperand for the head of the chain. It may have been replaced
2694 // by LSR.
Jakob Stoklund Olesen70a18602012-04-26 23:33:09 +00002695 const IVInc &Head = Chain.Incs[0];
Andrew Trick22d20c22012-01-09 21:18:52 +00002696 User::op_iterator IVOpEnd = Head.UserInst->op_end();
2697 User::op_iterator IVOpIter = findIVOperand(Head.UserInst->op_begin(),
2698 IVOpEnd, L, SE);
2699 Value *IVSrc = 0;
2700 while (IVOpIter != IVOpEnd) {
2701 IVSrc = getWideOperand(*IVOpIter);
2702
2703 // If this operand computes the expression that the chain needs, we may use
2704 // it. (Check this after setting IVSrc which is used below.)
2705 //
2706 // Note that if Head.IncExpr is wider than IVSrc, then this phi is too
2707 // narrow for the chain, so we can no longer use it. We do allow using a
2708 // wider phi, assuming the LSR checked for free truncation. In that case we
2709 // should already have a truncate on this operand such that
2710 // getSCEV(IVSrc) == IncExpr.
2711 if (SE.getSCEV(*IVOpIter) == Head.IncExpr
2712 || SE.getSCEV(IVSrc) == Head.IncExpr) {
2713 break;
2714 }
2715 IVOpIter = findIVOperand(llvm::next(IVOpIter), IVOpEnd, L, SE);
2716 }
2717 if (IVOpIter == IVOpEnd) {
2718 // Gracefully give up on this chain.
2719 DEBUG(dbgs() << "Concealed chain head: " << *Head.UserInst << "\n");
2720 return;
2721 }
2722
2723 DEBUG(dbgs() << "Generate chain at: " << *IVSrc << "\n");
2724 Type *IVTy = IVSrc->getType();
2725 Type *IntTy = SE.getEffectiveSCEVType(IVTy);
2726 const SCEV *LeftOverExpr = 0;
Jakob Stoklund Olesen70a18602012-04-26 23:33:09 +00002727 for (IVChain::const_iterator IncI = Chain.begin(),
Andrew Trick22d20c22012-01-09 21:18:52 +00002728 IncE = Chain.end(); IncI != IncE; ++IncI) {
2729
2730 Instruction *InsertPt = IncI->UserInst;
2731 if (isa<PHINode>(InsertPt))
2732 InsertPt = L->getLoopLatch()->getTerminator();
2733
2734 // IVOper will replace the current IV User's operand. IVSrc is the IV
2735 // value currently held in a register.
2736 Value *IVOper = IVSrc;
2737 if (!IncI->IncExpr->isZero()) {
2738 // IncExpr was the result of subtraction of two narrow values, so must
2739 // be signed.
2740 const SCEV *IncExpr = SE.getNoopOrSignExtend(IncI->IncExpr, IntTy);
2741 LeftOverExpr = LeftOverExpr ?
2742 SE.getAddExpr(LeftOverExpr, IncExpr) : IncExpr;
2743 }
2744 if (LeftOverExpr && !LeftOverExpr->isZero()) {
2745 // Expand the IV increment.
2746 Rewriter.clearPostInc();
2747 Value *IncV = Rewriter.expandCodeFor(LeftOverExpr, IntTy, InsertPt);
2748 const SCEV *IVOperExpr = SE.getAddExpr(SE.getUnknown(IVSrc),
2749 SE.getUnknown(IncV));
2750 IVOper = Rewriter.expandCodeFor(IVOperExpr, IVTy, InsertPt);
2751
2752 // If an IV increment can't be folded, use it as the next IV value.
2753 if (!canFoldIVIncExpr(LeftOverExpr, IncI->UserInst, IncI->IVOperand,
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00002754 TTI)) {
Andrew Trick22d20c22012-01-09 21:18:52 +00002755 assert(IVTy == IVOper->getType() && "inconsistent IV increment type");
2756 IVSrc = IVOper;
2757 LeftOverExpr = 0;
2758 }
2759 }
2760 Type *OperTy = IncI->IVOperand->getType();
2761 if (IVTy != OperTy) {
2762 assert(SE.getTypeSizeInBits(IVTy) >= SE.getTypeSizeInBits(OperTy) &&
2763 "cannot extend a chained IV");
2764 IRBuilder<> Builder(InsertPt);
2765 IVOper = Builder.CreateTruncOrBitCast(IVOper, OperTy, "lsr.chain");
2766 }
2767 IncI->UserInst->replaceUsesOfWith(IncI->IVOperand, IVOper);
2768 DeadInsts.push_back(IncI->IVOperand);
2769 }
2770 // If LSR created a new, wider phi, we may also replace its postinc. We only
2771 // do this if we also found a wide value for the head of the chain.
Jakob Stoklund Olesen70a18602012-04-26 23:33:09 +00002772 if (isa<PHINode>(Chain.tailUserInst())) {
Andrew Trick22d20c22012-01-09 21:18:52 +00002773 for (BasicBlock::iterator I = L->getHeader()->begin();
2774 PHINode *Phi = dyn_cast<PHINode>(I); ++I) {
2775 if (!isCompatibleIVType(Phi, IVSrc))
2776 continue;
2777 Instruction *PostIncV = dyn_cast<Instruction>(
2778 Phi->getIncomingValueForBlock(L->getLoopLatch()));
2779 if (!PostIncV || (SE.getSCEV(PostIncV) != SE.getSCEV(IVSrc)))
2780 continue;
2781 Value *IVOper = IVSrc;
2782 Type *PostIncTy = PostIncV->getType();
2783 if (IVTy != PostIncTy) {
2784 assert(PostIncTy->isPointerTy() && "mixing int/ptr IV types");
2785 IRBuilder<> Builder(L->getLoopLatch()->getTerminator());
2786 Builder.SetCurrentDebugLocation(PostIncV->getDebugLoc());
2787 IVOper = Builder.CreatePointerCast(IVSrc, PostIncTy, "lsr.chain");
2788 }
2789 Phi->replaceUsesOfWith(PostIncV, IVOper);
2790 DeadInsts.push_back(PostIncV);
2791 }
2792 }
Andrew Trick6c7d0ae2012-01-09 19:50:34 +00002793}
2794
Dan Gohman572645c2010-02-12 10:34:29 +00002795void LSRInstance::CollectFixupsAndInitialFormulae() {
2796 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) {
Andrew Trick22d20c22012-01-09 21:18:52 +00002797 Instruction *UserInst = UI->getUser();
2798 // Skip IV users that are part of profitable IV Chains.
2799 User::op_iterator UseI = std::find(UserInst->op_begin(), UserInst->op_end(),
2800 UI->getOperandValToReplace());
2801 assert(UseI != UserInst->op_end() && "cannot find IV operand");
2802 if (IVIncSet.count(UseI))
2803 continue;
2804
Dan Gohman572645c2010-02-12 10:34:29 +00002805 // Record the uses.
2806 LSRFixup &LF = getNewFixup();
Andrew Trick22d20c22012-01-09 21:18:52 +00002807 LF.UserInst = UserInst;
Dan Gohman572645c2010-02-12 10:34:29 +00002808 LF.OperandValToReplace = UI->getOperandValToReplace();
Dan Gohman448db1c2010-04-07 22:27:08 +00002809 LF.PostIncLoops = UI->getPostIncLoops();
Dan Gohman572645c2010-02-12 10:34:29 +00002810
2811 LSRUse::KindType Kind = LSRUse::Basic;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002812 Type *AccessTy = 0;
Dan Gohman572645c2010-02-12 10:34:29 +00002813 if (isAddressUse(LF.UserInst, LF.OperandValToReplace)) {
2814 Kind = LSRUse::Address;
2815 AccessTy = getAccessType(LF.UserInst);
2816 }
2817
Dan Gohmanc0564542010-04-19 21:48:58 +00002818 const SCEV *S = IU.getExpr(*UI);
Dan Gohman572645c2010-02-12 10:34:29 +00002819
2820 // Equality (== and !=) ICmps are special. We can rewrite (i == N) as
2821 // (N - i == 0), and this allows (N - i) to be the expression that we work
2822 // with rather than just N or i, so we can consider the register
2823 // requirements for both N and i at the same time. Limiting this code to
2824 // equality icmps is not a problem because all interesting loops use
2825 // equality icmps, thanks to IndVarSimplify.
2826 if (ICmpInst *CI = dyn_cast<ICmpInst>(LF.UserInst))
2827 if (CI->isEquality()) {
2828 // Swap the operands if needed to put the OperandValToReplace on the
2829 // left, for consistency.
2830 Value *NV = CI->getOperand(1);
2831 if (NV == LF.OperandValToReplace) {
2832 CI->setOperand(1, CI->getOperand(0));
2833 CI->setOperand(0, NV);
Dan Gohmanf182b232010-05-20 19:26:52 +00002834 NV = CI->getOperand(1);
Dan Gohman9da1bf42010-05-20 19:16:03 +00002835 Changed = true;
Dan Gohman572645c2010-02-12 10:34:29 +00002836 }
2837
2838 // x == y --> x - y == 0
2839 const SCEV *N = SE.getSCEV(NV);
Andrew Tricke08c3222012-07-13 23:33:10 +00002840 if (SE.isLoopInvariant(N, L) && isSafeToExpand(N)) {
Dan Gohman673968a2011-05-18 21:02:18 +00002841 // S is normalized, so normalize N before folding it into S
2842 // to keep the result normalized.
2843 N = TransformForPostIncUse(Normalize, N, CI, 0,
2844 LF.PostIncLoops, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +00002845 Kind = LSRUse::ICmpZero;
2846 S = SE.getMinusSCEV(N, S);
2847 }
2848
2849 // -1 and the negations of all interesting strides (except the negation
2850 // of -1) are now also interesting.
2851 for (size_t i = 0, e = Factors.size(); i != e; ++i)
2852 if (Factors[i] != -1)
2853 Factors.insert(-(uint64_t)Factors[i]);
2854 Factors.insert(-1);
2855 }
2856
2857 // Set up the initial formula for this use.
2858 std::pair<size_t, int64_t> P = getUse(S, Kind, AccessTy);
2859 LF.LUIdx = P.first;
2860 LF.Offset = P.second;
2861 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohman448db1c2010-04-07 22:27:08 +00002862 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohmana9db1292010-07-15 20:24:58 +00002863 if (!LU.WidestFixupType ||
2864 SE.getTypeSizeInBits(LU.WidestFixupType) <
2865 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
2866 LU.WidestFixupType = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00002867
2868 // If this is the first use of this LSRUse, give it a formula.
2869 if (LU.Formulae.empty()) {
Dan Gohman454d26d2010-02-22 04:11:59 +00002870 InsertInitialFormula(S, LU, LF.LUIdx);
Dan Gohman572645c2010-02-12 10:34:29 +00002871 CountRegisters(LU.Formulae.back(), LF.LUIdx);
2872 }
2873 }
2874
2875 DEBUG(print_fixups(dbgs()));
2876}
2877
Dan Gohman76c315a2010-05-20 20:52:00 +00002878/// InsertInitialFormula - Insert a formula for the given expression into
2879/// the given use, separating out loop-variant portions from loop-invariant
2880/// and loop-computable portions.
Dan Gohman572645c2010-02-12 10:34:29 +00002881void
Dan Gohman454d26d2010-02-22 04:11:59 +00002882LSRInstance::InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx) {
Dan Gohman572645c2010-02-12 10:34:29 +00002883 Formula F;
Dan Gohmandc0e8fb2010-11-17 21:41:58 +00002884 F.InitialMatch(S, L, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002885 bool Inserted = InsertFormula(LU, LUIdx, F);
2886 assert(Inserted && "Initial formula already exists!"); (void)Inserted;
2887}
2888
Dan Gohman76c315a2010-05-20 20:52:00 +00002889/// InsertSupplementalFormula - Insert a simple single-register formula for
2890/// the given expression into the given use.
Dan Gohman572645c2010-02-12 10:34:29 +00002891void
2892LSRInstance::InsertSupplementalFormula(const SCEV *S,
2893 LSRUse &LU, size_t LUIdx) {
2894 Formula F;
2895 F.BaseRegs.push_back(S);
2896 F.AM.HasBaseReg = true;
2897 bool Inserted = InsertFormula(LU, LUIdx, F);
2898 assert(Inserted && "Supplemental formula already exists!"); (void)Inserted;
2899}
2900
2901/// CountRegisters - Note which registers are used by the given formula,
2902/// updating RegUses.
2903void LSRInstance::CountRegisters(const Formula &F, size_t LUIdx) {
2904 if (F.ScaledReg)
2905 RegUses.CountRegister(F.ScaledReg, LUIdx);
2906 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
2907 E = F.BaseRegs.end(); I != E; ++I)
2908 RegUses.CountRegister(*I, LUIdx);
2909}
2910
2911/// InsertFormula - If the given formula has not yet been inserted, add it to
2912/// the list, and return true. Return false otherwise.
2913bool LSRInstance::InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F) {
Dan Gohman454d26d2010-02-22 04:11:59 +00002914 if (!LU.InsertFormula(F))
Dan Gohman572645c2010-02-12 10:34:29 +00002915 return false;
2916
2917 CountRegisters(F, LUIdx);
2918 return true;
2919}
2920
2921/// CollectLoopInvariantFixupsAndFormulae - Check for other uses of
2922/// loop-invariant values which we're tracking. These other uses will pin these
2923/// values in registers, making them less profitable for elimination.
2924/// TODO: This currently misses non-constant addrec step registers.
2925/// TODO: Should this give more weight to users inside the loop?
2926void
2927LSRInstance::CollectLoopInvariantFixupsAndFormulae() {
2928 SmallVector<const SCEV *, 8> Worklist(RegUses.begin(), RegUses.end());
2929 SmallPtrSet<const SCEV *, 8> Inserted;
2930
2931 while (!Worklist.empty()) {
2932 const SCEV *S = Worklist.pop_back_val();
2933
2934 if (const SCEVNAryExpr *N = dyn_cast<SCEVNAryExpr>(S))
Dan Gohman403a8cd2010-06-21 19:47:52 +00002935 Worklist.append(N->op_begin(), N->op_end());
Dan Gohman572645c2010-02-12 10:34:29 +00002936 else if (const SCEVCastExpr *C = dyn_cast<SCEVCastExpr>(S))
2937 Worklist.push_back(C->getOperand());
2938 else if (const SCEVUDivExpr *D = dyn_cast<SCEVUDivExpr>(S)) {
2939 Worklist.push_back(D->getLHS());
2940 Worklist.push_back(D->getRHS());
2941 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
2942 if (!Inserted.insert(U)) continue;
2943 const Value *V = U->getValue();
Dan Gohmana15ec5d2010-06-04 23:16:05 +00002944 if (const Instruction *Inst = dyn_cast<Instruction>(V)) {
2945 // Look for instructions defined outside the loop.
Dan Gohman572645c2010-02-12 10:34:29 +00002946 if (L->contains(Inst)) continue;
Dan Gohmana15ec5d2010-06-04 23:16:05 +00002947 } else if (isa<UndefValue>(V))
2948 // Undef doesn't have a live range, so it doesn't matter.
2949 continue;
Gabor Greif60ad7812010-03-25 23:06:16 +00002950 for (Value::const_use_iterator UI = V->use_begin(), UE = V->use_end();
Dan Gohman572645c2010-02-12 10:34:29 +00002951 UI != UE; ++UI) {
2952 const Instruction *UserInst = dyn_cast<Instruction>(*UI);
2953 // Ignore non-instructions.
2954 if (!UserInst)
Dan Gohman7979b722010-01-22 00:46:49 +00002955 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002956 // Ignore instructions in other functions (as can happen with
2957 // Constants).
2958 if (UserInst->getParent()->getParent() != L->getHeader()->getParent())
Dan Gohman7979b722010-01-22 00:46:49 +00002959 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002960 // Ignore instructions not dominated by the loop.
2961 const BasicBlock *UseBB = !isa<PHINode>(UserInst) ?
2962 UserInst->getParent() :
2963 cast<PHINode>(UserInst)->getIncomingBlock(
2964 PHINode::getIncomingValueNumForOperand(UI.getOperandNo()));
2965 if (!DT.dominates(L->getHeader(), UseBB))
2966 continue;
2967 // Ignore uses which are part of other SCEV expressions, to avoid
2968 // analyzing them multiple times.
Dan Gohman4a2a6832010-04-09 19:12:34 +00002969 if (SE.isSCEVable(UserInst->getType())) {
2970 const SCEV *UserS = SE.getSCEV(const_cast<Instruction *>(UserInst));
2971 // If the user is a no-op, look through to its uses.
2972 if (!isa<SCEVUnknown>(UserS))
2973 continue;
2974 if (UserS == U) {
2975 Worklist.push_back(
2976 SE.getUnknown(const_cast<Instruction *>(UserInst)));
2977 continue;
2978 }
2979 }
Dan Gohman572645c2010-02-12 10:34:29 +00002980 // Ignore icmp instructions which are already being analyzed.
2981 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UserInst)) {
2982 unsigned OtherIdx = !UI.getOperandNo();
2983 Value *OtherOp = const_cast<Value *>(ICI->getOperand(OtherIdx));
Dan Gohman17ead4f2010-11-17 21:23:15 +00002984 if (SE.hasComputableLoopEvolution(SE.getSCEV(OtherOp), L))
Dan Gohman572645c2010-02-12 10:34:29 +00002985 continue;
2986 }
2987
2988 LSRFixup &LF = getNewFixup();
2989 LF.UserInst = const_cast<Instruction *>(UserInst);
2990 LF.OperandValToReplace = UI.getUse();
2991 std::pair<size_t, int64_t> P = getUse(S, LSRUse::Basic, 0);
2992 LF.LUIdx = P.first;
2993 LF.Offset = P.second;
2994 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohman448db1c2010-04-07 22:27:08 +00002995 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohmana9db1292010-07-15 20:24:58 +00002996 if (!LU.WidestFixupType ||
2997 SE.getTypeSizeInBits(LU.WidestFixupType) <
2998 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
2999 LU.WidestFixupType = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00003000 InsertSupplementalFormula(U, LU, LF.LUIdx);
3001 CountRegisters(LU.Formulae.back(), Uses.size() - 1);
3002 break;
3003 }
3004 }
3005 }
3006}
3007
3008/// CollectSubexprs - Split S into subexpressions which can be pulled out into
3009/// separate registers. If C is non-null, multiply each subexpression by C.
Andrew Trick06a27cc2012-07-17 05:30:37 +00003010///
3011/// Return remainder expression after factoring the subexpressions captured by
3012/// Ops. If Ops is complete, return NULL.
3013static const SCEV *CollectSubexprs(const SCEV *S, const SCEVConstant *C,
3014 SmallVectorImpl<const SCEV *> &Ops,
3015 const Loop *L,
3016 ScalarEvolution &SE,
3017 unsigned Depth = 0) {
3018 // Arbitrarily cap recursion to protect compile time.
3019 if (Depth >= 3)
3020 return S;
3021
Dan Gohman572645c2010-02-12 10:34:29 +00003022 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
3023 // Break out add operands.
3024 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
Andrew Trick06a27cc2012-07-17 05:30:37 +00003025 I != E; ++I) {
3026 const SCEV *Remainder = CollectSubexprs(*I, C, Ops, L, SE, Depth+1);
3027 if (Remainder)
3028 Ops.push_back(C ? SE.getMulExpr(C, Remainder) : Remainder);
3029 }
3030 return NULL;
Dan Gohman572645c2010-02-12 10:34:29 +00003031 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
3032 // Split a non-zero base out of an addrec.
Andrew Trick06a27cc2012-07-17 05:30:37 +00003033 if (AR->getStart()->isZero())
3034 return S;
3035
3036 const SCEV *Remainder = CollectSubexprs(AR->getStart(),
3037 C, Ops, L, SE, Depth+1);
3038 // Split the non-zero AddRec unless it is part of a nested recurrence that
3039 // does not pertain to this loop.
3040 if (Remainder && (AR->getLoop() == L || !isa<SCEVAddRecExpr>(Remainder))) {
3041 Ops.push_back(C ? SE.getMulExpr(C, Remainder) : Remainder);
3042 Remainder = NULL;
3043 }
3044 if (Remainder != AR->getStart()) {
3045 if (!Remainder)
3046 Remainder = SE.getConstant(AR->getType(), 0);
3047 return SE.getAddRecExpr(Remainder,
3048 AR->getStepRecurrence(SE),
3049 AR->getLoop(),
3050 //FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
3051 SCEV::FlagAnyWrap);
Dan Gohman572645c2010-02-12 10:34:29 +00003052 }
3053 } else if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
3054 // Break (C * (a + b + c)) into C*a + C*b + C*c.
Andrew Trick06a27cc2012-07-17 05:30:37 +00003055 if (Mul->getNumOperands() != 2)
3056 return S;
3057 if (const SCEVConstant *Op0 =
3058 dyn_cast<SCEVConstant>(Mul->getOperand(0))) {
3059 C = C ? cast<SCEVConstant>(SE.getMulExpr(C, Op0)) : Op0;
3060 const SCEV *Remainder =
3061 CollectSubexprs(Mul->getOperand(1), C, Ops, L, SE, Depth+1);
3062 if (Remainder)
3063 Ops.push_back(SE.getMulExpr(C, Remainder));
3064 return NULL;
3065 }
Dan Gohman572645c2010-02-12 10:34:29 +00003066 }
Andrew Trick06a27cc2012-07-17 05:30:37 +00003067 return S;
Dan Gohman572645c2010-02-12 10:34:29 +00003068}
3069
3070/// GenerateReassociations - Split out subexpressions from adds and the bases of
3071/// addrecs.
3072void LSRInstance::GenerateReassociations(LSRUse &LU, unsigned LUIdx,
3073 Formula Base,
3074 unsigned Depth) {
3075 // Arbitrarily cap recursion to protect compile time.
3076 if (Depth >= 3) return;
3077
3078 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
3079 const SCEV *BaseReg = Base.BaseRegs[i];
3080
Dan Gohman3e22b7c2010-08-16 15:50:00 +00003081 SmallVector<const SCEV *, 8> AddOps;
Andrew Trick06a27cc2012-07-17 05:30:37 +00003082 const SCEV *Remainder = CollectSubexprs(BaseReg, 0, AddOps, L, SE);
3083 if (Remainder)
3084 AddOps.push_back(Remainder);
Dan Gohman3e3f15b2010-06-25 22:32:18 +00003085
Dan Gohman572645c2010-02-12 10:34:29 +00003086 if (AddOps.size() == 1) continue;
3087
3088 for (SmallVectorImpl<const SCEV *>::const_iterator J = AddOps.begin(),
3089 JE = AddOps.end(); J != JE; ++J) {
Dan Gohman3e22b7c2010-08-16 15:50:00 +00003090
3091 // Loop-variant "unknown" values are uninteresting; we won't be able to
3092 // do anything meaningful with them.
Dan Gohman17ead4f2010-11-17 21:23:15 +00003093 if (isa<SCEVUnknown>(*J) && !SE.isLoopInvariant(*J, L))
Dan Gohman3e22b7c2010-08-16 15:50:00 +00003094 continue;
3095
Dan Gohman572645c2010-02-12 10:34:29 +00003096 // Don't pull a constant into a register if the constant could be folded
3097 // into an immediate field.
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00003098 if (isAlwaysFoldable(TTI, SE, LU.MinOffset, LU.MaxOffset, LU.Kind,
3099 LU.AccessTy, *J, Base.getNumRegs() > 1))
Dan Gohman572645c2010-02-12 10:34:29 +00003100 continue;
3101
3102 // Collect all operands except *J.
Dan Gohman403a8cd2010-06-21 19:47:52 +00003103 SmallVector<const SCEV *, 8> InnerAddOps
Dan Gohman4eaee282010-08-04 17:43:57 +00003104 (((const SmallVector<const SCEV *, 8> &)AddOps).begin(), J);
Dan Gohman403a8cd2010-06-21 19:47:52 +00003105 InnerAddOps.append
Oscar Fuentesee56c422010-08-02 06:00:15 +00003106 (llvm::next(J), ((const SmallVector<const SCEV *, 8> &)AddOps).end());
Dan Gohman572645c2010-02-12 10:34:29 +00003107
3108 // Don't leave just a constant behind in a register if the constant could
3109 // be folded into an immediate field.
3110 if (InnerAddOps.size() == 1 &&
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00003111 isAlwaysFoldable(TTI, SE, LU.MinOffset, LU.MaxOffset, LU.Kind,
3112 LU.AccessTy, InnerAddOps[0], Base.getNumRegs() > 1))
Dan Gohman572645c2010-02-12 10:34:29 +00003113 continue;
3114
Dan Gohmanfafb8902010-04-23 01:55:05 +00003115 const SCEV *InnerSum = SE.getAddExpr(InnerAddOps);
3116 if (InnerSum->isZero())
3117 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00003118 Formula F = Base;
Dan Gohmancca82142011-05-03 00:46:49 +00003119
3120 // Add the remaining pieces of the add back into the new formula.
3121 const SCEVConstant *InnerSumSC = dyn_cast<SCEVConstant>(InnerSum);
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00003122 if (InnerSumSC &&
Dan Gohmancca82142011-05-03 00:46:49 +00003123 SE.getTypeSizeInBits(InnerSumSC->getType()) <= 64 &&
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00003124 TTI.isLegalAddImmediate((uint64_t)F.UnfoldedOffset +
3125 InnerSumSC->getValue()->getZExtValue())) {
Dan Gohmancca82142011-05-03 00:46:49 +00003126 F.UnfoldedOffset = (uint64_t)F.UnfoldedOffset +
3127 InnerSumSC->getValue()->getZExtValue();
3128 F.BaseRegs.erase(F.BaseRegs.begin() + i);
3129 } else
3130 F.BaseRegs[i] = InnerSum;
3131
3132 // Add J as its own register, or an unfolded immediate.
3133 const SCEVConstant *SC = dyn_cast<SCEVConstant>(*J);
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00003134 if (SC && SE.getTypeSizeInBits(SC->getType()) <= 64 &&
3135 TTI.isLegalAddImmediate((uint64_t)F.UnfoldedOffset +
3136 SC->getValue()->getZExtValue()))
Dan Gohmancca82142011-05-03 00:46:49 +00003137 F.UnfoldedOffset = (uint64_t)F.UnfoldedOffset +
3138 SC->getValue()->getZExtValue();
3139 else
3140 F.BaseRegs.push_back(*J);
3141
Dan Gohman572645c2010-02-12 10:34:29 +00003142 if (InsertFormula(LU, LUIdx, F))
3143 // If that formula hadn't been seen before, recurse to find more like
3144 // it.
3145 GenerateReassociations(LU, LUIdx, LU.Formulae.back(), Depth+1);
3146 }
3147 }
3148}
3149
3150/// GenerateCombinations - Generate a formula consisting of all of the
3151/// loop-dominating registers added into a single register.
3152void LSRInstance::GenerateCombinations(LSRUse &LU, unsigned LUIdx,
Dan Gohman441a3892010-02-14 18:51:39 +00003153 Formula Base) {
Dan Gohman3f46a3a2010-03-01 17:49:51 +00003154 // This method is only interesting on a plurality of registers.
Dan Gohman572645c2010-02-12 10:34:29 +00003155 if (Base.BaseRegs.size() <= 1) return;
3156
3157 Formula F = Base;
3158 F.BaseRegs.clear();
3159 SmallVector<const SCEV *, 4> Ops;
3160 for (SmallVectorImpl<const SCEV *>::const_iterator
3161 I = Base.BaseRegs.begin(), E = Base.BaseRegs.end(); I != E; ++I) {
3162 const SCEV *BaseReg = *I;
Dan Gohmandc0e8fb2010-11-17 21:41:58 +00003163 if (SE.properlyDominates(BaseReg, L->getHeader()) &&
Dan Gohman17ead4f2010-11-17 21:23:15 +00003164 !SE.hasComputableLoopEvolution(BaseReg, L))
Dan Gohman572645c2010-02-12 10:34:29 +00003165 Ops.push_back(BaseReg);
3166 else
3167 F.BaseRegs.push_back(BaseReg);
3168 }
3169 if (Ops.size() > 1) {
Dan Gohmance947362010-02-14 18:50:49 +00003170 const SCEV *Sum = SE.getAddExpr(Ops);
3171 // TODO: If Sum is zero, it probably means ScalarEvolution missed an
3172 // opportunity to fold something. For now, just ignore such cases
Dan Gohman3f46a3a2010-03-01 17:49:51 +00003173 // rather than proceed with zero in a register.
Dan Gohmance947362010-02-14 18:50:49 +00003174 if (!Sum->isZero()) {
3175 F.BaseRegs.push_back(Sum);
3176 (void)InsertFormula(LU, LUIdx, F);
3177 }
Dan Gohman572645c2010-02-12 10:34:29 +00003178 }
3179}
3180
3181/// GenerateSymbolicOffsets - Generate reuse formulae using symbolic offsets.
3182void LSRInstance::GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx,
3183 Formula Base) {
3184 // We can't add a symbolic offset if the address already contains one.
3185 if (Base.AM.BaseGV) return;
3186
3187 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
3188 const SCEV *G = Base.BaseRegs[i];
3189 GlobalValue *GV = ExtractSymbol(G, SE);
3190 if (G->isZero() || !GV)
3191 continue;
3192 Formula F = Base;
3193 F.AM.BaseGV = GV;
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00003194 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F))
Dan Gohman572645c2010-02-12 10:34:29 +00003195 continue;
3196 F.BaseRegs[i] = G;
3197 (void)InsertFormula(LU, LUIdx, F);
3198 }
3199}
3200
3201/// GenerateConstantOffsets - Generate reuse formulae using symbolic offsets.
3202void LSRInstance::GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx,
3203 Formula Base) {
3204 // TODO: For now, just add the min and max offset, because it usually isn't
3205 // worthwhile looking at everything inbetween.
Dan Gohmanc88c1a42010-07-15 15:14:45 +00003206 SmallVector<int64_t, 2> Worklist;
Dan Gohman572645c2010-02-12 10:34:29 +00003207 Worklist.push_back(LU.MinOffset);
3208 if (LU.MaxOffset != LU.MinOffset)
3209 Worklist.push_back(LU.MaxOffset);
3210
3211 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
3212 const SCEV *G = Base.BaseRegs[i];
3213
3214 for (SmallVectorImpl<int64_t>::const_iterator I = Worklist.begin(),
3215 E = Worklist.end(); I != E; ++I) {
3216 Formula F = Base;
3217 F.AM.BaseOffs = (uint64_t)Base.AM.BaseOffs - *I;
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00003218 if (isLegalUse(TTI, LU.MinOffset - *I, LU.MaxOffset - *I, LU.Kind,
3219 LU.AccessTy, F)) {
Dan Gohmanc88c1a42010-07-15 15:14:45 +00003220 // Add the offset to the base register.
Dan Gohman4065f602010-08-16 15:39:27 +00003221 const SCEV *NewG = SE.getAddExpr(SE.getConstant(G->getType(), *I), G);
Dan Gohmanc88c1a42010-07-15 15:14:45 +00003222 // If it cancelled out, drop the base register, otherwise update it.
3223 if (NewG->isZero()) {
3224 std::swap(F.BaseRegs[i], F.BaseRegs.back());
3225 F.BaseRegs.pop_back();
3226 } else
3227 F.BaseRegs[i] = NewG;
Dan Gohman572645c2010-02-12 10:34:29 +00003228
3229 (void)InsertFormula(LU, LUIdx, F);
3230 }
3231 }
3232
3233 int64_t Imm = ExtractImmediate(G, SE);
3234 if (G->isZero() || Imm == 0)
3235 continue;
3236 Formula F = Base;
3237 F.AM.BaseOffs = (uint64_t)F.AM.BaseOffs + Imm;
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00003238 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F))
Dan Gohman572645c2010-02-12 10:34:29 +00003239 continue;
3240 F.BaseRegs[i] = G;
3241 (void)InsertFormula(LU, LUIdx, F);
3242 }
3243}
3244
3245/// GenerateICmpZeroScales - For ICmpZero, check to see if we can scale up
3246/// the comparison. For example, x == y -> x*c == y*c.
3247void LSRInstance::GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx,
3248 Formula Base) {
3249 if (LU.Kind != LSRUse::ICmpZero) return;
3250
3251 // Determine the integer type for the base formula.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003252 Type *IntTy = Base.getType();
Dan Gohman572645c2010-02-12 10:34:29 +00003253 if (!IntTy) return;
3254 if (SE.getTypeSizeInBits(IntTy) > 64) return;
3255
3256 // Don't do this if there is more than one offset.
3257 if (LU.MinOffset != LU.MaxOffset) return;
3258
3259 assert(!Base.AM.BaseGV && "ICmpZero use is not legal!");
3260
3261 // Check each interesting stride.
3262 for (SmallSetVector<int64_t, 8>::const_iterator
3263 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
3264 int64_t Factor = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00003265
3266 // Check that the multiplication doesn't overflow.
Dan Gohman2ea09e02010-06-24 16:57:52 +00003267 if (Base.AM.BaseOffs == INT64_MIN && Factor == -1)
Dan Gohman968cb932010-02-17 00:41:53 +00003268 continue;
Dan Gohman2ea09e02010-06-24 16:57:52 +00003269 int64_t NewBaseOffs = (uint64_t)Base.AM.BaseOffs * Factor;
3270 if (NewBaseOffs / Factor != Base.AM.BaseOffs)
Dan Gohman572645c2010-02-12 10:34:29 +00003271 continue;
3272
3273 // Check that multiplying with the use offset doesn't overflow.
3274 int64_t Offset = LU.MinOffset;
Dan Gohman968cb932010-02-17 00:41:53 +00003275 if (Offset == INT64_MIN && Factor == -1)
3276 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00003277 Offset = (uint64_t)Offset * Factor;
Dan Gohman378c0b32010-02-17 00:42:19 +00003278 if (Offset / Factor != LU.MinOffset)
Dan Gohman572645c2010-02-12 10:34:29 +00003279 continue;
3280
Dan Gohman2ea09e02010-06-24 16:57:52 +00003281 Formula F = Base;
3282 F.AM.BaseOffs = NewBaseOffs;
3283
Dan Gohman572645c2010-02-12 10:34:29 +00003284 // Check that this scale is legal.
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00003285 if (!isLegalUse(TTI, Offset, Offset, LU.Kind, LU.AccessTy, F))
Dan Gohman572645c2010-02-12 10:34:29 +00003286 continue;
3287
3288 // Compensate for the use having MinOffset built into it.
3289 F.AM.BaseOffs = (uint64_t)F.AM.BaseOffs + Offset - LU.MinOffset;
3290
Dan Gohmandeff6212010-05-03 22:09:21 +00003291 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman572645c2010-02-12 10:34:29 +00003292
3293 // Check that multiplying with each base register doesn't overflow.
3294 for (size_t i = 0, e = F.BaseRegs.size(); i != e; ++i) {
3295 F.BaseRegs[i] = SE.getMulExpr(F.BaseRegs[i], FactorS);
Dan Gohmanf09b7122010-02-19 19:35:48 +00003296 if (getExactSDiv(F.BaseRegs[i], FactorS, SE) != Base.BaseRegs[i])
Dan Gohman572645c2010-02-12 10:34:29 +00003297 goto next;
3298 }
3299
3300 // Check that multiplying with the scaled register doesn't overflow.
3301 if (F.ScaledReg) {
3302 F.ScaledReg = SE.getMulExpr(F.ScaledReg, FactorS);
Dan Gohmanf09b7122010-02-19 19:35:48 +00003303 if (getExactSDiv(F.ScaledReg, FactorS, SE) != Base.ScaledReg)
Dan Gohman572645c2010-02-12 10:34:29 +00003304 continue;
3305 }
3306
Dan Gohmancca82142011-05-03 00:46:49 +00003307 // Check that multiplying with the unfolded offset doesn't overflow.
3308 if (F.UnfoldedOffset != 0) {
Dan Gohman1b58d452011-05-23 21:07:39 +00003309 if (F.UnfoldedOffset == INT64_MIN && Factor == -1)
3310 continue;
Dan Gohmancca82142011-05-03 00:46:49 +00003311 F.UnfoldedOffset = (uint64_t)F.UnfoldedOffset * Factor;
3312 if (F.UnfoldedOffset / Factor != Base.UnfoldedOffset)
3313 continue;
3314 }
3315
Dan Gohman572645c2010-02-12 10:34:29 +00003316 // If we make it here and it's legal, add it.
3317 (void)InsertFormula(LU, LUIdx, F);
3318 next:;
3319 }
3320}
3321
3322/// GenerateScales - Generate stride factor reuse formulae by making use of
3323/// scaled-offset address modes, for example.
Dan Gohmanea507f52010-05-20 19:44:23 +00003324void LSRInstance::GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman572645c2010-02-12 10:34:29 +00003325 // Determine the integer type for the base formula.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003326 Type *IntTy = Base.getType();
Dan Gohman572645c2010-02-12 10:34:29 +00003327 if (!IntTy) return;
3328
3329 // If this Formula already has a scaled register, we can't add another one.
3330 if (Base.AM.Scale != 0) return;
3331
3332 // Check each interesting stride.
3333 for (SmallSetVector<int64_t, 8>::const_iterator
3334 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
3335 int64_t Factor = *I;
3336
3337 Base.AM.Scale = Factor;
3338 Base.AM.HasBaseReg = Base.BaseRegs.size() > 1;
3339 // Check whether this scale is going to be legal.
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00003340 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
3341 Base)) {
Dan Gohman572645c2010-02-12 10:34:29 +00003342 // As a special-case, handle special out-of-loop Basic users specially.
3343 // TODO: Reconsider this special case.
3344 if (LU.Kind == LSRUse::Basic &&
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00003345 isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LSRUse::Special,
3346 LU.AccessTy, Base) &&
Dan Gohman572645c2010-02-12 10:34:29 +00003347 LU.AllFixupsOutsideLoop)
3348 LU.Kind = LSRUse::Special;
3349 else
3350 continue;
3351 }
3352 // For an ICmpZero, negating a solitary base register won't lead to
3353 // new solutions.
3354 if (LU.Kind == LSRUse::ICmpZero &&
3355 !Base.AM.HasBaseReg && Base.AM.BaseOffs == 0 && !Base.AM.BaseGV)
3356 continue;
3357 // For each addrec base reg, apply the scale, if possible.
3358 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3359 if (const SCEVAddRecExpr *AR =
3360 dyn_cast<SCEVAddRecExpr>(Base.BaseRegs[i])) {
Dan Gohmandeff6212010-05-03 22:09:21 +00003361 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman572645c2010-02-12 10:34:29 +00003362 if (FactorS->isZero())
3363 continue;
3364 // Divide out the factor, ignoring high bits, since we'll be
3365 // scaling the value back up in the end.
Dan Gohmanf09b7122010-02-19 19:35:48 +00003366 if (const SCEV *Quotient = getExactSDiv(AR, FactorS, SE, true)) {
Dan Gohman572645c2010-02-12 10:34:29 +00003367 // TODO: This could be optimized to avoid all the copying.
3368 Formula F = Base;
3369 F.ScaledReg = Quotient;
Dan Gohman5ce6d052010-05-20 15:17:54 +00003370 F.DeleteBaseReg(F.BaseRegs[i]);
Dan Gohman572645c2010-02-12 10:34:29 +00003371 (void)InsertFormula(LU, LUIdx, F);
3372 }
3373 }
3374 }
3375}
3376
3377/// GenerateTruncates - Generate reuse formulae from different IV types.
Dan Gohmanea507f52010-05-20 19:44:23 +00003378void LSRInstance::GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman572645c2010-02-12 10:34:29 +00003379 // Don't bother truncating symbolic values.
3380 if (Base.AM.BaseGV) return;
3381
3382 // Determine the integer type for the base formula.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003383 Type *DstTy = Base.getType();
Dan Gohman572645c2010-02-12 10:34:29 +00003384 if (!DstTy) return;
3385 DstTy = SE.getEffectiveSCEVType(DstTy);
3386
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003387 for (SmallSetVector<Type *, 4>::const_iterator
Dan Gohman572645c2010-02-12 10:34:29 +00003388 I = Types.begin(), E = Types.end(); I != E; ++I) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003389 Type *SrcTy = *I;
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00003390 if (SrcTy != DstTy && TTI.isTruncateFree(SrcTy, DstTy)) {
Dan Gohman572645c2010-02-12 10:34:29 +00003391 Formula F = Base;
3392
3393 if (F.ScaledReg) F.ScaledReg = SE.getAnyExtendExpr(F.ScaledReg, *I);
3394 for (SmallVectorImpl<const SCEV *>::iterator J = F.BaseRegs.begin(),
3395 JE = F.BaseRegs.end(); J != JE; ++J)
3396 *J = SE.getAnyExtendExpr(*J, SrcTy);
3397
3398 // TODO: This assumes we've done basic processing on all uses and
3399 // have an idea what the register usage is.
3400 if (!F.hasRegsUsedByUsesOtherThan(LUIdx, RegUses))
3401 continue;
3402
3403 (void)InsertFormula(LU, LUIdx, F);
3404 }
3405 }
3406}
3407
3408namespace {
3409
Dan Gohman6020d852010-02-14 18:51:20 +00003410/// WorkItem - Helper class for GenerateCrossUseConstantOffsets. It's used to
Dan Gohman572645c2010-02-12 10:34:29 +00003411/// defer modifications so that the search phase doesn't have to worry about
3412/// the data structures moving underneath it.
3413struct WorkItem {
3414 size_t LUIdx;
3415 int64_t Imm;
3416 const SCEV *OrigReg;
3417
3418 WorkItem(size_t LI, int64_t I, const SCEV *R)
3419 : LUIdx(LI), Imm(I), OrigReg(R) {}
3420
3421 void print(raw_ostream &OS) const;
3422 void dump() const;
3423};
3424
3425}
3426
3427void WorkItem::print(raw_ostream &OS) const {
3428 OS << "in formulae referencing " << *OrigReg << " in use " << LUIdx
3429 << " , add offset " << Imm;
3430}
3431
Manman Ren286c4dc2012-09-12 05:06:18 +00003432#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman572645c2010-02-12 10:34:29 +00003433void WorkItem::dump() const {
3434 print(errs()); errs() << '\n';
3435}
Manman Rencc77eec2012-09-06 19:55:56 +00003436#endif
Dan Gohman572645c2010-02-12 10:34:29 +00003437
3438/// GenerateCrossUseConstantOffsets - Look for registers which are a constant
3439/// distance apart and try to form reuse opportunities between them.
3440void LSRInstance::GenerateCrossUseConstantOffsets() {
3441 // Group the registers by their value without any added constant offset.
3442 typedef std::map<int64_t, const SCEV *> ImmMapTy;
3443 typedef DenseMap<const SCEV *, ImmMapTy> RegMapTy;
3444 RegMapTy Map;
3445 DenseMap<const SCEV *, SmallBitVector> UsedByIndicesMap;
3446 SmallVector<const SCEV *, 8> Sequence;
3447 for (RegUseTracker::const_iterator I = RegUses.begin(), E = RegUses.end();
3448 I != E; ++I) {
3449 const SCEV *Reg = *I;
3450 int64_t Imm = ExtractImmediate(Reg, SE);
3451 std::pair<RegMapTy::iterator, bool> Pair =
3452 Map.insert(std::make_pair(Reg, ImmMapTy()));
3453 if (Pair.second)
3454 Sequence.push_back(Reg);
3455 Pair.first->second.insert(std::make_pair(Imm, *I));
3456 UsedByIndicesMap[Reg] |= RegUses.getUsedByIndices(*I);
3457 }
3458
3459 // Now examine each set of registers with the same base value. Build up
3460 // a list of work to do and do the work in a separate step so that we're
3461 // not adding formulae and register counts while we're searching.
Dan Gohman191bd642010-09-01 01:45:53 +00003462 SmallVector<WorkItem, 32> WorkItems;
3463 SmallSet<std::pair<size_t, int64_t>, 32> UniqueItems;
Dan Gohman572645c2010-02-12 10:34:29 +00003464 for (SmallVectorImpl<const SCEV *>::const_iterator I = Sequence.begin(),
3465 E = Sequence.end(); I != E; ++I) {
3466 const SCEV *Reg = *I;
3467 const ImmMapTy &Imms = Map.find(Reg)->second;
3468
Dan Gohmancd045c02010-02-12 19:20:37 +00003469 // It's not worthwhile looking for reuse if there's only one offset.
3470 if (Imms.size() == 1)
3471 continue;
3472
Dan Gohman572645c2010-02-12 10:34:29 +00003473 DEBUG(dbgs() << "Generating cross-use offsets for " << *Reg << ':';
3474 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
3475 J != JE; ++J)
3476 dbgs() << ' ' << J->first;
3477 dbgs() << '\n');
3478
3479 // Examine each offset.
3480 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
3481 J != JE; ++J) {
3482 const SCEV *OrigReg = J->second;
3483
3484 int64_t JImm = J->first;
3485 const SmallBitVector &UsedByIndices = RegUses.getUsedByIndices(OrigReg);
3486
3487 if (!isa<SCEVConstant>(OrigReg) &&
3488 UsedByIndicesMap[Reg].count() == 1) {
3489 DEBUG(dbgs() << "Skipping cross-use reuse for " << *OrigReg << '\n');
3490 continue;
3491 }
3492
3493 // Conservatively examine offsets between this orig reg a few selected
3494 // other orig regs.
3495 ImmMapTy::const_iterator OtherImms[] = {
3496 Imms.begin(), prior(Imms.end()),
Dan Gohmancca82142011-05-03 00:46:49 +00003497 Imms.lower_bound((Imms.begin()->first + prior(Imms.end())->first) / 2)
Dan Gohman572645c2010-02-12 10:34:29 +00003498 };
3499 for (size_t i = 0, e = array_lengthof(OtherImms); i != e; ++i) {
3500 ImmMapTy::const_iterator M = OtherImms[i];
Dan Gohmancd045c02010-02-12 19:20:37 +00003501 if (M == J || M == JE) continue;
Dan Gohman572645c2010-02-12 10:34:29 +00003502
3503 // Compute the difference between the two.
3504 int64_t Imm = (uint64_t)JImm - M->first;
3505 for (int LUIdx = UsedByIndices.find_first(); LUIdx != -1;
Dan Gohman191bd642010-09-01 01:45:53 +00003506 LUIdx = UsedByIndices.find_next(LUIdx))
Dan Gohman572645c2010-02-12 10:34:29 +00003507 // Make a memo of this use, offset, and register tuple.
Dan Gohman191bd642010-09-01 01:45:53 +00003508 if (UniqueItems.insert(std::make_pair(LUIdx, Imm)))
3509 WorkItems.push_back(WorkItem(LUIdx, Imm, OrigReg));
Evan Cheng586f69a2009-11-12 07:35:05 +00003510 }
3511 }
3512 }
3513
Dan Gohman572645c2010-02-12 10:34:29 +00003514 Map.clear();
3515 Sequence.clear();
3516 UsedByIndicesMap.clear();
Dan Gohman191bd642010-09-01 01:45:53 +00003517 UniqueItems.clear();
Dan Gohman572645c2010-02-12 10:34:29 +00003518
3519 // Now iterate through the worklist and add new formulae.
3520 for (SmallVectorImpl<WorkItem>::const_iterator I = WorkItems.begin(),
3521 E = WorkItems.end(); I != E; ++I) {
3522 const WorkItem &WI = *I;
3523 size_t LUIdx = WI.LUIdx;
3524 LSRUse &LU = Uses[LUIdx];
3525 int64_t Imm = WI.Imm;
3526 const SCEV *OrigReg = WI.OrigReg;
3527
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003528 Type *IntTy = SE.getEffectiveSCEVType(OrigReg->getType());
Dan Gohman572645c2010-02-12 10:34:29 +00003529 const SCEV *NegImmS = SE.getSCEV(ConstantInt::get(IntTy, -(uint64_t)Imm));
3530 unsigned BitWidth = SE.getTypeSizeInBits(IntTy);
3531
Dan Gohman3f46a3a2010-03-01 17:49:51 +00003532 // TODO: Use a more targeted data structure.
Dan Gohman572645c2010-02-12 10:34:29 +00003533 for (size_t L = 0, LE = LU.Formulae.size(); L != LE; ++L) {
Dan Gohman9f383eb2010-05-20 22:25:20 +00003534 const Formula &F = LU.Formulae[L];
Dan Gohman572645c2010-02-12 10:34:29 +00003535 // Use the immediate in the scaled register.
3536 if (F.ScaledReg == OrigReg) {
3537 int64_t Offs = (uint64_t)F.AM.BaseOffs +
3538 Imm * (uint64_t)F.AM.Scale;
3539 // Don't create 50 + reg(-50).
3540 if (F.referencesReg(SE.getSCEV(
3541 ConstantInt::get(IntTy, -(uint64_t)Offs))))
3542 continue;
3543 Formula NewF = F;
3544 NewF.AM.BaseOffs = Offs;
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00003545 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
3546 NewF))
Dan Gohman572645c2010-02-12 10:34:29 +00003547 continue;
3548 NewF.ScaledReg = SE.getAddExpr(NegImmS, NewF.ScaledReg);
3549
3550 // If the new scale is a constant in a register, and adding the constant
3551 // value to the immediate would produce a value closer to zero than the
3552 // immediate itself, then the formula isn't worthwhile.
3553 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewF.ScaledReg))
Chris Lattnerc73b24d2011-07-15 06:08:15 +00003554 if (C->getValue()->isNegative() !=
Dan Gohman572645c2010-02-12 10:34:29 +00003555 (NewF.AM.BaseOffs < 0) &&
3556 (C->getValue()->getValue().abs() * APInt(BitWidth, F.AM.Scale))
Dan Gohmane0567812010-04-08 23:03:40 +00003557 .ule(abs64(NewF.AM.BaseOffs)))
Dan Gohman572645c2010-02-12 10:34:29 +00003558 continue;
3559
3560 // OK, looks good.
3561 (void)InsertFormula(LU, LUIdx, NewF);
3562 } else {
3563 // Use the immediate in a base register.
3564 for (size_t N = 0, NE = F.BaseRegs.size(); N != NE; ++N) {
3565 const SCEV *BaseReg = F.BaseRegs[N];
3566 if (BaseReg != OrigReg)
3567 continue;
3568 Formula NewF = F;
3569 NewF.AM.BaseOffs = (uint64_t)NewF.AM.BaseOffs + Imm;
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00003570 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset,
3571 LU.Kind, LU.AccessTy, NewF)) {
3572 if (!TTI.isLegalAddImmediate((uint64_t)NewF.UnfoldedOffset + Imm))
Dan Gohmancca82142011-05-03 00:46:49 +00003573 continue;
3574 NewF = F;
3575 NewF.UnfoldedOffset = (uint64_t)NewF.UnfoldedOffset + Imm;
3576 }
Dan Gohman572645c2010-02-12 10:34:29 +00003577 NewF.BaseRegs[N] = SE.getAddExpr(NegImmS, BaseReg);
3578
3579 // If the new formula has a constant in a register, and adding the
3580 // constant value to the immediate would produce a value closer to
3581 // zero than the immediate itself, then the formula isn't worthwhile.
3582 for (SmallVectorImpl<const SCEV *>::const_iterator
3583 J = NewF.BaseRegs.begin(), JE = NewF.BaseRegs.end();
3584 J != JE; ++J)
3585 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*J))
Dan Gohman360026f2010-05-18 23:48:08 +00003586 if ((C->getValue()->getValue() + NewF.AM.BaseOffs).abs().slt(
3587 abs64(NewF.AM.BaseOffs)) &&
3588 (C->getValue()->getValue() +
3589 NewF.AM.BaseOffs).countTrailingZeros() >=
3590 CountTrailingZeros_64(NewF.AM.BaseOffs))
Dan Gohman572645c2010-02-12 10:34:29 +00003591 goto skip_formula;
3592
3593 // Ok, looks good.
3594 (void)InsertFormula(LU, LUIdx, NewF);
3595 break;
3596 skip_formula:;
3597 }
3598 }
3599 }
3600 }
Dale Johannesenc1acc3f2009-05-11 17:15:42 +00003601}
3602
Dan Gohman572645c2010-02-12 10:34:29 +00003603/// GenerateAllReuseFormulae - Generate formulae for each use.
3604void
3605LSRInstance::GenerateAllReuseFormulae() {
Dan Gohmanc2385a02010-02-16 01:42:53 +00003606 // This is split into multiple loops so that hasRegsUsedByUsesOtherThan
Dan Gohman572645c2010-02-12 10:34:29 +00003607 // queries are more precise.
3608 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3609 LSRUse &LU = Uses[LUIdx];
3610 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3611 GenerateReassociations(LU, LUIdx, LU.Formulae[i]);
3612 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3613 GenerateCombinations(LU, LUIdx, LU.Formulae[i]);
3614 }
3615 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3616 LSRUse &LU = Uses[LUIdx];
3617 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3618 GenerateSymbolicOffsets(LU, LUIdx, LU.Formulae[i]);
3619 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3620 GenerateConstantOffsets(LU, LUIdx, LU.Formulae[i]);
3621 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3622 GenerateICmpZeroScales(LU, LUIdx, LU.Formulae[i]);
3623 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3624 GenerateScales(LU, LUIdx, LU.Formulae[i]);
Dan Gohmanc2385a02010-02-16 01:42:53 +00003625 }
3626 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3627 LSRUse &LU = Uses[LUIdx];
Dan Gohman572645c2010-02-12 10:34:29 +00003628 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3629 GenerateTruncates(LU, LUIdx, LU.Formulae[i]);
3630 }
3631
3632 GenerateCrossUseConstantOffsets();
Dan Gohman3902f9f2010-08-29 15:21:38 +00003633
3634 DEBUG(dbgs() << "\n"
3635 "After generating reuse formulae:\n";
3636 print_uses(dbgs()));
Dan Gohman572645c2010-02-12 10:34:29 +00003637}
3638
Dan Gohmanf63d70f2010-10-07 23:43:09 +00003639/// If there are multiple formulae with the same set of registers used
Dan Gohman572645c2010-02-12 10:34:29 +00003640/// by other uses, pick the best one and delete the others.
3641void LSRInstance::FilterOutUndesirableDedicatedRegisters() {
Dan Gohmanfc7744b2010-10-07 23:52:18 +00003642 DenseSet<const SCEV *> VisitedRegs;
3643 SmallPtrSet<const SCEV *, 16> Regs;
Andrew Trick8a5d7922011-12-06 03:13:31 +00003644 SmallPtrSet<const SCEV *, 16> LoserRegs;
Dan Gohman572645c2010-02-12 10:34:29 +00003645#ifndef NDEBUG
Dan Gohmanc6519f92010-05-20 20:05:31 +00003646 bool ChangedFormulae = false;
Dan Gohman572645c2010-02-12 10:34:29 +00003647#endif
3648
3649 // Collect the best formula for each unique set of shared registers. This
3650 // is reset for each use.
3651 typedef DenseMap<SmallVector<const SCEV *, 2>, size_t, UniquifierDenseMapInfo>
3652 BestFormulaeTy;
3653 BestFormulaeTy BestFormulae;
3654
3655 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3656 LSRUse &LU = Uses[LUIdx];
Dan Gohmanea507f52010-05-20 19:44:23 +00003657 DEBUG(dbgs() << "Filtering for use "; LU.print(dbgs()); dbgs() << '\n');
Dan Gohman572645c2010-02-12 10:34:29 +00003658
Dan Gohmanb2df4332010-05-18 23:42:37 +00003659 bool Any = false;
Dan Gohman572645c2010-02-12 10:34:29 +00003660 for (size_t FIdx = 0, NumForms = LU.Formulae.size();
3661 FIdx != NumForms; ++FIdx) {
3662 Formula &F = LU.Formulae[FIdx];
3663
Andrew Trick8a5d7922011-12-06 03:13:31 +00003664 // Some formulas are instant losers. For example, they may depend on
3665 // nonexistent AddRecs from other loops. These need to be filtered
3666 // immediately, otherwise heuristics could choose them over others leading
3667 // to an unsatisfactory solution. Passing LoserRegs into RateFormula here
3668 // avoids the need to recompute this information across formulae using the
3669 // same bad AddRec. Passing LoserRegs is also essential unless we remove
3670 // the corresponding bad register from the Regs set.
3671 Cost CostF;
3672 Regs.clear();
3673 CostF.RateFormula(F, Regs, VisitedRegs, L, LU.Offsets, SE, DT,
3674 &LoserRegs);
3675 if (CostF.isLoser()) {
3676 // During initial formula generation, undesirable formulae are generated
3677 // by uses within other loops that have some non-trivial address mode or
3678 // use the postinc form of the IV. LSR needs to provide these formulae
3679 // as the basis of rediscovering the desired formula that uses an AddRec
3680 // corresponding to the existing phi. Once all formulae have been
3681 // generated, these initial losers may be pruned.
3682 DEBUG(dbgs() << " Filtering loser "; F.print(dbgs());
3683 dbgs() << "\n");
Dan Gohman572645c2010-02-12 10:34:29 +00003684 }
Andrew Trick8a5d7922011-12-06 03:13:31 +00003685 else {
3686 SmallVector<const SCEV *, 2> Key;
3687 for (SmallVectorImpl<const SCEV *>::const_iterator J = F.BaseRegs.begin(),
3688 JE = F.BaseRegs.end(); J != JE; ++J) {
3689 const SCEV *Reg = *J;
3690 if (RegUses.isRegUsedByUsesOtherThan(Reg, LUIdx))
3691 Key.push_back(Reg);
3692 }
3693 if (F.ScaledReg &&
3694 RegUses.isRegUsedByUsesOtherThan(F.ScaledReg, LUIdx))
3695 Key.push_back(F.ScaledReg);
3696 // Unstable sort by host order ok, because this is only used for
3697 // uniquifying.
3698 std::sort(Key.begin(), Key.end());
Dan Gohman572645c2010-02-12 10:34:29 +00003699
Andrew Trick8a5d7922011-12-06 03:13:31 +00003700 std::pair<BestFormulaeTy::const_iterator, bool> P =
3701 BestFormulae.insert(std::make_pair(Key, FIdx));
3702 if (P.second)
3703 continue;
3704
Dan Gohman572645c2010-02-12 10:34:29 +00003705 Formula &Best = LU.Formulae[P.first->second];
Dan Gohmanfc7744b2010-10-07 23:52:18 +00003706
Dan Gohmanfc7744b2010-10-07 23:52:18 +00003707 Cost CostBest;
Dan Gohmanfc7744b2010-10-07 23:52:18 +00003708 Regs.clear();
Andrew Trick8a5d7922011-12-06 03:13:31 +00003709 CostBest.RateFormula(Best, Regs, VisitedRegs, L, LU.Offsets, SE, DT);
Dan Gohmanfc7744b2010-10-07 23:52:18 +00003710 if (CostF < CostBest)
Dan Gohman572645c2010-02-12 10:34:29 +00003711 std::swap(F, Best);
Dan Gohman6458ff92010-05-18 22:37:37 +00003712 DEBUG(dbgs() << " Filtering out formula "; F.print(dbgs());
Dan Gohman572645c2010-02-12 10:34:29 +00003713 dbgs() << "\n"
Dan Gohman6458ff92010-05-18 22:37:37 +00003714 " in favor of formula "; Best.print(dbgs());
Dan Gohman572645c2010-02-12 10:34:29 +00003715 dbgs() << '\n');
Dan Gohman572645c2010-02-12 10:34:29 +00003716 }
Andrew Trick8a5d7922011-12-06 03:13:31 +00003717#ifndef NDEBUG
3718 ChangedFormulae = true;
3719#endif
3720 LU.DeleteFormula(F);
3721 --FIdx;
3722 --NumForms;
3723 Any = true;
Dan Gohman59dc6032010-05-07 23:36:59 +00003724 }
3725
Dan Gohman57aaa0b2010-05-18 23:55:57 +00003726 // Now that we've filtered out some formulae, recompute the Regs set.
Dan Gohmanb2df4332010-05-18 23:42:37 +00003727 if (Any)
3728 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman59dc6032010-05-07 23:36:59 +00003729
3730 // Reset this to prepare for the next use.
Dan Gohman572645c2010-02-12 10:34:29 +00003731 BestFormulae.clear();
3732 }
3733
Dan Gohmanc6519f92010-05-20 20:05:31 +00003734 DEBUG(if (ChangedFormulae) {
Dan Gohman9214b822010-02-13 02:06:02 +00003735 dbgs() << "\n"
3736 "After filtering out undesirable candidates:\n";
Dan Gohman572645c2010-02-12 10:34:29 +00003737 print_uses(dbgs());
3738 });
3739}
3740
Dan Gohmand079c302010-05-18 22:51:59 +00003741// This is a rough guess that seems to work fairly well.
3742static const size_t ComplexityLimit = UINT16_MAX;
3743
3744/// EstimateSearchSpaceComplexity - Estimate the worst-case number of
3745/// solutions the solver might have to consider. It almost never considers
3746/// this many solutions because it prune the search space, but the pruning
3747/// isn't always sufficient.
3748size_t LSRInstance::EstimateSearchSpaceComplexity() const {
Dan Gohman0d6715a2010-10-07 23:37:58 +00003749 size_t Power = 1;
Dan Gohmand079c302010-05-18 22:51:59 +00003750 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
3751 E = Uses.end(); I != E; ++I) {
3752 size_t FSize = I->Formulae.size();
3753 if (FSize >= ComplexityLimit) {
3754 Power = ComplexityLimit;
3755 break;
3756 }
3757 Power *= FSize;
3758 if (Power >= ComplexityLimit)
3759 break;
3760 }
3761 return Power;
3762}
3763
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003764/// NarrowSearchSpaceByDetectingSupersets - When one formula uses a superset
3765/// of the registers of another formula, it won't help reduce register
3766/// pressure (though it may not necessarily hurt register pressure); remove
3767/// it to simplify the system.
3768void LSRInstance::NarrowSearchSpaceByDetectingSupersets() {
Dan Gohmana2086b32010-05-19 23:43:12 +00003769 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
3770 DEBUG(dbgs() << "The search space is too complex.\n");
3771
3772 DEBUG(dbgs() << "Narrowing the search space by eliminating formulae "
3773 "which use a superset of registers used by other "
3774 "formulae.\n");
3775
3776 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3777 LSRUse &LU = Uses[LUIdx];
3778 bool Any = false;
3779 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
3780 Formula &F = LU.Formulae[i];
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00003781 // Look for a formula with a constant or GV in a register. If the use
3782 // also has a formula with that same value in an immediate field,
3783 // delete the one that uses a register.
Dan Gohmana2086b32010-05-19 23:43:12 +00003784 for (SmallVectorImpl<const SCEV *>::const_iterator
3785 I = F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I) {
3786 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*I)) {
3787 Formula NewF = F;
3788 NewF.AM.BaseOffs += C->getValue()->getSExtValue();
3789 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
3790 (I - F.BaseRegs.begin()));
3791 if (LU.HasFormulaWithSameRegs(NewF)) {
3792 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
3793 LU.DeleteFormula(F);
3794 --i;
3795 --e;
3796 Any = true;
3797 break;
3798 }
3799 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(*I)) {
3800 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue()))
3801 if (!F.AM.BaseGV) {
3802 Formula NewF = F;
3803 NewF.AM.BaseGV = GV;
3804 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
3805 (I - F.BaseRegs.begin()));
3806 if (LU.HasFormulaWithSameRegs(NewF)) {
3807 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
3808 dbgs() << '\n');
3809 LU.DeleteFormula(F);
3810 --i;
3811 --e;
3812 Any = true;
3813 break;
3814 }
3815 }
3816 }
3817 }
3818 }
3819 if (Any)
3820 LU.RecomputeRegs(LUIdx, RegUses);
3821 }
3822
3823 DEBUG(dbgs() << "After pre-selection:\n";
3824 print_uses(dbgs()));
3825 }
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003826}
Dan Gohmana2086b32010-05-19 23:43:12 +00003827
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003828/// NarrowSearchSpaceByCollapsingUnrolledCode - When there are many registers
3829/// for expressions like A, A+1, A+2, etc., allocate a single register for
3830/// them.
3831void LSRInstance::NarrowSearchSpaceByCollapsingUnrolledCode() {
Dan Gohmana2086b32010-05-19 23:43:12 +00003832 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
3833 DEBUG(dbgs() << "The search space is too complex.\n");
3834
3835 DEBUG(dbgs() << "Narrowing the search space by assuming that uses "
3836 "separated by a constant offset will use the same "
3837 "registers.\n");
3838
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00003839 // This is especially useful for unrolled loops.
3840
Dan Gohmana2086b32010-05-19 23:43:12 +00003841 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3842 LSRUse &LU = Uses[LUIdx];
Dan Gohman402d4352010-05-20 20:33:18 +00003843 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
3844 E = LU.Formulae.end(); I != E; ++I) {
3845 const Formula &F = *I;
Dan Gohmana2086b32010-05-19 23:43:12 +00003846 if (F.AM.BaseOffs != 0 && F.AM.Scale == 0) {
Dan Gohman191bd642010-09-01 01:45:53 +00003847 if (LSRUse *LUThatHas = FindUseWithSimilarFormula(F, LU)) {
3848 if (reconcileNewOffset(*LUThatHas, F.AM.BaseOffs,
Dan Gohmana2086b32010-05-19 23:43:12 +00003849 /*HasBaseReg=*/false,
3850 LU.Kind, LU.AccessTy)) {
3851 DEBUG(dbgs() << " Deleting use "; LU.print(dbgs());
3852 dbgs() << '\n');
3853
3854 LUThatHas->AllFixupsOutsideLoop &= LU.AllFixupsOutsideLoop;
3855
Dan Gohman191bd642010-09-01 01:45:53 +00003856 // Update the relocs to reference the new use.
3857 for (SmallVectorImpl<LSRFixup>::iterator I = Fixups.begin(),
3858 E = Fixups.end(); I != E; ++I) {
3859 LSRFixup &Fixup = *I;
3860 if (Fixup.LUIdx == LUIdx) {
3861 Fixup.LUIdx = LUThatHas - &Uses.front();
3862 Fixup.Offset += F.AM.BaseOffs;
Dan Gohmandd3db0e2010-10-07 23:36:45 +00003863 // Add the new offset to LUThatHas' offset list.
3864 if (LUThatHas->Offsets.back() != Fixup.Offset) {
3865 LUThatHas->Offsets.push_back(Fixup.Offset);
3866 if (Fixup.Offset > LUThatHas->MaxOffset)
3867 LUThatHas->MaxOffset = Fixup.Offset;
3868 if (Fixup.Offset < LUThatHas->MinOffset)
3869 LUThatHas->MinOffset = Fixup.Offset;
3870 }
Dan Gohman191bd642010-09-01 01:45:53 +00003871 DEBUG(dbgs() << "New fixup has offset "
3872 << Fixup.Offset << '\n');
3873 }
3874 if (Fixup.LUIdx == NumUses-1)
3875 Fixup.LUIdx = LUIdx;
3876 }
3877
Dan Gohmanc2921ea2010-10-08 19:33:26 +00003878 // Delete formulae from the new use which are no longer legal.
3879 bool Any = false;
3880 for (size_t i = 0, e = LUThatHas->Formulae.size(); i != e; ++i) {
3881 Formula &F = LUThatHas->Formulae[i];
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00003882 if (!isLegalUse(TTI, LUThatHas->MinOffset, LUThatHas->MaxOffset,
3883 LUThatHas->Kind, LUThatHas->AccessTy, F)) {
Dan Gohmanc2921ea2010-10-08 19:33:26 +00003884 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
3885 dbgs() << '\n');
3886 LUThatHas->DeleteFormula(F);
3887 --i;
3888 --e;
3889 Any = true;
3890 }
3891 }
3892 if (Any)
3893 LUThatHas->RecomputeRegs(LUThatHas - &Uses.front(), RegUses);
3894
Dan Gohmana2086b32010-05-19 23:43:12 +00003895 // Delete the old use.
Dan Gohmanc6897702010-10-07 23:33:43 +00003896 DeleteUse(LU, LUIdx);
Dan Gohmana2086b32010-05-19 23:43:12 +00003897 --LUIdx;
3898 --NumUses;
3899 break;
3900 }
3901 }
3902 }
3903 }
3904 }
3905
3906 DEBUG(dbgs() << "After pre-selection:\n";
3907 print_uses(dbgs()));
3908 }
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003909}
Dan Gohmana2086b32010-05-19 23:43:12 +00003910
Andrew Trick3228cc22011-03-14 16:50:06 +00003911/// NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters - Call
Dan Gohman4f7e18d2010-08-29 16:39:22 +00003912/// FilterOutUndesirableDedicatedRegisters again, if necessary, now that
3913/// we've done more filtering, as it may be able to find more formulae to
3914/// eliminate.
3915void LSRInstance::NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters(){
3916 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
3917 DEBUG(dbgs() << "The search space is too complex.\n");
3918
3919 DEBUG(dbgs() << "Narrowing the search space by re-filtering out "
3920 "undesirable dedicated registers.\n");
3921
3922 FilterOutUndesirableDedicatedRegisters();
3923
3924 DEBUG(dbgs() << "After pre-selection:\n";
3925 print_uses(dbgs()));
3926 }
3927}
3928
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003929/// NarrowSearchSpaceByPickingWinnerRegs - Pick a register which seems likely
3930/// to be profitable, and then in any use which has any reference to that
3931/// register, delete all formulae which do not reference that register.
3932void LSRInstance::NarrowSearchSpaceByPickingWinnerRegs() {
Dan Gohman76c315a2010-05-20 20:52:00 +00003933 // With all other options exhausted, loop until the system is simple
3934 // enough to handle.
Dan Gohman572645c2010-02-12 10:34:29 +00003935 SmallPtrSet<const SCEV *, 4> Taken;
Dan Gohmand079c302010-05-18 22:51:59 +00003936 while (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
Dan Gohman572645c2010-02-12 10:34:29 +00003937 // Ok, we have too many of formulae on our hands to conveniently handle.
3938 // Use a rough heuristic to thin out the list.
Dan Gohman0da751b2010-05-18 22:41:32 +00003939 DEBUG(dbgs() << "The search space is too complex.\n");
Dan Gohman572645c2010-02-12 10:34:29 +00003940
3941 // Pick the register which is used by the most LSRUses, which is likely
3942 // to be a good reuse register candidate.
3943 const SCEV *Best = 0;
3944 unsigned BestNum = 0;
3945 for (RegUseTracker::const_iterator I = RegUses.begin(), E = RegUses.end();
3946 I != E; ++I) {
3947 const SCEV *Reg = *I;
3948 if (Taken.count(Reg))
3949 continue;
3950 if (!Best)
3951 Best = Reg;
3952 else {
3953 unsigned Count = RegUses.getUsedByIndices(Reg).count();
3954 if (Count > BestNum) {
3955 Best = Reg;
3956 BestNum = Count;
3957 }
3958 }
3959 }
3960
3961 DEBUG(dbgs() << "Narrowing the search space by assuming " << *Best
Dan Gohman3f46a3a2010-03-01 17:49:51 +00003962 << " will yield profitable reuse.\n");
Dan Gohman572645c2010-02-12 10:34:29 +00003963 Taken.insert(Best);
3964
3965 // In any use with formulae which references this register, delete formulae
3966 // which don't reference it.
Dan Gohmanb2df4332010-05-18 23:42:37 +00003967 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3968 LSRUse &LU = Uses[LUIdx];
Dan Gohman572645c2010-02-12 10:34:29 +00003969 if (!LU.Regs.count(Best)) continue;
3970
Dan Gohmanb2df4332010-05-18 23:42:37 +00003971 bool Any = false;
Dan Gohman572645c2010-02-12 10:34:29 +00003972 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
3973 Formula &F = LU.Formulae[i];
3974 if (!F.referencesReg(Best)) {
3975 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
Dan Gohmand69d6282010-05-18 22:39:15 +00003976 LU.DeleteFormula(F);
Dan Gohman572645c2010-02-12 10:34:29 +00003977 --e;
3978 --i;
Dan Gohmanb2df4332010-05-18 23:42:37 +00003979 Any = true;
Dan Gohman59dc6032010-05-07 23:36:59 +00003980 assert(e != 0 && "Use has no formulae left! Is Regs inconsistent?");
Dan Gohman572645c2010-02-12 10:34:29 +00003981 continue;
3982 }
Dan Gohman572645c2010-02-12 10:34:29 +00003983 }
Dan Gohmanb2df4332010-05-18 23:42:37 +00003984
3985 if (Any)
3986 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman572645c2010-02-12 10:34:29 +00003987 }
3988
3989 DEBUG(dbgs() << "After pre-selection:\n";
3990 print_uses(dbgs()));
3991 }
3992}
3993
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003994/// NarrowSearchSpaceUsingHeuristics - If there are an extraordinary number of
3995/// formulae to choose from, use some rough heuristics to prune down the number
3996/// of formulae. This keeps the main solver from taking an extraordinary amount
3997/// of time in some worst-case scenarios.
3998void LSRInstance::NarrowSearchSpaceUsingHeuristics() {
3999 NarrowSearchSpaceByDetectingSupersets();
4000 NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman4f7e18d2010-08-29 16:39:22 +00004001 NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00004002 NarrowSearchSpaceByPickingWinnerRegs();
4003}
4004
Dan Gohman572645c2010-02-12 10:34:29 +00004005/// SolveRecurse - This is the recursive solver.
4006void LSRInstance::SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
4007 Cost &SolutionCost,
4008 SmallVectorImpl<const Formula *> &Workspace,
4009 const Cost &CurCost,
4010 const SmallPtrSet<const SCEV *, 16> &CurRegs,
4011 DenseSet<const SCEV *> &VisitedRegs) const {
4012 // Some ideas:
4013 // - prune more:
4014 // - use more aggressive filtering
4015 // - sort the formula so that the most profitable solutions are found first
4016 // - sort the uses too
4017 // - search faster:
Dan Gohman3f46a3a2010-03-01 17:49:51 +00004018 // - don't compute a cost, and then compare. compare while computing a cost
Dan Gohman572645c2010-02-12 10:34:29 +00004019 // and bail early.
4020 // - track register sets with SmallBitVector
4021
4022 const LSRUse &LU = Uses[Workspace.size()];
4023
4024 // If this use references any register that's already a part of the
4025 // in-progress solution, consider it a requirement that a formula must
4026 // reference that register in order to be considered. This prunes out
4027 // unprofitable searching.
4028 SmallSetVector<const SCEV *, 4> ReqRegs;
4029 for (SmallPtrSet<const SCEV *, 16>::const_iterator I = CurRegs.begin(),
4030 E = CurRegs.end(); I != E; ++I)
Dan Gohman9214b822010-02-13 02:06:02 +00004031 if (LU.Regs.count(*I))
Dan Gohman572645c2010-02-12 10:34:29 +00004032 ReqRegs.insert(*I);
Dan Gohman572645c2010-02-12 10:34:29 +00004033
4034 SmallPtrSet<const SCEV *, 16> NewRegs;
4035 Cost NewCost;
4036 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
4037 E = LU.Formulae.end(); I != E; ++I) {
4038 const Formula &F = *I;
4039
4040 // Ignore formulae which do not use any of the required registers.
Andrew Trickd1944542012-03-22 22:42:51 +00004041 bool SatisfiedReqReg = true;
Dan Gohman572645c2010-02-12 10:34:29 +00004042 for (SmallSetVector<const SCEV *, 4>::const_iterator J = ReqRegs.begin(),
4043 JE = ReqRegs.end(); J != JE; ++J) {
4044 const SCEV *Reg = *J;
4045 if ((!F.ScaledReg || F.ScaledReg != Reg) &&
4046 std::find(F.BaseRegs.begin(), F.BaseRegs.end(), Reg) ==
Andrew Trickd1944542012-03-22 22:42:51 +00004047 F.BaseRegs.end()) {
4048 SatisfiedReqReg = false;
4049 break;
4050 }
Dan Gohman572645c2010-02-12 10:34:29 +00004051 }
Andrew Trickd1944542012-03-22 22:42:51 +00004052 if (!SatisfiedReqReg) {
4053 // If none of the formulae satisfied the required registers, then we could
4054 // clear ReqRegs and try again. Currently, we simply give up in this case.
4055 continue;
4056 }
Dan Gohman572645c2010-02-12 10:34:29 +00004057
4058 // Evaluate the cost of the current formula. If it's already worse than
4059 // the current best, prune the search at that point.
4060 NewCost = CurCost;
4061 NewRegs = CurRegs;
4062 NewCost.RateFormula(F, NewRegs, VisitedRegs, L, LU.Offsets, SE, DT);
4063 if (NewCost < SolutionCost) {
4064 Workspace.push_back(&F);
4065 if (Workspace.size() != Uses.size()) {
4066 SolveRecurse(Solution, SolutionCost, Workspace, NewCost,
4067 NewRegs, VisitedRegs);
4068 if (F.getNumRegs() == 1 && Workspace.size() == 1)
4069 VisitedRegs.insert(F.ScaledReg ? F.ScaledReg : F.BaseRegs[0]);
4070 } else {
4071 DEBUG(dbgs() << "New best at "; NewCost.print(dbgs());
Andrew Trick8bf295b2012-01-09 18:58:16 +00004072 dbgs() << ".\n Regs:";
Dan Gohman572645c2010-02-12 10:34:29 +00004073 for (SmallPtrSet<const SCEV *, 16>::const_iterator
4074 I = NewRegs.begin(), E = NewRegs.end(); I != E; ++I)
4075 dbgs() << ' ' << **I;
4076 dbgs() << '\n');
4077
4078 SolutionCost = NewCost;
4079 Solution = Workspace;
4080 }
4081 Workspace.pop_back();
4082 }
Dan Gohman9214b822010-02-13 02:06:02 +00004083 }
Dan Gohman572645c2010-02-12 10:34:29 +00004084}
4085
Dan Gohman76c315a2010-05-20 20:52:00 +00004086/// Solve - Choose one formula from each use. Return the results in the given
4087/// Solution vector.
Dan Gohman572645c2010-02-12 10:34:29 +00004088void LSRInstance::Solve(SmallVectorImpl<const Formula *> &Solution) const {
4089 SmallVector<const Formula *, 8> Workspace;
4090 Cost SolutionCost;
4091 SolutionCost.Loose();
4092 Cost CurCost;
4093 SmallPtrSet<const SCEV *, 16> CurRegs;
4094 DenseSet<const SCEV *> VisitedRegs;
4095 Workspace.reserve(Uses.size());
4096
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00004097 // SolveRecurse does all the work.
Dan Gohman572645c2010-02-12 10:34:29 +00004098 SolveRecurse(Solution, SolutionCost, Workspace, CurCost,
4099 CurRegs, VisitedRegs);
Andrew Trick80ef1b22011-09-27 00:44:14 +00004100 if (Solution.empty()) {
4101 DEBUG(dbgs() << "\nNo Satisfactory Solution\n");
4102 return;
4103 }
Dan Gohman572645c2010-02-12 10:34:29 +00004104
4105 // Ok, we've now made all our decisions.
4106 DEBUG(dbgs() << "\n"
4107 "The chosen solution requires "; SolutionCost.print(dbgs());
4108 dbgs() << ":\n";
4109 for (size_t i = 0, e = Uses.size(); i != e; ++i) {
4110 dbgs() << " ";
4111 Uses[i].print(dbgs());
4112 dbgs() << "\n"
4113 " ";
4114 Solution[i]->print(dbgs());
4115 dbgs() << '\n';
4116 });
Dan Gohmana5528782010-05-20 20:59:23 +00004117
4118 assert(Solution.size() == Uses.size() && "Malformed solution!");
Dan Gohman572645c2010-02-12 10:34:29 +00004119}
4120
Dan Gohmane5f76872010-04-09 22:07:05 +00004121/// HoistInsertPosition - Helper for AdjustInsertPositionForExpand. Climb up
4122/// the dominator tree far as we can go while still being dominated by the
4123/// input positions. This helps canonicalize the insert position, which
4124/// encourages sharing.
4125BasicBlock::iterator
4126LSRInstance::HoistInsertPosition(BasicBlock::iterator IP,
4127 const SmallVectorImpl<Instruction *> &Inputs)
4128 const {
4129 for (;;) {
4130 const Loop *IPLoop = LI.getLoopFor(IP->getParent());
4131 unsigned IPLoopDepth = IPLoop ? IPLoop->getLoopDepth() : 0;
4132
4133 BasicBlock *IDom;
Dan Gohmand974a0e2010-05-20 20:00:25 +00004134 for (DomTreeNode *Rung = DT.getNode(IP->getParent()); ; ) {
Dan Gohman0fe46d92010-05-20 22:46:54 +00004135 if (!Rung) return IP;
Dan Gohmand974a0e2010-05-20 20:00:25 +00004136 Rung = Rung->getIDom();
4137 if (!Rung) return IP;
4138 IDom = Rung->getBlock();
Dan Gohmane5f76872010-04-09 22:07:05 +00004139
4140 // Don't climb into a loop though.
4141 const Loop *IDomLoop = LI.getLoopFor(IDom);
4142 unsigned IDomDepth = IDomLoop ? IDomLoop->getLoopDepth() : 0;
4143 if (IDomDepth <= IPLoopDepth &&
4144 (IDomDepth != IPLoopDepth || IDomLoop == IPLoop))
4145 break;
4146 }
4147
4148 bool AllDominate = true;
4149 Instruction *BetterPos = 0;
4150 Instruction *Tentative = IDom->getTerminator();
4151 for (SmallVectorImpl<Instruction *>::const_iterator I = Inputs.begin(),
4152 E = Inputs.end(); I != E; ++I) {
4153 Instruction *Inst = *I;
4154 if (Inst == Tentative || !DT.dominates(Inst, Tentative)) {
4155 AllDominate = false;
4156 break;
4157 }
4158 // Attempt to find an insert position in the middle of the block,
4159 // instead of at the end, so that it can be used for other expansions.
4160 if (IDom == Inst->getParent() &&
Rafael Espindola9719cf32012-04-30 03:53:06 +00004161 (!BetterPos || !DT.dominates(Inst, BetterPos)))
Douglas Gregor7d9663c2010-05-11 06:17:44 +00004162 BetterPos = llvm::next(BasicBlock::iterator(Inst));
Dan Gohmane5f76872010-04-09 22:07:05 +00004163 }
4164 if (!AllDominate)
4165 break;
4166 if (BetterPos)
4167 IP = BetterPos;
4168 else
4169 IP = Tentative;
4170 }
4171
4172 return IP;
4173}
4174
4175/// AdjustInsertPositionForExpand - Determine an input position which will be
Dan Gohmand96eae82010-04-09 02:00:38 +00004176/// dominated by the operands and which will dominate the result.
4177BasicBlock::iterator
Andrew Trickb5c26ef2012-01-20 07:41:13 +00004178LSRInstance::AdjustInsertPositionForExpand(BasicBlock::iterator LowestIP,
Dan Gohmane5f76872010-04-09 22:07:05 +00004179 const LSRFixup &LF,
Andrew Trickb5c26ef2012-01-20 07:41:13 +00004180 const LSRUse &LU,
4181 SCEVExpander &Rewriter) const {
Dan Gohmand96eae82010-04-09 02:00:38 +00004182 // Collect some instructions which must be dominated by the
Dan Gohman448db1c2010-04-07 22:27:08 +00004183 // expanding replacement. These must be dominated by any operands that
Dan Gohman572645c2010-02-12 10:34:29 +00004184 // will be required in the expansion.
4185 SmallVector<Instruction *, 4> Inputs;
4186 if (Instruction *I = dyn_cast<Instruction>(LF.OperandValToReplace))
4187 Inputs.push_back(I);
4188 if (LU.Kind == LSRUse::ICmpZero)
4189 if (Instruction *I =
4190 dyn_cast<Instruction>(cast<ICmpInst>(LF.UserInst)->getOperand(1)))
4191 Inputs.push_back(I);
Dan Gohman448db1c2010-04-07 22:27:08 +00004192 if (LF.PostIncLoops.count(L)) {
4193 if (LF.isUseFullyOutsideLoop(L))
Dan Gohman069d6f32010-03-02 01:59:21 +00004194 Inputs.push_back(L->getLoopLatch()->getTerminator());
4195 else
4196 Inputs.push_back(IVIncInsertPos);
4197 }
Dan Gohman701a4ae2010-04-08 05:57:57 +00004198 // The expansion must also be dominated by the increment positions of any
4199 // loops it for which it is using post-inc mode.
4200 for (PostIncLoopSet::const_iterator I = LF.PostIncLoops.begin(),
4201 E = LF.PostIncLoops.end(); I != E; ++I) {
4202 const Loop *PIL = *I;
4203 if (PIL == L) continue;
4204
Dan Gohmane5f76872010-04-09 22:07:05 +00004205 // Be dominated by the loop exit.
Dan Gohman701a4ae2010-04-08 05:57:57 +00004206 SmallVector<BasicBlock *, 4> ExitingBlocks;
4207 PIL->getExitingBlocks(ExitingBlocks);
4208 if (!ExitingBlocks.empty()) {
4209 BasicBlock *BB = ExitingBlocks[0];
4210 for (unsigned i = 1, e = ExitingBlocks.size(); i != e; ++i)
4211 BB = DT.findNearestCommonDominator(BB, ExitingBlocks[i]);
4212 Inputs.push_back(BB->getTerminator());
4213 }
4214 }
Dan Gohman572645c2010-02-12 10:34:29 +00004215
Andrew Trickb5c26ef2012-01-20 07:41:13 +00004216 assert(!isa<PHINode>(LowestIP) && !isa<LandingPadInst>(LowestIP)
4217 && !isa<DbgInfoIntrinsic>(LowestIP) &&
4218 "Insertion point must be a normal instruction");
4219
Dan Gohman572645c2010-02-12 10:34:29 +00004220 // Then, climb up the immediate dominator tree as far as we can go while
4221 // still being dominated by the input positions.
Andrew Trickb5c26ef2012-01-20 07:41:13 +00004222 BasicBlock::iterator IP = HoistInsertPosition(LowestIP, Inputs);
Dan Gohmand96eae82010-04-09 02:00:38 +00004223
4224 // Don't insert instructions before PHI nodes.
Dan Gohman572645c2010-02-12 10:34:29 +00004225 while (isa<PHINode>(IP)) ++IP;
Dan Gohmand96eae82010-04-09 02:00:38 +00004226
Bill Wendlinga4c86ab2011-08-24 21:06:46 +00004227 // Ignore landingpad instructions.
4228 while (isa<LandingPadInst>(IP)) ++IP;
4229
Dan Gohmand96eae82010-04-09 02:00:38 +00004230 // Ignore debug intrinsics.
Dan Gohman449f31c2010-03-26 00:33:27 +00004231 while (isa<DbgInfoIntrinsic>(IP)) ++IP;
Dan Gohman572645c2010-02-12 10:34:29 +00004232
Andrew Trickb5c26ef2012-01-20 07:41:13 +00004233 // Set IP below instructions recently inserted by SCEVExpander. This keeps the
4234 // IP consistent across expansions and allows the previously inserted
4235 // instructions to be reused by subsequent expansion.
4236 while (Rewriter.isInsertedInstruction(IP) && IP != LowestIP) ++IP;
4237
Dan Gohmand96eae82010-04-09 02:00:38 +00004238 return IP;
4239}
4240
Dan Gohman76c315a2010-05-20 20:52:00 +00004241/// Expand - Emit instructions for the leading candidate expression for this
4242/// LSRUse (this is called "expanding").
Dan Gohmand96eae82010-04-09 02:00:38 +00004243Value *LSRInstance::Expand(const LSRFixup &LF,
4244 const Formula &F,
4245 BasicBlock::iterator IP,
4246 SCEVExpander &Rewriter,
4247 SmallVectorImpl<WeakVH> &DeadInsts) const {
4248 const LSRUse &LU = Uses[LF.LUIdx];
4249
4250 // Determine an input position which will be dominated by the operands and
4251 // which will dominate the result.
Andrew Trickb5c26ef2012-01-20 07:41:13 +00004252 IP = AdjustInsertPositionForExpand(IP, LF, LU, Rewriter);
Dan Gohmand96eae82010-04-09 02:00:38 +00004253
Dan Gohman572645c2010-02-12 10:34:29 +00004254 // Inform the Rewriter if we have a post-increment use, so that it can
4255 // perform an advantageous expansion.
Dan Gohman448db1c2010-04-07 22:27:08 +00004256 Rewriter.setPostInc(LF.PostIncLoops);
Dan Gohman572645c2010-02-12 10:34:29 +00004257
4258 // This is the type that the user actually needs.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00004259 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00004260 // This will be the type that we'll initially expand to.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00004261 Type *Ty = F.getType();
Dan Gohman572645c2010-02-12 10:34:29 +00004262 if (!Ty)
4263 // No type known; just expand directly to the ultimate type.
4264 Ty = OpTy;
4265 else if (SE.getEffectiveSCEVType(Ty) == SE.getEffectiveSCEVType(OpTy))
4266 // Expand directly to the ultimate type if it's the right size.
4267 Ty = OpTy;
4268 // This is the type to do integer arithmetic in.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00004269 Type *IntTy = SE.getEffectiveSCEVType(Ty);
Dan Gohman572645c2010-02-12 10:34:29 +00004270
4271 // Build up a list of operands to add together to form the full base.
4272 SmallVector<const SCEV *, 8> Ops;
4273
4274 // Expand the BaseRegs portion.
4275 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
4276 E = F.BaseRegs.end(); I != E; ++I) {
4277 const SCEV *Reg = *I;
4278 assert(!Reg->isZero() && "Zero allocated in a base register!");
4279
Dan Gohman448db1c2010-04-07 22:27:08 +00004280 // If we're expanding for a post-inc user, make the post-inc adjustment.
4281 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
4282 Reg = TransformForPostIncUse(Denormalize, Reg,
4283 LF.UserInst, LF.OperandValToReplace,
4284 Loops, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +00004285
4286 Ops.push_back(SE.getUnknown(Rewriter.expandCodeFor(Reg, 0, IP)));
4287 }
4288
4289 // Expand the ScaledReg portion.
4290 Value *ICmpScaledV = 0;
4291 if (F.AM.Scale != 0) {
4292 const SCEV *ScaledS = F.ScaledReg;
4293
Dan Gohman448db1c2010-04-07 22:27:08 +00004294 // If we're expanding for a post-inc user, make the post-inc adjustment.
4295 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
4296 ScaledS = TransformForPostIncUse(Denormalize, ScaledS,
4297 LF.UserInst, LF.OperandValToReplace,
4298 Loops, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +00004299
4300 if (LU.Kind == LSRUse::ICmpZero) {
4301 // An interesting way of "folding" with an icmp is to use a negated
4302 // scale, which we'll implement by inserting it into the other operand
4303 // of the icmp.
4304 assert(F.AM.Scale == -1 &&
4305 "The only scale supported by ICmpZero uses is -1!");
4306 ICmpScaledV = Rewriter.expandCodeFor(ScaledS, 0, IP);
4307 } else {
4308 // Otherwise just expand the scaled register and an explicit scale,
4309 // which is expected to be matched as part of the address.
Andrew Trickb6b5b7b2012-06-15 20:07:29 +00004310
4311 // Flush the operand list to suppress SCEVExpander hoisting address modes.
4312 if (!Ops.empty() && LU.Kind == LSRUse::Address) {
4313 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
4314 Ops.clear();
4315 Ops.push_back(SE.getUnknown(FullV));
4316 }
Dan Gohman572645c2010-02-12 10:34:29 +00004317 ScaledS = SE.getUnknown(Rewriter.expandCodeFor(ScaledS, 0, IP));
4318 ScaledS = SE.getMulExpr(ScaledS,
Dan Gohmandeff6212010-05-03 22:09:21 +00004319 SE.getConstant(ScaledS->getType(), F.AM.Scale));
Dan Gohman572645c2010-02-12 10:34:29 +00004320 Ops.push_back(ScaledS);
4321 }
4322 }
4323
Dan Gohman087bd1e2010-03-03 05:29:13 +00004324 // Expand the GV portion.
4325 if (F.AM.BaseGV) {
Dan Gohman087bd1e2010-03-03 05:29:13 +00004326 // Flush the operand list to suppress SCEVExpander hoisting.
Andrew Trickb6b5b7b2012-06-15 20:07:29 +00004327 if (!Ops.empty()) {
4328 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
4329 Ops.clear();
4330 Ops.push_back(SE.getUnknown(FullV));
4331 }
4332 Ops.push_back(SE.getUnknown(F.AM.BaseGV));
4333 }
4334
4335 // Flush the operand list to suppress SCEVExpander hoisting of both folded and
4336 // unfolded offsets. LSR assumes they both live next to their uses.
4337 if (!Ops.empty()) {
Dan Gohman087bd1e2010-03-03 05:29:13 +00004338 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
4339 Ops.clear();
4340 Ops.push_back(SE.getUnknown(FullV));
4341 }
4342
4343 // Expand the immediate portion.
Dan Gohman572645c2010-02-12 10:34:29 +00004344 int64_t Offset = (uint64_t)F.AM.BaseOffs + LF.Offset;
4345 if (Offset != 0) {
4346 if (LU.Kind == LSRUse::ICmpZero) {
4347 // The other interesting way of "folding" with an ICmpZero is to use a
4348 // negated immediate.
4349 if (!ICmpScaledV)
Eli Friedmandae36ba2011-10-13 23:48:33 +00004350 ICmpScaledV = ConstantInt::get(IntTy, -(uint64_t)Offset);
Dan Gohman572645c2010-02-12 10:34:29 +00004351 else {
4352 Ops.push_back(SE.getUnknown(ICmpScaledV));
4353 ICmpScaledV = ConstantInt::get(IntTy, Offset);
4354 }
4355 } else {
4356 // Just add the immediate values. These again are expected to be matched
4357 // as part of the address.
Dan Gohman087bd1e2010-03-03 05:29:13 +00004358 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy, Offset)));
Dan Gohman572645c2010-02-12 10:34:29 +00004359 }
4360 }
4361
Dan Gohmancca82142011-05-03 00:46:49 +00004362 // Expand the unfolded offset portion.
4363 int64_t UnfoldedOffset = F.UnfoldedOffset;
4364 if (UnfoldedOffset != 0) {
4365 // Just add the immediate values.
4366 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy,
4367 UnfoldedOffset)));
4368 }
4369
Dan Gohman572645c2010-02-12 10:34:29 +00004370 // Emit instructions summing all the operands.
4371 const SCEV *FullS = Ops.empty() ?
Dan Gohmandeff6212010-05-03 22:09:21 +00004372 SE.getConstant(IntTy, 0) :
Dan Gohman572645c2010-02-12 10:34:29 +00004373 SE.getAddExpr(Ops);
4374 Value *FullV = Rewriter.expandCodeFor(FullS, Ty, IP);
4375
4376 // We're done expanding now, so reset the rewriter.
Dan Gohman448db1c2010-04-07 22:27:08 +00004377 Rewriter.clearPostInc();
Dan Gohman572645c2010-02-12 10:34:29 +00004378
4379 // An ICmpZero Formula represents an ICmp which we're handling as a
4380 // comparison against zero. Now that we've expanded an expression for that
4381 // form, update the ICmp's other operand.
4382 if (LU.Kind == LSRUse::ICmpZero) {
4383 ICmpInst *CI = cast<ICmpInst>(LF.UserInst);
4384 DeadInsts.push_back(CI->getOperand(1));
4385 assert(!F.AM.BaseGV && "ICmp does not support folding a global value and "
4386 "a scale at the same time!");
4387 if (F.AM.Scale == -1) {
4388 if (ICmpScaledV->getType() != OpTy) {
4389 Instruction *Cast =
4390 CastInst::Create(CastInst::getCastOpcode(ICmpScaledV, false,
4391 OpTy, false),
4392 ICmpScaledV, OpTy, "tmp", CI);
4393 ICmpScaledV = Cast;
4394 }
4395 CI->setOperand(1, ICmpScaledV);
4396 } else {
4397 assert(F.AM.Scale == 0 &&
4398 "ICmp does not support folding a global value and "
4399 "a scale at the same time!");
4400 Constant *C = ConstantInt::getSigned(SE.getEffectiveSCEVType(OpTy),
4401 -(uint64_t)Offset);
4402 if (C->getType() != OpTy)
4403 C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
4404 OpTy, false),
4405 C, OpTy);
4406
4407 CI->setOperand(1, C);
4408 }
4409 }
4410
4411 return FullV;
4412}
4413
Dan Gohman3a02cbc2010-02-16 20:25:07 +00004414/// RewriteForPHI - Helper for Rewrite. PHI nodes are special because the use
4415/// of their operands effectively happens in their predecessor blocks, so the
4416/// expression may need to be expanded in multiple places.
4417void LSRInstance::RewriteForPHI(PHINode *PN,
4418 const LSRFixup &LF,
4419 const Formula &F,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00004420 SCEVExpander &Rewriter,
4421 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00004422 Pass *P) const {
4423 DenseMap<BasicBlock *, Value *> Inserted;
4424 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
4425 if (PN->getIncomingValue(i) == LF.OperandValToReplace) {
4426 BasicBlock *BB = PN->getIncomingBlock(i);
4427
4428 // If this is a critical edge, split the edge so that we do not insert
4429 // the code on all predecessor/successor paths. We do this unless this
4430 // is the canonical backedge for this loop, which complicates post-inc
4431 // users.
4432 if (e != 1 && BB->getTerminator()->getNumSuccessors() > 1 &&
Dan Gohman3ef98382011-02-08 00:55:13 +00004433 !isa<IndirectBrInst>(BB->getTerminator())) {
Bill Wendling89d44112011-08-25 01:08:34 +00004434 BasicBlock *Parent = PN->getParent();
4435 Loop *PNLoop = LI.getLoopFor(Parent);
4436 if (!PNLoop || Parent != PNLoop->getHeader()) {
Dan Gohman3ef98382011-02-08 00:55:13 +00004437 // Split the critical edge.
Bill Wendling8b6af8a2011-08-25 05:55:40 +00004438 BasicBlock *NewBB = 0;
4439 if (!Parent->isLandingPad()) {
Andrew Trickf143b792011-10-04 03:50:44 +00004440 NewBB = SplitCriticalEdge(BB, Parent, P,
4441 /*MergeIdenticalEdges=*/true,
4442 /*DontDeleteUselessPhis=*/true);
Bill Wendling8b6af8a2011-08-25 05:55:40 +00004443 } else {
4444 SmallVector<BasicBlock*, 2> NewBBs;
4445 SplitLandingPadPredecessors(Parent, BB, "", "", P, NewBBs);
4446 NewBB = NewBBs[0];
4447 }
Andrew Trickf08c1152012-09-18 17:51:33 +00004448 // If NewBB==NULL, then SplitCriticalEdge refused to split because all
4449 // phi predecessors are identical. The simple thing to do is skip
4450 // splitting in this case rather than complicate the API.
4451 if (NewBB) {
4452 // If PN is outside of the loop and BB is in the loop, we want to
4453 // move the block to be immediately before the PHI block, not
4454 // immediately after BB.
4455 if (L->contains(BB) && !L->contains(PN))
4456 NewBB->moveBefore(PN->getParent());
Dan Gohman3a02cbc2010-02-16 20:25:07 +00004457
Andrew Trickf08c1152012-09-18 17:51:33 +00004458 // Splitting the edge can reduce the number of PHI entries we have.
4459 e = PN->getNumIncomingValues();
4460 BB = NewBB;
4461 i = PN->getBasicBlockIndex(BB);
4462 }
Dan Gohman3ef98382011-02-08 00:55:13 +00004463 }
Dan Gohman3a02cbc2010-02-16 20:25:07 +00004464 }
4465
4466 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> Pair =
4467 Inserted.insert(std::make_pair(BB, static_cast<Value *>(0)));
4468 if (!Pair.second)
4469 PN->setIncomingValue(i, Pair.first->second);
4470 else {
Dan Gohman454d26d2010-02-22 04:11:59 +00004471 Value *FullV = Expand(LF, F, BB->getTerminator(), Rewriter, DeadInsts);
Dan Gohman3a02cbc2010-02-16 20:25:07 +00004472
4473 // If this is reuse-by-noop-cast, insert the noop cast.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00004474 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman3a02cbc2010-02-16 20:25:07 +00004475 if (FullV->getType() != OpTy)
4476 FullV =
4477 CastInst::Create(CastInst::getCastOpcode(FullV, false,
4478 OpTy, false),
4479 FullV, LF.OperandValToReplace->getType(),
4480 "tmp", BB->getTerminator());
4481
4482 PN->setIncomingValue(i, FullV);
4483 Pair.first->second = FullV;
4484 }
4485 }
4486}
4487
Dan Gohman572645c2010-02-12 10:34:29 +00004488/// Rewrite - Emit instructions for the leading candidate expression for this
4489/// LSRUse (this is called "expanding"), and update the UserInst to reference
4490/// the newly expanded value.
4491void LSRInstance::Rewrite(const LSRFixup &LF,
4492 const Formula &F,
Dan Gohman572645c2010-02-12 10:34:29 +00004493 SCEVExpander &Rewriter,
4494 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman572645c2010-02-12 10:34:29 +00004495 Pass *P) const {
Dan Gohman572645c2010-02-12 10:34:29 +00004496 // First, find an insertion point that dominates UserInst. For PHI nodes,
4497 // find the nearest block which dominates all the relevant uses.
4498 if (PHINode *PN = dyn_cast<PHINode>(LF.UserInst)) {
Dan Gohman454d26d2010-02-22 04:11:59 +00004499 RewriteForPHI(PN, LF, F, Rewriter, DeadInsts, P);
Dan Gohman572645c2010-02-12 10:34:29 +00004500 } else {
Dan Gohman454d26d2010-02-22 04:11:59 +00004501 Value *FullV = Expand(LF, F, LF.UserInst, Rewriter, DeadInsts);
Dan Gohman572645c2010-02-12 10:34:29 +00004502
4503 // If this is reuse-by-noop-cast, insert the noop cast.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00004504 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00004505 if (FullV->getType() != OpTy) {
4506 Instruction *Cast =
4507 CastInst::Create(CastInst::getCastOpcode(FullV, false, OpTy, false),
4508 FullV, OpTy, "tmp", LF.UserInst);
4509 FullV = Cast;
4510 }
4511
4512 // Update the user. ICmpZero is handled specially here (for now) because
4513 // Expand may have updated one of the operands of the icmp already, and
4514 // its new value may happen to be equal to LF.OperandValToReplace, in
4515 // which case doing replaceUsesOfWith leads to replacing both operands
4516 // with the same value. TODO: Reorganize this.
4517 if (Uses[LF.LUIdx].Kind == LSRUse::ICmpZero)
4518 LF.UserInst->setOperand(0, FullV);
4519 else
4520 LF.UserInst->replaceUsesOfWith(LF.OperandValToReplace, FullV);
4521 }
4522
4523 DeadInsts.push_back(LF.OperandValToReplace);
4524}
4525
Dan Gohman76c315a2010-05-20 20:52:00 +00004526/// ImplementSolution - Rewrite all the fixup locations with new values,
4527/// following the chosen solution.
Dan Gohman572645c2010-02-12 10:34:29 +00004528void
4529LSRInstance::ImplementSolution(const SmallVectorImpl<const Formula *> &Solution,
4530 Pass *P) {
4531 // Keep track of instructions we may have made dead, so that
4532 // we can remove them after we are done working.
4533 SmallVector<WeakVH, 16> DeadInsts;
4534
Andrew Trick5e7645b2011-06-28 05:07:32 +00004535 SCEVExpander Rewriter(SE, "lsr");
Andrew Trick8bf295b2012-01-09 18:58:16 +00004536#ifndef NDEBUG
4537 Rewriter.setDebugType(DEBUG_TYPE);
4538#endif
Dan Gohman572645c2010-02-12 10:34:29 +00004539 Rewriter.disableCanonicalMode();
Andrew Trickc5701912011-10-07 23:46:21 +00004540 Rewriter.enableLSRMode();
Dan Gohman572645c2010-02-12 10:34:29 +00004541 Rewriter.setIVIncInsertPos(L, IVIncInsertPos);
4542
Andrew Trick64925c52012-01-10 01:45:08 +00004543 // Mark phi nodes that terminate chains so the expander tries to reuse them.
4544 for (SmallVectorImpl<IVChain>::const_iterator ChainI = IVChainVec.begin(),
4545 ChainE = IVChainVec.end(); ChainI != ChainE; ++ChainI) {
Jakob Stoklund Olesen70a18602012-04-26 23:33:09 +00004546 if (PHINode *PN = dyn_cast<PHINode>(ChainI->tailUserInst()))
Andrew Trick64925c52012-01-10 01:45:08 +00004547 Rewriter.setChainedPhi(PN);
4548 }
4549
Dan Gohman572645c2010-02-12 10:34:29 +00004550 // Expand the new value definitions and update the users.
Dan Gohman402d4352010-05-20 20:33:18 +00004551 for (SmallVectorImpl<LSRFixup>::const_iterator I = Fixups.begin(),
4552 E = Fixups.end(); I != E; ++I) {
4553 const LSRFixup &Fixup = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00004554
Dan Gohman402d4352010-05-20 20:33:18 +00004555 Rewrite(Fixup, *Solution[Fixup.LUIdx], Rewriter, DeadInsts, P);
Dan Gohman572645c2010-02-12 10:34:29 +00004556
4557 Changed = true;
4558 }
4559
Andrew Trick22d20c22012-01-09 21:18:52 +00004560 for (SmallVectorImpl<IVChain>::const_iterator ChainI = IVChainVec.begin(),
4561 ChainE = IVChainVec.end(); ChainI != ChainE; ++ChainI) {
4562 GenerateIVChain(*ChainI, Rewriter, DeadInsts);
4563 Changed = true;
4564 }
Dan Gohman572645c2010-02-12 10:34:29 +00004565 // Clean up after ourselves. This must be done before deleting any
4566 // instructions.
4567 Rewriter.clear();
4568
4569 Changed |= DeleteTriviallyDeadInstructions(DeadInsts);
4570}
4571
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00004572LSRInstance::LSRInstance(Loop *L, Pass *P)
4573 : IU(P->getAnalysis<IVUsers>()), SE(P->getAnalysis<ScalarEvolution>()),
4574 DT(P->getAnalysis<DominatorTree>()), LI(P->getAnalysis<LoopInfo>()),
4575 TTI(P->getAnalysis<TargetTransformInfo>()), L(L), Changed(false),
4576 IVIncInsertPos(0) {
Dan Gohman03e896b2009-11-05 21:11:53 +00004577 // If LoopSimplify form is not available, stay out of trouble.
Andrew Trickacdb4aa2012-01-07 03:16:50 +00004578 if (!L->isLoopSimplifyForm())
4579 return;
Dan Gohman03e896b2009-11-05 21:11:53 +00004580
Andrew Trick75ae2032012-03-16 03:16:56 +00004581 // If there's no interesting work to be done, bail early.
4582 if (IU.empty()) return;
4583
Andrew Trickb5122632012-04-18 04:00:10 +00004584 // If there's too much analysis to be done, bail early. We won't be able to
4585 // model the problem anyway.
4586 unsigned NumUsers = 0;
4587 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) {
4588 if (++NumUsers > MaxIVUsers) {
4589 DEBUG(dbgs() << "LSR skipping loop, too many IV Users in " << *L
4590 << "\n");
4591 return;
4592 }
4593 }
4594
Andrew Trick75ae2032012-03-16 03:16:56 +00004595#ifndef NDEBUG
Andrew Trick0f080912012-01-17 06:45:52 +00004596 // All dominating loops must have preheaders, or SCEVExpander may not be able
4597 // to materialize an AddRecExpr whose Start is an outer AddRecExpr.
4598 //
Andrew Trick75ae2032012-03-16 03:16:56 +00004599 // IVUsers analysis should only create users that are dominated by simple loop
4600 // headers. Since this loop should dominate all of its users, its user list
4601 // should be empty if this loop itself is not within a simple loop nest.
Andrew Trick0f080912012-01-17 06:45:52 +00004602 for (DomTreeNode *Rung = DT.getNode(L->getLoopPreheader());
4603 Rung; Rung = Rung->getIDom()) {
4604 BasicBlock *BB = Rung->getBlock();
4605 const Loop *DomLoop = LI.getLoopFor(BB);
4606 if (DomLoop && DomLoop->getHeader() == BB) {
Andrew Trick75ae2032012-03-16 03:16:56 +00004607 assert(DomLoop->getLoopPreheader() && "LSR needs a simplified loop nest");
Andrew Trick0f080912012-01-17 06:45:52 +00004608 }
Andrew Trickacdb4aa2012-01-07 03:16:50 +00004609 }
Andrew Trick75ae2032012-03-16 03:16:56 +00004610#endif // DEBUG
Dan Gohman80b0f8c2009-03-09 20:34:59 +00004611
Dan Gohman572645c2010-02-12 10:34:29 +00004612 DEBUG(dbgs() << "\nLSR on loop ";
4613 WriteAsOperand(dbgs(), L->getHeader(), /*PrintType=*/false);
4614 dbgs() << ":\n");
Dan Gohmanf7912df2009-03-09 20:46:50 +00004615
Dan Gohman402d4352010-05-20 20:33:18 +00004616 // First, perform some low-level loop optimizations.
Dan Gohman572645c2010-02-12 10:34:29 +00004617 OptimizeShadowIV();
Dan Gohmanc6519f92010-05-20 20:05:31 +00004618 OptimizeLoopTermCond();
Evan Cheng5792f512009-05-11 22:33:01 +00004619
Andrew Trick37eb38d2011-07-21 00:40:04 +00004620 // If loop preparation eliminates all interesting IV users, bail.
4621 if (IU.empty()) return;
4622
Andrew Trick5219f862011-09-29 01:53:08 +00004623 // Skip nested loops until we can model them better with formulae.
Andrew Trickbd618f12012-03-22 22:42:45 +00004624 if (!L->empty()) {
Andrew Trick0c01bc32011-09-29 01:33:38 +00004625 DEBUG(dbgs() << "LSR skipping outer loop " << *L << "\n");
Andrew Trick5219f862011-09-29 01:53:08 +00004626 return;
Andrew Trick0c01bc32011-09-29 01:33:38 +00004627 }
4628
Dan Gohman402d4352010-05-20 20:33:18 +00004629 // Start collecting data and preparing for the solver.
Andrew Trick6c7d0ae2012-01-09 19:50:34 +00004630 CollectChains();
Dan Gohman572645c2010-02-12 10:34:29 +00004631 CollectInterestingTypesAndFactors();
4632 CollectFixupsAndInitialFormulae();
4633 CollectLoopInvariantFixupsAndFormulae();
Chris Lattner010de252005-08-08 05:28:22 +00004634
Andrew Trick22d20c22012-01-09 21:18:52 +00004635 assert(!Uses.empty() && "IVUsers reported at least one use");
Dan Gohman572645c2010-02-12 10:34:29 +00004636 DEBUG(dbgs() << "LSR found " << Uses.size() << " uses:\n";
4637 print_uses(dbgs()));
Misha Brukmanfd939082005-04-21 23:48:37 +00004638
Dan Gohman572645c2010-02-12 10:34:29 +00004639 // Now use the reuse data to generate a bunch of interesting ways
4640 // to formulate the values needed for the uses.
4641 GenerateAllReuseFormulae();
Evan Chengd1d6b5c2006-03-16 21:53:05 +00004642
Dan Gohman572645c2010-02-12 10:34:29 +00004643 FilterOutUndesirableDedicatedRegisters();
4644 NarrowSearchSpaceUsingHeuristics();
Dan Gohman6bec5bb2009-12-18 00:06:20 +00004645
Dan Gohman572645c2010-02-12 10:34:29 +00004646 SmallVector<const Formula *, 8> Solution;
4647 Solve(Solution);
Dan Gohman6bec5bb2009-12-18 00:06:20 +00004648
Dan Gohman572645c2010-02-12 10:34:29 +00004649 // Release memory that is no longer needed.
4650 Factors.clear();
4651 Types.clear();
4652 RegUses.clear();
4653
Andrew Trick80ef1b22011-09-27 00:44:14 +00004654 if (Solution.empty())
4655 return;
4656
Dan Gohman572645c2010-02-12 10:34:29 +00004657#ifndef NDEBUG
4658 // Formulae should be legal.
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00004659 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(), E = Uses.end();
4660 I != E; ++I) {
4661 const LSRUse &LU = *I;
4662 for (SmallVectorImpl<Formula>::const_iterator J = LU.Formulae.begin(),
4663 JE = LU.Formulae.end();
4664 J != JE; ++J)
4665 assert(isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
4666 *J) && "Illegal formula generated!");
Dan Gohman572645c2010-02-12 10:34:29 +00004667 };
4668#endif
4669
4670 // Now that we've decided what we want, make it so.
4671 ImplementSolution(Solution, P);
4672}
4673
4674void LSRInstance::print_factors_and_types(raw_ostream &OS) const {
4675 if (Factors.empty() && Types.empty()) return;
4676
4677 OS << "LSR has identified the following interesting factors and types: ";
4678 bool First = true;
4679
4680 for (SmallSetVector<int64_t, 8>::const_iterator
4681 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
4682 if (!First) OS << ", ";
4683 First = false;
4684 OS << '*' << *I;
Evan Cheng81ebdcf2009-11-10 21:14:05 +00004685 }
Dale Johannesenc1acc3f2009-05-11 17:15:42 +00004686
Chris Lattnerdb125cf2011-07-18 04:54:35 +00004687 for (SmallSetVector<Type *, 4>::const_iterator
Dan Gohman572645c2010-02-12 10:34:29 +00004688 I = Types.begin(), E = Types.end(); I != E; ++I) {
4689 if (!First) OS << ", ";
4690 First = false;
4691 OS << '(' << **I << ')';
4692 }
4693 OS << '\n';
4694}
4695
4696void LSRInstance::print_fixups(raw_ostream &OS) const {
4697 OS << "LSR is examining the following fixup sites:\n";
4698 for (SmallVectorImpl<LSRFixup>::const_iterator I = Fixups.begin(),
4699 E = Fixups.end(); I != E; ++I) {
Dan Gohman572645c2010-02-12 10:34:29 +00004700 dbgs() << " ";
Dan Gohman9f383eb2010-05-20 22:25:20 +00004701 I->print(OS);
Dan Gohman572645c2010-02-12 10:34:29 +00004702 OS << '\n';
4703 }
4704}
4705
4706void LSRInstance::print_uses(raw_ostream &OS) const {
4707 OS << "LSR is examining the following uses:\n";
4708 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
4709 E = Uses.end(); I != E; ++I) {
4710 const LSRUse &LU = *I;
4711 dbgs() << " ";
4712 LU.print(OS);
4713 OS << '\n';
4714 for (SmallVectorImpl<Formula>::const_iterator J = LU.Formulae.begin(),
4715 JE = LU.Formulae.end(); J != JE; ++J) {
4716 OS << " ";
4717 J->print(OS);
4718 OS << '\n';
4719 }
4720 }
4721}
4722
4723void LSRInstance::print(raw_ostream &OS) const {
4724 print_factors_and_types(OS);
4725 print_fixups(OS);
4726 print_uses(OS);
4727}
4728
Manman Ren286c4dc2012-09-12 05:06:18 +00004729#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman572645c2010-02-12 10:34:29 +00004730void LSRInstance::dump() const {
4731 print(errs()); errs() << '\n';
4732}
Manman Rencc77eec2012-09-06 19:55:56 +00004733#endif
Dan Gohman572645c2010-02-12 10:34:29 +00004734
4735namespace {
4736
4737class LoopStrengthReduce : public LoopPass {
Dan Gohman572645c2010-02-12 10:34:29 +00004738public:
4739 static char ID; // Pass ID, replacement for typeid
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00004740 LoopStrengthReduce();
Dan Gohman572645c2010-02-12 10:34:29 +00004741
4742private:
4743 bool runOnLoop(Loop *L, LPPassManager &LPM);
4744 void getAnalysisUsage(AnalysisUsage &AU) const;
4745};
4746
4747}
4748
4749char LoopStrengthReduce::ID = 0;
Owen Anderson2ab36d32010-10-12 19:48:12 +00004750INITIALIZE_PASS_BEGIN(LoopStrengthReduce, "loop-reduce",
Owen Andersonce665bd2010-10-07 22:25:06 +00004751 "Loop Strength Reduction", false, false)
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00004752INITIALIZE_AG_DEPENDENCY(TargetTransformInfo)
Owen Anderson2ab36d32010-10-12 19:48:12 +00004753INITIALIZE_PASS_DEPENDENCY(DominatorTree)
4754INITIALIZE_PASS_DEPENDENCY(ScalarEvolution)
4755INITIALIZE_PASS_DEPENDENCY(IVUsers)
Owen Anderson205942a2010-10-19 20:08:44 +00004756INITIALIZE_PASS_DEPENDENCY(LoopInfo)
4757INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
Owen Anderson2ab36d32010-10-12 19:48:12 +00004758INITIALIZE_PASS_END(LoopStrengthReduce, "loop-reduce",
4759 "Loop Strength Reduction", false, false)
4760
Nadav Rotema04a4a72012-10-19 21:28:43 +00004761
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00004762Pass *llvm::createLoopStrengthReducePass() {
4763 return new LoopStrengthReduce();
Dan Gohman572645c2010-02-12 10:34:29 +00004764}
4765
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00004766LoopStrengthReduce::LoopStrengthReduce() : LoopPass(ID) {
4767 initializeLoopStrengthReducePass(*PassRegistry::getPassRegistry());
4768}
Dan Gohman572645c2010-02-12 10:34:29 +00004769
4770void LoopStrengthReduce::getAnalysisUsage(AnalysisUsage &AU) const {
4771 // We split critical edges, so we change the CFG. However, we do update
4772 // many analyses if they are around.
Eric Christopher6793c492011-02-10 01:48:24 +00004773 AU.addPreservedID(LoopSimplifyID);
Dan Gohman572645c2010-02-12 10:34:29 +00004774
Eric Christopher6793c492011-02-10 01:48:24 +00004775 AU.addRequired<LoopInfo>();
4776 AU.addPreserved<LoopInfo>();
4777 AU.addRequiredID(LoopSimplifyID);
Dan Gohman572645c2010-02-12 10:34:29 +00004778 AU.addRequired<DominatorTree>();
4779 AU.addPreserved<DominatorTree>();
4780 AU.addRequired<ScalarEvolution>();
4781 AU.addPreserved<ScalarEvolution>();
Cameron Zwarich2c2b9332011-02-10 23:53:14 +00004782 // Requiring LoopSimplify a second time here prevents IVUsers from running
4783 // twice, since LoopSimplify was invalidated by running ScalarEvolution.
4784 AU.addRequiredID(LoopSimplifyID);
Dan Gohman572645c2010-02-12 10:34:29 +00004785 AU.addRequired<IVUsers>();
4786 AU.addPreserved<IVUsers>();
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00004787 AU.addRequired<TargetTransformInfo>();
Dan Gohman572645c2010-02-12 10:34:29 +00004788}
4789
4790bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager & /*LPM*/) {
4791 bool Changed = false;
4792
4793 // Run the main LSR transformation.
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00004794 Changed |= LSRInstance(L, this).getChanged();
Dan Gohman572645c2010-02-12 10:34:29 +00004795
Andrew Trickf231a6d2012-01-07 01:36:44 +00004796 // Remove any extra phis created by processing inner loops.
Dan Gohman9fff2182010-01-05 16:31:45 +00004797 Changed |= DeleteDeadPHIs(L->getHeader());
Andrew Trickc6b49362013-01-06 05:59:39 +00004798 if (EnablePhiElim && L->isLoopSimplifyForm()) {
Andrew Trickf231a6d2012-01-07 01:36:44 +00004799 SmallVector<WeakVH, 16> DeadInsts;
4800 SCEVExpander Rewriter(getAnalysis<ScalarEvolution>(), "lsr");
4801#ifndef NDEBUG
4802 Rewriter.setDebugType(DEBUG_TYPE);
4803#endif
Chandler Carruthe4ba75f2013-01-07 14:41:08 +00004804 unsigned numFolded =
4805 Rewriter.replaceCongruentIVs(L, &getAnalysis<DominatorTree>(),
4806 DeadInsts,
4807 &getAnalysis<TargetTransformInfo>());
Andrew Trickf231a6d2012-01-07 01:36:44 +00004808 if (numFolded) {
4809 Changed = true;
4810 DeleteTriviallyDeadInstructions(DeadInsts);
4811 DeleteDeadPHIs(L->getHeader());
4812 }
4813 }
Evan Cheng1ce75dc2008-07-07 19:51:32 +00004814 return Changed;
Nate Begemaneaa13852004-10-18 21:08:22 +00004815}