blob: f9c18c8ae2b27116f6d9992432af2596caa79326 [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//
40// TODO: Should TargetLowering::AddrMode::BaseGV be changed to a ConstantExpr
41// instead of a GlobalValue?
42//
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"
Nate Begemaneaa13852004-10-18 21:08:22 +000057#include "llvm/Transforms/Scalar.h"
58#include "llvm/Constants.h"
59#include "llvm/Instructions.h"
Dan Gohmane5b01be2007-05-04 14:59:09 +000060#include "llvm/IntrinsicInst.h"
Jeff Cohen2f3c9b72005-03-04 04:04:26 +000061#include "llvm/DerivedTypes.h"
Dan Gohman81db61a2009-05-12 02:17:14 +000062#include "llvm/Analysis/IVUsers.h"
Dan Gohman572645c2010-02-12 10:34:29 +000063#include "llvm/Analysis/Dominators.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"
Chris Lattner9fc5cdf2011-01-02 22:09:33 +000066#include "llvm/Assembly/Writer.h"
Chris Lattnere0391be2005-08-12 22:06:11 +000067#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Nate Begemaneaa13852004-10-18 21:08:22 +000068#include "llvm/Transforms/Utils/Local.h"
Dan Gohman572645c2010-02-12 10:34:29 +000069#include "llvm/ADT/SmallBitVector.h"
70#include "llvm/ADT/SetVector.h"
71#include "llvm/ADT/DenseSet.h"
Nate Begeman16997482005-07-30 00:15:07 +000072#include "llvm/Support/Debug.h"
Andrew Trick80ef1b22011-09-27 00:44:14 +000073#include "llvm/Support/CommandLine.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"
Evan Chengd277f2c2006-03-13 23:14:23 +000076#include "llvm/Target/TargetLowering.h"
Jeff Cohencfb1d422005-07-30 18:22:27 +000077#include <algorithm>
Nate Begemaneaa13852004-10-18 21:08:22 +000078using namespace llvm;
79
Andrew Trick80ef1b22011-09-27 00:44:14 +000080namespace llvm {
81cl::opt<bool> EnableRetry(
82 "enable-lsr-retry", cl::Hidden, cl::desc("Enable LSR retry"));
83}
84
Dan Gohman572645c2010-02-12 10:34:29 +000085namespace {
Nate Begemaneaa13852004-10-18 21:08:22 +000086
Dan Gohman572645c2010-02-12 10:34:29 +000087/// RegSortData - This class holds data which is used to order reuse candidates.
88class RegSortData {
89public:
90 /// UsedByIndices - This represents the set of LSRUse indices which reference
91 /// a particular register.
92 SmallBitVector UsedByIndices;
93
94 RegSortData() {}
95
96 void print(raw_ostream &OS) const;
97 void dump() const;
98};
99
100}
101
102void RegSortData::print(raw_ostream &OS) const {
103 OS << "[NumUses=" << UsedByIndices.count() << ']';
104}
105
106void RegSortData::dump() const {
107 print(errs()); errs() << '\n';
108}
Dan Gohmanc17e0cf2009-02-20 04:17:46 +0000109
Chris Lattner0e5f4992006-12-19 21:40:18 +0000110namespace {
Dale Johannesendc42f482007-03-20 00:47:50 +0000111
Dan Gohman572645c2010-02-12 10:34:29 +0000112/// RegUseTracker - Map register candidates to information about how they are
113/// used.
114class RegUseTracker {
115 typedef DenseMap<const SCEV *, RegSortData> RegUsesTy;
Dale Johannesendc42f482007-03-20 00:47:50 +0000116
Dan Gohman90bb3552010-05-18 22:33:00 +0000117 RegUsesTy RegUsesMap;
Dan Gohman572645c2010-02-12 10:34:29 +0000118 SmallVector<const SCEV *, 16> RegSequence;
Evan Chengd1d6b5c2006-03-16 21:53:05 +0000119
Dan Gohman572645c2010-02-12 10:34:29 +0000120public:
121 void CountRegister(const SCEV *Reg, size_t LUIdx);
Dan Gohmanb2df4332010-05-18 23:42:37 +0000122 void DropRegister(const SCEV *Reg, size_t LUIdx);
Dan Gohmanc6897702010-10-07 23:33:43 +0000123 void SwapAndDropUse(size_t LUIdx, size_t LastLUIdx);
Dan Gohmana10756e2010-01-21 02:09:26 +0000124
Dan Gohman572645c2010-02-12 10:34:29 +0000125 bool isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const;
Dan Gohmana10756e2010-01-21 02:09:26 +0000126
Dan Gohman572645c2010-02-12 10:34:29 +0000127 const SmallBitVector &getUsedByIndices(const SCEV *Reg) const;
Dan Gohmana10756e2010-01-21 02:09:26 +0000128
Dan Gohman572645c2010-02-12 10:34:29 +0000129 void clear();
Dan Gohmana10756e2010-01-21 02:09:26 +0000130
Dan Gohman572645c2010-02-12 10:34:29 +0000131 typedef SmallVectorImpl<const SCEV *>::iterator iterator;
132 typedef SmallVectorImpl<const SCEV *>::const_iterator const_iterator;
133 iterator begin() { return RegSequence.begin(); }
134 iterator end() { return RegSequence.end(); }
135 const_iterator begin() const { return RegSequence.begin(); }
136 const_iterator end() const { return RegSequence.end(); }
137};
Dan Gohmana10756e2010-01-21 02:09:26 +0000138
Dan Gohmana10756e2010-01-21 02:09:26 +0000139}
140
Dan Gohman572645c2010-02-12 10:34:29 +0000141void
142RegUseTracker::CountRegister(const SCEV *Reg, size_t LUIdx) {
143 std::pair<RegUsesTy::iterator, bool> Pair =
Dan Gohman90bb3552010-05-18 22:33:00 +0000144 RegUsesMap.insert(std::make_pair(Reg, RegSortData()));
Dan Gohman572645c2010-02-12 10:34:29 +0000145 RegSortData &RSD = Pair.first->second;
146 if (Pair.second)
147 RegSequence.push_back(Reg);
148 RSD.UsedByIndices.resize(std::max(RSD.UsedByIndices.size(), LUIdx + 1));
149 RSD.UsedByIndices.set(LUIdx);
Dan Gohmana10756e2010-01-21 02:09:26 +0000150}
151
Dan Gohmanb2df4332010-05-18 23:42:37 +0000152void
153RegUseTracker::DropRegister(const SCEV *Reg, size_t LUIdx) {
154 RegUsesTy::iterator It = RegUsesMap.find(Reg);
155 assert(It != RegUsesMap.end());
156 RegSortData &RSD = It->second;
157 assert(RSD.UsedByIndices.size() > LUIdx);
158 RSD.UsedByIndices.reset(LUIdx);
159}
160
Dan Gohmana2086b32010-05-19 23:43:12 +0000161void
Dan Gohmanc6897702010-10-07 23:33:43 +0000162RegUseTracker::SwapAndDropUse(size_t LUIdx, size_t LastLUIdx) {
163 assert(LUIdx <= LastLUIdx);
164
165 // Update RegUses. The data structure is not optimized for this purpose;
166 // we must iterate through it and update each of the bit vectors.
Dan Gohmana2086b32010-05-19 23:43:12 +0000167 for (RegUsesTy::iterator I = RegUsesMap.begin(), E = RegUsesMap.end();
Dan Gohmanc6897702010-10-07 23:33:43 +0000168 I != E; ++I) {
169 SmallBitVector &UsedByIndices = I->second.UsedByIndices;
170 if (LUIdx < UsedByIndices.size())
171 UsedByIndices[LUIdx] =
172 LastLUIdx < UsedByIndices.size() ? UsedByIndices[LastLUIdx] : 0;
173 UsedByIndices.resize(std::min(UsedByIndices.size(), LastLUIdx));
174 }
Dan Gohmana2086b32010-05-19 23:43:12 +0000175}
176
Dan Gohman572645c2010-02-12 10:34:29 +0000177bool
178RegUseTracker::isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const {
Dan Gohman46fd7a62010-08-29 15:18:49 +0000179 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
180 if (I == RegUsesMap.end())
181 return false;
182 const SmallBitVector &UsedByIndices = I->second.UsedByIndices;
Dan Gohman572645c2010-02-12 10:34:29 +0000183 int i = UsedByIndices.find_first();
184 if (i == -1) return false;
185 if ((size_t)i != LUIdx) return true;
186 return UsedByIndices.find_next(i) != -1;
187}
Dan Gohmana10756e2010-01-21 02:09:26 +0000188
Dan Gohman572645c2010-02-12 10:34:29 +0000189const SmallBitVector &RegUseTracker::getUsedByIndices(const SCEV *Reg) const {
Dan Gohman90bb3552010-05-18 22:33:00 +0000190 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
191 assert(I != RegUsesMap.end() && "Unknown register!");
Dan Gohman572645c2010-02-12 10:34:29 +0000192 return I->second.UsedByIndices;
193}
Dan Gohmana10756e2010-01-21 02:09:26 +0000194
Dan Gohman572645c2010-02-12 10:34:29 +0000195void RegUseTracker::clear() {
Dan Gohman90bb3552010-05-18 22:33:00 +0000196 RegUsesMap.clear();
Dan Gohman572645c2010-02-12 10:34:29 +0000197 RegSequence.clear();
198}
Dan Gohmana10756e2010-01-21 02:09:26 +0000199
Dan Gohman572645c2010-02-12 10:34:29 +0000200namespace {
201
202/// Formula - This class holds information that describes a formula for
203/// computing satisfying a use. It may include broken-out immediates and scaled
204/// registers.
205struct Formula {
206 /// AM - This is used to represent complex addressing, as well as other kinds
207 /// of interesting uses.
208 TargetLowering::AddrMode AM;
209
210 /// BaseRegs - The list of "base" registers for this use. When this is
211 /// non-empty, AM.HasBaseReg should be set to true.
212 SmallVector<const SCEV *, 2> BaseRegs;
213
214 /// ScaledReg - The 'scaled' register for this use. This should be non-null
215 /// when AM.Scale is not zero.
216 const SCEV *ScaledReg;
217
Dan Gohmancca82142011-05-03 00:46:49 +0000218 /// UnfoldedOffset - An additional constant offset which added near the
219 /// use. This requires a temporary register, but the offset itself can
220 /// live in an add immediate field rather than a register.
221 int64_t UnfoldedOffset;
222
223 Formula() : ScaledReg(0), UnfoldedOffset(0) {}
Dan Gohman572645c2010-02-12 10:34:29 +0000224
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000225 void InitialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE);
Dan Gohman572645c2010-02-12 10:34:29 +0000226
227 unsigned getNumRegs() const;
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000228 Type *getType() const;
Dan Gohman572645c2010-02-12 10:34:29 +0000229
Dan Gohman5ce6d052010-05-20 15:17:54 +0000230 void DeleteBaseReg(const SCEV *&S);
231
Dan Gohman572645c2010-02-12 10:34:29 +0000232 bool referencesReg(const SCEV *S) const;
233 bool hasRegsUsedByUsesOtherThan(size_t LUIdx,
234 const RegUseTracker &RegUses) const;
235
236 void print(raw_ostream &OS) const;
237 void dump() const;
238};
239
240}
241
Dan Gohman3f46a3a2010-03-01 17:49:51 +0000242/// DoInitialMatch - Recursion helper for InitialMatch.
Dan Gohman572645c2010-02-12 10:34:29 +0000243static void DoInitialMatch(const SCEV *S, Loop *L,
244 SmallVectorImpl<const SCEV *> &Good,
245 SmallVectorImpl<const SCEV *> &Bad,
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000246 ScalarEvolution &SE) {
Dan Gohman572645c2010-02-12 10:34:29 +0000247 // Collect expressions which properly dominate the loop header.
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000248 if (SE.properlyDominates(S, L->getHeader())) {
Dan Gohman572645c2010-02-12 10:34:29 +0000249 Good.push_back(S);
250 return;
Dan Gohmana10756e2010-01-21 02:09:26 +0000251 }
Dan Gohman572645c2010-02-12 10:34:29 +0000252
253 // Look at add operands.
254 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
255 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
256 I != E; ++I)
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000257 DoInitialMatch(*I, L, Good, Bad, SE);
Dan Gohman572645c2010-02-12 10:34:29 +0000258 return;
259 }
260
261 // Look at addrec operands.
262 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S))
263 if (!AR->getStart()->isZero()) {
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000264 DoInitialMatch(AR->getStart(), L, Good, Bad, SE);
Dan Gohmandeff6212010-05-03 22:09:21 +0000265 DoInitialMatch(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
Dan Gohman572645c2010-02-12 10:34:29 +0000266 AR->getStepRecurrence(SE),
Andrew Trick3228cc22011-03-14 16:50:06 +0000267 // FIXME: AR->getNoWrapFlags()
268 AR->getLoop(), SCEV::FlagAnyWrap),
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000269 L, Good, Bad, SE);
Dan Gohman572645c2010-02-12 10:34:29 +0000270 return;
271 }
272
273 // Handle a multiplication by -1 (negation) if it didn't fold.
274 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S))
275 if (Mul->getOperand(0)->isAllOnesValue()) {
276 SmallVector<const SCEV *, 4> Ops(Mul->op_begin()+1, Mul->op_end());
277 const SCEV *NewMul = SE.getMulExpr(Ops);
278
279 SmallVector<const SCEV *, 4> MyGood;
280 SmallVector<const SCEV *, 4> MyBad;
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000281 DoInitialMatch(NewMul, L, MyGood, MyBad, SE);
Dan Gohman572645c2010-02-12 10:34:29 +0000282 const SCEV *NegOne = SE.getSCEV(ConstantInt::getAllOnesValue(
283 SE.getEffectiveSCEVType(NewMul->getType())));
284 for (SmallVectorImpl<const SCEV *>::const_iterator I = MyGood.begin(),
285 E = MyGood.end(); I != E; ++I)
286 Good.push_back(SE.getMulExpr(NegOne, *I));
287 for (SmallVectorImpl<const SCEV *>::const_iterator I = MyBad.begin(),
288 E = MyBad.end(); I != E; ++I)
289 Bad.push_back(SE.getMulExpr(NegOne, *I));
290 return;
291 }
292
293 // Ok, we can't do anything interesting. Just stuff the whole thing into a
294 // register and hope for the best.
295 Bad.push_back(S);
296}
297
298/// InitialMatch - Incorporate loop-variant parts of S into this Formula,
299/// attempting to keep all loop-invariant and loop-computable values in a
300/// single base register.
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000301void Formula::InitialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE) {
Dan Gohman572645c2010-02-12 10:34:29 +0000302 SmallVector<const SCEV *, 4> Good;
303 SmallVector<const SCEV *, 4> Bad;
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000304 DoInitialMatch(S, L, Good, Bad, SE);
Dan Gohman572645c2010-02-12 10:34:29 +0000305 if (!Good.empty()) {
Dan Gohmane60bb152010-04-08 23:36:27 +0000306 const SCEV *Sum = SE.getAddExpr(Good);
307 if (!Sum->isZero())
308 BaseRegs.push_back(Sum);
Dan Gohman572645c2010-02-12 10:34:29 +0000309 AM.HasBaseReg = true;
310 }
311 if (!Bad.empty()) {
Dan Gohmane60bb152010-04-08 23:36:27 +0000312 const SCEV *Sum = SE.getAddExpr(Bad);
313 if (!Sum->isZero())
314 BaseRegs.push_back(Sum);
Dan Gohman572645c2010-02-12 10:34:29 +0000315 AM.HasBaseReg = true;
316 }
317}
318
319/// getNumRegs - Return the total number of register operands used by this
320/// formula. This does not include register uses implied by non-constant
321/// addrec strides.
322unsigned Formula::getNumRegs() const {
323 return !!ScaledReg + BaseRegs.size();
324}
325
326/// getType - Return the type of this formula, if it has one, or null
327/// otherwise. This type is meaningless except for the bit size.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000328Type *Formula::getType() const {
Dan Gohman572645c2010-02-12 10:34:29 +0000329 return !BaseRegs.empty() ? BaseRegs.front()->getType() :
330 ScaledReg ? ScaledReg->getType() :
331 AM.BaseGV ? AM.BaseGV->getType() :
332 0;
333}
334
Dan Gohman5ce6d052010-05-20 15:17:54 +0000335/// DeleteBaseReg - Delete the given base reg from the BaseRegs list.
336void Formula::DeleteBaseReg(const SCEV *&S) {
337 if (&S != &BaseRegs.back())
338 std::swap(S, BaseRegs.back());
339 BaseRegs.pop_back();
340}
341
Dan Gohman572645c2010-02-12 10:34:29 +0000342/// referencesReg - Test if this formula references the given register.
343bool Formula::referencesReg(const SCEV *S) const {
344 return S == ScaledReg ||
345 std::find(BaseRegs.begin(), BaseRegs.end(), S) != BaseRegs.end();
346}
347
348/// hasRegsUsedByUsesOtherThan - Test whether this formula uses registers
349/// which are used by uses other than the use with the given index.
350bool Formula::hasRegsUsedByUsesOtherThan(size_t LUIdx,
351 const RegUseTracker &RegUses) const {
352 if (ScaledReg)
353 if (RegUses.isRegUsedByUsesOtherThan(ScaledReg, LUIdx))
354 return true;
355 for (SmallVectorImpl<const SCEV *>::const_iterator I = BaseRegs.begin(),
356 E = BaseRegs.end(); I != E; ++I)
357 if (RegUses.isRegUsedByUsesOtherThan(*I, LUIdx))
358 return true;
359 return false;
360}
361
362void Formula::print(raw_ostream &OS) const {
363 bool First = true;
364 if (AM.BaseGV) {
365 if (!First) OS << " + "; else First = false;
366 WriteAsOperand(OS, AM.BaseGV, /*PrintType=*/false);
367 }
368 if (AM.BaseOffs != 0) {
369 if (!First) OS << " + "; else First = false;
370 OS << AM.BaseOffs;
371 }
372 for (SmallVectorImpl<const SCEV *>::const_iterator I = BaseRegs.begin(),
373 E = BaseRegs.end(); I != E; ++I) {
374 if (!First) OS << " + "; else First = false;
375 OS << "reg(" << **I << ')';
376 }
Dan Gohmanc4cfbaf2010-05-18 22:35:55 +0000377 if (AM.HasBaseReg && BaseRegs.empty()) {
378 if (!First) OS << " + "; else First = false;
379 OS << "**error: HasBaseReg**";
380 } else if (!AM.HasBaseReg && !BaseRegs.empty()) {
381 if (!First) OS << " + "; else First = false;
382 OS << "**error: !HasBaseReg**";
383 }
Dan Gohman572645c2010-02-12 10:34:29 +0000384 if (AM.Scale != 0) {
385 if (!First) OS << " + "; else First = false;
386 OS << AM.Scale << "*reg(";
387 if (ScaledReg)
388 OS << *ScaledReg;
389 else
390 OS << "<unknown>";
391 OS << ')';
392 }
Dan Gohmancca82142011-05-03 00:46:49 +0000393 if (UnfoldedOffset != 0) {
394 if (!First) OS << " + "; else First = false;
395 OS << "imm(" << UnfoldedOffset << ')';
396 }
Dan Gohman572645c2010-02-12 10:34:29 +0000397}
398
399void Formula::dump() const {
400 print(errs()); errs() << '\n';
401}
402
Dan Gohmanaae01f12010-02-19 19:32:49 +0000403/// isAddRecSExtable - Return true if the given addrec can be sign-extended
404/// without changing its value.
405static bool isAddRecSExtable(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000406 Type *WideTy =
Dan Gohmanea507f52010-05-20 19:44:23 +0000407 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(AR->getType()) + 1);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000408 return isa<SCEVAddRecExpr>(SE.getSignExtendExpr(AR, WideTy));
409}
410
411/// isAddSExtable - Return true if the given add can be sign-extended
412/// without changing its value.
413static bool isAddSExtable(const SCEVAddExpr *A, ScalarEvolution &SE) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000414 Type *WideTy =
Dan Gohmanea507f52010-05-20 19:44:23 +0000415 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(A->getType()) + 1);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000416 return isa<SCEVAddExpr>(SE.getSignExtendExpr(A, WideTy));
417}
418
Dan Gohman473e6352010-06-24 16:45:11 +0000419/// isMulSExtable - Return true if the given mul can be sign-extended
Dan Gohmanaae01f12010-02-19 19:32:49 +0000420/// without changing its value.
Dan Gohman473e6352010-06-24 16:45:11 +0000421static bool isMulSExtable(const SCEVMulExpr *M, ScalarEvolution &SE) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000422 Type *WideTy =
Dan Gohman473e6352010-06-24 16:45:11 +0000423 IntegerType::get(SE.getContext(),
424 SE.getTypeSizeInBits(M->getType()) * M->getNumOperands());
425 return isa<SCEVMulExpr>(SE.getSignExtendExpr(M, WideTy));
Dan Gohmanaae01f12010-02-19 19:32:49 +0000426}
427
Dan Gohmanf09b7122010-02-19 19:35:48 +0000428/// getExactSDiv - Return an expression for LHS /s RHS, if it can be determined
429/// and if the remainder is known to be zero, or null otherwise. If
430/// IgnoreSignificantBits is true, expressions like (X * Y) /s Y are simplified
431/// to Y, ignoring that the multiplication may overflow, which is useful when
432/// the result will be used in a context where the most significant bits are
433/// ignored.
434static const SCEV *getExactSDiv(const SCEV *LHS, const SCEV *RHS,
435 ScalarEvolution &SE,
436 bool IgnoreSignificantBits = false) {
Dan Gohman572645c2010-02-12 10:34:29 +0000437 // Handle the trivial case, which works for any SCEV type.
438 if (LHS == RHS)
Dan Gohmandeff6212010-05-03 22:09:21 +0000439 return SE.getConstant(LHS->getType(), 1);
Dan Gohman572645c2010-02-12 10:34:29 +0000440
Dan Gohmand42819a2010-06-24 16:51:25 +0000441 // Handle a few RHS special cases.
442 const SCEVConstant *RC = dyn_cast<SCEVConstant>(RHS);
443 if (RC) {
444 const APInt &RA = RC->getValue()->getValue();
445 // Handle x /s -1 as x * -1, to give ScalarEvolution a chance to do
446 // some folding.
447 if (RA.isAllOnesValue())
448 return SE.getMulExpr(LHS, RC);
449 // Handle x /s 1 as x.
450 if (RA == 1)
451 return LHS;
452 }
Dan Gohman572645c2010-02-12 10:34:29 +0000453
454 // Check for a division of a constant by a constant.
455 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(LHS)) {
Dan Gohman572645c2010-02-12 10:34:29 +0000456 if (!RC)
457 return 0;
Dan Gohmand42819a2010-06-24 16:51:25 +0000458 const APInt &LA = C->getValue()->getValue();
459 const APInt &RA = RC->getValue()->getValue();
460 if (LA.srem(RA) != 0)
Dan Gohman572645c2010-02-12 10:34:29 +0000461 return 0;
Dan Gohmand42819a2010-06-24 16:51:25 +0000462 return SE.getConstant(LA.sdiv(RA));
Dan Gohman572645c2010-02-12 10:34:29 +0000463 }
464
Dan Gohmanaae01f12010-02-19 19:32:49 +0000465 // Distribute the sdiv over addrec operands, if the addrec doesn't overflow.
Dan Gohman572645c2010-02-12 10:34:29 +0000466 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000467 if (IgnoreSignificantBits || isAddRecSExtable(AR, SE)) {
Dan Gohmanf09b7122010-02-19 19:35:48 +0000468 const SCEV *Step = getExactSDiv(AR->getStepRecurrence(SE), RHS, SE,
469 IgnoreSignificantBits);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000470 if (!Step) return 0;
Dan Gohman694a15e2010-08-19 01:02:31 +0000471 const SCEV *Start = getExactSDiv(AR->getStart(), RHS, SE,
472 IgnoreSignificantBits);
473 if (!Start) return 0;
Andrew Trick3228cc22011-03-14 16:50:06 +0000474 // FlagNW is independent of the start value, step direction, and is
475 // preserved with smaller magnitude steps.
476 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
477 return SE.getAddRecExpr(Start, Step, AR->getLoop(), SCEV::FlagAnyWrap);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000478 }
Dan Gohman2ea09e02010-06-24 16:57:52 +0000479 return 0;
Dan Gohman572645c2010-02-12 10:34:29 +0000480 }
481
Dan Gohmanaae01f12010-02-19 19:32:49 +0000482 // Distribute the sdiv over add operands, if the add doesn't overflow.
Dan Gohman572645c2010-02-12 10:34:29 +0000483 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000484 if (IgnoreSignificantBits || isAddSExtable(Add, SE)) {
485 SmallVector<const SCEV *, 8> Ops;
486 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
487 I != E; ++I) {
Dan Gohmanf09b7122010-02-19 19:35:48 +0000488 const SCEV *Op = getExactSDiv(*I, RHS, SE,
489 IgnoreSignificantBits);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000490 if (!Op) return 0;
491 Ops.push_back(Op);
492 }
493 return SE.getAddExpr(Ops);
Dan Gohman572645c2010-02-12 10:34:29 +0000494 }
Dan Gohman2ea09e02010-06-24 16:57:52 +0000495 return 0;
Dan Gohman572645c2010-02-12 10:34:29 +0000496 }
497
498 // Check for a multiply operand that we can pull RHS out of.
Dan Gohman2ea09e02010-06-24 16:57:52 +0000499 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000500 if (IgnoreSignificantBits || isMulSExtable(Mul, SE)) {
Dan Gohman572645c2010-02-12 10:34:29 +0000501 SmallVector<const SCEV *, 4> Ops;
502 bool Found = false;
503 for (SCEVMulExpr::op_iterator I = Mul->op_begin(), E = Mul->op_end();
504 I != E; ++I) {
Dan Gohman47667442010-05-20 16:23:28 +0000505 const SCEV *S = *I;
Dan Gohman572645c2010-02-12 10:34:29 +0000506 if (!Found)
Dan Gohman47667442010-05-20 16:23:28 +0000507 if (const SCEV *Q = getExactSDiv(S, RHS, SE,
Dan Gohmanf09b7122010-02-19 19:35:48 +0000508 IgnoreSignificantBits)) {
Dan Gohman47667442010-05-20 16:23:28 +0000509 S = Q;
Dan Gohman572645c2010-02-12 10:34:29 +0000510 Found = true;
Dan Gohman572645c2010-02-12 10:34:29 +0000511 }
Dan Gohman47667442010-05-20 16:23:28 +0000512 Ops.push_back(S);
Dan Gohman572645c2010-02-12 10:34:29 +0000513 }
514 return Found ? SE.getMulExpr(Ops) : 0;
515 }
Dan Gohman2ea09e02010-06-24 16:57:52 +0000516 return 0;
517 }
Dan Gohman572645c2010-02-12 10:34:29 +0000518
519 // Otherwise we don't know.
520 return 0;
521}
522
523/// ExtractImmediate - If S involves the addition of a constant integer value,
524/// return that integer value, and mutate S to point to a new SCEV with that
525/// value excluded.
526static int64_t ExtractImmediate(const SCEV *&S, ScalarEvolution &SE) {
527 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) {
528 if (C->getValue()->getValue().getMinSignedBits() <= 64) {
Dan Gohmandeff6212010-05-03 22:09:21 +0000529 S = SE.getConstant(C->getType(), 0);
Dan Gohman572645c2010-02-12 10:34:29 +0000530 return C->getValue()->getSExtValue();
531 }
532 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
533 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
534 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000535 if (Result != 0)
536 S = SE.getAddExpr(NewOps);
Dan Gohman572645c2010-02-12 10:34:29 +0000537 return Result;
538 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
539 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
540 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000541 if (Result != 0)
Andrew Trick3228cc22011-03-14 16:50:06 +0000542 S = SE.getAddRecExpr(NewOps, AR->getLoop(),
543 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
544 SCEV::FlagAnyWrap);
Dan Gohman572645c2010-02-12 10:34:29 +0000545 return Result;
546 }
547 return 0;
548}
549
550/// ExtractSymbol - If S involves the addition of a GlobalValue address,
551/// return that symbol, and mutate S to point to a new SCEV with that
552/// value excluded.
553static GlobalValue *ExtractSymbol(const SCEV *&S, ScalarEvolution &SE) {
554 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
555 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue())) {
Dan Gohmandeff6212010-05-03 22:09:21 +0000556 S = SE.getConstant(GV->getType(), 0);
Dan Gohman572645c2010-02-12 10:34:29 +0000557 return GV;
558 }
559 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
560 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
561 GlobalValue *Result = ExtractSymbol(NewOps.back(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000562 if (Result)
563 S = SE.getAddExpr(NewOps);
Dan Gohman572645c2010-02-12 10:34:29 +0000564 return Result;
565 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
566 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
567 GlobalValue *Result = ExtractSymbol(NewOps.front(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000568 if (Result)
Andrew Trick3228cc22011-03-14 16:50:06 +0000569 S = SE.getAddRecExpr(NewOps, AR->getLoop(),
570 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
571 SCEV::FlagAnyWrap);
Dan Gohman572645c2010-02-12 10:34:29 +0000572 return Result;
573 }
574 return 0;
Nate Begemaneaa13852004-10-18 21:08:22 +0000575}
576
Dan Gohmanf284ce22009-02-18 00:08:39 +0000577/// isAddressUse - Returns true if the specified instruction is using the
Dale Johannesen203af582008-12-05 21:47:27 +0000578/// specified value as an address.
579static bool isAddressUse(Instruction *Inst, Value *OperandVal) {
580 bool isAddress = isa<LoadInst>(Inst);
581 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
582 if (SI->getOperand(1) == OperandVal)
583 isAddress = true;
584 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
585 // Addressing modes can also be folded into prefetches and a variety
586 // of intrinsics.
587 switch (II->getIntrinsicID()) {
588 default: break;
589 case Intrinsic::prefetch:
Dale Johannesen203af582008-12-05 21:47:27 +0000590 case Intrinsic::x86_sse_storeu_ps:
591 case Intrinsic::x86_sse2_storeu_pd:
592 case Intrinsic::x86_sse2_storeu_dq:
593 case Intrinsic::x86_sse2_storel_dq:
Gabor Greifad72e732010-06-30 09:15:28 +0000594 if (II->getArgOperand(0) == OperandVal)
Dale Johannesen203af582008-12-05 21:47:27 +0000595 isAddress = true;
596 break;
597 }
598 }
599 return isAddress;
600}
Chris Lattner0ae33eb2005-10-03 01:04:44 +0000601
Dan Gohman21e77222009-03-09 21:01:17 +0000602/// getAccessType - Return the type of the memory being accessed.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000603static Type *getAccessType(const Instruction *Inst) {
604 Type *AccessTy = Inst->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000605 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst))
Dan Gohmana537bf82009-05-18 16:45:28 +0000606 AccessTy = SI->getOperand(0)->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000607 else if (const 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::x86_sse_storeu_ps:
613 case Intrinsic::x86_sse2_storeu_pd:
614 case Intrinsic::x86_sse2_storeu_dq:
615 case Intrinsic::x86_sse2_storel_dq:
Gabor Greifad72e732010-06-30 09:15:28 +0000616 AccessTy = II->getArgOperand(0)->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000617 break;
618 }
619 }
Dan Gohman572645c2010-02-12 10:34:29 +0000620
621 // All pointers have the same requirements, so canonicalize them to an
622 // arbitrary pointer type to minimize variation.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000623 if (PointerType *PTy = dyn_cast<PointerType>(AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +0000624 AccessTy = PointerType::get(IntegerType::get(PTy->getContext(), 1),
625 PTy->getAddressSpace());
626
Dan Gohmana537bf82009-05-18 16:45:28 +0000627 return AccessTy;
Dan Gohman21e77222009-03-09 21:01:17 +0000628}
629
Dan Gohman572645c2010-02-12 10:34:29 +0000630/// DeleteTriviallyDeadInstructions - If any of the instructions is the
631/// specified set are trivially dead, delete them and see if this makes any of
632/// their operands subsequently dead.
633static bool
634DeleteTriviallyDeadInstructions(SmallVectorImpl<WeakVH> &DeadInsts) {
635 bool Changed = false;
636
637 while (!DeadInsts.empty()) {
Gabor Greiff097b592010-09-18 11:55:34 +0000638 Instruction *I = dyn_cast_or_null<Instruction>(&*DeadInsts.pop_back_val());
Dan Gohman572645c2010-02-12 10:34:29 +0000639
640 if (I == 0 || !isInstructionTriviallyDead(I))
641 continue;
642
643 for (User::op_iterator OI = I->op_begin(), E = I->op_end(); OI != E; ++OI)
644 if (Instruction *U = dyn_cast<Instruction>(*OI)) {
645 *OI = 0;
646 if (U->use_empty())
647 DeadInsts.push_back(U);
648 }
649
650 I->eraseFromParent();
651 Changed = true;
652 }
653
654 return Changed;
655}
656
Dan Gohman7979b722010-01-22 00:46:49 +0000657namespace {
Jim Grosbach56a1f802009-11-17 17:53:56 +0000658
Dan Gohman572645c2010-02-12 10:34:29 +0000659/// Cost - This class is used to measure and compare candidate formulae.
660class Cost {
661 /// TODO: Some of these could be merged. Also, a lexical ordering
662 /// isn't always optimal.
663 unsigned NumRegs;
664 unsigned AddRecCost;
665 unsigned NumIVMuls;
666 unsigned NumBaseAdds;
667 unsigned ImmCost;
668 unsigned SetupCost;
Nate Begeman16997482005-07-30 00:15:07 +0000669
Dan Gohman572645c2010-02-12 10:34:29 +0000670public:
671 Cost()
672 : NumRegs(0), AddRecCost(0), NumIVMuls(0), NumBaseAdds(0), ImmCost(0),
673 SetupCost(0) {}
Jim Grosbach56a1f802009-11-17 17:53:56 +0000674
Dan Gohman572645c2010-02-12 10:34:29 +0000675 bool operator<(const Cost &Other) const;
Dan Gohman7979b722010-01-22 00:46:49 +0000676
Dan Gohman572645c2010-02-12 10:34:29 +0000677 void Loose();
Dan Gohman7979b722010-01-22 00:46:49 +0000678
Andrew Trick7d11bd82011-09-26 23:11:04 +0000679#ifndef NDEBUG
680 // Once any of the metrics loses, they must all remain losers.
681 bool isValid() {
682 return ((NumRegs | AddRecCost | NumIVMuls | NumBaseAdds
683 | ImmCost | SetupCost) != ~0u)
684 || ((NumRegs & AddRecCost & NumIVMuls & NumBaseAdds
685 & ImmCost & SetupCost) == ~0u);
686 }
687#endif
688
689 bool isLoser() {
690 assert(isValid() && "invalid cost");
691 return NumRegs == ~0u;
692 }
693
Dan Gohman572645c2010-02-12 10:34:29 +0000694 void RateFormula(const Formula &F,
695 SmallPtrSet<const SCEV *, 16> &Regs,
696 const DenseSet<const SCEV *> &VisitedRegs,
697 const Loop *L,
698 const SmallVectorImpl<int64_t> &Offsets,
699 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman7979b722010-01-22 00:46:49 +0000700
Dan Gohman572645c2010-02-12 10:34:29 +0000701 void print(raw_ostream &OS) const;
702 void dump() const;
Dan Gohman7979b722010-01-22 00:46:49 +0000703
Dan Gohman572645c2010-02-12 10:34:29 +0000704private:
705 void RateRegister(const SCEV *Reg,
706 SmallPtrSet<const SCEV *, 16> &Regs,
707 const Loop *L,
708 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman9214b822010-02-13 02:06:02 +0000709 void RatePrimaryRegister(const SCEV *Reg,
710 SmallPtrSet<const SCEV *, 16> &Regs,
711 const Loop *L,
712 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000713};
714
715}
716
717/// RateRegister - Tally up interesting quantities from the given register.
718void Cost::RateRegister(const SCEV *Reg,
719 SmallPtrSet<const SCEV *, 16> &Regs,
720 const Loop *L,
721 ScalarEvolution &SE, DominatorTree &DT) {
Dan Gohman9214b822010-02-13 02:06:02 +0000722 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Reg)) {
723 if (AR->getLoop() == L)
724 AddRecCost += 1; /// TODO: This should be a function of the stride.
Dan Gohman572645c2010-02-12 10:34:29 +0000725
Dan Gohman9214b822010-02-13 02:06:02 +0000726 // If this is an addrec for a loop that's already been visited by LSR,
727 // don't second-guess its addrec phi nodes. LSR isn't currently smart
728 // enough to reason about more than one loop at a time. Consider these
729 // registers free and leave them alone.
730 else if (L->contains(AR->getLoop()) ||
731 (!AR->getLoop()->contains(L) &&
732 DT.dominates(L->getHeader(), AR->getLoop()->getHeader()))) {
733 for (BasicBlock::iterator I = AR->getLoop()->getHeader()->begin();
Andrew Trick7d11bd82011-09-26 23:11:04 +0000734 PHINode *PN = dyn_cast<PHINode>(I); ++I) {
Dan Gohman9214b822010-02-13 02:06:02 +0000735 if (SE.isSCEVable(PN->getType()) &&
736 (SE.getEffectiveSCEVType(PN->getType()) ==
737 SE.getEffectiveSCEVType(AR->getType())) &&
738 SE.getSCEV(PN) == AR)
739 return;
Andrew Trick7d11bd82011-09-26 23:11:04 +0000740 }
Dan Gohman9214b822010-02-13 02:06:02 +0000741 // If this isn't one of the addrecs that the loop already has, it
742 // would require a costly new phi and add. TODO: This isn't
743 // precisely modeled right now.
744 ++NumBaseAdds;
Andrew Trick7d11bd82011-09-26 23:11:04 +0000745 if (!Regs.count(AR->getStart())) {
Dan Gohman572645c2010-02-12 10:34:29 +0000746 RateRegister(AR->getStart(), Regs, L, SE, DT);
Andrew Trick7d11bd82011-09-26 23:11:04 +0000747 if (isLoser())
748 return;
749 }
Dan Gohman572645c2010-02-12 10:34:29 +0000750 }
Dan Gohman572645c2010-02-12 10:34:29 +0000751
Dan Gohman9214b822010-02-13 02:06:02 +0000752 // Add the step value register, if it needs one.
753 // TODO: The non-affine case isn't precisely modeled here.
Andrew Trick25b689e2011-09-26 23:35:25 +0000754 if (!AR->isAffine() || !isa<SCEVConstant>(AR->getOperand(1))) {
755 if (!Regs.count(AR->getOperand(1))) {
Dan Gohman9214b822010-02-13 02:06:02 +0000756 RateRegister(AR->getOperand(1), Regs, L, SE, DT);
Andrew Trick25b689e2011-09-26 23:35:25 +0000757 if (isLoser())
758 return;
759 }
760 }
Dan Gohman572645c2010-02-12 10:34:29 +0000761 }
Dan Gohman9214b822010-02-13 02:06:02 +0000762 ++NumRegs;
763
764 // Rough heuristic; favor registers which don't require extra setup
765 // instructions in the preheader.
766 if (!isa<SCEVUnknown>(Reg) &&
767 !isa<SCEVConstant>(Reg) &&
768 !(isa<SCEVAddRecExpr>(Reg) &&
769 (isa<SCEVUnknown>(cast<SCEVAddRecExpr>(Reg)->getStart()) ||
770 isa<SCEVConstant>(cast<SCEVAddRecExpr>(Reg)->getStart()))))
771 ++SetupCost;
Dan Gohman23c3fde2010-10-07 23:41:58 +0000772
773 NumIVMuls += isa<SCEVMulExpr>(Reg) &&
Dan Gohman17ead4f2010-11-17 21:23:15 +0000774 SE.hasComputableLoopEvolution(Reg, L);
Dan Gohman9214b822010-02-13 02:06:02 +0000775}
776
777/// RatePrimaryRegister - Record this register in the set. If we haven't seen it
778/// before, rate it.
779void Cost::RatePrimaryRegister(const SCEV *Reg,
Dan Gohman7fca2292010-02-16 19:42:34 +0000780 SmallPtrSet<const SCEV *, 16> &Regs,
781 const Loop *L,
782 ScalarEvolution &SE, DominatorTree &DT) {
Dan Gohman9214b822010-02-13 02:06:02 +0000783 if (Regs.insert(Reg))
784 RateRegister(Reg, Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000785}
786
787void Cost::RateFormula(const Formula &F,
788 SmallPtrSet<const SCEV *, 16> &Regs,
789 const DenseSet<const SCEV *> &VisitedRegs,
790 const Loop *L,
791 const SmallVectorImpl<int64_t> &Offsets,
792 ScalarEvolution &SE, DominatorTree &DT) {
793 // Tally up the registers.
794 if (const SCEV *ScaledReg = F.ScaledReg) {
795 if (VisitedRegs.count(ScaledReg)) {
796 Loose();
797 return;
798 }
Dan Gohman9214b822010-02-13 02:06:02 +0000799 RatePrimaryRegister(ScaledReg, Regs, L, SE, DT);
Andrew Trick7d11bd82011-09-26 23:11:04 +0000800 if (isLoser())
801 return;
Dan Gohman572645c2010-02-12 10:34:29 +0000802 }
803 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
804 E = F.BaseRegs.end(); I != E; ++I) {
805 const SCEV *BaseReg = *I;
806 if (VisitedRegs.count(BaseReg)) {
807 Loose();
808 return;
809 }
Dan Gohman9214b822010-02-13 02:06:02 +0000810 RatePrimaryRegister(BaseReg, Regs, L, SE, DT);
Andrew Trick7d11bd82011-09-26 23:11:04 +0000811 if (isLoser())
812 return;
Dan Gohman572645c2010-02-12 10:34:29 +0000813 }
814
Dan Gohmancca82142011-05-03 00:46:49 +0000815 // Determine how many (unfolded) adds we'll need inside the loop.
816 size_t NumBaseParts = F.BaseRegs.size() + (F.UnfoldedOffset != 0);
817 if (NumBaseParts > 1)
818 NumBaseAdds += NumBaseParts - 1;
Dan Gohman572645c2010-02-12 10:34:29 +0000819
820 // Tally up the non-zero immediates.
821 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
822 E = Offsets.end(); I != E; ++I) {
823 int64_t Offset = (uint64_t)*I + F.AM.BaseOffs;
824 if (F.AM.BaseGV)
825 ImmCost += 64; // Handle symbolic values conservatively.
826 // TODO: This should probably be the pointer size.
827 else if (Offset != 0)
828 ImmCost += APInt(64, Offset, true).getMinSignedBits();
829 }
Andrew Trick7d11bd82011-09-26 23:11:04 +0000830 assert(isValid() && "invalid cost");
Dan Gohman572645c2010-02-12 10:34:29 +0000831}
832
Chris Lattner7a2bdde2011-04-15 05:18:47 +0000833/// Loose - Set this cost to a losing value.
Dan Gohman572645c2010-02-12 10:34:29 +0000834void Cost::Loose() {
835 NumRegs = ~0u;
836 AddRecCost = ~0u;
837 NumIVMuls = ~0u;
838 NumBaseAdds = ~0u;
839 ImmCost = ~0u;
840 SetupCost = ~0u;
841}
842
843/// operator< - Choose the lower cost.
844bool Cost::operator<(const Cost &Other) const {
845 if (NumRegs != Other.NumRegs)
846 return NumRegs < Other.NumRegs;
847 if (AddRecCost != Other.AddRecCost)
848 return AddRecCost < Other.AddRecCost;
849 if (NumIVMuls != Other.NumIVMuls)
850 return NumIVMuls < Other.NumIVMuls;
851 if (NumBaseAdds != Other.NumBaseAdds)
852 return NumBaseAdds < Other.NumBaseAdds;
853 if (ImmCost != Other.ImmCost)
854 return ImmCost < Other.ImmCost;
855 if (SetupCost != Other.SetupCost)
856 return SetupCost < Other.SetupCost;
857 return false;
858}
859
860void Cost::print(raw_ostream &OS) const {
861 OS << NumRegs << " reg" << (NumRegs == 1 ? "" : "s");
862 if (AddRecCost != 0)
863 OS << ", with addrec cost " << AddRecCost;
864 if (NumIVMuls != 0)
865 OS << ", plus " << NumIVMuls << " IV mul" << (NumIVMuls == 1 ? "" : "s");
866 if (NumBaseAdds != 0)
867 OS << ", plus " << NumBaseAdds << " base add"
868 << (NumBaseAdds == 1 ? "" : "s");
869 if (ImmCost != 0)
870 OS << ", plus " << ImmCost << " imm cost";
871 if (SetupCost != 0)
872 OS << ", plus " << SetupCost << " setup cost";
873}
874
875void Cost::dump() const {
876 print(errs()); errs() << '\n';
877}
878
879namespace {
880
881/// LSRFixup - An operand value in an instruction which is to be replaced
882/// with some equivalent, possibly strength-reduced, replacement.
883struct LSRFixup {
884 /// UserInst - The instruction which will be updated.
885 Instruction *UserInst;
886
887 /// OperandValToReplace - The operand of the instruction which will
888 /// be replaced. The operand may be used more than once; every instance
889 /// will be replaced.
890 Value *OperandValToReplace;
891
Dan Gohman448db1c2010-04-07 22:27:08 +0000892 /// PostIncLoops - If this user is to use the post-incremented value of an
Dan Gohman572645c2010-02-12 10:34:29 +0000893 /// induction variable, this variable is non-null and holds the loop
894 /// associated with the induction variable.
Dan Gohman448db1c2010-04-07 22:27:08 +0000895 PostIncLoopSet PostIncLoops;
Dan Gohman572645c2010-02-12 10:34:29 +0000896
897 /// LUIdx - The index of the LSRUse describing the expression which
898 /// this fixup needs, minus an offset (below).
899 size_t LUIdx;
900
901 /// Offset - A constant offset to be added to the LSRUse expression.
902 /// This allows multiple fixups to share the same LSRUse with different
903 /// offsets, for example in an unrolled loop.
904 int64_t Offset;
905
Dan Gohman448db1c2010-04-07 22:27:08 +0000906 bool isUseFullyOutsideLoop(const Loop *L) const;
907
Dan Gohman572645c2010-02-12 10:34:29 +0000908 LSRFixup();
909
910 void print(raw_ostream &OS) const;
911 void dump() const;
912};
913
914}
915
916LSRFixup::LSRFixup()
Dan Gohmanea507f52010-05-20 19:44:23 +0000917 : UserInst(0), OperandValToReplace(0), LUIdx(~size_t(0)), Offset(0) {}
Dan Gohman572645c2010-02-12 10:34:29 +0000918
Dan Gohman448db1c2010-04-07 22:27:08 +0000919/// isUseFullyOutsideLoop - Test whether this fixup always uses its
920/// value outside of the given loop.
921bool LSRFixup::isUseFullyOutsideLoop(const Loop *L) const {
922 // PHI nodes use their value in their incoming blocks.
923 if (const PHINode *PN = dyn_cast<PHINode>(UserInst)) {
924 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
925 if (PN->getIncomingValue(i) == OperandValToReplace &&
926 L->contains(PN->getIncomingBlock(i)))
927 return false;
928 return true;
929 }
930
931 return !L->contains(UserInst);
932}
933
Dan Gohman572645c2010-02-12 10:34:29 +0000934void LSRFixup::print(raw_ostream &OS) const {
935 OS << "UserInst=";
936 // Store is common and interesting enough to be worth special-casing.
937 if (StoreInst *Store = dyn_cast<StoreInst>(UserInst)) {
938 OS << "store ";
939 WriteAsOperand(OS, Store->getOperand(0), /*PrintType=*/false);
940 } else if (UserInst->getType()->isVoidTy())
941 OS << UserInst->getOpcodeName();
942 else
943 WriteAsOperand(OS, UserInst, /*PrintType=*/false);
944
945 OS << ", OperandValToReplace=";
946 WriteAsOperand(OS, OperandValToReplace, /*PrintType=*/false);
947
Dan Gohman448db1c2010-04-07 22:27:08 +0000948 for (PostIncLoopSet::const_iterator I = PostIncLoops.begin(),
949 E = PostIncLoops.end(); I != E; ++I) {
Dan Gohman572645c2010-02-12 10:34:29 +0000950 OS << ", PostIncLoop=";
Dan Gohman448db1c2010-04-07 22:27:08 +0000951 WriteAsOperand(OS, (*I)->getHeader(), /*PrintType=*/false);
Dan Gohman572645c2010-02-12 10:34:29 +0000952 }
953
954 if (LUIdx != ~size_t(0))
955 OS << ", LUIdx=" << LUIdx;
956
957 if (Offset != 0)
958 OS << ", Offset=" << Offset;
959}
960
961void LSRFixup::dump() const {
962 print(errs()); errs() << '\n';
963}
964
965namespace {
966
967/// UniquifierDenseMapInfo - A DenseMapInfo implementation for holding
968/// DenseMaps and DenseSets of sorted SmallVectors of const SCEV*.
969struct UniquifierDenseMapInfo {
970 static SmallVector<const SCEV *, 2> getEmptyKey() {
971 SmallVector<const SCEV *, 2> V;
972 V.push_back(reinterpret_cast<const SCEV *>(-1));
973 return V;
974 }
975
976 static SmallVector<const SCEV *, 2> getTombstoneKey() {
977 SmallVector<const SCEV *, 2> V;
978 V.push_back(reinterpret_cast<const SCEV *>(-2));
979 return V;
980 }
981
982 static unsigned getHashValue(const SmallVector<const SCEV *, 2> &V) {
983 unsigned Result = 0;
984 for (SmallVectorImpl<const SCEV *>::const_iterator I = V.begin(),
985 E = V.end(); I != E; ++I)
986 Result ^= DenseMapInfo<const SCEV *>::getHashValue(*I);
987 return Result;
988 }
989
990 static bool isEqual(const SmallVector<const SCEV *, 2> &LHS,
991 const SmallVector<const SCEV *, 2> &RHS) {
992 return LHS == RHS;
993 }
994};
995
996/// LSRUse - This class holds the state that LSR keeps for each use in
997/// IVUsers, as well as uses invented by LSR itself. It includes information
998/// about what kinds of things can be folded into the user, information about
999/// the user itself, and information about how the use may be satisfied.
1000/// TODO: Represent multiple users of the same expression in common?
1001class LSRUse {
1002 DenseSet<SmallVector<const SCEV *, 2>, UniquifierDenseMapInfo> Uniquifier;
1003
1004public:
1005 /// KindType - An enum for a kind of use, indicating what types of
1006 /// scaled and immediate operands it might support.
1007 enum KindType {
1008 Basic, ///< A normal use, with no folding.
1009 Special, ///< A special case of basic, allowing -1 scales.
1010 Address, ///< An address use; folding according to TargetLowering
1011 ICmpZero ///< An equality icmp with both operands folded into one.
1012 // TODO: Add a generic icmp too?
Dan Gohman7979b722010-01-22 00:46:49 +00001013 };
Dan Gohman572645c2010-02-12 10:34:29 +00001014
1015 KindType Kind;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001016 Type *AccessTy;
Dan Gohman572645c2010-02-12 10:34:29 +00001017
1018 SmallVector<int64_t, 8> Offsets;
1019 int64_t MinOffset;
1020 int64_t MaxOffset;
1021
1022 /// AllFixupsOutsideLoop - This records whether all of the fixups using this
1023 /// LSRUse are outside of the loop, in which case some special-case heuristics
1024 /// may be used.
1025 bool AllFixupsOutsideLoop;
1026
Dan Gohmana9db1292010-07-15 20:24:58 +00001027 /// WidestFixupType - This records the widest use type for any fixup using
1028 /// this LSRUse. FindUseWithSimilarFormula can't consider uses with different
1029 /// max fixup widths to be equivalent, because the narrower one may be relying
1030 /// on the implicit truncation to truncate away bogus bits.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001031 Type *WidestFixupType;
Dan Gohmana9db1292010-07-15 20:24:58 +00001032
Dan Gohman572645c2010-02-12 10:34:29 +00001033 /// Formulae - A list of ways to build a value that can satisfy this user.
1034 /// After the list is populated, one of these is selected heuristically and
1035 /// used to formulate a replacement for OperandValToReplace in UserInst.
1036 SmallVector<Formula, 12> Formulae;
1037
1038 /// Regs - The set of register candidates used by all formulae in this LSRUse.
1039 SmallPtrSet<const SCEV *, 4> Regs;
1040
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001041 LSRUse(KindType K, Type *T) : Kind(K), AccessTy(T),
Dan Gohman572645c2010-02-12 10:34:29 +00001042 MinOffset(INT64_MAX),
1043 MaxOffset(INT64_MIN),
Dan Gohmana9db1292010-07-15 20:24:58 +00001044 AllFixupsOutsideLoop(true),
1045 WidestFixupType(0) {}
Dan Gohman572645c2010-02-12 10:34:29 +00001046
Dan Gohmana2086b32010-05-19 23:43:12 +00001047 bool HasFormulaWithSameRegs(const Formula &F) const;
Dan Gohman454d26d2010-02-22 04:11:59 +00001048 bool InsertFormula(const Formula &F);
Dan Gohmand69d6282010-05-18 22:39:15 +00001049 void DeleteFormula(Formula &F);
Dan Gohmanb2df4332010-05-18 23:42:37 +00001050 void RecomputeRegs(size_t LUIdx, RegUseTracker &Reguses);
Dan Gohman572645c2010-02-12 10:34:29 +00001051
Dan Gohman572645c2010-02-12 10:34:29 +00001052 void print(raw_ostream &OS) const;
1053 void dump() const;
1054};
1055
Dan Gohmanb6211712010-06-19 21:21:39 +00001056}
1057
Dan Gohmana2086b32010-05-19 23:43:12 +00001058/// HasFormula - Test whether this use as a formula which has the same
1059/// registers as the given formula.
1060bool LSRUse::HasFormulaWithSameRegs(const Formula &F) const {
1061 SmallVector<const SCEV *, 2> Key = F.BaseRegs;
1062 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1063 // Unstable sort by host order ok, because this is only used for uniquifying.
1064 std::sort(Key.begin(), Key.end());
1065 return Uniquifier.count(Key);
1066}
1067
Dan Gohman572645c2010-02-12 10:34:29 +00001068/// InsertFormula - If the given formula has not yet been inserted, add it to
1069/// the list, and return true. Return false otherwise.
Dan Gohman454d26d2010-02-22 04:11:59 +00001070bool LSRUse::InsertFormula(const Formula &F) {
Dan Gohman572645c2010-02-12 10:34:29 +00001071 SmallVector<const SCEV *, 2> Key = F.BaseRegs;
1072 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1073 // Unstable sort by host order ok, because this is only used for uniquifying.
1074 std::sort(Key.begin(), Key.end());
1075
1076 if (!Uniquifier.insert(Key).second)
1077 return false;
1078
1079 // Using a register to hold the value of 0 is not profitable.
1080 assert((!F.ScaledReg || !F.ScaledReg->isZero()) &&
1081 "Zero allocated in a scaled register!");
1082#ifndef NDEBUG
1083 for (SmallVectorImpl<const SCEV *>::const_iterator I =
1084 F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I)
1085 assert(!(*I)->isZero() && "Zero allocated in a base register!");
1086#endif
1087
1088 // Add the formula to the list.
1089 Formulae.push_back(F);
1090
1091 // Record registers now being used by this use.
1092 if (F.ScaledReg) Regs.insert(F.ScaledReg);
1093 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1094
1095 return true;
Dan Gohman7979b722010-01-22 00:46:49 +00001096}
1097
Dan Gohmand69d6282010-05-18 22:39:15 +00001098/// DeleteFormula - Remove the given formula from this use's list.
1099void LSRUse::DeleteFormula(Formula &F) {
Dan Gohman5ce6d052010-05-20 15:17:54 +00001100 if (&F != &Formulae.back())
1101 std::swap(F, Formulae.back());
Dan Gohmand69d6282010-05-18 22:39:15 +00001102 Formulae.pop_back();
Dan Gohmana2086b32010-05-19 23:43:12 +00001103 assert(!Formulae.empty() && "LSRUse has no formulae left!");
Dan Gohmand69d6282010-05-18 22:39:15 +00001104}
1105
Dan Gohmanb2df4332010-05-18 23:42:37 +00001106/// RecomputeRegs - Recompute the Regs field, and update RegUses.
1107void LSRUse::RecomputeRegs(size_t LUIdx, RegUseTracker &RegUses) {
1108 // Now that we've filtered out some formulae, recompute the Regs set.
1109 SmallPtrSet<const SCEV *, 4> OldRegs = Regs;
1110 Regs.clear();
Dan Gohman402d4352010-05-20 20:33:18 +00001111 for (SmallVectorImpl<Formula>::const_iterator I = Formulae.begin(),
1112 E = Formulae.end(); I != E; ++I) {
1113 const Formula &F = *I;
Dan Gohmanb2df4332010-05-18 23:42:37 +00001114 if (F.ScaledReg) Regs.insert(F.ScaledReg);
1115 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1116 }
1117
1118 // Update the RegTracker.
1119 for (SmallPtrSet<const SCEV *, 4>::iterator I = OldRegs.begin(),
1120 E = OldRegs.end(); I != E; ++I)
1121 if (!Regs.count(*I))
1122 RegUses.DropRegister(*I, LUIdx);
1123}
1124
Dan Gohman572645c2010-02-12 10:34:29 +00001125void LSRUse::print(raw_ostream &OS) const {
1126 OS << "LSR Use: Kind=";
1127 switch (Kind) {
1128 case Basic: OS << "Basic"; break;
1129 case Special: OS << "Special"; break;
1130 case ICmpZero: OS << "ICmpZero"; break;
1131 case Address:
1132 OS << "Address of ";
Duncan Sands1df98592010-02-16 11:11:14 +00001133 if (AccessTy->isPointerTy())
Dan Gohman572645c2010-02-12 10:34:29 +00001134 OS << "pointer"; // the full pointer type could be really verbose
1135 else
1136 OS << *AccessTy;
Evan Chengcdf43b12007-10-25 09:11:16 +00001137 }
1138
Dan Gohman572645c2010-02-12 10:34:29 +00001139 OS << ", Offsets={";
1140 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
1141 E = Offsets.end(); I != E; ++I) {
1142 OS << *I;
Oscar Fuentesee56c422010-08-02 06:00:15 +00001143 if (llvm::next(I) != E)
Dan Gohman572645c2010-02-12 10:34:29 +00001144 OS << ',';
Dan Gohman7979b722010-01-22 00:46:49 +00001145 }
Dan Gohman572645c2010-02-12 10:34:29 +00001146 OS << '}';
Dan Gohman7979b722010-01-22 00:46:49 +00001147
Dan Gohman572645c2010-02-12 10:34:29 +00001148 if (AllFixupsOutsideLoop)
1149 OS << ", all-fixups-outside-loop";
Dan Gohmana9db1292010-07-15 20:24:58 +00001150
1151 if (WidestFixupType)
1152 OS << ", widest fixup type: " << *WidestFixupType;
Dan Gohman7979b722010-01-22 00:46:49 +00001153}
1154
Dan Gohman572645c2010-02-12 10:34:29 +00001155void LSRUse::dump() const {
1156 print(errs()); errs() << '\n';
1157}
Dan Gohman7979b722010-01-22 00:46:49 +00001158
Dan Gohman572645c2010-02-12 10:34:29 +00001159/// isLegalUse - Test whether the use described by AM is "legal", meaning it can
1160/// be completely folded into the user instruction at isel time. This includes
1161/// address-mode folding and special icmp tricks.
1162static bool isLegalUse(const TargetLowering::AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001163 LSRUse::KindType Kind, Type *AccessTy,
Dan Gohman572645c2010-02-12 10:34:29 +00001164 const TargetLowering *TLI) {
1165 switch (Kind) {
1166 case LSRUse::Address:
1167 // If we have low-level target information, ask the target if it can
1168 // completely fold this address.
1169 if (TLI) return TLI->isLegalAddressingMode(AM, AccessTy);
1170
1171 // Otherwise, just guess that reg+reg addressing is legal.
1172 return !AM.BaseGV && AM.BaseOffs == 0 && AM.Scale <= 1;
1173
1174 case LSRUse::ICmpZero:
1175 // There's not even a target hook for querying whether it would be legal to
1176 // fold a GV into an ICmp.
1177 if (AM.BaseGV)
1178 return false;
1179
1180 // ICmp only has two operands; don't allow more than two non-trivial parts.
1181 if (AM.Scale != 0 && AM.HasBaseReg && AM.BaseOffs != 0)
1182 return false;
1183
1184 // ICmp only supports no scale or a -1 scale, as we can "fold" a -1 scale by
1185 // putting the scaled register in the other operand of the icmp.
1186 if (AM.Scale != 0 && AM.Scale != -1)
1187 return false;
1188
1189 // If we have low-level target information, ask the target if it can fold an
1190 // integer immediate on an icmp.
1191 if (AM.BaseOffs != 0) {
1192 if (TLI) return TLI->isLegalICmpImmediate(-AM.BaseOffs);
1193 return false;
Dan Gohman7979b722010-01-22 00:46:49 +00001194 }
Dan Gohman572645c2010-02-12 10:34:29 +00001195
1196 return true;
1197
1198 case LSRUse::Basic:
1199 // Only handle single-register values.
1200 return !AM.BaseGV && AM.Scale == 0 && AM.BaseOffs == 0;
1201
1202 case LSRUse::Special:
1203 // Only handle -1 scales, or no scale.
1204 return AM.Scale == 0 || AM.Scale == -1;
Dan Gohman7979b722010-01-22 00:46:49 +00001205 }
1206
Dan Gohman7979b722010-01-22 00:46:49 +00001207 return false;
1208}
1209
Dan Gohman572645c2010-02-12 10:34:29 +00001210static bool isLegalUse(TargetLowering::AddrMode AM,
1211 int64_t MinOffset, int64_t MaxOffset,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001212 LSRUse::KindType Kind, Type *AccessTy,
Dan Gohman572645c2010-02-12 10:34:29 +00001213 const TargetLowering *TLI) {
1214 // Check for overflow.
1215 if (((int64_t)((uint64_t)AM.BaseOffs + MinOffset) > AM.BaseOffs) !=
1216 (MinOffset > 0))
1217 return false;
1218 AM.BaseOffs = (uint64_t)AM.BaseOffs + MinOffset;
1219 if (isLegalUse(AM, Kind, AccessTy, TLI)) {
1220 AM.BaseOffs = (uint64_t)AM.BaseOffs - MinOffset;
1221 // Check for overflow.
1222 if (((int64_t)((uint64_t)AM.BaseOffs + MaxOffset) > AM.BaseOffs) !=
1223 (MaxOffset > 0))
1224 return false;
1225 AM.BaseOffs = (uint64_t)AM.BaseOffs + MaxOffset;
1226 return isLegalUse(AM, Kind, AccessTy, TLI);
Dan Gohman7979b722010-01-22 00:46:49 +00001227 }
Dan Gohman572645c2010-02-12 10:34:29 +00001228 return false;
Dan Gohman7979b722010-01-22 00:46:49 +00001229}
1230
Dan Gohman572645c2010-02-12 10:34:29 +00001231static bool isAlwaysFoldable(int64_t BaseOffs,
1232 GlobalValue *BaseGV,
1233 bool HasBaseReg,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001234 LSRUse::KindType Kind, Type *AccessTy,
Dan Gohman454d26d2010-02-22 04:11:59 +00001235 const TargetLowering *TLI) {
Dan Gohman572645c2010-02-12 10:34:29 +00001236 // Fast-path: zero is always foldable.
1237 if (BaseOffs == 0 && !BaseGV) return true;
Dan Gohman7979b722010-01-22 00:46:49 +00001238
Dan Gohman572645c2010-02-12 10:34:29 +00001239 // Conservatively, create an address with an immediate and a
1240 // base and a scale.
1241 TargetLowering::AddrMode AM;
1242 AM.BaseOffs = BaseOffs;
1243 AM.BaseGV = BaseGV;
1244 AM.HasBaseReg = HasBaseReg;
1245 AM.Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman7979b722010-01-22 00:46:49 +00001246
Dan Gohmana2086b32010-05-19 23:43:12 +00001247 // Canonicalize a scale of 1 to a base register if the formula doesn't
1248 // already have a base register.
1249 if (!AM.HasBaseReg && AM.Scale == 1) {
1250 AM.Scale = 0;
1251 AM.HasBaseReg = true;
1252 }
1253
Dan Gohman572645c2010-02-12 10:34:29 +00001254 return isLegalUse(AM, Kind, AccessTy, TLI);
Dan Gohman7979b722010-01-22 00:46:49 +00001255}
1256
Dan Gohman572645c2010-02-12 10:34:29 +00001257static bool isAlwaysFoldable(const SCEV *S,
1258 int64_t MinOffset, int64_t MaxOffset,
1259 bool HasBaseReg,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001260 LSRUse::KindType Kind, Type *AccessTy,
Dan Gohman572645c2010-02-12 10:34:29 +00001261 const TargetLowering *TLI,
1262 ScalarEvolution &SE) {
1263 // Fast-path: zero is always foldable.
1264 if (S->isZero()) return true;
1265
1266 // Conservatively, create an address with an immediate and a
1267 // base and a scale.
1268 int64_t BaseOffs = ExtractImmediate(S, SE);
1269 GlobalValue *BaseGV = ExtractSymbol(S, SE);
1270
1271 // If there's anything else involved, it's not foldable.
1272 if (!S->isZero()) return false;
1273
1274 // Fast-path: zero is always foldable.
1275 if (BaseOffs == 0 && !BaseGV) return true;
1276
1277 // Conservatively, create an address with an immediate and a
1278 // base and a scale.
1279 TargetLowering::AddrMode AM;
1280 AM.BaseOffs = BaseOffs;
1281 AM.BaseGV = BaseGV;
1282 AM.HasBaseReg = HasBaseReg;
1283 AM.Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
1284
1285 return isLegalUse(AM, MinOffset, MaxOffset, Kind, AccessTy, TLI);
Dan Gohman7979b722010-01-22 00:46:49 +00001286}
1287
Dan Gohmanb6211712010-06-19 21:21:39 +00001288namespace {
1289
Dan Gohman1e3121c2010-06-19 21:29:59 +00001290/// UseMapDenseMapInfo - A DenseMapInfo implementation for holding
1291/// DenseMaps and DenseSets of pairs of const SCEV* and LSRUse::Kind.
1292struct UseMapDenseMapInfo {
1293 static std::pair<const SCEV *, LSRUse::KindType> getEmptyKey() {
1294 return std::make_pair(reinterpret_cast<const SCEV *>(-1), LSRUse::Basic);
1295 }
1296
1297 static std::pair<const SCEV *, LSRUse::KindType> getTombstoneKey() {
1298 return std::make_pair(reinterpret_cast<const SCEV *>(-2), LSRUse::Basic);
1299 }
1300
1301 static unsigned
1302 getHashValue(const std::pair<const SCEV *, LSRUse::KindType> &V) {
1303 unsigned Result = DenseMapInfo<const SCEV *>::getHashValue(V.first);
1304 Result ^= DenseMapInfo<unsigned>::getHashValue(unsigned(V.second));
1305 return Result;
1306 }
1307
1308 static bool isEqual(const std::pair<const SCEV *, LSRUse::KindType> &LHS,
1309 const std::pair<const SCEV *, LSRUse::KindType> &RHS) {
1310 return LHS == RHS;
1311 }
1312};
1313
Dan Gohman572645c2010-02-12 10:34:29 +00001314/// LSRInstance - This class holds state for the main loop strength reduction
1315/// logic.
1316class LSRInstance {
1317 IVUsers &IU;
1318 ScalarEvolution &SE;
1319 DominatorTree &DT;
Dan Gohmane5f76872010-04-09 22:07:05 +00001320 LoopInfo &LI;
Dan Gohman572645c2010-02-12 10:34:29 +00001321 const TargetLowering *const TLI;
1322 Loop *const L;
1323 bool Changed;
1324
1325 /// IVIncInsertPos - This is the insert position that the current loop's
1326 /// induction variable increment should be placed. In simple loops, this is
1327 /// the latch block's terminator. But in more complicated cases, this is a
1328 /// position which will dominate all the in-loop post-increment users.
1329 Instruction *IVIncInsertPos;
1330
1331 /// Factors - Interesting factors between use strides.
1332 SmallSetVector<int64_t, 8> Factors;
1333
1334 /// Types - Interesting use types, to facilitate truncation reuse.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001335 SmallSetVector<Type *, 4> Types;
Dan Gohman572645c2010-02-12 10:34:29 +00001336
1337 /// Fixups - The list of operands which are to be replaced.
1338 SmallVector<LSRFixup, 16> Fixups;
1339
1340 /// Uses - The list of interesting uses.
1341 SmallVector<LSRUse, 16> Uses;
1342
1343 /// RegUses - Track which uses use which register candidates.
1344 RegUseTracker RegUses;
1345
1346 void OptimizeShadowIV();
1347 bool FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse);
1348 ICmpInst *OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse);
Dan Gohmanc6519f92010-05-20 20:05:31 +00001349 void OptimizeLoopTermCond();
Dan Gohman572645c2010-02-12 10:34:29 +00001350
1351 void CollectInterestingTypesAndFactors();
1352 void CollectFixupsAndInitialFormulae();
1353
1354 LSRFixup &getNewFixup() {
1355 Fixups.push_back(LSRFixup());
1356 return Fixups.back();
1357 }
1358
1359 // Support for sharing of LSRUses between LSRFixups.
Dan Gohman1e3121c2010-06-19 21:29:59 +00001360 typedef DenseMap<std::pair<const SCEV *, LSRUse::KindType>,
1361 size_t,
1362 UseMapDenseMapInfo> UseMapTy;
Dan Gohman572645c2010-02-12 10:34:29 +00001363 UseMapTy UseMap;
1364
Dan Gohman191bd642010-09-01 01:45:53 +00001365 bool reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001366 LSRUse::KindType Kind, Type *AccessTy);
Dan Gohman572645c2010-02-12 10:34:29 +00001367
1368 std::pair<size_t, int64_t> getUse(const SCEV *&Expr,
1369 LSRUse::KindType Kind,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001370 Type *AccessTy);
Dan Gohman572645c2010-02-12 10:34:29 +00001371
Dan Gohmanc6897702010-10-07 23:33:43 +00001372 void DeleteUse(LSRUse &LU, size_t LUIdx);
Dan Gohman5ce6d052010-05-20 15:17:54 +00001373
Dan Gohman191bd642010-09-01 01:45:53 +00001374 LSRUse *FindUseWithSimilarFormula(const Formula &F, const LSRUse &OrigLU);
Dan Gohmana2086b32010-05-19 23:43:12 +00001375
Dan Gohman572645c2010-02-12 10:34:29 +00001376public:
Dan Gohman454d26d2010-02-22 04:11:59 +00001377 void InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
Dan Gohman572645c2010-02-12 10:34:29 +00001378 void InsertSupplementalFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
1379 void CountRegisters(const Formula &F, size_t LUIdx);
1380 bool InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F);
1381
1382 void CollectLoopInvariantFixupsAndFormulae();
1383
1384 void GenerateReassociations(LSRUse &LU, unsigned LUIdx, Formula Base,
1385 unsigned Depth = 0);
1386 void GenerateCombinations(LSRUse &LU, unsigned LUIdx, Formula Base);
1387 void GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1388 void GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1389 void GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1390 void GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1391 void GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base);
1392 void GenerateCrossUseConstantOffsets();
1393 void GenerateAllReuseFormulae();
1394
1395 void FilterOutUndesirableDedicatedRegisters();
Dan Gohmand079c302010-05-18 22:51:59 +00001396
1397 size_t EstimateSearchSpaceComplexity() const;
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00001398 void NarrowSearchSpaceByDetectingSupersets();
1399 void NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman4f7e18d2010-08-29 16:39:22 +00001400 void NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00001401 void NarrowSearchSpaceByPickingWinnerRegs();
Dan Gohman572645c2010-02-12 10:34:29 +00001402 void NarrowSearchSpaceUsingHeuristics();
1403
1404 void SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
1405 Cost &SolutionCost,
1406 SmallVectorImpl<const Formula *> &Workspace,
1407 const Cost &CurCost,
1408 const SmallPtrSet<const SCEV *, 16> &CurRegs,
1409 DenseSet<const SCEV *> &VisitedRegs) const;
1410 void Solve(SmallVectorImpl<const Formula *> &Solution) const;
1411
Dan Gohmane5f76872010-04-09 22:07:05 +00001412 BasicBlock::iterator
1413 HoistInsertPosition(BasicBlock::iterator IP,
1414 const SmallVectorImpl<Instruction *> &Inputs) const;
1415 BasicBlock::iterator AdjustInsertPositionForExpand(BasicBlock::iterator IP,
1416 const LSRFixup &LF,
1417 const LSRUse &LU) const;
Dan Gohmand96eae82010-04-09 02:00:38 +00001418
Dan Gohman572645c2010-02-12 10:34:29 +00001419 Value *Expand(const LSRFixup &LF,
1420 const Formula &F,
Dan Gohman454d26d2010-02-22 04:11:59 +00001421 BasicBlock::iterator IP,
Dan Gohman572645c2010-02-12 10:34:29 +00001422 SCEVExpander &Rewriter,
Dan Gohman454d26d2010-02-22 04:11:59 +00001423 SmallVectorImpl<WeakVH> &DeadInsts) const;
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001424 void RewriteForPHI(PHINode *PN, const LSRFixup &LF,
1425 const Formula &F,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001426 SCEVExpander &Rewriter,
1427 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001428 Pass *P) const;
Dan Gohman572645c2010-02-12 10:34:29 +00001429 void Rewrite(const LSRFixup &LF,
1430 const Formula &F,
Dan Gohman572645c2010-02-12 10:34:29 +00001431 SCEVExpander &Rewriter,
1432 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman572645c2010-02-12 10:34:29 +00001433 Pass *P) const;
1434 void ImplementSolution(const SmallVectorImpl<const Formula *> &Solution,
1435 Pass *P);
1436
1437 LSRInstance(const TargetLowering *tli, Loop *l, Pass *P);
1438
1439 bool getChanged() const { return Changed; }
1440
1441 void print_factors_and_types(raw_ostream &OS) const;
1442 void print_fixups(raw_ostream &OS) const;
1443 void print_uses(raw_ostream &OS) const;
1444 void print(raw_ostream &OS) const;
1445 void dump() const;
1446};
1447
1448}
1449
1450/// OptimizeShadowIV - If IV is used in a int-to-float cast
Dan Gohman3f46a3a2010-03-01 17:49:51 +00001451/// inside the loop then try to eliminate the cast operation.
Dan Gohman572645c2010-02-12 10:34:29 +00001452void LSRInstance::OptimizeShadowIV() {
1453 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
1454 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1455 return;
1456
1457 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end();
1458 UI != E; /* empty */) {
1459 IVUsers::const_iterator CandidateUI = UI;
1460 ++UI;
1461 Instruction *ShadowUse = CandidateUI->getUser();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001462 Type *DestTy = NULL;
Andrew Trickc2c988e2011-07-21 01:05:01 +00001463 bool IsSigned = false;
Dan Gohman572645c2010-02-12 10:34:29 +00001464
1465 /* If shadow use is a int->float cast then insert a second IV
1466 to eliminate this cast.
1467
1468 for (unsigned i = 0; i < n; ++i)
1469 foo((double)i);
1470
1471 is transformed into
1472
1473 double d = 0.0;
1474 for (unsigned i = 0; i < n; ++i, ++d)
1475 foo(d);
1476 */
Andrew Trickc2c988e2011-07-21 01:05:01 +00001477 if (UIToFPInst *UCast = dyn_cast<UIToFPInst>(CandidateUI->getUser())) {
1478 IsSigned = false;
Dan Gohman572645c2010-02-12 10:34:29 +00001479 DestTy = UCast->getDestTy();
Andrew Trickc2c988e2011-07-21 01:05:01 +00001480 }
1481 else if (SIToFPInst *SCast = dyn_cast<SIToFPInst>(CandidateUI->getUser())) {
1482 IsSigned = true;
Dan Gohman572645c2010-02-12 10:34:29 +00001483 DestTy = SCast->getDestTy();
Andrew Trickc2c988e2011-07-21 01:05:01 +00001484 }
Dan Gohman572645c2010-02-12 10:34:29 +00001485 if (!DestTy) continue;
1486
1487 if (TLI) {
1488 // If target does not support DestTy natively then do not apply
1489 // this transformation.
1490 EVT DVT = TLI->getValueType(DestTy);
1491 if (!TLI->isTypeLegal(DVT)) continue;
1492 }
1493
1494 PHINode *PH = dyn_cast<PHINode>(ShadowUse->getOperand(0));
1495 if (!PH) continue;
1496 if (PH->getNumIncomingValues() != 2) continue;
1497
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001498 Type *SrcTy = PH->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00001499 int Mantissa = DestTy->getFPMantissaWidth();
1500 if (Mantissa == -1) continue;
1501 if ((int)SE.getTypeSizeInBits(SrcTy) > Mantissa)
1502 continue;
1503
1504 unsigned Entry, Latch;
1505 if (PH->getIncomingBlock(0) == L->getLoopPreheader()) {
1506 Entry = 0;
1507 Latch = 1;
Dan Gohman7979b722010-01-22 00:46:49 +00001508 } else {
Dan Gohman572645c2010-02-12 10:34:29 +00001509 Entry = 1;
1510 Latch = 0;
Dan Gohman7979b722010-01-22 00:46:49 +00001511 }
Dan Gohman7979b722010-01-22 00:46:49 +00001512
Dan Gohman572645c2010-02-12 10:34:29 +00001513 ConstantInt *Init = dyn_cast<ConstantInt>(PH->getIncomingValue(Entry));
1514 if (!Init) continue;
Andrew Trickc2c988e2011-07-21 01:05:01 +00001515 Constant *NewInit = ConstantFP::get(DestTy, IsSigned ?
Andrew Trickc205a092011-07-21 01:45:54 +00001516 (double)Init->getSExtValue() :
1517 (double)Init->getZExtValue());
Dan Gohman7979b722010-01-22 00:46:49 +00001518
Dan Gohman572645c2010-02-12 10:34:29 +00001519 BinaryOperator *Incr =
1520 dyn_cast<BinaryOperator>(PH->getIncomingValue(Latch));
1521 if (!Incr) continue;
1522 if (Incr->getOpcode() != Instruction::Add
1523 && Incr->getOpcode() != Instruction::Sub)
Dan Gohman7979b722010-01-22 00:46:49 +00001524 continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001525
Dan Gohman572645c2010-02-12 10:34:29 +00001526 /* Initialize new IV, double d = 0.0 in above example. */
1527 ConstantInt *C = NULL;
1528 if (Incr->getOperand(0) == PH)
1529 C = dyn_cast<ConstantInt>(Incr->getOperand(1));
1530 else if (Incr->getOperand(1) == PH)
1531 C = dyn_cast<ConstantInt>(Incr->getOperand(0));
Dan Gohman7979b722010-01-22 00:46:49 +00001532 else
Dan Gohman7979b722010-01-22 00:46:49 +00001533 continue;
1534
Dan Gohman572645c2010-02-12 10:34:29 +00001535 if (!C) continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001536
Dan Gohman572645c2010-02-12 10:34:29 +00001537 // Ignore negative constants, as the code below doesn't handle them
1538 // correctly. TODO: Remove this restriction.
1539 if (!C->getValue().isStrictlyPositive()) continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001540
Dan Gohman572645c2010-02-12 10:34:29 +00001541 /* Add new PHINode. */
Jay Foad3ecfc862011-03-30 11:28:46 +00001542 PHINode *NewPH = PHINode::Create(DestTy, 2, "IV.S.", PH);
Dan Gohman7979b722010-01-22 00:46:49 +00001543
Dan Gohman572645c2010-02-12 10:34:29 +00001544 /* create new increment. '++d' in above example. */
1545 Constant *CFP = ConstantFP::get(DestTy, C->getZExtValue());
1546 BinaryOperator *NewIncr =
1547 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
1548 Instruction::FAdd : Instruction::FSub,
1549 NewPH, CFP, "IV.S.next.", Incr);
Dan Gohman7979b722010-01-22 00:46:49 +00001550
Dan Gohman572645c2010-02-12 10:34:29 +00001551 NewPH->addIncoming(NewInit, PH->getIncomingBlock(Entry));
1552 NewPH->addIncoming(NewIncr, PH->getIncomingBlock(Latch));
Dan Gohman7979b722010-01-22 00:46:49 +00001553
Dan Gohman572645c2010-02-12 10:34:29 +00001554 /* Remove cast operation */
1555 ShadowUse->replaceAllUsesWith(NewPH);
1556 ShadowUse->eraseFromParent();
Dan Gohmanc6519f92010-05-20 20:05:31 +00001557 Changed = true;
Dan Gohman572645c2010-02-12 10:34:29 +00001558 break;
Dan Gohman7979b722010-01-22 00:46:49 +00001559 }
1560}
1561
1562/// FindIVUserForCond - If Cond has an operand that is an expression of an IV,
1563/// set the IV user and stride information and return true, otherwise return
1564/// false.
Dan Gohmanea507f52010-05-20 19:44:23 +00001565bool LSRInstance::FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse) {
Dan Gohman572645c2010-02-12 10:34:29 +00001566 for (IVUsers::iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
1567 if (UI->getUser() == Cond) {
1568 // NOTE: we could handle setcc instructions with multiple uses here, but
1569 // InstCombine does it as well for simple uses, it's not clear that it
1570 // occurs enough in real life to handle.
1571 CondUse = UI;
1572 return true;
1573 }
Dan Gohman7979b722010-01-22 00:46:49 +00001574 return false;
Evan Chengcdf43b12007-10-25 09:11:16 +00001575}
1576
Dan Gohman7979b722010-01-22 00:46:49 +00001577/// OptimizeMax - Rewrite the loop's terminating condition if it uses
1578/// a max computation.
1579///
1580/// This is a narrow solution to a specific, but acute, problem. For loops
1581/// like this:
1582///
1583/// i = 0;
1584/// do {
1585/// p[i] = 0.0;
1586/// } while (++i < n);
1587///
1588/// the trip count isn't just 'n', because 'n' might not be positive. And
1589/// unfortunately this can come up even for loops where the user didn't use
1590/// a C do-while loop. For example, seemingly well-behaved top-test loops
1591/// will commonly be lowered like this:
1592//
1593/// if (n > 0) {
1594/// i = 0;
1595/// do {
1596/// p[i] = 0.0;
1597/// } while (++i < n);
1598/// }
1599///
1600/// and then it's possible for subsequent optimization to obscure the if
1601/// test in such a way that indvars can't find it.
1602///
1603/// When indvars can't find the if test in loops like this, it creates a
1604/// max expression, which allows it to give the loop a canonical
1605/// induction variable:
1606///
1607/// i = 0;
1608/// max = n < 1 ? 1 : n;
1609/// do {
1610/// p[i] = 0.0;
1611/// } while (++i != max);
1612///
1613/// Canonical induction variables are necessary because the loop passes
1614/// are designed around them. The most obvious example of this is the
1615/// LoopInfo analysis, which doesn't remember trip count values. It
1616/// expects to be able to rediscover the trip count each time it is
Dan Gohman572645c2010-02-12 10:34:29 +00001617/// needed, and it does this using a simple analysis that only succeeds if
Dan Gohman7979b722010-01-22 00:46:49 +00001618/// the loop has a canonical induction variable.
1619///
1620/// However, when it comes time to generate code, the maximum operation
1621/// can be quite costly, especially if it's inside of an outer loop.
1622///
1623/// This function solves this problem by detecting this type of loop and
1624/// rewriting their conditions from ICMP_NE back to ICMP_SLT, and deleting
1625/// the instructions for the maximum computation.
1626///
Dan Gohman572645c2010-02-12 10:34:29 +00001627ICmpInst *LSRInstance::OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse) {
Dan Gohman7979b722010-01-22 00:46:49 +00001628 // Check that the loop matches the pattern we're looking for.
1629 if (Cond->getPredicate() != CmpInst::ICMP_EQ &&
1630 Cond->getPredicate() != CmpInst::ICMP_NE)
1631 return Cond;
Dan Gohmana10756e2010-01-21 02:09:26 +00001632
Dan Gohman7979b722010-01-22 00:46:49 +00001633 SelectInst *Sel = dyn_cast<SelectInst>(Cond->getOperand(1));
1634 if (!Sel || !Sel->hasOneUse()) return Cond;
Dan Gohmana10756e2010-01-21 02:09:26 +00001635
Dan Gohman572645c2010-02-12 10:34:29 +00001636 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
Dan Gohman7979b722010-01-22 00:46:49 +00001637 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1638 return Cond;
Dan Gohmandeff6212010-05-03 22:09:21 +00001639 const SCEV *One = SE.getConstant(BackedgeTakenCount->getType(), 1);
Dan Gohmana10756e2010-01-21 02:09:26 +00001640
Dan Gohman7979b722010-01-22 00:46:49 +00001641 // Add one to the backedge-taken count to get the trip count.
Dan Gohman4065f602010-08-16 15:39:27 +00001642 const SCEV *IterationCount = SE.getAddExpr(One, BackedgeTakenCount);
Dan Gohman1d367982010-04-24 03:13:44 +00001643 if (IterationCount != SE.getSCEV(Sel)) return Cond;
Dan Gohman7979b722010-01-22 00:46:49 +00001644
Dan Gohman1d367982010-04-24 03:13:44 +00001645 // Check for a max calculation that matches the pattern. There's no check
1646 // for ICMP_ULE here because the comparison would be with zero, which
1647 // isn't interesting.
1648 CmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE;
1649 const SCEVNAryExpr *Max = 0;
1650 if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(BackedgeTakenCount)) {
1651 Pred = ICmpInst::ICMP_SLE;
1652 Max = S;
1653 } else if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(IterationCount)) {
1654 Pred = ICmpInst::ICMP_SLT;
1655 Max = S;
1656 } else if (const SCEVUMaxExpr *U = dyn_cast<SCEVUMaxExpr>(IterationCount)) {
1657 Pred = ICmpInst::ICMP_ULT;
1658 Max = U;
1659 } else {
1660 // No match; bail.
Dan Gohman7979b722010-01-22 00:46:49 +00001661 return Cond;
Dan Gohman1d367982010-04-24 03:13:44 +00001662 }
Dan Gohman7979b722010-01-22 00:46:49 +00001663
1664 // To handle a max with more than two operands, this optimization would
1665 // require additional checking and setup.
1666 if (Max->getNumOperands() != 2)
1667 return Cond;
1668
1669 const SCEV *MaxLHS = Max->getOperand(0);
1670 const SCEV *MaxRHS = Max->getOperand(1);
Dan Gohman1d367982010-04-24 03:13:44 +00001671
1672 // ScalarEvolution canonicalizes constants to the left. For < and >, look
1673 // for a comparison with 1. For <= and >=, a comparison with zero.
1674 if (!MaxLHS ||
1675 (ICmpInst::isTrueWhenEqual(Pred) ? !MaxLHS->isZero() : (MaxLHS != One)))
1676 return Cond;
1677
Dan Gohman7979b722010-01-22 00:46:49 +00001678 // Check the relevant induction variable for conformance to
1679 // the pattern.
Dan Gohman572645c2010-02-12 10:34:29 +00001680 const SCEV *IV = SE.getSCEV(Cond->getOperand(0));
Dan Gohman7979b722010-01-22 00:46:49 +00001681 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(IV);
1682 if (!AR || !AR->isAffine() ||
1683 AR->getStart() != One ||
Dan Gohman572645c2010-02-12 10:34:29 +00001684 AR->getStepRecurrence(SE) != One)
Dan Gohman7979b722010-01-22 00:46:49 +00001685 return Cond;
1686
1687 assert(AR->getLoop() == L &&
1688 "Loop condition operand is an addrec in a different loop!");
1689
1690 // Check the right operand of the select, and remember it, as it will
1691 // be used in the new comparison instruction.
1692 Value *NewRHS = 0;
Dan Gohman1d367982010-04-24 03:13:44 +00001693 if (ICmpInst::isTrueWhenEqual(Pred)) {
1694 // Look for n+1, and grab n.
1695 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(1)))
1696 if (isa<ConstantInt>(BO->getOperand(1)) &&
1697 cast<ConstantInt>(BO->getOperand(1))->isOne() &&
1698 SE.getSCEV(BO->getOperand(0)) == MaxRHS)
1699 NewRHS = BO->getOperand(0);
1700 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(2)))
1701 if (isa<ConstantInt>(BO->getOperand(1)) &&
1702 cast<ConstantInt>(BO->getOperand(1))->isOne() &&
1703 SE.getSCEV(BO->getOperand(0)) == MaxRHS)
1704 NewRHS = BO->getOperand(0);
1705 if (!NewRHS)
1706 return Cond;
1707 } else if (SE.getSCEV(Sel->getOperand(1)) == MaxRHS)
Dan Gohman7979b722010-01-22 00:46:49 +00001708 NewRHS = Sel->getOperand(1);
Dan Gohman572645c2010-02-12 10:34:29 +00001709 else if (SE.getSCEV(Sel->getOperand(2)) == MaxRHS)
Dan Gohman7979b722010-01-22 00:46:49 +00001710 NewRHS = Sel->getOperand(2);
Dan Gohmancaf71ab2010-06-22 23:07:13 +00001711 else if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(MaxRHS))
1712 NewRHS = SU->getValue();
Dan Gohman1d367982010-04-24 03:13:44 +00001713 else
Dan Gohmancaf71ab2010-06-22 23:07:13 +00001714 // Max doesn't match expected pattern.
1715 return Cond;
Dan Gohman7979b722010-01-22 00:46:49 +00001716
1717 // Determine the new comparison opcode. It may be signed or unsigned,
1718 // and the original comparison may be either equality or inequality.
Dan Gohman7979b722010-01-22 00:46:49 +00001719 if (Cond->getPredicate() == CmpInst::ICMP_EQ)
1720 Pred = CmpInst::getInversePredicate(Pred);
1721
1722 // Ok, everything looks ok to change the condition into an SLT or SGE and
1723 // delete the max calculation.
1724 ICmpInst *NewCond =
1725 new ICmpInst(Cond, Pred, Cond->getOperand(0), NewRHS, "scmp");
1726
1727 // Delete the max calculation instructions.
1728 Cond->replaceAllUsesWith(NewCond);
1729 CondUse->setUser(NewCond);
1730 Instruction *Cmp = cast<Instruction>(Sel->getOperand(0));
1731 Cond->eraseFromParent();
1732 Sel->eraseFromParent();
1733 if (Cmp->use_empty())
1734 Cmp->eraseFromParent();
1735 return NewCond;
Dan Gohmanad7321f2008-09-15 21:22:06 +00001736}
1737
Jim Grosbach56a1f802009-11-17 17:53:56 +00001738/// OptimizeLoopTermCond - Change loop terminating condition to use the
Evan Cheng586f69a2009-11-12 07:35:05 +00001739/// postinc iv when possible.
Dan Gohmanc6519f92010-05-20 20:05:31 +00001740void
Dan Gohman572645c2010-02-12 10:34:29 +00001741LSRInstance::OptimizeLoopTermCond() {
1742 SmallPtrSet<Instruction *, 4> PostIncs;
1743
Evan Cheng586f69a2009-11-12 07:35:05 +00001744 BasicBlock *LatchBlock = L->getLoopLatch();
Evan Cheng076e0852009-11-17 18:10:11 +00001745 SmallVector<BasicBlock*, 8> ExitingBlocks;
1746 L->getExitingBlocks(ExitingBlocks);
Jim Grosbach56a1f802009-11-17 17:53:56 +00001747
Evan Cheng076e0852009-11-17 18:10:11 +00001748 for (unsigned i = 0, e = ExitingBlocks.size(); i != e; ++i) {
1749 BasicBlock *ExitingBlock = ExitingBlocks[i];
Evan Cheng586f69a2009-11-12 07:35:05 +00001750
Dan Gohman572645c2010-02-12 10:34:29 +00001751 // Get the terminating condition for the loop if possible. If we
Evan Cheng076e0852009-11-17 18:10:11 +00001752 // can, we want to change it to use a post-incremented version of its
1753 // induction variable, to allow coalescing the live ranges for the IV into
1754 // one register value.
Evan Cheng586f69a2009-11-12 07:35:05 +00001755
Evan Cheng076e0852009-11-17 18:10:11 +00001756 BranchInst *TermBr = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
1757 if (!TermBr)
1758 continue;
1759 // FIXME: Overly conservative, termination condition could be an 'or' etc..
1760 if (TermBr->isUnconditional() || !isa<ICmpInst>(TermBr->getCondition()))
1761 continue;
Evan Cheng586f69a2009-11-12 07:35:05 +00001762
Evan Cheng076e0852009-11-17 18:10:11 +00001763 // Search IVUsesByStride to find Cond's IVUse if there is one.
1764 IVStrideUse *CondUse = 0;
Evan Cheng076e0852009-11-17 18:10:11 +00001765 ICmpInst *Cond = cast<ICmpInst>(TermBr->getCondition());
Dan Gohman572645c2010-02-12 10:34:29 +00001766 if (!FindIVUserForCond(Cond, CondUse))
Evan Cheng076e0852009-11-17 18:10:11 +00001767 continue;
1768
Evan Cheng076e0852009-11-17 18:10:11 +00001769 // If the trip count is computed in terms of a max (due to ScalarEvolution
1770 // being unable to find a sufficient guard, for example), change the loop
1771 // comparison to use SLT or ULT instead of NE.
Dan Gohman572645c2010-02-12 10:34:29 +00001772 // One consequence of doing this now is that it disrupts the count-down
1773 // optimization. That's not always a bad thing though, because in such
1774 // cases it may still be worthwhile to avoid a max.
1775 Cond = OptimizeMax(Cond, CondUse);
Evan Cheng076e0852009-11-17 18:10:11 +00001776
Dan Gohman572645c2010-02-12 10:34:29 +00001777 // If this exiting block dominates the latch block, it may also use
1778 // the post-inc value if it won't be shared with other uses.
1779 // Check for dominance.
1780 if (!DT.dominates(ExitingBlock, LatchBlock))
Dan Gohman7979b722010-01-22 00:46:49 +00001781 continue;
Evan Cheng076e0852009-11-17 18:10:11 +00001782
Dan Gohman572645c2010-02-12 10:34:29 +00001783 // Conservatively avoid trying to use the post-inc value in non-latch
1784 // exits if there may be pre-inc users in intervening blocks.
Dan Gohman590bfe82010-02-14 03:21:49 +00001785 if (LatchBlock != ExitingBlock)
Dan Gohman572645c2010-02-12 10:34:29 +00001786 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
1787 // Test if the use is reachable from the exiting block. This dominator
1788 // query is a conservative approximation of reachability.
1789 if (&*UI != CondUse &&
1790 !DT.properlyDominates(UI->getUser()->getParent(), ExitingBlock)) {
1791 // Conservatively assume there may be reuse if the quotient of their
1792 // strides could be a legal scale.
Dan Gohmanc0564542010-04-19 21:48:58 +00001793 const SCEV *A = IU.getStride(*CondUse, L);
1794 const SCEV *B = IU.getStride(*UI, L);
Dan Gohman448db1c2010-04-07 22:27:08 +00001795 if (!A || !B) continue;
Dan Gohman572645c2010-02-12 10:34:29 +00001796 if (SE.getTypeSizeInBits(A->getType()) !=
1797 SE.getTypeSizeInBits(B->getType())) {
1798 if (SE.getTypeSizeInBits(A->getType()) >
1799 SE.getTypeSizeInBits(B->getType()))
1800 B = SE.getSignExtendExpr(B, A->getType());
1801 else
1802 A = SE.getSignExtendExpr(A, B->getType());
1803 }
1804 if (const SCEVConstant *D =
Dan Gohmanf09b7122010-02-19 19:35:48 +00001805 dyn_cast_or_null<SCEVConstant>(getExactSDiv(B, A, SE))) {
Dan Gohman9f383eb2010-05-20 22:25:20 +00001806 const ConstantInt *C = D->getValue();
Dan Gohman572645c2010-02-12 10:34:29 +00001807 // Stride of one or negative one can have reuse with non-addresses.
Dan Gohman9f383eb2010-05-20 22:25:20 +00001808 if (C->isOne() || C->isAllOnesValue())
Dan Gohman572645c2010-02-12 10:34:29 +00001809 goto decline_post_inc;
1810 // Avoid weird situations.
Dan Gohman9f383eb2010-05-20 22:25:20 +00001811 if (C->getValue().getMinSignedBits() >= 64 ||
1812 C->getValue().isMinSignedValue())
Dan Gohman572645c2010-02-12 10:34:29 +00001813 goto decline_post_inc;
Dan Gohman590bfe82010-02-14 03:21:49 +00001814 // Without TLI, assume that any stride might be valid, and so any
1815 // use might be shared.
1816 if (!TLI)
1817 goto decline_post_inc;
Dan Gohman572645c2010-02-12 10:34:29 +00001818 // Check for possible scaled-address reuse.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001819 Type *AccessTy = getAccessType(UI->getUser());
Dan Gohman572645c2010-02-12 10:34:29 +00001820 TargetLowering::AddrMode AM;
Dan Gohman9f383eb2010-05-20 22:25:20 +00001821 AM.Scale = C->getSExtValue();
Dan Gohman2763dfd2010-02-14 02:45:21 +00001822 if (TLI->isLegalAddressingMode(AM, AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +00001823 goto decline_post_inc;
1824 AM.Scale = -AM.Scale;
Dan Gohman2763dfd2010-02-14 02:45:21 +00001825 if (TLI->isLegalAddressingMode(AM, AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +00001826 goto decline_post_inc;
1827 }
1828 }
1829
David Greene63c94632009-12-23 22:58:38 +00001830 DEBUG(dbgs() << " Change loop exiting icmp to use postinc iv: "
Dan Gohman572645c2010-02-12 10:34:29 +00001831 << *Cond << '\n');
Evan Cheng076e0852009-11-17 18:10:11 +00001832
1833 // It's possible for the setcc instruction to be anywhere in the loop, and
1834 // possible for it to have multiple users. If it is not immediately before
1835 // the exiting block branch, move it.
Dan Gohman572645c2010-02-12 10:34:29 +00001836 if (&*++BasicBlock::iterator(Cond) != TermBr) {
1837 if (Cond->hasOneUse()) {
Evan Cheng076e0852009-11-17 18:10:11 +00001838 Cond->moveBefore(TermBr);
1839 } else {
Dan Gohman572645c2010-02-12 10:34:29 +00001840 // Clone the terminating condition and insert into the loopend.
1841 ICmpInst *OldCond = Cond;
Evan Cheng076e0852009-11-17 18:10:11 +00001842 Cond = cast<ICmpInst>(Cond->clone());
1843 Cond->setName(L->getHeader()->getName() + ".termcond");
1844 ExitingBlock->getInstList().insert(TermBr, Cond);
1845
1846 // Clone the IVUse, as the old use still exists!
Andrew Trick4417e532011-06-21 15:43:52 +00001847 CondUse = &IU.AddUser(Cond, CondUse->getOperandValToReplace());
Dan Gohman572645c2010-02-12 10:34:29 +00001848 TermBr->replaceUsesOfWith(OldCond, Cond);
Evan Cheng076e0852009-11-17 18:10:11 +00001849 }
Evan Cheng586f69a2009-11-12 07:35:05 +00001850 }
1851
Evan Cheng076e0852009-11-17 18:10:11 +00001852 // If we get to here, we know that we can transform the setcc instruction to
1853 // use the post-incremented version of the IV, allowing us to coalesce the
1854 // live ranges for the IV correctly.
Dan Gohman448db1c2010-04-07 22:27:08 +00001855 CondUse->transformToPostInc(L);
Evan Cheng076e0852009-11-17 18:10:11 +00001856 Changed = true;
1857
Dan Gohman572645c2010-02-12 10:34:29 +00001858 PostIncs.insert(Cond);
1859 decline_post_inc:;
Dan Gohmana10756e2010-01-21 02:09:26 +00001860 }
Dan Gohman572645c2010-02-12 10:34:29 +00001861
1862 // Determine an insertion point for the loop induction variable increment. It
1863 // must dominate all the post-inc comparisons we just set up, and it must
1864 // dominate the loop latch edge.
1865 IVIncInsertPos = L->getLoopLatch()->getTerminator();
1866 for (SmallPtrSet<Instruction *, 4>::const_iterator I = PostIncs.begin(),
1867 E = PostIncs.end(); I != E; ++I) {
1868 BasicBlock *BB =
1869 DT.findNearestCommonDominator(IVIncInsertPos->getParent(),
1870 (*I)->getParent());
1871 if (BB == (*I)->getParent())
1872 IVIncInsertPos = *I;
1873 else if (BB != IVIncInsertPos->getParent())
1874 IVIncInsertPos = BB->getTerminator();
1875 }
Dan Gohmana10756e2010-01-21 02:09:26 +00001876}
1877
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001878/// reconcileNewOffset - Determine if the given use can accommodate a fixup
Dan Gohman76c315a2010-05-20 20:52:00 +00001879/// at the given offset and other details. If so, update the use and
1880/// return true.
Dan Gohman572645c2010-02-12 10:34:29 +00001881bool
Dan Gohman191bd642010-09-01 01:45:53 +00001882LSRInstance::reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001883 LSRUse::KindType Kind, Type *AccessTy) {
Dan Gohman191bd642010-09-01 01:45:53 +00001884 int64_t NewMinOffset = LU.MinOffset;
1885 int64_t NewMaxOffset = LU.MaxOffset;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001886 Type *NewAccessTy = AccessTy;
Dan Gohman7979b722010-01-22 00:46:49 +00001887
Dan Gohman572645c2010-02-12 10:34:29 +00001888 // Check for a mismatched kind. It's tempting to collapse mismatched kinds to
1889 // something conservative, however this can pessimize in the case that one of
1890 // the uses will have all its uses outside the loop, for example.
1891 if (LU.Kind != Kind)
Dan Gohman7979b722010-01-22 00:46:49 +00001892 return false;
Dan Gohman572645c2010-02-12 10:34:29 +00001893 // Conservatively assume HasBaseReg is true for now.
Dan Gohman191bd642010-09-01 01:45:53 +00001894 if (NewOffset < LU.MinOffset) {
1895 if (!isAlwaysFoldable(LU.MaxOffset - NewOffset, 0, HasBaseReg,
Dan Gohman454d26d2010-02-22 04:11:59 +00001896 Kind, AccessTy, TLI))
Dan Gohman7979b722010-01-22 00:46:49 +00001897 return false;
Dan Gohman191bd642010-09-01 01:45:53 +00001898 NewMinOffset = NewOffset;
1899 } else if (NewOffset > LU.MaxOffset) {
1900 if (!isAlwaysFoldable(NewOffset - LU.MinOffset, 0, HasBaseReg,
Dan Gohman454d26d2010-02-22 04:11:59 +00001901 Kind, AccessTy, TLI))
Dan Gohman7979b722010-01-22 00:46:49 +00001902 return false;
Dan Gohman191bd642010-09-01 01:45:53 +00001903 NewMaxOffset = NewOffset;
Dan Gohmana10756e2010-01-21 02:09:26 +00001904 }
Dan Gohman572645c2010-02-12 10:34:29 +00001905 // Check for a mismatched access type, and fall back conservatively as needed.
Dan Gohman74e5ef02010-06-19 21:30:18 +00001906 // TODO: Be less conservative when the type is similar and can use the same
1907 // addressing modes.
Dan Gohman572645c2010-02-12 10:34:29 +00001908 if (Kind == LSRUse::Address && AccessTy != LU.AccessTy)
Dan Gohman191bd642010-09-01 01:45:53 +00001909 NewAccessTy = Type::getVoidTy(AccessTy->getContext());
Dan Gohmana10756e2010-01-21 02:09:26 +00001910
Dan Gohman572645c2010-02-12 10:34:29 +00001911 // Update the use.
Dan Gohman191bd642010-09-01 01:45:53 +00001912 LU.MinOffset = NewMinOffset;
1913 LU.MaxOffset = NewMaxOffset;
1914 LU.AccessTy = NewAccessTy;
1915 if (NewOffset != LU.Offsets.back())
1916 LU.Offsets.push_back(NewOffset);
Dan Gohman8b0ade32010-01-21 22:42:49 +00001917 return true;
1918}
1919
Dan Gohman572645c2010-02-12 10:34:29 +00001920/// getUse - Return an LSRUse index and an offset value for a fixup which
1921/// needs the given expression, with the given kind and optional access type.
Dan Gohman3f46a3a2010-03-01 17:49:51 +00001922/// Either reuse an existing use or create a new one, as needed.
Dan Gohman572645c2010-02-12 10:34:29 +00001923std::pair<size_t, int64_t>
1924LSRInstance::getUse(const SCEV *&Expr,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001925 LSRUse::KindType Kind, Type *AccessTy) {
Dan Gohman572645c2010-02-12 10:34:29 +00001926 const SCEV *Copy = Expr;
1927 int64_t Offset = ExtractImmediate(Expr, SE);
Evan Cheng586f69a2009-11-12 07:35:05 +00001928
Dan Gohman572645c2010-02-12 10:34:29 +00001929 // Basic uses can't accept any offset, for example.
Dan Gohman454d26d2010-02-22 04:11:59 +00001930 if (!isAlwaysFoldable(Offset, 0, /*HasBaseReg=*/true, Kind, AccessTy, TLI)) {
Dan Gohman572645c2010-02-12 10:34:29 +00001931 Expr = Copy;
1932 Offset = 0;
1933 }
1934
1935 std::pair<UseMapTy::iterator, bool> P =
Dan Gohman1e3121c2010-06-19 21:29:59 +00001936 UseMap.insert(std::make_pair(std::make_pair(Expr, Kind), 0));
Dan Gohman572645c2010-02-12 10:34:29 +00001937 if (!P.second) {
1938 // A use already existed with this base.
1939 size_t LUIdx = P.first->second;
1940 LSRUse &LU = Uses[LUIdx];
Dan Gohman191bd642010-09-01 01:45:53 +00001941 if (reconcileNewOffset(LU, Offset, /*HasBaseReg=*/true, Kind, AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +00001942 // Reuse this use.
1943 return std::make_pair(LUIdx, Offset);
1944 }
1945
1946 // Create a new use.
1947 size_t LUIdx = Uses.size();
1948 P.first->second = LUIdx;
1949 Uses.push_back(LSRUse(Kind, AccessTy));
1950 LSRUse &LU = Uses[LUIdx];
1951
Dan Gohman191bd642010-09-01 01:45:53 +00001952 // We don't need to track redundant offsets, but we don't need to go out
1953 // of our way here to avoid them.
1954 if (LU.Offsets.empty() || Offset != LU.Offsets.back())
1955 LU.Offsets.push_back(Offset);
1956
Dan Gohman572645c2010-02-12 10:34:29 +00001957 LU.MinOffset = Offset;
1958 LU.MaxOffset = Offset;
1959 return std::make_pair(LUIdx, Offset);
1960}
1961
Dan Gohman5ce6d052010-05-20 15:17:54 +00001962/// DeleteUse - Delete the given use from the Uses list.
Dan Gohmanc6897702010-10-07 23:33:43 +00001963void LSRInstance::DeleteUse(LSRUse &LU, size_t LUIdx) {
Dan Gohman191bd642010-09-01 01:45:53 +00001964 if (&LU != &Uses.back())
Dan Gohman5ce6d052010-05-20 15:17:54 +00001965 std::swap(LU, Uses.back());
1966 Uses.pop_back();
Dan Gohmanc6897702010-10-07 23:33:43 +00001967
1968 // Update RegUses.
1969 RegUses.SwapAndDropUse(LUIdx, Uses.size());
Dan Gohman5ce6d052010-05-20 15:17:54 +00001970}
1971
Dan Gohmana2086b32010-05-19 23:43:12 +00001972/// FindUseWithFormula - Look for a use distinct from OrigLU which is has
1973/// a formula that has the same registers as the given formula.
1974LSRUse *
1975LSRInstance::FindUseWithSimilarFormula(const Formula &OrigF,
Dan Gohman191bd642010-09-01 01:45:53 +00001976 const LSRUse &OrigLU) {
1977 // Search all uses for the formula. This could be more clever.
Dan Gohmana2086b32010-05-19 23:43:12 +00001978 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
1979 LSRUse &LU = Uses[LUIdx];
Dan Gohman6a832712010-08-29 15:27:08 +00001980 // Check whether this use is close enough to OrigLU, to see whether it's
1981 // worthwhile looking through its formulae.
1982 // Ignore ICmpZero uses because they may contain formulae generated by
1983 // GenerateICmpZeroScales, in which case adding fixup offsets may
1984 // be invalid.
Dan Gohmana2086b32010-05-19 23:43:12 +00001985 if (&LU != &OrigLU &&
1986 LU.Kind != LSRUse::ICmpZero &&
1987 LU.Kind == OrigLU.Kind && OrigLU.AccessTy == LU.AccessTy &&
Dan Gohmana9db1292010-07-15 20:24:58 +00001988 LU.WidestFixupType == OrigLU.WidestFixupType &&
Dan Gohmana2086b32010-05-19 23:43:12 +00001989 LU.HasFormulaWithSameRegs(OrigF)) {
Dan Gohman6a832712010-08-29 15:27:08 +00001990 // Scan through this use's formulae.
Dan Gohman402d4352010-05-20 20:33:18 +00001991 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
1992 E = LU.Formulae.end(); I != E; ++I) {
1993 const Formula &F = *I;
Dan Gohman6a832712010-08-29 15:27:08 +00001994 // Check to see if this formula has the same registers and symbols
1995 // as OrigF.
Dan Gohmana2086b32010-05-19 23:43:12 +00001996 if (F.BaseRegs == OrigF.BaseRegs &&
1997 F.ScaledReg == OrigF.ScaledReg &&
1998 F.AM.BaseGV == OrigF.AM.BaseGV &&
Dan Gohmancca82142011-05-03 00:46:49 +00001999 F.AM.Scale == OrigF.AM.Scale &&
2000 F.UnfoldedOffset == OrigF.UnfoldedOffset) {
Dan Gohman191bd642010-09-01 01:45:53 +00002001 if (F.AM.BaseOffs == 0)
Dan Gohmana2086b32010-05-19 23:43:12 +00002002 return &LU;
Dan Gohman6a832712010-08-29 15:27:08 +00002003 // This is the formula where all the registers and symbols matched;
2004 // there aren't going to be any others. Since we declined it, we
2005 // can skip the rest of the formulae and procede to the next LSRUse.
Dan Gohmana2086b32010-05-19 23:43:12 +00002006 break;
2007 }
2008 }
2009 }
2010 }
2011
Dan Gohman6a832712010-08-29 15:27:08 +00002012 // Nothing looked good.
Dan Gohmana2086b32010-05-19 23:43:12 +00002013 return 0;
2014}
2015
Dan Gohman572645c2010-02-12 10:34:29 +00002016void LSRInstance::CollectInterestingTypesAndFactors() {
2017 SmallSetVector<const SCEV *, 4> Strides;
2018
Dan Gohman1b7bf182010-02-19 00:05:23 +00002019 // Collect interesting types and strides.
Dan Gohman448db1c2010-04-07 22:27:08 +00002020 SmallVector<const SCEV *, 4> Worklist;
Dan Gohman572645c2010-02-12 10:34:29 +00002021 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) {
Dan Gohmanc0564542010-04-19 21:48:58 +00002022 const SCEV *Expr = IU.getExpr(*UI);
Dan Gohman572645c2010-02-12 10:34:29 +00002023
2024 // Collect interesting types.
Dan Gohman448db1c2010-04-07 22:27:08 +00002025 Types.insert(SE.getEffectiveSCEVType(Expr->getType()));
Dan Gohman572645c2010-02-12 10:34:29 +00002026
Dan Gohman448db1c2010-04-07 22:27:08 +00002027 // Add strides for mentioned loops.
2028 Worklist.push_back(Expr);
2029 do {
2030 const SCEV *S = Worklist.pop_back_val();
2031 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
2032 Strides.insert(AR->getStepRecurrence(SE));
2033 Worklist.push_back(AR->getStart());
2034 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Dan Gohman403a8cd2010-06-21 19:47:52 +00002035 Worklist.append(Add->op_begin(), Add->op_end());
Dan Gohman448db1c2010-04-07 22:27:08 +00002036 }
2037 } while (!Worklist.empty());
Dan Gohman1b7bf182010-02-19 00:05:23 +00002038 }
2039
2040 // Compute interesting factors from the set of interesting strides.
2041 for (SmallSetVector<const SCEV *, 4>::const_iterator
2042 I = Strides.begin(), E = Strides.end(); I != E; ++I)
Dan Gohman572645c2010-02-12 10:34:29 +00002043 for (SmallSetVector<const SCEV *, 4>::const_iterator NewStrideIter =
Oscar Fuentesee56c422010-08-02 06:00:15 +00002044 llvm::next(I); NewStrideIter != E; ++NewStrideIter) {
Dan Gohman1b7bf182010-02-19 00:05:23 +00002045 const SCEV *OldStride = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00002046 const SCEV *NewStride = *NewStrideIter;
Dan Gohman572645c2010-02-12 10:34:29 +00002047
2048 if (SE.getTypeSizeInBits(OldStride->getType()) !=
2049 SE.getTypeSizeInBits(NewStride->getType())) {
2050 if (SE.getTypeSizeInBits(OldStride->getType()) >
2051 SE.getTypeSizeInBits(NewStride->getType()))
2052 NewStride = SE.getSignExtendExpr(NewStride, OldStride->getType());
2053 else
2054 OldStride = SE.getSignExtendExpr(OldStride, NewStride->getType());
2055 }
2056 if (const SCEVConstant *Factor =
Dan Gohmanf09b7122010-02-19 19:35:48 +00002057 dyn_cast_or_null<SCEVConstant>(getExactSDiv(NewStride, OldStride,
2058 SE, true))) {
Dan Gohman572645c2010-02-12 10:34:29 +00002059 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2060 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2061 } else if (const SCEVConstant *Factor =
Dan Gohman454d26d2010-02-22 04:11:59 +00002062 dyn_cast_or_null<SCEVConstant>(getExactSDiv(OldStride,
2063 NewStride,
Dan Gohmanf09b7122010-02-19 19:35:48 +00002064 SE, true))) {
Dan Gohman572645c2010-02-12 10:34:29 +00002065 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2066 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2067 }
2068 }
Dan Gohman572645c2010-02-12 10:34:29 +00002069
2070 // If all uses use the same type, don't bother looking for truncation-based
2071 // reuse.
2072 if (Types.size() == 1)
2073 Types.clear();
2074
2075 DEBUG(print_factors_and_types(dbgs()));
2076}
2077
2078void LSRInstance::CollectFixupsAndInitialFormulae() {
2079 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) {
2080 // Record the uses.
2081 LSRFixup &LF = getNewFixup();
2082 LF.UserInst = UI->getUser();
2083 LF.OperandValToReplace = UI->getOperandValToReplace();
Dan Gohman448db1c2010-04-07 22:27:08 +00002084 LF.PostIncLoops = UI->getPostIncLoops();
Dan Gohman572645c2010-02-12 10:34:29 +00002085
2086 LSRUse::KindType Kind = LSRUse::Basic;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002087 Type *AccessTy = 0;
Dan Gohman572645c2010-02-12 10:34:29 +00002088 if (isAddressUse(LF.UserInst, LF.OperandValToReplace)) {
2089 Kind = LSRUse::Address;
2090 AccessTy = getAccessType(LF.UserInst);
2091 }
2092
Dan Gohmanc0564542010-04-19 21:48:58 +00002093 const SCEV *S = IU.getExpr(*UI);
Dan Gohman572645c2010-02-12 10:34:29 +00002094
2095 // Equality (== and !=) ICmps are special. We can rewrite (i == N) as
2096 // (N - i == 0), and this allows (N - i) to be the expression that we work
2097 // with rather than just N or i, so we can consider the register
2098 // requirements for both N and i at the same time. Limiting this code to
2099 // equality icmps is not a problem because all interesting loops use
2100 // equality icmps, thanks to IndVarSimplify.
2101 if (ICmpInst *CI = dyn_cast<ICmpInst>(LF.UserInst))
2102 if (CI->isEquality()) {
2103 // Swap the operands if needed to put the OperandValToReplace on the
2104 // left, for consistency.
2105 Value *NV = CI->getOperand(1);
2106 if (NV == LF.OperandValToReplace) {
2107 CI->setOperand(1, CI->getOperand(0));
2108 CI->setOperand(0, NV);
Dan Gohmanf182b232010-05-20 19:26:52 +00002109 NV = CI->getOperand(1);
Dan Gohman9da1bf42010-05-20 19:16:03 +00002110 Changed = true;
Dan Gohman572645c2010-02-12 10:34:29 +00002111 }
2112
2113 // x == y --> x - y == 0
2114 const SCEV *N = SE.getSCEV(NV);
Dan Gohman17ead4f2010-11-17 21:23:15 +00002115 if (SE.isLoopInvariant(N, L)) {
Dan Gohman673968a2011-05-18 21:02:18 +00002116 // S is normalized, so normalize N before folding it into S
2117 // to keep the result normalized.
2118 N = TransformForPostIncUse(Normalize, N, CI, 0,
2119 LF.PostIncLoops, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +00002120 Kind = LSRUse::ICmpZero;
2121 S = SE.getMinusSCEV(N, S);
2122 }
2123
2124 // -1 and the negations of all interesting strides (except the negation
2125 // of -1) are now also interesting.
2126 for (size_t i = 0, e = Factors.size(); i != e; ++i)
2127 if (Factors[i] != -1)
2128 Factors.insert(-(uint64_t)Factors[i]);
2129 Factors.insert(-1);
2130 }
2131
2132 // Set up the initial formula for this use.
2133 std::pair<size_t, int64_t> P = getUse(S, Kind, AccessTy);
2134 LF.LUIdx = P.first;
2135 LF.Offset = P.second;
2136 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohman448db1c2010-04-07 22:27:08 +00002137 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohmana9db1292010-07-15 20:24:58 +00002138 if (!LU.WidestFixupType ||
2139 SE.getTypeSizeInBits(LU.WidestFixupType) <
2140 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
2141 LU.WidestFixupType = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00002142
2143 // If this is the first use of this LSRUse, give it a formula.
2144 if (LU.Formulae.empty()) {
Dan Gohman454d26d2010-02-22 04:11:59 +00002145 InsertInitialFormula(S, LU, LF.LUIdx);
Dan Gohman572645c2010-02-12 10:34:29 +00002146 CountRegisters(LU.Formulae.back(), LF.LUIdx);
2147 }
2148 }
2149
2150 DEBUG(print_fixups(dbgs()));
2151}
2152
Dan Gohman76c315a2010-05-20 20:52:00 +00002153/// InsertInitialFormula - Insert a formula for the given expression into
2154/// the given use, separating out loop-variant portions from loop-invariant
2155/// and loop-computable portions.
Dan Gohman572645c2010-02-12 10:34:29 +00002156void
Dan Gohman454d26d2010-02-22 04:11:59 +00002157LSRInstance::InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx) {
Dan Gohman572645c2010-02-12 10:34:29 +00002158 Formula F;
Dan Gohmandc0e8fb2010-11-17 21:41:58 +00002159 F.InitialMatch(S, L, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002160 bool Inserted = InsertFormula(LU, LUIdx, F);
2161 assert(Inserted && "Initial formula already exists!"); (void)Inserted;
2162}
2163
Dan Gohman76c315a2010-05-20 20:52:00 +00002164/// InsertSupplementalFormula - Insert a simple single-register formula for
2165/// the given expression into the given use.
Dan Gohman572645c2010-02-12 10:34:29 +00002166void
2167LSRInstance::InsertSupplementalFormula(const SCEV *S,
2168 LSRUse &LU, size_t LUIdx) {
2169 Formula F;
2170 F.BaseRegs.push_back(S);
2171 F.AM.HasBaseReg = true;
2172 bool Inserted = InsertFormula(LU, LUIdx, F);
2173 assert(Inserted && "Supplemental formula already exists!"); (void)Inserted;
2174}
2175
2176/// CountRegisters - Note which registers are used by the given formula,
2177/// updating RegUses.
2178void LSRInstance::CountRegisters(const Formula &F, size_t LUIdx) {
2179 if (F.ScaledReg)
2180 RegUses.CountRegister(F.ScaledReg, LUIdx);
2181 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
2182 E = F.BaseRegs.end(); I != E; ++I)
2183 RegUses.CountRegister(*I, LUIdx);
2184}
2185
2186/// InsertFormula - If the given formula has not yet been inserted, add it to
2187/// the list, and return true. Return false otherwise.
2188bool LSRInstance::InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F) {
Dan Gohman454d26d2010-02-22 04:11:59 +00002189 if (!LU.InsertFormula(F))
Dan Gohman572645c2010-02-12 10:34:29 +00002190 return false;
2191
2192 CountRegisters(F, LUIdx);
2193 return true;
2194}
2195
2196/// CollectLoopInvariantFixupsAndFormulae - Check for other uses of
2197/// loop-invariant values which we're tracking. These other uses will pin these
2198/// values in registers, making them less profitable for elimination.
2199/// TODO: This currently misses non-constant addrec step registers.
2200/// TODO: Should this give more weight to users inside the loop?
2201void
2202LSRInstance::CollectLoopInvariantFixupsAndFormulae() {
2203 SmallVector<const SCEV *, 8> Worklist(RegUses.begin(), RegUses.end());
2204 SmallPtrSet<const SCEV *, 8> Inserted;
2205
2206 while (!Worklist.empty()) {
2207 const SCEV *S = Worklist.pop_back_val();
2208
2209 if (const SCEVNAryExpr *N = dyn_cast<SCEVNAryExpr>(S))
Dan Gohman403a8cd2010-06-21 19:47:52 +00002210 Worklist.append(N->op_begin(), N->op_end());
Dan Gohman572645c2010-02-12 10:34:29 +00002211 else if (const SCEVCastExpr *C = dyn_cast<SCEVCastExpr>(S))
2212 Worklist.push_back(C->getOperand());
2213 else if (const SCEVUDivExpr *D = dyn_cast<SCEVUDivExpr>(S)) {
2214 Worklist.push_back(D->getLHS());
2215 Worklist.push_back(D->getRHS());
2216 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
2217 if (!Inserted.insert(U)) continue;
2218 const Value *V = U->getValue();
Dan Gohmana15ec5d2010-06-04 23:16:05 +00002219 if (const Instruction *Inst = dyn_cast<Instruction>(V)) {
2220 // Look for instructions defined outside the loop.
Dan Gohman572645c2010-02-12 10:34:29 +00002221 if (L->contains(Inst)) continue;
Dan Gohmana15ec5d2010-06-04 23:16:05 +00002222 } else if (isa<UndefValue>(V))
2223 // Undef doesn't have a live range, so it doesn't matter.
2224 continue;
Gabor Greif60ad7812010-03-25 23:06:16 +00002225 for (Value::const_use_iterator UI = V->use_begin(), UE = V->use_end();
Dan Gohman572645c2010-02-12 10:34:29 +00002226 UI != UE; ++UI) {
2227 const Instruction *UserInst = dyn_cast<Instruction>(*UI);
2228 // Ignore non-instructions.
2229 if (!UserInst)
Dan Gohman7979b722010-01-22 00:46:49 +00002230 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002231 // Ignore instructions in other functions (as can happen with
2232 // Constants).
2233 if (UserInst->getParent()->getParent() != L->getHeader()->getParent())
Dan Gohman7979b722010-01-22 00:46:49 +00002234 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002235 // Ignore instructions not dominated by the loop.
2236 const BasicBlock *UseBB = !isa<PHINode>(UserInst) ?
2237 UserInst->getParent() :
2238 cast<PHINode>(UserInst)->getIncomingBlock(
2239 PHINode::getIncomingValueNumForOperand(UI.getOperandNo()));
2240 if (!DT.dominates(L->getHeader(), UseBB))
2241 continue;
2242 // Ignore uses which are part of other SCEV expressions, to avoid
2243 // analyzing them multiple times.
Dan Gohman4a2a6832010-04-09 19:12:34 +00002244 if (SE.isSCEVable(UserInst->getType())) {
2245 const SCEV *UserS = SE.getSCEV(const_cast<Instruction *>(UserInst));
2246 // If the user is a no-op, look through to its uses.
2247 if (!isa<SCEVUnknown>(UserS))
2248 continue;
2249 if (UserS == U) {
2250 Worklist.push_back(
2251 SE.getUnknown(const_cast<Instruction *>(UserInst)));
2252 continue;
2253 }
2254 }
Dan Gohman572645c2010-02-12 10:34:29 +00002255 // Ignore icmp instructions which are already being analyzed.
2256 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UserInst)) {
2257 unsigned OtherIdx = !UI.getOperandNo();
2258 Value *OtherOp = const_cast<Value *>(ICI->getOperand(OtherIdx));
Dan Gohman17ead4f2010-11-17 21:23:15 +00002259 if (SE.hasComputableLoopEvolution(SE.getSCEV(OtherOp), L))
Dan Gohman572645c2010-02-12 10:34:29 +00002260 continue;
2261 }
2262
2263 LSRFixup &LF = getNewFixup();
2264 LF.UserInst = const_cast<Instruction *>(UserInst);
2265 LF.OperandValToReplace = UI.getUse();
2266 std::pair<size_t, int64_t> P = getUse(S, LSRUse::Basic, 0);
2267 LF.LUIdx = P.first;
2268 LF.Offset = P.second;
2269 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohman448db1c2010-04-07 22:27:08 +00002270 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohmana9db1292010-07-15 20:24:58 +00002271 if (!LU.WidestFixupType ||
2272 SE.getTypeSizeInBits(LU.WidestFixupType) <
2273 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
2274 LU.WidestFixupType = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00002275 InsertSupplementalFormula(U, LU, LF.LUIdx);
2276 CountRegisters(LU.Formulae.back(), Uses.size() - 1);
2277 break;
2278 }
2279 }
2280 }
2281}
2282
2283/// CollectSubexprs - Split S into subexpressions which can be pulled out into
2284/// separate registers. If C is non-null, multiply each subexpression by C.
2285static void CollectSubexprs(const SCEV *S, const SCEVConstant *C,
2286 SmallVectorImpl<const SCEV *> &Ops,
Dan Gohman3e3f15b2010-06-25 22:32:18 +00002287 const Loop *L,
Dan Gohman572645c2010-02-12 10:34:29 +00002288 ScalarEvolution &SE) {
2289 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
2290 // Break out add operands.
2291 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
2292 I != E; ++I)
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002293 CollectSubexprs(*I, C, Ops, L, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002294 return;
2295 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
2296 // Split a non-zero base out of an addrec.
2297 if (!AR->getStart()->isZero()) {
Dan Gohmandeff6212010-05-03 22:09:21 +00002298 CollectSubexprs(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
Dan Gohman572645c2010-02-12 10:34:29 +00002299 AR->getStepRecurrence(SE),
Andrew Trick3228cc22011-03-14 16:50:06 +00002300 AR->getLoop(),
2301 //FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
2302 SCEV::FlagAnyWrap),
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002303 C, Ops, L, SE);
2304 CollectSubexprs(AR->getStart(), C, Ops, L, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002305 return;
2306 }
2307 } else if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
2308 // Break (C * (a + b + c)) into C*a + C*b + C*c.
2309 if (Mul->getNumOperands() == 2)
2310 if (const SCEVConstant *Op0 =
2311 dyn_cast<SCEVConstant>(Mul->getOperand(0))) {
2312 CollectSubexprs(Mul->getOperand(1),
2313 C ? cast<SCEVConstant>(SE.getMulExpr(C, Op0)) : Op0,
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002314 Ops, L, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002315 return;
2316 }
2317 }
2318
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002319 // Otherwise use the value itself, optionally with a scale applied.
2320 Ops.push_back(C ? SE.getMulExpr(C, S) : S);
Dan Gohman572645c2010-02-12 10:34:29 +00002321}
2322
2323/// GenerateReassociations - Split out subexpressions from adds and the bases of
2324/// addrecs.
2325void LSRInstance::GenerateReassociations(LSRUse &LU, unsigned LUIdx,
2326 Formula Base,
2327 unsigned Depth) {
2328 // Arbitrarily cap recursion to protect compile time.
2329 if (Depth >= 3) return;
2330
2331 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
2332 const SCEV *BaseReg = Base.BaseRegs[i];
2333
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002334 SmallVector<const SCEV *, 8> AddOps;
2335 CollectSubexprs(BaseReg, 0, AddOps, L, SE);
Dan Gohman3e3f15b2010-06-25 22:32:18 +00002336
Dan Gohman572645c2010-02-12 10:34:29 +00002337 if (AddOps.size() == 1) continue;
2338
2339 for (SmallVectorImpl<const SCEV *>::const_iterator J = AddOps.begin(),
2340 JE = AddOps.end(); J != JE; ++J) {
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002341
2342 // Loop-variant "unknown" values are uninteresting; we won't be able to
2343 // do anything meaningful with them.
Dan Gohman17ead4f2010-11-17 21:23:15 +00002344 if (isa<SCEVUnknown>(*J) && !SE.isLoopInvariant(*J, L))
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002345 continue;
2346
Dan Gohman572645c2010-02-12 10:34:29 +00002347 // Don't pull a constant into a register if the constant could be folded
2348 // into an immediate field.
2349 if (isAlwaysFoldable(*J, LU.MinOffset, LU.MaxOffset,
2350 Base.getNumRegs() > 1,
2351 LU.Kind, LU.AccessTy, TLI, SE))
2352 continue;
2353
2354 // Collect all operands except *J.
Dan Gohman403a8cd2010-06-21 19:47:52 +00002355 SmallVector<const SCEV *, 8> InnerAddOps
Dan Gohman4eaee282010-08-04 17:43:57 +00002356 (((const SmallVector<const SCEV *, 8> &)AddOps).begin(), J);
Dan Gohman403a8cd2010-06-21 19:47:52 +00002357 InnerAddOps.append
Oscar Fuentesee56c422010-08-02 06:00:15 +00002358 (llvm::next(J), ((const SmallVector<const SCEV *, 8> &)AddOps).end());
Dan Gohman572645c2010-02-12 10:34:29 +00002359
2360 // Don't leave just a constant behind in a register if the constant could
2361 // be folded into an immediate field.
2362 if (InnerAddOps.size() == 1 &&
2363 isAlwaysFoldable(InnerAddOps[0], LU.MinOffset, LU.MaxOffset,
2364 Base.getNumRegs() > 1,
2365 LU.Kind, LU.AccessTy, TLI, SE))
2366 continue;
2367
Dan Gohmanfafb8902010-04-23 01:55:05 +00002368 const SCEV *InnerSum = SE.getAddExpr(InnerAddOps);
2369 if (InnerSum->isZero())
2370 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002371 Formula F = Base;
Dan Gohmancca82142011-05-03 00:46:49 +00002372
2373 // Add the remaining pieces of the add back into the new formula.
2374 const SCEVConstant *InnerSumSC = dyn_cast<SCEVConstant>(InnerSum);
2375 if (TLI && InnerSumSC &&
2376 SE.getTypeSizeInBits(InnerSumSC->getType()) <= 64 &&
2377 TLI->isLegalAddImmediate((uint64_t)F.UnfoldedOffset +
2378 InnerSumSC->getValue()->getZExtValue())) {
2379 F.UnfoldedOffset = (uint64_t)F.UnfoldedOffset +
2380 InnerSumSC->getValue()->getZExtValue();
2381 F.BaseRegs.erase(F.BaseRegs.begin() + i);
2382 } else
2383 F.BaseRegs[i] = InnerSum;
2384
2385 // Add J as its own register, or an unfolded immediate.
2386 const SCEVConstant *SC = dyn_cast<SCEVConstant>(*J);
2387 if (TLI && SC && SE.getTypeSizeInBits(SC->getType()) <= 64 &&
2388 TLI->isLegalAddImmediate((uint64_t)F.UnfoldedOffset +
2389 SC->getValue()->getZExtValue()))
2390 F.UnfoldedOffset = (uint64_t)F.UnfoldedOffset +
2391 SC->getValue()->getZExtValue();
2392 else
2393 F.BaseRegs.push_back(*J);
2394
Dan Gohman572645c2010-02-12 10:34:29 +00002395 if (InsertFormula(LU, LUIdx, F))
2396 // If that formula hadn't been seen before, recurse to find more like
2397 // it.
2398 GenerateReassociations(LU, LUIdx, LU.Formulae.back(), Depth+1);
2399 }
2400 }
2401}
2402
2403/// GenerateCombinations - Generate a formula consisting of all of the
2404/// loop-dominating registers added into a single register.
2405void LSRInstance::GenerateCombinations(LSRUse &LU, unsigned LUIdx,
Dan Gohman441a3892010-02-14 18:51:39 +00002406 Formula Base) {
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002407 // This method is only interesting on a plurality of registers.
Dan Gohman572645c2010-02-12 10:34:29 +00002408 if (Base.BaseRegs.size() <= 1) return;
2409
2410 Formula F = Base;
2411 F.BaseRegs.clear();
2412 SmallVector<const SCEV *, 4> Ops;
2413 for (SmallVectorImpl<const SCEV *>::const_iterator
2414 I = Base.BaseRegs.begin(), E = Base.BaseRegs.end(); I != E; ++I) {
2415 const SCEV *BaseReg = *I;
Dan Gohmandc0e8fb2010-11-17 21:41:58 +00002416 if (SE.properlyDominates(BaseReg, L->getHeader()) &&
Dan Gohman17ead4f2010-11-17 21:23:15 +00002417 !SE.hasComputableLoopEvolution(BaseReg, L))
Dan Gohman572645c2010-02-12 10:34:29 +00002418 Ops.push_back(BaseReg);
2419 else
2420 F.BaseRegs.push_back(BaseReg);
2421 }
2422 if (Ops.size() > 1) {
Dan Gohmance947362010-02-14 18:50:49 +00002423 const SCEV *Sum = SE.getAddExpr(Ops);
2424 // TODO: If Sum is zero, it probably means ScalarEvolution missed an
2425 // opportunity to fold something. For now, just ignore such cases
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002426 // rather than proceed with zero in a register.
Dan Gohmance947362010-02-14 18:50:49 +00002427 if (!Sum->isZero()) {
2428 F.BaseRegs.push_back(Sum);
2429 (void)InsertFormula(LU, LUIdx, F);
2430 }
Dan Gohman572645c2010-02-12 10:34:29 +00002431 }
2432}
2433
2434/// GenerateSymbolicOffsets - Generate reuse formulae using symbolic offsets.
2435void LSRInstance::GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx,
2436 Formula Base) {
2437 // We can't add a symbolic offset if the address already contains one.
2438 if (Base.AM.BaseGV) return;
2439
2440 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
2441 const SCEV *G = Base.BaseRegs[i];
2442 GlobalValue *GV = ExtractSymbol(G, SE);
2443 if (G->isZero() || !GV)
2444 continue;
2445 Formula F = Base;
2446 F.AM.BaseGV = GV;
2447 if (!isLegalUse(F.AM, LU.MinOffset, LU.MaxOffset,
2448 LU.Kind, LU.AccessTy, TLI))
2449 continue;
2450 F.BaseRegs[i] = G;
2451 (void)InsertFormula(LU, LUIdx, F);
2452 }
2453}
2454
2455/// GenerateConstantOffsets - Generate reuse formulae using symbolic offsets.
2456void LSRInstance::GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx,
2457 Formula Base) {
2458 // TODO: For now, just add the min and max offset, because it usually isn't
2459 // worthwhile looking at everything inbetween.
Dan Gohmanc88c1a42010-07-15 15:14:45 +00002460 SmallVector<int64_t, 2> Worklist;
Dan Gohman572645c2010-02-12 10:34:29 +00002461 Worklist.push_back(LU.MinOffset);
2462 if (LU.MaxOffset != LU.MinOffset)
2463 Worklist.push_back(LU.MaxOffset);
2464
2465 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
2466 const SCEV *G = Base.BaseRegs[i];
2467
2468 for (SmallVectorImpl<int64_t>::const_iterator I = Worklist.begin(),
2469 E = Worklist.end(); I != E; ++I) {
2470 Formula F = Base;
2471 F.AM.BaseOffs = (uint64_t)Base.AM.BaseOffs - *I;
2472 if (isLegalUse(F.AM, LU.MinOffset - *I, LU.MaxOffset - *I,
2473 LU.Kind, LU.AccessTy, TLI)) {
Dan Gohmanc88c1a42010-07-15 15:14:45 +00002474 // Add the offset to the base register.
Dan Gohman4065f602010-08-16 15:39:27 +00002475 const SCEV *NewG = SE.getAddExpr(SE.getConstant(G->getType(), *I), G);
Dan Gohmanc88c1a42010-07-15 15:14:45 +00002476 // If it cancelled out, drop the base register, otherwise update it.
2477 if (NewG->isZero()) {
2478 std::swap(F.BaseRegs[i], F.BaseRegs.back());
2479 F.BaseRegs.pop_back();
2480 } else
2481 F.BaseRegs[i] = NewG;
Dan Gohman572645c2010-02-12 10:34:29 +00002482
2483 (void)InsertFormula(LU, LUIdx, F);
2484 }
2485 }
2486
2487 int64_t Imm = ExtractImmediate(G, SE);
2488 if (G->isZero() || Imm == 0)
2489 continue;
2490 Formula F = Base;
2491 F.AM.BaseOffs = (uint64_t)F.AM.BaseOffs + Imm;
2492 if (!isLegalUse(F.AM, LU.MinOffset, LU.MaxOffset,
2493 LU.Kind, LU.AccessTy, TLI))
2494 continue;
2495 F.BaseRegs[i] = G;
2496 (void)InsertFormula(LU, LUIdx, F);
2497 }
2498}
2499
2500/// GenerateICmpZeroScales - For ICmpZero, check to see if we can scale up
2501/// the comparison. For example, x == y -> x*c == y*c.
2502void LSRInstance::GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx,
2503 Formula Base) {
2504 if (LU.Kind != LSRUse::ICmpZero) return;
2505
2506 // Determine the integer type for the base formula.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002507 Type *IntTy = Base.getType();
Dan Gohman572645c2010-02-12 10:34:29 +00002508 if (!IntTy) return;
2509 if (SE.getTypeSizeInBits(IntTy) > 64) return;
2510
2511 // Don't do this if there is more than one offset.
2512 if (LU.MinOffset != LU.MaxOffset) return;
2513
2514 assert(!Base.AM.BaseGV && "ICmpZero use is not legal!");
2515
2516 // Check each interesting stride.
2517 for (SmallSetVector<int64_t, 8>::const_iterator
2518 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
2519 int64_t Factor = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00002520
2521 // Check that the multiplication doesn't overflow.
Dan Gohman2ea09e02010-06-24 16:57:52 +00002522 if (Base.AM.BaseOffs == INT64_MIN && Factor == -1)
Dan Gohman968cb932010-02-17 00:41:53 +00002523 continue;
Dan Gohman2ea09e02010-06-24 16:57:52 +00002524 int64_t NewBaseOffs = (uint64_t)Base.AM.BaseOffs * Factor;
2525 if (NewBaseOffs / Factor != Base.AM.BaseOffs)
Dan Gohman572645c2010-02-12 10:34:29 +00002526 continue;
2527
2528 // Check that multiplying with the use offset doesn't overflow.
2529 int64_t Offset = LU.MinOffset;
Dan Gohman968cb932010-02-17 00:41:53 +00002530 if (Offset == INT64_MIN && Factor == -1)
2531 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002532 Offset = (uint64_t)Offset * Factor;
Dan Gohman378c0b32010-02-17 00:42:19 +00002533 if (Offset / Factor != LU.MinOffset)
Dan Gohman572645c2010-02-12 10:34:29 +00002534 continue;
2535
Dan Gohman2ea09e02010-06-24 16:57:52 +00002536 Formula F = Base;
2537 F.AM.BaseOffs = NewBaseOffs;
2538
Dan Gohman572645c2010-02-12 10:34:29 +00002539 // Check that this scale is legal.
2540 if (!isLegalUse(F.AM, Offset, Offset, LU.Kind, LU.AccessTy, TLI))
2541 continue;
2542
2543 // Compensate for the use having MinOffset built into it.
2544 F.AM.BaseOffs = (uint64_t)F.AM.BaseOffs + Offset - LU.MinOffset;
2545
Dan Gohmandeff6212010-05-03 22:09:21 +00002546 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman572645c2010-02-12 10:34:29 +00002547
2548 // Check that multiplying with each base register doesn't overflow.
2549 for (size_t i = 0, e = F.BaseRegs.size(); i != e; ++i) {
2550 F.BaseRegs[i] = SE.getMulExpr(F.BaseRegs[i], FactorS);
Dan Gohmanf09b7122010-02-19 19:35:48 +00002551 if (getExactSDiv(F.BaseRegs[i], FactorS, SE) != Base.BaseRegs[i])
Dan Gohman572645c2010-02-12 10:34:29 +00002552 goto next;
2553 }
2554
2555 // Check that multiplying with the scaled register doesn't overflow.
2556 if (F.ScaledReg) {
2557 F.ScaledReg = SE.getMulExpr(F.ScaledReg, FactorS);
Dan Gohmanf09b7122010-02-19 19:35:48 +00002558 if (getExactSDiv(F.ScaledReg, FactorS, SE) != Base.ScaledReg)
Dan Gohman572645c2010-02-12 10:34:29 +00002559 continue;
2560 }
2561
Dan Gohmancca82142011-05-03 00:46:49 +00002562 // Check that multiplying with the unfolded offset doesn't overflow.
2563 if (F.UnfoldedOffset != 0) {
Dan Gohman1b58d452011-05-23 21:07:39 +00002564 if (F.UnfoldedOffset == INT64_MIN && Factor == -1)
2565 continue;
Dan Gohmancca82142011-05-03 00:46:49 +00002566 F.UnfoldedOffset = (uint64_t)F.UnfoldedOffset * Factor;
2567 if (F.UnfoldedOffset / Factor != Base.UnfoldedOffset)
2568 continue;
2569 }
2570
Dan Gohman572645c2010-02-12 10:34:29 +00002571 // If we make it here and it's legal, add it.
2572 (void)InsertFormula(LU, LUIdx, F);
2573 next:;
2574 }
2575}
2576
2577/// GenerateScales - Generate stride factor reuse formulae by making use of
2578/// scaled-offset address modes, for example.
Dan Gohmanea507f52010-05-20 19:44:23 +00002579void LSRInstance::GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman572645c2010-02-12 10:34:29 +00002580 // Determine the integer type for the base formula.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002581 Type *IntTy = Base.getType();
Dan Gohman572645c2010-02-12 10:34:29 +00002582 if (!IntTy) return;
2583
2584 // If this Formula already has a scaled register, we can't add another one.
2585 if (Base.AM.Scale != 0) return;
2586
2587 // Check each interesting stride.
2588 for (SmallSetVector<int64_t, 8>::const_iterator
2589 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
2590 int64_t Factor = *I;
2591
2592 Base.AM.Scale = Factor;
2593 Base.AM.HasBaseReg = Base.BaseRegs.size() > 1;
2594 // Check whether this scale is going to be legal.
2595 if (!isLegalUse(Base.AM, LU.MinOffset, LU.MaxOffset,
2596 LU.Kind, LU.AccessTy, TLI)) {
2597 // As a special-case, handle special out-of-loop Basic users specially.
2598 // TODO: Reconsider this special case.
2599 if (LU.Kind == LSRUse::Basic &&
2600 isLegalUse(Base.AM, LU.MinOffset, LU.MaxOffset,
2601 LSRUse::Special, LU.AccessTy, TLI) &&
2602 LU.AllFixupsOutsideLoop)
2603 LU.Kind = LSRUse::Special;
2604 else
2605 continue;
2606 }
2607 // For an ICmpZero, negating a solitary base register won't lead to
2608 // new solutions.
2609 if (LU.Kind == LSRUse::ICmpZero &&
2610 !Base.AM.HasBaseReg && Base.AM.BaseOffs == 0 && !Base.AM.BaseGV)
2611 continue;
2612 // For each addrec base reg, apply the scale, if possible.
2613 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
2614 if (const SCEVAddRecExpr *AR =
2615 dyn_cast<SCEVAddRecExpr>(Base.BaseRegs[i])) {
Dan Gohmandeff6212010-05-03 22:09:21 +00002616 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman572645c2010-02-12 10:34:29 +00002617 if (FactorS->isZero())
2618 continue;
2619 // Divide out the factor, ignoring high bits, since we'll be
2620 // scaling the value back up in the end.
Dan Gohmanf09b7122010-02-19 19:35:48 +00002621 if (const SCEV *Quotient = getExactSDiv(AR, FactorS, SE, true)) {
Dan Gohman572645c2010-02-12 10:34:29 +00002622 // TODO: This could be optimized to avoid all the copying.
2623 Formula F = Base;
2624 F.ScaledReg = Quotient;
Dan Gohman5ce6d052010-05-20 15:17:54 +00002625 F.DeleteBaseReg(F.BaseRegs[i]);
Dan Gohman572645c2010-02-12 10:34:29 +00002626 (void)InsertFormula(LU, LUIdx, F);
2627 }
2628 }
2629 }
2630}
2631
2632/// GenerateTruncates - Generate reuse formulae from different IV types.
Dan Gohmanea507f52010-05-20 19:44:23 +00002633void LSRInstance::GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman572645c2010-02-12 10:34:29 +00002634 // This requires TargetLowering to tell us which truncates are free.
2635 if (!TLI) return;
2636
2637 // Don't bother truncating symbolic values.
2638 if (Base.AM.BaseGV) return;
2639
2640 // Determine the integer type for the base formula.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002641 Type *DstTy = Base.getType();
Dan Gohman572645c2010-02-12 10:34:29 +00002642 if (!DstTy) return;
2643 DstTy = SE.getEffectiveSCEVType(DstTy);
2644
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002645 for (SmallSetVector<Type *, 4>::const_iterator
Dan Gohman572645c2010-02-12 10:34:29 +00002646 I = Types.begin(), E = Types.end(); I != E; ++I) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002647 Type *SrcTy = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00002648 if (SrcTy != DstTy && TLI->isTruncateFree(SrcTy, DstTy)) {
2649 Formula F = Base;
2650
2651 if (F.ScaledReg) F.ScaledReg = SE.getAnyExtendExpr(F.ScaledReg, *I);
2652 for (SmallVectorImpl<const SCEV *>::iterator J = F.BaseRegs.begin(),
2653 JE = F.BaseRegs.end(); J != JE; ++J)
2654 *J = SE.getAnyExtendExpr(*J, SrcTy);
2655
2656 // TODO: This assumes we've done basic processing on all uses and
2657 // have an idea what the register usage is.
2658 if (!F.hasRegsUsedByUsesOtherThan(LUIdx, RegUses))
2659 continue;
2660
2661 (void)InsertFormula(LU, LUIdx, F);
2662 }
2663 }
2664}
2665
2666namespace {
2667
Dan Gohman6020d852010-02-14 18:51:20 +00002668/// WorkItem - Helper class for GenerateCrossUseConstantOffsets. It's used to
Dan Gohman572645c2010-02-12 10:34:29 +00002669/// defer modifications so that the search phase doesn't have to worry about
2670/// the data structures moving underneath it.
2671struct WorkItem {
2672 size_t LUIdx;
2673 int64_t Imm;
2674 const SCEV *OrigReg;
2675
2676 WorkItem(size_t LI, int64_t I, const SCEV *R)
2677 : LUIdx(LI), Imm(I), OrigReg(R) {}
2678
2679 void print(raw_ostream &OS) const;
2680 void dump() const;
2681};
2682
2683}
2684
2685void WorkItem::print(raw_ostream &OS) const {
2686 OS << "in formulae referencing " << *OrigReg << " in use " << LUIdx
2687 << " , add offset " << Imm;
2688}
2689
2690void WorkItem::dump() const {
2691 print(errs()); errs() << '\n';
2692}
2693
2694/// GenerateCrossUseConstantOffsets - Look for registers which are a constant
2695/// distance apart and try to form reuse opportunities between them.
2696void LSRInstance::GenerateCrossUseConstantOffsets() {
2697 // Group the registers by their value without any added constant offset.
2698 typedef std::map<int64_t, const SCEV *> ImmMapTy;
2699 typedef DenseMap<const SCEV *, ImmMapTy> RegMapTy;
2700 RegMapTy Map;
2701 DenseMap<const SCEV *, SmallBitVector> UsedByIndicesMap;
2702 SmallVector<const SCEV *, 8> Sequence;
2703 for (RegUseTracker::const_iterator I = RegUses.begin(), E = RegUses.end();
2704 I != E; ++I) {
2705 const SCEV *Reg = *I;
2706 int64_t Imm = ExtractImmediate(Reg, SE);
2707 std::pair<RegMapTy::iterator, bool> Pair =
2708 Map.insert(std::make_pair(Reg, ImmMapTy()));
2709 if (Pair.second)
2710 Sequence.push_back(Reg);
2711 Pair.first->second.insert(std::make_pair(Imm, *I));
2712 UsedByIndicesMap[Reg] |= RegUses.getUsedByIndices(*I);
2713 }
2714
2715 // Now examine each set of registers with the same base value. Build up
2716 // a list of work to do and do the work in a separate step so that we're
2717 // not adding formulae and register counts while we're searching.
Dan Gohman191bd642010-09-01 01:45:53 +00002718 SmallVector<WorkItem, 32> WorkItems;
2719 SmallSet<std::pair<size_t, int64_t>, 32> UniqueItems;
Dan Gohman572645c2010-02-12 10:34:29 +00002720 for (SmallVectorImpl<const SCEV *>::const_iterator I = Sequence.begin(),
2721 E = Sequence.end(); I != E; ++I) {
2722 const SCEV *Reg = *I;
2723 const ImmMapTy &Imms = Map.find(Reg)->second;
2724
Dan Gohmancd045c02010-02-12 19:20:37 +00002725 // It's not worthwhile looking for reuse if there's only one offset.
2726 if (Imms.size() == 1)
2727 continue;
2728
Dan Gohman572645c2010-02-12 10:34:29 +00002729 DEBUG(dbgs() << "Generating cross-use offsets for " << *Reg << ':';
2730 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
2731 J != JE; ++J)
2732 dbgs() << ' ' << J->first;
2733 dbgs() << '\n');
2734
2735 // Examine each offset.
2736 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
2737 J != JE; ++J) {
2738 const SCEV *OrigReg = J->second;
2739
2740 int64_t JImm = J->first;
2741 const SmallBitVector &UsedByIndices = RegUses.getUsedByIndices(OrigReg);
2742
2743 if (!isa<SCEVConstant>(OrigReg) &&
2744 UsedByIndicesMap[Reg].count() == 1) {
2745 DEBUG(dbgs() << "Skipping cross-use reuse for " << *OrigReg << '\n');
2746 continue;
2747 }
2748
2749 // Conservatively examine offsets between this orig reg a few selected
2750 // other orig regs.
2751 ImmMapTy::const_iterator OtherImms[] = {
2752 Imms.begin(), prior(Imms.end()),
Dan Gohmancca82142011-05-03 00:46:49 +00002753 Imms.lower_bound((Imms.begin()->first + prior(Imms.end())->first) / 2)
Dan Gohman572645c2010-02-12 10:34:29 +00002754 };
2755 for (size_t i = 0, e = array_lengthof(OtherImms); i != e; ++i) {
2756 ImmMapTy::const_iterator M = OtherImms[i];
Dan Gohmancd045c02010-02-12 19:20:37 +00002757 if (M == J || M == JE) continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002758
2759 // Compute the difference between the two.
2760 int64_t Imm = (uint64_t)JImm - M->first;
2761 for (int LUIdx = UsedByIndices.find_first(); LUIdx != -1;
Dan Gohman191bd642010-09-01 01:45:53 +00002762 LUIdx = UsedByIndices.find_next(LUIdx))
Dan Gohman572645c2010-02-12 10:34:29 +00002763 // Make a memo of this use, offset, and register tuple.
Dan Gohman191bd642010-09-01 01:45:53 +00002764 if (UniqueItems.insert(std::make_pair(LUIdx, Imm)))
2765 WorkItems.push_back(WorkItem(LUIdx, Imm, OrigReg));
Evan Cheng586f69a2009-11-12 07:35:05 +00002766 }
2767 }
2768 }
2769
Dan Gohman572645c2010-02-12 10:34:29 +00002770 Map.clear();
2771 Sequence.clear();
2772 UsedByIndicesMap.clear();
Dan Gohman191bd642010-09-01 01:45:53 +00002773 UniqueItems.clear();
Dan Gohman572645c2010-02-12 10:34:29 +00002774
2775 // Now iterate through the worklist and add new formulae.
2776 for (SmallVectorImpl<WorkItem>::const_iterator I = WorkItems.begin(),
2777 E = WorkItems.end(); I != E; ++I) {
2778 const WorkItem &WI = *I;
2779 size_t LUIdx = WI.LUIdx;
2780 LSRUse &LU = Uses[LUIdx];
2781 int64_t Imm = WI.Imm;
2782 const SCEV *OrigReg = WI.OrigReg;
2783
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002784 Type *IntTy = SE.getEffectiveSCEVType(OrigReg->getType());
Dan Gohman572645c2010-02-12 10:34:29 +00002785 const SCEV *NegImmS = SE.getSCEV(ConstantInt::get(IntTy, -(uint64_t)Imm));
2786 unsigned BitWidth = SE.getTypeSizeInBits(IntTy);
2787
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002788 // TODO: Use a more targeted data structure.
Dan Gohman572645c2010-02-12 10:34:29 +00002789 for (size_t L = 0, LE = LU.Formulae.size(); L != LE; ++L) {
Dan Gohman9f383eb2010-05-20 22:25:20 +00002790 const Formula &F = LU.Formulae[L];
Dan Gohman572645c2010-02-12 10:34:29 +00002791 // Use the immediate in the scaled register.
2792 if (F.ScaledReg == OrigReg) {
2793 int64_t Offs = (uint64_t)F.AM.BaseOffs +
2794 Imm * (uint64_t)F.AM.Scale;
2795 // Don't create 50 + reg(-50).
2796 if (F.referencesReg(SE.getSCEV(
2797 ConstantInt::get(IntTy, -(uint64_t)Offs))))
2798 continue;
2799 Formula NewF = F;
2800 NewF.AM.BaseOffs = Offs;
2801 if (!isLegalUse(NewF.AM, LU.MinOffset, LU.MaxOffset,
2802 LU.Kind, LU.AccessTy, TLI))
2803 continue;
2804 NewF.ScaledReg = SE.getAddExpr(NegImmS, NewF.ScaledReg);
2805
2806 // If the new scale is a constant in a register, and adding the constant
2807 // value to the immediate would produce a value closer to zero than the
2808 // immediate itself, then the formula isn't worthwhile.
2809 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewF.ScaledReg))
Chris Lattnerc73b24d2011-07-15 06:08:15 +00002810 if (C->getValue()->isNegative() !=
Dan Gohman572645c2010-02-12 10:34:29 +00002811 (NewF.AM.BaseOffs < 0) &&
2812 (C->getValue()->getValue().abs() * APInt(BitWidth, F.AM.Scale))
Dan Gohmane0567812010-04-08 23:03:40 +00002813 .ule(abs64(NewF.AM.BaseOffs)))
Dan Gohman572645c2010-02-12 10:34:29 +00002814 continue;
2815
2816 // OK, looks good.
2817 (void)InsertFormula(LU, LUIdx, NewF);
2818 } else {
2819 // Use the immediate in a base register.
2820 for (size_t N = 0, NE = F.BaseRegs.size(); N != NE; ++N) {
2821 const SCEV *BaseReg = F.BaseRegs[N];
2822 if (BaseReg != OrigReg)
2823 continue;
2824 Formula NewF = F;
2825 NewF.AM.BaseOffs = (uint64_t)NewF.AM.BaseOffs + Imm;
2826 if (!isLegalUse(NewF.AM, LU.MinOffset, LU.MaxOffset,
Dan Gohmancca82142011-05-03 00:46:49 +00002827 LU.Kind, LU.AccessTy, TLI)) {
2828 if (!TLI ||
2829 !TLI->isLegalAddImmediate((uint64_t)NewF.UnfoldedOffset + Imm))
2830 continue;
2831 NewF = F;
2832 NewF.UnfoldedOffset = (uint64_t)NewF.UnfoldedOffset + Imm;
2833 }
Dan Gohman572645c2010-02-12 10:34:29 +00002834 NewF.BaseRegs[N] = SE.getAddExpr(NegImmS, BaseReg);
2835
2836 // If the new formula has a constant in a register, and adding the
2837 // constant value to the immediate would produce a value closer to
2838 // zero than the immediate itself, then the formula isn't worthwhile.
2839 for (SmallVectorImpl<const SCEV *>::const_iterator
2840 J = NewF.BaseRegs.begin(), JE = NewF.BaseRegs.end();
2841 J != JE; ++J)
2842 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*J))
Dan Gohman360026f2010-05-18 23:48:08 +00002843 if ((C->getValue()->getValue() + NewF.AM.BaseOffs).abs().slt(
2844 abs64(NewF.AM.BaseOffs)) &&
2845 (C->getValue()->getValue() +
2846 NewF.AM.BaseOffs).countTrailingZeros() >=
2847 CountTrailingZeros_64(NewF.AM.BaseOffs))
Dan Gohman572645c2010-02-12 10:34:29 +00002848 goto skip_formula;
2849
2850 // Ok, looks good.
2851 (void)InsertFormula(LU, LUIdx, NewF);
2852 break;
2853 skip_formula:;
2854 }
2855 }
2856 }
2857 }
Dale Johannesenc1acc3f2009-05-11 17:15:42 +00002858}
2859
Dan Gohman572645c2010-02-12 10:34:29 +00002860/// GenerateAllReuseFormulae - Generate formulae for each use.
2861void
2862LSRInstance::GenerateAllReuseFormulae() {
Dan Gohmanc2385a02010-02-16 01:42:53 +00002863 // This is split into multiple loops so that hasRegsUsedByUsesOtherThan
Dan Gohman572645c2010-02-12 10:34:29 +00002864 // queries are more precise.
2865 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2866 LSRUse &LU = Uses[LUIdx];
2867 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2868 GenerateReassociations(LU, LUIdx, LU.Formulae[i]);
2869 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2870 GenerateCombinations(LU, LUIdx, LU.Formulae[i]);
2871 }
2872 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2873 LSRUse &LU = Uses[LUIdx];
2874 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2875 GenerateSymbolicOffsets(LU, LUIdx, LU.Formulae[i]);
2876 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2877 GenerateConstantOffsets(LU, LUIdx, LU.Formulae[i]);
2878 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2879 GenerateICmpZeroScales(LU, LUIdx, LU.Formulae[i]);
2880 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2881 GenerateScales(LU, LUIdx, LU.Formulae[i]);
Dan Gohmanc2385a02010-02-16 01:42:53 +00002882 }
2883 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2884 LSRUse &LU = Uses[LUIdx];
Dan Gohman572645c2010-02-12 10:34:29 +00002885 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2886 GenerateTruncates(LU, LUIdx, LU.Formulae[i]);
2887 }
2888
2889 GenerateCrossUseConstantOffsets();
Dan Gohman3902f9f2010-08-29 15:21:38 +00002890
2891 DEBUG(dbgs() << "\n"
2892 "After generating reuse formulae:\n";
2893 print_uses(dbgs()));
Dan Gohman572645c2010-02-12 10:34:29 +00002894}
2895
Dan Gohmanf63d70f2010-10-07 23:43:09 +00002896/// If there are multiple formulae with the same set of registers used
Dan Gohman572645c2010-02-12 10:34:29 +00002897/// by other uses, pick the best one and delete the others.
2898void LSRInstance::FilterOutUndesirableDedicatedRegisters() {
Dan Gohmanfc7744b2010-10-07 23:52:18 +00002899 DenseSet<const SCEV *> VisitedRegs;
2900 SmallPtrSet<const SCEV *, 16> Regs;
Dan Gohman572645c2010-02-12 10:34:29 +00002901#ifndef NDEBUG
Dan Gohmanc6519f92010-05-20 20:05:31 +00002902 bool ChangedFormulae = false;
Dan Gohman572645c2010-02-12 10:34:29 +00002903#endif
2904
2905 // Collect the best formula for each unique set of shared registers. This
2906 // is reset for each use.
2907 typedef DenseMap<SmallVector<const SCEV *, 2>, size_t, UniquifierDenseMapInfo>
2908 BestFormulaeTy;
2909 BestFormulaeTy BestFormulae;
2910
2911 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2912 LSRUse &LU = Uses[LUIdx];
Dan Gohmanea507f52010-05-20 19:44:23 +00002913 DEBUG(dbgs() << "Filtering for use "; LU.print(dbgs()); dbgs() << '\n');
Dan Gohman572645c2010-02-12 10:34:29 +00002914
Dan Gohmanb2df4332010-05-18 23:42:37 +00002915 bool Any = false;
Dan Gohman572645c2010-02-12 10:34:29 +00002916 for (size_t FIdx = 0, NumForms = LU.Formulae.size();
2917 FIdx != NumForms; ++FIdx) {
2918 Formula &F = LU.Formulae[FIdx];
2919
2920 SmallVector<const SCEV *, 2> Key;
2921 for (SmallVectorImpl<const SCEV *>::const_iterator J = F.BaseRegs.begin(),
2922 JE = F.BaseRegs.end(); J != JE; ++J) {
2923 const SCEV *Reg = *J;
2924 if (RegUses.isRegUsedByUsesOtherThan(Reg, LUIdx))
2925 Key.push_back(Reg);
2926 }
2927 if (F.ScaledReg &&
2928 RegUses.isRegUsedByUsesOtherThan(F.ScaledReg, LUIdx))
2929 Key.push_back(F.ScaledReg);
2930 // Unstable sort by host order ok, because this is only used for
2931 // uniquifying.
2932 std::sort(Key.begin(), Key.end());
2933
2934 std::pair<BestFormulaeTy::const_iterator, bool> P =
2935 BestFormulae.insert(std::make_pair(Key, FIdx));
2936 if (!P.second) {
2937 Formula &Best = LU.Formulae[P.first->second];
Dan Gohmanfc7744b2010-10-07 23:52:18 +00002938
2939 Cost CostF;
2940 CostF.RateFormula(F, Regs, VisitedRegs, L, LU.Offsets, SE, DT);
2941 Regs.clear();
2942 Cost CostBest;
2943 CostBest.RateFormula(Best, Regs, VisitedRegs, L, LU.Offsets, SE, DT);
2944 Regs.clear();
2945 if (CostF < CostBest)
Dan Gohman572645c2010-02-12 10:34:29 +00002946 std::swap(F, Best);
Dan Gohman6458ff92010-05-18 22:37:37 +00002947 DEBUG(dbgs() << " Filtering out formula "; F.print(dbgs());
Dan Gohman572645c2010-02-12 10:34:29 +00002948 dbgs() << "\n"
Dan Gohman6458ff92010-05-18 22:37:37 +00002949 " in favor of formula "; Best.print(dbgs());
Dan Gohman572645c2010-02-12 10:34:29 +00002950 dbgs() << '\n');
2951#ifndef NDEBUG
Dan Gohmanc6519f92010-05-20 20:05:31 +00002952 ChangedFormulae = true;
Dan Gohman572645c2010-02-12 10:34:29 +00002953#endif
Dan Gohmand69d6282010-05-18 22:39:15 +00002954 LU.DeleteFormula(F);
Dan Gohman572645c2010-02-12 10:34:29 +00002955 --FIdx;
2956 --NumForms;
Dan Gohmanb2df4332010-05-18 23:42:37 +00002957 Any = true;
Dan Gohman572645c2010-02-12 10:34:29 +00002958 continue;
2959 }
Dan Gohman59dc6032010-05-07 23:36:59 +00002960 }
2961
Dan Gohman57aaa0b2010-05-18 23:55:57 +00002962 // Now that we've filtered out some formulae, recompute the Regs set.
Dan Gohmanb2df4332010-05-18 23:42:37 +00002963 if (Any)
2964 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman59dc6032010-05-07 23:36:59 +00002965
2966 // Reset this to prepare for the next use.
Dan Gohman572645c2010-02-12 10:34:29 +00002967 BestFormulae.clear();
2968 }
2969
Dan Gohmanc6519f92010-05-20 20:05:31 +00002970 DEBUG(if (ChangedFormulae) {
Dan Gohman9214b822010-02-13 02:06:02 +00002971 dbgs() << "\n"
2972 "After filtering out undesirable candidates:\n";
Dan Gohman572645c2010-02-12 10:34:29 +00002973 print_uses(dbgs());
2974 });
2975}
2976
Dan Gohmand079c302010-05-18 22:51:59 +00002977// This is a rough guess that seems to work fairly well.
2978static const size_t ComplexityLimit = UINT16_MAX;
2979
2980/// EstimateSearchSpaceComplexity - Estimate the worst-case number of
2981/// solutions the solver might have to consider. It almost never considers
2982/// this many solutions because it prune the search space, but the pruning
2983/// isn't always sufficient.
2984size_t LSRInstance::EstimateSearchSpaceComplexity() const {
Dan Gohman0d6715a2010-10-07 23:37:58 +00002985 size_t Power = 1;
Dan Gohmand079c302010-05-18 22:51:59 +00002986 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
2987 E = Uses.end(); I != E; ++I) {
2988 size_t FSize = I->Formulae.size();
2989 if (FSize >= ComplexityLimit) {
2990 Power = ComplexityLimit;
2991 break;
2992 }
2993 Power *= FSize;
2994 if (Power >= ComplexityLimit)
2995 break;
2996 }
2997 return Power;
2998}
2999
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003000/// NarrowSearchSpaceByDetectingSupersets - When one formula uses a superset
3001/// of the registers of another formula, it won't help reduce register
3002/// pressure (though it may not necessarily hurt register pressure); remove
3003/// it to simplify the system.
3004void LSRInstance::NarrowSearchSpaceByDetectingSupersets() {
Dan Gohmana2086b32010-05-19 23:43:12 +00003005 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
3006 DEBUG(dbgs() << "The search space is too complex.\n");
3007
3008 DEBUG(dbgs() << "Narrowing the search space by eliminating formulae "
3009 "which use a superset of registers used by other "
3010 "formulae.\n");
3011
3012 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3013 LSRUse &LU = Uses[LUIdx];
3014 bool Any = false;
3015 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
3016 Formula &F = LU.Formulae[i];
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00003017 // Look for a formula with a constant or GV in a register. If the use
3018 // also has a formula with that same value in an immediate field,
3019 // delete the one that uses a register.
Dan Gohmana2086b32010-05-19 23:43:12 +00003020 for (SmallVectorImpl<const SCEV *>::const_iterator
3021 I = F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I) {
3022 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*I)) {
3023 Formula NewF = F;
3024 NewF.AM.BaseOffs += C->getValue()->getSExtValue();
3025 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
3026 (I - F.BaseRegs.begin()));
3027 if (LU.HasFormulaWithSameRegs(NewF)) {
3028 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
3029 LU.DeleteFormula(F);
3030 --i;
3031 --e;
3032 Any = true;
3033 break;
3034 }
3035 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(*I)) {
3036 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue()))
3037 if (!F.AM.BaseGV) {
3038 Formula NewF = F;
3039 NewF.AM.BaseGV = GV;
3040 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
3041 (I - F.BaseRegs.begin()));
3042 if (LU.HasFormulaWithSameRegs(NewF)) {
3043 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
3044 dbgs() << '\n');
3045 LU.DeleteFormula(F);
3046 --i;
3047 --e;
3048 Any = true;
3049 break;
3050 }
3051 }
3052 }
3053 }
3054 }
3055 if (Any)
3056 LU.RecomputeRegs(LUIdx, RegUses);
3057 }
3058
3059 DEBUG(dbgs() << "After pre-selection:\n";
3060 print_uses(dbgs()));
3061 }
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003062}
Dan Gohmana2086b32010-05-19 23:43:12 +00003063
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003064/// NarrowSearchSpaceByCollapsingUnrolledCode - When there are many registers
3065/// for expressions like A, A+1, A+2, etc., allocate a single register for
3066/// them.
3067void LSRInstance::NarrowSearchSpaceByCollapsingUnrolledCode() {
Dan Gohmana2086b32010-05-19 23:43:12 +00003068 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
3069 DEBUG(dbgs() << "The search space is too complex.\n");
3070
3071 DEBUG(dbgs() << "Narrowing the search space by assuming that uses "
3072 "separated by a constant offset will use the same "
3073 "registers.\n");
3074
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00003075 // This is especially useful for unrolled loops.
3076
Dan Gohmana2086b32010-05-19 23:43:12 +00003077 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3078 LSRUse &LU = Uses[LUIdx];
Dan Gohman402d4352010-05-20 20:33:18 +00003079 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
3080 E = LU.Formulae.end(); I != E; ++I) {
3081 const Formula &F = *I;
Dan Gohmana2086b32010-05-19 23:43:12 +00003082 if (F.AM.BaseOffs != 0 && F.AM.Scale == 0) {
Dan Gohman191bd642010-09-01 01:45:53 +00003083 if (LSRUse *LUThatHas = FindUseWithSimilarFormula(F, LU)) {
3084 if (reconcileNewOffset(*LUThatHas, F.AM.BaseOffs,
Dan Gohmana2086b32010-05-19 23:43:12 +00003085 /*HasBaseReg=*/false,
3086 LU.Kind, LU.AccessTy)) {
3087 DEBUG(dbgs() << " Deleting use "; LU.print(dbgs());
3088 dbgs() << '\n');
3089
3090 LUThatHas->AllFixupsOutsideLoop &= LU.AllFixupsOutsideLoop;
3091
Dan Gohman191bd642010-09-01 01:45:53 +00003092 // Update the relocs to reference the new use.
3093 for (SmallVectorImpl<LSRFixup>::iterator I = Fixups.begin(),
3094 E = Fixups.end(); I != E; ++I) {
3095 LSRFixup &Fixup = *I;
3096 if (Fixup.LUIdx == LUIdx) {
3097 Fixup.LUIdx = LUThatHas - &Uses.front();
3098 Fixup.Offset += F.AM.BaseOffs;
Dan Gohmandd3db0e2010-10-07 23:36:45 +00003099 // Add the new offset to LUThatHas' offset list.
3100 if (LUThatHas->Offsets.back() != Fixup.Offset) {
3101 LUThatHas->Offsets.push_back(Fixup.Offset);
3102 if (Fixup.Offset > LUThatHas->MaxOffset)
3103 LUThatHas->MaxOffset = Fixup.Offset;
3104 if (Fixup.Offset < LUThatHas->MinOffset)
3105 LUThatHas->MinOffset = Fixup.Offset;
3106 }
Dan Gohman191bd642010-09-01 01:45:53 +00003107 DEBUG(dbgs() << "New fixup has offset "
3108 << Fixup.Offset << '\n');
3109 }
3110 if (Fixup.LUIdx == NumUses-1)
3111 Fixup.LUIdx = LUIdx;
3112 }
3113
Dan Gohmanc2921ea2010-10-08 19:33:26 +00003114 // Delete formulae from the new use which are no longer legal.
3115 bool Any = false;
3116 for (size_t i = 0, e = LUThatHas->Formulae.size(); i != e; ++i) {
3117 Formula &F = LUThatHas->Formulae[i];
3118 if (!isLegalUse(F.AM,
3119 LUThatHas->MinOffset, LUThatHas->MaxOffset,
3120 LUThatHas->Kind, LUThatHas->AccessTy, TLI)) {
3121 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
3122 dbgs() << '\n');
3123 LUThatHas->DeleteFormula(F);
3124 --i;
3125 --e;
3126 Any = true;
3127 }
3128 }
3129 if (Any)
3130 LUThatHas->RecomputeRegs(LUThatHas - &Uses.front(), RegUses);
3131
Dan Gohmana2086b32010-05-19 23:43:12 +00003132 // Delete the old use.
Dan Gohmanc6897702010-10-07 23:33:43 +00003133 DeleteUse(LU, LUIdx);
Dan Gohmana2086b32010-05-19 23:43:12 +00003134 --LUIdx;
3135 --NumUses;
3136 break;
3137 }
3138 }
3139 }
3140 }
3141 }
3142
3143 DEBUG(dbgs() << "After pre-selection:\n";
3144 print_uses(dbgs()));
3145 }
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003146}
Dan Gohmana2086b32010-05-19 23:43:12 +00003147
Andrew Trick3228cc22011-03-14 16:50:06 +00003148/// NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters - Call
Dan Gohman4f7e18d2010-08-29 16:39:22 +00003149/// FilterOutUndesirableDedicatedRegisters again, if necessary, now that
3150/// we've done more filtering, as it may be able to find more formulae to
3151/// eliminate.
3152void LSRInstance::NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters(){
3153 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
3154 DEBUG(dbgs() << "The search space is too complex.\n");
3155
3156 DEBUG(dbgs() << "Narrowing the search space by re-filtering out "
3157 "undesirable dedicated registers.\n");
3158
3159 FilterOutUndesirableDedicatedRegisters();
3160
3161 DEBUG(dbgs() << "After pre-selection:\n";
3162 print_uses(dbgs()));
3163 }
3164}
3165
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003166/// NarrowSearchSpaceByPickingWinnerRegs - Pick a register which seems likely
3167/// to be profitable, and then in any use which has any reference to that
3168/// register, delete all formulae which do not reference that register.
3169void LSRInstance::NarrowSearchSpaceByPickingWinnerRegs() {
Dan Gohman76c315a2010-05-20 20:52:00 +00003170 // With all other options exhausted, loop until the system is simple
3171 // enough to handle.
Dan Gohman572645c2010-02-12 10:34:29 +00003172 SmallPtrSet<const SCEV *, 4> Taken;
Dan Gohmand079c302010-05-18 22:51:59 +00003173 while (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
Dan Gohman572645c2010-02-12 10:34:29 +00003174 // Ok, we have too many of formulae on our hands to conveniently handle.
3175 // Use a rough heuristic to thin out the list.
Dan Gohman0da751b2010-05-18 22:41:32 +00003176 DEBUG(dbgs() << "The search space is too complex.\n");
Dan Gohman572645c2010-02-12 10:34:29 +00003177
3178 // Pick the register which is used by the most LSRUses, which is likely
3179 // to be a good reuse register candidate.
3180 const SCEV *Best = 0;
3181 unsigned BestNum = 0;
3182 for (RegUseTracker::const_iterator I = RegUses.begin(), E = RegUses.end();
3183 I != E; ++I) {
3184 const SCEV *Reg = *I;
3185 if (Taken.count(Reg))
3186 continue;
3187 if (!Best)
3188 Best = Reg;
3189 else {
3190 unsigned Count = RegUses.getUsedByIndices(Reg).count();
3191 if (Count > BestNum) {
3192 Best = Reg;
3193 BestNum = Count;
3194 }
3195 }
3196 }
3197
3198 DEBUG(dbgs() << "Narrowing the search space by assuming " << *Best
Dan Gohman3f46a3a2010-03-01 17:49:51 +00003199 << " will yield profitable reuse.\n");
Dan Gohman572645c2010-02-12 10:34:29 +00003200 Taken.insert(Best);
3201
3202 // In any use with formulae which references this register, delete formulae
3203 // which don't reference it.
Dan Gohmanb2df4332010-05-18 23:42:37 +00003204 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3205 LSRUse &LU = Uses[LUIdx];
Dan Gohman572645c2010-02-12 10:34:29 +00003206 if (!LU.Regs.count(Best)) continue;
3207
Dan Gohmanb2df4332010-05-18 23:42:37 +00003208 bool Any = false;
Dan Gohman572645c2010-02-12 10:34:29 +00003209 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
3210 Formula &F = LU.Formulae[i];
3211 if (!F.referencesReg(Best)) {
3212 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
Dan Gohmand69d6282010-05-18 22:39:15 +00003213 LU.DeleteFormula(F);
Dan Gohman572645c2010-02-12 10:34:29 +00003214 --e;
3215 --i;
Dan Gohmanb2df4332010-05-18 23:42:37 +00003216 Any = true;
Dan Gohman59dc6032010-05-07 23:36:59 +00003217 assert(e != 0 && "Use has no formulae left! Is Regs inconsistent?");
Dan Gohman572645c2010-02-12 10:34:29 +00003218 continue;
3219 }
Dan Gohman572645c2010-02-12 10:34:29 +00003220 }
Dan Gohmanb2df4332010-05-18 23:42:37 +00003221
3222 if (Any)
3223 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman572645c2010-02-12 10:34:29 +00003224 }
3225
3226 DEBUG(dbgs() << "After pre-selection:\n";
3227 print_uses(dbgs()));
3228 }
3229}
3230
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003231/// NarrowSearchSpaceUsingHeuristics - If there are an extraordinary number of
3232/// formulae to choose from, use some rough heuristics to prune down the number
3233/// of formulae. This keeps the main solver from taking an extraordinary amount
3234/// of time in some worst-case scenarios.
3235void LSRInstance::NarrowSearchSpaceUsingHeuristics() {
3236 NarrowSearchSpaceByDetectingSupersets();
3237 NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman4f7e18d2010-08-29 16:39:22 +00003238 NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003239 NarrowSearchSpaceByPickingWinnerRegs();
3240}
3241
Dan Gohman572645c2010-02-12 10:34:29 +00003242/// SolveRecurse - This is the recursive solver.
3243void LSRInstance::SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
3244 Cost &SolutionCost,
3245 SmallVectorImpl<const Formula *> &Workspace,
3246 const Cost &CurCost,
3247 const SmallPtrSet<const SCEV *, 16> &CurRegs,
3248 DenseSet<const SCEV *> &VisitedRegs) const {
3249 // Some ideas:
3250 // - prune more:
3251 // - use more aggressive filtering
3252 // - sort the formula so that the most profitable solutions are found first
3253 // - sort the uses too
3254 // - search faster:
Dan Gohman3f46a3a2010-03-01 17:49:51 +00003255 // - don't compute a cost, and then compare. compare while computing a cost
Dan Gohman572645c2010-02-12 10:34:29 +00003256 // and bail early.
3257 // - track register sets with SmallBitVector
3258
3259 const LSRUse &LU = Uses[Workspace.size()];
3260
3261 // If this use references any register that's already a part of the
3262 // in-progress solution, consider it a requirement that a formula must
3263 // reference that register in order to be considered. This prunes out
3264 // unprofitable searching.
3265 SmallSetVector<const SCEV *, 4> ReqRegs;
3266 for (SmallPtrSet<const SCEV *, 16>::const_iterator I = CurRegs.begin(),
3267 E = CurRegs.end(); I != E; ++I)
Dan Gohman9214b822010-02-13 02:06:02 +00003268 if (LU.Regs.count(*I))
Dan Gohman572645c2010-02-12 10:34:29 +00003269 ReqRegs.insert(*I);
Dan Gohman572645c2010-02-12 10:34:29 +00003270
Dan Gohman9214b822010-02-13 02:06:02 +00003271 bool AnySatisfiedReqRegs = false;
Dan Gohman572645c2010-02-12 10:34:29 +00003272 SmallPtrSet<const SCEV *, 16> NewRegs;
3273 Cost NewCost;
Dan Gohman9214b822010-02-13 02:06:02 +00003274retry:
Dan Gohman572645c2010-02-12 10:34:29 +00003275 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
3276 E = LU.Formulae.end(); I != E; ++I) {
3277 const Formula &F = *I;
3278
3279 // Ignore formulae which do not use any of the required registers.
3280 for (SmallSetVector<const SCEV *, 4>::const_iterator J = ReqRegs.begin(),
3281 JE = ReqRegs.end(); J != JE; ++J) {
3282 const SCEV *Reg = *J;
3283 if ((!F.ScaledReg || F.ScaledReg != Reg) &&
3284 std::find(F.BaseRegs.begin(), F.BaseRegs.end(), Reg) ==
3285 F.BaseRegs.end())
3286 goto skip;
3287 }
Dan Gohman9214b822010-02-13 02:06:02 +00003288 AnySatisfiedReqRegs = true;
Dan Gohman572645c2010-02-12 10:34:29 +00003289
3290 // Evaluate the cost of the current formula. If it's already worse than
3291 // the current best, prune the search at that point.
3292 NewCost = CurCost;
3293 NewRegs = CurRegs;
3294 NewCost.RateFormula(F, NewRegs, VisitedRegs, L, LU.Offsets, SE, DT);
3295 if (NewCost < SolutionCost) {
3296 Workspace.push_back(&F);
3297 if (Workspace.size() != Uses.size()) {
3298 SolveRecurse(Solution, SolutionCost, Workspace, NewCost,
3299 NewRegs, VisitedRegs);
3300 if (F.getNumRegs() == 1 && Workspace.size() == 1)
3301 VisitedRegs.insert(F.ScaledReg ? F.ScaledReg : F.BaseRegs[0]);
3302 } else {
3303 DEBUG(dbgs() << "New best at "; NewCost.print(dbgs());
3304 dbgs() << ". Regs:";
3305 for (SmallPtrSet<const SCEV *, 16>::const_iterator
3306 I = NewRegs.begin(), E = NewRegs.end(); I != E; ++I)
3307 dbgs() << ' ' << **I;
3308 dbgs() << '\n');
3309
3310 SolutionCost = NewCost;
3311 Solution = Workspace;
3312 }
3313 Workspace.pop_back();
3314 }
3315 skip:;
3316 }
Dan Gohman9214b822010-02-13 02:06:02 +00003317
Andrew Trick80ef1b22011-09-27 00:44:14 +00003318 if (!EnableRetry && !AnySatisfiedReqRegs)
3319 return;
3320
Dan Gohman9214b822010-02-13 02:06:02 +00003321 // If none of the formulae had all of the required registers, relax the
3322 // constraint so that we don't exclude all formulae.
3323 if (!AnySatisfiedReqRegs) {
Dan Gohman59dc6032010-05-07 23:36:59 +00003324 assert(!ReqRegs.empty() && "Solver failed even without required registers");
Dan Gohman9214b822010-02-13 02:06:02 +00003325 ReqRegs.clear();
3326 goto retry;
3327 }
Dan Gohman572645c2010-02-12 10:34:29 +00003328}
3329
Dan Gohman76c315a2010-05-20 20:52:00 +00003330/// Solve - Choose one formula from each use. Return the results in the given
3331/// Solution vector.
Dan Gohman572645c2010-02-12 10:34:29 +00003332void LSRInstance::Solve(SmallVectorImpl<const Formula *> &Solution) const {
3333 SmallVector<const Formula *, 8> Workspace;
3334 Cost SolutionCost;
3335 SolutionCost.Loose();
3336 Cost CurCost;
3337 SmallPtrSet<const SCEV *, 16> CurRegs;
3338 DenseSet<const SCEV *> VisitedRegs;
3339 Workspace.reserve(Uses.size());
3340
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00003341 // SolveRecurse does all the work.
Dan Gohman572645c2010-02-12 10:34:29 +00003342 SolveRecurse(Solution, SolutionCost, Workspace, CurCost,
3343 CurRegs, VisitedRegs);
Andrew Trick80ef1b22011-09-27 00:44:14 +00003344 if (Solution.empty()) {
3345 DEBUG(dbgs() << "\nNo Satisfactory Solution\n");
3346 return;
3347 }
Dan Gohman572645c2010-02-12 10:34:29 +00003348
3349 // Ok, we've now made all our decisions.
3350 DEBUG(dbgs() << "\n"
3351 "The chosen solution requires "; SolutionCost.print(dbgs());
3352 dbgs() << ":\n";
3353 for (size_t i = 0, e = Uses.size(); i != e; ++i) {
3354 dbgs() << " ";
3355 Uses[i].print(dbgs());
3356 dbgs() << "\n"
3357 " ";
3358 Solution[i]->print(dbgs());
3359 dbgs() << '\n';
3360 });
Dan Gohmana5528782010-05-20 20:59:23 +00003361
3362 assert(Solution.size() == Uses.size() && "Malformed solution!");
Dan Gohman572645c2010-02-12 10:34:29 +00003363}
3364
Dan Gohmane5f76872010-04-09 22:07:05 +00003365/// HoistInsertPosition - Helper for AdjustInsertPositionForExpand. Climb up
3366/// the dominator tree far as we can go while still being dominated by the
3367/// input positions. This helps canonicalize the insert position, which
3368/// encourages sharing.
3369BasicBlock::iterator
3370LSRInstance::HoistInsertPosition(BasicBlock::iterator IP,
3371 const SmallVectorImpl<Instruction *> &Inputs)
3372 const {
3373 for (;;) {
3374 const Loop *IPLoop = LI.getLoopFor(IP->getParent());
3375 unsigned IPLoopDepth = IPLoop ? IPLoop->getLoopDepth() : 0;
3376
3377 BasicBlock *IDom;
Dan Gohmand974a0e2010-05-20 20:00:25 +00003378 for (DomTreeNode *Rung = DT.getNode(IP->getParent()); ; ) {
Dan Gohman0fe46d92010-05-20 22:46:54 +00003379 if (!Rung) return IP;
Dan Gohmand974a0e2010-05-20 20:00:25 +00003380 Rung = Rung->getIDom();
3381 if (!Rung) return IP;
3382 IDom = Rung->getBlock();
Dan Gohmane5f76872010-04-09 22:07:05 +00003383
3384 // Don't climb into a loop though.
3385 const Loop *IDomLoop = LI.getLoopFor(IDom);
3386 unsigned IDomDepth = IDomLoop ? IDomLoop->getLoopDepth() : 0;
3387 if (IDomDepth <= IPLoopDepth &&
3388 (IDomDepth != IPLoopDepth || IDomLoop == IPLoop))
3389 break;
3390 }
3391
3392 bool AllDominate = true;
3393 Instruction *BetterPos = 0;
3394 Instruction *Tentative = IDom->getTerminator();
3395 for (SmallVectorImpl<Instruction *>::const_iterator I = Inputs.begin(),
3396 E = Inputs.end(); I != E; ++I) {
3397 Instruction *Inst = *I;
3398 if (Inst == Tentative || !DT.dominates(Inst, Tentative)) {
3399 AllDominate = false;
3400 break;
3401 }
3402 // Attempt to find an insert position in the middle of the block,
3403 // instead of at the end, so that it can be used for other expansions.
3404 if (IDom == Inst->getParent() &&
3405 (!BetterPos || DT.dominates(BetterPos, Inst)))
Douglas Gregor7d9663c2010-05-11 06:17:44 +00003406 BetterPos = llvm::next(BasicBlock::iterator(Inst));
Dan Gohmane5f76872010-04-09 22:07:05 +00003407 }
3408 if (!AllDominate)
3409 break;
3410 if (BetterPos)
3411 IP = BetterPos;
3412 else
3413 IP = Tentative;
3414 }
3415
3416 return IP;
3417}
3418
3419/// AdjustInsertPositionForExpand - Determine an input position which will be
Dan Gohmand96eae82010-04-09 02:00:38 +00003420/// dominated by the operands and which will dominate the result.
3421BasicBlock::iterator
Dan Gohmane5f76872010-04-09 22:07:05 +00003422LSRInstance::AdjustInsertPositionForExpand(BasicBlock::iterator IP,
3423 const LSRFixup &LF,
3424 const LSRUse &LU) const {
Dan Gohmand96eae82010-04-09 02:00:38 +00003425 // Collect some instructions which must be dominated by the
Dan Gohman448db1c2010-04-07 22:27:08 +00003426 // expanding replacement. These must be dominated by any operands that
Dan Gohman572645c2010-02-12 10:34:29 +00003427 // will be required in the expansion.
3428 SmallVector<Instruction *, 4> Inputs;
3429 if (Instruction *I = dyn_cast<Instruction>(LF.OperandValToReplace))
3430 Inputs.push_back(I);
3431 if (LU.Kind == LSRUse::ICmpZero)
3432 if (Instruction *I =
3433 dyn_cast<Instruction>(cast<ICmpInst>(LF.UserInst)->getOperand(1)))
3434 Inputs.push_back(I);
Dan Gohman448db1c2010-04-07 22:27:08 +00003435 if (LF.PostIncLoops.count(L)) {
3436 if (LF.isUseFullyOutsideLoop(L))
Dan Gohman069d6f32010-03-02 01:59:21 +00003437 Inputs.push_back(L->getLoopLatch()->getTerminator());
3438 else
3439 Inputs.push_back(IVIncInsertPos);
3440 }
Dan Gohman701a4ae2010-04-08 05:57:57 +00003441 // The expansion must also be dominated by the increment positions of any
3442 // loops it for which it is using post-inc mode.
3443 for (PostIncLoopSet::const_iterator I = LF.PostIncLoops.begin(),
3444 E = LF.PostIncLoops.end(); I != E; ++I) {
3445 const Loop *PIL = *I;
3446 if (PIL == L) continue;
3447
Dan Gohmane5f76872010-04-09 22:07:05 +00003448 // Be dominated by the loop exit.
Dan Gohman701a4ae2010-04-08 05:57:57 +00003449 SmallVector<BasicBlock *, 4> ExitingBlocks;
3450 PIL->getExitingBlocks(ExitingBlocks);
3451 if (!ExitingBlocks.empty()) {
3452 BasicBlock *BB = ExitingBlocks[0];
3453 for (unsigned i = 1, e = ExitingBlocks.size(); i != e; ++i)
3454 BB = DT.findNearestCommonDominator(BB, ExitingBlocks[i]);
3455 Inputs.push_back(BB->getTerminator());
3456 }
3457 }
Dan Gohman572645c2010-02-12 10:34:29 +00003458
3459 // Then, climb up the immediate dominator tree as far as we can go while
3460 // still being dominated by the input positions.
Dan Gohmane5f76872010-04-09 22:07:05 +00003461 IP = HoistInsertPosition(IP, Inputs);
Dan Gohmand96eae82010-04-09 02:00:38 +00003462
3463 // Don't insert instructions before PHI nodes.
Dan Gohman572645c2010-02-12 10:34:29 +00003464 while (isa<PHINode>(IP)) ++IP;
Dan Gohmand96eae82010-04-09 02:00:38 +00003465
Bill Wendlinga4c86ab2011-08-24 21:06:46 +00003466 // Ignore landingpad instructions.
3467 while (isa<LandingPadInst>(IP)) ++IP;
3468
Dan Gohmand96eae82010-04-09 02:00:38 +00003469 // Ignore debug intrinsics.
Dan Gohman449f31c2010-03-26 00:33:27 +00003470 while (isa<DbgInfoIntrinsic>(IP)) ++IP;
Dan Gohman572645c2010-02-12 10:34:29 +00003471
Dan Gohmand96eae82010-04-09 02:00:38 +00003472 return IP;
3473}
3474
Dan Gohman76c315a2010-05-20 20:52:00 +00003475/// Expand - Emit instructions for the leading candidate expression for this
3476/// LSRUse (this is called "expanding").
Dan Gohmand96eae82010-04-09 02:00:38 +00003477Value *LSRInstance::Expand(const LSRFixup &LF,
3478 const Formula &F,
3479 BasicBlock::iterator IP,
3480 SCEVExpander &Rewriter,
3481 SmallVectorImpl<WeakVH> &DeadInsts) const {
3482 const LSRUse &LU = Uses[LF.LUIdx];
3483
3484 // Determine an input position which will be dominated by the operands and
3485 // which will dominate the result.
Dan Gohmane5f76872010-04-09 22:07:05 +00003486 IP = AdjustInsertPositionForExpand(IP, LF, LU);
Dan Gohmand96eae82010-04-09 02:00:38 +00003487
Dan Gohman572645c2010-02-12 10:34:29 +00003488 // Inform the Rewriter if we have a post-increment use, so that it can
3489 // perform an advantageous expansion.
Dan Gohman448db1c2010-04-07 22:27:08 +00003490 Rewriter.setPostInc(LF.PostIncLoops);
Dan Gohman572645c2010-02-12 10:34:29 +00003491
3492 // This is the type that the user actually needs.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003493 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00003494 // This will be the type that we'll initially expand to.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003495 Type *Ty = F.getType();
Dan Gohman572645c2010-02-12 10:34:29 +00003496 if (!Ty)
3497 // No type known; just expand directly to the ultimate type.
3498 Ty = OpTy;
3499 else if (SE.getEffectiveSCEVType(Ty) == SE.getEffectiveSCEVType(OpTy))
3500 // Expand directly to the ultimate type if it's the right size.
3501 Ty = OpTy;
3502 // This is the type to do integer arithmetic in.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003503 Type *IntTy = SE.getEffectiveSCEVType(Ty);
Dan Gohman572645c2010-02-12 10:34:29 +00003504
3505 // Build up a list of operands to add together to form the full base.
3506 SmallVector<const SCEV *, 8> Ops;
3507
3508 // Expand the BaseRegs portion.
3509 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
3510 E = F.BaseRegs.end(); I != E; ++I) {
3511 const SCEV *Reg = *I;
3512 assert(!Reg->isZero() && "Zero allocated in a base register!");
3513
Dan Gohman448db1c2010-04-07 22:27:08 +00003514 // If we're expanding for a post-inc user, make the post-inc adjustment.
3515 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
3516 Reg = TransformForPostIncUse(Denormalize, Reg,
3517 LF.UserInst, LF.OperandValToReplace,
3518 Loops, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +00003519
3520 Ops.push_back(SE.getUnknown(Rewriter.expandCodeFor(Reg, 0, IP)));
3521 }
3522
Dan Gohman087bd1e2010-03-03 05:29:13 +00003523 // Flush the operand list to suppress SCEVExpander hoisting.
3524 if (!Ops.empty()) {
3525 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
3526 Ops.clear();
3527 Ops.push_back(SE.getUnknown(FullV));
3528 }
3529
Dan Gohman572645c2010-02-12 10:34:29 +00003530 // Expand the ScaledReg portion.
3531 Value *ICmpScaledV = 0;
3532 if (F.AM.Scale != 0) {
3533 const SCEV *ScaledS = F.ScaledReg;
3534
Dan Gohman448db1c2010-04-07 22:27:08 +00003535 // If we're expanding for a post-inc user, make the post-inc adjustment.
3536 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
3537 ScaledS = TransformForPostIncUse(Denormalize, ScaledS,
3538 LF.UserInst, LF.OperandValToReplace,
3539 Loops, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +00003540
3541 if (LU.Kind == LSRUse::ICmpZero) {
3542 // An interesting way of "folding" with an icmp is to use a negated
3543 // scale, which we'll implement by inserting it into the other operand
3544 // of the icmp.
3545 assert(F.AM.Scale == -1 &&
3546 "The only scale supported by ICmpZero uses is -1!");
3547 ICmpScaledV = Rewriter.expandCodeFor(ScaledS, 0, IP);
3548 } else {
3549 // Otherwise just expand the scaled register and an explicit scale,
3550 // which is expected to be matched as part of the address.
3551 ScaledS = SE.getUnknown(Rewriter.expandCodeFor(ScaledS, 0, IP));
3552 ScaledS = SE.getMulExpr(ScaledS,
Dan Gohmandeff6212010-05-03 22:09:21 +00003553 SE.getConstant(ScaledS->getType(), F.AM.Scale));
Dan Gohman572645c2010-02-12 10:34:29 +00003554 Ops.push_back(ScaledS);
Dan Gohman087bd1e2010-03-03 05:29:13 +00003555
3556 // Flush the operand list to suppress SCEVExpander hoisting.
3557 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
3558 Ops.clear();
3559 Ops.push_back(SE.getUnknown(FullV));
Dan Gohman572645c2010-02-12 10:34:29 +00003560 }
3561 }
3562
Dan Gohman087bd1e2010-03-03 05:29:13 +00003563 // Expand the GV portion.
3564 if (F.AM.BaseGV) {
3565 Ops.push_back(SE.getUnknown(F.AM.BaseGV));
3566
3567 // Flush the operand list to suppress SCEVExpander hoisting.
3568 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
3569 Ops.clear();
3570 Ops.push_back(SE.getUnknown(FullV));
3571 }
3572
3573 // Expand the immediate portion.
Dan Gohman572645c2010-02-12 10:34:29 +00003574 int64_t Offset = (uint64_t)F.AM.BaseOffs + LF.Offset;
3575 if (Offset != 0) {
3576 if (LU.Kind == LSRUse::ICmpZero) {
3577 // The other interesting way of "folding" with an ICmpZero is to use a
3578 // negated immediate.
3579 if (!ICmpScaledV)
3580 ICmpScaledV = ConstantInt::get(IntTy, -Offset);
3581 else {
3582 Ops.push_back(SE.getUnknown(ICmpScaledV));
3583 ICmpScaledV = ConstantInt::get(IntTy, Offset);
3584 }
3585 } else {
3586 // Just add the immediate values. These again are expected to be matched
3587 // as part of the address.
Dan Gohman087bd1e2010-03-03 05:29:13 +00003588 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy, Offset)));
Dan Gohman572645c2010-02-12 10:34:29 +00003589 }
3590 }
3591
Dan Gohmancca82142011-05-03 00:46:49 +00003592 // Expand the unfolded offset portion.
3593 int64_t UnfoldedOffset = F.UnfoldedOffset;
3594 if (UnfoldedOffset != 0) {
3595 // Just add the immediate values.
3596 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy,
3597 UnfoldedOffset)));
3598 }
3599
Dan Gohman572645c2010-02-12 10:34:29 +00003600 // Emit instructions summing all the operands.
3601 const SCEV *FullS = Ops.empty() ?
Dan Gohmandeff6212010-05-03 22:09:21 +00003602 SE.getConstant(IntTy, 0) :
Dan Gohman572645c2010-02-12 10:34:29 +00003603 SE.getAddExpr(Ops);
3604 Value *FullV = Rewriter.expandCodeFor(FullS, Ty, IP);
3605
3606 // We're done expanding now, so reset the rewriter.
Dan Gohman448db1c2010-04-07 22:27:08 +00003607 Rewriter.clearPostInc();
Dan Gohman572645c2010-02-12 10:34:29 +00003608
3609 // An ICmpZero Formula represents an ICmp which we're handling as a
3610 // comparison against zero. Now that we've expanded an expression for that
3611 // form, update the ICmp's other operand.
3612 if (LU.Kind == LSRUse::ICmpZero) {
3613 ICmpInst *CI = cast<ICmpInst>(LF.UserInst);
3614 DeadInsts.push_back(CI->getOperand(1));
3615 assert(!F.AM.BaseGV && "ICmp does not support folding a global value and "
3616 "a scale at the same time!");
3617 if (F.AM.Scale == -1) {
3618 if (ICmpScaledV->getType() != OpTy) {
3619 Instruction *Cast =
3620 CastInst::Create(CastInst::getCastOpcode(ICmpScaledV, false,
3621 OpTy, false),
3622 ICmpScaledV, OpTy, "tmp", CI);
3623 ICmpScaledV = Cast;
3624 }
3625 CI->setOperand(1, ICmpScaledV);
3626 } else {
3627 assert(F.AM.Scale == 0 &&
3628 "ICmp does not support folding a global value and "
3629 "a scale at the same time!");
3630 Constant *C = ConstantInt::getSigned(SE.getEffectiveSCEVType(OpTy),
3631 -(uint64_t)Offset);
3632 if (C->getType() != OpTy)
3633 C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
3634 OpTy, false),
3635 C, OpTy);
3636
3637 CI->setOperand(1, C);
3638 }
3639 }
3640
3641 return FullV;
3642}
3643
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003644/// RewriteForPHI - Helper for Rewrite. PHI nodes are special because the use
3645/// of their operands effectively happens in their predecessor blocks, so the
3646/// expression may need to be expanded in multiple places.
3647void LSRInstance::RewriteForPHI(PHINode *PN,
3648 const LSRFixup &LF,
3649 const Formula &F,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003650 SCEVExpander &Rewriter,
3651 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003652 Pass *P) const {
3653 DenseMap<BasicBlock *, Value *> Inserted;
3654 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
3655 if (PN->getIncomingValue(i) == LF.OperandValToReplace) {
3656 BasicBlock *BB = PN->getIncomingBlock(i);
3657
3658 // If this is a critical edge, split the edge so that we do not insert
3659 // the code on all predecessor/successor paths. We do this unless this
3660 // is the canonical backedge for this loop, which complicates post-inc
3661 // users.
3662 if (e != 1 && BB->getTerminator()->getNumSuccessors() > 1 &&
Dan Gohman3ef98382011-02-08 00:55:13 +00003663 !isa<IndirectBrInst>(BB->getTerminator())) {
Bill Wendling89d44112011-08-25 01:08:34 +00003664 BasicBlock *Parent = PN->getParent();
3665 Loop *PNLoop = LI.getLoopFor(Parent);
3666 if (!PNLoop || Parent != PNLoop->getHeader()) {
Dan Gohman3ef98382011-02-08 00:55:13 +00003667 // Split the critical edge.
Bill Wendling8b6af8a2011-08-25 05:55:40 +00003668 BasicBlock *NewBB = 0;
3669 if (!Parent->isLandingPad()) {
3670 NewBB = SplitCriticalEdge(BB, Parent, P);
3671 } else {
3672 SmallVector<BasicBlock*, 2> NewBBs;
3673 SplitLandingPadPredecessors(Parent, BB, "", "", P, NewBBs);
3674 NewBB = NewBBs[0];
3675 }
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003676
Dan Gohman3ef98382011-02-08 00:55:13 +00003677 // If PN is outside of the loop and BB is in the loop, we want to
3678 // move the block to be immediately before the PHI block, not
3679 // immediately after BB.
3680 if (L->contains(BB) && !L->contains(PN))
3681 NewBB->moveBefore(PN->getParent());
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003682
Dan Gohman3ef98382011-02-08 00:55:13 +00003683 // Splitting the edge can reduce the number of PHI entries we have.
3684 e = PN->getNumIncomingValues();
3685 BB = NewBB;
3686 i = PN->getBasicBlockIndex(BB);
3687 }
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003688 }
3689
3690 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> Pair =
3691 Inserted.insert(std::make_pair(BB, static_cast<Value *>(0)));
3692 if (!Pair.second)
3693 PN->setIncomingValue(i, Pair.first->second);
3694 else {
Dan Gohman454d26d2010-02-22 04:11:59 +00003695 Value *FullV = Expand(LF, F, BB->getTerminator(), Rewriter, DeadInsts);
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003696
3697 // If this is reuse-by-noop-cast, insert the noop cast.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003698 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003699 if (FullV->getType() != OpTy)
3700 FullV =
3701 CastInst::Create(CastInst::getCastOpcode(FullV, false,
3702 OpTy, false),
3703 FullV, LF.OperandValToReplace->getType(),
3704 "tmp", BB->getTerminator());
3705
3706 PN->setIncomingValue(i, FullV);
3707 Pair.first->second = FullV;
3708 }
3709 }
3710}
3711
Dan Gohman572645c2010-02-12 10:34:29 +00003712/// Rewrite - Emit instructions for the leading candidate expression for this
3713/// LSRUse (this is called "expanding"), and update the UserInst to reference
3714/// the newly expanded value.
3715void LSRInstance::Rewrite(const LSRFixup &LF,
3716 const Formula &F,
Dan Gohman572645c2010-02-12 10:34:29 +00003717 SCEVExpander &Rewriter,
3718 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman572645c2010-02-12 10:34:29 +00003719 Pass *P) const {
Dan Gohman572645c2010-02-12 10:34:29 +00003720 // First, find an insertion point that dominates UserInst. For PHI nodes,
3721 // find the nearest block which dominates all the relevant uses.
3722 if (PHINode *PN = dyn_cast<PHINode>(LF.UserInst)) {
Dan Gohman454d26d2010-02-22 04:11:59 +00003723 RewriteForPHI(PN, LF, F, Rewriter, DeadInsts, P);
Dan Gohman572645c2010-02-12 10:34:29 +00003724 } else {
Dan Gohman454d26d2010-02-22 04:11:59 +00003725 Value *FullV = Expand(LF, F, LF.UserInst, Rewriter, DeadInsts);
Dan Gohman572645c2010-02-12 10:34:29 +00003726
3727 // If this is reuse-by-noop-cast, insert the noop cast.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003728 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00003729 if (FullV->getType() != OpTy) {
3730 Instruction *Cast =
3731 CastInst::Create(CastInst::getCastOpcode(FullV, false, OpTy, false),
3732 FullV, OpTy, "tmp", LF.UserInst);
3733 FullV = Cast;
3734 }
3735
3736 // Update the user. ICmpZero is handled specially here (for now) because
3737 // Expand may have updated one of the operands of the icmp already, and
3738 // its new value may happen to be equal to LF.OperandValToReplace, in
3739 // which case doing replaceUsesOfWith leads to replacing both operands
3740 // with the same value. TODO: Reorganize this.
3741 if (Uses[LF.LUIdx].Kind == LSRUse::ICmpZero)
3742 LF.UserInst->setOperand(0, FullV);
3743 else
3744 LF.UserInst->replaceUsesOfWith(LF.OperandValToReplace, FullV);
3745 }
3746
3747 DeadInsts.push_back(LF.OperandValToReplace);
3748}
3749
Dan Gohman76c315a2010-05-20 20:52:00 +00003750/// ImplementSolution - Rewrite all the fixup locations with new values,
3751/// following the chosen solution.
Dan Gohman572645c2010-02-12 10:34:29 +00003752void
3753LSRInstance::ImplementSolution(const SmallVectorImpl<const Formula *> &Solution,
3754 Pass *P) {
3755 // Keep track of instructions we may have made dead, so that
3756 // we can remove them after we are done working.
3757 SmallVector<WeakVH, 16> DeadInsts;
3758
Andrew Trick5e7645b2011-06-28 05:07:32 +00003759 SCEVExpander Rewriter(SE, "lsr");
Dan Gohman572645c2010-02-12 10:34:29 +00003760 Rewriter.disableCanonicalMode();
3761 Rewriter.setIVIncInsertPos(L, IVIncInsertPos);
3762
3763 // Expand the new value definitions and update the users.
Dan Gohman402d4352010-05-20 20:33:18 +00003764 for (SmallVectorImpl<LSRFixup>::const_iterator I = Fixups.begin(),
3765 E = Fixups.end(); I != E; ++I) {
3766 const LSRFixup &Fixup = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00003767
Dan Gohman402d4352010-05-20 20:33:18 +00003768 Rewrite(Fixup, *Solution[Fixup.LUIdx], Rewriter, DeadInsts, P);
Dan Gohman572645c2010-02-12 10:34:29 +00003769
3770 Changed = true;
3771 }
3772
3773 // Clean up after ourselves. This must be done before deleting any
3774 // instructions.
3775 Rewriter.clear();
3776
3777 Changed |= DeleteTriviallyDeadInstructions(DeadInsts);
3778}
3779
3780LSRInstance::LSRInstance(const TargetLowering *tli, Loop *l, Pass *P)
3781 : IU(P->getAnalysis<IVUsers>()),
3782 SE(P->getAnalysis<ScalarEvolution>()),
3783 DT(P->getAnalysis<DominatorTree>()),
Dan Gohmane5f76872010-04-09 22:07:05 +00003784 LI(P->getAnalysis<LoopInfo>()),
Dan Gohman572645c2010-02-12 10:34:29 +00003785 TLI(tli), L(l), Changed(false), IVIncInsertPos(0) {
Devang Patel0f54dcb2007-03-06 21:14:09 +00003786
Dan Gohman03e896b2009-11-05 21:11:53 +00003787 // If LoopSimplify form is not available, stay out of trouble.
Dan Gohman572645c2010-02-12 10:34:29 +00003788 if (!L->isLoopSimplifyForm()) return;
Dan Gohman03e896b2009-11-05 21:11:53 +00003789
Dan Gohman572645c2010-02-12 10:34:29 +00003790 // If there's no interesting work to be done, bail early.
3791 if (IU.empty()) return;
Dan Gohman80b0f8c2009-03-09 20:34:59 +00003792
Dan Gohman572645c2010-02-12 10:34:29 +00003793 DEBUG(dbgs() << "\nLSR on loop ";
3794 WriteAsOperand(dbgs(), L->getHeader(), /*PrintType=*/false);
3795 dbgs() << ":\n");
Dan Gohmanf7912df2009-03-09 20:46:50 +00003796
Dan Gohman402d4352010-05-20 20:33:18 +00003797 // First, perform some low-level loop optimizations.
Dan Gohman572645c2010-02-12 10:34:29 +00003798 OptimizeShadowIV();
Dan Gohmanc6519f92010-05-20 20:05:31 +00003799 OptimizeLoopTermCond();
Evan Cheng5792f512009-05-11 22:33:01 +00003800
Andrew Trick37eb38d2011-07-21 00:40:04 +00003801 // If loop preparation eliminates all interesting IV users, bail.
3802 if (IU.empty()) return;
3803
Dan Gohman402d4352010-05-20 20:33:18 +00003804 // Start collecting data and preparing for the solver.
Dan Gohman572645c2010-02-12 10:34:29 +00003805 CollectInterestingTypesAndFactors();
3806 CollectFixupsAndInitialFormulae();
3807 CollectLoopInvariantFixupsAndFormulae();
Chris Lattner010de252005-08-08 05:28:22 +00003808
Dan Gohman572645c2010-02-12 10:34:29 +00003809 DEBUG(dbgs() << "LSR found " << Uses.size() << " uses:\n";
3810 print_uses(dbgs()));
Misha Brukmanfd939082005-04-21 23:48:37 +00003811
Dan Gohman572645c2010-02-12 10:34:29 +00003812 // Now use the reuse data to generate a bunch of interesting ways
3813 // to formulate the values needed for the uses.
3814 GenerateAllReuseFormulae();
Evan Chengd1d6b5c2006-03-16 21:53:05 +00003815
Dan Gohman572645c2010-02-12 10:34:29 +00003816 FilterOutUndesirableDedicatedRegisters();
3817 NarrowSearchSpaceUsingHeuristics();
Dan Gohman6bec5bb2009-12-18 00:06:20 +00003818
Dan Gohman572645c2010-02-12 10:34:29 +00003819 SmallVector<const Formula *, 8> Solution;
3820 Solve(Solution);
Dan Gohman6bec5bb2009-12-18 00:06:20 +00003821
Dan Gohman572645c2010-02-12 10:34:29 +00003822 // Release memory that is no longer needed.
3823 Factors.clear();
3824 Types.clear();
3825 RegUses.clear();
3826
Andrew Trick80ef1b22011-09-27 00:44:14 +00003827 if (Solution.empty())
3828 return;
3829
Dan Gohman572645c2010-02-12 10:34:29 +00003830#ifndef NDEBUG
3831 // Formulae should be legal.
3832 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
3833 E = Uses.end(); I != E; ++I) {
3834 const LSRUse &LU = *I;
3835 for (SmallVectorImpl<Formula>::const_iterator J = LU.Formulae.begin(),
3836 JE = LU.Formulae.end(); J != JE; ++J)
3837 assert(isLegalUse(J->AM, LU.MinOffset, LU.MaxOffset,
3838 LU.Kind, LU.AccessTy, TLI) &&
3839 "Illegal formula generated!");
3840 };
3841#endif
3842
3843 // Now that we've decided what we want, make it so.
3844 ImplementSolution(Solution, P);
3845}
3846
3847void LSRInstance::print_factors_and_types(raw_ostream &OS) const {
3848 if (Factors.empty() && Types.empty()) return;
3849
3850 OS << "LSR has identified the following interesting factors and types: ";
3851 bool First = true;
3852
3853 for (SmallSetVector<int64_t, 8>::const_iterator
3854 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
3855 if (!First) OS << ", ";
3856 First = false;
3857 OS << '*' << *I;
Evan Cheng81ebdcf2009-11-10 21:14:05 +00003858 }
Dale Johannesenc1acc3f2009-05-11 17:15:42 +00003859
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003860 for (SmallSetVector<Type *, 4>::const_iterator
Dan Gohman572645c2010-02-12 10:34:29 +00003861 I = Types.begin(), E = Types.end(); I != E; ++I) {
3862 if (!First) OS << ", ";
3863 First = false;
3864 OS << '(' << **I << ')';
3865 }
3866 OS << '\n';
3867}
3868
3869void LSRInstance::print_fixups(raw_ostream &OS) const {
3870 OS << "LSR is examining the following fixup sites:\n";
3871 for (SmallVectorImpl<LSRFixup>::const_iterator I = Fixups.begin(),
3872 E = Fixups.end(); I != E; ++I) {
Dan Gohman572645c2010-02-12 10:34:29 +00003873 dbgs() << " ";
Dan Gohman9f383eb2010-05-20 22:25:20 +00003874 I->print(OS);
Dan Gohman572645c2010-02-12 10:34:29 +00003875 OS << '\n';
3876 }
3877}
3878
3879void LSRInstance::print_uses(raw_ostream &OS) const {
3880 OS << "LSR is examining the following uses:\n";
3881 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
3882 E = Uses.end(); I != E; ++I) {
3883 const LSRUse &LU = *I;
3884 dbgs() << " ";
3885 LU.print(OS);
3886 OS << '\n';
3887 for (SmallVectorImpl<Formula>::const_iterator J = LU.Formulae.begin(),
3888 JE = LU.Formulae.end(); J != JE; ++J) {
3889 OS << " ";
3890 J->print(OS);
3891 OS << '\n';
3892 }
3893 }
3894}
3895
3896void LSRInstance::print(raw_ostream &OS) const {
3897 print_factors_and_types(OS);
3898 print_fixups(OS);
3899 print_uses(OS);
3900}
3901
3902void LSRInstance::dump() const {
3903 print(errs()); errs() << '\n';
3904}
3905
3906namespace {
3907
3908class LoopStrengthReduce : public LoopPass {
3909 /// TLI - Keep a pointer of a TargetLowering to consult for determining
3910 /// transformation profitability.
3911 const TargetLowering *const TLI;
3912
3913public:
3914 static char ID; // Pass ID, replacement for typeid
3915 explicit LoopStrengthReduce(const TargetLowering *tli = 0);
3916
3917private:
3918 bool runOnLoop(Loop *L, LPPassManager &LPM);
3919 void getAnalysisUsage(AnalysisUsage &AU) const;
3920};
3921
3922}
3923
3924char LoopStrengthReduce::ID = 0;
Owen Anderson2ab36d32010-10-12 19:48:12 +00003925INITIALIZE_PASS_BEGIN(LoopStrengthReduce, "loop-reduce",
Owen Andersonce665bd2010-10-07 22:25:06 +00003926 "Loop Strength Reduction", false, false)
Owen Anderson2ab36d32010-10-12 19:48:12 +00003927INITIALIZE_PASS_DEPENDENCY(DominatorTree)
3928INITIALIZE_PASS_DEPENDENCY(ScalarEvolution)
3929INITIALIZE_PASS_DEPENDENCY(IVUsers)
Owen Anderson205942a2010-10-19 20:08:44 +00003930INITIALIZE_PASS_DEPENDENCY(LoopInfo)
3931INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
Owen Anderson2ab36d32010-10-12 19:48:12 +00003932INITIALIZE_PASS_END(LoopStrengthReduce, "loop-reduce",
3933 "Loop Strength Reduction", false, false)
3934
Dan Gohman572645c2010-02-12 10:34:29 +00003935
3936Pass *llvm::createLoopStrengthReducePass(const TargetLowering *TLI) {
3937 return new LoopStrengthReduce(TLI);
3938}
3939
3940LoopStrengthReduce::LoopStrengthReduce(const TargetLowering *tli)
Owen Anderson081c34b2010-10-19 17:21:58 +00003941 : LoopPass(ID), TLI(tli) {
3942 initializeLoopStrengthReducePass(*PassRegistry::getPassRegistry());
3943 }
Dan Gohman572645c2010-02-12 10:34:29 +00003944
3945void LoopStrengthReduce::getAnalysisUsage(AnalysisUsage &AU) const {
3946 // We split critical edges, so we change the CFG. However, we do update
3947 // many analyses if they are around.
Eric Christopher6793c492011-02-10 01:48:24 +00003948 AU.addPreservedID(LoopSimplifyID);
Dan Gohman572645c2010-02-12 10:34:29 +00003949
Eric Christopher6793c492011-02-10 01:48:24 +00003950 AU.addRequired<LoopInfo>();
3951 AU.addPreserved<LoopInfo>();
3952 AU.addRequiredID(LoopSimplifyID);
Dan Gohman572645c2010-02-12 10:34:29 +00003953 AU.addRequired<DominatorTree>();
3954 AU.addPreserved<DominatorTree>();
3955 AU.addRequired<ScalarEvolution>();
3956 AU.addPreserved<ScalarEvolution>();
Cameron Zwarich2c2b9332011-02-10 23:53:14 +00003957 // Requiring LoopSimplify a second time here prevents IVUsers from running
3958 // twice, since LoopSimplify was invalidated by running ScalarEvolution.
3959 AU.addRequiredID(LoopSimplifyID);
Dan Gohman572645c2010-02-12 10:34:29 +00003960 AU.addRequired<IVUsers>();
3961 AU.addPreserved<IVUsers>();
3962}
3963
3964bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager & /*LPM*/) {
3965 bool Changed = false;
3966
3967 // Run the main LSR transformation.
3968 Changed |= LSRInstance(TLI, L, this).getChanged();
3969
Dan Gohmanafc36a92009-05-02 18:29:22 +00003970 // At this point, it is worth checking to see if any recurrence PHIs are also
Dan Gohman35738ac2009-05-04 22:30:44 +00003971 // dead, so that we can remove them as well.
Dan Gohman9fff2182010-01-05 16:31:45 +00003972 Changed |= DeleteDeadPHIs(L->getHeader());
Dan Gohmanafc36a92009-05-02 18:29:22 +00003973
Evan Cheng1ce75dc2008-07-07 19:51:32 +00003974 return Changed;
Nate Begemaneaa13852004-10-18 21:08:22 +00003975}