blob: 87e78fab8290a9667676033f31560f68f5daacc6 [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"
Dan Gohmanafc36a92009-05-02 18:29:22 +000073#include "llvm/Support/ValueHandle.h"
Daniel Dunbar460f6562009-07-26 09:48:23 +000074#include "llvm/Support/raw_ostream.h"
Evan Chengd277f2c2006-03-13 23:14:23 +000075#include "llvm/Target/TargetLowering.h"
Jeff Cohencfb1d422005-07-30 18:22:27 +000076#include <algorithm>
Nate Begemaneaa13852004-10-18 21:08:22 +000077using namespace llvm;
78
Dan Gohman572645c2010-02-12 10:34:29 +000079namespace {
Nate Begemaneaa13852004-10-18 21:08:22 +000080
Dan Gohman572645c2010-02-12 10:34:29 +000081/// RegSortData - This class holds data which is used to order reuse candidates.
82class RegSortData {
83public:
84 /// UsedByIndices - This represents the set of LSRUse indices which reference
85 /// a particular register.
86 SmallBitVector UsedByIndices;
87
88 RegSortData() {}
89
90 void print(raw_ostream &OS) const;
91 void dump() const;
92};
93
94}
95
96void RegSortData::print(raw_ostream &OS) const {
97 OS << "[NumUses=" << UsedByIndices.count() << ']';
98}
99
100void RegSortData::dump() const {
101 print(errs()); errs() << '\n';
102}
Dan Gohmanc17e0cf2009-02-20 04:17:46 +0000103
Chris Lattner0e5f4992006-12-19 21:40:18 +0000104namespace {
Dale Johannesendc42f482007-03-20 00:47:50 +0000105
Dan Gohman572645c2010-02-12 10:34:29 +0000106/// RegUseTracker - Map register candidates to information about how they are
107/// used.
108class RegUseTracker {
109 typedef DenseMap<const SCEV *, RegSortData> RegUsesTy;
Dale Johannesendc42f482007-03-20 00:47:50 +0000110
Dan Gohman90bb3552010-05-18 22:33:00 +0000111 RegUsesTy RegUsesMap;
Dan Gohman572645c2010-02-12 10:34:29 +0000112 SmallVector<const SCEV *, 16> RegSequence;
Evan Chengd1d6b5c2006-03-16 21:53:05 +0000113
Dan Gohman572645c2010-02-12 10:34:29 +0000114public:
115 void CountRegister(const SCEV *Reg, size_t LUIdx);
Dan Gohmanb2df4332010-05-18 23:42:37 +0000116 void DropRegister(const SCEV *Reg, size_t LUIdx);
Dan Gohmanc6897702010-10-07 23:33:43 +0000117 void SwapAndDropUse(size_t LUIdx, size_t LastLUIdx);
Dan Gohmana10756e2010-01-21 02:09:26 +0000118
Dan Gohman572645c2010-02-12 10:34:29 +0000119 bool isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const;
Dan Gohmana10756e2010-01-21 02:09:26 +0000120
Dan Gohman572645c2010-02-12 10:34:29 +0000121 const SmallBitVector &getUsedByIndices(const SCEV *Reg) const;
Dan Gohmana10756e2010-01-21 02:09:26 +0000122
Dan Gohman572645c2010-02-12 10:34:29 +0000123 void clear();
Dan Gohmana10756e2010-01-21 02:09:26 +0000124
Dan Gohman572645c2010-02-12 10:34:29 +0000125 typedef SmallVectorImpl<const SCEV *>::iterator iterator;
126 typedef SmallVectorImpl<const SCEV *>::const_iterator const_iterator;
127 iterator begin() { return RegSequence.begin(); }
128 iterator end() { return RegSequence.end(); }
129 const_iterator begin() const { return RegSequence.begin(); }
130 const_iterator end() const { return RegSequence.end(); }
131};
Dan Gohmana10756e2010-01-21 02:09:26 +0000132
Dan Gohmana10756e2010-01-21 02:09:26 +0000133}
134
Dan Gohman572645c2010-02-12 10:34:29 +0000135void
136RegUseTracker::CountRegister(const SCEV *Reg, size_t LUIdx) {
137 std::pair<RegUsesTy::iterator, bool> Pair =
Dan Gohman90bb3552010-05-18 22:33:00 +0000138 RegUsesMap.insert(std::make_pair(Reg, RegSortData()));
Dan Gohman572645c2010-02-12 10:34:29 +0000139 RegSortData &RSD = Pair.first->second;
140 if (Pair.second)
141 RegSequence.push_back(Reg);
142 RSD.UsedByIndices.resize(std::max(RSD.UsedByIndices.size(), LUIdx + 1));
143 RSD.UsedByIndices.set(LUIdx);
Dan Gohmana10756e2010-01-21 02:09:26 +0000144}
145
Dan Gohmanb2df4332010-05-18 23:42:37 +0000146void
147RegUseTracker::DropRegister(const SCEV *Reg, size_t LUIdx) {
148 RegUsesTy::iterator It = RegUsesMap.find(Reg);
149 assert(It != RegUsesMap.end());
150 RegSortData &RSD = It->second;
151 assert(RSD.UsedByIndices.size() > LUIdx);
152 RSD.UsedByIndices.reset(LUIdx);
153}
154
Dan Gohmana2086b32010-05-19 23:43:12 +0000155void
Dan Gohmanc6897702010-10-07 23:33:43 +0000156RegUseTracker::SwapAndDropUse(size_t LUIdx, size_t LastLUIdx) {
157 assert(LUIdx <= LastLUIdx);
158
159 // Update RegUses. The data structure is not optimized for this purpose;
160 // we must iterate through it and update each of the bit vectors.
Dan Gohmana2086b32010-05-19 23:43:12 +0000161 for (RegUsesTy::iterator I = RegUsesMap.begin(), E = RegUsesMap.end();
Dan Gohmanc6897702010-10-07 23:33:43 +0000162 I != E; ++I) {
163 SmallBitVector &UsedByIndices = I->second.UsedByIndices;
164 if (LUIdx < UsedByIndices.size())
165 UsedByIndices[LUIdx] =
166 LastLUIdx < UsedByIndices.size() ? UsedByIndices[LastLUIdx] : 0;
167 UsedByIndices.resize(std::min(UsedByIndices.size(), LastLUIdx));
168 }
Dan Gohmana2086b32010-05-19 23:43:12 +0000169}
170
Dan Gohman572645c2010-02-12 10:34:29 +0000171bool
172RegUseTracker::isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const {
Dan Gohman46fd7a62010-08-29 15:18:49 +0000173 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
174 if (I == RegUsesMap.end())
175 return false;
176 const SmallBitVector &UsedByIndices = I->second.UsedByIndices;
Dan Gohman572645c2010-02-12 10:34:29 +0000177 int i = UsedByIndices.find_first();
178 if (i == -1) return false;
179 if ((size_t)i != LUIdx) return true;
180 return UsedByIndices.find_next(i) != -1;
181}
Dan Gohmana10756e2010-01-21 02:09:26 +0000182
Dan Gohman572645c2010-02-12 10:34:29 +0000183const SmallBitVector &RegUseTracker::getUsedByIndices(const SCEV *Reg) const {
Dan Gohman90bb3552010-05-18 22:33:00 +0000184 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
185 assert(I != RegUsesMap.end() && "Unknown register!");
Dan Gohman572645c2010-02-12 10:34:29 +0000186 return I->second.UsedByIndices;
187}
Dan Gohmana10756e2010-01-21 02:09:26 +0000188
Dan Gohman572645c2010-02-12 10:34:29 +0000189void RegUseTracker::clear() {
Dan Gohman90bb3552010-05-18 22:33:00 +0000190 RegUsesMap.clear();
Dan Gohman572645c2010-02-12 10:34:29 +0000191 RegSequence.clear();
192}
Dan Gohmana10756e2010-01-21 02:09:26 +0000193
Dan Gohman572645c2010-02-12 10:34:29 +0000194namespace {
195
196/// Formula - This class holds information that describes a formula for
197/// computing satisfying a use. It may include broken-out immediates and scaled
198/// registers.
199struct Formula {
200 /// AM - This is used to represent complex addressing, as well as other kinds
201 /// of interesting uses.
202 TargetLowering::AddrMode AM;
203
204 /// BaseRegs - The list of "base" registers for this use. When this is
205 /// non-empty, AM.HasBaseReg should be set to true.
206 SmallVector<const SCEV *, 2> BaseRegs;
207
208 /// ScaledReg - The 'scaled' register for this use. This should be non-null
209 /// when AM.Scale is not zero.
210 const SCEV *ScaledReg;
211
212 Formula() : ScaledReg(0) {}
213
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000214 void InitialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE);
Dan Gohman572645c2010-02-12 10:34:29 +0000215
216 unsigned getNumRegs() const;
217 const Type *getType() const;
218
Dan Gohman5ce6d052010-05-20 15:17:54 +0000219 void DeleteBaseReg(const SCEV *&S);
220
Dan Gohman572645c2010-02-12 10:34:29 +0000221 bool referencesReg(const SCEV *S) const;
222 bool hasRegsUsedByUsesOtherThan(size_t LUIdx,
223 const RegUseTracker &RegUses) const;
224
225 void print(raw_ostream &OS) const;
226 void dump() const;
227};
228
229}
230
Dan Gohman3f46a3a2010-03-01 17:49:51 +0000231/// DoInitialMatch - Recursion helper for InitialMatch.
Dan Gohman572645c2010-02-12 10:34:29 +0000232static void DoInitialMatch(const SCEV *S, Loop *L,
233 SmallVectorImpl<const SCEV *> &Good,
234 SmallVectorImpl<const SCEV *> &Bad,
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000235 ScalarEvolution &SE) {
Dan Gohman572645c2010-02-12 10:34:29 +0000236 // Collect expressions which properly dominate the loop header.
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000237 if (SE.properlyDominates(S, L->getHeader())) {
Dan Gohman572645c2010-02-12 10:34:29 +0000238 Good.push_back(S);
239 return;
Dan Gohmana10756e2010-01-21 02:09:26 +0000240 }
Dan Gohman572645c2010-02-12 10:34:29 +0000241
242 // Look at add operands.
243 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
244 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
245 I != E; ++I)
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000246 DoInitialMatch(*I, L, Good, Bad, SE);
Dan Gohman572645c2010-02-12 10:34:29 +0000247 return;
248 }
249
250 // Look at addrec operands.
251 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S))
252 if (!AR->getStart()->isZero()) {
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000253 DoInitialMatch(AR->getStart(), L, Good, Bad, SE);
Dan Gohmandeff6212010-05-03 22:09:21 +0000254 DoInitialMatch(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
Dan Gohman572645c2010-02-12 10:34:29 +0000255 AR->getStepRecurrence(SE),
Andrew Trick3228cc22011-03-14 16:50:06 +0000256 // FIXME: AR->getNoWrapFlags()
257 AR->getLoop(), SCEV::FlagAnyWrap),
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000258 L, Good, Bad, SE);
Dan Gohman572645c2010-02-12 10:34:29 +0000259 return;
260 }
261
262 // Handle a multiplication by -1 (negation) if it didn't fold.
263 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S))
264 if (Mul->getOperand(0)->isAllOnesValue()) {
265 SmallVector<const SCEV *, 4> Ops(Mul->op_begin()+1, Mul->op_end());
266 const SCEV *NewMul = SE.getMulExpr(Ops);
267
268 SmallVector<const SCEV *, 4> MyGood;
269 SmallVector<const SCEV *, 4> MyBad;
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000270 DoInitialMatch(NewMul, L, MyGood, MyBad, SE);
Dan Gohman572645c2010-02-12 10:34:29 +0000271 const SCEV *NegOne = SE.getSCEV(ConstantInt::getAllOnesValue(
272 SE.getEffectiveSCEVType(NewMul->getType())));
273 for (SmallVectorImpl<const SCEV *>::const_iterator I = MyGood.begin(),
274 E = MyGood.end(); I != E; ++I)
275 Good.push_back(SE.getMulExpr(NegOne, *I));
276 for (SmallVectorImpl<const SCEV *>::const_iterator I = MyBad.begin(),
277 E = MyBad.end(); I != E; ++I)
278 Bad.push_back(SE.getMulExpr(NegOne, *I));
279 return;
280 }
281
282 // Ok, we can't do anything interesting. Just stuff the whole thing into a
283 // register and hope for the best.
284 Bad.push_back(S);
285}
286
287/// InitialMatch - Incorporate loop-variant parts of S into this Formula,
288/// attempting to keep all loop-invariant and loop-computable values in a
289/// single base register.
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000290void Formula::InitialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE) {
Dan Gohman572645c2010-02-12 10:34:29 +0000291 SmallVector<const SCEV *, 4> Good;
292 SmallVector<const SCEV *, 4> Bad;
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000293 DoInitialMatch(S, L, Good, Bad, SE);
Dan Gohman572645c2010-02-12 10:34:29 +0000294 if (!Good.empty()) {
Dan Gohmane60bb152010-04-08 23:36:27 +0000295 const SCEV *Sum = SE.getAddExpr(Good);
296 if (!Sum->isZero())
297 BaseRegs.push_back(Sum);
Dan Gohman572645c2010-02-12 10:34:29 +0000298 AM.HasBaseReg = true;
299 }
300 if (!Bad.empty()) {
Dan Gohmane60bb152010-04-08 23:36:27 +0000301 const SCEV *Sum = SE.getAddExpr(Bad);
302 if (!Sum->isZero())
303 BaseRegs.push_back(Sum);
Dan Gohman572645c2010-02-12 10:34:29 +0000304 AM.HasBaseReg = true;
305 }
306}
307
308/// getNumRegs - Return the total number of register operands used by this
309/// formula. This does not include register uses implied by non-constant
310/// addrec strides.
311unsigned Formula::getNumRegs() const {
312 return !!ScaledReg + BaseRegs.size();
313}
314
315/// getType - Return the type of this formula, if it has one, or null
316/// otherwise. This type is meaningless except for the bit size.
317const Type *Formula::getType() const {
318 return !BaseRegs.empty() ? BaseRegs.front()->getType() :
319 ScaledReg ? ScaledReg->getType() :
320 AM.BaseGV ? AM.BaseGV->getType() :
321 0;
322}
323
Dan Gohman5ce6d052010-05-20 15:17:54 +0000324/// DeleteBaseReg - Delete the given base reg from the BaseRegs list.
325void Formula::DeleteBaseReg(const SCEV *&S) {
326 if (&S != &BaseRegs.back())
327 std::swap(S, BaseRegs.back());
328 BaseRegs.pop_back();
329}
330
Dan Gohman572645c2010-02-12 10:34:29 +0000331/// referencesReg - Test if this formula references the given register.
332bool Formula::referencesReg(const SCEV *S) const {
333 return S == ScaledReg ||
334 std::find(BaseRegs.begin(), BaseRegs.end(), S) != BaseRegs.end();
335}
336
337/// hasRegsUsedByUsesOtherThan - Test whether this formula uses registers
338/// which are used by uses other than the use with the given index.
339bool Formula::hasRegsUsedByUsesOtherThan(size_t LUIdx,
340 const RegUseTracker &RegUses) const {
341 if (ScaledReg)
342 if (RegUses.isRegUsedByUsesOtherThan(ScaledReg, LUIdx))
343 return true;
344 for (SmallVectorImpl<const SCEV *>::const_iterator I = BaseRegs.begin(),
345 E = BaseRegs.end(); I != E; ++I)
346 if (RegUses.isRegUsedByUsesOtherThan(*I, LUIdx))
347 return true;
348 return false;
349}
350
351void Formula::print(raw_ostream &OS) const {
352 bool First = true;
353 if (AM.BaseGV) {
354 if (!First) OS << " + "; else First = false;
355 WriteAsOperand(OS, AM.BaseGV, /*PrintType=*/false);
356 }
357 if (AM.BaseOffs != 0) {
358 if (!First) OS << " + "; else First = false;
359 OS << AM.BaseOffs;
360 }
361 for (SmallVectorImpl<const SCEV *>::const_iterator I = BaseRegs.begin(),
362 E = BaseRegs.end(); I != E; ++I) {
363 if (!First) OS << " + "; else First = false;
364 OS << "reg(" << **I << ')';
365 }
Dan Gohmanc4cfbaf2010-05-18 22:35:55 +0000366 if (AM.HasBaseReg && BaseRegs.empty()) {
367 if (!First) OS << " + "; else First = false;
368 OS << "**error: HasBaseReg**";
369 } else if (!AM.HasBaseReg && !BaseRegs.empty()) {
370 if (!First) OS << " + "; else First = false;
371 OS << "**error: !HasBaseReg**";
372 }
Dan Gohman572645c2010-02-12 10:34:29 +0000373 if (AM.Scale != 0) {
374 if (!First) OS << " + "; else First = false;
375 OS << AM.Scale << "*reg(";
376 if (ScaledReg)
377 OS << *ScaledReg;
378 else
379 OS << "<unknown>";
380 OS << ')';
381 }
382}
383
384void Formula::dump() const {
385 print(errs()); errs() << '\n';
386}
387
Dan Gohmanaae01f12010-02-19 19:32:49 +0000388/// isAddRecSExtable - Return true if the given addrec can be sign-extended
389/// without changing its value.
390static bool isAddRecSExtable(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
391 const Type *WideTy =
Dan Gohmanea507f52010-05-20 19:44:23 +0000392 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(AR->getType()) + 1);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000393 return isa<SCEVAddRecExpr>(SE.getSignExtendExpr(AR, WideTy));
394}
395
396/// isAddSExtable - Return true if the given add can be sign-extended
397/// without changing its value.
398static bool isAddSExtable(const SCEVAddExpr *A, ScalarEvolution &SE) {
399 const Type *WideTy =
Dan Gohmanea507f52010-05-20 19:44:23 +0000400 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(A->getType()) + 1);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000401 return isa<SCEVAddExpr>(SE.getSignExtendExpr(A, WideTy));
402}
403
Dan Gohman473e6352010-06-24 16:45:11 +0000404/// isMulSExtable - Return true if the given mul can be sign-extended
Dan Gohmanaae01f12010-02-19 19:32:49 +0000405/// without changing its value.
Dan Gohman473e6352010-06-24 16:45:11 +0000406static bool isMulSExtable(const SCEVMulExpr *M, ScalarEvolution &SE) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000407 const Type *WideTy =
Dan Gohman473e6352010-06-24 16:45:11 +0000408 IntegerType::get(SE.getContext(),
409 SE.getTypeSizeInBits(M->getType()) * M->getNumOperands());
410 return isa<SCEVMulExpr>(SE.getSignExtendExpr(M, WideTy));
Dan Gohmanaae01f12010-02-19 19:32:49 +0000411}
412
Dan Gohmanf09b7122010-02-19 19:35:48 +0000413/// getExactSDiv - Return an expression for LHS /s RHS, if it can be determined
414/// and if the remainder is known to be zero, or null otherwise. If
415/// IgnoreSignificantBits is true, expressions like (X * Y) /s Y are simplified
416/// to Y, ignoring that the multiplication may overflow, which is useful when
417/// the result will be used in a context where the most significant bits are
418/// ignored.
419static const SCEV *getExactSDiv(const SCEV *LHS, const SCEV *RHS,
420 ScalarEvolution &SE,
421 bool IgnoreSignificantBits = false) {
Dan Gohman572645c2010-02-12 10:34:29 +0000422 // Handle the trivial case, which works for any SCEV type.
423 if (LHS == RHS)
Dan Gohmandeff6212010-05-03 22:09:21 +0000424 return SE.getConstant(LHS->getType(), 1);
Dan Gohman572645c2010-02-12 10:34:29 +0000425
Dan Gohmand42819a2010-06-24 16:51:25 +0000426 // Handle a few RHS special cases.
427 const SCEVConstant *RC = dyn_cast<SCEVConstant>(RHS);
428 if (RC) {
429 const APInt &RA = RC->getValue()->getValue();
430 // Handle x /s -1 as x * -1, to give ScalarEvolution a chance to do
431 // some folding.
432 if (RA.isAllOnesValue())
433 return SE.getMulExpr(LHS, RC);
434 // Handle x /s 1 as x.
435 if (RA == 1)
436 return LHS;
437 }
Dan Gohman572645c2010-02-12 10:34:29 +0000438
439 // Check for a division of a constant by a constant.
440 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(LHS)) {
Dan Gohman572645c2010-02-12 10:34:29 +0000441 if (!RC)
442 return 0;
Dan Gohmand42819a2010-06-24 16:51:25 +0000443 const APInt &LA = C->getValue()->getValue();
444 const APInt &RA = RC->getValue()->getValue();
445 if (LA.srem(RA) != 0)
Dan Gohman572645c2010-02-12 10:34:29 +0000446 return 0;
Dan Gohmand42819a2010-06-24 16:51:25 +0000447 return SE.getConstant(LA.sdiv(RA));
Dan Gohman572645c2010-02-12 10:34:29 +0000448 }
449
Dan Gohmanaae01f12010-02-19 19:32:49 +0000450 // Distribute the sdiv over addrec operands, if the addrec doesn't overflow.
Dan Gohman572645c2010-02-12 10:34:29 +0000451 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000452 if (IgnoreSignificantBits || isAddRecSExtable(AR, SE)) {
Dan Gohmanf09b7122010-02-19 19:35:48 +0000453 const SCEV *Step = getExactSDiv(AR->getStepRecurrence(SE), RHS, SE,
454 IgnoreSignificantBits);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000455 if (!Step) return 0;
Dan Gohman694a15e2010-08-19 01:02:31 +0000456 const SCEV *Start = getExactSDiv(AR->getStart(), RHS, SE,
457 IgnoreSignificantBits);
458 if (!Start) return 0;
Andrew Trick3228cc22011-03-14 16:50:06 +0000459 // FlagNW is independent of the start value, step direction, and is
460 // preserved with smaller magnitude steps.
461 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
462 return SE.getAddRecExpr(Start, Step, AR->getLoop(), SCEV::FlagAnyWrap);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000463 }
Dan Gohman2ea09e02010-06-24 16:57:52 +0000464 return 0;
Dan Gohman572645c2010-02-12 10:34:29 +0000465 }
466
Dan Gohmanaae01f12010-02-19 19:32:49 +0000467 // Distribute the sdiv over add operands, if the add doesn't overflow.
Dan Gohman572645c2010-02-12 10:34:29 +0000468 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000469 if (IgnoreSignificantBits || isAddSExtable(Add, SE)) {
470 SmallVector<const SCEV *, 8> Ops;
471 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
472 I != E; ++I) {
Dan Gohmanf09b7122010-02-19 19:35:48 +0000473 const SCEV *Op = getExactSDiv(*I, RHS, SE,
474 IgnoreSignificantBits);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000475 if (!Op) return 0;
476 Ops.push_back(Op);
477 }
478 return SE.getAddExpr(Ops);
Dan Gohman572645c2010-02-12 10:34:29 +0000479 }
Dan Gohman2ea09e02010-06-24 16:57:52 +0000480 return 0;
Dan Gohman572645c2010-02-12 10:34:29 +0000481 }
482
483 // Check for a multiply operand that we can pull RHS out of.
Dan Gohman2ea09e02010-06-24 16:57:52 +0000484 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000485 if (IgnoreSignificantBits || isMulSExtable(Mul, SE)) {
Dan Gohman572645c2010-02-12 10:34:29 +0000486 SmallVector<const SCEV *, 4> Ops;
487 bool Found = false;
488 for (SCEVMulExpr::op_iterator I = Mul->op_begin(), E = Mul->op_end();
489 I != E; ++I) {
Dan Gohman47667442010-05-20 16:23:28 +0000490 const SCEV *S = *I;
Dan Gohman572645c2010-02-12 10:34:29 +0000491 if (!Found)
Dan Gohman47667442010-05-20 16:23:28 +0000492 if (const SCEV *Q = getExactSDiv(S, RHS, SE,
Dan Gohmanf09b7122010-02-19 19:35:48 +0000493 IgnoreSignificantBits)) {
Dan Gohman47667442010-05-20 16:23:28 +0000494 S = Q;
Dan Gohman572645c2010-02-12 10:34:29 +0000495 Found = true;
Dan Gohman572645c2010-02-12 10:34:29 +0000496 }
Dan Gohman47667442010-05-20 16:23:28 +0000497 Ops.push_back(S);
Dan Gohman572645c2010-02-12 10:34:29 +0000498 }
499 return Found ? SE.getMulExpr(Ops) : 0;
500 }
Dan Gohman2ea09e02010-06-24 16:57:52 +0000501 return 0;
502 }
Dan Gohman572645c2010-02-12 10:34:29 +0000503
504 // Otherwise we don't know.
505 return 0;
506}
507
508/// ExtractImmediate - If S involves the addition of a constant integer value,
509/// return that integer value, and mutate S to point to a new SCEV with that
510/// value excluded.
511static int64_t ExtractImmediate(const SCEV *&S, ScalarEvolution &SE) {
512 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) {
513 if (C->getValue()->getValue().getMinSignedBits() <= 64) {
Dan Gohmandeff6212010-05-03 22:09:21 +0000514 S = SE.getConstant(C->getType(), 0);
Dan Gohman572645c2010-02-12 10:34:29 +0000515 return C->getValue()->getSExtValue();
516 }
517 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
518 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
519 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000520 if (Result != 0)
521 S = SE.getAddExpr(NewOps);
Dan Gohman572645c2010-02-12 10:34:29 +0000522 return Result;
523 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
524 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
525 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000526 if (Result != 0)
Andrew Trick3228cc22011-03-14 16:50:06 +0000527 S = SE.getAddRecExpr(NewOps, AR->getLoop(),
528 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
529 SCEV::FlagAnyWrap);
Dan Gohman572645c2010-02-12 10:34:29 +0000530 return Result;
531 }
532 return 0;
533}
534
535/// ExtractSymbol - If S involves the addition of a GlobalValue address,
536/// return that symbol, and mutate S to point to a new SCEV with that
537/// value excluded.
538static GlobalValue *ExtractSymbol(const SCEV *&S, ScalarEvolution &SE) {
539 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
540 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue())) {
Dan Gohmandeff6212010-05-03 22:09:21 +0000541 S = SE.getConstant(GV->getType(), 0);
Dan Gohman572645c2010-02-12 10:34:29 +0000542 return GV;
543 }
544 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
545 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
546 GlobalValue *Result = ExtractSymbol(NewOps.back(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000547 if (Result)
548 S = SE.getAddExpr(NewOps);
Dan Gohman572645c2010-02-12 10:34:29 +0000549 return Result;
550 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
551 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
552 GlobalValue *Result = ExtractSymbol(NewOps.front(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000553 if (Result)
Andrew Trick3228cc22011-03-14 16:50:06 +0000554 S = SE.getAddRecExpr(NewOps, AR->getLoop(),
555 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
556 SCEV::FlagAnyWrap);
Dan Gohman572645c2010-02-12 10:34:29 +0000557 return Result;
558 }
559 return 0;
Nate Begemaneaa13852004-10-18 21:08:22 +0000560}
561
Dan Gohmanf284ce22009-02-18 00:08:39 +0000562/// isAddressUse - Returns true if the specified instruction is using the
Dale Johannesen203af582008-12-05 21:47:27 +0000563/// specified value as an address.
564static bool isAddressUse(Instruction *Inst, Value *OperandVal) {
565 bool isAddress = isa<LoadInst>(Inst);
566 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
567 if (SI->getOperand(1) == OperandVal)
568 isAddress = true;
569 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
570 // Addressing modes can also be folded into prefetches and a variety
571 // of intrinsics.
572 switch (II->getIntrinsicID()) {
573 default: break;
574 case Intrinsic::prefetch:
575 case Intrinsic::x86_sse2_loadu_dq:
576 case Intrinsic::x86_sse2_loadu_pd:
577 case Intrinsic::x86_sse_loadu_ps:
578 case Intrinsic::x86_sse_storeu_ps:
579 case Intrinsic::x86_sse2_storeu_pd:
580 case Intrinsic::x86_sse2_storeu_dq:
581 case Intrinsic::x86_sse2_storel_dq:
Gabor Greifad72e732010-06-30 09:15:28 +0000582 if (II->getArgOperand(0) == OperandVal)
Dale Johannesen203af582008-12-05 21:47:27 +0000583 isAddress = true;
584 break;
585 }
586 }
587 return isAddress;
588}
Chris Lattner0ae33eb2005-10-03 01:04:44 +0000589
Dan Gohman21e77222009-03-09 21:01:17 +0000590/// getAccessType - Return the type of the memory being accessed.
591static const Type *getAccessType(const Instruction *Inst) {
Dan Gohmana537bf82009-05-18 16:45:28 +0000592 const Type *AccessTy = Inst->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000593 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst))
Dan Gohmana537bf82009-05-18 16:45:28 +0000594 AccessTy = SI->getOperand(0)->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000595 else if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
596 // Addressing modes can also be folded into prefetches and a variety
597 // of intrinsics.
598 switch (II->getIntrinsicID()) {
599 default: break;
600 case Intrinsic::x86_sse_storeu_ps:
601 case Intrinsic::x86_sse2_storeu_pd:
602 case Intrinsic::x86_sse2_storeu_dq:
603 case Intrinsic::x86_sse2_storel_dq:
Gabor Greifad72e732010-06-30 09:15:28 +0000604 AccessTy = II->getArgOperand(0)->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000605 break;
606 }
607 }
Dan Gohman572645c2010-02-12 10:34:29 +0000608
609 // All pointers have the same requirements, so canonicalize them to an
610 // arbitrary pointer type to minimize variation.
611 if (const PointerType *PTy = dyn_cast<PointerType>(AccessTy))
612 AccessTy = PointerType::get(IntegerType::get(PTy->getContext(), 1),
613 PTy->getAddressSpace());
614
Dan Gohmana537bf82009-05-18 16:45:28 +0000615 return AccessTy;
Dan Gohman21e77222009-03-09 21:01:17 +0000616}
617
Dan Gohman572645c2010-02-12 10:34:29 +0000618/// DeleteTriviallyDeadInstructions - If any of the instructions is the
619/// specified set are trivially dead, delete them and see if this makes any of
620/// their operands subsequently dead.
621static bool
622DeleteTriviallyDeadInstructions(SmallVectorImpl<WeakVH> &DeadInsts) {
623 bool Changed = false;
624
625 while (!DeadInsts.empty()) {
Gabor Greiff097b592010-09-18 11:55:34 +0000626 Instruction *I = dyn_cast_or_null<Instruction>(&*DeadInsts.pop_back_val());
Dan Gohman572645c2010-02-12 10:34:29 +0000627
628 if (I == 0 || !isInstructionTriviallyDead(I))
629 continue;
630
631 for (User::op_iterator OI = I->op_begin(), E = I->op_end(); OI != E; ++OI)
632 if (Instruction *U = dyn_cast<Instruction>(*OI)) {
633 *OI = 0;
634 if (U->use_empty())
635 DeadInsts.push_back(U);
636 }
637
638 I->eraseFromParent();
639 Changed = true;
640 }
641
642 return Changed;
643}
644
Dan Gohman7979b722010-01-22 00:46:49 +0000645namespace {
Jim Grosbach56a1f802009-11-17 17:53:56 +0000646
Dan Gohman572645c2010-02-12 10:34:29 +0000647/// Cost - This class is used to measure and compare candidate formulae.
648class Cost {
649 /// TODO: Some of these could be merged. Also, a lexical ordering
650 /// isn't always optimal.
651 unsigned NumRegs;
652 unsigned AddRecCost;
653 unsigned NumIVMuls;
654 unsigned NumBaseAdds;
655 unsigned ImmCost;
656 unsigned SetupCost;
Nate Begeman16997482005-07-30 00:15:07 +0000657
Dan Gohman572645c2010-02-12 10:34:29 +0000658public:
659 Cost()
660 : NumRegs(0), AddRecCost(0), NumIVMuls(0), NumBaseAdds(0), ImmCost(0),
661 SetupCost(0) {}
Jim Grosbach56a1f802009-11-17 17:53:56 +0000662
Dan Gohman572645c2010-02-12 10:34:29 +0000663 bool operator<(const Cost &Other) const;
Dan Gohman7979b722010-01-22 00:46:49 +0000664
Dan Gohman572645c2010-02-12 10:34:29 +0000665 void Loose();
Dan Gohman7979b722010-01-22 00:46:49 +0000666
Dan Gohman572645c2010-02-12 10:34:29 +0000667 void RateFormula(const Formula &F,
668 SmallPtrSet<const SCEV *, 16> &Regs,
669 const DenseSet<const SCEV *> &VisitedRegs,
670 const Loop *L,
671 const SmallVectorImpl<int64_t> &Offsets,
672 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman7979b722010-01-22 00:46:49 +0000673
Dan Gohman572645c2010-02-12 10:34:29 +0000674 void print(raw_ostream &OS) const;
675 void dump() const;
Dan Gohman7979b722010-01-22 00:46:49 +0000676
Dan Gohman572645c2010-02-12 10:34:29 +0000677private:
678 void RateRegister(const SCEV *Reg,
679 SmallPtrSet<const SCEV *, 16> &Regs,
680 const Loop *L,
681 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman9214b822010-02-13 02:06:02 +0000682 void RatePrimaryRegister(const SCEV *Reg,
683 SmallPtrSet<const SCEV *, 16> &Regs,
684 const Loop *L,
685 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000686};
687
688}
689
690/// RateRegister - Tally up interesting quantities from the given register.
691void Cost::RateRegister(const SCEV *Reg,
692 SmallPtrSet<const SCEV *, 16> &Regs,
693 const Loop *L,
694 ScalarEvolution &SE, DominatorTree &DT) {
Dan Gohman9214b822010-02-13 02:06:02 +0000695 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Reg)) {
696 if (AR->getLoop() == L)
697 AddRecCost += 1; /// TODO: This should be a function of the stride.
Dan Gohman572645c2010-02-12 10:34:29 +0000698
Dan Gohman9214b822010-02-13 02:06:02 +0000699 // If this is an addrec for a loop that's already been visited by LSR,
700 // don't second-guess its addrec phi nodes. LSR isn't currently smart
701 // enough to reason about more than one loop at a time. Consider these
702 // registers free and leave them alone.
703 else if (L->contains(AR->getLoop()) ||
704 (!AR->getLoop()->contains(L) &&
705 DT.dominates(L->getHeader(), AR->getLoop()->getHeader()))) {
706 for (BasicBlock::iterator I = AR->getLoop()->getHeader()->begin();
707 PHINode *PN = dyn_cast<PHINode>(I); ++I)
708 if (SE.isSCEVable(PN->getType()) &&
709 (SE.getEffectiveSCEVType(PN->getType()) ==
710 SE.getEffectiveSCEVType(AR->getType())) &&
711 SE.getSCEV(PN) == AR)
712 return;
Dan Gohman572645c2010-02-12 10:34:29 +0000713
Dan Gohman9214b822010-02-13 02:06:02 +0000714 // If this isn't one of the addrecs that the loop already has, it
715 // would require a costly new phi and add. TODO: This isn't
716 // precisely modeled right now.
717 ++NumBaseAdds;
718 if (!Regs.count(AR->getStart()))
Dan Gohman572645c2010-02-12 10:34:29 +0000719 RateRegister(AR->getStart(), Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000720 }
Dan Gohman572645c2010-02-12 10:34:29 +0000721
Dan Gohman9214b822010-02-13 02:06:02 +0000722 // Add the step value register, if it needs one.
723 // TODO: The non-affine case isn't precisely modeled here.
724 if (!AR->isAffine() || !isa<SCEVConstant>(AR->getOperand(1)))
725 if (!Regs.count(AR->getStart()))
726 RateRegister(AR->getOperand(1), Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000727 }
Dan Gohman9214b822010-02-13 02:06:02 +0000728 ++NumRegs;
729
730 // Rough heuristic; favor registers which don't require extra setup
731 // instructions in the preheader.
732 if (!isa<SCEVUnknown>(Reg) &&
733 !isa<SCEVConstant>(Reg) &&
734 !(isa<SCEVAddRecExpr>(Reg) &&
735 (isa<SCEVUnknown>(cast<SCEVAddRecExpr>(Reg)->getStart()) ||
736 isa<SCEVConstant>(cast<SCEVAddRecExpr>(Reg)->getStart()))))
737 ++SetupCost;
Dan Gohman23c3fde2010-10-07 23:41:58 +0000738
739 NumIVMuls += isa<SCEVMulExpr>(Reg) &&
Dan Gohman17ead4f2010-11-17 21:23:15 +0000740 SE.hasComputableLoopEvolution(Reg, L);
Dan Gohman9214b822010-02-13 02:06:02 +0000741}
742
743/// RatePrimaryRegister - Record this register in the set. If we haven't seen it
744/// before, rate it.
745void Cost::RatePrimaryRegister(const SCEV *Reg,
Dan Gohman7fca2292010-02-16 19:42:34 +0000746 SmallPtrSet<const SCEV *, 16> &Regs,
747 const Loop *L,
748 ScalarEvolution &SE, DominatorTree &DT) {
Dan Gohman9214b822010-02-13 02:06:02 +0000749 if (Regs.insert(Reg))
750 RateRegister(Reg, Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000751}
752
753void Cost::RateFormula(const Formula &F,
754 SmallPtrSet<const SCEV *, 16> &Regs,
755 const DenseSet<const SCEV *> &VisitedRegs,
756 const Loop *L,
757 const SmallVectorImpl<int64_t> &Offsets,
758 ScalarEvolution &SE, DominatorTree &DT) {
759 // Tally up the registers.
760 if (const SCEV *ScaledReg = F.ScaledReg) {
761 if (VisitedRegs.count(ScaledReg)) {
762 Loose();
763 return;
764 }
Dan Gohman9214b822010-02-13 02:06:02 +0000765 RatePrimaryRegister(ScaledReg, Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000766 }
767 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
768 E = F.BaseRegs.end(); I != E; ++I) {
769 const SCEV *BaseReg = *I;
770 if (VisitedRegs.count(BaseReg)) {
771 Loose();
772 return;
773 }
Dan Gohman9214b822010-02-13 02:06:02 +0000774 RatePrimaryRegister(BaseReg, Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000775 }
776
777 if (F.BaseRegs.size() > 1)
778 NumBaseAdds += F.BaseRegs.size() - 1;
779
780 // Tally up the non-zero immediates.
781 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
782 E = Offsets.end(); I != E; ++I) {
783 int64_t Offset = (uint64_t)*I + F.AM.BaseOffs;
784 if (F.AM.BaseGV)
785 ImmCost += 64; // Handle symbolic values conservatively.
786 // TODO: This should probably be the pointer size.
787 else if (Offset != 0)
788 ImmCost += APInt(64, Offset, true).getMinSignedBits();
789 }
790}
791
792/// Loose - Set this cost to a loosing value.
793void Cost::Loose() {
794 NumRegs = ~0u;
795 AddRecCost = ~0u;
796 NumIVMuls = ~0u;
797 NumBaseAdds = ~0u;
798 ImmCost = ~0u;
799 SetupCost = ~0u;
800}
801
802/// operator< - Choose the lower cost.
803bool Cost::operator<(const Cost &Other) const {
804 if (NumRegs != Other.NumRegs)
805 return NumRegs < Other.NumRegs;
806 if (AddRecCost != Other.AddRecCost)
807 return AddRecCost < Other.AddRecCost;
808 if (NumIVMuls != Other.NumIVMuls)
809 return NumIVMuls < Other.NumIVMuls;
810 if (NumBaseAdds != Other.NumBaseAdds)
811 return NumBaseAdds < Other.NumBaseAdds;
812 if (ImmCost != Other.ImmCost)
813 return ImmCost < Other.ImmCost;
814 if (SetupCost != Other.SetupCost)
815 return SetupCost < Other.SetupCost;
816 return false;
817}
818
819void Cost::print(raw_ostream &OS) const {
820 OS << NumRegs << " reg" << (NumRegs == 1 ? "" : "s");
821 if (AddRecCost != 0)
822 OS << ", with addrec cost " << AddRecCost;
823 if (NumIVMuls != 0)
824 OS << ", plus " << NumIVMuls << " IV mul" << (NumIVMuls == 1 ? "" : "s");
825 if (NumBaseAdds != 0)
826 OS << ", plus " << NumBaseAdds << " base add"
827 << (NumBaseAdds == 1 ? "" : "s");
828 if (ImmCost != 0)
829 OS << ", plus " << ImmCost << " imm cost";
830 if (SetupCost != 0)
831 OS << ", plus " << SetupCost << " setup cost";
832}
833
834void Cost::dump() const {
835 print(errs()); errs() << '\n';
836}
837
838namespace {
839
840/// LSRFixup - An operand value in an instruction which is to be replaced
841/// with some equivalent, possibly strength-reduced, replacement.
842struct LSRFixup {
843 /// UserInst - The instruction which will be updated.
844 Instruction *UserInst;
845
846 /// OperandValToReplace - The operand of the instruction which will
847 /// be replaced. The operand may be used more than once; every instance
848 /// will be replaced.
849 Value *OperandValToReplace;
850
Dan Gohman448db1c2010-04-07 22:27:08 +0000851 /// PostIncLoops - If this user is to use the post-incremented value of an
Dan Gohman572645c2010-02-12 10:34:29 +0000852 /// induction variable, this variable is non-null and holds the loop
853 /// associated with the induction variable.
Dan Gohman448db1c2010-04-07 22:27:08 +0000854 PostIncLoopSet PostIncLoops;
Dan Gohman572645c2010-02-12 10:34:29 +0000855
856 /// LUIdx - The index of the LSRUse describing the expression which
857 /// this fixup needs, minus an offset (below).
858 size_t LUIdx;
859
860 /// Offset - A constant offset to be added to the LSRUse expression.
861 /// This allows multiple fixups to share the same LSRUse with different
862 /// offsets, for example in an unrolled loop.
863 int64_t Offset;
864
Dan Gohman448db1c2010-04-07 22:27:08 +0000865 bool isUseFullyOutsideLoop(const Loop *L) const;
866
Dan Gohman572645c2010-02-12 10:34:29 +0000867 LSRFixup();
868
869 void print(raw_ostream &OS) const;
870 void dump() const;
871};
872
873}
874
875LSRFixup::LSRFixup()
Dan Gohmanea507f52010-05-20 19:44:23 +0000876 : UserInst(0), OperandValToReplace(0), LUIdx(~size_t(0)), Offset(0) {}
Dan Gohman572645c2010-02-12 10:34:29 +0000877
Dan Gohman448db1c2010-04-07 22:27:08 +0000878/// isUseFullyOutsideLoop - Test whether this fixup always uses its
879/// value outside of the given loop.
880bool LSRFixup::isUseFullyOutsideLoop(const Loop *L) const {
881 // PHI nodes use their value in their incoming blocks.
882 if (const PHINode *PN = dyn_cast<PHINode>(UserInst)) {
883 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
884 if (PN->getIncomingValue(i) == OperandValToReplace &&
885 L->contains(PN->getIncomingBlock(i)))
886 return false;
887 return true;
888 }
889
890 return !L->contains(UserInst);
891}
892
Dan Gohman572645c2010-02-12 10:34:29 +0000893void LSRFixup::print(raw_ostream &OS) const {
894 OS << "UserInst=";
895 // Store is common and interesting enough to be worth special-casing.
896 if (StoreInst *Store = dyn_cast<StoreInst>(UserInst)) {
897 OS << "store ";
898 WriteAsOperand(OS, Store->getOperand(0), /*PrintType=*/false);
899 } else if (UserInst->getType()->isVoidTy())
900 OS << UserInst->getOpcodeName();
901 else
902 WriteAsOperand(OS, UserInst, /*PrintType=*/false);
903
904 OS << ", OperandValToReplace=";
905 WriteAsOperand(OS, OperandValToReplace, /*PrintType=*/false);
906
Dan Gohman448db1c2010-04-07 22:27:08 +0000907 for (PostIncLoopSet::const_iterator I = PostIncLoops.begin(),
908 E = PostIncLoops.end(); I != E; ++I) {
Dan Gohman572645c2010-02-12 10:34:29 +0000909 OS << ", PostIncLoop=";
Dan Gohman448db1c2010-04-07 22:27:08 +0000910 WriteAsOperand(OS, (*I)->getHeader(), /*PrintType=*/false);
Dan Gohman572645c2010-02-12 10:34:29 +0000911 }
912
913 if (LUIdx != ~size_t(0))
914 OS << ", LUIdx=" << LUIdx;
915
916 if (Offset != 0)
917 OS << ", Offset=" << Offset;
918}
919
920void LSRFixup::dump() const {
921 print(errs()); errs() << '\n';
922}
923
924namespace {
925
926/// UniquifierDenseMapInfo - A DenseMapInfo implementation for holding
927/// DenseMaps and DenseSets of sorted SmallVectors of const SCEV*.
928struct UniquifierDenseMapInfo {
929 static SmallVector<const SCEV *, 2> getEmptyKey() {
930 SmallVector<const SCEV *, 2> V;
931 V.push_back(reinterpret_cast<const SCEV *>(-1));
932 return V;
933 }
934
935 static SmallVector<const SCEV *, 2> getTombstoneKey() {
936 SmallVector<const SCEV *, 2> V;
937 V.push_back(reinterpret_cast<const SCEV *>(-2));
938 return V;
939 }
940
941 static unsigned getHashValue(const SmallVector<const SCEV *, 2> &V) {
942 unsigned Result = 0;
943 for (SmallVectorImpl<const SCEV *>::const_iterator I = V.begin(),
944 E = V.end(); I != E; ++I)
945 Result ^= DenseMapInfo<const SCEV *>::getHashValue(*I);
946 return Result;
947 }
948
949 static bool isEqual(const SmallVector<const SCEV *, 2> &LHS,
950 const SmallVector<const SCEV *, 2> &RHS) {
951 return LHS == RHS;
952 }
953};
954
955/// LSRUse - This class holds the state that LSR keeps for each use in
956/// IVUsers, as well as uses invented by LSR itself. It includes information
957/// about what kinds of things can be folded into the user, information about
958/// the user itself, and information about how the use may be satisfied.
959/// TODO: Represent multiple users of the same expression in common?
960class LSRUse {
961 DenseSet<SmallVector<const SCEV *, 2>, UniquifierDenseMapInfo> Uniquifier;
962
963public:
964 /// KindType - An enum for a kind of use, indicating what types of
965 /// scaled and immediate operands it might support.
966 enum KindType {
967 Basic, ///< A normal use, with no folding.
968 Special, ///< A special case of basic, allowing -1 scales.
969 Address, ///< An address use; folding according to TargetLowering
970 ICmpZero ///< An equality icmp with both operands folded into one.
971 // TODO: Add a generic icmp too?
Dan Gohman7979b722010-01-22 00:46:49 +0000972 };
Dan Gohman572645c2010-02-12 10:34:29 +0000973
974 KindType Kind;
975 const Type *AccessTy;
976
977 SmallVector<int64_t, 8> Offsets;
978 int64_t MinOffset;
979 int64_t MaxOffset;
980
981 /// AllFixupsOutsideLoop - This records whether all of the fixups using this
982 /// LSRUse are outside of the loop, in which case some special-case heuristics
983 /// may be used.
984 bool AllFixupsOutsideLoop;
985
Dan Gohmana9db1292010-07-15 20:24:58 +0000986 /// WidestFixupType - This records the widest use type for any fixup using
987 /// this LSRUse. FindUseWithSimilarFormula can't consider uses with different
988 /// max fixup widths to be equivalent, because the narrower one may be relying
989 /// on the implicit truncation to truncate away bogus bits.
990 const Type *WidestFixupType;
991
Dan Gohman572645c2010-02-12 10:34:29 +0000992 /// Formulae - A list of ways to build a value that can satisfy this user.
993 /// After the list is populated, one of these is selected heuristically and
994 /// used to formulate a replacement for OperandValToReplace in UserInst.
995 SmallVector<Formula, 12> Formulae;
996
997 /// Regs - The set of register candidates used by all formulae in this LSRUse.
998 SmallPtrSet<const SCEV *, 4> Regs;
999
1000 LSRUse(KindType K, const Type *T) : Kind(K), AccessTy(T),
1001 MinOffset(INT64_MAX),
1002 MaxOffset(INT64_MIN),
Dan Gohmana9db1292010-07-15 20:24:58 +00001003 AllFixupsOutsideLoop(true),
1004 WidestFixupType(0) {}
Dan Gohman572645c2010-02-12 10:34:29 +00001005
Dan Gohmana2086b32010-05-19 23:43:12 +00001006 bool HasFormulaWithSameRegs(const Formula &F) const;
Dan Gohman454d26d2010-02-22 04:11:59 +00001007 bool InsertFormula(const Formula &F);
Dan Gohmand69d6282010-05-18 22:39:15 +00001008 void DeleteFormula(Formula &F);
Dan Gohmanb2df4332010-05-18 23:42:37 +00001009 void RecomputeRegs(size_t LUIdx, RegUseTracker &Reguses);
Dan Gohman572645c2010-02-12 10:34:29 +00001010
Dan Gohman572645c2010-02-12 10:34:29 +00001011 void print(raw_ostream &OS) const;
1012 void dump() const;
1013};
1014
Dan Gohmanb6211712010-06-19 21:21:39 +00001015}
1016
Dan Gohmana2086b32010-05-19 23:43:12 +00001017/// HasFormula - Test whether this use as a formula which has the same
1018/// registers as the given formula.
1019bool LSRUse::HasFormulaWithSameRegs(const Formula &F) const {
1020 SmallVector<const SCEV *, 2> Key = F.BaseRegs;
1021 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1022 // Unstable sort by host order ok, because this is only used for uniquifying.
1023 std::sort(Key.begin(), Key.end());
1024 return Uniquifier.count(Key);
1025}
1026
Dan Gohman572645c2010-02-12 10:34:29 +00001027/// InsertFormula - If the given formula has not yet been inserted, add it to
1028/// the list, and return true. Return false otherwise.
Dan Gohman454d26d2010-02-22 04:11:59 +00001029bool LSRUse::InsertFormula(const Formula &F) {
Dan Gohman572645c2010-02-12 10:34:29 +00001030 SmallVector<const SCEV *, 2> Key = F.BaseRegs;
1031 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1032 // Unstable sort by host order ok, because this is only used for uniquifying.
1033 std::sort(Key.begin(), Key.end());
1034
1035 if (!Uniquifier.insert(Key).second)
1036 return false;
1037
1038 // Using a register to hold the value of 0 is not profitable.
1039 assert((!F.ScaledReg || !F.ScaledReg->isZero()) &&
1040 "Zero allocated in a scaled register!");
1041#ifndef NDEBUG
1042 for (SmallVectorImpl<const SCEV *>::const_iterator I =
1043 F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I)
1044 assert(!(*I)->isZero() && "Zero allocated in a base register!");
1045#endif
1046
1047 // Add the formula to the list.
1048 Formulae.push_back(F);
1049
1050 // Record registers now being used by this use.
1051 if (F.ScaledReg) Regs.insert(F.ScaledReg);
1052 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1053
1054 return true;
Dan Gohman7979b722010-01-22 00:46:49 +00001055}
1056
Dan Gohmand69d6282010-05-18 22:39:15 +00001057/// DeleteFormula - Remove the given formula from this use's list.
1058void LSRUse::DeleteFormula(Formula &F) {
Dan Gohman5ce6d052010-05-20 15:17:54 +00001059 if (&F != &Formulae.back())
1060 std::swap(F, Formulae.back());
Dan Gohmand69d6282010-05-18 22:39:15 +00001061 Formulae.pop_back();
Dan Gohmana2086b32010-05-19 23:43:12 +00001062 assert(!Formulae.empty() && "LSRUse has no formulae left!");
Dan Gohmand69d6282010-05-18 22:39:15 +00001063}
1064
Dan Gohmanb2df4332010-05-18 23:42:37 +00001065/// RecomputeRegs - Recompute the Regs field, and update RegUses.
1066void LSRUse::RecomputeRegs(size_t LUIdx, RegUseTracker &RegUses) {
1067 // Now that we've filtered out some formulae, recompute the Regs set.
1068 SmallPtrSet<const SCEV *, 4> OldRegs = Regs;
1069 Regs.clear();
Dan Gohman402d4352010-05-20 20:33:18 +00001070 for (SmallVectorImpl<Formula>::const_iterator I = Formulae.begin(),
1071 E = Formulae.end(); I != E; ++I) {
1072 const Formula &F = *I;
Dan Gohmanb2df4332010-05-18 23:42:37 +00001073 if (F.ScaledReg) Regs.insert(F.ScaledReg);
1074 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1075 }
1076
1077 // Update the RegTracker.
1078 for (SmallPtrSet<const SCEV *, 4>::iterator I = OldRegs.begin(),
1079 E = OldRegs.end(); I != E; ++I)
1080 if (!Regs.count(*I))
1081 RegUses.DropRegister(*I, LUIdx);
1082}
1083
Dan Gohman572645c2010-02-12 10:34:29 +00001084void LSRUse::print(raw_ostream &OS) const {
1085 OS << "LSR Use: Kind=";
1086 switch (Kind) {
1087 case Basic: OS << "Basic"; break;
1088 case Special: OS << "Special"; break;
1089 case ICmpZero: OS << "ICmpZero"; break;
1090 case Address:
1091 OS << "Address of ";
Duncan Sands1df98592010-02-16 11:11:14 +00001092 if (AccessTy->isPointerTy())
Dan Gohman572645c2010-02-12 10:34:29 +00001093 OS << "pointer"; // the full pointer type could be really verbose
1094 else
1095 OS << *AccessTy;
Evan Chengcdf43b12007-10-25 09:11:16 +00001096 }
1097
Dan Gohman572645c2010-02-12 10:34:29 +00001098 OS << ", Offsets={";
1099 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
1100 E = Offsets.end(); I != E; ++I) {
1101 OS << *I;
Oscar Fuentesee56c422010-08-02 06:00:15 +00001102 if (llvm::next(I) != E)
Dan Gohman572645c2010-02-12 10:34:29 +00001103 OS << ',';
Dan Gohman7979b722010-01-22 00:46:49 +00001104 }
Dan Gohman572645c2010-02-12 10:34:29 +00001105 OS << '}';
Dan Gohman7979b722010-01-22 00:46:49 +00001106
Dan Gohman572645c2010-02-12 10:34:29 +00001107 if (AllFixupsOutsideLoop)
1108 OS << ", all-fixups-outside-loop";
Dan Gohmana9db1292010-07-15 20:24:58 +00001109
1110 if (WidestFixupType)
1111 OS << ", widest fixup type: " << *WidestFixupType;
Dan Gohman7979b722010-01-22 00:46:49 +00001112}
1113
Dan Gohman572645c2010-02-12 10:34:29 +00001114void LSRUse::dump() const {
1115 print(errs()); errs() << '\n';
1116}
Dan Gohman7979b722010-01-22 00:46:49 +00001117
Dan Gohman572645c2010-02-12 10:34:29 +00001118/// isLegalUse - Test whether the use described by AM is "legal", meaning it can
1119/// be completely folded into the user instruction at isel time. This includes
1120/// address-mode folding and special icmp tricks.
1121static bool isLegalUse(const TargetLowering::AddrMode &AM,
1122 LSRUse::KindType Kind, const Type *AccessTy,
1123 const TargetLowering *TLI) {
1124 switch (Kind) {
1125 case LSRUse::Address:
1126 // If we have low-level target information, ask the target if it can
1127 // completely fold this address.
1128 if (TLI) return TLI->isLegalAddressingMode(AM, AccessTy);
1129
1130 // Otherwise, just guess that reg+reg addressing is legal.
1131 return !AM.BaseGV && AM.BaseOffs == 0 && AM.Scale <= 1;
1132
1133 case LSRUse::ICmpZero:
1134 // There's not even a target hook for querying whether it would be legal to
1135 // fold a GV into an ICmp.
1136 if (AM.BaseGV)
1137 return false;
1138
1139 // ICmp only has two operands; don't allow more than two non-trivial parts.
1140 if (AM.Scale != 0 && AM.HasBaseReg && AM.BaseOffs != 0)
1141 return false;
1142
1143 // ICmp only supports no scale or a -1 scale, as we can "fold" a -1 scale by
1144 // putting the scaled register in the other operand of the icmp.
1145 if (AM.Scale != 0 && AM.Scale != -1)
1146 return false;
1147
1148 // If we have low-level target information, ask the target if it can fold an
1149 // integer immediate on an icmp.
1150 if (AM.BaseOffs != 0) {
1151 if (TLI) return TLI->isLegalICmpImmediate(-AM.BaseOffs);
1152 return false;
Dan Gohman7979b722010-01-22 00:46:49 +00001153 }
Dan Gohman572645c2010-02-12 10:34:29 +00001154
1155 return true;
1156
1157 case LSRUse::Basic:
1158 // Only handle single-register values.
1159 return !AM.BaseGV && AM.Scale == 0 && AM.BaseOffs == 0;
1160
1161 case LSRUse::Special:
1162 // Only handle -1 scales, or no scale.
1163 return AM.Scale == 0 || AM.Scale == -1;
Dan Gohman7979b722010-01-22 00:46:49 +00001164 }
1165
Dan Gohman7979b722010-01-22 00:46:49 +00001166 return false;
1167}
1168
Dan Gohman572645c2010-02-12 10:34:29 +00001169static bool isLegalUse(TargetLowering::AddrMode AM,
1170 int64_t MinOffset, int64_t MaxOffset,
1171 LSRUse::KindType Kind, const Type *AccessTy,
1172 const TargetLowering *TLI) {
1173 // Check for overflow.
1174 if (((int64_t)((uint64_t)AM.BaseOffs + MinOffset) > AM.BaseOffs) !=
1175 (MinOffset > 0))
1176 return false;
1177 AM.BaseOffs = (uint64_t)AM.BaseOffs + MinOffset;
1178 if (isLegalUse(AM, Kind, AccessTy, TLI)) {
1179 AM.BaseOffs = (uint64_t)AM.BaseOffs - MinOffset;
1180 // Check for overflow.
1181 if (((int64_t)((uint64_t)AM.BaseOffs + MaxOffset) > AM.BaseOffs) !=
1182 (MaxOffset > 0))
1183 return false;
1184 AM.BaseOffs = (uint64_t)AM.BaseOffs + MaxOffset;
1185 return isLegalUse(AM, Kind, AccessTy, TLI);
Dan Gohman7979b722010-01-22 00:46:49 +00001186 }
Dan Gohman572645c2010-02-12 10:34:29 +00001187 return false;
Dan Gohman7979b722010-01-22 00:46:49 +00001188}
1189
Dan Gohman572645c2010-02-12 10:34:29 +00001190static bool isAlwaysFoldable(int64_t BaseOffs,
1191 GlobalValue *BaseGV,
1192 bool HasBaseReg,
1193 LSRUse::KindType Kind, const Type *AccessTy,
Dan Gohman454d26d2010-02-22 04:11:59 +00001194 const TargetLowering *TLI) {
Dan Gohman572645c2010-02-12 10:34:29 +00001195 // Fast-path: zero is always foldable.
1196 if (BaseOffs == 0 && !BaseGV) return true;
Dan Gohman7979b722010-01-22 00:46:49 +00001197
Dan Gohman572645c2010-02-12 10:34:29 +00001198 // Conservatively, create an address with an immediate and a
1199 // base and a scale.
1200 TargetLowering::AddrMode AM;
1201 AM.BaseOffs = BaseOffs;
1202 AM.BaseGV = BaseGV;
1203 AM.HasBaseReg = HasBaseReg;
1204 AM.Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman7979b722010-01-22 00:46:49 +00001205
Dan Gohmana2086b32010-05-19 23:43:12 +00001206 // Canonicalize a scale of 1 to a base register if the formula doesn't
1207 // already have a base register.
1208 if (!AM.HasBaseReg && AM.Scale == 1) {
1209 AM.Scale = 0;
1210 AM.HasBaseReg = true;
1211 }
1212
Dan Gohman572645c2010-02-12 10:34:29 +00001213 return isLegalUse(AM, Kind, AccessTy, TLI);
Dan Gohman7979b722010-01-22 00:46:49 +00001214}
1215
Dan Gohman572645c2010-02-12 10:34:29 +00001216static bool isAlwaysFoldable(const SCEV *S,
1217 int64_t MinOffset, int64_t MaxOffset,
1218 bool HasBaseReg,
1219 LSRUse::KindType Kind, const Type *AccessTy,
1220 const TargetLowering *TLI,
1221 ScalarEvolution &SE) {
1222 // Fast-path: zero is always foldable.
1223 if (S->isZero()) return true;
1224
1225 // Conservatively, create an address with an immediate and a
1226 // base and a scale.
1227 int64_t BaseOffs = ExtractImmediate(S, SE);
1228 GlobalValue *BaseGV = ExtractSymbol(S, SE);
1229
1230 // If there's anything else involved, it's not foldable.
1231 if (!S->isZero()) return false;
1232
1233 // Fast-path: zero is always foldable.
1234 if (BaseOffs == 0 && !BaseGV) return true;
1235
1236 // Conservatively, create an address with an immediate and a
1237 // base and a scale.
1238 TargetLowering::AddrMode AM;
1239 AM.BaseOffs = BaseOffs;
1240 AM.BaseGV = BaseGV;
1241 AM.HasBaseReg = HasBaseReg;
1242 AM.Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
1243
1244 return isLegalUse(AM, MinOffset, MaxOffset, Kind, AccessTy, TLI);
Dan Gohman7979b722010-01-22 00:46:49 +00001245}
1246
Dan Gohmanb6211712010-06-19 21:21:39 +00001247namespace {
1248
Dan Gohman1e3121c2010-06-19 21:29:59 +00001249/// UseMapDenseMapInfo - A DenseMapInfo implementation for holding
1250/// DenseMaps and DenseSets of pairs of const SCEV* and LSRUse::Kind.
1251struct UseMapDenseMapInfo {
1252 static std::pair<const SCEV *, LSRUse::KindType> getEmptyKey() {
1253 return std::make_pair(reinterpret_cast<const SCEV *>(-1), LSRUse::Basic);
1254 }
1255
1256 static std::pair<const SCEV *, LSRUse::KindType> getTombstoneKey() {
1257 return std::make_pair(reinterpret_cast<const SCEV *>(-2), LSRUse::Basic);
1258 }
1259
1260 static unsigned
1261 getHashValue(const std::pair<const SCEV *, LSRUse::KindType> &V) {
1262 unsigned Result = DenseMapInfo<const SCEV *>::getHashValue(V.first);
1263 Result ^= DenseMapInfo<unsigned>::getHashValue(unsigned(V.second));
1264 return Result;
1265 }
1266
1267 static bool isEqual(const std::pair<const SCEV *, LSRUse::KindType> &LHS,
1268 const std::pair<const SCEV *, LSRUse::KindType> &RHS) {
1269 return LHS == RHS;
1270 }
1271};
1272
Dan Gohman572645c2010-02-12 10:34:29 +00001273/// LSRInstance - This class holds state for the main loop strength reduction
1274/// logic.
1275class LSRInstance {
1276 IVUsers &IU;
1277 ScalarEvolution &SE;
1278 DominatorTree &DT;
Dan Gohmane5f76872010-04-09 22:07:05 +00001279 LoopInfo &LI;
Dan Gohman572645c2010-02-12 10:34:29 +00001280 const TargetLowering *const TLI;
1281 Loop *const L;
1282 bool Changed;
1283
1284 /// IVIncInsertPos - This is the insert position that the current loop's
1285 /// induction variable increment should be placed. In simple loops, this is
1286 /// the latch block's terminator. But in more complicated cases, this is a
1287 /// position which will dominate all the in-loop post-increment users.
1288 Instruction *IVIncInsertPos;
1289
1290 /// Factors - Interesting factors between use strides.
1291 SmallSetVector<int64_t, 8> Factors;
1292
1293 /// Types - Interesting use types, to facilitate truncation reuse.
1294 SmallSetVector<const Type *, 4> Types;
1295
1296 /// Fixups - The list of operands which are to be replaced.
1297 SmallVector<LSRFixup, 16> Fixups;
1298
1299 /// Uses - The list of interesting uses.
1300 SmallVector<LSRUse, 16> Uses;
1301
1302 /// RegUses - Track which uses use which register candidates.
1303 RegUseTracker RegUses;
1304
1305 void OptimizeShadowIV();
1306 bool FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse);
1307 ICmpInst *OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse);
Dan Gohmanc6519f92010-05-20 20:05:31 +00001308 void OptimizeLoopTermCond();
Dan Gohman572645c2010-02-12 10:34:29 +00001309
1310 void CollectInterestingTypesAndFactors();
1311 void CollectFixupsAndInitialFormulae();
1312
1313 LSRFixup &getNewFixup() {
1314 Fixups.push_back(LSRFixup());
1315 return Fixups.back();
1316 }
1317
1318 // Support for sharing of LSRUses between LSRFixups.
Dan Gohman1e3121c2010-06-19 21:29:59 +00001319 typedef DenseMap<std::pair<const SCEV *, LSRUse::KindType>,
1320 size_t,
1321 UseMapDenseMapInfo> UseMapTy;
Dan Gohman572645c2010-02-12 10:34:29 +00001322 UseMapTy UseMap;
1323
Dan Gohman191bd642010-09-01 01:45:53 +00001324 bool reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Dan Gohman572645c2010-02-12 10:34:29 +00001325 LSRUse::KindType Kind, const Type *AccessTy);
1326
1327 std::pair<size_t, int64_t> getUse(const SCEV *&Expr,
1328 LSRUse::KindType Kind,
1329 const Type *AccessTy);
1330
Dan Gohmanc6897702010-10-07 23:33:43 +00001331 void DeleteUse(LSRUse &LU, size_t LUIdx);
Dan Gohman5ce6d052010-05-20 15:17:54 +00001332
Dan Gohman191bd642010-09-01 01:45:53 +00001333 LSRUse *FindUseWithSimilarFormula(const Formula &F, const LSRUse &OrigLU);
Dan Gohmana2086b32010-05-19 23:43:12 +00001334
Dan Gohman572645c2010-02-12 10:34:29 +00001335public:
Dan Gohman454d26d2010-02-22 04:11:59 +00001336 void InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
Dan Gohman572645c2010-02-12 10:34:29 +00001337 void InsertSupplementalFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
1338 void CountRegisters(const Formula &F, size_t LUIdx);
1339 bool InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F);
1340
1341 void CollectLoopInvariantFixupsAndFormulae();
1342
1343 void GenerateReassociations(LSRUse &LU, unsigned LUIdx, Formula Base,
1344 unsigned Depth = 0);
1345 void GenerateCombinations(LSRUse &LU, unsigned LUIdx, Formula Base);
1346 void GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1347 void GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1348 void GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1349 void GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1350 void GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base);
1351 void GenerateCrossUseConstantOffsets();
1352 void GenerateAllReuseFormulae();
1353
1354 void FilterOutUndesirableDedicatedRegisters();
Dan Gohmand079c302010-05-18 22:51:59 +00001355
1356 size_t EstimateSearchSpaceComplexity() const;
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00001357 void NarrowSearchSpaceByDetectingSupersets();
1358 void NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman4f7e18d2010-08-29 16:39:22 +00001359 void NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00001360 void NarrowSearchSpaceByPickingWinnerRegs();
Dan Gohman572645c2010-02-12 10:34:29 +00001361 void NarrowSearchSpaceUsingHeuristics();
1362
1363 void SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
1364 Cost &SolutionCost,
1365 SmallVectorImpl<const Formula *> &Workspace,
1366 const Cost &CurCost,
1367 const SmallPtrSet<const SCEV *, 16> &CurRegs,
1368 DenseSet<const SCEV *> &VisitedRegs) const;
1369 void Solve(SmallVectorImpl<const Formula *> &Solution) const;
1370
Dan Gohmane5f76872010-04-09 22:07:05 +00001371 BasicBlock::iterator
1372 HoistInsertPosition(BasicBlock::iterator IP,
1373 const SmallVectorImpl<Instruction *> &Inputs) const;
1374 BasicBlock::iterator AdjustInsertPositionForExpand(BasicBlock::iterator IP,
1375 const LSRFixup &LF,
1376 const LSRUse &LU) const;
Dan Gohmand96eae82010-04-09 02:00:38 +00001377
Dan Gohman572645c2010-02-12 10:34:29 +00001378 Value *Expand(const LSRFixup &LF,
1379 const Formula &F,
Dan Gohman454d26d2010-02-22 04:11:59 +00001380 BasicBlock::iterator IP,
Dan Gohman572645c2010-02-12 10:34:29 +00001381 SCEVExpander &Rewriter,
Dan Gohman454d26d2010-02-22 04:11:59 +00001382 SmallVectorImpl<WeakVH> &DeadInsts) const;
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001383 void RewriteForPHI(PHINode *PN, const LSRFixup &LF,
1384 const Formula &F,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001385 SCEVExpander &Rewriter,
1386 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001387 Pass *P) const;
Dan Gohman572645c2010-02-12 10:34:29 +00001388 void Rewrite(const LSRFixup &LF,
1389 const Formula &F,
Dan Gohman572645c2010-02-12 10:34:29 +00001390 SCEVExpander &Rewriter,
1391 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman572645c2010-02-12 10:34:29 +00001392 Pass *P) const;
1393 void ImplementSolution(const SmallVectorImpl<const Formula *> &Solution,
1394 Pass *P);
1395
1396 LSRInstance(const TargetLowering *tli, Loop *l, Pass *P);
1397
1398 bool getChanged() const { return Changed; }
1399
1400 void print_factors_and_types(raw_ostream &OS) const;
1401 void print_fixups(raw_ostream &OS) const;
1402 void print_uses(raw_ostream &OS) const;
1403 void print(raw_ostream &OS) const;
1404 void dump() const;
1405};
1406
1407}
1408
1409/// OptimizeShadowIV - If IV is used in a int-to-float cast
Dan Gohman3f46a3a2010-03-01 17:49:51 +00001410/// inside the loop then try to eliminate the cast operation.
Dan Gohman572645c2010-02-12 10:34:29 +00001411void LSRInstance::OptimizeShadowIV() {
1412 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
1413 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1414 return;
1415
1416 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end();
1417 UI != E; /* empty */) {
1418 IVUsers::const_iterator CandidateUI = UI;
1419 ++UI;
1420 Instruction *ShadowUse = CandidateUI->getUser();
1421 const Type *DestTy = NULL;
1422
1423 /* If shadow use is a int->float cast then insert a second IV
1424 to eliminate this cast.
1425
1426 for (unsigned i = 0; i < n; ++i)
1427 foo((double)i);
1428
1429 is transformed into
1430
1431 double d = 0.0;
1432 for (unsigned i = 0; i < n; ++i, ++d)
1433 foo(d);
1434 */
1435 if (UIToFPInst *UCast = dyn_cast<UIToFPInst>(CandidateUI->getUser()))
1436 DestTy = UCast->getDestTy();
1437 else if (SIToFPInst *SCast = dyn_cast<SIToFPInst>(CandidateUI->getUser()))
1438 DestTy = SCast->getDestTy();
1439 if (!DestTy) continue;
1440
1441 if (TLI) {
1442 // If target does not support DestTy natively then do not apply
1443 // this transformation.
1444 EVT DVT = TLI->getValueType(DestTy);
1445 if (!TLI->isTypeLegal(DVT)) continue;
1446 }
1447
1448 PHINode *PH = dyn_cast<PHINode>(ShadowUse->getOperand(0));
1449 if (!PH) continue;
1450 if (PH->getNumIncomingValues() != 2) continue;
1451
1452 const Type *SrcTy = PH->getType();
1453 int Mantissa = DestTy->getFPMantissaWidth();
1454 if (Mantissa == -1) continue;
1455 if ((int)SE.getTypeSizeInBits(SrcTy) > Mantissa)
1456 continue;
1457
1458 unsigned Entry, Latch;
1459 if (PH->getIncomingBlock(0) == L->getLoopPreheader()) {
1460 Entry = 0;
1461 Latch = 1;
Dan Gohman7979b722010-01-22 00:46:49 +00001462 } else {
Dan Gohman572645c2010-02-12 10:34:29 +00001463 Entry = 1;
1464 Latch = 0;
Dan Gohman7979b722010-01-22 00:46:49 +00001465 }
Dan Gohman7979b722010-01-22 00:46:49 +00001466
Dan Gohman572645c2010-02-12 10:34:29 +00001467 ConstantInt *Init = dyn_cast<ConstantInt>(PH->getIncomingValue(Entry));
1468 if (!Init) continue;
1469 Constant *NewInit = ConstantFP::get(DestTy, Init->getZExtValue());
Dan Gohman7979b722010-01-22 00:46:49 +00001470
Dan Gohman572645c2010-02-12 10:34:29 +00001471 BinaryOperator *Incr =
1472 dyn_cast<BinaryOperator>(PH->getIncomingValue(Latch));
1473 if (!Incr) continue;
1474 if (Incr->getOpcode() != Instruction::Add
1475 && Incr->getOpcode() != Instruction::Sub)
Dan Gohman7979b722010-01-22 00:46:49 +00001476 continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001477
Dan Gohman572645c2010-02-12 10:34:29 +00001478 /* Initialize new IV, double d = 0.0 in above example. */
1479 ConstantInt *C = NULL;
1480 if (Incr->getOperand(0) == PH)
1481 C = dyn_cast<ConstantInt>(Incr->getOperand(1));
1482 else if (Incr->getOperand(1) == PH)
1483 C = dyn_cast<ConstantInt>(Incr->getOperand(0));
Dan Gohman7979b722010-01-22 00:46:49 +00001484 else
Dan Gohman7979b722010-01-22 00:46:49 +00001485 continue;
1486
Dan Gohman572645c2010-02-12 10:34:29 +00001487 if (!C) continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001488
Dan Gohman572645c2010-02-12 10:34:29 +00001489 // Ignore negative constants, as the code below doesn't handle them
1490 // correctly. TODO: Remove this restriction.
1491 if (!C->getValue().isStrictlyPositive()) continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001492
Dan Gohman572645c2010-02-12 10:34:29 +00001493 /* Add new PHINode. */
Jay Foad3ecfc862011-03-30 11:28:46 +00001494 PHINode *NewPH = PHINode::Create(DestTy, 2, "IV.S.", PH);
Dan Gohman7979b722010-01-22 00:46:49 +00001495
Dan Gohman572645c2010-02-12 10:34:29 +00001496 /* create new increment. '++d' in above example. */
1497 Constant *CFP = ConstantFP::get(DestTy, C->getZExtValue());
1498 BinaryOperator *NewIncr =
1499 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
1500 Instruction::FAdd : Instruction::FSub,
1501 NewPH, CFP, "IV.S.next.", Incr);
Dan Gohman7979b722010-01-22 00:46:49 +00001502
Dan Gohman572645c2010-02-12 10:34:29 +00001503 NewPH->addIncoming(NewInit, PH->getIncomingBlock(Entry));
1504 NewPH->addIncoming(NewIncr, PH->getIncomingBlock(Latch));
Dan Gohman7979b722010-01-22 00:46:49 +00001505
Dan Gohman572645c2010-02-12 10:34:29 +00001506 /* Remove cast operation */
1507 ShadowUse->replaceAllUsesWith(NewPH);
1508 ShadowUse->eraseFromParent();
Dan Gohmanc6519f92010-05-20 20:05:31 +00001509 Changed = true;
Dan Gohman572645c2010-02-12 10:34:29 +00001510 break;
Dan Gohman7979b722010-01-22 00:46:49 +00001511 }
1512}
1513
1514/// FindIVUserForCond - If Cond has an operand that is an expression of an IV,
1515/// set the IV user and stride information and return true, otherwise return
1516/// false.
Dan Gohmanea507f52010-05-20 19:44:23 +00001517bool LSRInstance::FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse) {
Dan Gohman572645c2010-02-12 10:34:29 +00001518 for (IVUsers::iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
1519 if (UI->getUser() == Cond) {
1520 // NOTE: we could handle setcc instructions with multiple uses here, but
1521 // InstCombine does it as well for simple uses, it's not clear that it
1522 // occurs enough in real life to handle.
1523 CondUse = UI;
1524 return true;
1525 }
Dan Gohman7979b722010-01-22 00:46:49 +00001526 return false;
Evan Chengcdf43b12007-10-25 09:11:16 +00001527}
1528
Dan Gohman7979b722010-01-22 00:46:49 +00001529/// OptimizeMax - Rewrite the loop's terminating condition if it uses
1530/// a max computation.
1531///
1532/// This is a narrow solution to a specific, but acute, problem. For loops
1533/// like this:
1534///
1535/// i = 0;
1536/// do {
1537/// p[i] = 0.0;
1538/// } while (++i < n);
1539///
1540/// the trip count isn't just 'n', because 'n' might not be positive. And
1541/// unfortunately this can come up even for loops where the user didn't use
1542/// a C do-while loop. For example, seemingly well-behaved top-test loops
1543/// will commonly be lowered like this:
1544//
1545/// if (n > 0) {
1546/// i = 0;
1547/// do {
1548/// p[i] = 0.0;
1549/// } while (++i < n);
1550/// }
1551///
1552/// and then it's possible for subsequent optimization to obscure the if
1553/// test in such a way that indvars can't find it.
1554///
1555/// When indvars can't find the if test in loops like this, it creates a
1556/// max expression, which allows it to give the loop a canonical
1557/// induction variable:
1558///
1559/// i = 0;
1560/// max = n < 1 ? 1 : n;
1561/// do {
1562/// p[i] = 0.0;
1563/// } while (++i != max);
1564///
1565/// Canonical induction variables are necessary because the loop passes
1566/// are designed around them. The most obvious example of this is the
1567/// LoopInfo analysis, which doesn't remember trip count values. It
1568/// expects to be able to rediscover the trip count each time it is
Dan Gohman572645c2010-02-12 10:34:29 +00001569/// needed, and it does this using a simple analysis that only succeeds if
Dan Gohman7979b722010-01-22 00:46:49 +00001570/// the loop has a canonical induction variable.
1571///
1572/// However, when it comes time to generate code, the maximum operation
1573/// can be quite costly, especially if it's inside of an outer loop.
1574///
1575/// This function solves this problem by detecting this type of loop and
1576/// rewriting their conditions from ICMP_NE back to ICMP_SLT, and deleting
1577/// the instructions for the maximum computation.
1578///
Dan Gohman572645c2010-02-12 10:34:29 +00001579ICmpInst *LSRInstance::OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse) {
Dan Gohman7979b722010-01-22 00:46:49 +00001580 // Check that the loop matches the pattern we're looking for.
1581 if (Cond->getPredicate() != CmpInst::ICMP_EQ &&
1582 Cond->getPredicate() != CmpInst::ICMP_NE)
1583 return Cond;
Dan Gohmana10756e2010-01-21 02:09:26 +00001584
Dan Gohman7979b722010-01-22 00:46:49 +00001585 SelectInst *Sel = dyn_cast<SelectInst>(Cond->getOperand(1));
1586 if (!Sel || !Sel->hasOneUse()) return Cond;
Dan Gohmana10756e2010-01-21 02:09:26 +00001587
Dan Gohman572645c2010-02-12 10:34:29 +00001588 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
Dan Gohman7979b722010-01-22 00:46:49 +00001589 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1590 return Cond;
Dan Gohmandeff6212010-05-03 22:09:21 +00001591 const SCEV *One = SE.getConstant(BackedgeTakenCount->getType(), 1);
Dan Gohmana10756e2010-01-21 02:09:26 +00001592
Dan Gohman7979b722010-01-22 00:46:49 +00001593 // Add one to the backedge-taken count to get the trip count.
Dan Gohman4065f602010-08-16 15:39:27 +00001594 const SCEV *IterationCount = SE.getAddExpr(One, BackedgeTakenCount);
Dan Gohman1d367982010-04-24 03:13:44 +00001595 if (IterationCount != SE.getSCEV(Sel)) return Cond;
Dan Gohman7979b722010-01-22 00:46:49 +00001596
Dan Gohman1d367982010-04-24 03:13:44 +00001597 // Check for a max calculation that matches the pattern. There's no check
1598 // for ICMP_ULE here because the comparison would be with zero, which
1599 // isn't interesting.
1600 CmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE;
1601 const SCEVNAryExpr *Max = 0;
1602 if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(BackedgeTakenCount)) {
1603 Pred = ICmpInst::ICMP_SLE;
1604 Max = S;
1605 } else if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(IterationCount)) {
1606 Pred = ICmpInst::ICMP_SLT;
1607 Max = S;
1608 } else if (const SCEVUMaxExpr *U = dyn_cast<SCEVUMaxExpr>(IterationCount)) {
1609 Pred = ICmpInst::ICMP_ULT;
1610 Max = U;
1611 } else {
1612 // No match; bail.
Dan Gohman7979b722010-01-22 00:46:49 +00001613 return Cond;
Dan Gohman1d367982010-04-24 03:13:44 +00001614 }
Dan Gohman7979b722010-01-22 00:46:49 +00001615
1616 // To handle a max with more than two operands, this optimization would
1617 // require additional checking and setup.
1618 if (Max->getNumOperands() != 2)
1619 return Cond;
1620
1621 const SCEV *MaxLHS = Max->getOperand(0);
1622 const SCEV *MaxRHS = Max->getOperand(1);
Dan Gohman1d367982010-04-24 03:13:44 +00001623
1624 // ScalarEvolution canonicalizes constants to the left. For < and >, look
1625 // for a comparison with 1. For <= and >=, a comparison with zero.
1626 if (!MaxLHS ||
1627 (ICmpInst::isTrueWhenEqual(Pred) ? !MaxLHS->isZero() : (MaxLHS != One)))
1628 return Cond;
1629
Dan Gohman7979b722010-01-22 00:46:49 +00001630 // Check the relevant induction variable for conformance to
1631 // the pattern.
Dan Gohman572645c2010-02-12 10:34:29 +00001632 const SCEV *IV = SE.getSCEV(Cond->getOperand(0));
Dan Gohman7979b722010-01-22 00:46:49 +00001633 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(IV);
1634 if (!AR || !AR->isAffine() ||
1635 AR->getStart() != One ||
Dan Gohman572645c2010-02-12 10:34:29 +00001636 AR->getStepRecurrence(SE) != One)
Dan Gohman7979b722010-01-22 00:46:49 +00001637 return Cond;
1638
1639 assert(AR->getLoop() == L &&
1640 "Loop condition operand is an addrec in a different loop!");
1641
1642 // Check the right operand of the select, and remember it, as it will
1643 // be used in the new comparison instruction.
1644 Value *NewRHS = 0;
Dan Gohman1d367982010-04-24 03:13:44 +00001645 if (ICmpInst::isTrueWhenEqual(Pred)) {
1646 // Look for n+1, and grab n.
1647 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(1)))
1648 if (isa<ConstantInt>(BO->getOperand(1)) &&
1649 cast<ConstantInt>(BO->getOperand(1))->isOne() &&
1650 SE.getSCEV(BO->getOperand(0)) == MaxRHS)
1651 NewRHS = BO->getOperand(0);
1652 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(2)))
1653 if (isa<ConstantInt>(BO->getOperand(1)) &&
1654 cast<ConstantInt>(BO->getOperand(1))->isOne() &&
1655 SE.getSCEV(BO->getOperand(0)) == MaxRHS)
1656 NewRHS = BO->getOperand(0);
1657 if (!NewRHS)
1658 return Cond;
1659 } else if (SE.getSCEV(Sel->getOperand(1)) == MaxRHS)
Dan Gohman7979b722010-01-22 00:46:49 +00001660 NewRHS = Sel->getOperand(1);
Dan Gohman572645c2010-02-12 10:34:29 +00001661 else if (SE.getSCEV(Sel->getOperand(2)) == MaxRHS)
Dan Gohman7979b722010-01-22 00:46:49 +00001662 NewRHS = Sel->getOperand(2);
Dan Gohmancaf71ab2010-06-22 23:07:13 +00001663 else if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(MaxRHS))
1664 NewRHS = SU->getValue();
Dan Gohman1d367982010-04-24 03:13:44 +00001665 else
Dan Gohmancaf71ab2010-06-22 23:07:13 +00001666 // Max doesn't match expected pattern.
1667 return Cond;
Dan Gohman7979b722010-01-22 00:46:49 +00001668
1669 // Determine the new comparison opcode. It may be signed or unsigned,
1670 // and the original comparison may be either equality or inequality.
Dan Gohman7979b722010-01-22 00:46:49 +00001671 if (Cond->getPredicate() == CmpInst::ICMP_EQ)
1672 Pred = CmpInst::getInversePredicate(Pred);
1673
1674 // Ok, everything looks ok to change the condition into an SLT or SGE and
1675 // delete the max calculation.
1676 ICmpInst *NewCond =
1677 new ICmpInst(Cond, Pred, Cond->getOperand(0), NewRHS, "scmp");
1678
1679 // Delete the max calculation instructions.
1680 Cond->replaceAllUsesWith(NewCond);
1681 CondUse->setUser(NewCond);
1682 Instruction *Cmp = cast<Instruction>(Sel->getOperand(0));
1683 Cond->eraseFromParent();
1684 Sel->eraseFromParent();
1685 if (Cmp->use_empty())
1686 Cmp->eraseFromParent();
1687 return NewCond;
Dan Gohmanad7321f2008-09-15 21:22:06 +00001688}
1689
Jim Grosbach56a1f802009-11-17 17:53:56 +00001690/// OptimizeLoopTermCond - Change loop terminating condition to use the
Evan Cheng586f69a2009-11-12 07:35:05 +00001691/// postinc iv when possible.
Dan Gohmanc6519f92010-05-20 20:05:31 +00001692void
Dan Gohman572645c2010-02-12 10:34:29 +00001693LSRInstance::OptimizeLoopTermCond() {
1694 SmallPtrSet<Instruction *, 4> PostIncs;
1695
Evan Cheng586f69a2009-11-12 07:35:05 +00001696 BasicBlock *LatchBlock = L->getLoopLatch();
Evan Cheng076e0852009-11-17 18:10:11 +00001697 SmallVector<BasicBlock*, 8> ExitingBlocks;
1698 L->getExitingBlocks(ExitingBlocks);
Jim Grosbach56a1f802009-11-17 17:53:56 +00001699
Evan Cheng076e0852009-11-17 18:10:11 +00001700 for (unsigned i = 0, e = ExitingBlocks.size(); i != e; ++i) {
1701 BasicBlock *ExitingBlock = ExitingBlocks[i];
Evan Cheng586f69a2009-11-12 07:35:05 +00001702
Dan Gohman572645c2010-02-12 10:34:29 +00001703 // Get the terminating condition for the loop if possible. If we
Evan Cheng076e0852009-11-17 18:10:11 +00001704 // can, we want to change it to use a post-incremented version of its
1705 // induction variable, to allow coalescing the live ranges for the IV into
1706 // one register value.
Evan Cheng586f69a2009-11-12 07:35:05 +00001707
Evan Cheng076e0852009-11-17 18:10:11 +00001708 BranchInst *TermBr = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
1709 if (!TermBr)
1710 continue;
1711 // FIXME: Overly conservative, termination condition could be an 'or' etc..
1712 if (TermBr->isUnconditional() || !isa<ICmpInst>(TermBr->getCondition()))
1713 continue;
Evan Cheng586f69a2009-11-12 07:35:05 +00001714
Evan Cheng076e0852009-11-17 18:10:11 +00001715 // Search IVUsesByStride to find Cond's IVUse if there is one.
1716 IVStrideUse *CondUse = 0;
Evan Cheng076e0852009-11-17 18:10:11 +00001717 ICmpInst *Cond = cast<ICmpInst>(TermBr->getCondition());
Dan Gohman572645c2010-02-12 10:34:29 +00001718 if (!FindIVUserForCond(Cond, CondUse))
Evan Cheng076e0852009-11-17 18:10:11 +00001719 continue;
1720
Evan Cheng076e0852009-11-17 18:10:11 +00001721 // If the trip count is computed in terms of a max (due to ScalarEvolution
1722 // being unable to find a sufficient guard, for example), change the loop
1723 // comparison to use SLT or ULT instead of NE.
Dan Gohman572645c2010-02-12 10:34:29 +00001724 // One consequence of doing this now is that it disrupts the count-down
1725 // optimization. That's not always a bad thing though, because in such
1726 // cases it may still be worthwhile to avoid a max.
1727 Cond = OptimizeMax(Cond, CondUse);
Evan Cheng076e0852009-11-17 18:10:11 +00001728
Dan Gohman572645c2010-02-12 10:34:29 +00001729 // If this exiting block dominates the latch block, it may also use
1730 // the post-inc value if it won't be shared with other uses.
1731 // Check for dominance.
1732 if (!DT.dominates(ExitingBlock, LatchBlock))
Dan Gohman7979b722010-01-22 00:46:49 +00001733 continue;
Evan Cheng076e0852009-11-17 18:10:11 +00001734
Dan Gohman572645c2010-02-12 10:34:29 +00001735 // Conservatively avoid trying to use the post-inc value in non-latch
1736 // exits if there may be pre-inc users in intervening blocks.
Dan Gohman590bfe82010-02-14 03:21:49 +00001737 if (LatchBlock != ExitingBlock)
Dan Gohman572645c2010-02-12 10:34:29 +00001738 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
1739 // Test if the use is reachable from the exiting block. This dominator
1740 // query is a conservative approximation of reachability.
1741 if (&*UI != CondUse &&
1742 !DT.properlyDominates(UI->getUser()->getParent(), ExitingBlock)) {
1743 // Conservatively assume there may be reuse if the quotient of their
1744 // strides could be a legal scale.
Dan Gohmanc0564542010-04-19 21:48:58 +00001745 const SCEV *A = IU.getStride(*CondUse, L);
1746 const SCEV *B = IU.getStride(*UI, L);
Dan Gohman448db1c2010-04-07 22:27:08 +00001747 if (!A || !B) continue;
Dan Gohman572645c2010-02-12 10:34:29 +00001748 if (SE.getTypeSizeInBits(A->getType()) !=
1749 SE.getTypeSizeInBits(B->getType())) {
1750 if (SE.getTypeSizeInBits(A->getType()) >
1751 SE.getTypeSizeInBits(B->getType()))
1752 B = SE.getSignExtendExpr(B, A->getType());
1753 else
1754 A = SE.getSignExtendExpr(A, B->getType());
1755 }
1756 if (const SCEVConstant *D =
Dan Gohmanf09b7122010-02-19 19:35:48 +00001757 dyn_cast_or_null<SCEVConstant>(getExactSDiv(B, A, SE))) {
Dan Gohman9f383eb2010-05-20 22:25:20 +00001758 const ConstantInt *C = D->getValue();
Dan Gohman572645c2010-02-12 10:34:29 +00001759 // Stride of one or negative one can have reuse with non-addresses.
Dan Gohman9f383eb2010-05-20 22:25:20 +00001760 if (C->isOne() || C->isAllOnesValue())
Dan Gohman572645c2010-02-12 10:34:29 +00001761 goto decline_post_inc;
1762 // Avoid weird situations.
Dan Gohman9f383eb2010-05-20 22:25:20 +00001763 if (C->getValue().getMinSignedBits() >= 64 ||
1764 C->getValue().isMinSignedValue())
Dan Gohman572645c2010-02-12 10:34:29 +00001765 goto decline_post_inc;
Dan Gohman590bfe82010-02-14 03:21:49 +00001766 // Without TLI, assume that any stride might be valid, and so any
1767 // use might be shared.
1768 if (!TLI)
1769 goto decline_post_inc;
Dan Gohman572645c2010-02-12 10:34:29 +00001770 // Check for possible scaled-address reuse.
1771 const Type *AccessTy = getAccessType(UI->getUser());
1772 TargetLowering::AddrMode AM;
Dan Gohman9f383eb2010-05-20 22:25:20 +00001773 AM.Scale = C->getSExtValue();
Dan Gohman2763dfd2010-02-14 02:45:21 +00001774 if (TLI->isLegalAddressingMode(AM, AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +00001775 goto decline_post_inc;
1776 AM.Scale = -AM.Scale;
Dan Gohman2763dfd2010-02-14 02:45:21 +00001777 if (TLI->isLegalAddressingMode(AM, AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +00001778 goto decline_post_inc;
1779 }
1780 }
1781
David Greene63c94632009-12-23 22:58:38 +00001782 DEBUG(dbgs() << " Change loop exiting icmp to use postinc iv: "
Dan Gohman572645c2010-02-12 10:34:29 +00001783 << *Cond << '\n');
Evan Cheng076e0852009-11-17 18:10:11 +00001784
1785 // It's possible for the setcc instruction to be anywhere in the loop, and
1786 // possible for it to have multiple users. If it is not immediately before
1787 // the exiting block branch, move it.
Dan Gohman572645c2010-02-12 10:34:29 +00001788 if (&*++BasicBlock::iterator(Cond) != TermBr) {
1789 if (Cond->hasOneUse()) {
Evan Cheng076e0852009-11-17 18:10:11 +00001790 Cond->moveBefore(TermBr);
1791 } else {
Dan Gohman572645c2010-02-12 10:34:29 +00001792 // Clone the terminating condition and insert into the loopend.
1793 ICmpInst *OldCond = Cond;
Evan Cheng076e0852009-11-17 18:10:11 +00001794 Cond = cast<ICmpInst>(Cond->clone());
1795 Cond->setName(L->getHeader()->getName() + ".termcond");
1796 ExitingBlock->getInstList().insert(TermBr, Cond);
1797
1798 // Clone the IVUse, as the old use still exists!
Dan Gohmanc0564542010-04-19 21:48:58 +00001799 CondUse = &IU.AddUser(Cond, CondUse->getOperandValToReplace());
Dan Gohman572645c2010-02-12 10:34:29 +00001800 TermBr->replaceUsesOfWith(OldCond, Cond);
Evan Cheng076e0852009-11-17 18:10:11 +00001801 }
Evan Cheng586f69a2009-11-12 07:35:05 +00001802 }
1803
Evan Cheng076e0852009-11-17 18:10:11 +00001804 // If we get to here, we know that we can transform the setcc instruction to
1805 // use the post-incremented version of the IV, allowing us to coalesce the
1806 // live ranges for the IV correctly.
Dan Gohman448db1c2010-04-07 22:27:08 +00001807 CondUse->transformToPostInc(L);
Evan Cheng076e0852009-11-17 18:10:11 +00001808 Changed = true;
1809
Dan Gohman572645c2010-02-12 10:34:29 +00001810 PostIncs.insert(Cond);
1811 decline_post_inc:;
Dan Gohmana10756e2010-01-21 02:09:26 +00001812 }
Dan Gohman572645c2010-02-12 10:34:29 +00001813
1814 // Determine an insertion point for the loop induction variable increment. It
1815 // must dominate all the post-inc comparisons we just set up, and it must
1816 // dominate the loop latch edge.
1817 IVIncInsertPos = L->getLoopLatch()->getTerminator();
1818 for (SmallPtrSet<Instruction *, 4>::const_iterator I = PostIncs.begin(),
1819 E = PostIncs.end(); I != E; ++I) {
1820 BasicBlock *BB =
1821 DT.findNearestCommonDominator(IVIncInsertPos->getParent(),
1822 (*I)->getParent());
1823 if (BB == (*I)->getParent())
1824 IVIncInsertPos = *I;
1825 else if (BB != IVIncInsertPos->getParent())
1826 IVIncInsertPos = BB->getTerminator();
1827 }
Dan Gohmana10756e2010-01-21 02:09:26 +00001828}
1829
Dan Gohman76c315a2010-05-20 20:52:00 +00001830/// reconcileNewOffset - Determine if the given use can accomodate a fixup
1831/// at the given offset and other details. If so, update the use and
1832/// return true.
Dan Gohman572645c2010-02-12 10:34:29 +00001833bool
Dan Gohman191bd642010-09-01 01:45:53 +00001834LSRInstance::reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Dan Gohman572645c2010-02-12 10:34:29 +00001835 LSRUse::KindType Kind, const Type *AccessTy) {
Dan Gohman191bd642010-09-01 01:45:53 +00001836 int64_t NewMinOffset = LU.MinOffset;
1837 int64_t NewMaxOffset = LU.MaxOffset;
1838 const Type *NewAccessTy = AccessTy;
Dan Gohman7979b722010-01-22 00:46:49 +00001839
Dan Gohman572645c2010-02-12 10:34:29 +00001840 // Check for a mismatched kind. It's tempting to collapse mismatched kinds to
1841 // something conservative, however this can pessimize in the case that one of
1842 // the uses will have all its uses outside the loop, for example.
1843 if (LU.Kind != Kind)
Dan Gohman7979b722010-01-22 00:46:49 +00001844 return false;
Dan Gohman572645c2010-02-12 10:34:29 +00001845 // Conservatively assume HasBaseReg is true for now.
Dan Gohman191bd642010-09-01 01:45:53 +00001846 if (NewOffset < LU.MinOffset) {
1847 if (!isAlwaysFoldable(LU.MaxOffset - NewOffset, 0, HasBaseReg,
Dan Gohman454d26d2010-02-22 04:11:59 +00001848 Kind, AccessTy, TLI))
Dan Gohman7979b722010-01-22 00:46:49 +00001849 return false;
Dan Gohman191bd642010-09-01 01:45:53 +00001850 NewMinOffset = NewOffset;
1851 } else if (NewOffset > LU.MaxOffset) {
1852 if (!isAlwaysFoldable(NewOffset - LU.MinOffset, 0, HasBaseReg,
Dan Gohman454d26d2010-02-22 04:11:59 +00001853 Kind, AccessTy, TLI))
Dan Gohman7979b722010-01-22 00:46:49 +00001854 return false;
Dan Gohman191bd642010-09-01 01:45:53 +00001855 NewMaxOffset = NewOffset;
Dan Gohmana10756e2010-01-21 02:09:26 +00001856 }
Dan Gohman572645c2010-02-12 10:34:29 +00001857 // Check for a mismatched access type, and fall back conservatively as needed.
Dan Gohman74e5ef02010-06-19 21:30:18 +00001858 // TODO: Be less conservative when the type is similar and can use the same
1859 // addressing modes.
Dan Gohman572645c2010-02-12 10:34:29 +00001860 if (Kind == LSRUse::Address && AccessTy != LU.AccessTy)
Dan Gohman191bd642010-09-01 01:45:53 +00001861 NewAccessTy = Type::getVoidTy(AccessTy->getContext());
Dan Gohmana10756e2010-01-21 02:09:26 +00001862
Dan Gohman572645c2010-02-12 10:34:29 +00001863 // Update the use.
Dan Gohman191bd642010-09-01 01:45:53 +00001864 LU.MinOffset = NewMinOffset;
1865 LU.MaxOffset = NewMaxOffset;
1866 LU.AccessTy = NewAccessTy;
1867 if (NewOffset != LU.Offsets.back())
1868 LU.Offsets.push_back(NewOffset);
Dan Gohman8b0ade32010-01-21 22:42:49 +00001869 return true;
1870}
1871
Dan Gohman572645c2010-02-12 10:34:29 +00001872/// getUse - Return an LSRUse index and an offset value for a fixup which
1873/// needs the given expression, with the given kind and optional access type.
Dan Gohman3f46a3a2010-03-01 17:49:51 +00001874/// Either reuse an existing use or create a new one, as needed.
Dan Gohman572645c2010-02-12 10:34:29 +00001875std::pair<size_t, int64_t>
1876LSRInstance::getUse(const SCEV *&Expr,
1877 LSRUse::KindType Kind, const Type *AccessTy) {
1878 const SCEV *Copy = Expr;
1879 int64_t Offset = ExtractImmediate(Expr, SE);
Evan Cheng586f69a2009-11-12 07:35:05 +00001880
Dan Gohman572645c2010-02-12 10:34:29 +00001881 // Basic uses can't accept any offset, for example.
Dan Gohman454d26d2010-02-22 04:11:59 +00001882 if (!isAlwaysFoldable(Offset, 0, /*HasBaseReg=*/true, Kind, AccessTy, TLI)) {
Dan Gohman572645c2010-02-12 10:34:29 +00001883 Expr = Copy;
1884 Offset = 0;
1885 }
1886
1887 std::pair<UseMapTy::iterator, bool> P =
Dan Gohman1e3121c2010-06-19 21:29:59 +00001888 UseMap.insert(std::make_pair(std::make_pair(Expr, Kind), 0));
Dan Gohman572645c2010-02-12 10:34:29 +00001889 if (!P.second) {
1890 // A use already existed with this base.
1891 size_t LUIdx = P.first->second;
1892 LSRUse &LU = Uses[LUIdx];
Dan Gohman191bd642010-09-01 01:45:53 +00001893 if (reconcileNewOffset(LU, Offset, /*HasBaseReg=*/true, Kind, AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +00001894 // Reuse this use.
1895 return std::make_pair(LUIdx, Offset);
1896 }
1897
1898 // Create a new use.
1899 size_t LUIdx = Uses.size();
1900 P.first->second = LUIdx;
1901 Uses.push_back(LSRUse(Kind, AccessTy));
1902 LSRUse &LU = Uses[LUIdx];
1903
Dan Gohman191bd642010-09-01 01:45:53 +00001904 // We don't need to track redundant offsets, but we don't need to go out
1905 // of our way here to avoid them.
1906 if (LU.Offsets.empty() || Offset != LU.Offsets.back())
1907 LU.Offsets.push_back(Offset);
1908
Dan Gohman572645c2010-02-12 10:34:29 +00001909 LU.MinOffset = Offset;
1910 LU.MaxOffset = Offset;
1911 return std::make_pair(LUIdx, Offset);
1912}
1913
Dan Gohman5ce6d052010-05-20 15:17:54 +00001914/// DeleteUse - Delete the given use from the Uses list.
Dan Gohmanc6897702010-10-07 23:33:43 +00001915void LSRInstance::DeleteUse(LSRUse &LU, size_t LUIdx) {
Dan Gohman191bd642010-09-01 01:45:53 +00001916 if (&LU != &Uses.back())
Dan Gohman5ce6d052010-05-20 15:17:54 +00001917 std::swap(LU, Uses.back());
1918 Uses.pop_back();
Dan Gohmanc6897702010-10-07 23:33:43 +00001919
1920 // Update RegUses.
1921 RegUses.SwapAndDropUse(LUIdx, Uses.size());
Dan Gohman5ce6d052010-05-20 15:17:54 +00001922}
1923
Dan Gohmana2086b32010-05-19 23:43:12 +00001924/// FindUseWithFormula - Look for a use distinct from OrigLU which is has
1925/// a formula that has the same registers as the given formula.
1926LSRUse *
1927LSRInstance::FindUseWithSimilarFormula(const Formula &OrigF,
Dan Gohman191bd642010-09-01 01:45:53 +00001928 const LSRUse &OrigLU) {
1929 // Search all uses for the formula. This could be more clever.
Dan Gohmana2086b32010-05-19 23:43:12 +00001930 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
1931 LSRUse &LU = Uses[LUIdx];
Dan Gohman6a832712010-08-29 15:27:08 +00001932 // Check whether this use is close enough to OrigLU, to see whether it's
1933 // worthwhile looking through its formulae.
1934 // Ignore ICmpZero uses because they may contain formulae generated by
1935 // GenerateICmpZeroScales, in which case adding fixup offsets may
1936 // be invalid.
Dan Gohmana2086b32010-05-19 23:43:12 +00001937 if (&LU != &OrigLU &&
1938 LU.Kind != LSRUse::ICmpZero &&
1939 LU.Kind == OrigLU.Kind && OrigLU.AccessTy == LU.AccessTy &&
Dan Gohmana9db1292010-07-15 20:24:58 +00001940 LU.WidestFixupType == OrigLU.WidestFixupType &&
Dan Gohmana2086b32010-05-19 23:43:12 +00001941 LU.HasFormulaWithSameRegs(OrigF)) {
Dan Gohman6a832712010-08-29 15:27:08 +00001942 // Scan through this use's formulae.
Dan Gohman402d4352010-05-20 20:33:18 +00001943 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
1944 E = LU.Formulae.end(); I != E; ++I) {
1945 const Formula &F = *I;
Dan Gohman6a832712010-08-29 15:27:08 +00001946 // Check to see if this formula has the same registers and symbols
1947 // as OrigF.
Dan Gohmana2086b32010-05-19 23:43:12 +00001948 if (F.BaseRegs == OrigF.BaseRegs &&
1949 F.ScaledReg == OrigF.ScaledReg &&
1950 F.AM.BaseGV == OrigF.AM.BaseGV &&
Dan Gohmane39a47c2010-08-29 15:30:29 +00001951 F.AM.Scale == OrigF.AM.Scale) {
Dan Gohman191bd642010-09-01 01:45:53 +00001952 if (F.AM.BaseOffs == 0)
Dan Gohmana2086b32010-05-19 23:43:12 +00001953 return &LU;
Dan Gohman6a832712010-08-29 15:27:08 +00001954 // This is the formula where all the registers and symbols matched;
1955 // there aren't going to be any others. Since we declined it, we
1956 // can skip the rest of the formulae and procede to the next LSRUse.
Dan Gohmana2086b32010-05-19 23:43:12 +00001957 break;
1958 }
1959 }
1960 }
1961 }
1962
Dan Gohman6a832712010-08-29 15:27:08 +00001963 // Nothing looked good.
Dan Gohmana2086b32010-05-19 23:43:12 +00001964 return 0;
1965}
1966
Dan Gohman572645c2010-02-12 10:34:29 +00001967void LSRInstance::CollectInterestingTypesAndFactors() {
1968 SmallSetVector<const SCEV *, 4> Strides;
1969
Dan Gohman1b7bf182010-02-19 00:05:23 +00001970 // Collect interesting types and strides.
Dan Gohman448db1c2010-04-07 22:27:08 +00001971 SmallVector<const SCEV *, 4> Worklist;
Dan Gohman572645c2010-02-12 10:34:29 +00001972 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) {
Dan Gohmanc0564542010-04-19 21:48:58 +00001973 const SCEV *Expr = IU.getExpr(*UI);
Dan Gohman572645c2010-02-12 10:34:29 +00001974
1975 // Collect interesting types.
Dan Gohman448db1c2010-04-07 22:27:08 +00001976 Types.insert(SE.getEffectiveSCEVType(Expr->getType()));
Dan Gohman572645c2010-02-12 10:34:29 +00001977
Dan Gohman448db1c2010-04-07 22:27:08 +00001978 // Add strides for mentioned loops.
1979 Worklist.push_back(Expr);
1980 do {
1981 const SCEV *S = Worklist.pop_back_val();
1982 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
1983 Strides.insert(AR->getStepRecurrence(SE));
1984 Worklist.push_back(AR->getStart());
1985 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Dan Gohman403a8cd2010-06-21 19:47:52 +00001986 Worklist.append(Add->op_begin(), Add->op_end());
Dan Gohman448db1c2010-04-07 22:27:08 +00001987 }
1988 } while (!Worklist.empty());
Dan Gohman1b7bf182010-02-19 00:05:23 +00001989 }
1990
1991 // Compute interesting factors from the set of interesting strides.
1992 for (SmallSetVector<const SCEV *, 4>::const_iterator
1993 I = Strides.begin(), E = Strides.end(); I != E; ++I)
Dan Gohman572645c2010-02-12 10:34:29 +00001994 for (SmallSetVector<const SCEV *, 4>::const_iterator NewStrideIter =
Oscar Fuentesee56c422010-08-02 06:00:15 +00001995 llvm::next(I); NewStrideIter != E; ++NewStrideIter) {
Dan Gohman1b7bf182010-02-19 00:05:23 +00001996 const SCEV *OldStride = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00001997 const SCEV *NewStride = *NewStrideIter;
Dan Gohman572645c2010-02-12 10:34:29 +00001998
1999 if (SE.getTypeSizeInBits(OldStride->getType()) !=
2000 SE.getTypeSizeInBits(NewStride->getType())) {
2001 if (SE.getTypeSizeInBits(OldStride->getType()) >
2002 SE.getTypeSizeInBits(NewStride->getType()))
2003 NewStride = SE.getSignExtendExpr(NewStride, OldStride->getType());
2004 else
2005 OldStride = SE.getSignExtendExpr(OldStride, NewStride->getType());
2006 }
2007 if (const SCEVConstant *Factor =
Dan Gohmanf09b7122010-02-19 19:35:48 +00002008 dyn_cast_or_null<SCEVConstant>(getExactSDiv(NewStride, OldStride,
2009 SE, true))) {
Dan Gohman572645c2010-02-12 10:34:29 +00002010 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2011 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2012 } else if (const SCEVConstant *Factor =
Dan Gohman454d26d2010-02-22 04:11:59 +00002013 dyn_cast_or_null<SCEVConstant>(getExactSDiv(OldStride,
2014 NewStride,
Dan Gohmanf09b7122010-02-19 19:35:48 +00002015 SE, true))) {
Dan Gohman572645c2010-02-12 10:34:29 +00002016 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2017 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2018 }
2019 }
Dan Gohman572645c2010-02-12 10:34:29 +00002020
2021 // If all uses use the same type, don't bother looking for truncation-based
2022 // reuse.
2023 if (Types.size() == 1)
2024 Types.clear();
2025
2026 DEBUG(print_factors_and_types(dbgs()));
2027}
2028
2029void LSRInstance::CollectFixupsAndInitialFormulae() {
2030 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) {
2031 // Record the uses.
2032 LSRFixup &LF = getNewFixup();
2033 LF.UserInst = UI->getUser();
2034 LF.OperandValToReplace = UI->getOperandValToReplace();
Dan Gohman448db1c2010-04-07 22:27:08 +00002035 LF.PostIncLoops = UI->getPostIncLoops();
Dan Gohman572645c2010-02-12 10:34:29 +00002036
2037 LSRUse::KindType Kind = LSRUse::Basic;
2038 const Type *AccessTy = 0;
2039 if (isAddressUse(LF.UserInst, LF.OperandValToReplace)) {
2040 Kind = LSRUse::Address;
2041 AccessTy = getAccessType(LF.UserInst);
2042 }
2043
Dan Gohmanc0564542010-04-19 21:48:58 +00002044 const SCEV *S = IU.getExpr(*UI);
Dan Gohman572645c2010-02-12 10:34:29 +00002045
2046 // Equality (== and !=) ICmps are special. We can rewrite (i == N) as
2047 // (N - i == 0), and this allows (N - i) to be the expression that we work
2048 // with rather than just N or i, so we can consider the register
2049 // requirements for both N and i at the same time. Limiting this code to
2050 // equality icmps is not a problem because all interesting loops use
2051 // equality icmps, thanks to IndVarSimplify.
2052 if (ICmpInst *CI = dyn_cast<ICmpInst>(LF.UserInst))
2053 if (CI->isEquality()) {
2054 // Swap the operands if needed to put the OperandValToReplace on the
2055 // left, for consistency.
2056 Value *NV = CI->getOperand(1);
2057 if (NV == LF.OperandValToReplace) {
2058 CI->setOperand(1, CI->getOperand(0));
2059 CI->setOperand(0, NV);
Dan Gohmanf182b232010-05-20 19:26:52 +00002060 NV = CI->getOperand(1);
Dan Gohman9da1bf42010-05-20 19:16:03 +00002061 Changed = true;
Dan Gohman572645c2010-02-12 10:34:29 +00002062 }
2063
2064 // x == y --> x - y == 0
2065 const SCEV *N = SE.getSCEV(NV);
Dan Gohman17ead4f2010-11-17 21:23:15 +00002066 if (SE.isLoopInvariant(N, L)) {
Dan Gohman572645c2010-02-12 10:34:29 +00002067 Kind = LSRUse::ICmpZero;
2068 S = SE.getMinusSCEV(N, S);
2069 }
2070
2071 // -1 and the negations of all interesting strides (except the negation
2072 // of -1) are now also interesting.
2073 for (size_t i = 0, e = Factors.size(); i != e; ++i)
2074 if (Factors[i] != -1)
2075 Factors.insert(-(uint64_t)Factors[i]);
2076 Factors.insert(-1);
2077 }
2078
2079 // Set up the initial formula for this use.
2080 std::pair<size_t, int64_t> P = getUse(S, Kind, AccessTy);
2081 LF.LUIdx = P.first;
2082 LF.Offset = P.second;
2083 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohman448db1c2010-04-07 22:27:08 +00002084 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohmana9db1292010-07-15 20:24:58 +00002085 if (!LU.WidestFixupType ||
2086 SE.getTypeSizeInBits(LU.WidestFixupType) <
2087 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
2088 LU.WidestFixupType = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00002089
2090 // If this is the first use of this LSRUse, give it a formula.
2091 if (LU.Formulae.empty()) {
Dan Gohman454d26d2010-02-22 04:11:59 +00002092 InsertInitialFormula(S, LU, LF.LUIdx);
Dan Gohman572645c2010-02-12 10:34:29 +00002093 CountRegisters(LU.Formulae.back(), LF.LUIdx);
2094 }
2095 }
2096
2097 DEBUG(print_fixups(dbgs()));
2098}
2099
Dan Gohman76c315a2010-05-20 20:52:00 +00002100/// InsertInitialFormula - Insert a formula for the given expression into
2101/// the given use, separating out loop-variant portions from loop-invariant
2102/// and loop-computable portions.
Dan Gohman572645c2010-02-12 10:34:29 +00002103void
Dan Gohman454d26d2010-02-22 04:11:59 +00002104LSRInstance::InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx) {
Dan Gohman572645c2010-02-12 10:34:29 +00002105 Formula F;
Dan Gohmandc0e8fb2010-11-17 21:41:58 +00002106 F.InitialMatch(S, L, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002107 bool Inserted = InsertFormula(LU, LUIdx, F);
2108 assert(Inserted && "Initial formula already exists!"); (void)Inserted;
2109}
2110
Dan Gohman76c315a2010-05-20 20:52:00 +00002111/// InsertSupplementalFormula - Insert a simple single-register formula for
2112/// the given expression into the given use.
Dan Gohman572645c2010-02-12 10:34:29 +00002113void
2114LSRInstance::InsertSupplementalFormula(const SCEV *S,
2115 LSRUse &LU, size_t LUIdx) {
2116 Formula F;
2117 F.BaseRegs.push_back(S);
2118 F.AM.HasBaseReg = true;
2119 bool Inserted = InsertFormula(LU, LUIdx, F);
2120 assert(Inserted && "Supplemental formula already exists!"); (void)Inserted;
2121}
2122
2123/// CountRegisters - Note which registers are used by the given formula,
2124/// updating RegUses.
2125void LSRInstance::CountRegisters(const Formula &F, size_t LUIdx) {
2126 if (F.ScaledReg)
2127 RegUses.CountRegister(F.ScaledReg, LUIdx);
2128 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
2129 E = F.BaseRegs.end(); I != E; ++I)
2130 RegUses.CountRegister(*I, LUIdx);
2131}
2132
2133/// InsertFormula - If the given formula has not yet been inserted, add it to
2134/// the list, and return true. Return false otherwise.
2135bool LSRInstance::InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F) {
Dan Gohman454d26d2010-02-22 04:11:59 +00002136 if (!LU.InsertFormula(F))
Dan Gohman572645c2010-02-12 10:34:29 +00002137 return false;
2138
2139 CountRegisters(F, LUIdx);
2140 return true;
2141}
2142
2143/// CollectLoopInvariantFixupsAndFormulae - Check for other uses of
2144/// loop-invariant values which we're tracking. These other uses will pin these
2145/// values in registers, making them less profitable for elimination.
2146/// TODO: This currently misses non-constant addrec step registers.
2147/// TODO: Should this give more weight to users inside the loop?
2148void
2149LSRInstance::CollectLoopInvariantFixupsAndFormulae() {
2150 SmallVector<const SCEV *, 8> Worklist(RegUses.begin(), RegUses.end());
2151 SmallPtrSet<const SCEV *, 8> Inserted;
2152
2153 while (!Worklist.empty()) {
2154 const SCEV *S = Worklist.pop_back_val();
2155
2156 if (const SCEVNAryExpr *N = dyn_cast<SCEVNAryExpr>(S))
Dan Gohman403a8cd2010-06-21 19:47:52 +00002157 Worklist.append(N->op_begin(), N->op_end());
Dan Gohman572645c2010-02-12 10:34:29 +00002158 else if (const SCEVCastExpr *C = dyn_cast<SCEVCastExpr>(S))
2159 Worklist.push_back(C->getOperand());
2160 else if (const SCEVUDivExpr *D = dyn_cast<SCEVUDivExpr>(S)) {
2161 Worklist.push_back(D->getLHS());
2162 Worklist.push_back(D->getRHS());
2163 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
2164 if (!Inserted.insert(U)) continue;
2165 const Value *V = U->getValue();
Dan Gohmana15ec5d2010-06-04 23:16:05 +00002166 if (const Instruction *Inst = dyn_cast<Instruction>(V)) {
2167 // Look for instructions defined outside the loop.
Dan Gohman572645c2010-02-12 10:34:29 +00002168 if (L->contains(Inst)) continue;
Dan Gohmana15ec5d2010-06-04 23:16:05 +00002169 } else if (isa<UndefValue>(V))
2170 // Undef doesn't have a live range, so it doesn't matter.
2171 continue;
Gabor Greif60ad7812010-03-25 23:06:16 +00002172 for (Value::const_use_iterator UI = V->use_begin(), UE = V->use_end();
Dan Gohman572645c2010-02-12 10:34:29 +00002173 UI != UE; ++UI) {
2174 const Instruction *UserInst = dyn_cast<Instruction>(*UI);
2175 // Ignore non-instructions.
2176 if (!UserInst)
Dan Gohman7979b722010-01-22 00:46:49 +00002177 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002178 // Ignore instructions in other functions (as can happen with
2179 // Constants).
2180 if (UserInst->getParent()->getParent() != L->getHeader()->getParent())
Dan Gohman7979b722010-01-22 00:46:49 +00002181 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002182 // Ignore instructions not dominated by the loop.
2183 const BasicBlock *UseBB = !isa<PHINode>(UserInst) ?
2184 UserInst->getParent() :
2185 cast<PHINode>(UserInst)->getIncomingBlock(
2186 PHINode::getIncomingValueNumForOperand(UI.getOperandNo()));
2187 if (!DT.dominates(L->getHeader(), UseBB))
2188 continue;
2189 // Ignore uses which are part of other SCEV expressions, to avoid
2190 // analyzing them multiple times.
Dan Gohman4a2a6832010-04-09 19:12:34 +00002191 if (SE.isSCEVable(UserInst->getType())) {
2192 const SCEV *UserS = SE.getSCEV(const_cast<Instruction *>(UserInst));
2193 // If the user is a no-op, look through to its uses.
2194 if (!isa<SCEVUnknown>(UserS))
2195 continue;
2196 if (UserS == U) {
2197 Worklist.push_back(
2198 SE.getUnknown(const_cast<Instruction *>(UserInst)));
2199 continue;
2200 }
2201 }
Dan Gohman572645c2010-02-12 10:34:29 +00002202 // Ignore icmp instructions which are already being analyzed.
2203 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UserInst)) {
2204 unsigned OtherIdx = !UI.getOperandNo();
2205 Value *OtherOp = const_cast<Value *>(ICI->getOperand(OtherIdx));
Dan Gohman17ead4f2010-11-17 21:23:15 +00002206 if (SE.hasComputableLoopEvolution(SE.getSCEV(OtherOp), L))
Dan Gohman572645c2010-02-12 10:34:29 +00002207 continue;
2208 }
2209
2210 LSRFixup &LF = getNewFixup();
2211 LF.UserInst = const_cast<Instruction *>(UserInst);
2212 LF.OperandValToReplace = UI.getUse();
2213 std::pair<size_t, int64_t> P = getUse(S, LSRUse::Basic, 0);
2214 LF.LUIdx = P.first;
2215 LF.Offset = P.second;
2216 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohman448db1c2010-04-07 22:27:08 +00002217 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohmana9db1292010-07-15 20:24:58 +00002218 if (!LU.WidestFixupType ||
2219 SE.getTypeSizeInBits(LU.WidestFixupType) <
2220 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
2221 LU.WidestFixupType = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00002222 InsertSupplementalFormula(U, LU, LF.LUIdx);
2223 CountRegisters(LU.Formulae.back(), Uses.size() - 1);
2224 break;
2225 }
2226 }
2227 }
2228}
2229
2230/// CollectSubexprs - Split S into subexpressions which can be pulled out into
2231/// separate registers. If C is non-null, multiply each subexpression by C.
2232static void CollectSubexprs(const SCEV *S, const SCEVConstant *C,
2233 SmallVectorImpl<const SCEV *> &Ops,
Dan Gohman3e3f15b2010-06-25 22:32:18 +00002234 const Loop *L,
Dan Gohman572645c2010-02-12 10:34:29 +00002235 ScalarEvolution &SE) {
2236 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
2237 // Break out add operands.
2238 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
2239 I != E; ++I)
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002240 CollectSubexprs(*I, C, Ops, L, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002241 return;
2242 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
2243 // Split a non-zero base out of an addrec.
2244 if (!AR->getStart()->isZero()) {
Dan Gohmandeff6212010-05-03 22:09:21 +00002245 CollectSubexprs(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
Dan Gohman572645c2010-02-12 10:34:29 +00002246 AR->getStepRecurrence(SE),
Andrew Trick3228cc22011-03-14 16:50:06 +00002247 AR->getLoop(),
2248 //FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
2249 SCEV::FlagAnyWrap),
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002250 C, Ops, L, SE);
2251 CollectSubexprs(AR->getStart(), C, Ops, L, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002252 return;
2253 }
2254 } else if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
2255 // Break (C * (a + b + c)) into C*a + C*b + C*c.
2256 if (Mul->getNumOperands() == 2)
2257 if (const SCEVConstant *Op0 =
2258 dyn_cast<SCEVConstant>(Mul->getOperand(0))) {
2259 CollectSubexprs(Mul->getOperand(1),
2260 C ? cast<SCEVConstant>(SE.getMulExpr(C, Op0)) : Op0,
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002261 Ops, L, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002262 return;
2263 }
2264 }
2265
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002266 // Otherwise use the value itself, optionally with a scale applied.
2267 Ops.push_back(C ? SE.getMulExpr(C, S) : S);
Dan Gohman572645c2010-02-12 10:34:29 +00002268}
2269
2270/// GenerateReassociations - Split out subexpressions from adds and the bases of
2271/// addrecs.
2272void LSRInstance::GenerateReassociations(LSRUse &LU, unsigned LUIdx,
2273 Formula Base,
2274 unsigned Depth) {
2275 // Arbitrarily cap recursion to protect compile time.
2276 if (Depth >= 3) return;
2277
2278 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
2279 const SCEV *BaseReg = Base.BaseRegs[i];
2280
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002281 SmallVector<const SCEV *, 8> AddOps;
2282 CollectSubexprs(BaseReg, 0, AddOps, L, SE);
Dan Gohman3e3f15b2010-06-25 22:32:18 +00002283
Dan Gohman572645c2010-02-12 10:34:29 +00002284 if (AddOps.size() == 1) continue;
2285
2286 for (SmallVectorImpl<const SCEV *>::const_iterator J = AddOps.begin(),
2287 JE = AddOps.end(); J != JE; ++J) {
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002288
2289 // Loop-variant "unknown" values are uninteresting; we won't be able to
2290 // do anything meaningful with them.
Dan Gohman17ead4f2010-11-17 21:23:15 +00002291 if (isa<SCEVUnknown>(*J) && !SE.isLoopInvariant(*J, L))
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002292 continue;
2293
Dan Gohman572645c2010-02-12 10:34:29 +00002294 // Don't pull a constant into a register if the constant could be folded
2295 // into an immediate field.
2296 if (isAlwaysFoldable(*J, LU.MinOffset, LU.MaxOffset,
2297 Base.getNumRegs() > 1,
2298 LU.Kind, LU.AccessTy, TLI, SE))
2299 continue;
2300
2301 // Collect all operands except *J.
Dan Gohman403a8cd2010-06-21 19:47:52 +00002302 SmallVector<const SCEV *, 8> InnerAddOps
Dan Gohman4eaee282010-08-04 17:43:57 +00002303 (((const SmallVector<const SCEV *, 8> &)AddOps).begin(), J);
Dan Gohman403a8cd2010-06-21 19:47:52 +00002304 InnerAddOps.append
Oscar Fuentesee56c422010-08-02 06:00:15 +00002305 (llvm::next(J), ((const SmallVector<const SCEV *, 8> &)AddOps).end());
Dan Gohman572645c2010-02-12 10:34:29 +00002306
2307 // Don't leave just a constant behind in a register if the constant could
2308 // be folded into an immediate field.
2309 if (InnerAddOps.size() == 1 &&
2310 isAlwaysFoldable(InnerAddOps[0], LU.MinOffset, LU.MaxOffset,
2311 Base.getNumRegs() > 1,
2312 LU.Kind, LU.AccessTy, TLI, SE))
2313 continue;
2314
Dan Gohmanfafb8902010-04-23 01:55:05 +00002315 const SCEV *InnerSum = SE.getAddExpr(InnerAddOps);
2316 if (InnerSum->isZero())
2317 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002318 Formula F = Base;
Dan Gohmanfafb8902010-04-23 01:55:05 +00002319 F.BaseRegs[i] = InnerSum;
Dan Gohman572645c2010-02-12 10:34:29 +00002320 F.BaseRegs.push_back(*J);
2321 if (InsertFormula(LU, LUIdx, F))
2322 // If that formula hadn't been seen before, recurse to find more like
2323 // it.
2324 GenerateReassociations(LU, LUIdx, LU.Formulae.back(), Depth+1);
2325 }
2326 }
2327}
2328
2329/// GenerateCombinations - Generate a formula consisting of all of the
2330/// loop-dominating registers added into a single register.
2331void LSRInstance::GenerateCombinations(LSRUse &LU, unsigned LUIdx,
Dan Gohman441a3892010-02-14 18:51:39 +00002332 Formula Base) {
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002333 // This method is only interesting on a plurality of registers.
Dan Gohman572645c2010-02-12 10:34:29 +00002334 if (Base.BaseRegs.size() <= 1) return;
2335
2336 Formula F = Base;
2337 F.BaseRegs.clear();
2338 SmallVector<const SCEV *, 4> Ops;
2339 for (SmallVectorImpl<const SCEV *>::const_iterator
2340 I = Base.BaseRegs.begin(), E = Base.BaseRegs.end(); I != E; ++I) {
2341 const SCEV *BaseReg = *I;
Dan Gohmandc0e8fb2010-11-17 21:41:58 +00002342 if (SE.properlyDominates(BaseReg, L->getHeader()) &&
Dan Gohman17ead4f2010-11-17 21:23:15 +00002343 !SE.hasComputableLoopEvolution(BaseReg, L))
Dan Gohman572645c2010-02-12 10:34:29 +00002344 Ops.push_back(BaseReg);
2345 else
2346 F.BaseRegs.push_back(BaseReg);
2347 }
2348 if (Ops.size() > 1) {
Dan Gohmance947362010-02-14 18:50:49 +00002349 const SCEV *Sum = SE.getAddExpr(Ops);
2350 // TODO: If Sum is zero, it probably means ScalarEvolution missed an
2351 // opportunity to fold something. For now, just ignore such cases
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002352 // rather than proceed with zero in a register.
Dan Gohmance947362010-02-14 18:50:49 +00002353 if (!Sum->isZero()) {
2354 F.BaseRegs.push_back(Sum);
2355 (void)InsertFormula(LU, LUIdx, F);
2356 }
Dan Gohman572645c2010-02-12 10:34:29 +00002357 }
2358}
2359
2360/// GenerateSymbolicOffsets - Generate reuse formulae using symbolic offsets.
2361void LSRInstance::GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx,
2362 Formula Base) {
2363 // We can't add a symbolic offset if the address already contains one.
2364 if (Base.AM.BaseGV) return;
2365
2366 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
2367 const SCEV *G = Base.BaseRegs[i];
2368 GlobalValue *GV = ExtractSymbol(G, SE);
2369 if (G->isZero() || !GV)
2370 continue;
2371 Formula F = Base;
2372 F.AM.BaseGV = GV;
2373 if (!isLegalUse(F.AM, LU.MinOffset, LU.MaxOffset,
2374 LU.Kind, LU.AccessTy, TLI))
2375 continue;
2376 F.BaseRegs[i] = G;
2377 (void)InsertFormula(LU, LUIdx, F);
2378 }
2379}
2380
2381/// GenerateConstantOffsets - Generate reuse formulae using symbolic offsets.
2382void LSRInstance::GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx,
2383 Formula Base) {
2384 // TODO: For now, just add the min and max offset, because it usually isn't
2385 // worthwhile looking at everything inbetween.
Dan Gohmanc88c1a42010-07-15 15:14:45 +00002386 SmallVector<int64_t, 2> Worklist;
Dan Gohman572645c2010-02-12 10:34:29 +00002387 Worklist.push_back(LU.MinOffset);
2388 if (LU.MaxOffset != LU.MinOffset)
2389 Worklist.push_back(LU.MaxOffset);
2390
2391 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
2392 const SCEV *G = Base.BaseRegs[i];
2393
2394 for (SmallVectorImpl<int64_t>::const_iterator I = Worklist.begin(),
2395 E = Worklist.end(); I != E; ++I) {
2396 Formula F = Base;
2397 F.AM.BaseOffs = (uint64_t)Base.AM.BaseOffs - *I;
2398 if (isLegalUse(F.AM, LU.MinOffset - *I, LU.MaxOffset - *I,
2399 LU.Kind, LU.AccessTy, TLI)) {
Dan Gohmanc88c1a42010-07-15 15:14:45 +00002400 // Add the offset to the base register.
Dan Gohman4065f602010-08-16 15:39:27 +00002401 const SCEV *NewG = SE.getAddExpr(SE.getConstant(G->getType(), *I), G);
Dan Gohmanc88c1a42010-07-15 15:14:45 +00002402 // If it cancelled out, drop the base register, otherwise update it.
2403 if (NewG->isZero()) {
2404 std::swap(F.BaseRegs[i], F.BaseRegs.back());
2405 F.BaseRegs.pop_back();
2406 } else
2407 F.BaseRegs[i] = NewG;
Dan Gohman572645c2010-02-12 10:34:29 +00002408
2409 (void)InsertFormula(LU, LUIdx, F);
2410 }
2411 }
2412
2413 int64_t Imm = ExtractImmediate(G, SE);
2414 if (G->isZero() || Imm == 0)
2415 continue;
2416 Formula F = Base;
2417 F.AM.BaseOffs = (uint64_t)F.AM.BaseOffs + Imm;
2418 if (!isLegalUse(F.AM, LU.MinOffset, LU.MaxOffset,
2419 LU.Kind, LU.AccessTy, TLI))
2420 continue;
2421 F.BaseRegs[i] = G;
2422 (void)InsertFormula(LU, LUIdx, F);
2423 }
2424}
2425
2426/// GenerateICmpZeroScales - For ICmpZero, check to see if we can scale up
2427/// the comparison. For example, x == y -> x*c == y*c.
2428void LSRInstance::GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx,
2429 Formula Base) {
2430 if (LU.Kind != LSRUse::ICmpZero) return;
2431
2432 // Determine the integer type for the base formula.
2433 const Type *IntTy = Base.getType();
2434 if (!IntTy) return;
2435 if (SE.getTypeSizeInBits(IntTy) > 64) return;
2436
2437 // Don't do this if there is more than one offset.
2438 if (LU.MinOffset != LU.MaxOffset) return;
2439
2440 assert(!Base.AM.BaseGV && "ICmpZero use is not legal!");
2441
2442 // Check each interesting stride.
2443 for (SmallSetVector<int64_t, 8>::const_iterator
2444 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
2445 int64_t Factor = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00002446
2447 // Check that the multiplication doesn't overflow.
Dan Gohman2ea09e02010-06-24 16:57:52 +00002448 if (Base.AM.BaseOffs == INT64_MIN && Factor == -1)
Dan Gohman968cb932010-02-17 00:41:53 +00002449 continue;
Dan Gohman2ea09e02010-06-24 16:57:52 +00002450 int64_t NewBaseOffs = (uint64_t)Base.AM.BaseOffs * Factor;
2451 if (NewBaseOffs / Factor != Base.AM.BaseOffs)
Dan Gohman572645c2010-02-12 10:34:29 +00002452 continue;
2453
2454 // Check that multiplying with the use offset doesn't overflow.
2455 int64_t Offset = LU.MinOffset;
Dan Gohman968cb932010-02-17 00:41:53 +00002456 if (Offset == INT64_MIN && Factor == -1)
2457 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002458 Offset = (uint64_t)Offset * Factor;
Dan Gohman378c0b32010-02-17 00:42:19 +00002459 if (Offset / Factor != LU.MinOffset)
Dan Gohman572645c2010-02-12 10:34:29 +00002460 continue;
2461
Dan Gohman2ea09e02010-06-24 16:57:52 +00002462 Formula F = Base;
2463 F.AM.BaseOffs = NewBaseOffs;
2464
Dan Gohman572645c2010-02-12 10:34:29 +00002465 // Check that this scale is legal.
2466 if (!isLegalUse(F.AM, Offset, Offset, LU.Kind, LU.AccessTy, TLI))
2467 continue;
2468
2469 // Compensate for the use having MinOffset built into it.
2470 F.AM.BaseOffs = (uint64_t)F.AM.BaseOffs + Offset - LU.MinOffset;
2471
Dan Gohmandeff6212010-05-03 22:09:21 +00002472 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman572645c2010-02-12 10:34:29 +00002473
2474 // Check that multiplying with each base register doesn't overflow.
2475 for (size_t i = 0, e = F.BaseRegs.size(); i != e; ++i) {
2476 F.BaseRegs[i] = SE.getMulExpr(F.BaseRegs[i], FactorS);
Dan Gohmanf09b7122010-02-19 19:35:48 +00002477 if (getExactSDiv(F.BaseRegs[i], FactorS, SE) != Base.BaseRegs[i])
Dan Gohman572645c2010-02-12 10:34:29 +00002478 goto next;
2479 }
2480
2481 // Check that multiplying with the scaled register doesn't overflow.
2482 if (F.ScaledReg) {
2483 F.ScaledReg = SE.getMulExpr(F.ScaledReg, FactorS);
Dan Gohmanf09b7122010-02-19 19:35:48 +00002484 if (getExactSDiv(F.ScaledReg, FactorS, SE) != Base.ScaledReg)
Dan Gohman572645c2010-02-12 10:34:29 +00002485 continue;
2486 }
2487
2488 // If we make it here and it's legal, add it.
2489 (void)InsertFormula(LU, LUIdx, F);
2490 next:;
2491 }
2492}
2493
2494/// GenerateScales - Generate stride factor reuse formulae by making use of
2495/// scaled-offset address modes, for example.
Dan Gohmanea507f52010-05-20 19:44:23 +00002496void LSRInstance::GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman572645c2010-02-12 10:34:29 +00002497 // Determine the integer type for the base formula.
2498 const Type *IntTy = Base.getType();
2499 if (!IntTy) return;
2500
2501 // If this Formula already has a scaled register, we can't add another one.
2502 if (Base.AM.Scale != 0) return;
2503
2504 // Check each interesting stride.
2505 for (SmallSetVector<int64_t, 8>::const_iterator
2506 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
2507 int64_t Factor = *I;
2508
2509 Base.AM.Scale = Factor;
2510 Base.AM.HasBaseReg = Base.BaseRegs.size() > 1;
2511 // Check whether this scale is going to be legal.
2512 if (!isLegalUse(Base.AM, LU.MinOffset, LU.MaxOffset,
2513 LU.Kind, LU.AccessTy, TLI)) {
2514 // As a special-case, handle special out-of-loop Basic users specially.
2515 // TODO: Reconsider this special case.
2516 if (LU.Kind == LSRUse::Basic &&
2517 isLegalUse(Base.AM, LU.MinOffset, LU.MaxOffset,
2518 LSRUse::Special, LU.AccessTy, TLI) &&
2519 LU.AllFixupsOutsideLoop)
2520 LU.Kind = LSRUse::Special;
2521 else
2522 continue;
2523 }
2524 // For an ICmpZero, negating a solitary base register won't lead to
2525 // new solutions.
2526 if (LU.Kind == LSRUse::ICmpZero &&
2527 !Base.AM.HasBaseReg && Base.AM.BaseOffs == 0 && !Base.AM.BaseGV)
2528 continue;
2529 // For each addrec base reg, apply the scale, if possible.
2530 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
2531 if (const SCEVAddRecExpr *AR =
2532 dyn_cast<SCEVAddRecExpr>(Base.BaseRegs[i])) {
Dan Gohmandeff6212010-05-03 22:09:21 +00002533 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman572645c2010-02-12 10:34:29 +00002534 if (FactorS->isZero())
2535 continue;
2536 // Divide out the factor, ignoring high bits, since we'll be
2537 // scaling the value back up in the end.
Dan Gohmanf09b7122010-02-19 19:35:48 +00002538 if (const SCEV *Quotient = getExactSDiv(AR, FactorS, SE, true)) {
Dan Gohman572645c2010-02-12 10:34:29 +00002539 // TODO: This could be optimized to avoid all the copying.
2540 Formula F = Base;
2541 F.ScaledReg = Quotient;
Dan Gohman5ce6d052010-05-20 15:17:54 +00002542 F.DeleteBaseReg(F.BaseRegs[i]);
Dan Gohman572645c2010-02-12 10:34:29 +00002543 (void)InsertFormula(LU, LUIdx, F);
2544 }
2545 }
2546 }
2547}
2548
2549/// GenerateTruncates - Generate reuse formulae from different IV types.
Dan Gohmanea507f52010-05-20 19:44:23 +00002550void LSRInstance::GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman572645c2010-02-12 10:34:29 +00002551 // This requires TargetLowering to tell us which truncates are free.
2552 if (!TLI) return;
2553
2554 // Don't bother truncating symbolic values.
2555 if (Base.AM.BaseGV) return;
2556
2557 // Determine the integer type for the base formula.
2558 const Type *DstTy = Base.getType();
2559 if (!DstTy) return;
2560 DstTy = SE.getEffectiveSCEVType(DstTy);
2561
2562 for (SmallSetVector<const Type *, 4>::const_iterator
2563 I = Types.begin(), E = Types.end(); I != E; ++I) {
2564 const Type *SrcTy = *I;
2565 if (SrcTy != DstTy && TLI->isTruncateFree(SrcTy, DstTy)) {
2566 Formula F = Base;
2567
2568 if (F.ScaledReg) F.ScaledReg = SE.getAnyExtendExpr(F.ScaledReg, *I);
2569 for (SmallVectorImpl<const SCEV *>::iterator J = F.BaseRegs.begin(),
2570 JE = F.BaseRegs.end(); J != JE; ++J)
2571 *J = SE.getAnyExtendExpr(*J, SrcTy);
2572
2573 // TODO: This assumes we've done basic processing on all uses and
2574 // have an idea what the register usage is.
2575 if (!F.hasRegsUsedByUsesOtherThan(LUIdx, RegUses))
2576 continue;
2577
2578 (void)InsertFormula(LU, LUIdx, F);
2579 }
2580 }
2581}
2582
2583namespace {
2584
Dan Gohman6020d852010-02-14 18:51:20 +00002585/// WorkItem - Helper class for GenerateCrossUseConstantOffsets. It's used to
Dan Gohman572645c2010-02-12 10:34:29 +00002586/// defer modifications so that the search phase doesn't have to worry about
2587/// the data structures moving underneath it.
2588struct WorkItem {
2589 size_t LUIdx;
2590 int64_t Imm;
2591 const SCEV *OrigReg;
2592
2593 WorkItem(size_t LI, int64_t I, const SCEV *R)
2594 : LUIdx(LI), Imm(I), OrigReg(R) {}
2595
2596 void print(raw_ostream &OS) const;
2597 void dump() const;
2598};
2599
2600}
2601
2602void WorkItem::print(raw_ostream &OS) const {
2603 OS << "in formulae referencing " << *OrigReg << " in use " << LUIdx
2604 << " , add offset " << Imm;
2605}
2606
2607void WorkItem::dump() const {
2608 print(errs()); errs() << '\n';
2609}
2610
2611/// GenerateCrossUseConstantOffsets - Look for registers which are a constant
2612/// distance apart and try to form reuse opportunities between them.
2613void LSRInstance::GenerateCrossUseConstantOffsets() {
2614 // Group the registers by their value without any added constant offset.
2615 typedef std::map<int64_t, const SCEV *> ImmMapTy;
2616 typedef DenseMap<const SCEV *, ImmMapTy> RegMapTy;
2617 RegMapTy Map;
2618 DenseMap<const SCEV *, SmallBitVector> UsedByIndicesMap;
2619 SmallVector<const SCEV *, 8> Sequence;
2620 for (RegUseTracker::const_iterator I = RegUses.begin(), E = RegUses.end();
2621 I != E; ++I) {
2622 const SCEV *Reg = *I;
2623 int64_t Imm = ExtractImmediate(Reg, SE);
2624 std::pair<RegMapTy::iterator, bool> Pair =
2625 Map.insert(std::make_pair(Reg, ImmMapTy()));
2626 if (Pair.second)
2627 Sequence.push_back(Reg);
2628 Pair.first->second.insert(std::make_pair(Imm, *I));
2629 UsedByIndicesMap[Reg] |= RegUses.getUsedByIndices(*I);
2630 }
2631
2632 // Now examine each set of registers with the same base value. Build up
2633 // a list of work to do and do the work in a separate step so that we're
2634 // not adding formulae and register counts while we're searching.
Dan Gohman191bd642010-09-01 01:45:53 +00002635 SmallVector<WorkItem, 32> WorkItems;
2636 SmallSet<std::pair<size_t, int64_t>, 32> UniqueItems;
Dan Gohman572645c2010-02-12 10:34:29 +00002637 for (SmallVectorImpl<const SCEV *>::const_iterator I = Sequence.begin(),
2638 E = Sequence.end(); I != E; ++I) {
2639 const SCEV *Reg = *I;
2640 const ImmMapTy &Imms = Map.find(Reg)->second;
2641
Dan Gohmancd045c02010-02-12 19:20:37 +00002642 // It's not worthwhile looking for reuse if there's only one offset.
2643 if (Imms.size() == 1)
2644 continue;
2645
Dan Gohman572645c2010-02-12 10:34:29 +00002646 DEBUG(dbgs() << "Generating cross-use offsets for " << *Reg << ':';
2647 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
2648 J != JE; ++J)
2649 dbgs() << ' ' << J->first;
2650 dbgs() << '\n');
2651
2652 // Examine each offset.
2653 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
2654 J != JE; ++J) {
2655 const SCEV *OrigReg = J->second;
2656
2657 int64_t JImm = J->first;
2658 const SmallBitVector &UsedByIndices = RegUses.getUsedByIndices(OrigReg);
2659
2660 if (!isa<SCEVConstant>(OrigReg) &&
2661 UsedByIndicesMap[Reg].count() == 1) {
2662 DEBUG(dbgs() << "Skipping cross-use reuse for " << *OrigReg << '\n');
2663 continue;
2664 }
2665
2666 // Conservatively examine offsets between this orig reg a few selected
2667 // other orig regs.
2668 ImmMapTy::const_iterator OtherImms[] = {
2669 Imms.begin(), prior(Imms.end()),
2670 Imms.upper_bound((Imms.begin()->first + prior(Imms.end())->first) / 2)
2671 };
2672 for (size_t i = 0, e = array_lengthof(OtherImms); i != e; ++i) {
2673 ImmMapTy::const_iterator M = OtherImms[i];
Dan Gohmancd045c02010-02-12 19:20:37 +00002674 if (M == J || M == JE) continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002675
2676 // Compute the difference between the two.
2677 int64_t Imm = (uint64_t)JImm - M->first;
2678 for (int LUIdx = UsedByIndices.find_first(); LUIdx != -1;
Dan Gohman191bd642010-09-01 01:45:53 +00002679 LUIdx = UsedByIndices.find_next(LUIdx))
Dan Gohman572645c2010-02-12 10:34:29 +00002680 // Make a memo of this use, offset, and register tuple.
Dan Gohman191bd642010-09-01 01:45:53 +00002681 if (UniqueItems.insert(std::make_pair(LUIdx, Imm)))
2682 WorkItems.push_back(WorkItem(LUIdx, Imm, OrigReg));
Evan Cheng586f69a2009-11-12 07:35:05 +00002683 }
2684 }
2685 }
2686
Dan Gohman572645c2010-02-12 10:34:29 +00002687 Map.clear();
2688 Sequence.clear();
2689 UsedByIndicesMap.clear();
Dan Gohman191bd642010-09-01 01:45:53 +00002690 UniqueItems.clear();
Dan Gohman572645c2010-02-12 10:34:29 +00002691
2692 // Now iterate through the worklist and add new formulae.
2693 for (SmallVectorImpl<WorkItem>::const_iterator I = WorkItems.begin(),
2694 E = WorkItems.end(); I != E; ++I) {
2695 const WorkItem &WI = *I;
2696 size_t LUIdx = WI.LUIdx;
2697 LSRUse &LU = Uses[LUIdx];
2698 int64_t Imm = WI.Imm;
2699 const SCEV *OrigReg = WI.OrigReg;
2700
2701 const Type *IntTy = SE.getEffectiveSCEVType(OrigReg->getType());
2702 const SCEV *NegImmS = SE.getSCEV(ConstantInt::get(IntTy, -(uint64_t)Imm));
2703 unsigned BitWidth = SE.getTypeSizeInBits(IntTy);
2704
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002705 // TODO: Use a more targeted data structure.
Dan Gohman572645c2010-02-12 10:34:29 +00002706 for (size_t L = 0, LE = LU.Formulae.size(); L != LE; ++L) {
Dan Gohman9f383eb2010-05-20 22:25:20 +00002707 const Formula &F = LU.Formulae[L];
Dan Gohman572645c2010-02-12 10:34:29 +00002708 // Use the immediate in the scaled register.
2709 if (F.ScaledReg == OrigReg) {
2710 int64_t Offs = (uint64_t)F.AM.BaseOffs +
2711 Imm * (uint64_t)F.AM.Scale;
2712 // Don't create 50 + reg(-50).
2713 if (F.referencesReg(SE.getSCEV(
2714 ConstantInt::get(IntTy, -(uint64_t)Offs))))
2715 continue;
2716 Formula NewF = F;
2717 NewF.AM.BaseOffs = Offs;
2718 if (!isLegalUse(NewF.AM, LU.MinOffset, LU.MaxOffset,
2719 LU.Kind, LU.AccessTy, TLI))
2720 continue;
2721 NewF.ScaledReg = SE.getAddExpr(NegImmS, NewF.ScaledReg);
2722
2723 // If the new scale is a constant in a register, and adding the constant
2724 // value to the immediate would produce a value closer to zero than the
2725 // immediate itself, then the formula isn't worthwhile.
2726 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewF.ScaledReg))
2727 if (C->getValue()->getValue().isNegative() !=
2728 (NewF.AM.BaseOffs < 0) &&
2729 (C->getValue()->getValue().abs() * APInt(BitWidth, F.AM.Scale))
Dan Gohmane0567812010-04-08 23:03:40 +00002730 .ule(abs64(NewF.AM.BaseOffs)))
Dan Gohman572645c2010-02-12 10:34:29 +00002731 continue;
2732
2733 // OK, looks good.
2734 (void)InsertFormula(LU, LUIdx, NewF);
2735 } else {
2736 // Use the immediate in a base register.
2737 for (size_t N = 0, NE = F.BaseRegs.size(); N != NE; ++N) {
2738 const SCEV *BaseReg = F.BaseRegs[N];
2739 if (BaseReg != OrigReg)
2740 continue;
2741 Formula NewF = F;
2742 NewF.AM.BaseOffs = (uint64_t)NewF.AM.BaseOffs + Imm;
2743 if (!isLegalUse(NewF.AM, LU.MinOffset, LU.MaxOffset,
2744 LU.Kind, LU.AccessTy, TLI))
2745 continue;
2746 NewF.BaseRegs[N] = SE.getAddExpr(NegImmS, BaseReg);
2747
2748 // If the new formula has a constant in a register, and adding the
2749 // constant value to the immediate would produce a value closer to
2750 // zero than the immediate itself, then the formula isn't worthwhile.
2751 for (SmallVectorImpl<const SCEV *>::const_iterator
2752 J = NewF.BaseRegs.begin(), JE = NewF.BaseRegs.end();
2753 J != JE; ++J)
2754 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*J))
Dan Gohman360026f2010-05-18 23:48:08 +00002755 if ((C->getValue()->getValue() + NewF.AM.BaseOffs).abs().slt(
2756 abs64(NewF.AM.BaseOffs)) &&
2757 (C->getValue()->getValue() +
2758 NewF.AM.BaseOffs).countTrailingZeros() >=
2759 CountTrailingZeros_64(NewF.AM.BaseOffs))
Dan Gohman572645c2010-02-12 10:34:29 +00002760 goto skip_formula;
2761
2762 // Ok, looks good.
2763 (void)InsertFormula(LU, LUIdx, NewF);
2764 break;
2765 skip_formula:;
2766 }
2767 }
2768 }
2769 }
Dale Johannesenc1acc3f2009-05-11 17:15:42 +00002770}
2771
Dan Gohman572645c2010-02-12 10:34:29 +00002772/// GenerateAllReuseFormulae - Generate formulae for each use.
2773void
2774LSRInstance::GenerateAllReuseFormulae() {
Dan Gohmanc2385a02010-02-16 01:42:53 +00002775 // This is split into multiple loops so that hasRegsUsedByUsesOtherThan
Dan Gohman572645c2010-02-12 10:34:29 +00002776 // queries are more precise.
2777 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2778 LSRUse &LU = Uses[LUIdx];
2779 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2780 GenerateReassociations(LU, LUIdx, LU.Formulae[i]);
2781 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2782 GenerateCombinations(LU, LUIdx, LU.Formulae[i]);
2783 }
2784 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2785 LSRUse &LU = Uses[LUIdx];
2786 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2787 GenerateSymbolicOffsets(LU, LUIdx, LU.Formulae[i]);
2788 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2789 GenerateConstantOffsets(LU, LUIdx, LU.Formulae[i]);
2790 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2791 GenerateICmpZeroScales(LU, LUIdx, LU.Formulae[i]);
2792 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2793 GenerateScales(LU, LUIdx, LU.Formulae[i]);
Dan Gohmanc2385a02010-02-16 01:42:53 +00002794 }
2795 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2796 LSRUse &LU = Uses[LUIdx];
Dan Gohman572645c2010-02-12 10:34:29 +00002797 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2798 GenerateTruncates(LU, LUIdx, LU.Formulae[i]);
2799 }
2800
2801 GenerateCrossUseConstantOffsets();
Dan Gohman3902f9f2010-08-29 15:21:38 +00002802
2803 DEBUG(dbgs() << "\n"
2804 "After generating reuse formulae:\n";
2805 print_uses(dbgs()));
Dan Gohman572645c2010-02-12 10:34:29 +00002806}
2807
Dan Gohmanf63d70f2010-10-07 23:43:09 +00002808/// If there are multiple formulae with the same set of registers used
Dan Gohman572645c2010-02-12 10:34:29 +00002809/// by other uses, pick the best one and delete the others.
2810void LSRInstance::FilterOutUndesirableDedicatedRegisters() {
Dan Gohmanfc7744b2010-10-07 23:52:18 +00002811 DenseSet<const SCEV *> VisitedRegs;
2812 SmallPtrSet<const SCEV *, 16> Regs;
Dan Gohman572645c2010-02-12 10:34:29 +00002813#ifndef NDEBUG
Dan Gohmanc6519f92010-05-20 20:05:31 +00002814 bool ChangedFormulae = false;
Dan Gohman572645c2010-02-12 10:34:29 +00002815#endif
2816
2817 // Collect the best formula for each unique set of shared registers. This
2818 // is reset for each use.
2819 typedef DenseMap<SmallVector<const SCEV *, 2>, size_t, UniquifierDenseMapInfo>
2820 BestFormulaeTy;
2821 BestFormulaeTy BestFormulae;
2822
2823 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2824 LSRUse &LU = Uses[LUIdx];
Dan Gohmanea507f52010-05-20 19:44:23 +00002825 DEBUG(dbgs() << "Filtering for use "; LU.print(dbgs()); dbgs() << '\n');
Dan Gohman572645c2010-02-12 10:34:29 +00002826
Dan Gohmanb2df4332010-05-18 23:42:37 +00002827 bool Any = false;
Dan Gohman572645c2010-02-12 10:34:29 +00002828 for (size_t FIdx = 0, NumForms = LU.Formulae.size();
2829 FIdx != NumForms; ++FIdx) {
2830 Formula &F = LU.Formulae[FIdx];
2831
2832 SmallVector<const SCEV *, 2> Key;
2833 for (SmallVectorImpl<const SCEV *>::const_iterator J = F.BaseRegs.begin(),
2834 JE = F.BaseRegs.end(); J != JE; ++J) {
2835 const SCEV *Reg = *J;
2836 if (RegUses.isRegUsedByUsesOtherThan(Reg, LUIdx))
2837 Key.push_back(Reg);
2838 }
2839 if (F.ScaledReg &&
2840 RegUses.isRegUsedByUsesOtherThan(F.ScaledReg, LUIdx))
2841 Key.push_back(F.ScaledReg);
2842 // Unstable sort by host order ok, because this is only used for
2843 // uniquifying.
2844 std::sort(Key.begin(), Key.end());
2845
2846 std::pair<BestFormulaeTy::const_iterator, bool> P =
2847 BestFormulae.insert(std::make_pair(Key, FIdx));
2848 if (!P.second) {
2849 Formula &Best = LU.Formulae[P.first->second];
Dan Gohmanfc7744b2010-10-07 23:52:18 +00002850
2851 Cost CostF;
2852 CostF.RateFormula(F, Regs, VisitedRegs, L, LU.Offsets, SE, DT);
2853 Regs.clear();
2854 Cost CostBest;
2855 CostBest.RateFormula(Best, Regs, VisitedRegs, L, LU.Offsets, SE, DT);
2856 Regs.clear();
2857 if (CostF < CostBest)
Dan Gohman572645c2010-02-12 10:34:29 +00002858 std::swap(F, Best);
Dan Gohman6458ff92010-05-18 22:37:37 +00002859 DEBUG(dbgs() << " Filtering out formula "; F.print(dbgs());
Dan Gohman572645c2010-02-12 10:34:29 +00002860 dbgs() << "\n"
Dan Gohman6458ff92010-05-18 22:37:37 +00002861 " in favor of formula "; Best.print(dbgs());
Dan Gohman572645c2010-02-12 10:34:29 +00002862 dbgs() << '\n');
2863#ifndef NDEBUG
Dan Gohmanc6519f92010-05-20 20:05:31 +00002864 ChangedFormulae = true;
Dan Gohman572645c2010-02-12 10:34:29 +00002865#endif
Dan Gohmand69d6282010-05-18 22:39:15 +00002866 LU.DeleteFormula(F);
Dan Gohman572645c2010-02-12 10:34:29 +00002867 --FIdx;
2868 --NumForms;
Dan Gohmanb2df4332010-05-18 23:42:37 +00002869 Any = true;
Dan Gohman572645c2010-02-12 10:34:29 +00002870 continue;
2871 }
Dan Gohman59dc6032010-05-07 23:36:59 +00002872 }
2873
Dan Gohman57aaa0b2010-05-18 23:55:57 +00002874 // Now that we've filtered out some formulae, recompute the Regs set.
Dan Gohmanb2df4332010-05-18 23:42:37 +00002875 if (Any)
2876 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman59dc6032010-05-07 23:36:59 +00002877
2878 // Reset this to prepare for the next use.
Dan Gohman572645c2010-02-12 10:34:29 +00002879 BestFormulae.clear();
2880 }
2881
Dan Gohmanc6519f92010-05-20 20:05:31 +00002882 DEBUG(if (ChangedFormulae) {
Dan Gohman9214b822010-02-13 02:06:02 +00002883 dbgs() << "\n"
2884 "After filtering out undesirable candidates:\n";
Dan Gohman572645c2010-02-12 10:34:29 +00002885 print_uses(dbgs());
2886 });
2887}
2888
Dan Gohmand079c302010-05-18 22:51:59 +00002889// This is a rough guess that seems to work fairly well.
2890static const size_t ComplexityLimit = UINT16_MAX;
2891
2892/// EstimateSearchSpaceComplexity - Estimate the worst-case number of
2893/// solutions the solver might have to consider. It almost never considers
2894/// this many solutions because it prune the search space, but the pruning
2895/// isn't always sufficient.
2896size_t LSRInstance::EstimateSearchSpaceComplexity() const {
Dan Gohman0d6715a2010-10-07 23:37:58 +00002897 size_t Power = 1;
Dan Gohmand079c302010-05-18 22:51:59 +00002898 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
2899 E = Uses.end(); I != E; ++I) {
2900 size_t FSize = I->Formulae.size();
2901 if (FSize >= ComplexityLimit) {
2902 Power = ComplexityLimit;
2903 break;
2904 }
2905 Power *= FSize;
2906 if (Power >= ComplexityLimit)
2907 break;
2908 }
2909 return Power;
2910}
2911
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00002912/// NarrowSearchSpaceByDetectingSupersets - When one formula uses a superset
2913/// of the registers of another formula, it won't help reduce register
2914/// pressure (though it may not necessarily hurt register pressure); remove
2915/// it to simplify the system.
2916void LSRInstance::NarrowSearchSpaceByDetectingSupersets() {
Dan Gohmana2086b32010-05-19 23:43:12 +00002917 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
2918 DEBUG(dbgs() << "The search space is too complex.\n");
2919
2920 DEBUG(dbgs() << "Narrowing the search space by eliminating formulae "
2921 "which use a superset of registers used by other "
2922 "formulae.\n");
2923
2924 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2925 LSRUse &LU = Uses[LUIdx];
2926 bool Any = false;
2927 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
2928 Formula &F = LU.Formulae[i];
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00002929 // Look for a formula with a constant or GV in a register. If the use
2930 // also has a formula with that same value in an immediate field,
2931 // delete the one that uses a register.
Dan Gohmana2086b32010-05-19 23:43:12 +00002932 for (SmallVectorImpl<const SCEV *>::const_iterator
2933 I = F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I) {
2934 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*I)) {
2935 Formula NewF = F;
2936 NewF.AM.BaseOffs += C->getValue()->getSExtValue();
2937 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
2938 (I - F.BaseRegs.begin()));
2939 if (LU.HasFormulaWithSameRegs(NewF)) {
2940 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
2941 LU.DeleteFormula(F);
2942 --i;
2943 --e;
2944 Any = true;
2945 break;
2946 }
2947 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(*I)) {
2948 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue()))
2949 if (!F.AM.BaseGV) {
2950 Formula NewF = F;
2951 NewF.AM.BaseGV = GV;
2952 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
2953 (I - F.BaseRegs.begin()));
2954 if (LU.HasFormulaWithSameRegs(NewF)) {
2955 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
2956 dbgs() << '\n');
2957 LU.DeleteFormula(F);
2958 --i;
2959 --e;
2960 Any = true;
2961 break;
2962 }
2963 }
2964 }
2965 }
2966 }
2967 if (Any)
2968 LU.RecomputeRegs(LUIdx, RegUses);
2969 }
2970
2971 DEBUG(dbgs() << "After pre-selection:\n";
2972 print_uses(dbgs()));
2973 }
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00002974}
Dan Gohmana2086b32010-05-19 23:43:12 +00002975
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00002976/// NarrowSearchSpaceByCollapsingUnrolledCode - When there are many registers
2977/// for expressions like A, A+1, A+2, etc., allocate a single register for
2978/// them.
2979void LSRInstance::NarrowSearchSpaceByCollapsingUnrolledCode() {
Dan Gohmana2086b32010-05-19 23:43:12 +00002980 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
2981 DEBUG(dbgs() << "The search space is too complex.\n");
2982
2983 DEBUG(dbgs() << "Narrowing the search space by assuming that uses "
2984 "separated by a constant offset will use the same "
2985 "registers.\n");
2986
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00002987 // This is especially useful for unrolled loops.
2988
Dan Gohmana2086b32010-05-19 23:43:12 +00002989 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2990 LSRUse &LU = Uses[LUIdx];
Dan Gohman402d4352010-05-20 20:33:18 +00002991 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
2992 E = LU.Formulae.end(); I != E; ++I) {
2993 const Formula &F = *I;
Dan Gohmana2086b32010-05-19 23:43:12 +00002994 if (F.AM.BaseOffs != 0 && F.AM.Scale == 0) {
Dan Gohman191bd642010-09-01 01:45:53 +00002995 if (LSRUse *LUThatHas = FindUseWithSimilarFormula(F, LU)) {
2996 if (reconcileNewOffset(*LUThatHas, F.AM.BaseOffs,
Dan Gohmana2086b32010-05-19 23:43:12 +00002997 /*HasBaseReg=*/false,
2998 LU.Kind, LU.AccessTy)) {
2999 DEBUG(dbgs() << " Deleting use "; LU.print(dbgs());
3000 dbgs() << '\n');
3001
3002 LUThatHas->AllFixupsOutsideLoop &= LU.AllFixupsOutsideLoop;
3003
Dan Gohman191bd642010-09-01 01:45:53 +00003004 // Update the relocs to reference the new use.
3005 for (SmallVectorImpl<LSRFixup>::iterator I = Fixups.begin(),
3006 E = Fixups.end(); I != E; ++I) {
3007 LSRFixup &Fixup = *I;
3008 if (Fixup.LUIdx == LUIdx) {
3009 Fixup.LUIdx = LUThatHas - &Uses.front();
3010 Fixup.Offset += F.AM.BaseOffs;
Dan Gohmandd3db0e2010-10-07 23:36:45 +00003011 // Add the new offset to LUThatHas' offset list.
3012 if (LUThatHas->Offsets.back() != Fixup.Offset) {
3013 LUThatHas->Offsets.push_back(Fixup.Offset);
3014 if (Fixup.Offset > LUThatHas->MaxOffset)
3015 LUThatHas->MaxOffset = Fixup.Offset;
3016 if (Fixup.Offset < LUThatHas->MinOffset)
3017 LUThatHas->MinOffset = Fixup.Offset;
3018 }
Dan Gohman191bd642010-09-01 01:45:53 +00003019 DEBUG(dbgs() << "New fixup has offset "
3020 << Fixup.Offset << '\n');
3021 }
3022 if (Fixup.LUIdx == NumUses-1)
3023 Fixup.LUIdx = LUIdx;
3024 }
3025
Dan Gohmanc2921ea2010-10-08 19:33:26 +00003026 // Delete formulae from the new use which are no longer legal.
3027 bool Any = false;
3028 for (size_t i = 0, e = LUThatHas->Formulae.size(); i != e; ++i) {
3029 Formula &F = LUThatHas->Formulae[i];
3030 if (!isLegalUse(F.AM,
3031 LUThatHas->MinOffset, LUThatHas->MaxOffset,
3032 LUThatHas->Kind, LUThatHas->AccessTy, TLI)) {
3033 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
3034 dbgs() << '\n');
3035 LUThatHas->DeleteFormula(F);
3036 --i;
3037 --e;
3038 Any = true;
3039 }
3040 }
3041 if (Any)
3042 LUThatHas->RecomputeRegs(LUThatHas - &Uses.front(), RegUses);
3043
Dan Gohmana2086b32010-05-19 23:43:12 +00003044 // Delete the old use.
Dan Gohmanc6897702010-10-07 23:33:43 +00003045 DeleteUse(LU, LUIdx);
Dan Gohmana2086b32010-05-19 23:43:12 +00003046 --LUIdx;
3047 --NumUses;
3048 break;
3049 }
3050 }
3051 }
3052 }
3053 }
3054
3055 DEBUG(dbgs() << "After pre-selection:\n";
3056 print_uses(dbgs()));
3057 }
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003058}
Dan Gohmana2086b32010-05-19 23:43:12 +00003059
Andrew Trick3228cc22011-03-14 16:50:06 +00003060/// NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters - Call
Dan Gohman4f7e18d2010-08-29 16:39:22 +00003061/// FilterOutUndesirableDedicatedRegisters again, if necessary, now that
3062/// we've done more filtering, as it may be able to find more formulae to
3063/// eliminate.
3064void LSRInstance::NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters(){
3065 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
3066 DEBUG(dbgs() << "The search space is too complex.\n");
3067
3068 DEBUG(dbgs() << "Narrowing the search space by re-filtering out "
3069 "undesirable dedicated registers.\n");
3070
3071 FilterOutUndesirableDedicatedRegisters();
3072
3073 DEBUG(dbgs() << "After pre-selection:\n";
3074 print_uses(dbgs()));
3075 }
3076}
3077
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003078/// NarrowSearchSpaceByPickingWinnerRegs - Pick a register which seems likely
3079/// to be profitable, and then in any use which has any reference to that
3080/// register, delete all formulae which do not reference that register.
3081void LSRInstance::NarrowSearchSpaceByPickingWinnerRegs() {
Dan Gohman76c315a2010-05-20 20:52:00 +00003082 // With all other options exhausted, loop until the system is simple
3083 // enough to handle.
Dan Gohman572645c2010-02-12 10:34:29 +00003084 SmallPtrSet<const SCEV *, 4> Taken;
Dan Gohmand079c302010-05-18 22:51:59 +00003085 while (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
Dan Gohman572645c2010-02-12 10:34:29 +00003086 // Ok, we have too many of formulae on our hands to conveniently handle.
3087 // Use a rough heuristic to thin out the list.
Dan Gohman0da751b2010-05-18 22:41:32 +00003088 DEBUG(dbgs() << "The search space is too complex.\n");
Dan Gohman572645c2010-02-12 10:34:29 +00003089
3090 // Pick the register which is used by the most LSRUses, which is likely
3091 // to be a good reuse register candidate.
3092 const SCEV *Best = 0;
3093 unsigned BestNum = 0;
3094 for (RegUseTracker::const_iterator I = RegUses.begin(), E = RegUses.end();
3095 I != E; ++I) {
3096 const SCEV *Reg = *I;
3097 if (Taken.count(Reg))
3098 continue;
3099 if (!Best)
3100 Best = Reg;
3101 else {
3102 unsigned Count = RegUses.getUsedByIndices(Reg).count();
3103 if (Count > BestNum) {
3104 Best = Reg;
3105 BestNum = Count;
3106 }
3107 }
3108 }
3109
3110 DEBUG(dbgs() << "Narrowing the search space by assuming " << *Best
Dan Gohman3f46a3a2010-03-01 17:49:51 +00003111 << " will yield profitable reuse.\n");
Dan Gohman572645c2010-02-12 10:34:29 +00003112 Taken.insert(Best);
3113
3114 // In any use with formulae which references this register, delete formulae
3115 // which don't reference it.
Dan Gohmanb2df4332010-05-18 23:42:37 +00003116 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3117 LSRUse &LU = Uses[LUIdx];
Dan Gohman572645c2010-02-12 10:34:29 +00003118 if (!LU.Regs.count(Best)) continue;
3119
Dan Gohmanb2df4332010-05-18 23:42:37 +00003120 bool Any = false;
Dan Gohman572645c2010-02-12 10:34:29 +00003121 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
3122 Formula &F = LU.Formulae[i];
3123 if (!F.referencesReg(Best)) {
3124 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
Dan Gohmand69d6282010-05-18 22:39:15 +00003125 LU.DeleteFormula(F);
Dan Gohman572645c2010-02-12 10:34:29 +00003126 --e;
3127 --i;
Dan Gohmanb2df4332010-05-18 23:42:37 +00003128 Any = true;
Dan Gohman59dc6032010-05-07 23:36:59 +00003129 assert(e != 0 && "Use has no formulae left! Is Regs inconsistent?");
Dan Gohman572645c2010-02-12 10:34:29 +00003130 continue;
3131 }
Dan Gohman572645c2010-02-12 10:34:29 +00003132 }
Dan Gohmanb2df4332010-05-18 23:42:37 +00003133
3134 if (Any)
3135 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman572645c2010-02-12 10:34:29 +00003136 }
3137
3138 DEBUG(dbgs() << "After pre-selection:\n";
3139 print_uses(dbgs()));
3140 }
3141}
3142
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003143/// NarrowSearchSpaceUsingHeuristics - If there are an extraordinary number of
3144/// formulae to choose from, use some rough heuristics to prune down the number
3145/// of formulae. This keeps the main solver from taking an extraordinary amount
3146/// of time in some worst-case scenarios.
3147void LSRInstance::NarrowSearchSpaceUsingHeuristics() {
3148 NarrowSearchSpaceByDetectingSupersets();
3149 NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman4f7e18d2010-08-29 16:39:22 +00003150 NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003151 NarrowSearchSpaceByPickingWinnerRegs();
3152}
3153
Dan Gohman572645c2010-02-12 10:34:29 +00003154/// SolveRecurse - This is the recursive solver.
3155void LSRInstance::SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
3156 Cost &SolutionCost,
3157 SmallVectorImpl<const Formula *> &Workspace,
3158 const Cost &CurCost,
3159 const SmallPtrSet<const SCEV *, 16> &CurRegs,
3160 DenseSet<const SCEV *> &VisitedRegs) const {
3161 // Some ideas:
3162 // - prune more:
3163 // - use more aggressive filtering
3164 // - sort the formula so that the most profitable solutions are found first
3165 // - sort the uses too
3166 // - search faster:
Dan Gohman3f46a3a2010-03-01 17:49:51 +00003167 // - don't compute a cost, and then compare. compare while computing a cost
Dan Gohman572645c2010-02-12 10:34:29 +00003168 // and bail early.
3169 // - track register sets with SmallBitVector
3170
3171 const LSRUse &LU = Uses[Workspace.size()];
3172
3173 // If this use references any register that's already a part of the
3174 // in-progress solution, consider it a requirement that a formula must
3175 // reference that register in order to be considered. This prunes out
3176 // unprofitable searching.
3177 SmallSetVector<const SCEV *, 4> ReqRegs;
3178 for (SmallPtrSet<const SCEV *, 16>::const_iterator I = CurRegs.begin(),
3179 E = CurRegs.end(); I != E; ++I)
Dan Gohman9214b822010-02-13 02:06:02 +00003180 if (LU.Regs.count(*I))
Dan Gohman572645c2010-02-12 10:34:29 +00003181 ReqRegs.insert(*I);
Dan Gohman572645c2010-02-12 10:34:29 +00003182
Dan Gohman9214b822010-02-13 02:06:02 +00003183 bool AnySatisfiedReqRegs = false;
Dan Gohman572645c2010-02-12 10:34:29 +00003184 SmallPtrSet<const SCEV *, 16> NewRegs;
3185 Cost NewCost;
Dan Gohman9214b822010-02-13 02:06:02 +00003186retry:
Dan Gohman572645c2010-02-12 10:34:29 +00003187 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
3188 E = LU.Formulae.end(); I != E; ++I) {
3189 const Formula &F = *I;
3190
3191 // Ignore formulae which do not use any of the required registers.
3192 for (SmallSetVector<const SCEV *, 4>::const_iterator J = ReqRegs.begin(),
3193 JE = ReqRegs.end(); J != JE; ++J) {
3194 const SCEV *Reg = *J;
3195 if ((!F.ScaledReg || F.ScaledReg != Reg) &&
3196 std::find(F.BaseRegs.begin(), F.BaseRegs.end(), Reg) ==
3197 F.BaseRegs.end())
3198 goto skip;
3199 }
Dan Gohman9214b822010-02-13 02:06:02 +00003200 AnySatisfiedReqRegs = true;
Dan Gohman572645c2010-02-12 10:34:29 +00003201
3202 // Evaluate the cost of the current formula. If it's already worse than
3203 // the current best, prune the search at that point.
3204 NewCost = CurCost;
3205 NewRegs = CurRegs;
3206 NewCost.RateFormula(F, NewRegs, VisitedRegs, L, LU.Offsets, SE, DT);
3207 if (NewCost < SolutionCost) {
3208 Workspace.push_back(&F);
3209 if (Workspace.size() != Uses.size()) {
3210 SolveRecurse(Solution, SolutionCost, Workspace, NewCost,
3211 NewRegs, VisitedRegs);
3212 if (F.getNumRegs() == 1 && Workspace.size() == 1)
3213 VisitedRegs.insert(F.ScaledReg ? F.ScaledReg : F.BaseRegs[0]);
3214 } else {
3215 DEBUG(dbgs() << "New best at "; NewCost.print(dbgs());
3216 dbgs() << ". Regs:";
3217 for (SmallPtrSet<const SCEV *, 16>::const_iterator
3218 I = NewRegs.begin(), E = NewRegs.end(); I != E; ++I)
3219 dbgs() << ' ' << **I;
3220 dbgs() << '\n');
3221
3222 SolutionCost = NewCost;
3223 Solution = Workspace;
3224 }
3225 Workspace.pop_back();
3226 }
3227 skip:;
3228 }
Dan Gohman9214b822010-02-13 02:06:02 +00003229
3230 // If none of the formulae had all of the required registers, relax the
3231 // constraint so that we don't exclude all formulae.
3232 if (!AnySatisfiedReqRegs) {
Dan Gohman59dc6032010-05-07 23:36:59 +00003233 assert(!ReqRegs.empty() && "Solver failed even without required registers");
Dan Gohman9214b822010-02-13 02:06:02 +00003234 ReqRegs.clear();
3235 goto retry;
3236 }
Dan Gohman572645c2010-02-12 10:34:29 +00003237}
3238
Dan Gohman76c315a2010-05-20 20:52:00 +00003239/// Solve - Choose one formula from each use. Return the results in the given
3240/// Solution vector.
Dan Gohman572645c2010-02-12 10:34:29 +00003241void LSRInstance::Solve(SmallVectorImpl<const Formula *> &Solution) const {
3242 SmallVector<const Formula *, 8> Workspace;
3243 Cost SolutionCost;
3244 SolutionCost.Loose();
3245 Cost CurCost;
3246 SmallPtrSet<const SCEV *, 16> CurRegs;
3247 DenseSet<const SCEV *> VisitedRegs;
3248 Workspace.reserve(Uses.size());
3249
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00003250 // SolveRecurse does all the work.
Dan Gohman572645c2010-02-12 10:34:29 +00003251 SolveRecurse(Solution, SolutionCost, Workspace, CurCost,
3252 CurRegs, VisitedRegs);
3253
3254 // Ok, we've now made all our decisions.
3255 DEBUG(dbgs() << "\n"
3256 "The chosen solution requires "; SolutionCost.print(dbgs());
3257 dbgs() << ":\n";
3258 for (size_t i = 0, e = Uses.size(); i != e; ++i) {
3259 dbgs() << " ";
3260 Uses[i].print(dbgs());
3261 dbgs() << "\n"
3262 " ";
3263 Solution[i]->print(dbgs());
3264 dbgs() << '\n';
3265 });
Dan Gohmana5528782010-05-20 20:59:23 +00003266
3267 assert(Solution.size() == Uses.size() && "Malformed solution!");
Dan Gohman572645c2010-02-12 10:34:29 +00003268}
3269
Dan Gohmane5f76872010-04-09 22:07:05 +00003270/// HoistInsertPosition - Helper for AdjustInsertPositionForExpand. Climb up
3271/// the dominator tree far as we can go while still being dominated by the
3272/// input positions. This helps canonicalize the insert position, which
3273/// encourages sharing.
3274BasicBlock::iterator
3275LSRInstance::HoistInsertPosition(BasicBlock::iterator IP,
3276 const SmallVectorImpl<Instruction *> &Inputs)
3277 const {
3278 for (;;) {
3279 const Loop *IPLoop = LI.getLoopFor(IP->getParent());
3280 unsigned IPLoopDepth = IPLoop ? IPLoop->getLoopDepth() : 0;
3281
3282 BasicBlock *IDom;
Dan Gohmand974a0e2010-05-20 20:00:25 +00003283 for (DomTreeNode *Rung = DT.getNode(IP->getParent()); ; ) {
Dan Gohman0fe46d92010-05-20 22:46:54 +00003284 if (!Rung) return IP;
Dan Gohmand974a0e2010-05-20 20:00:25 +00003285 Rung = Rung->getIDom();
3286 if (!Rung) return IP;
3287 IDom = Rung->getBlock();
Dan Gohmane5f76872010-04-09 22:07:05 +00003288
3289 // Don't climb into a loop though.
3290 const Loop *IDomLoop = LI.getLoopFor(IDom);
3291 unsigned IDomDepth = IDomLoop ? IDomLoop->getLoopDepth() : 0;
3292 if (IDomDepth <= IPLoopDepth &&
3293 (IDomDepth != IPLoopDepth || IDomLoop == IPLoop))
3294 break;
3295 }
3296
3297 bool AllDominate = true;
3298 Instruction *BetterPos = 0;
3299 Instruction *Tentative = IDom->getTerminator();
3300 for (SmallVectorImpl<Instruction *>::const_iterator I = Inputs.begin(),
3301 E = Inputs.end(); I != E; ++I) {
3302 Instruction *Inst = *I;
3303 if (Inst == Tentative || !DT.dominates(Inst, Tentative)) {
3304 AllDominate = false;
3305 break;
3306 }
3307 // Attempt to find an insert position in the middle of the block,
3308 // instead of at the end, so that it can be used for other expansions.
3309 if (IDom == Inst->getParent() &&
3310 (!BetterPos || DT.dominates(BetterPos, Inst)))
Douglas Gregor7d9663c2010-05-11 06:17:44 +00003311 BetterPos = llvm::next(BasicBlock::iterator(Inst));
Dan Gohmane5f76872010-04-09 22:07:05 +00003312 }
3313 if (!AllDominate)
3314 break;
3315 if (BetterPos)
3316 IP = BetterPos;
3317 else
3318 IP = Tentative;
3319 }
3320
3321 return IP;
3322}
3323
3324/// AdjustInsertPositionForExpand - Determine an input position which will be
Dan Gohmand96eae82010-04-09 02:00:38 +00003325/// dominated by the operands and which will dominate the result.
3326BasicBlock::iterator
Dan Gohmane5f76872010-04-09 22:07:05 +00003327LSRInstance::AdjustInsertPositionForExpand(BasicBlock::iterator IP,
3328 const LSRFixup &LF,
3329 const LSRUse &LU) const {
Dan Gohmand96eae82010-04-09 02:00:38 +00003330 // Collect some instructions which must be dominated by the
Dan Gohman448db1c2010-04-07 22:27:08 +00003331 // expanding replacement. These must be dominated by any operands that
Dan Gohman572645c2010-02-12 10:34:29 +00003332 // will be required in the expansion.
3333 SmallVector<Instruction *, 4> Inputs;
3334 if (Instruction *I = dyn_cast<Instruction>(LF.OperandValToReplace))
3335 Inputs.push_back(I);
3336 if (LU.Kind == LSRUse::ICmpZero)
3337 if (Instruction *I =
3338 dyn_cast<Instruction>(cast<ICmpInst>(LF.UserInst)->getOperand(1)))
3339 Inputs.push_back(I);
Dan Gohman448db1c2010-04-07 22:27:08 +00003340 if (LF.PostIncLoops.count(L)) {
3341 if (LF.isUseFullyOutsideLoop(L))
Dan Gohman069d6f32010-03-02 01:59:21 +00003342 Inputs.push_back(L->getLoopLatch()->getTerminator());
3343 else
3344 Inputs.push_back(IVIncInsertPos);
3345 }
Dan Gohman701a4ae2010-04-08 05:57:57 +00003346 // The expansion must also be dominated by the increment positions of any
3347 // loops it for which it is using post-inc mode.
3348 for (PostIncLoopSet::const_iterator I = LF.PostIncLoops.begin(),
3349 E = LF.PostIncLoops.end(); I != E; ++I) {
3350 const Loop *PIL = *I;
3351 if (PIL == L) continue;
3352
Dan Gohmane5f76872010-04-09 22:07:05 +00003353 // Be dominated by the loop exit.
Dan Gohman701a4ae2010-04-08 05:57:57 +00003354 SmallVector<BasicBlock *, 4> ExitingBlocks;
3355 PIL->getExitingBlocks(ExitingBlocks);
3356 if (!ExitingBlocks.empty()) {
3357 BasicBlock *BB = ExitingBlocks[0];
3358 for (unsigned i = 1, e = ExitingBlocks.size(); i != e; ++i)
3359 BB = DT.findNearestCommonDominator(BB, ExitingBlocks[i]);
3360 Inputs.push_back(BB->getTerminator());
3361 }
3362 }
Dan Gohman572645c2010-02-12 10:34:29 +00003363
3364 // Then, climb up the immediate dominator tree as far as we can go while
3365 // still being dominated by the input positions.
Dan Gohmane5f76872010-04-09 22:07:05 +00003366 IP = HoistInsertPosition(IP, Inputs);
Dan Gohmand96eae82010-04-09 02:00:38 +00003367
3368 // Don't insert instructions before PHI nodes.
Dan Gohman572645c2010-02-12 10:34:29 +00003369 while (isa<PHINode>(IP)) ++IP;
Dan Gohmand96eae82010-04-09 02:00:38 +00003370
3371 // Ignore debug intrinsics.
Dan Gohman449f31c2010-03-26 00:33:27 +00003372 while (isa<DbgInfoIntrinsic>(IP)) ++IP;
Dan Gohman572645c2010-02-12 10:34:29 +00003373
Dan Gohmand96eae82010-04-09 02:00:38 +00003374 return IP;
3375}
3376
Dan Gohman76c315a2010-05-20 20:52:00 +00003377/// Expand - Emit instructions for the leading candidate expression for this
3378/// LSRUse (this is called "expanding").
Dan Gohmand96eae82010-04-09 02:00:38 +00003379Value *LSRInstance::Expand(const LSRFixup &LF,
3380 const Formula &F,
3381 BasicBlock::iterator IP,
3382 SCEVExpander &Rewriter,
3383 SmallVectorImpl<WeakVH> &DeadInsts) const {
3384 const LSRUse &LU = Uses[LF.LUIdx];
3385
3386 // Determine an input position which will be dominated by the operands and
3387 // which will dominate the result.
Dan Gohmane5f76872010-04-09 22:07:05 +00003388 IP = AdjustInsertPositionForExpand(IP, LF, LU);
Dan Gohmand96eae82010-04-09 02:00:38 +00003389
Dan Gohman572645c2010-02-12 10:34:29 +00003390 // Inform the Rewriter if we have a post-increment use, so that it can
3391 // perform an advantageous expansion.
Dan Gohman448db1c2010-04-07 22:27:08 +00003392 Rewriter.setPostInc(LF.PostIncLoops);
Dan Gohman572645c2010-02-12 10:34:29 +00003393
3394 // This is the type that the user actually needs.
3395 const Type *OpTy = LF.OperandValToReplace->getType();
3396 // This will be the type that we'll initially expand to.
3397 const Type *Ty = F.getType();
3398 if (!Ty)
3399 // No type known; just expand directly to the ultimate type.
3400 Ty = OpTy;
3401 else if (SE.getEffectiveSCEVType(Ty) == SE.getEffectiveSCEVType(OpTy))
3402 // Expand directly to the ultimate type if it's the right size.
3403 Ty = OpTy;
3404 // This is the type to do integer arithmetic in.
3405 const Type *IntTy = SE.getEffectiveSCEVType(Ty);
3406
3407 // Build up a list of operands to add together to form the full base.
3408 SmallVector<const SCEV *, 8> Ops;
3409
3410 // Expand the BaseRegs portion.
3411 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
3412 E = F.BaseRegs.end(); I != E; ++I) {
3413 const SCEV *Reg = *I;
3414 assert(!Reg->isZero() && "Zero allocated in a base register!");
3415
Dan Gohman448db1c2010-04-07 22:27:08 +00003416 // If we're expanding for a post-inc user, make the post-inc adjustment.
3417 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
3418 Reg = TransformForPostIncUse(Denormalize, Reg,
3419 LF.UserInst, LF.OperandValToReplace,
3420 Loops, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +00003421
3422 Ops.push_back(SE.getUnknown(Rewriter.expandCodeFor(Reg, 0, IP)));
3423 }
3424
Dan Gohman087bd1e2010-03-03 05:29:13 +00003425 // Flush the operand list to suppress SCEVExpander hoisting.
3426 if (!Ops.empty()) {
3427 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
3428 Ops.clear();
3429 Ops.push_back(SE.getUnknown(FullV));
3430 }
3431
Dan Gohman572645c2010-02-12 10:34:29 +00003432 // Expand the ScaledReg portion.
3433 Value *ICmpScaledV = 0;
3434 if (F.AM.Scale != 0) {
3435 const SCEV *ScaledS = F.ScaledReg;
3436
Dan Gohman448db1c2010-04-07 22:27:08 +00003437 // If we're expanding for a post-inc user, make the post-inc adjustment.
3438 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
3439 ScaledS = TransformForPostIncUse(Denormalize, ScaledS,
3440 LF.UserInst, LF.OperandValToReplace,
3441 Loops, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +00003442
3443 if (LU.Kind == LSRUse::ICmpZero) {
3444 // An interesting way of "folding" with an icmp is to use a negated
3445 // scale, which we'll implement by inserting it into the other operand
3446 // of the icmp.
3447 assert(F.AM.Scale == -1 &&
3448 "The only scale supported by ICmpZero uses is -1!");
3449 ICmpScaledV = Rewriter.expandCodeFor(ScaledS, 0, IP);
3450 } else {
3451 // Otherwise just expand the scaled register and an explicit scale,
3452 // which is expected to be matched as part of the address.
3453 ScaledS = SE.getUnknown(Rewriter.expandCodeFor(ScaledS, 0, IP));
3454 ScaledS = SE.getMulExpr(ScaledS,
Dan Gohmandeff6212010-05-03 22:09:21 +00003455 SE.getConstant(ScaledS->getType(), F.AM.Scale));
Dan Gohman572645c2010-02-12 10:34:29 +00003456 Ops.push_back(ScaledS);
Dan Gohman087bd1e2010-03-03 05:29:13 +00003457
3458 // Flush the operand list to suppress SCEVExpander hoisting.
3459 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
3460 Ops.clear();
3461 Ops.push_back(SE.getUnknown(FullV));
Dan Gohman572645c2010-02-12 10:34:29 +00003462 }
3463 }
3464
Dan Gohman087bd1e2010-03-03 05:29:13 +00003465 // Expand the GV portion.
3466 if (F.AM.BaseGV) {
3467 Ops.push_back(SE.getUnknown(F.AM.BaseGV));
3468
3469 // Flush the operand list to suppress SCEVExpander hoisting.
3470 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
3471 Ops.clear();
3472 Ops.push_back(SE.getUnknown(FullV));
3473 }
3474
3475 // Expand the immediate portion.
Dan Gohman572645c2010-02-12 10:34:29 +00003476 int64_t Offset = (uint64_t)F.AM.BaseOffs + LF.Offset;
3477 if (Offset != 0) {
3478 if (LU.Kind == LSRUse::ICmpZero) {
3479 // The other interesting way of "folding" with an ICmpZero is to use a
3480 // negated immediate.
3481 if (!ICmpScaledV)
3482 ICmpScaledV = ConstantInt::get(IntTy, -Offset);
3483 else {
3484 Ops.push_back(SE.getUnknown(ICmpScaledV));
3485 ICmpScaledV = ConstantInt::get(IntTy, Offset);
3486 }
3487 } else {
3488 // Just add the immediate values. These again are expected to be matched
3489 // as part of the address.
Dan Gohman087bd1e2010-03-03 05:29:13 +00003490 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy, Offset)));
Dan Gohman572645c2010-02-12 10:34:29 +00003491 }
3492 }
3493
3494 // Emit instructions summing all the operands.
3495 const SCEV *FullS = Ops.empty() ?
Dan Gohmandeff6212010-05-03 22:09:21 +00003496 SE.getConstant(IntTy, 0) :
Dan Gohman572645c2010-02-12 10:34:29 +00003497 SE.getAddExpr(Ops);
3498 Value *FullV = Rewriter.expandCodeFor(FullS, Ty, IP);
3499
3500 // We're done expanding now, so reset the rewriter.
Dan Gohman448db1c2010-04-07 22:27:08 +00003501 Rewriter.clearPostInc();
Dan Gohman572645c2010-02-12 10:34:29 +00003502
3503 // An ICmpZero Formula represents an ICmp which we're handling as a
3504 // comparison against zero. Now that we've expanded an expression for that
3505 // form, update the ICmp's other operand.
3506 if (LU.Kind == LSRUse::ICmpZero) {
3507 ICmpInst *CI = cast<ICmpInst>(LF.UserInst);
3508 DeadInsts.push_back(CI->getOperand(1));
3509 assert(!F.AM.BaseGV && "ICmp does not support folding a global value and "
3510 "a scale at the same time!");
3511 if (F.AM.Scale == -1) {
3512 if (ICmpScaledV->getType() != OpTy) {
3513 Instruction *Cast =
3514 CastInst::Create(CastInst::getCastOpcode(ICmpScaledV, false,
3515 OpTy, false),
3516 ICmpScaledV, OpTy, "tmp", CI);
3517 ICmpScaledV = Cast;
3518 }
3519 CI->setOperand(1, ICmpScaledV);
3520 } else {
3521 assert(F.AM.Scale == 0 &&
3522 "ICmp does not support folding a global value and "
3523 "a scale at the same time!");
3524 Constant *C = ConstantInt::getSigned(SE.getEffectiveSCEVType(OpTy),
3525 -(uint64_t)Offset);
3526 if (C->getType() != OpTy)
3527 C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
3528 OpTy, false),
3529 C, OpTy);
3530
3531 CI->setOperand(1, C);
3532 }
3533 }
3534
3535 return FullV;
3536}
3537
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003538/// RewriteForPHI - Helper for Rewrite. PHI nodes are special because the use
3539/// of their operands effectively happens in their predecessor blocks, so the
3540/// expression may need to be expanded in multiple places.
3541void LSRInstance::RewriteForPHI(PHINode *PN,
3542 const LSRFixup &LF,
3543 const Formula &F,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003544 SCEVExpander &Rewriter,
3545 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003546 Pass *P) const {
3547 DenseMap<BasicBlock *, Value *> Inserted;
3548 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
3549 if (PN->getIncomingValue(i) == LF.OperandValToReplace) {
3550 BasicBlock *BB = PN->getIncomingBlock(i);
3551
3552 // If this is a critical edge, split the edge so that we do not insert
3553 // the code on all predecessor/successor paths. We do this unless this
3554 // is the canonical backedge for this loop, which complicates post-inc
3555 // users.
3556 if (e != 1 && BB->getTerminator()->getNumSuccessors() > 1 &&
Dan Gohman3ef98382011-02-08 00:55:13 +00003557 !isa<IndirectBrInst>(BB->getTerminator())) {
3558 Loop *PNLoop = LI.getLoopFor(PN->getParent());
3559 if (!PNLoop || PN->getParent() != PNLoop->getHeader()) {
3560 // Split the critical edge.
3561 BasicBlock *NewBB = SplitCriticalEdge(BB, PN->getParent(), P);
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003562
Dan Gohman3ef98382011-02-08 00:55:13 +00003563 // If PN is outside of the loop and BB is in the loop, we want to
3564 // move the block to be immediately before the PHI block, not
3565 // immediately after BB.
3566 if (L->contains(BB) && !L->contains(PN))
3567 NewBB->moveBefore(PN->getParent());
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003568
Dan Gohman3ef98382011-02-08 00:55:13 +00003569 // Splitting the edge can reduce the number of PHI entries we have.
3570 e = PN->getNumIncomingValues();
3571 BB = NewBB;
3572 i = PN->getBasicBlockIndex(BB);
3573 }
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003574 }
3575
3576 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> Pair =
3577 Inserted.insert(std::make_pair(BB, static_cast<Value *>(0)));
3578 if (!Pair.second)
3579 PN->setIncomingValue(i, Pair.first->second);
3580 else {
Dan Gohman454d26d2010-02-22 04:11:59 +00003581 Value *FullV = Expand(LF, F, BB->getTerminator(), Rewriter, DeadInsts);
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003582
3583 // If this is reuse-by-noop-cast, insert the noop cast.
3584 const Type *OpTy = LF.OperandValToReplace->getType();
3585 if (FullV->getType() != OpTy)
3586 FullV =
3587 CastInst::Create(CastInst::getCastOpcode(FullV, false,
3588 OpTy, false),
3589 FullV, LF.OperandValToReplace->getType(),
3590 "tmp", BB->getTerminator());
3591
3592 PN->setIncomingValue(i, FullV);
3593 Pair.first->second = FullV;
3594 }
3595 }
3596}
3597
Dan Gohman572645c2010-02-12 10:34:29 +00003598/// Rewrite - Emit instructions for the leading candidate expression for this
3599/// LSRUse (this is called "expanding"), and update the UserInst to reference
3600/// the newly expanded value.
3601void LSRInstance::Rewrite(const LSRFixup &LF,
3602 const Formula &F,
Dan Gohman572645c2010-02-12 10:34:29 +00003603 SCEVExpander &Rewriter,
3604 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman572645c2010-02-12 10:34:29 +00003605 Pass *P) const {
Dan Gohman572645c2010-02-12 10:34:29 +00003606 // First, find an insertion point that dominates UserInst. For PHI nodes,
3607 // find the nearest block which dominates all the relevant uses.
3608 if (PHINode *PN = dyn_cast<PHINode>(LF.UserInst)) {
Dan Gohman454d26d2010-02-22 04:11:59 +00003609 RewriteForPHI(PN, LF, F, Rewriter, DeadInsts, P);
Dan Gohman572645c2010-02-12 10:34:29 +00003610 } else {
Dan Gohman454d26d2010-02-22 04:11:59 +00003611 Value *FullV = Expand(LF, F, LF.UserInst, Rewriter, DeadInsts);
Dan Gohman572645c2010-02-12 10:34:29 +00003612
3613 // If this is reuse-by-noop-cast, insert the noop cast.
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003614 const Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00003615 if (FullV->getType() != OpTy) {
3616 Instruction *Cast =
3617 CastInst::Create(CastInst::getCastOpcode(FullV, false, OpTy, false),
3618 FullV, OpTy, "tmp", LF.UserInst);
3619 FullV = Cast;
3620 }
3621
3622 // Update the user. ICmpZero is handled specially here (for now) because
3623 // Expand may have updated one of the operands of the icmp already, and
3624 // its new value may happen to be equal to LF.OperandValToReplace, in
3625 // which case doing replaceUsesOfWith leads to replacing both operands
3626 // with the same value. TODO: Reorganize this.
3627 if (Uses[LF.LUIdx].Kind == LSRUse::ICmpZero)
3628 LF.UserInst->setOperand(0, FullV);
3629 else
3630 LF.UserInst->replaceUsesOfWith(LF.OperandValToReplace, FullV);
3631 }
3632
3633 DeadInsts.push_back(LF.OperandValToReplace);
3634}
3635
Dan Gohman76c315a2010-05-20 20:52:00 +00003636/// ImplementSolution - Rewrite all the fixup locations with new values,
3637/// following the chosen solution.
Dan Gohman572645c2010-02-12 10:34:29 +00003638void
3639LSRInstance::ImplementSolution(const SmallVectorImpl<const Formula *> &Solution,
3640 Pass *P) {
3641 // Keep track of instructions we may have made dead, so that
3642 // we can remove them after we are done working.
3643 SmallVector<WeakVH, 16> DeadInsts;
3644
3645 SCEVExpander Rewriter(SE);
3646 Rewriter.disableCanonicalMode();
3647 Rewriter.setIVIncInsertPos(L, IVIncInsertPos);
3648
3649 // Expand the new value definitions and update the users.
Dan Gohman402d4352010-05-20 20:33:18 +00003650 for (SmallVectorImpl<LSRFixup>::const_iterator I = Fixups.begin(),
3651 E = Fixups.end(); I != E; ++I) {
3652 const LSRFixup &Fixup = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00003653
Dan Gohman402d4352010-05-20 20:33:18 +00003654 Rewrite(Fixup, *Solution[Fixup.LUIdx], Rewriter, DeadInsts, P);
Dan Gohman572645c2010-02-12 10:34:29 +00003655
3656 Changed = true;
3657 }
3658
3659 // Clean up after ourselves. This must be done before deleting any
3660 // instructions.
3661 Rewriter.clear();
3662
3663 Changed |= DeleteTriviallyDeadInstructions(DeadInsts);
3664}
3665
3666LSRInstance::LSRInstance(const TargetLowering *tli, Loop *l, Pass *P)
3667 : IU(P->getAnalysis<IVUsers>()),
3668 SE(P->getAnalysis<ScalarEvolution>()),
3669 DT(P->getAnalysis<DominatorTree>()),
Dan Gohmane5f76872010-04-09 22:07:05 +00003670 LI(P->getAnalysis<LoopInfo>()),
Dan Gohman572645c2010-02-12 10:34:29 +00003671 TLI(tli), L(l), Changed(false), IVIncInsertPos(0) {
Devang Patel0f54dcb2007-03-06 21:14:09 +00003672
Dan Gohman03e896b2009-11-05 21:11:53 +00003673 // If LoopSimplify form is not available, stay out of trouble.
Dan Gohman572645c2010-02-12 10:34:29 +00003674 if (!L->isLoopSimplifyForm()) return;
Dan Gohman03e896b2009-11-05 21:11:53 +00003675
Dan Gohman572645c2010-02-12 10:34:29 +00003676 // If there's no interesting work to be done, bail early.
3677 if (IU.empty()) return;
Dan Gohman80b0f8c2009-03-09 20:34:59 +00003678
Dan Gohman572645c2010-02-12 10:34:29 +00003679 DEBUG(dbgs() << "\nLSR on loop ";
3680 WriteAsOperand(dbgs(), L->getHeader(), /*PrintType=*/false);
3681 dbgs() << ":\n");
Dan Gohmanf7912df2009-03-09 20:46:50 +00003682
Dan Gohman402d4352010-05-20 20:33:18 +00003683 // First, perform some low-level loop optimizations.
Dan Gohman572645c2010-02-12 10:34:29 +00003684 OptimizeShadowIV();
Dan Gohmanc6519f92010-05-20 20:05:31 +00003685 OptimizeLoopTermCond();
Evan Cheng5792f512009-05-11 22:33:01 +00003686
Dan Gohman402d4352010-05-20 20:33:18 +00003687 // Start collecting data and preparing for the solver.
Dan Gohman572645c2010-02-12 10:34:29 +00003688 CollectInterestingTypesAndFactors();
3689 CollectFixupsAndInitialFormulae();
3690 CollectLoopInvariantFixupsAndFormulae();
Chris Lattner010de252005-08-08 05:28:22 +00003691
Dan Gohman572645c2010-02-12 10:34:29 +00003692 DEBUG(dbgs() << "LSR found " << Uses.size() << " uses:\n";
3693 print_uses(dbgs()));
Misha Brukmanfd939082005-04-21 23:48:37 +00003694
Dan Gohman572645c2010-02-12 10:34:29 +00003695 // Now use the reuse data to generate a bunch of interesting ways
3696 // to formulate the values needed for the uses.
3697 GenerateAllReuseFormulae();
Evan Chengd1d6b5c2006-03-16 21:53:05 +00003698
Dan Gohman572645c2010-02-12 10:34:29 +00003699 FilterOutUndesirableDedicatedRegisters();
3700 NarrowSearchSpaceUsingHeuristics();
Dan Gohman6bec5bb2009-12-18 00:06:20 +00003701
Dan Gohman572645c2010-02-12 10:34:29 +00003702 SmallVector<const Formula *, 8> Solution;
3703 Solve(Solution);
Dan Gohman6bec5bb2009-12-18 00:06:20 +00003704
Dan Gohman572645c2010-02-12 10:34:29 +00003705 // Release memory that is no longer needed.
3706 Factors.clear();
3707 Types.clear();
3708 RegUses.clear();
3709
3710#ifndef NDEBUG
3711 // Formulae should be legal.
3712 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
3713 E = Uses.end(); I != E; ++I) {
3714 const LSRUse &LU = *I;
3715 for (SmallVectorImpl<Formula>::const_iterator J = LU.Formulae.begin(),
3716 JE = LU.Formulae.end(); J != JE; ++J)
3717 assert(isLegalUse(J->AM, LU.MinOffset, LU.MaxOffset,
3718 LU.Kind, LU.AccessTy, TLI) &&
3719 "Illegal formula generated!");
3720 };
3721#endif
3722
3723 // Now that we've decided what we want, make it so.
3724 ImplementSolution(Solution, P);
3725}
3726
3727void LSRInstance::print_factors_and_types(raw_ostream &OS) const {
3728 if (Factors.empty() && Types.empty()) return;
3729
3730 OS << "LSR has identified the following interesting factors and types: ";
3731 bool First = true;
3732
3733 for (SmallSetVector<int64_t, 8>::const_iterator
3734 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
3735 if (!First) OS << ", ";
3736 First = false;
3737 OS << '*' << *I;
Evan Cheng81ebdcf2009-11-10 21:14:05 +00003738 }
Dale Johannesenc1acc3f2009-05-11 17:15:42 +00003739
Dan Gohman572645c2010-02-12 10:34:29 +00003740 for (SmallSetVector<const Type *, 4>::const_iterator
3741 I = Types.begin(), E = Types.end(); I != E; ++I) {
3742 if (!First) OS << ", ";
3743 First = false;
3744 OS << '(' << **I << ')';
3745 }
3746 OS << '\n';
3747}
3748
3749void LSRInstance::print_fixups(raw_ostream &OS) const {
3750 OS << "LSR is examining the following fixup sites:\n";
3751 for (SmallVectorImpl<LSRFixup>::const_iterator I = Fixups.begin(),
3752 E = Fixups.end(); I != E; ++I) {
Dan Gohman572645c2010-02-12 10:34:29 +00003753 dbgs() << " ";
Dan Gohman9f383eb2010-05-20 22:25:20 +00003754 I->print(OS);
Dan Gohman572645c2010-02-12 10:34:29 +00003755 OS << '\n';
3756 }
3757}
3758
3759void LSRInstance::print_uses(raw_ostream &OS) const {
3760 OS << "LSR is examining the following uses:\n";
3761 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
3762 E = Uses.end(); I != E; ++I) {
3763 const LSRUse &LU = *I;
3764 dbgs() << " ";
3765 LU.print(OS);
3766 OS << '\n';
3767 for (SmallVectorImpl<Formula>::const_iterator J = LU.Formulae.begin(),
3768 JE = LU.Formulae.end(); J != JE; ++J) {
3769 OS << " ";
3770 J->print(OS);
3771 OS << '\n';
3772 }
3773 }
3774}
3775
3776void LSRInstance::print(raw_ostream &OS) const {
3777 print_factors_and_types(OS);
3778 print_fixups(OS);
3779 print_uses(OS);
3780}
3781
3782void LSRInstance::dump() const {
3783 print(errs()); errs() << '\n';
3784}
3785
3786namespace {
3787
3788class LoopStrengthReduce : public LoopPass {
3789 /// TLI - Keep a pointer of a TargetLowering to consult for determining
3790 /// transformation profitability.
3791 const TargetLowering *const TLI;
3792
3793public:
3794 static char ID; // Pass ID, replacement for typeid
3795 explicit LoopStrengthReduce(const TargetLowering *tli = 0);
3796
3797private:
3798 bool runOnLoop(Loop *L, LPPassManager &LPM);
3799 void getAnalysisUsage(AnalysisUsage &AU) const;
3800};
3801
3802}
3803
3804char LoopStrengthReduce::ID = 0;
Owen Anderson2ab36d32010-10-12 19:48:12 +00003805INITIALIZE_PASS_BEGIN(LoopStrengthReduce, "loop-reduce",
Owen Andersonce665bd2010-10-07 22:25:06 +00003806 "Loop Strength Reduction", false, false)
Owen Anderson2ab36d32010-10-12 19:48:12 +00003807INITIALIZE_PASS_DEPENDENCY(DominatorTree)
3808INITIALIZE_PASS_DEPENDENCY(ScalarEvolution)
3809INITIALIZE_PASS_DEPENDENCY(IVUsers)
Owen Anderson205942a2010-10-19 20:08:44 +00003810INITIALIZE_PASS_DEPENDENCY(LoopInfo)
3811INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
Owen Anderson2ab36d32010-10-12 19:48:12 +00003812INITIALIZE_PASS_END(LoopStrengthReduce, "loop-reduce",
3813 "Loop Strength Reduction", false, false)
3814
Dan Gohman572645c2010-02-12 10:34:29 +00003815
3816Pass *llvm::createLoopStrengthReducePass(const TargetLowering *TLI) {
3817 return new LoopStrengthReduce(TLI);
3818}
3819
3820LoopStrengthReduce::LoopStrengthReduce(const TargetLowering *tli)
Owen Anderson081c34b2010-10-19 17:21:58 +00003821 : LoopPass(ID), TLI(tli) {
3822 initializeLoopStrengthReducePass(*PassRegistry::getPassRegistry());
3823 }
Dan Gohman572645c2010-02-12 10:34:29 +00003824
3825void LoopStrengthReduce::getAnalysisUsage(AnalysisUsage &AU) const {
3826 // We split critical edges, so we change the CFG. However, we do update
3827 // many analyses if they are around.
Eric Christopher6793c492011-02-10 01:48:24 +00003828 AU.addPreservedID(LoopSimplifyID);
Dan Gohman572645c2010-02-12 10:34:29 +00003829
Eric Christopher6793c492011-02-10 01:48:24 +00003830 AU.addRequired<LoopInfo>();
3831 AU.addPreserved<LoopInfo>();
3832 AU.addRequiredID(LoopSimplifyID);
Dan Gohman572645c2010-02-12 10:34:29 +00003833 AU.addRequired<DominatorTree>();
3834 AU.addPreserved<DominatorTree>();
3835 AU.addRequired<ScalarEvolution>();
3836 AU.addPreserved<ScalarEvolution>();
Cameron Zwarich2c2b9332011-02-10 23:53:14 +00003837 // Requiring LoopSimplify a second time here prevents IVUsers from running
3838 // twice, since LoopSimplify was invalidated by running ScalarEvolution.
3839 AU.addRequiredID(LoopSimplifyID);
Dan Gohman572645c2010-02-12 10:34:29 +00003840 AU.addRequired<IVUsers>();
3841 AU.addPreserved<IVUsers>();
3842}
3843
3844bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager & /*LPM*/) {
3845 bool Changed = false;
3846
3847 // Run the main LSR transformation.
3848 Changed |= LSRInstance(TLI, L, this).getChanged();
3849
Dan Gohmanafc36a92009-05-02 18:29:22 +00003850 // At this point, it is worth checking to see if any recurrence PHIs are also
Dan Gohman35738ac2009-05-04 22:30:44 +00003851 // dead, so that we can remove them as well.
Dan Gohman9fff2182010-01-05 16:31:45 +00003852 Changed |= DeleteDeadPHIs(L->getHeader());
Dan Gohmanafc36a92009-05-02 18:29:22 +00003853
Evan Cheng1ce75dc2008-07-07 19:51:32 +00003854 return Changed;
Nate Begemaneaa13852004-10-18 21:08:22 +00003855}