blob: 94999ad66b38fbb5e34525babcc5d6ef853dbcd4 [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 Lattnere0391be2005-08-12 22:06:11 +000066#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Nate Begemaneaa13852004-10-18 21:08:22 +000067#include "llvm/Transforms/Utils/Local.h"
Dan Gohman572645c2010-02-12 10:34:29 +000068#include "llvm/ADT/SmallBitVector.h"
69#include "llvm/ADT/SetVector.h"
70#include "llvm/ADT/DenseSet.h"
Nate Begeman16997482005-07-30 00:15:07 +000071#include "llvm/Support/Debug.h"
Dan Gohmanafc36a92009-05-02 18:29:22 +000072#include "llvm/Support/ValueHandle.h"
Daniel Dunbar460f6562009-07-26 09:48:23 +000073#include "llvm/Support/raw_ostream.h"
Evan Chengd277f2c2006-03-13 23:14:23 +000074#include "llvm/Target/TargetLowering.h"
Jeff Cohencfb1d422005-07-30 18:22:27 +000075#include <algorithm>
Nate Begemaneaa13852004-10-18 21:08:22 +000076using namespace llvm;
77
Dan Gohman572645c2010-02-12 10:34:29 +000078namespace {
Nate Begemaneaa13852004-10-18 21:08:22 +000079
Dan Gohman572645c2010-02-12 10:34:29 +000080/// RegSortData - This class holds data which is used to order reuse candidates.
81class RegSortData {
82public:
83 /// UsedByIndices - This represents the set of LSRUse indices which reference
84 /// a particular register.
85 SmallBitVector UsedByIndices;
86
87 RegSortData() {}
88
89 void print(raw_ostream &OS) const;
90 void dump() const;
91};
92
93}
94
95void RegSortData::print(raw_ostream &OS) const {
96 OS << "[NumUses=" << UsedByIndices.count() << ']';
97}
98
99void RegSortData::dump() const {
100 print(errs()); errs() << '\n';
101}
Dan Gohmanc17e0cf2009-02-20 04:17:46 +0000102
Chris Lattner0e5f4992006-12-19 21:40:18 +0000103namespace {
Dale Johannesendc42f482007-03-20 00:47:50 +0000104
Dan Gohman572645c2010-02-12 10:34:29 +0000105/// RegUseTracker - Map register candidates to information about how they are
106/// used.
107class RegUseTracker {
108 typedef DenseMap<const SCEV *, RegSortData> RegUsesTy;
Dale Johannesendc42f482007-03-20 00:47:50 +0000109
Dan Gohman90bb3552010-05-18 22:33:00 +0000110 RegUsesTy RegUsesMap;
Dan Gohman572645c2010-02-12 10:34:29 +0000111 SmallVector<const SCEV *, 16> RegSequence;
Evan Chengd1d6b5c2006-03-16 21:53:05 +0000112
Dan Gohman572645c2010-02-12 10:34:29 +0000113public:
114 void CountRegister(const SCEV *Reg, size_t LUIdx);
Dan Gohmanb2df4332010-05-18 23:42:37 +0000115 void DropRegister(const SCEV *Reg, size_t LUIdx);
Dan Gohmana2086b32010-05-19 23:43:12 +0000116 void DropUse(size_t LUIdx);
Dan Gohmana10756e2010-01-21 02:09:26 +0000117
Dan Gohman572645c2010-02-12 10:34:29 +0000118 bool isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const;
Dan Gohmana10756e2010-01-21 02:09:26 +0000119
Dan Gohman572645c2010-02-12 10:34:29 +0000120 const SmallBitVector &getUsedByIndices(const SCEV *Reg) const;
Dan Gohmana10756e2010-01-21 02:09:26 +0000121
Dan Gohman572645c2010-02-12 10:34:29 +0000122 void clear();
Dan Gohmana10756e2010-01-21 02:09:26 +0000123
Dan Gohman572645c2010-02-12 10:34:29 +0000124 typedef SmallVectorImpl<const SCEV *>::iterator iterator;
125 typedef SmallVectorImpl<const SCEV *>::const_iterator const_iterator;
126 iterator begin() { return RegSequence.begin(); }
127 iterator end() { return RegSequence.end(); }
128 const_iterator begin() const { return RegSequence.begin(); }
129 const_iterator end() const { return RegSequence.end(); }
130};
Dan Gohmana10756e2010-01-21 02:09:26 +0000131
Dan Gohmana10756e2010-01-21 02:09:26 +0000132}
133
Dan Gohman572645c2010-02-12 10:34:29 +0000134void
135RegUseTracker::CountRegister(const SCEV *Reg, size_t LUIdx) {
136 std::pair<RegUsesTy::iterator, bool> Pair =
Dan Gohman90bb3552010-05-18 22:33:00 +0000137 RegUsesMap.insert(std::make_pair(Reg, RegSortData()));
Dan Gohman572645c2010-02-12 10:34:29 +0000138 RegSortData &RSD = Pair.first->second;
139 if (Pair.second)
140 RegSequence.push_back(Reg);
141 RSD.UsedByIndices.resize(std::max(RSD.UsedByIndices.size(), LUIdx + 1));
142 RSD.UsedByIndices.set(LUIdx);
Dan Gohmana10756e2010-01-21 02:09:26 +0000143}
144
Dan Gohmanb2df4332010-05-18 23:42:37 +0000145void
146RegUseTracker::DropRegister(const SCEV *Reg, size_t LUIdx) {
147 RegUsesTy::iterator It = RegUsesMap.find(Reg);
148 assert(It != RegUsesMap.end());
149 RegSortData &RSD = It->second;
150 assert(RSD.UsedByIndices.size() > LUIdx);
151 RSD.UsedByIndices.reset(LUIdx);
152}
153
Dan Gohmana2086b32010-05-19 23:43:12 +0000154void
155RegUseTracker::DropUse(size_t LUIdx) {
156 // Remove the use index from every register's use list.
157 for (RegUsesTy::iterator I = RegUsesMap.begin(), E = RegUsesMap.end();
158 I != E; ++I)
159 I->second.UsedByIndices.reset(LUIdx);
160}
161
Dan Gohman572645c2010-02-12 10:34:29 +0000162bool
163RegUseTracker::isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const {
Dan Gohman90bb3552010-05-18 22:33:00 +0000164 if (!RegUsesMap.count(Reg)) return false;
Dan Gohman572645c2010-02-12 10:34:29 +0000165 const SmallBitVector &UsedByIndices =
Dan Gohman90bb3552010-05-18 22:33:00 +0000166 RegUsesMap.find(Reg)->second.UsedByIndices;
Dan Gohman572645c2010-02-12 10:34:29 +0000167 int i = UsedByIndices.find_first();
168 if (i == -1) return false;
169 if ((size_t)i != LUIdx) return true;
170 return UsedByIndices.find_next(i) != -1;
171}
Dan Gohmana10756e2010-01-21 02:09:26 +0000172
Dan Gohman572645c2010-02-12 10:34:29 +0000173const SmallBitVector &RegUseTracker::getUsedByIndices(const SCEV *Reg) const {
Dan Gohman90bb3552010-05-18 22:33:00 +0000174 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
175 assert(I != RegUsesMap.end() && "Unknown register!");
Dan Gohman572645c2010-02-12 10:34:29 +0000176 return I->second.UsedByIndices;
177}
Dan Gohmana10756e2010-01-21 02:09:26 +0000178
Dan Gohman572645c2010-02-12 10:34:29 +0000179void RegUseTracker::clear() {
Dan Gohman90bb3552010-05-18 22:33:00 +0000180 RegUsesMap.clear();
Dan Gohman572645c2010-02-12 10:34:29 +0000181 RegSequence.clear();
182}
Dan Gohmana10756e2010-01-21 02:09:26 +0000183
Dan Gohman572645c2010-02-12 10:34:29 +0000184namespace {
185
186/// Formula - This class holds information that describes a formula for
187/// computing satisfying a use. It may include broken-out immediates and scaled
188/// registers.
189struct Formula {
190 /// AM - This is used to represent complex addressing, as well as other kinds
191 /// of interesting uses.
192 TargetLowering::AddrMode AM;
193
194 /// BaseRegs - The list of "base" registers for this use. When this is
195 /// non-empty, AM.HasBaseReg should be set to true.
196 SmallVector<const SCEV *, 2> BaseRegs;
197
198 /// ScaledReg - The 'scaled' register for this use. This should be non-null
199 /// when AM.Scale is not zero.
200 const SCEV *ScaledReg;
201
202 Formula() : ScaledReg(0) {}
203
204 void InitialMatch(const SCEV *S, Loop *L,
205 ScalarEvolution &SE, DominatorTree &DT);
206
207 unsigned getNumRegs() const;
208 const Type *getType() const;
209
Dan Gohman5ce6d052010-05-20 15:17:54 +0000210 void DeleteBaseReg(const SCEV *&S);
211
Dan Gohman572645c2010-02-12 10:34:29 +0000212 bool referencesReg(const SCEV *S) const;
213 bool hasRegsUsedByUsesOtherThan(size_t LUIdx,
214 const RegUseTracker &RegUses) const;
215
216 void print(raw_ostream &OS) const;
217 void dump() const;
218};
219
220}
221
Dan Gohman3f46a3a2010-03-01 17:49:51 +0000222/// DoInitialMatch - Recursion helper for InitialMatch.
Dan Gohman572645c2010-02-12 10:34:29 +0000223static void DoInitialMatch(const SCEV *S, Loop *L,
224 SmallVectorImpl<const SCEV *> &Good,
225 SmallVectorImpl<const SCEV *> &Bad,
226 ScalarEvolution &SE, DominatorTree &DT) {
227 // Collect expressions which properly dominate the loop header.
228 if (S->properlyDominates(L->getHeader(), &DT)) {
229 Good.push_back(S);
230 return;
Dan Gohmana10756e2010-01-21 02:09:26 +0000231 }
Dan Gohman572645c2010-02-12 10:34:29 +0000232
233 // Look at add operands.
234 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
235 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
236 I != E; ++I)
237 DoInitialMatch(*I, L, Good, Bad, SE, DT);
238 return;
239 }
240
241 // Look at addrec operands.
242 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S))
243 if (!AR->getStart()->isZero()) {
244 DoInitialMatch(AR->getStart(), L, Good, Bad, SE, DT);
Dan Gohmandeff6212010-05-03 22:09:21 +0000245 DoInitialMatch(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
Dan Gohman572645c2010-02-12 10:34:29 +0000246 AR->getStepRecurrence(SE),
247 AR->getLoop()),
248 L, Good, Bad, SE, DT);
249 return;
250 }
251
252 // Handle a multiplication by -1 (negation) if it didn't fold.
253 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S))
254 if (Mul->getOperand(0)->isAllOnesValue()) {
255 SmallVector<const SCEV *, 4> Ops(Mul->op_begin()+1, Mul->op_end());
256 const SCEV *NewMul = SE.getMulExpr(Ops);
257
258 SmallVector<const SCEV *, 4> MyGood;
259 SmallVector<const SCEV *, 4> MyBad;
260 DoInitialMatch(NewMul, L, MyGood, MyBad, SE, DT);
261 const SCEV *NegOne = SE.getSCEV(ConstantInt::getAllOnesValue(
262 SE.getEffectiveSCEVType(NewMul->getType())));
263 for (SmallVectorImpl<const SCEV *>::const_iterator I = MyGood.begin(),
264 E = MyGood.end(); I != E; ++I)
265 Good.push_back(SE.getMulExpr(NegOne, *I));
266 for (SmallVectorImpl<const SCEV *>::const_iterator I = MyBad.begin(),
267 E = MyBad.end(); I != E; ++I)
268 Bad.push_back(SE.getMulExpr(NegOne, *I));
269 return;
270 }
271
272 // Ok, we can't do anything interesting. Just stuff the whole thing into a
273 // register and hope for the best.
274 Bad.push_back(S);
275}
276
277/// InitialMatch - Incorporate loop-variant parts of S into this Formula,
278/// attempting to keep all loop-invariant and loop-computable values in a
279/// single base register.
280void Formula::InitialMatch(const SCEV *S, Loop *L,
281 ScalarEvolution &SE, DominatorTree &DT) {
282 SmallVector<const SCEV *, 4> Good;
283 SmallVector<const SCEV *, 4> Bad;
284 DoInitialMatch(S, L, Good, Bad, SE, DT);
285 if (!Good.empty()) {
Dan Gohmane60bb152010-04-08 23:36:27 +0000286 const SCEV *Sum = SE.getAddExpr(Good);
287 if (!Sum->isZero())
288 BaseRegs.push_back(Sum);
Dan Gohman572645c2010-02-12 10:34:29 +0000289 AM.HasBaseReg = true;
290 }
291 if (!Bad.empty()) {
Dan Gohmane60bb152010-04-08 23:36:27 +0000292 const SCEV *Sum = SE.getAddExpr(Bad);
293 if (!Sum->isZero())
294 BaseRegs.push_back(Sum);
Dan Gohman572645c2010-02-12 10:34:29 +0000295 AM.HasBaseReg = true;
296 }
297}
298
299/// getNumRegs - Return the total number of register operands used by this
300/// formula. This does not include register uses implied by non-constant
301/// addrec strides.
302unsigned Formula::getNumRegs() const {
303 return !!ScaledReg + BaseRegs.size();
304}
305
306/// getType - Return the type of this formula, if it has one, or null
307/// otherwise. This type is meaningless except for the bit size.
308const Type *Formula::getType() const {
309 return !BaseRegs.empty() ? BaseRegs.front()->getType() :
310 ScaledReg ? ScaledReg->getType() :
311 AM.BaseGV ? AM.BaseGV->getType() :
312 0;
313}
314
Dan Gohman5ce6d052010-05-20 15:17:54 +0000315/// DeleteBaseReg - Delete the given base reg from the BaseRegs list.
316void Formula::DeleteBaseReg(const SCEV *&S) {
317 if (&S != &BaseRegs.back())
318 std::swap(S, BaseRegs.back());
319 BaseRegs.pop_back();
320}
321
Dan Gohman572645c2010-02-12 10:34:29 +0000322/// referencesReg - Test if this formula references the given register.
323bool Formula::referencesReg(const SCEV *S) const {
324 return S == ScaledReg ||
325 std::find(BaseRegs.begin(), BaseRegs.end(), S) != BaseRegs.end();
326}
327
328/// hasRegsUsedByUsesOtherThan - Test whether this formula uses registers
329/// which are used by uses other than the use with the given index.
330bool Formula::hasRegsUsedByUsesOtherThan(size_t LUIdx,
331 const RegUseTracker &RegUses) const {
332 if (ScaledReg)
333 if (RegUses.isRegUsedByUsesOtherThan(ScaledReg, LUIdx))
334 return true;
335 for (SmallVectorImpl<const SCEV *>::const_iterator I = BaseRegs.begin(),
336 E = BaseRegs.end(); I != E; ++I)
337 if (RegUses.isRegUsedByUsesOtherThan(*I, LUIdx))
338 return true;
339 return false;
340}
341
342void Formula::print(raw_ostream &OS) const {
343 bool First = true;
344 if (AM.BaseGV) {
345 if (!First) OS << " + "; else First = false;
346 WriteAsOperand(OS, AM.BaseGV, /*PrintType=*/false);
347 }
348 if (AM.BaseOffs != 0) {
349 if (!First) OS << " + "; else First = false;
350 OS << AM.BaseOffs;
351 }
352 for (SmallVectorImpl<const SCEV *>::const_iterator I = BaseRegs.begin(),
353 E = BaseRegs.end(); I != E; ++I) {
354 if (!First) OS << " + "; else First = false;
355 OS << "reg(" << **I << ')';
356 }
Dan Gohmanc4cfbaf2010-05-18 22:35:55 +0000357 if (AM.HasBaseReg && BaseRegs.empty()) {
358 if (!First) OS << " + "; else First = false;
359 OS << "**error: HasBaseReg**";
360 } else if (!AM.HasBaseReg && !BaseRegs.empty()) {
361 if (!First) OS << " + "; else First = false;
362 OS << "**error: !HasBaseReg**";
363 }
Dan Gohman572645c2010-02-12 10:34:29 +0000364 if (AM.Scale != 0) {
365 if (!First) OS << " + "; else First = false;
366 OS << AM.Scale << "*reg(";
367 if (ScaledReg)
368 OS << *ScaledReg;
369 else
370 OS << "<unknown>";
371 OS << ')';
372 }
373}
374
375void Formula::dump() const {
376 print(errs()); errs() << '\n';
377}
378
Dan Gohmanaae01f12010-02-19 19:32:49 +0000379/// isAddRecSExtable - Return true if the given addrec can be sign-extended
380/// without changing its value.
381static bool isAddRecSExtable(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
382 const Type *WideTy =
Dan Gohmanea507f52010-05-20 19:44:23 +0000383 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(AR->getType()) + 1);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000384 return isa<SCEVAddRecExpr>(SE.getSignExtendExpr(AR, WideTy));
385}
386
387/// isAddSExtable - Return true if the given add can be sign-extended
388/// without changing its value.
389static bool isAddSExtable(const SCEVAddExpr *A, ScalarEvolution &SE) {
390 const Type *WideTy =
Dan Gohmanea507f52010-05-20 19:44:23 +0000391 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(A->getType()) + 1);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000392 return isa<SCEVAddExpr>(SE.getSignExtendExpr(A, WideTy));
393}
394
Dan Gohman473e6352010-06-24 16:45:11 +0000395/// isMulSExtable - Return true if the given mul can be sign-extended
Dan Gohmanaae01f12010-02-19 19:32:49 +0000396/// without changing its value.
Dan Gohman473e6352010-06-24 16:45:11 +0000397static bool isMulSExtable(const SCEVMulExpr *M, ScalarEvolution &SE) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000398 const Type *WideTy =
Dan Gohman473e6352010-06-24 16:45:11 +0000399 IntegerType::get(SE.getContext(),
400 SE.getTypeSizeInBits(M->getType()) * M->getNumOperands());
401 return isa<SCEVMulExpr>(SE.getSignExtendExpr(M, WideTy));
Dan Gohmanaae01f12010-02-19 19:32:49 +0000402}
403
Dan Gohmanf09b7122010-02-19 19:35:48 +0000404/// getExactSDiv - Return an expression for LHS /s RHS, if it can be determined
405/// and if the remainder is known to be zero, or null otherwise. If
406/// IgnoreSignificantBits is true, expressions like (X * Y) /s Y are simplified
407/// to Y, ignoring that the multiplication may overflow, which is useful when
408/// the result will be used in a context where the most significant bits are
409/// ignored.
410static const SCEV *getExactSDiv(const SCEV *LHS, const SCEV *RHS,
411 ScalarEvolution &SE,
412 bool IgnoreSignificantBits = false) {
Dan Gohman572645c2010-02-12 10:34:29 +0000413 // Handle the trivial case, which works for any SCEV type.
414 if (LHS == RHS)
Dan Gohmandeff6212010-05-03 22:09:21 +0000415 return SE.getConstant(LHS->getType(), 1);
Dan Gohman572645c2010-02-12 10:34:29 +0000416
Dan Gohmand42819a2010-06-24 16:51:25 +0000417 // Handle a few RHS special cases.
418 const SCEVConstant *RC = dyn_cast<SCEVConstant>(RHS);
419 if (RC) {
420 const APInt &RA = RC->getValue()->getValue();
421 // Handle x /s -1 as x * -1, to give ScalarEvolution a chance to do
422 // some folding.
423 if (RA.isAllOnesValue())
424 return SE.getMulExpr(LHS, RC);
425 // Handle x /s 1 as x.
426 if (RA == 1)
427 return LHS;
428 }
Dan Gohman572645c2010-02-12 10:34:29 +0000429
430 // Check for a division of a constant by a constant.
431 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(LHS)) {
Dan Gohman572645c2010-02-12 10:34:29 +0000432 if (!RC)
433 return 0;
Dan Gohmand42819a2010-06-24 16:51:25 +0000434 const APInt &LA = C->getValue()->getValue();
435 const APInt &RA = RC->getValue()->getValue();
436 if (LA.srem(RA) != 0)
Dan Gohman572645c2010-02-12 10:34:29 +0000437 return 0;
Dan Gohmand42819a2010-06-24 16:51:25 +0000438 return SE.getConstant(LA.sdiv(RA));
Dan Gohman572645c2010-02-12 10:34:29 +0000439 }
440
Dan Gohmanaae01f12010-02-19 19:32:49 +0000441 // Distribute the sdiv over addrec operands, if the addrec doesn't overflow.
Dan Gohman572645c2010-02-12 10:34:29 +0000442 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000443 if (IgnoreSignificantBits || isAddRecSExtable(AR, SE)) {
Dan Gohmanf09b7122010-02-19 19:35:48 +0000444 const SCEV *Start = getExactSDiv(AR->getStart(), RHS, SE,
445 IgnoreSignificantBits);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000446 if (!Start) return 0;
Dan Gohmanf09b7122010-02-19 19:35:48 +0000447 const SCEV *Step = getExactSDiv(AR->getStepRecurrence(SE), RHS, SE,
448 IgnoreSignificantBits);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000449 if (!Step) return 0;
450 return SE.getAddRecExpr(Start, Step, AR->getLoop());
451 }
Dan Gohman572645c2010-02-12 10:34:29 +0000452 }
453
Dan Gohmanaae01f12010-02-19 19:32:49 +0000454 // Distribute the sdiv over add operands, if the add doesn't overflow.
Dan Gohman572645c2010-02-12 10:34:29 +0000455 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000456 if (IgnoreSignificantBits || isAddSExtable(Add, SE)) {
457 SmallVector<const SCEV *, 8> Ops;
458 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
459 I != E; ++I) {
Dan Gohmanf09b7122010-02-19 19:35:48 +0000460 const SCEV *Op = getExactSDiv(*I, RHS, SE,
461 IgnoreSignificantBits);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000462 if (!Op) return 0;
463 Ops.push_back(Op);
464 }
465 return SE.getAddExpr(Ops);
Dan Gohman572645c2010-02-12 10:34:29 +0000466 }
Dan Gohman572645c2010-02-12 10:34:29 +0000467 }
468
469 // Check for a multiply operand that we can pull RHS out of.
470 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(LHS))
Dan Gohmanaae01f12010-02-19 19:32:49 +0000471 if (IgnoreSignificantBits || isMulSExtable(Mul, SE)) {
Dan Gohman572645c2010-02-12 10:34:29 +0000472 SmallVector<const SCEV *, 4> Ops;
473 bool Found = false;
474 for (SCEVMulExpr::op_iterator I = Mul->op_begin(), E = Mul->op_end();
475 I != E; ++I) {
Dan Gohman47667442010-05-20 16:23:28 +0000476 const SCEV *S = *I;
Dan Gohman572645c2010-02-12 10:34:29 +0000477 if (!Found)
Dan Gohman47667442010-05-20 16:23:28 +0000478 if (const SCEV *Q = getExactSDiv(S, RHS, SE,
Dan Gohmanf09b7122010-02-19 19:35:48 +0000479 IgnoreSignificantBits)) {
Dan Gohman47667442010-05-20 16:23:28 +0000480 S = Q;
Dan Gohman572645c2010-02-12 10:34:29 +0000481 Found = true;
Dan Gohman572645c2010-02-12 10:34:29 +0000482 }
Dan Gohman47667442010-05-20 16:23:28 +0000483 Ops.push_back(S);
Dan Gohman572645c2010-02-12 10:34:29 +0000484 }
485 return Found ? SE.getMulExpr(Ops) : 0;
486 }
487
488 // Otherwise we don't know.
489 return 0;
490}
491
492/// ExtractImmediate - If S involves the addition of a constant integer value,
493/// return that integer value, and mutate S to point to a new SCEV with that
494/// value excluded.
495static int64_t ExtractImmediate(const SCEV *&S, ScalarEvolution &SE) {
496 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) {
497 if (C->getValue()->getValue().getMinSignedBits() <= 64) {
Dan Gohmandeff6212010-05-03 22:09:21 +0000498 S = SE.getConstant(C->getType(), 0);
Dan Gohman572645c2010-02-12 10:34:29 +0000499 return C->getValue()->getSExtValue();
500 }
501 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
502 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
503 int64_t Result = ExtractImmediate(NewOps.front(), SE);
504 S = SE.getAddExpr(NewOps);
505 return Result;
506 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
507 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
508 int64_t Result = ExtractImmediate(NewOps.front(), SE);
509 S = SE.getAddRecExpr(NewOps, AR->getLoop());
510 return Result;
511 }
512 return 0;
513}
514
515/// ExtractSymbol - If S involves the addition of a GlobalValue address,
516/// return that symbol, and mutate S to point to a new SCEV with that
517/// value excluded.
518static GlobalValue *ExtractSymbol(const SCEV *&S, ScalarEvolution &SE) {
519 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
520 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue())) {
Dan Gohmandeff6212010-05-03 22:09:21 +0000521 S = SE.getConstant(GV->getType(), 0);
Dan Gohman572645c2010-02-12 10:34:29 +0000522 return GV;
523 }
524 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
525 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
526 GlobalValue *Result = ExtractSymbol(NewOps.back(), SE);
527 S = SE.getAddExpr(NewOps);
528 return Result;
529 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
530 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
531 GlobalValue *Result = ExtractSymbol(NewOps.front(), SE);
532 S = SE.getAddRecExpr(NewOps, AR->getLoop());
533 return Result;
534 }
535 return 0;
Nate Begemaneaa13852004-10-18 21:08:22 +0000536}
537
Dan Gohmanf284ce22009-02-18 00:08:39 +0000538/// isAddressUse - Returns true if the specified instruction is using the
Dale Johannesen203af582008-12-05 21:47:27 +0000539/// specified value as an address.
540static bool isAddressUse(Instruction *Inst, Value *OperandVal) {
541 bool isAddress = isa<LoadInst>(Inst);
542 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
543 if (SI->getOperand(1) == OperandVal)
544 isAddress = true;
545 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
546 // Addressing modes can also be folded into prefetches and a variety
547 // of intrinsics.
548 switch (II->getIntrinsicID()) {
549 default: break;
550 case Intrinsic::prefetch:
551 case Intrinsic::x86_sse2_loadu_dq:
552 case Intrinsic::x86_sse2_loadu_pd:
553 case Intrinsic::x86_sse_loadu_ps:
554 case Intrinsic::x86_sse_storeu_ps:
555 case Intrinsic::x86_sse2_storeu_pd:
556 case Intrinsic::x86_sse2_storeu_dq:
557 case Intrinsic::x86_sse2_storel_dq:
558 if (II->getOperand(1) == OperandVal)
559 isAddress = true;
560 break;
561 }
562 }
563 return isAddress;
564}
Chris Lattner0ae33eb2005-10-03 01:04:44 +0000565
Dan Gohman21e77222009-03-09 21:01:17 +0000566/// getAccessType - Return the type of the memory being accessed.
567static const Type *getAccessType(const Instruction *Inst) {
Dan Gohmana537bf82009-05-18 16:45:28 +0000568 const Type *AccessTy = Inst->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000569 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst))
Dan Gohmana537bf82009-05-18 16:45:28 +0000570 AccessTy = SI->getOperand(0)->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000571 else if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
572 // Addressing modes can also be folded into prefetches and a variety
573 // of intrinsics.
574 switch (II->getIntrinsicID()) {
575 default: break;
576 case Intrinsic::x86_sse_storeu_ps:
577 case Intrinsic::x86_sse2_storeu_pd:
578 case Intrinsic::x86_sse2_storeu_dq:
579 case Intrinsic::x86_sse2_storel_dq:
Dan Gohmana537bf82009-05-18 16:45:28 +0000580 AccessTy = II->getOperand(1)->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000581 break;
582 }
583 }
Dan Gohman572645c2010-02-12 10:34:29 +0000584
585 // All pointers have the same requirements, so canonicalize them to an
586 // arbitrary pointer type to minimize variation.
587 if (const PointerType *PTy = dyn_cast<PointerType>(AccessTy))
588 AccessTy = PointerType::get(IntegerType::get(PTy->getContext(), 1),
589 PTy->getAddressSpace());
590
Dan Gohmana537bf82009-05-18 16:45:28 +0000591 return AccessTy;
Dan Gohman21e77222009-03-09 21:01:17 +0000592}
593
Dan Gohman572645c2010-02-12 10:34:29 +0000594/// DeleteTriviallyDeadInstructions - If any of the instructions is the
595/// specified set are trivially dead, delete them and see if this makes any of
596/// their operands subsequently dead.
597static bool
598DeleteTriviallyDeadInstructions(SmallVectorImpl<WeakVH> &DeadInsts) {
599 bool Changed = false;
600
601 while (!DeadInsts.empty()) {
602 Instruction *I = dyn_cast_or_null<Instruction>(DeadInsts.pop_back_val());
603
604 if (I == 0 || !isInstructionTriviallyDead(I))
605 continue;
606
607 for (User::op_iterator OI = I->op_begin(), E = I->op_end(); OI != E; ++OI)
608 if (Instruction *U = dyn_cast<Instruction>(*OI)) {
609 *OI = 0;
610 if (U->use_empty())
611 DeadInsts.push_back(U);
612 }
613
614 I->eraseFromParent();
615 Changed = true;
616 }
617
618 return Changed;
619}
620
Dan Gohman7979b722010-01-22 00:46:49 +0000621namespace {
Jim Grosbach56a1f802009-11-17 17:53:56 +0000622
Dan Gohman572645c2010-02-12 10:34:29 +0000623/// Cost - This class is used to measure and compare candidate formulae.
624class Cost {
625 /// TODO: Some of these could be merged. Also, a lexical ordering
626 /// isn't always optimal.
627 unsigned NumRegs;
628 unsigned AddRecCost;
629 unsigned NumIVMuls;
630 unsigned NumBaseAdds;
631 unsigned ImmCost;
632 unsigned SetupCost;
Nate Begeman16997482005-07-30 00:15:07 +0000633
Dan Gohman572645c2010-02-12 10:34:29 +0000634public:
635 Cost()
636 : NumRegs(0), AddRecCost(0), NumIVMuls(0), NumBaseAdds(0), ImmCost(0),
637 SetupCost(0) {}
Jim Grosbach56a1f802009-11-17 17:53:56 +0000638
Dan Gohman572645c2010-02-12 10:34:29 +0000639 unsigned getNumRegs() const { return NumRegs; }
Dan Gohman7979b722010-01-22 00:46:49 +0000640
Dan Gohman572645c2010-02-12 10:34:29 +0000641 bool operator<(const Cost &Other) const;
Dan Gohman7979b722010-01-22 00:46:49 +0000642
Dan Gohman572645c2010-02-12 10:34:29 +0000643 void Loose();
Dan Gohman7979b722010-01-22 00:46:49 +0000644
Dan Gohman572645c2010-02-12 10:34:29 +0000645 void RateFormula(const Formula &F,
646 SmallPtrSet<const SCEV *, 16> &Regs,
647 const DenseSet<const SCEV *> &VisitedRegs,
648 const Loop *L,
649 const SmallVectorImpl<int64_t> &Offsets,
650 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman7979b722010-01-22 00:46:49 +0000651
Dan Gohman572645c2010-02-12 10:34:29 +0000652 void print(raw_ostream &OS) const;
653 void dump() const;
Dan Gohman7979b722010-01-22 00:46:49 +0000654
Dan Gohman572645c2010-02-12 10:34:29 +0000655private:
656 void RateRegister(const SCEV *Reg,
657 SmallPtrSet<const SCEV *, 16> &Regs,
658 const Loop *L,
659 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman9214b822010-02-13 02:06:02 +0000660 void RatePrimaryRegister(const SCEV *Reg,
661 SmallPtrSet<const SCEV *, 16> &Regs,
662 const Loop *L,
663 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000664};
665
666}
667
668/// RateRegister - Tally up interesting quantities from the given register.
669void Cost::RateRegister(const SCEV *Reg,
670 SmallPtrSet<const SCEV *, 16> &Regs,
671 const Loop *L,
672 ScalarEvolution &SE, DominatorTree &DT) {
Dan Gohman9214b822010-02-13 02:06:02 +0000673 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Reg)) {
674 if (AR->getLoop() == L)
675 AddRecCost += 1; /// TODO: This should be a function of the stride.
Dan Gohman572645c2010-02-12 10:34:29 +0000676
Dan Gohman9214b822010-02-13 02:06:02 +0000677 // If this is an addrec for a loop that's already been visited by LSR,
678 // don't second-guess its addrec phi nodes. LSR isn't currently smart
679 // enough to reason about more than one loop at a time. Consider these
680 // registers free and leave them alone.
681 else if (L->contains(AR->getLoop()) ||
682 (!AR->getLoop()->contains(L) &&
683 DT.dominates(L->getHeader(), AR->getLoop()->getHeader()))) {
684 for (BasicBlock::iterator I = AR->getLoop()->getHeader()->begin();
685 PHINode *PN = dyn_cast<PHINode>(I); ++I)
686 if (SE.isSCEVable(PN->getType()) &&
687 (SE.getEffectiveSCEVType(PN->getType()) ==
688 SE.getEffectiveSCEVType(AR->getType())) &&
689 SE.getSCEV(PN) == AR)
690 return;
Dan Gohman572645c2010-02-12 10:34:29 +0000691
Dan Gohman9214b822010-02-13 02:06:02 +0000692 // If this isn't one of the addrecs that the loop already has, it
693 // would require a costly new phi and add. TODO: This isn't
694 // precisely modeled right now.
695 ++NumBaseAdds;
696 if (!Regs.count(AR->getStart()))
Dan Gohman572645c2010-02-12 10:34:29 +0000697 RateRegister(AR->getStart(), Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000698 }
Dan Gohman572645c2010-02-12 10:34:29 +0000699
Dan Gohman9214b822010-02-13 02:06:02 +0000700 // Add the step value register, if it needs one.
701 // TODO: The non-affine case isn't precisely modeled here.
702 if (!AR->isAffine() || !isa<SCEVConstant>(AR->getOperand(1)))
703 if (!Regs.count(AR->getStart()))
704 RateRegister(AR->getOperand(1), Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000705 }
Dan Gohman9214b822010-02-13 02:06:02 +0000706 ++NumRegs;
707
708 // Rough heuristic; favor registers which don't require extra setup
709 // instructions in the preheader.
710 if (!isa<SCEVUnknown>(Reg) &&
711 !isa<SCEVConstant>(Reg) &&
712 !(isa<SCEVAddRecExpr>(Reg) &&
713 (isa<SCEVUnknown>(cast<SCEVAddRecExpr>(Reg)->getStart()) ||
714 isa<SCEVConstant>(cast<SCEVAddRecExpr>(Reg)->getStart()))))
715 ++SetupCost;
716}
717
718/// RatePrimaryRegister - Record this register in the set. If we haven't seen it
719/// before, rate it.
720void Cost::RatePrimaryRegister(const SCEV *Reg,
Dan Gohman7fca2292010-02-16 19:42:34 +0000721 SmallPtrSet<const SCEV *, 16> &Regs,
722 const Loop *L,
723 ScalarEvolution &SE, DominatorTree &DT) {
Dan Gohman9214b822010-02-13 02:06:02 +0000724 if (Regs.insert(Reg))
725 RateRegister(Reg, Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000726}
727
728void Cost::RateFormula(const Formula &F,
729 SmallPtrSet<const SCEV *, 16> &Regs,
730 const DenseSet<const SCEV *> &VisitedRegs,
731 const Loop *L,
732 const SmallVectorImpl<int64_t> &Offsets,
733 ScalarEvolution &SE, DominatorTree &DT) {
734 // Tally up the registers.
735 if (const SCEV *ScaledReg = F.ScaledReg) {
736 if (VisitedRegs.count(ScaledReg)) {
737 Loose();
738 return;
739 }
Dan Gohman9214b822010-02-13 02:06:02 +0000740 RatePrimaryRegister(ScaledReg, Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000741 }
742 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
743 E = F.BaseRegs.end(); I != E; ++I) {
744 const SCEV *BaseReg = *I;
745 if (VisitedRegs.count(BaseReg)) {
746 Loose();
747 return;
748 }
Dan Gohman9214b822010-02-13 02:06:02 +0000749 RatePrimaryRegister(BaseReg, Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000750
751 NumIVMuls += isa<SCEVMulExpr>(BaseReg) &&
752 BaseReg->hasComputableLoopEvolution(L);
753 }
754
755 if (F.BaseRegs.size() > 1)
756 NumBaseAdds += F.BaseRegs.size() - 1;
757
758 // Tally up the non-zero immediates.
759 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
760 E = Offsets.end(); I != E; ++I) {
761 int64_t Offset = (uint64_t)*I + F.AM.BaseOffs;
762 if (F.AM.BaseGV)
763 ImmCost += 64; // Handle symbolic values conservatively.
764 // TODO: This should probably be the pointer size.
765 else if (Offset != 0)
766 ImmCost += APInt(64, Offset, true).getMinSignedBits();
767 }
768}
769
770/// Loose - Set this cost to a loosing value.
771void Cost::Loose() {
772 NumRegs = ~0u;
773 AddRecCost = ~0u;
774 NumIVMuls = ~0u;
775 NumBaseAdds = ~0u;
776 ImmCost = ~0u;
777 SetupCost = ~0u;
778}
779
780/// operator< - Choose the lower cost.
781bool Cost::operator<(const Cost &Other) const {
782 if (NumRegs != Other.NumRegs)
783 return NumRegs < Other.NumRegs;
784 if (AddRecCost != Other.AddRecCost)
785 return AddRecCost < Other.AddRecCost;
786 if (NumIVMuls != Other.NumIVMuls)
787 return NumIVMuls < Other.NumIVMuls;
788 if (NumBaseAdds != Other.NumBaseAdds)
789 return NumBaseAdds < Other.NumBaseAdds;
790 if (ImmCost != Other.ImmCost)
791 return ImmCost < Other.ImmCost;
792 if (SetupCost != Other.SetupCost)
793 return SetupCost < Other.SetupCost;
794 return false;
795}
796
797void Cost::print(raw_ostream &OS) const {
798 OS << NumRegs << " reg" << (NumRegs == 1 ? "" : "s");
799 if (AddRecCost != 0)
800 OS << ", with addrec cost " << AddRecCost;
801 if (NumIVMuls != 0)
802 OS << ", plus " << NumIVMuls << " IV mul" << (NumIVMuls == 1 ? "" : "s");
803 if (NumBaseAdds != 0)
804 OS << ", plus " << NumBaseAdds << " base add"
805 << (NumBaseAdds == 1 ? "" : "s");
806 if (ImmCost != 0)
807 OS << ", plus " << ImmCost << " imm cost";
808 if (SetupCost != 0)
809 OS << ", plus " << SetupCost << " setup cost";
810}
811
812void Cost::dump() const {
813 print(errs()); errs() << '\n';
814}
815
816namespace {
817
818/// LSRFixup - An operand value in an instruction which is to be replaced
819/// with some equivalent, possibly strength-reduced, replacement.
820struct LSRFixup {
821 /// UserInst - The instruction which will be updated.
822 Instruction *UserInst;
823
824 /// OperandValToReplace - The operand of the instruction which will
825 /// be replaced. The operand may be used more than once; every instance
826 /// will be replaced.
827 Value *OperandValToReplace;
828
Dan Gohman448db1c2010-04-07 22:27:08 +0000829 /// PostIncLoops - If this user is to use the post-incremented value of an
Dan Gohman572645c2010-02-12 10:34:29 +0000830 /// induction variable, this variable is non-null and holds the loop
831 /// associated with the induction variable.
Dan Gohman448db1c2010-04-07 22:27:08 +0000832 PostIncLoopSet PostIncLoops;
Dan Gohman572645c2010-02-12 10:34:29 +0000833
834 /// LUIdx - The index of the LSRUse describing the expression which
835 /// this fixup needs, minus an offset (below).
836 size_t LUIdx;
837
838 /// Offset - A constant offset to be added to the LSRUse expression.
839 /// This allows multiple fixups to share the same LSRUse with different
840 /// offsets, for example in an unrolled loop.
841 int64_t Offset;
842
Dan Gohman448db1c2010-04-07 22:27:08 +0000843 bool isUseFullyOutsideLoop(const Loop *L) const;
844
Dan Gohman572645c2010-02-12 10:34:29 +0000845 LSRFixup();
846
847 void print(raw_ostream &OS) const;
848 void dump() const;
849};
850
851}
852
853LSRFixup::LSRFixup()
Dan Gohmanea507f52010-05-20 19:44:23 +0000854 : UserInst(0), OperandValToReplace(0), LUIdx(~size_t(0)), Offset(0) {}
Dan Gohman572645c2010-02-12 10:34:29 +0000855
Dan Gohman448db1c2010-04-07 22:27:08 +0000856/// isUseFullyOutsideLoop - Test whether this fixup always uses its
857/// value outside of the given loop.
858bool LSRFixup::isUseFullyOutsideLoop(const Loop *L) const {
859 // PHI nodes use their value in their incoming blocks.
860 if (const PHINode *PN = dyn_cast<PHINode>(UserInst)) {
861 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
862 if (PN->getIncomingValue(i) == OperandValToReplace &&
863 L->contains(PN->getIncomingBlock(i)))
864 return false;
865 return true;
866 }
867
868 return !L->contains(UserInst);
869}
870
Dan Gohman572645c2010-02-12 10:34:29 +0000871void LSRFixup::print(raw_ostream &OS) const {
872 OS << "UserInst=";
873 // Store is common and interesting enough to be worth special-casing.
874 if (StoreInst *Store = dyn_cast<StoreInst>(UserInst)) {
875 OS << "store ";
876 WriteAsOperand(OS, Store->getOperand(0), /*PrintType=*/false);
877 } else if (UserInst->getType()->isVoidTy())
878 OS << UserInst->getOpcodeName();
879 else
880 WriteAsOperand(OS, UserInst, /*PrintType=*/false);
881
882 OS << ", OperandValToReplace=";
883 WriteAsOperand(OS, OperandValToReplace, /*PrintType=*/false);
884
Dan Gohman448db1c2010-04-07 22:27:08 +0000885 for (PostIncLoopSet::const_iterator I = PostIncLoops.begin(),
886 E = PostIncLoops.end(); I != E; ++I) {
Dan Gohman572645c2010-02-12 10:34:29 +0000887 OS << ", PostIncLoop=";
Dan Gohman448db1c2010-04-07 22:27:08 +0000888 WriteAsOperand(OS, (*I)->getHeader(), /*PrintType=*/false);
Dan Gohman572645c2010-02-12 10:34:29 +0000889 }
890
891 if (LUIdx != ~size_t(0))
892 OS << ", LUIdx=" << LUIdx;
893
894 if (Offset != 0)
895 OS << ", Offset=" << Offset;
896}
897
898void LSRFixup::dump() const {
899 print(errs()); errs() << '\n';
900}
901
902namespace {
903
904/// UniquifierDenseMapInfo - A DenseMapInfo implementation for holding
905/// DenseMaps and DenseSets of sorted SmallVectors of const SCEV*.
906struct UniquifierDenseMapInfo {
907 static SmallVector<const SCEV *, 2> getEmptyKey() {
908 SmallVector<const SCEV *, 2> V;
909 V.push_back(reinterpret_cast<const SCEV *>(-1));
910 return V;
911 }
912
913 static SmallVector<const SCEV *, 2> getTombstoneKey() {
914 SmallVector<const SCEV *, 2> V;
915 V.push_back(reinterpret_cast<const SCEV *>(-2));
916 return V;
917 }
918
919 static unsigned getHashValue(const SmallVector<const SCEV *, 2> &V) {
920 unsigned Result = 0;
921 for (SmallVectorImpl<const SCEV *>::const_iterator I = V.begin(),
922 E = V.end(); I != E; ++I)
923 Result ^= DenseMapInfo<const SCEV *>::getHashValue(*I);
924 return Result;
925 }
926
927 static bool isEqual(const SmallVector<const SCEV *, 2> &LHS,
928 const SmallVector<const SCEV *, 2> &RHS) {
929 return LHS == RHS;
930 }
931};
932
933/// LSRUse - This class holds the state that LSR keeps for each use in
934/// IVUsers, as well as uses invented by LSR itself. It includes information
935/// about what kinds of things can be folded into the user, information about
936/// the user itself, and information about how the use may be satisfied.
937/// TODO: Represent multiple users of the same expression in common?
938class LSRUse {
939 DenseSet<SmallVector<const SCEV *, 2>, UniquifierDenseMapInfo> Uniquifier;
940
941public:
942 /// KindType - An enum for a kind of use, indicating what types of
943 /// scaled and immediate operands it might support.
944 enum KindType {
945 Basic, ///< A normal use, with no folding.
946 Special, ///< A special case of basic, allowing -1 scales.
947 Address, ///< An address use; folding according to TargetLowering
948 ICmpZero ///< An equality icmp with both operands folded into one.
949 // TODO: Add a generic icmp too?
Dan Gohman7979b722010-01-22 00:46:49 +0000950 };
Dan Gohman572645c2010-02-12 10:34:29 +0000951
952 KindType Kind;
953 const Type *AccessTy;
954
955 SmallVector<int64_t, 8> Offsets;
956 int64_t MinOffset;
957 int64_t MaxOffset;
958
959 /// AllFixupsOutsideLoop - This records whether all of the fixups using this
960 /// LSRUse are outside of the loop, in which case some special-case heuristics
961 /// may be used.
962 bool AllFixupsOutsideLoop;
963
964 /// Formulae - A list of ways to build a value that can satisfy this user.
965 /// After the list is populated, one of these is selected heuristically and
966 /// used to formulate a replacement for OperandValToReplace in UserInst.
967 SmallVector<Formula, 12> Formulae;
968
969 /// Regs - The set of register candidates used by all formulae in this LSRUse.
970 SmallPtrSet<const SCEV *, 4> Regs;
971
972 LSRUse(KindType K, const Type *T) : Kind(K), AccessTy(T),
973 MinOffset(INT64_MAX),
974 MaxOffset(INT64_MIN),
975 AllFixupsOutsideLoop(true) {}
976
Dan Gohmana2086b32010-05-19 23:43:12 +0000977 bool HasFormulaWithSameRegs(const Formula &F) const;
Dan Gohman454d26d2010-02-22 04:11:59 +0000978 bool InsertFormula(const Formula &F);
Dan Gohmand69d6282010-05-18 22:39:15 +0000979 void DeleteFormula(Formula &F);
Dan Gohmanb2df4332010-05-18 23:42:37 +0000980 void RecomputeRegs(size_t LUIdx, RegUseTracker &Reguses);
Dan Gohman572645c2010-02-12 10:34:29 +0000981
982 void check() const;
983
984 void print(raw_ostream &OS) const;
985 void dump() const;
986};
987
Dan Gohmanb6211712010-06-19 21:21:39 +0000988}
989
Dan Gohmana2086b32010-05-19 23:43:12 +0000990/// HasFormula - Test whether this use as a formula which has the same
991/// registers as the given formula.
992bool LSRUse::HasFormulaWithSameRegs(const Formula &F) const {
993 SmallVector<const SCEV *, 2> Key = F.BaseRegs;
994 if (F.ScaledReg) Key.push_back(F.ScaledReg);
995 // Unstable sort by host order ok, because this is only used for uniquifying.
996 std::sort(Key.begin(), Key.end());
997 return Uniquifier.count(Key);
998}
999
Dan Gohman572645c2010-02-12 10:34:29 +00001000/// InsertFormula - If the given formula has not yet been inserted, add it to
1001/// the list, and return true. Return false otherwise.
Dan Gohman454d26d2010-02-22 04:11:59 +00001002bool LSRUse::InsertFormula(const Formula &F) {
Dan Gohman572645c2010-02-12 10:34:29 +00001003 SmallVector<const SCEV *, 2> Key = F.BaseRegs;
1004 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1005 // Unstable sort by host order ok, because this is only used for uniquifying.
1006 std::sort(Key.begin(), Key.end());
1007
1008 if (!Uniquifier.insert(Key).second)
1009 return false;
1010
1011 // Using a register to hold the value of 0 is not profitable.
1012 assert((!F.ScaledReg || !F.ScaledReg->isZero()) &&
1013 "Zero allocated in a scaled register!");
1014#ifndef NDEBUG
1015 for (SmallVectorImpl<const SCEV *>::const_iterator I =
1016 F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I)
1017 assert(!(*I)->isZero() && "Zero allocated in a base register!");
1018#endif
1019
1020 // Add the formula to the list.
1021 Formulae.push_back(F);
1022
1023 // Record registers now being used by this use.
1024 if (F.ScaledReg) Regs.insert(F.ScaledReg);
1025 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1026
1027 return true;
Dan Gohman7979b722010-01-22 00:46:49 +00001028}
1029
Dan Gohmand69d6282010-05-18 22:39:15 +00001030/// DeleteFormula - Remove the given formula from this use's list.
1031void LSRUse::DeleteFormula(Formula &F) {
Dan Gohman5ce6d052010-05-20 15:17:54 +00001032 if (&F != &Formulae.back())
1033 std::swap(F, Formulae.back());
Dan Gohmand69d6282010-05-18 22:39:15 +00001034 Formulae.pop_back();
Dan Gohmana2086b32010-05-19 23:43:12 +00001035 assert(!Formulae.empty() && "LSRUse has no formulae left!");
Dan Gohmand69d6282010-05-18 22:39:15 +00001036}
1037
Dan Gohmanb2df4332010-05-18 23:42:37 +00001038/// RecomputeRegs - Recompute the Regs field, and update RegUses.
1039void LSRUse::RecomputeRegs(size_t LUIdx, RegUseTracker &RegUses) {
1040 // Now that we've filtered out some formulae, recompute the Regs set.
1041 SmallPtrSet<const SCEV *, 4> OldRegs = Regs;
1042 Regs.clear();
Dan Gohman402d4352010-05-20 20:33:18 +00001043 for (SmallVectorImpl<Formula>::const_iterator I = Formulae.begin(),
1044 E = Formulae.end(); I != E; ++I) {
1045 const Formula &F = *I;
Dan Gohmanb2df4332010-05-18 23:42:37 +00001046 if (F.ScaledReg) Regs.insert(F.ScaledReg);
1047 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1048 }
1049
1050 // Update the RegTracker.
1051 for (SmallPtrSet<const SCEV *, 4>::iterator I = OldRegs.begin(),
1052 E = OldRegs.end(); I != E; ++I)
1053 if (!Regs.count(*I))
1054 RegUses.DropRegister(*I, LUIdx);
1055}
1056
Dan Gohman572645c2010-02-12 10:34:29 +00001057void LSRUse::print(raw_ostream &OS) const {
1058 OS << "LSR Use: Kind=";
1059 switch (Kind) {
1060 case Basic: OS << "Basic"; break;
1061 case Special: OS << "Special"; break;
1062 case ICmpZero: OS << "ICmpZero"; break;
1063 case Address:
1064 OS << "Address of ";
Duncan Sands1df98592010-02-16 11:11:14 +00001065 if (AccessTy->isPointerTy())
Dan Gohman572645c2010-02-12 10:34:29 +00001066 OS << "pointer"; // the full pointer type could be really verbose
1067 else
1068 OS << *AccessTy;
Evan Chengcdf43b12007-10-25 09:11:16 +00001069 }
1070
Dan Gohman572645c2010-02-12 10:34:29 +00001071 OS << ", Offsets={";
1072 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
1073 E = Offsets.end(); I != E; ++I) {
1074 OS << *I;
1075 if (next(I) != E)
1076 OS << ',';
Dan Gohman7979b722010-01-22 00:46:49 +00001077 }
Dan Gohman572645c2010-02-12 10:34:29 +00001078 OS << '}';
Dan Gohman7979b722010-01-22 00:46:49 +00001079
Dan Gohman572645c2010-02-12 10:34:29 +00001080 if (AllFixupsOutsideLoop)
1081 OS << ", all-fixups-outside-loop";
Dan Gohman7979b722010-01-22 00:46:49 +00001082}
1083
Dan Gohman572645c2010-02-12 10:34:29 +00001084void LSRUse::dump() const {
1085 print(errs()); errs() << '\n';
1086}
Dan Gohman7979b722010-01-22 00:46:49 +00001087
Dan Gohman572645c2010-02-12 10:34:29 +00001088/// isLegalUse - Test whether the use described by AM is "legal", meaning it can
1089/// be completely folded into the user instruction at isel time. This includes
1090/// address-mode folding and special icmp tricks.
1091static bool isLegalUse(const TargetLowering::AddrMode &AM,
1092 LSRUse::KindType Kind, const Type *AccessTy,
1093 const TargetLowering *TLI) {
1094 switch (Kind) {
1095 case LSRUse::Address:
1096 // If we have low-level target information, ask the target if it can
1097 // completely fold this address.
1098 if (TLI) return TLI->isLegalAddressingMode(AM, AccessTy);
1099
1100 // Otherwise, just guess that reg+reg addressing is legal.
1101 return !AM.BaseGV && AM.BaseOffs == 0 && AM.Scale <= 1;
1102
1103 case LSRUse::ICmpZero:
1104 // There's not even a target hook for querying whether it would be legal to
1105 // fold a GV into an ICmp.
1106 if (AM.BaseGV)
1107 return false;
1108
1109 // ICmp only has two operands; don't allow more than two non-trivial parts.
1110 if (AM.Scale != 0 && AM.HasBaseReg && AM.BaseOffs != 0)
1111 return false;
1112
1113 // ICmp only supports no scale or a -1 scale, as we can "fold" a -1 scale by
1114 // putting the scaled register in the other operand of the icmp.
1115 if (AM.Scale != 0 && AM.Scale != -1)
1116 return false;
1117
1118 // If we have low-level target information, ask the target if it can fold an
1119 // integer immediate on an icmp.
1120 if (AM.BaseOffs != 0) {
1121 if (TLI) return TLI->isLegalICmpImmediate(-AM.BaseOffs);
1122 return false;
Dan Gohman7979b722010-01-22 00:46:49 +00001123 }
Dan Gohman572645c2010-02-12 10:34:29 +00001124
1125 return true;
1126
1127 case LSRUse::Basic:
1128 // Only handle single-register values.
1129 return !AM.BaseGV && AM.Scale == 0 && AM.BaseOffs == 0;
1130
1131 case LSRUse::Special:
1132 // Only handle -1 scales, or no scale.
1133 return AM.Scale == 0 || AM.Scale == -1;
Dan Gohman7979b722010-01-22 00:46:49 +00001134 }
1135
Dan Gohman7979b722010-01-22 00:46:49 +00001136 return false;
1137}
1138
Dan Gohman572645c2010-02-12 10:34:29 +00001139static bool isLegalUse(TargetLowering::AddrMode AM,
1140 int64_t MinOffset, int64_t MaxOffset,
1141 LSRUse::KindType Kind, const Type *AccessTy,
1142 const TargetLowering *TLI) {
1143 // Check for overflow.
1144 if (((int64_t)((uint64_t)AM.BaseOffs + MinOffset) > AM.BaseOffs) !=
1145 (MinOffset > 0))
1146 return false;
1147 AM.BaseOffs = (uint64_t)AM.BaseOffs + MinOffset;
1148 if (isLegalUse(AM, Kind, AccessTy, TLI)) {
1149 AM.BaseOffs = (uint64_t)AM.BaseOffs - MinOffset;
1150 // Check for overflow.
1151 if (((int64_t)((uint64_t)AM.BaseOffs + MaxOffset) > AM.BaseOffs) !=
1152 (MaxOffset > 0))
1153 return false;
1154 AM.BaseOffs = (uint64_t)AM.BaseOffs + MaxOffset;
1155 return isLegalUse(AM, Kind, AccessTy, TLI);
Dan Gohman7979b722010-01-22 00:46:49 +00001156 }
Dan Gohman572645c2010-02-12 10:34:29 +00001157 return false;
Dan Gohman7979b722010-01-22 00:46:49 +00001158}
1159
Dan Gohman572645c2010-02-12 10:34:29 +00001160static bool isAlwaysFoldable(int64_t BaseOffs,
1161 GlobalValue *BaseGV,
1162 bool HasBaseReg,
1163 LSRUse::KindType Kind, const Type *AccessTy,
Dan Gohman454d26d2010-02-22 04:11:59 +00001164 const TargetLowering *TLI) {
Dan Gohman572645c2010-02-12 10:34:29 +00001165 // Fast-path: zero is always foldable.
1166 if (BaseOffs == 0 && !BaseGV) return true;
Dan Gohman7979b722010-01-22 00:46:49 +00001167
Dan Gohman572645c2010-02-12 10:34:29 +00001168 // Conservatively, create an address with an immediate and a
1169 // base and a scale.
1170 TargetLowering::AddrMode AM;
1171 AM.BaseOffs = BaseOffs;
1172 AM.BaseGV = BaseGV;
1173 AM.HasBaseReg = HasBaseReg;
1174 AM.Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman7979b722010-01-22 00:46:49 +00001175
Dan Gohmana2086b32010-05-19 23:43:12 +00001176 // Canonicalize a scale of 1 to a base register if the formula doesn't
1177 // already have a base register.
1178 if (!AM.HasBaseReg && AM.Scale == 1) {
1179 AM.Scale = 0;
1180 AM.HasBaseReg = true;
1181 }
1182
Dan Gohman572645c2010-02-12 10:34:29 +00001183 return isLegalUse(AM, Kind, AccessTy, TLI);
Dan Gohman7979b722010-01-22 00:46:49 +00001184}
1185
Dan Gohman572645c2010-02-12 10:34:29 +00001186static bool isAlwaysFoldable(const SCEV *S,
1187 int64_t MinOffset, int64_t MaxOffset,
1188 bool HasBaseReg,
1189 LSRUse::KindType Kind, const Type *AccessTy,
1190 const TargetLowering *TLI,
1191 ScalarEvolution &SE) {
1192 // Fast-path: zero is always foldable.
1193 if (S->isZero()) return true;
1194
1195 // Conservatively, create an address with an immediate and a
1196 // base and a scale.
1197 int64_t BaseOffs = ExtractImmediate(S, SE);
1198 GlobalValue *BaseGV = ExtractSymbol(S, SE);
1199
1200 // If there's anything else involved, it's not foldable.
1201 if (!S->isZero()) return false;
1202
1203 // Fast-path: zero is always foldable.
1204 if (BaseOffs == 0 && !BaseGV) return true;
1205
1206 // Conservatively, create an address with an immediate and a
1207 // base and a scale.
1208 TargetLowering::AddrMode AM;
1209 AM.BaseOffs = BaseOffs;
1210 AM.BaseGV = BaseGV;
1211 AM.HasBaseReg = HasBaseReg;
1212 AM.Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
1213
1214 return isLegalUse(AM, MinOffset, MaxOffset, Kind, AccessTy, TLI);
Dan Gohman7979b722010-01-22 00:46:49 +00001215}
1216
Dan Gohmanb6211712010-06-19 21:21:39 +00001217namespace {
1218
Dan Gohman1e3121c2010-06-19 21:29:59 +00001219/// UseMapDenseMapInfo - A DenseMapInfo implementation for holding
1220/// DenseMaps and DenseSets of pairs of const SCEV* and LSRUse::Kind.
1221struct UseMapDenseMapInfo {
1222 static std::pair<const SCEV *, LSRUse::KindType> getEmptyKey() {
1223 return std::make_pair(reinterpret_cast<const SCEV *>(-1), LSRUse::Basic);
1224 }
1225
1226 static std::pair<const SCEV *, LSRUse::KindType> getTombstoneKey() {
1227 return std::make_pair(reinterpret_cast<const SCEV *>(-2), LSRUse::Basic);
1228 }
1229
1230 static unsigned
1231 getHashValue(const std::pair<const SCEV *, LSRUse::KindType> &V) {
1232 unsigned Result = DenseMapInfo<const SCEV *>::getHashValue(V.first);
1233 Result ^= DenseMapInfo<unsigned>::getHashValue(unsigned(V.second));
1234 return Result;
1235 }
1236
1237 static bool isEqual(const std::pair<const SCEV *, LSRUse::KindType> &LHS,
1238 const std::pair<const SCEV *, LSRUse::KindType> &RHS) {
1239 return LHS == RHS;
1240 }
1241};
1242
Dan Gohman572645c2010-02-12 10:34:29 +00001243/// FormulaSorter - This class implements an ordering for formulae which sorts
1244/// the by their standalone cost.
1245class FormulaSorter {
1246 /// These two sets are kept empty, so that we compute standalone costs.
1247 DenseSet<const SCEV *> VisitedRegs;
1248 SmallPtrSet<const SCEV *, 16> Regs;
1249 Loop *L;
1250 LSRUse *LU;
1251 ScalarEvolution &SE;
1252 DominatorTree &DT;
1253
1254public:
1255 FormulaSorter(Loop *l, LSRUse &lu, ScalarEvolution &se, DominatorTree &dt)
1256 : L(l), LU(&lu), SE(se), DT(dt) {}
1257
1258 bool operator()(const Formula &A, const Formula &B) {
1259 Cost CostA;
1260 CostA.RateFormula(A, Regs, VisitedRegs, L, LU->Offsets, SE, DT);
1261 Regs.clear();
1262 Cost CostB;
1263 CostB.RateFormula(B, Regs, VisitedRegs, L, LU->Offsets, SE, DT);
1264 Regs.clear();
1265 return CostA < CostB;
1266 }
1267};
1268
1269/// LSRInstance - This class holds state for the main loop strength reduction
1270/// logic.
1271class LSRInstance {
1272 IVUsers &IU;
1273 ScalarEvolution &SE;
1274 DominatorTree &DT;
Dan Gohmane5f76872010-04-09 22:07:05 +00001275 LoopInfo &LI;
Dan Gohman572645c2010-02-12 10:34:29 +00001276 const TargetLowering *const TLI;
1277 Loop *const L;
1278 bool Changed;
1279
1280 /// IVIncInsertPos - This is the insert position that the current loop's
1281 /// induction variable increment should be placed. In simple loops, this is
1282 /// the latch block's terminator. But in more complicated cases, this is a
1283 /// position which will dominate all the in-loop post-increment users.
1284 Instruction *IVIncInsertPos;
1285
1286 /// Factors - Interesting factors between use strides.
1287 SmallSetVector<int64_t, 8> Factors;
1288
1289 /// Types - Interesting use types, to facilitate truncation reuse.
1290 SmallSetVector<const Type *, 4> Types;
1291
1292 /// Fixups - The list of operands which are to be replaced.
1293 SmallVector<LSRFixup, 16> Fixups;
1294
1295 /// Uses - The list of interesting uses.
1296 SmallVector<LSRUse, 16> Uses;
1297
1298 /// RegUses - Track which uses use which register candidates.
1299 RegUseTracker RegUses;
1300
1301 void OptimizeShadowIV();
1302 bool FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse);
1303 ICmpInst *OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse);
Dan Gohmanc6519f92010-05-20 20:05:31 +00001304 void OptimizeLoopTermCond();
Dan Gohman572645c2010-02-12 10:34:29 +00001305
1306 void CollectInterestingTypesAndFactors();
1307 void CollectFixupsAndInitialFormulae();
1308
1309 LSRFixup &getNewFixup() {
1310 Fixups.push_back(LSRFixup());
1311 return Fixups.back();
1312 }
1313
1314 // Support for sharing of LSRUses between LSRFixups.
Dan Gohman1e3121c2010-06-19 21:29:59 +00001315 typedef DenseMap<std::pair<const SCEV *, LSRUse::KindType>,
1316 size_t,
1317 UseMapDenseMapInfo> UseMapTy;
Dan Gohman572645c2010-02-12 10:34:29 +00001318 UseMapTy UseMap;
1319
Dan Gohmanea507f52010-05-20 19:44:23 +00001320 bool reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Dan Gohman572645c2010-02-12 10:34:29 +00001321 LSRUse::KindType Kind, const Type *AccessTy);
1322
1323 std::pair<size_t, int64_t> getUse(const SCEV *&Expr,
1324 LSRUse::KindType Kind,
1325 const Type *AccessTy);
1326
Dan Gohman5ce6d052010-05-20 15:17:54 +00001327 void DeleteUse(LSRUse &LU);
1328
Dan Gohmana2086b32010-05-19 23:43:12 +00001329 LSRUse *FindUseWithSimilarFormula(const Formula &F, const LSRUse &OrigLU);
1330
Dan Gohman572645c2010-02-12 10:34:29 +00001331public:
Dan Gohman454d26d2010-02-22 04:11:59 +00001332 void InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
Dan Gohman572645c2010-02-12 10:34:29 +00001333 void InsertSupplementalFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
1334 void CountRegisters(const Formula &F, size_t LUIdx);
1335 bool InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F);
1336
1337 void CollectLoopInvariantFixupsAndFormulae();
1338
1339 void GenerateReassociations(LSRUse &LU, unsigned LUIdx, Formula Base,
1340 unsigned Depth = 0);
1341 void GenerateCombinations(LSRUse &LU, unsigned LUIdx, Formula Base);
1342 void GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1343 void GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1344 void GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1345 void GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1346 void GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base);
1347 void GenerateCrossUseConstantOffsets();
1348 void GenerateAllReuseFormulae();
1349
1350 void FilterOutUndesirableDedicatedRegisters();
Dan Gohmand079c302010-05-18 22:51:59 +00001351
1352 size_t EstimateSearchSpaceComplexity() const;
Dan Gohman572645c2010-02-12 10:34:29 +00001353 void NarrowSearchSpaceUsingHeuristics();
1354
1355 void SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
1356 Cost &SolutionCost,
1357 SmallVectorImpl<const Formula *> &Workspace,
1358 const Cost &CurCost,
1359 const SmallPtrSet<const SCEV *, 16> &CurRegs,
1360 DenseSet<const SCEV *> &VisitedRegs) const;
1361 void Solve(SmallVectorImpl<const Formula *> &Solution) const;
1362
Dan Gohmane5f76872010-04-09 22:07:05 +00001363 BasicBlock::iterator
1364 HoistInsertPosition(BasicBlock::iterator IP,
1365 const SmallVectorImpl<Instruction *> &Inputs) const;
1366 BasicBlock::iterator AdjustInsertPositionForExpand(BasicBlock::iterator IP,
1367 const LSRFixup &LF,
1368 const LSRUse &LU) const;
Dan Gohmand96eae82010-04-09 02:00:38 +00001369
Dan Gohman572645c2010-02-12 10:34:29 +00001370 Value *Expand(const LSRFixup &LF,
1371 const Formula &F,
Dan Gohman454d26d2010-02-22 04:11:59 +00001372 BasicBlock::iterator IP,
Dan Gohman572645c2010-02-12 10:34:29 +00001373 SCEVExpander &Rewriter,
Dan Gohman454d26d2010-02-22 04:11:59 +00001374 SmallVectorImpl<WeakVH> &DeadInsts) const;
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001375 void RewriteForPHI(PHINode *PN, const LSRFixup &LF,
1376 const Formula &F,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001377 SCEVExpander &Rewriter,
1378 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001379 Pass *P) const;
Dan Gohman572645c2010-02-12 10:34:29 +00001380 void Rewrite(const LSRFixup &LF,
1381 const Formula &F,
Dan Gohman572645c2010-02-12 10:34:29 +00001382 SCEVExpander &Rewriter,
1383 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman572645c2010-02-12 10:34:29 +00001384 Pass *P) const;
1385 void ImplementSolution(const SmallVectorImpl<const Formula *> &Solution,
1386 Pass *P);
1387
1388 LSRInstance(const TargetLowering *tli, Loop *l, Pass *P);
1389
1390 bool getChanged() const { return Changed; }
1391
1392 void print_factors_and_types(raw_ostream &OS) const;
1393 void print_fixups(raw_ostream &OS) const;
1394 void print_uses(raw_ostream &OS) const;
1395 void print(raw_ostream &OS) const;
1396 void dump() const;
1397};
1398
1399}
1400
1401/// OptimizeShadowIV - If IV is used in a int-to-float cast
Dan Gohman3f46a3a2010-03-01 17:49:51 +00001402/// inside the loop then try to eliminate the cast operation.
Dan Gohman572645c2010-02-12 10:34:29 +00001403void LSRInstance::OptimizeShadowIV() {
1404 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
1405 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1406 return;
1407
1408 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end();
1409 UI != E; /* empty */) {
1410 IVUsers::const_iterator CandidateUI = UI;
1411 ++UI;
1412 Instruction *ShadowUse = CandidateUI->getUser();
1413 const Type *DestTy = NULL;
1414
1415 /* If shadow use is a int->float cast then insert a second IV
1416 to eliminate this cast.
1417
1418 for (unsigned i = 0; i < n; ++i)
1419 foo((double)i);
1420
1421 is transformed into
1422
1423 double d = 0.0;
1424 for (unsigned i = 0; i < n; ++i, ++d)
1425 foo(d);
1426 */
1427 if (UIToFPInst *UCast = dyn_cast<UIToFPInst>(CandidateUI->getUser()))
1428 DestTy = UCast->getDestTy();
1429 else if (SIToFPInst *SCast = dyn_cast<SIToFPInst>(CandidateUI->getUser()))
1430 DestTy = SCast->getDestTy();
1431 if (!DestTy) continue;
1432
1433 if (TLI) {
1434 // If target does not support DestTy natively then do not apply
1435 // this transformation.
1436 EVT DVT = TLI->getValueType(DestTy);
1437 if (!TLI->isTypeLegal(DVT)) continue;
1438 }
1439
1440 PHINode *PH = dyn_cast<PHINode>(ShadowUse->getOperand(0));
1441 if (!PH) continue;
1442 if (PH->getNumIncomingValues() != 2) continue;
1443
1444 const Type *SrcTy = PH->getType();
1445 int Mantissa = DestTy->getFPMantissaWidth();
1446 if (Mantissa == -1) continue;
1447 if ((int)SE.getTypeSizeInBits(SrcTy) > Mantissa)
1448 continue;
1449
1450 unsigned Entry, Latch;
1451 if (PH->getIncomingBlock(0) == L->getLoopPreheader()) {
1452 Entry = 0;
1453 Latch = 1;
Dan Gohman7979b722010-01-22 00:46:49 +00001454 } else {
Dan Gohman572645c2010-02-12 10:34:29 +00001455 Entry = 1;
1456 Latch = 0;
Dan Gohman7979b722010-01-22 00:46:49 +00001457 }
Dan Gohman7979b722010-01-22 00:46:49 +00001458
Dan Gohman572645c2010-02-12 10:34:29 +00001459 ConstantInt *Init = dyn_cast<ConstantInt>(PH->getIncomingValue(Entry));
1460 if (!Init) continue;
1461 Constant *NewInit = ConstantFP::get(DestTy, Init->getZExtValue());
Dan Gohman7979b722010-01-22 00:46:49 +00001462
Dan Gohman572645c2010-02-12 10:34:29 +00001463 BinaryOperator *Incr =
1464 dyn_cast<BinaryOperator>(PH->getIncomingValue(Latch));
1465 if (!Incr) continue;
1466 if (Incr->getOpcode() != Instruction::Add
1467 && Incr->getOpcode() != Instruction::Sub)
Dan Gohman7979b722010-01-22 00:46:49 +00001468 continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001469
Dan Gohman572645c2010-02-12 10:34:29 +00001470 /* Initialize new IV, double d = 0.0 in above example. */
1471 ConstantInt *C = NULL;
1472 if (Incr->getOperand(0) == PH)
1473 C = dyn_cast<ConstantInt>(Incr->getOperand(1));
1474 else if (Incr->getOperand(1) == PH)
1475 C = dyn_cast<ConstantInt>(Incr->getOperand(0));
Dan Gohman7979b722010-01-22 00:46:49 +00001476 else
Dan Gohman7979b722010-01-22 00:46:49 +00001477 continue;
1478
Dan Gohman572645c2010-02-12 10:34:29 +00001479 if (!C) continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001480
Dan Gohman572645c2010-02-12 10:34:29 +00001481 // Ignore negative constants, as the code below doesn't handle them
1482 // correctly. TODO: Remove this restriction.
1483 if (!C->getValue().isStrictlyPositive()) continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001484
Dan Gohman572645c2010-02-12 10:34:29 +00001485 /* Add new PHINode. */
1486 PHINode *NewPH = PHINode::Create(DestTy, "IV.S.", PH);
Dan Gohman7979b722010-01-22 00:46:49 +00001487
Dan Gohman572645c2010-02-12 10:34:29 +00001488 /* create new increment. '++d' in above example. */
1489 Constant *CFP = ConstantFP::get(DestTy, C->getZExtValue());
1490 BinaryOperator *NewIncr =
1491 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
1492 Instruction::FAdd : Instruction::FSub,
1493 NewPH, CFP, "IV.S.next.", Incr);
Dan Gohman7979b722010-01-22 00:46:49 +00001494
Dan Gohman572645c2010-02-12 10:34:29 +00001495 NewPH->addIncoming(NewInit, PH->getIncomingBlock(Entry));
1496 NewPH->addIncoming(NewIncr, PH->getIncomingBlock(Latch));
Dan Gohman7979b722010-01-22 00:46:49 +00001497
Dan Gohman572645c2010-02-12 10:34:29 +00001498 /* Remove cast operation */
1499 ShadowUse->replaceAllUsesWith(NewPH);
1500 ShadowUse->eraseFromParent();
Dan Gohmanc6519f92010-05-20 20:05:31 +00001501 Changed = true;
Dan Gohman572645c2010-02-12 10:34:29 +00001502 break;
Dan Gohman7979b722010-01-22 00:46:49 +00001503 }
1504}
1505
1506/// FindIVUserForCond - If Cond has an operand that is an expression of an IV,
1507/// set the IV user and stride information and return true, otherwise return
1508/// false.
Dan Gohmanea507f52010-05-20 19:44:23 +00001509bool LSRInstance::FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse) {
Dan Gohman572645c2010-02-12 10:34:29 +00001510 for (IVUsers::iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
1511 if (UI->getUser() == Cond) {
1512 // NOTE: we could handle setcc instructions with multiple uses here, but
1513 // InstCombine does it as well for simple uses, it's not clear that it
1514 // occurs enough in real life to handle.
1515 CondUse = UI;
1516 return true;
1517 }
Dan Gohman7979b722010-01-22 00:46:49 +00001518 return false;
Evan Chengcdf43b12007-10-25 09:11:16 +00001519}
1520
Dan Gohman7979b722010-01-22 00:46:49 +00001521/// OptimizeMax - Rewrite the loop's terminating condition if it uses
1522/// a max computation.
1523///
1524/// This is a narrow solution to a specific, but acute, problem. For loops
1525/// like this:
1526///
1527/// i = 0;
1528/// do {
1529/// p[i] = 0.0;
1530/// } while (++i < n);
1531///
1532/// the trip count isn't just 'n', because 'n' might not be positive. And
1533/// unfortunately this can come up even for loops where the user didn't use
1534/// a C do-while loop. For example, seemingly well-behaved top-test loops
1535/// will commonly be lowered like this:
1536//
1537/// if (n > 0) {
1538/// i = 0;
1539/// do {
1540/// p[i] = 0.0;
1541/// } while (++i < n);
1542/// }
1543///
1544/// and then it's possible for subsequent optimization to obscure the if
1545/// test in such a way that indvars can't find it.
1546///
1547/// When indvars can't find the if test in loops like this, it creates a
1548/// max expression, which allows it to give the loop a canonical
1549/// induction variable:
1550///
1551/// i = 0;
1552/// max = n < 1 ? 1 : n;
1553/// do {
1554/// p[i] = 0.0;
1555/// } while (++i != max);
1556///
1557/// Canonical induction variables are necessary because the loop passes
1558/// are designed around them. The most obvious example of this is the
1559/// LoopInfo analysis, which doesn't remember trip count values. It
1560/// expects to be able to rediscover the trip count each time it is
Dan Gohman572645c2010-02-12 10:34:29 +00001561/// needed, and it does this using a simple analysis that only succeeds if
Dan Gohman7979b722010-01-22 00:46:49 +00001562/// the loop has a canonical induction variable.
1563///
1564/// However, when it comes time to generate code, the maximum operation
1565/// can be quite costly, especially if it's inside of an outer loop.
1566///
1567/// This function solves this problem by detecting this type of loop and
1568/// rewriting their conditions from ICMP_NE back to ICMP_SLT, and deleting
1569/// the instructions for the maximum computation.
1570///
Dan Gohman572645c2010-02-12 10:34:29 +00001571ICmpInst *LSRInstance::OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse) {
Dan Gohman7979b722010-01-22 00:46:49 +00001572 // Check that the loop matches the pattern we're looking for.
1573 if (Cond->getPredicate() != CmpInst::ICMP_EQ &&
1574 Cond->getPredicate() != CmpInst::ICMP_NE)
1575 return Cond;
Dan Gohmana10756e2010-01-21 02:09:26 +00001576
Dan Gohman7979b722010-01-22 00:46:49 +00001577 SelectInst *Sel = dyn_cast<SelectInst>(Cond->getOperand(1));
1578 if (!Sel || !Sel->hasOneUse()) return Cond;
Dan Gohmana10756e2010-01-21 02:09:26 +00001579
Dan Gohman572645c2010-02-12 10:34:29 +00001580 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
Dan Gohman7979b722010-01-22 00:46:49 +00001581 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1582 return Cond;
Dan Gohmandeff6212010-05-03 22:09:21 +00001583 const SCEV *One = SE.getConstant(BackedgeTakenCount->getType(), 1);
Dan Gohmana10756e2010-01-21 02:09:26 +00001584
Dan Gohman7979b722010-01-22 00:46:49 +00001585 // Add one to the backedge-taken count to get the trip count.
Dan Gohman572645c2010-02-12 10:34:29 +00001586 const SCEV *IterationCount = SE.getAddExpr(BackedgeTakenCount, One);
Dan Gohman1d367982010-04-24 03:13:44 +00001587 if (IterationCount != SE.getSCEV(Sel)) return Cond;
Dan Gohman7979b722010-01-22 00:46:49 +00001588
Dan Gohman1d367982010-04-24 03:13:44 +00001589 // Check for a max calculation that matches the pattern. There's no check
1590 // for ICMP_ULE here because the comparison would be with zero, which
1591 // isn't interesting.
1592 CmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE;
1593 const SCEVNAryExpr *Max = 0;
1594 if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(BackedgeTakenCount)) {
1595 Pred = ICmpInst::ICMP_SLE;
1596 Max = S;
1597 } else if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(IterationCount)) {
1598 Pred = ICmpInst::ICMP_SLT;
1599 Max = S;
1600 } else if (const SCEVUMaxExpr *U = dyn_cast<SCEVUMaxExpr>(IterationCount)) {
1601 Pred = ICmpInst::ICMP_ULT;
1602 Max = U;
1603 } else {
1604 // No match; bail.
Dan Gohman7979b722010-01-22 00:46:49 +00001605 return Cond;
Dan Gohman1d367982010-04-24 03:13:44 +00001606 }
Dan Gohman7979b722010-01-22 00:46:49 +00001607
1608 // To handle a max with more than two operands, this optimization would
1609 // require additional checking and setup.
1610 if (Max->getNumOperands() != 2)
1611 return Cond;
1612
1613 const SCEV *MaxLHS = Max->getOperand(0);
1614 const SCEV *MaxRHS = Max->getOperand(1);
Dan Gohman1d367982010-04-24 03:13:44 +00001615
1616 // ScalarEvolution canonicalizes constants to the left. For < and >, look
1617 // for a comparison with 1. For <= and >=, a comparison with zero.
1618 if (!MaxLHS ||
1619 (ICmpInst::isTrueWhenEqual(Pred) ? !MaxLHS->isZero() : (MaxLHS != One)))
1620 return Cond;
1621
Dan Gohman7979b722010-01-22 00:46:49 +00001622 // Check the relevant induction variable for conformance to
1623 // the pattern.
Dan Gohman572645c2010-02-12 10:34:29 +00001624 const SCEV *IV = SE.getSCEV(Cond->getOperand(0));
Dan Gohman7979b722010-01-22 00:46:49 +00001625 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(IV);
1626 if (!AR || !AR->isAffine() ||
1627 AR->getStart() != One ||
Dan Gohman572645c2010-02-12 10:34:29 +00001628 AR->getStepRecurrence(SE) != One)
Dan Gohman7979b722010-01-22 00:46:49 +00001629 return Cond;
1630
1631 assert(AR->getLoop() == L &&
1632 "Loop condition operand is an addrec in a different loop!");
1633
1634 // Check the right operand of the select, and remember it, as it will
1635 // be used in the new comparison instruction.
1636 Value *NewRHS = 0;
Dan Gohman1d367982010-04-24 03:13:44 +00001637 if (ICmpInst::isTrueWhenEqual(Pred)) {
1638 // Look for n+1, and grab n.
1639 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(1)))
1640 if (isa<ConstantInt>(BO->getOperand(1)) &&
1641 cast<ConstantInt>(BO->getOperand(1))->isOne() &&
1642 SE.getSCEV(BO->getOperand(0)) == MaxRHS)
1643 NewRHS = BO->getOperand(0);
1644 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(2)))
1645 if (isa<ConstantInt>(BO->getOperand(1)) &&
1646 cast<ConstantInt>(BO->getOperand(1))->isOne() &&
1647 SE.getSCEV(BO->getOperand(0)) == MaxRHS)
1648 NewRHS = BO->getOperand(0);
1649 if (!NewRHS)
1650 return Cond;
1651 } else if (SE.getSCEV(Sel->getOperand(1)) == MaxRHS)
Dan Gohman7979b722010-01-22 00:46:49 +00001652 NewRHS = Sel->getOperand(1);
Dan Gohman572645c2010-02-12 10:34:29 +00001653 else if (SE.getSCEV(Sel->getOperand(2)) == MaxRHS)
Dan Gohman7979b722010-01-22 00:46:49 +00001654 NewRHS = Sel->getOperand(2);
Dan Gohmancaf71ab2010-06-22 23:07:13 +00001655 else if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(MaxRHS))
1656 NewRHS = SU->getValue();
Dan Gohman1d367982010-04-24 03:13:44 +00001657 else
Dan Gohmancaf71ab2010-06-22 23:07:13 +00001658 // Max doesn't match expected pattern.
1659 return Cond;
Dan Gohman7979b722010-01-22 00:46:49 +00001660
1661 // Determine the new comparison opcode. It may be signed or unsigned,
1662 // and the original comparison may be either equality or inequality.
Dan Gohman7979b722010-01-22 00:46:49 +00001663 if (Cond->getPredicate() == CmpInst::ICMP_EQ)
1664 Pred = CmpInst::getInversePredicate(Pred);
1665
1666 // Ok, everything looks ok to change the condition into an SLT or SGE and
1667 // delete the max calculation.
1668 ICmpInst *NewCond =
1669 new ICmpInst(Cond, Pred, Cond->getOperand(0), NewRHS, "scmp");
1670
1671 // Delete the max calculation instructions.
1672 Cond->replaceAllUsesWith(NewCond);
1673 CondUse->setUser(NewCond);
1674 Instruction *Cmp = cast<Instruction>(Sel->getOperand(0));
1675 Cond->eraseFromParent();
1676 Sel->eraseFromParent();
1677 if (Cmp->use_empty())
1678 Cmp->eraseFromParent();
1679 return NewCond;
Dan Gohmanad7321f2008-09-15 21:22:06 +00001680}
1681
Jim Grosbach56a1f802009-11-17 17:53:56 +00001682/// OptimizeLoopTermCond - Change loop terminating condition to use the
Evan Cheng586f69a2009-11-12 07:35:05 +00001683/// postinc iv when possible.
Dan Gohmanc6519f92010-05-20 20:05:31 +00001684void
Dan Gohman572645c2010-02-12 10:34:29 +00001685LSRInstance::OptimizeLoopTermCond() {
1686 SmallPtrSet<Instruction *, 4> PostIncs;
1687
Evan Cheng586f69a2009-11-12 07:35:05 +00001688 BasicBlock *LatchBlock = L->getLoopLatch();
Evan Cheng076e0852009-11-17 18:10:11 +00001689 SmallVector<BasicBlock*, 8> ExitingBlocks;
1690 L->getExitingBlocks(ExitingBlocks);
Jim Grosbach56a1f802009-11-17 17:53:56 +00001691
Evan Cheng076e0852009-11-17 18:10:11 +00001692 for (unsigned i = 0, e = ExitingBlocks.size(); i != e; ++i) {
1693 BasicBlock *ExitingBlock = ExitingBlocks[i];
Evan Cheng586f69a2009-11-12 07:35:05 +00001694
Dan Gohman572645c2010-02-12 10:34:29 +00001695 // Get the terminating condition for the loop if possible. If we
Evan Cheng076e0852009-11-17 18:10:11 +00001696 // can, we want to change it to use a post-incremented version of its
1697 // induction variable, to allow coalescing the live ranges for the IV into
1698 // one register value.
Evan Cheng586f69a2009-11-12 07:35:05 +00001699
Evan Cheng076e0852009-11-17 18:10:11 +00001700 BranchInst *TermBr = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
1701 if (!TermBr)
1702 continue;
1703 // FIXME: Overly conservative, termination condition could be an 'or' etc..
1704 if (TermBr->isUnconditional() || !isa<ICmpInst>(TermBr->getCondition()))
1705 continue;
Evan Cheng586f69a2009-11-12 07:35:05 +00001706
Evan Cheng076e0852009-11-17 18:10:11 +00001707 // Search IVUsesByStride to find Cond's IVUse if there is one.
1708 IVStrideUse *CondUse = 0;
Evan Cheng076e0852009-11-17 18:10:11 +00001709 ICmpInst *Cond = cast<ICmpInst>(TermBr->getCondition());
Dan Gohman572645c2010-02-12 10:34:29 +00001710 if (!FindIVUserForCond(Cond, CondUse))
Evan Cheng076e0852009-11-17 18:10:11 +00001711 continue;
1712
Evan Cheng076e0852009-11-17 18:10:11 +00001713 // If the trip count is computed in terms of a max (due to ScalarEvolution
1714 // being unable to find a sufficient guard, for example), change the loop
1715 // comparison to use SLT or ULT instead of NE.
Dan Gohman572645c2010-02-12 10:34:29 +00001716 // One consequence of doing this now is that it disrupts the count-down
1717 // optimization. That's not always a bad thing though, because in such
1718 // cases it may still be worthwhile to avoid a max.
1719 Cond = OptimizeMax(Cond, CondUse);
Evan Cheng076e0852009-11-17 18:10:11 +00001720
Dan Gohman572645c2010-02-12 10:34:29 +00001721 // If this exiting block dominates the latch block, it may also use
1722 // the post-inc value if it won't be shared with other uses.
1723 // Check for dominance.
1724 if (!DT.dominates(ExitingBlock, LatchBlock))
Dan Gohman7979b722010-01-22 00:46:49 +00001725 continue;
Evan Cheng076e0852009-11-17 18:10:11 +00001726
Dan Gohman572645c2010-02-12 10:34:29 +00001727 // Conservatively avoid trying to use the post-inc value in non-latch
1728 // exits if there may be pre-inc users in intervening blocks.
Dan Gohman590bfe82010-02-14 03:21:49 +00001729 if (LatchBlock != ExitingBlock)
Dan Gohman572645c2010-02-12 10:34:29 +00001730 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
1731 // Test if the use is reachable from the exiting block. This dominator
1732 // query is a conservative approximation of reachability.
1733 if (&*UI != CondUse &&
1734 !DT.properlyDominates(UI->getUser()->getParent(), ExitingBlock)) {
1735 // Conservatively assume there may be reuse if the quotient of their
1736 // strides could be a legal scale.
Dan Gohmanc0564542010-04-19 21:48:58 +00001737 const SCEV *A = IU.getStride(*CondUse, L);
1738 const SCEV *B = IU.getStride(*UI, L);
Dan Gohman448db1c2010-04-07 22:27:08 +00001739 if (!A || !B) continue;
Dan Gohman572645c2010-02-12 10:34:29 +00001740 if (SE.getTypeSizeInBits(A->getType()) !=
1741 SE.getTypeSizeInBits(B->getType())) {
1742 if (SE.getTypeSizeInBits(A->getType()) >
1743 SE.getTypeSizeInBits(B->getType()))
1744 B = SE.getSignExtendExpr(B, A->getType());
1745 else
1746 A = SE.getSignExtendExpr(A, B->getType());
1747 }
1748 if (const SCEVConstant *D =
Dan Gohmanf09b7122010-02-19 19:35:48 +00001749 dyn_cast_or_null<SCEVConstant>(getExactSDiv(B, A, SE))) {
Dan Gohman9f383eb2010-05-20 22:25:20 +00001750 const ConstantInt *C = D->getValue();
Dan Gohman572645c2010-02-12 10:34:29 +00001751 // Stride of one or negative one can have reuse with non-addresses.
Dan Gohman9f383eb2010-05-20 22:25:20 +00001752 if (C->isOne() || C->isAllOnesValue())
Dan Gohman572645c2010-02-12 10:34:29 +00001753 goto decline_post_inc;
1754 // Avoid weird situations.
Dan Gohman9f383eb2010-05-20 22:25:20 +00001755 if (C->getValue().getMinSignedBits() >= 64 ||
1756 C->getValue().isMinSignedValue())
Dan Gohman572645c2010-02-12 10:34:29 +00001757 goto decline_post_inc;
Dan Gohman590bfe82010-02-14 03:21:49 +00001758 // Without TLI, assume that any stride might be valid, and so any
1759 // use might be shared.
1760 if (!TLI)
1761 goto decline_post_inc;
Dan Gohman572645c2010-02-12 10:34:29 +00001762 // Check for possible scaled-address reuse.
1763 const Type *AccessTy = getAccessType(UI->getUser());
1764 TargetLowering::AddrMode AM;
Dan Gohman9f383eb2010-05-20 22:25:20 +00001765 AM.Scale = C->getSExtValue();
Dan Gohman2763dfd2010-02-14 02:45:21 +00001766 if (TLI->isLegalAddressingMode(AM, AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +00001767 goto decline_post_inc;
1768 AM.Scale = -AM.Scale;
Dan Gohman2763dfd2010-02-14 02:45:21 +00001769 if (TLI->isLegalAddressingMode(AM, AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +00001770 goto decline_post_inc;
1771 }
1772 }
1773
David Greene63c94632009-12-23 22:58:38 +00001774 DEBUG(dbgs() << " Change loop exiting icmp to use postinc iv: "
Dan Gohman572645c2010-02-12 10:34:29 +00001775 << *Cond << '\n');
Evan Cheng076e0852009-11-17 18:10:11 +00001776
1777 // It's possible for the setcc instruction to be anywhere in the loop, and
1778 // possible for it to have multiple users. If it is not immediately before
1779 // the exiting block branch, move it.
Dan Gohman572645c2010-02-12 10:34:29 +00001780 if (&*++BasicBlock::iterator(Cond) != TermBr) {
1781 if (Cond->hasOneUse()) {
Evan Cheng076e0852009-11-17 18:10:11 +00001782 Cond->moveBefore(TermBr);
1783 } else {
Dan Gohman572645c2010-02-12 10:34:29 +00001784 // Clone the terminating condition and insert into the loopend.
1785 ICmpInst *OldCond = Cond;
Evan Cheng076e0852009-11-17 18:10:11 +00001786 Cond = cast<ICmpInst>(Cond->clone());
1787 Cond->setName(L->getHeader()->getName() + ".termcond");
1788 ExitingBlock->getInstList().insert(TermBr, Cond);
1789
1790 // Clone the IVUse, as the old use still exists!
Dan Gohmanc0564542010-04-19 21:48:58 +00001791 CondUse = &IU.AddUser(Cond, CondUse->getOperandValToReplace());
Dan Gohman572645c2010-02-12 10:34:29 +00001792 TermBr->replaceUsesOfWith(OldCond, Cond);
Evan Cheng076e0852009-11-17 18:10:11 +00001793 }
Evan Cheng586f69a2009-11-12 07:35:05 +00001794 }
1795
Evan Cheng076e0852009-11-17 18:10:11 +00001796 // If we get to here, we know that we can transform the setcc instruction to
1797 // use the post-incremented version of the IV, allowing us to coalesce the
1798 // live ranges for the IV correctly.
Dan Gohman448db1c2010-04-07 22:27:08 +00001799 CondUse->transformToPostInc(L);
Evan Cheng076e0852009-11-17 18:10:11 +00001800 Changed = true;
1801
Dan Gohman572645c2010-02-12 10:34:29 +00001802 PostIncs.insert(Cond);
1803 decline_post_inc:;
Dan Gohmana10756e2010-01-21 02:09:26 +00001804 }
Dan Gohman572645c2010-02-12 10:34:29 +00001805
1806 // Determine an insertion point for the loop induction variable increment. It
1807 // must dominate all the post-inc comparisons we just set up, and it must
1808 // dominate the loop latch edge.
1809 IVIncInsertPos = L->getLoopLatch()->getTerminator();
1810 for (SmallPtrSet<Instruction *, 4>::const_iterator I = PostIncs.begin(),
1811 E = PostIncs.end(); I != E; ++I) {
1812 BasicBlock *BB =
1813 DT.findNearestCommonDominator(IVIncInsertPos->getParent(),
1814 (*I)->getParent());
1815 if (BB == (*I)->getParent())
1816 IVIncInsertPos = *I;
1817 else if (BB != IVIncInsertPos->getParent())
1818 IVIncInsertPos = BB->getTerminator();
1819 }
Dan Gohmana10756e2010-01-21 02:09:26 +00001820}
1821
Dan Gohman76c315a2010-05-20 20:52:00 +00001822/// reconcileNewOffset - Determine if the given use can accomodate a fixup
1823/// at the given offset and other details. If so, update the use and
1824/// return true.
Dan Gohman572645c2010-02-12 10:34:29 +00001825bool
Dan Gohmanea507f52010-05-20 19:44:23 +00001826LSRInstance::reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Dan Gohman572645c2010-02-12 10:34:29 +00001827 LSRUse::KindType Kind, const Type *AccessTy) {
1828 int64_t NewMinOffset = LU.MinOffset;
1829 int64_t NewMaxOffset = LU.MaxOffset;
1830 const Type *NewAccessTy = AccessTy;
Dan Gohman7979b722010-01-22 00:46:49 +00001831
Dan Gohman572645c2010-02-12 10:34:29 +00001832 // Check for a mismatched kind. It's tempting to collapse mismatched kinds to
1833 // something conservative, however this can pessimize in the case that one of
1834 // the uses will have all its uses outside the loop, for example.
1835 if (LU.Kind != Kind)
Dan Gohman7979b722010-01-22 00:46:49 +00001836 return false;
Dan Gohman572645c2010-02-12 10:34:29 +00001837 // Conservatively assume HasBaseReg is true for now.
1838 if (NewOffset < LU.MinOffset) {
Dan Gohmana2086b32010-05-19 23:43:12 +00001839 if (!isAlwaysFoldable(LU.MaxOffset - NewOffset, 0, HasBaseReg,
Dan Gohman454d26d2010-02-22 04:11:59 +00001840 Kind, AccessTy, TLI))
Dan Gohman7979b722010-01-22 00:46:49 +00001841 return false;
Dan Gohman572645c2010-02-12 10:34:29 +00001842 NewMinOffset = NewOffset;
1843 } else if (NewOffset > LU.MaxOffset) {
Dan Gohmana2086b32010-05-19 23:43:12 +00001844 if (!isAlwaysFoldable(NewOffset - LU.MinOffset, 0, HasBaseReg,
Dan Gohman454d26d2010-02-22 04:11:59 +00001845 Kind, AccessTy, TLI))
Dan Gohman7979b722010-01-22 00:46:49 +00001846 return false;
Dan Gohman572645c2010-02-12 10:34:29 +00001847 NewMaxOffset = NewOffset;
Dan Gohmana10756e2010-01-21 02:09:26 +00001848 }
Dan Gohman572645c2010-02-12 10:34:29 +00001849 // Check for a mismatched access type, and fall back conservatively as needed.
Dan Gohman74e5ef02010-06-19 21:30:18 +00001850 // TODO: Be less conservative when the type is similar and can use the same
1851 // addressing modes.
Dan Gohman572645c2010-02-12 10:34:29 +00001852 if (Kind == LSRUse::Address && AccessTy != LU.AccessTy)
1853 NewAccessTy = Type::getVoidTy(AccessTy->getContext());
Dan Gohmana10756e2010-01-21 02:09:26 +00001854
Dan Gohman572645c2010-02-12 10:34:29 +00001855 // Update the use.
1856 LU.MinOffset = NewMinOffset;
1857 LU.MaxOffset = NewMaxOffset;
1858 LU.AccessTy = NewAccessTy;
1859 if (NewOffset != LU.Offsets.back())
1860 LU.Offsets.push_back(NewOffset);
Dan Gohman8b0ade32010-01-21 22:42:49 +00001861 return true;
1862}
1863
Dan Gohman572645c2010-02-12 10:34:29 +00001864/// getUse - Return an LSRUse index and an offset value for a fixup which
1865/// needs the given expression, with the given kind and optional access type.
Dan Gohman3f46a3a2010-03-01 17:49:51 +00001866/// Either reuse an existing use or create a new one, as needed.
Dan Gohman572645c2010-02-12 10:34:29 +00001867std::pair<size_t, int64_t>
1868LSRInstance::getUse(const SCEV *&Expr,
1869 LSRUse::KindType Kind, const Type *AccessTy) {
1870 const SCEV *Copy = Expr;
1871 int64_t Offset = ExtractImmediate(Expr, SE);
Evan Cheng586f69a2009-11-12 07:35:05 +00001872
Dan Gohman572645c2010-02-12 10:34:29 +00001873 // Basic uses can't accept any offset, for example.
Dan Gohman454d26d2010-02-22 04:11:59 +00001874 if (!isAlwaysFoldable(Offset, 0, /*HasBaseReg=*/true, Kind, AccessTy, TLI)) {
Dan Gohman572645c2010-02-12 10:34:29 +00001875 Expr = Copy;
1876 Offset = 0;
1877 }
1878
1879 std::pair<UseMapTy::iterator, bool> P =
Dan Gohman1e3121c2010-06-19 21:29:59 +00001880 UseMap.insert(std::make_pair(std::make_pair(Expr, Kind), 0));
Dan Gohman572645c2010-02-12 10:34:29 +00001881 if (!P.second) {
1882 // A use already existed with this base.
1883 size_t LUIdx = P.first->second;
1884 LSRUse &LU = Uses[LUIdx];
Dan Gohmana2086b32010-05-19 23:43:12 +00001885 if (reconcileNewOffset(LU, Offset, /*HasBaseReg=*/true, Kind, AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +00001886 // Reuse this use.
1887 return std::make_pair(LUIdx, Offset);
1888 }
1889
1890 // Create a new use.
1891 size_t LUIdx = Uses.size();
1892 P.first->second = LUIdx;
1893 Uses.push_back(LSRUse(Kind, AccessTy));
1894 LSRUse &LU = Uses[LUIdx];
1895
1896 // We don't need to track redundant offsets, but we don't need to go out
1897 // of our way here to avoid them.
1898 if (LU.Offsets.empty() || Offset != LU.Offsets.back())
1899 LU.Offsets.push_back(Offset);
1900
1901 LU.MinOffset = Offset;
1902 LU.MaxOffset = Offset;
1903 return std::make_pair(LUIdx, Offset);
1904}
1905
Dan Gohman5ce6d052010-05-20 15:17:54 +00001906/// DeleteUse - Delete the given use from the Uses list.
1907void LSRInstance::DeleteUse(LSRUse &LU) {
1908 if (&LU != &Uses.back())
1909 std::swap(LU, Uses.back());
1910 Uses.pop_back();
1911}
1912
Dan Gohmana2086b32010-05-19 23:43:12 +00001913/// FindUseWithFormula - Look for a use distinct from OrigLU which is has
1914/// a formula that has the same registers as the given formula.
1915LSRUse *
1916LSRInstance::FindUseWithSimilarFormula(const Formula &OrigF,
1917 const LSRUse &OrigLU) {
1918 // Search all uses for the formula. This could be more clever. Ignore
1919 // ICmpZero uses because they may contain formulae generated by
1920 // GenerateICmpZeroScales, in which case adding fixup offsets may
1921 // be invalid.
1922 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
1923 LSRUse &LU = Uses[LUIdx];
1924 if (&LU != &OrigLU &&
1925 LU.Kind != LSRUse::ICmpZero &&
1926 LU.Kind == OrigLU.Kind && OrigLU.AccessTy == LU.AccessTy &&
1927 LU.HasFormulaWithSameRegs(OrigF)) {
Dan Gohman402d4352010-05-20 20:33:18 +00001928 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
1929 E = LU.Formulae.end(); I != E; ++I) {
1930 const Formula &F = *I;
Dan Gohmana2086b32010-05-19 23:43:12 +00001931 if (F.BaseRegs == OrigF.BaseRegs &&
1932 F.ScaledReg == OrigF.ScaledReg &&
1933 F.AM.BaseGV == OrigF.AM.BaseGV &&
1934 F.AM.Scale == OrigF.AM.Scale &&
1935 LU.Kind) {
1936 if (F.AM.BaseOffs == 0)
1937 return &LU;
1938 break;
1939 }
1940 }
1941 }
1942 }
1943
1944 return 0;
1945}
1946
Dan Gohman572645c2010-02-12 10:34:29 +00001947void LSRInstance::CollectInterestingTypesAndFactors() {
1948 SmallSetVector<const SCEV *, 4> Strides;
1949
Dan Gohman1b7bf182010-02-19 00:05:23 +00001950 // Collect interesting types and strides.
Dan Gohman448db1c2010-04-07 22:27:08 +00001951 SmallVector<const SCEV *, 4> Worklist;
Dan Gohman572645c2010-02-12 10:34:29 +00001952 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) {
Dan Gohmanc0564542010-04-19 21:48:58 +00001953 const SCEV *Expr = IU.getExpr(*UI);
Dan Gohman572645c2010-02-12 10:34:29 +00001954
1955 // Collect interesting types.
Dan Gohman448db1c2010-04-07 22:27:08 +00001956 Types.insert(SE.getEffectiveSCEVType(Expr->getType()));
Dan Gohman572645c2010-02-12 10:34:29 +00001957
Dan Gohman448db1c2010-04-07 22:27:08 +00001958 // Add strides for mentioned loops.
1959 Worklist.push_back(Expr);
1960 do {
1961 const SCEV *S = Worklist.pop_back_val();
1962 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
1963 Strides.insert(AR->getStepRecurrence(SE));
1964 Worklist.push_back(AR->getStart());
1965 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Dan Gohman403a8cd2010-06-21 19:47:52 +00001966 Worklist.append(Add->op_begin(), Add->op_end());
Dan Gohman448db1c2010-04-07 22:27:08 +00001967 }
1968 } while (!Worklist.empty());
Dan Gohman1b7bf182010-02-19 00:05:23 +00001969 }
1970
1971 // Compute interesting factors from the set of interesting strides.
1972 for (SmallSetVector<const SCEV *, 4>::const_iterator
1973 I = Strides.begin(), E = Strides.end(); I != E; ++I)
Dan Gohman572645c2010-02-12 10:34:29 +00001974 for (SmallSetVector<const SCEV *, 4>::const_iterator NewStrideIter =
Dan Gohman1b7bf182010-02-19 00:05:23 +00001975 next(I); NewStrideIter != E; ++NewStrideIter) {
1976 const SCEV *OldStride = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00001977 const SCEV *NewStride = *NewStrideIter;
Dan Gohman572645c2010-02-12 10:34:29 +00001978
1979 if (SE.getTypeSizeInBits(OldStride->getType()) !=
1980 SE.getTypeSizeInBits(NewStride->getType())) {
1981 if (SE.getTypeSizeInBits(OldStride->getType()) >
1982 SE.getTypeSizeInBits(NewStride->getType()))
1983 NewStride = SE.getSignExtendExpr(NewStride, OldStride->getType());
1984 else
1985 OldStride = SE.getSignExtendExpr(OldStride, NewStride->getType());
1986 }
1987 if (const SCEVConstant *Factor =
Dan Gohmanf09b7122010-02-19 19:35:48 +00001988 dyn_cast_or_null<SCEVConstant>(getExactSDiv(NewStride, OldStride,
1989 SE, true))) {
Dan Gohman572645c2010-02-12 10:34:29 +00001990 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
1991 Factors.insert(Factor->getValue()->getValue().getSExtValue());
1992 } else if (const SCEVConstant *Factor =
Dan Gohman454d26d2010-02-22 04:11:59 +00001993 dyn_cast_or_null<SCEVConstant>(getExactSDiv(OldStride,
1994 NewStride,
Dan Gohmanf09b7122010-02-19 19:35:48 +00001995 SE, true))) {
Dan Gohman572645c2010-02-12 10:34:29 +00001996 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
1997 Factors.insert(Factor->getValue()->getValue().getSExtValue());
1998 }
1999 }
Dan Gohman572645c2010-02-12 10:34:29 +00002000
2001 // If all uses use the same type, don't bother looking for truncation-based
2002 // reuse.
2003 if (Types.size() == 1)
2004 Types.clear();
2005
2006 DEBUG(print_factors_and_types(dbgs()));
2007}
2008
2009void LSRInstance::CollectFixupsAndInitialFormulae() {
2010 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) {
2011 // Record the uses.
2012 LSRFixup &LF = getNewFixup();
2013 LF.UserInst = UI->getUser();
2014 LF.OperandValToReplace = UI->getOperandValToReplace();
Dan Gohman448db1c2010-04-07 22:27:08 +00002015 LF.PostIncLoops = UI->getPostIncLoops();
Dan Gohman572645c2010-02-12 10:34:29 +00002016
2017 LSRUse::KindType Kind = LSRUse::Basic;
2018 const Type *AccessTy = 0;
2019 if (isAddressUse(LF.UserInst, LF.OperandValToReplace)) {
2020 Kind = LSRUse::Address;
2021 AccessTy = getAccessType(LF.UserInst);
2022 }
2023
Dan Gohmanc0564542010-04-19 21:48:58 +00002024 const SCEV *S = IU.getExpr(*UI);
Dan Gohman572645c2010-02-12 10:34:29 +00002025
2026 // Equality (== and !=) ICmps are special. We can rewrite (i == N) as
2027 // (N - i == 0), and this allows (N - i) to be the expression that we work
2028 // with rather than just N or i, so we can consider the register
2029 // requirements for both N and i at the same time. Limiting this code to
2030 // equality icmps is not a problem because all interesting loops use
2031 // equality icmps, thanks to IndVarSimplify.
2032 if (ICmpInst *CI = dyn_cast<ICmpInst>(LF.UserInst))
2033 if (CI->isEquality()) {
2034 // Swap the operands if needed to put the OperandValToReplace on the
2035 // left, for consistency.
2036 Value *NV = CI->getOperand(1);
2037 if (NV == LF.OperandValToReplace) {
2038 CI->setOperand(1, CI->getOperand(0));
2039 CI->setOperand(0, NV);
Dan Gohmanf182b232010-05-20 19:26:52 +00002040 NV = CI->getOperand(1);
Dan Gohman9da1bf42010-05-20 19:16:03 +00002041 Changed = true;
Dan Gohman572645c2010-02-12 10:34:29 +00002042 }
2043
2044 // x == y --> x - y == 0
2045 const SCEV *N = SE.getSCEV(NV);
2046 if (N->isLoopInvariant(L)) {
2047 Kind = LSRUse::ICmpZero;
2048 S = SE.getMinusSCEV(N, S);
2049 }
2050
2051 // -1 and the negations of all interesting strides (except the negation
2052 // of -1) are now also interesting.
2053 for (size_t i = 0, e = Factors.size(); i != e; ++i)
2054 if (Factors[i] != -1)
2055 Factors.insert(-(uint64_t)Factors[i]);
2056 Factors.insert(-1);
2057 }
2058
2059 // Set up the initial formula for this use.
2060 std::pair<size_t, int64_t> P = getUse(S, Kind, AccessTy);
2061 LF.LUIdx = P.first;
2062 LF.Offset = P.second;
2063 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohman448db1c2010-04-07 22:27:08 +00002064 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohman572645c2010-02-12 10:34:29 +00002065
2066 // If this is the first use of this LSRUse, give it a formula.
2067 if (LU.Formulae.empty()) {
Dan Gohman454d26d2010-02-22 04:11:59 +00002068 InsertInitialFormula(S, LU, LF.LUIdx);
Dan Gohman572645c2010-02-12 10:34:29 +00002069 CountRegisters(LU.Formulae.back(), LF.LUIdx);
2070 }
2071 }
2072
2073 DEBUG(print_fixups(dbgs()));
2074}
2075
Dan Gohman76c315a2010-05-20 20:52:00 +00002076/// InsertInitialFormula - Insert a formula for the given expression into
2077/// the given use, separating out loop-variant portions from loop-invariant
2078/// and loop-computable portions.
Dan Gohman572645c2010-02-12 10:34:29 +00002079void
Dan Gohman454d26d2010-02-22 04:11:59 +00002080LSRInstance::InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx) {
Dan Gohman572645c2010-02-12 10:34:29 +00002081 Formula F;
2082 F.InitialMatch(S, L, SE, DT);
2083 bool Inserted = InsertFormula(LU, LUIdx, F);
2084 assert(Inserted && "Initial formula already exists!"); (void)Inserted;
2085}
2086
Dan Gohman76c315a2010-05-20 20:52:00 +00002087/// InsertSupplementalFormula - Insert a simple single-register formula for
2088/// the given expression into the given use.
Dan Gohman572645c2010-02-12 10:34:29 +00002089void
2090LSRInstance::InsertSupplementalFormula(const SCEV *S,
2091 LSRUse &LU, size_t LUIdx) {
2092 Formula F;
2093 F.BaseRegs.push_back(S);
2094 F.AM.HasBaseReg = true;
2095 bool Inserted = InsertFormula(LU, LUIdx, F);
2096 assert(Inserted && "Supplemental formula already exists!"); (void)Inserted;
2097}
2098
2099/// CountRegisters - Note which registers are used by the given formula,
2100/// updating RegUses.
2101void LSRInstance::CountRegisters(const Formula &F, size_t LUIdx) {
2102 if (F.ScaledReg)
2103 RegUses.CountRegister(F.ScaledReg, LUIdx);
2104 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
2105 E = F.BaseRegs.end(); I != E; ++I)
2106 RegUses.CountRegister(*I, LUIdx);
2107}
2108
2109/// InsertFormula - If the given formula has not yet been inserted, add it to
2110/// the list, and return true. Return false otherwise.
2111bool LSRInstance::InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F) {
Dan Gohman454d26d2010-02-22 04:11:59 +00002112 if (!LU.InsertFormula(F))
Dan Gohman572645c2010-02-12 10:34:29 +00002113 return false;
2114
2115 CountRegisters(F, LUIdx);
2116 return true;
2117}
2118
2119/// CollectLoopInvariantFixupsAndFormulae - Check for other uses of
2120/// loop-invariant values which we're tracking. These other uses will pin these
2121/// values in registers, making them less profitable for elimination.
2122/// TODO: This currently misses non-constant addrec step registers.
2123/// TODO: Should this give more weight to users inside the loop?
2124void
2125LSRInstance::CollectLoopInvariantFixupsAndFormulae() {
2126 SmallVector<const SCEV *, 8> Worklist(RegUses.begin(), RegUses.end());
2127 SmallPtrSet<const SCEV *, 8> Inserted;
2128
2129 while (!Worklist.empty()) {
2130 const SCEV *S = Worklist.pop_back_val();
2131
2132 if (const SCEVNAryExpr *N = dyn_cast<SCEVNAryExpr>(S))
Dan Gohman403a8cd2010-06-21 19:47:52 +00002133 Worklist.append(N->op_begin(), N->op_end());
Dan Gohman572645c2010-02-12 10:34:29 +00002134 else if (const SCEVCastExpr *C = dyn_cast<SCEVCastExpr>(S))
2135 Worklist.push_back(C->getOperand());
2136 else if (const SCEVUDivExpr *D = dyn_cast<SCEVUDivExpr>(S)) {
2137 Worklist.push_back(D->getLHS());
2138 Worklist.push_back(D->getRHS());
2139 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
2140 if (!Inserted.insert(U)) continue;
2141 const Value *V = U->getValue();
Dan Gohmana15ec5d2010-06-04 23:16:05 +00002142 if (const Instruction *Inst = dyn_cast<Instruction>(V)) {
2143 // Look for instructions defined outside the loop.
Dan Gohman572645c2010-02-12 10:34:29 +00002144 if (L->contains(Inst)) continue;
Dan Gohmana15ec5d2010-06-04 23:16:05 +00002145 } else if (isa<UndefValue>(V))
2146 // Undef doesn't have a live range, so it doesn't matter.
2147 continue;
Gabor Greif60ad7812010-03-25 23:06:16 +00002148 for (Value::const_use_iterator UI = V->use_begin(), UE = V->use_end();
Dan Gohman572645c2010-02-12 10:34:29 +00002149 UI != UE; ++UI) {
2150 const Instruction *UserInst = dyn_cast<Instruction>(*UI);
2151 // Ignore non-instructions.
2152 if (!UserInst)
Dan Gohman7979b722010-01-22 00:46:49 +00002153 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002154 // Ignore instructions in other functions (as can happen with
2155 // Constants).
2156 if (UserInst->getParent()->getParent() != L->getHeader()->getParent())
Dan Gohman7979b722010-01-22 00:46:49 +00002157 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002158 // Ignore instructions not dominated by the loop.
2159 const BasicBlock *UseBB = !isa<PHINode>(UserInst) ?
2160 UserInst->getParent() :
2161 cast<PHINode>(UserInst)->getIncomingBlock(
2162 PHINode::getIncomingValueNumForOperand(UI.getOperandNo()));
2163 if (!DT.dominates(L->getHeader(), UseBB))
2164 continue;
2165 // Ignore uses which are part of other SCEV expressions, to avoid
2166 // analyzing them multiple times.
Dan Gohman4a2a6832010-04-09 19:12:34 +00002167 if (SE.isSCEVable(UserInst->getType())) {
2168 const SCEV *UserS = SE.getSCEV(const_cast<Instruction *>(UserInst));
2169 // If the user is a no-op, look through to its uses.
2170 if (!isa<SCEVUnknown>(UserS))
2171 continue;
2172 if (UserS == U) {
2173 Worklist.push_back(
2174 SE.getUnknown(const_cast<Instruction *>(UserInst)));
2175 continue;
2176 }
2177 }
Dan Gohman572645c2010-02-12 10:34:29 +00002178 // Ignore icmp instructions which are already being analyzed.
2179 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UserInst)) {
2180 unsigned OtherIdx = !UI.getOperandNo();
2181 Value *OtherOp = const_cast<Value *>(ICI->getOperand(OtherIdx));
2182 if (SE.getSCEV(OtherOp)->hasComputableLoopEvolution(L))
2183 continue;
2184 }
2185
2186 LSRFixup &LF = getNewFixup();
2187 LF.UserInst = const_cast<Instruction *>(UserInst);
2188 LF.OperandValToReplace = UI.getUse();
2189 std::pair<size_t, int64_t> P = getUse(S, LSRUse::Basic, 0);
2190 LF.LUIdx = P.first;
2191 LF.Offset = P.second;
2192 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohman448db1c2010-04-07 22:27:08 +00002193 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohman572645c2010-02-12 10:34:29 +00002194 InsertSupplementalFormula(U, LU, LF.LUIdx);
2195 CountRegisters(LU.Formulae.back(), Uses.size() - 1);
2196 break;
2197 }
2198 }
2199 }
2200}
2201
2202/// CollectSubexprs - Split S into subexpressions which can be pulled out into
2203/// separate registers. If C is non-null, multiply each subexpression by C.
2204static void CollectSubexprs(const SCEV *S, const SCEVConstant *C,
2205 SmallVectorImpl<const SCEV *> &Ops,
2206 ScalarEvolution &SE) {
2207 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
2208 // Break out add operands.
2209 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
2210 I != E; ++I)
2211 CollectSubexprs(*I, C, Ops, SE);
2212 return;
2213 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
2214 // Split a non-zero base out of an addrec.
2215 if (!AR->getStart()->isZero()) {
Dan Gohmandeff6212010-05-03 22:09:21 +00002216 CollectSubexprs(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
Dan Gohman572645c2010-02-12 10:34:29 +00002217 AR->getStepRecurrence(SE),
2218 AR->getLoop()), C, Ops, SE);
Dan Gohman68d6da12010-02-12 19:35:25 +00002219 CollectSubexprs(AR->getStart(), C, Ops, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002220 return;
2221 }
2222 } else if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
2223 // Break (C * (a + b + c)) into C*a + C*b + C*c.
2224 if (Mul->getNumOperands() == 2)
2225 if (const SCEVConstant *Op0 =
2226 dyn_cast<SCEVConstant>(Mul->getOperand(0))) {
2227 CollectSubexprs(Mul->getOperand(1),
2228 C ? cast<SCEVConstant>(SE.getMulExpr(C, Op0)) : Op0,
2229 Ops, SE);
2230 return;
2231 }
2232 }
2233
2234 // Otherwise use the value itself.
2235 Ops.push_back(C ? SE.getMulExpr(C, S) : S);
2236}
2237
2238/// GenerateReassociations - Split out subexpressions from adds and the bases of
2239/// addrecs.
2240void LSRInstance::GenerateReassociations(LSRUse &LU, unsigned LUIdx,
2241 Formula Base,
2242 unsigned Depth) {
2243 // Arbitrarily cap recursion to protect compile time.
2244 if (Depth >= 3) return;
2245
2246 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
2247 const SCEV *BaseReg = Base.BaseRegs[i];
2248
2249 SmallVector<const SCEV *, 8> AddOps;
2250 CollectSubexprs(BaseReg, 0, AddOps, SE);
2251 if (AddOps.size() == 1) continue;
2252
2253 for (SmallVectorImpl<const SCEV *>::const_iterator J = AddOps.begin(),
2254 JE = AddOps.end(); J != JE; ++J) {
2255 // Don't pull a constant into a register if the constant could be folded
2256 // into an immediate field.
2257 if (isAlwaysFoldable(*J, LU.MinOffset, LU.MaxOffset,
2258 Base.getNumRegs() > 1,
2259 LU.Kind, LU.AccessTy, TLI, SE))
2260 continue;
2261
2262 // Collect all operands except *J.
Dan Gohman403a8cd2010-06-21 19:47:52 +00002263 SmallVector<const SCEV *, 8> InnerAddOps
2264 ( ((const SmallVector<const SCEV *, 8> &)AddOps).begin(), J);
2265 InnerAddOps.append
2266 (next(J), ((const SmallVector<const SCEV *, 8> &)AddOps).end());
Dan Gohman572645c2010-02-12 10:34:29 +00002267
2268 // Don't leave just a constant behind in a register if the constant could
2269 // be folded into an immediate field.
2270 if (InnerAddOps.size() == 1 &&
2271 isAlwaysFoldable(InnerAddOps[0], LU.MinOffset, LU.MaxOffset,
2272 Base.getNumRegs() > 1,
2273 LU.Kind, LU.AccessTy, TLI, SE))
2274 continue;
2275
Dan Gohmanfafb8902010-04-23 01:55:05 +00002276 const SCEV *InnerSum = SE.getAddExpr(InnerAddOps);
2277 if (InnerSum->isZero())
2278 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002279 Formula F = Base;
Dan Gohmanfafb8902010-04-23 01:55:05 +00002280 F.BaseRegs[i] = InnerSum;
Dan Gohman572645c2010-02-12 10:34:29 +00002281 F.BaseRegs.push_back(*J);
2282 if (InsertFormula(LU, LUIdx, F))
2283 // If that formula hadn't been seen before, recurse to find more like
2284 // it.
2285 GenerateReassociations(LU, LUIdx, LU.Formulae.back(), Depth+1);
2286 }
2287 }
2288}
2289
2290/// GenerateCombinations - Generate a formula consisting of all of the
2291/// loop-dominating registers added into a single register.
2292void LSRInstance::GenerateCombinations(LSRUse &LU, unsigned LUIdx,
Dan Gohman441a3892010-02-14 18:51:39 +00002293 Formula Base) {
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002294 // This method is only interesting on a plurality of registers.
Dan Gohman572645c2010-02-12 10:34:29 +00002295 if (Base.BaseRegs.size() <= 1) return;
2296
2297 Formula F = Base;
2298 F.BaseRegs.clear();
2299 SmallVector<const SCEV *, 4> Ops;
2300 for (SmallVectorImpl<const SCEV *>::const_iterator
2301 I = Base.BaseRegs.begin(), E = Base.BaseRegs.end(); I != E; ++I) {
2302 const SCEV *BaseReg = *I;
2303 if (BaseReg->properlyDominates(L->getHeader(), &DT) &&
2304 !BaseReg->hasComputableLoopEvolution(L))
2305 Ops.push_back(BaseReg);
2306 else
2307 F.BaseRegs.push_back(BaseReg);
2308 }
2309 if (Ops.size() > 1) {
Dan Gohmance947362010-02-14 18:50:49 +00002310 const SCEV *Sum = SE.getAddExpr(Ops);
2311 // TODO: If Sum is zero, it probably means ScalarEvolution missed an
2312 // opportunity to fold something. For now, just ignore such cases
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002313 // rather than proceed with zero in a register.
Dan Gohmance947362010-02-14 18:50:49 +00002314 if (!Sum->isZero()) {
2315 F.BaseRegs.push_back(Sum);
2316 (void)InsertFormula(LU, LUIdx, F);
2317 }
Dan Gohman572645c2010-02-12 10:34:29 +00002318 }
2319}
2320
2321/// GenerateSymbolicOffsets - Generate reuse formulae using symbolic offsets.
2322void LSRInstance::GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx,
2323 Formula Base) {
2324 // We can't add a symbolic offset if the address already contains one.
2325 if (Base.AM.BaseGV) return;
2326
2327 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
2328 const SCEV *G = Base.BaseRegs[i];
2329 GlobalValue *GV = ExtractSymbol(G, SE);
2330 if (G->isZero() || !GV)
2331 continue;
2332 Formula F = Base;
2333 F.AM.BaseGV = GV;
2334 if (!isLegalUse(F.AM, LU.MinOffset, LU.MaxOffset,
2335 LU.Kind, LU.AccessTy, TLI))
2336 continue;
2337 F.BaseRegs[i] = G;
2338 (void)InsertFormula(LU, LUIdx, F);
2339 }
2340}
2341
2342/// GenerateConstantOffsets - Generate reuse formulae using symbolic offsets.
2343void LSRInstance::GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx,
2344 Formula Base) {
2345 // TODO: For now, just add the min and max offset, because it usually isn't
2346 // worthwhile looking at everything inbetween.
2347 SmallVector<int64_t, 4> Worklist;
2348 Worklist.push_back(LU.MinOffset);
2349 if (LU.MaxOffset != LU.MinOffset)
2350 Worklist.push_back(LU.MaxOffset);
2351
2352 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
2353 const SCEV *G = Base.BaseRegs[i];
2354
2355 for (SmallVectorImpl<int64_t>::const_iterator I = Worklist.begin(),
2356 E = Worklist.end(); I != E; ++I) {
2357 Formula F = Base;
2358 F.AM.BaseOffs = (uint64_t)Base.AM.BaseOffs - *I;
2359 if (isLegalUse(F.AM, LU.MinOffset - *I, LU.MaxOffset - *I,
2360 LU.Kind, LU.AccessTy, TLI)) {
Dan Gohmandeff6212010-05-03 22:09:21 +00002361 F.BaseRegs[i] = SE.getAddExpr(G, SE.getConstant(G->getType(), *I));
Dan Gohman572645c2010-02-12 10:34:29 +00002362
2363 (void)InsertFormula(LU, LUIdx, F);
2364 }
2365 }
2366
2367 int64_t Imm = ExtractImmediate(G, SE);
2368 if (G->isZero() || Imm == 0)
2369 continue;
2370 Formula F = Base;
2371 F.AM.BaseOffs = (uint64_t)F.AM.BaseOffs + Imm;
2372 if (!isLegalUse(F.AM, LU.MinOffset, LU.MaxOffset,
2373 LU.Kind, LU.AccessTy, TLI))
2374 continue;
2375 F.BaseRegs[i] = G;
2376 (void)InsertFormula(LU, LUIdx, F);
2377 }
2378}
2379
2380/// GenerateICmpZeroScales - For ICmpZero, check to see if we can scale up
2381/// the comparison. For example, x == y -> x*c == y*c.
2382void LSRInstance::GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx,
2383 Formula Base) {
2384 if (LU.Kind != LSRUse::ICmpZero) return;
2385
2386 // Determine the integer type for the base formula.
2387 const Type *IntTy = Base.getType();
2388 if (!IntTy) return;
2389 if (SE.getTypeSizeInBits(IntTy) > 64) return;
2390
2391 // Don't do this if there is more than one offset.
2392 if (LU.MinOffset != LU.MaxOffset) return;
2393
2394 assert(!Base.AM.BaseGV && "ICmpZero use is not legal!");
2395
2396 // Check each interesting stride.
2397 for (SmallSetVector<int64_t, 8>::const_iterator
2398 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
2399 int64_t Factor = *I;
2400 Formula F = Base;
2401
2402 // Check that the multiplication doesn't overflow.
Dan Gohman968cb932010-02-17 00:41:53 +00002403 if (F.AM.BaseOffs == INT64_MIN && Factor == -1)
2404 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002405 F.AM.BaseOffs = (uint64_t)Base.AM.BaseOffs * Factor;
Dan Gohman378c0b32010-02-17 00:42:19 +00002406 if (F.AM.BaseOffs / Factor != Base.AM.BaseOffs)
Dan Gohman572645c2010-02-12 10:34:29 +00002407 continue;
2408
2409 // Check that multiplying with the use offset doesn't overflow.
2410 int64_t Offset = LU.MinOffset;
Dan Gohman968cb932010-02-17 00:41:53 +00002411 if (Offset == INT64_MIN && Factor == -1)
2412 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002413 Offset = (uint64_t)Offset * Factor;
Dan Gohman378c0b32010-02-17 00:42:19 +00002414 if (Offset / Factor != LU.MinOffset)
Dan Gohman572645c2010-02-12 10:34:29 +00002415 continue;
2416
2417 // Check that this scale is legal.
2418 if (!isLegalUse(F.AM, Offset, Offset, LU.Kind, LU.AccessTy, TLI))
2419 continue;
2420
2421 // Compensate for the use having MinOffset built into it.
2422 F.AM.BaseOffs = (uint64_t)F.AM.BaseOffs + Offset - LU.MinOffset;
2423
Dan Gohmandeff6212010-05-03 22:09:21 +00002424 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman572645c2010-02-12 10:34:29 +00002425
2426 // Check that multiplying with each base register doesn't overflow.
2427 for (size_t i = 0, e = F.BaseRegs.size(); i != e; ++i) {
2428 F.BaseRegs[i] = SE.getMulExpr(F.BaseRegs[i], FactorS);
Dan Gohmanf09b7122010-02-19 19:35:48 +00002429 if (getExactSDiv(F.BaseRegs[i], FactorS, SE) != Base.BaseRegs[i])
Dan Gohman572645c2010-02-12 10:34:29 +00002430 goto next;
2431 }
2432
2433 // Check that multiplying with the scaled register doesn't overflow.
2434 if (F.ScaledReg) {
2435 F.ScaledReg = SE.getMulExpr(F.ScaledReg, FactorS);
Dan Gohmanf09b7122010-02-19 19:35:48 +00002436 if (getExactSDiv(F.ScaledReg, FactorS, SE) != Base.ScaledReg)
Dan Gohman572645c2010-02-12 10:34:29 +00002437 continue;
2438 }
2439
2440 // If we make it here and it's legal, add it.
2441 (void)InsertFormula(LU, LUIdx, F);
2442 next:;
2443 }
2444}
2445
2446/// GenerateScales - Generate stride factor reuse formulae by making use of
2447/// scaled-offset address modes, for example.
Dan Gohmanea507f52010-05-20 19:44:23 +00002448void LSRInstance::GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman572645c2010-02-12 10:34:29 +00002449 // Determine the integer type for the base formula.
2450 const Type *IntTy = Base.getType();
2451 if (!IntTy) return;
2452
2453 // If this Formula already has a scaled register, we can't add another one.
2454 if (Base.AM.Scale != 0) return;
2455
2456 // Check each interesting stride.
2457 for (SmallSetVector<int64_t, 8>::const_iterator
2458 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
2459 int64_t Factor = *I;
2460
2461 Base.AM.Scale = Factor;
2462 Base.AM.HasBaseReg = Base.BaseRegs.size() > 1;
2463 // Check whether this scale is going to be legal.
2464 if (!isLegalUse(Base.AM, LU.MinOffset, LU.MaxOffset,
2465 LU.Kind, LU.AccessTy, TLI)) {
2466 // As a special-case, handle special out-of-loop Basic users specially.
2467 // TODO: Reconsider this special case.
2468 if (LU.Kind == LSRUse::Basic &&
2469 isLegalUse(Base.AM, LU.MinOffset, LU.MaxOffset,
2470 LSRUse::Special, LU.AccessTy, TLI) &&
2471 LU.AllFixupsOutsideLoop)
2472 LU.Kind = LSRUse::Special;
2473 else
2474 continue;
2475 }
2476 // For an ICmpZero, negating a solitary base register won't lead to
2477 // new solutions.
2478 if (LU.Kind == LSRUse::ICmpZero &&
2479 !Base.AM.HasBaseReg && Base.AM.BaseOffs == 0 && !Base.AM.BaseGV)
2480 continue;
2481 // For each addrec base reg, apply the scale, if possible.
2482 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
2483 if (const SCEVAddRecExpr *AR =
2484 dyn_cast<SCEVAddRecExpr>(Base.BaseRegs[i])) {
Dan Gohmandeff6212010-05-03 22:09:21 +00002485 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman572645c2010-02-12 10:34:29 +00002486 if (FactorS->isZero())
2487 continue;
2488 // Divide out the factor, ignoring high bits, since we'll be
2489 // scaling the value back up in the end.
Dan Gohmanf09b7122010-02-19 19:35:48 +00002490 if (const SCEV *Quotient = getExactSDiv(AR, FactorS, SE, true)) {
Dan Gohman572645c2010-02-12 10:34:29 +00002491 // TODO: This could be optimized to avoid all the copying.
2492 Formula F = Base;
2493 F.ScaledReg = Quotient;
Dan Gohman5ce6d052010-05-20 15:17:54 +00002494 F.DeleteBaseReg(F.BaseRegs[i]);
Dan Gohman572645c2010-02-12 10:34:29 +00002495 (void)InsertFormula(LU, LUIdx, F);
2496 }
2497 }
2498 }
2499}
2500
2501/// GenerateTruncates - Generate reuse formulae from different IV types.
Dan Gohmanea507f52010-05-20 19:44:23 +00002502void LSRInstance::GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman572645c2010-02-12 10:34:29 +00002503 // This requires TargetLowering to tell us which truncates are free.
2504 if (!TLI) return;
2505
2506 // Don't bother truncating symbolic values.
2507 if (Base.AM.BaseGV) return;
2508
2509 // Determine the integer type for the base formula.
2510 const Type *DstTy = Base.getType();
2511 if (!DstTy) return;
2512 DstTy = SE.getEffectiveSCEVType(DstTy);
2513
2514 for (SmallSetVector<const Type *, 4>::const_iterator
2515 I = Types.begin(), E = Types.end(); I != E; ++I) {
2516 const Type *SrcTy = *I;
2517 if (SrcTy != DstTy && TLI->isTruncateFree(SrcTy, DstTy)) {
2518 Formula F = Base;
2519
2520 if (F.ScaledReg) F.ScaledReg = SE.getAnyExtendExpr(F.ScaledReg, *I);
2521 for (SmallVectorImpl<const SCEV *>::iterator J = F.BaseRegs.begin(),
2522 JE = F.BaseRegs.end(); J != JE; ++J)
2523 *J = SE.getAnyExtendExpr(*J, SrcTy);
2524
2525 // TODO: This assumes we've done basic processing on all uses and
2526 // have an idea what the register usage is.
2527 if (!F.hasRegsUsedByUsesOtherThan(LUIdx, RegUses))
2528 continue;
2529
2530 (void)InsertFormula(LU, LUIdx, F);
2531 }
2532 }
2533}
2534
2535namespace {
2536
Dan Gohman6020d852010-02-14 18:51:20 +00002537/// WorkItem - Helper class for GenerateCrossUseConstantOffsets. It's used to
Dan Gohman572645c2010-02-12 10:34:29 +00002538/// defer modifications so that the search phase doesn't have to worry about
2539/// the data structures moving underneath it.
2540struct WorkItem {
2541 size_t LUIdx;
2542 int64_t Imm;
2543 const SCEV *OrigReg;
2544
2545 WorkItem(size_t LI, int64_t I, const SCEV *R)
2546 : LUIdx(LI), Imm(I), OrigReg(R) {}
2547
2548 void print(raw_ostream &OS) const;
2549 void dump() const;
2550};
2551
2552}
2553
2554void WorkItem::print(raw_ostream &OS) const {
2555 OS << "in formulae referencing " << *OrigReg << " in use " << LUIdx
2556 << " , add offset " << Imm;
2557}
2558
2559void WorkItem::dump() const {
2560 print(errs()); errs() << '\n';
2561}
2562
2563/// GenerateCrossUseConstantOffsets - Look for registers which are a constant
2564/// distance apart and try to form reuse opportunities between them.
2565void LSRInstance::GenerateCrossUseConstantOffsets() {
2566 // Group the registers by their value without any added constant offset.
2567 typedef std::map<int64_t, const SCEV *> ImmMapTy;
2568 typedef DenseMap<const SCEV *, ImmMapTy> RegMapTy;
2569 RegMapTy Map;
2570 DenseMap<const SCEV *, SmallBitVector> UsedByIndicesMap;
2571 SmallVector<const SCEV *, 8> Sequence;
2572 for (RegUseTracker::const_iterator I = RegUses.begin(), E = RegUses.end();
2573 I != E; ++I) {
2574 const SCEV *Reg = *I;
2575 int64_t Imm = ExtractImmediate(Reg, SE);
2576 std::pair<RegMapTy::iterator, bool> Pair =
2577 Map.insert(std::make_pair(Reg, ImmMapTy()));
2578 if (Pair.second)
2579 Sequence.push_back(Reg);
2580 Pair.first->second.insert(std::make_pair(Imm, *I));
2581 UsedByIndicesMap[Reg] |= RegUses.getUsedByIndices(*I);
2582 }
2583
2584 // Now examine each set of registers with the same base value. Build up
2585 // a list of work to do and do the work in a separate step so that we're
2586 // not adding formulae and register counts while we're searching.
2587 SmallVector<WorkItem, 32> WorkItems;
2588 SmallSet<std::pair<size_t, int64_t>, 32> UniqueItems;
2589 for (SmallVectorImpl<const SCEV *>::const_iterator I = Sequence.begin(),
2590 E = Sequence.end(); I != E; ++I) {
2591 const SCEV *Reg = *I;
2592 const ImmMapTy &Imms = Map.find(Reg)->second;
2593
Dan Gohmancd045c02010-02-12 19:20:37 +00002594 // It's not worthwhile looking for reuse if there's only one offset.
2595 if (Imms.size() == 1)
2596 continue;
2597
Dan Gohman572645c2010-02-12 10:34:29 +00002598 DEBUG(dbgs() << "Generating cross-use offsets for " << *Reg << ':';
2599 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
2600 J != JE; ++J)
2601 dbgs() << ' ' << J->first;
2602 dbgs() << '\n');
2603
2604 // Examine each offset.
2605 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
2606 J != JE; ++J) {
2607 const SCEV *OrigReg = J->second;
2608
2609 int64_t JImm = J->first;
2610 const SmallBitVector &UsedByIndices = RegUses.getUsedByIndices(OrigReg);
2611
2612 if (!isa<SCEVConstant>(OrigReg) &&
2613 UsedByIndicesMap[Reg].count() == 1) {
2614 DEBUG(dbgs() << "Skipping cross-use reuse for " << *OrigReg << '\n');
2615 continue;
2616 }
2617
2618 // Conservatively examine offsets between this orig reg a few selected
2619 // other orig regs.
2620 ImmMapTy::const_iterator OtherImms[] = {
2621 Imms.begin(), prior(Imms.end()),
2622 Imms.upper_bound((Imms.begin()->first + prior(Imms.end())->first) / 2)
2623 };
2624 for (size_t i = 0, e = array_lengthof(OtherImms); i != e; ++i) {
2625 ImmMapTy::const_iterator M = OtherImms[i];
Dan Gohmancd045c02010-02-12 19:20:37 +00002626 if (M == J || M == JE) continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002627
2628 // Compute the difference between the two.
2629 int64_t Imm = (uint64_t)JImm - M->first;
2630 for (int LUIdx = UsedByIndices.find_first(); LUIdx != -1;
2631 LUIdx = UsedByIndices.find_next(LUIdx))
2632 // Make a memo of this use, offset, and register tuple.
2633 if (UniqueItems.insert(std::make_pair(LUIdx, Imm)))
2634 WorkItems.push_back(WorkItem(LUIdx, Imm, OrigReg));
Evan Cheng586f69a2009-11-12 07:35:05 +00002635 }
2636 }
2637 }
2638
Dan Gohman572645c2010-02-12 10:34:29 +00002639 Map.clear();
2640 Sequence.clear();
2641 UsedByIndicesMap.clear();
2642 UniqueItems.clear();
2643
2644 // Now iterate through the worklist and add new formulae.
2645 for (SmallVectorImpl<WorkItem>::const_iterator I = WorkItems.begin(),
2646 E = WorkItems.end(); I != E; ++I) {
2647 const WorkItem &WI = *I;
2648 size_t LUIdx = WI.LUIdx;
2649 LSRUse &LU = Uses[LUIdx];
2650 int64_t Imm = WI.Imm;
2651 const SCEV *OrigReg = WI.OrigReg;
2652
2653 const Type *IntTy = SE.getEffectiveSCEVType(OrigReg->getType());
2654 const SCEV *NegImmS = SE.getSCEV(ConstantInt::get(IntTy, -(uint64_t)Imm));
2655 unsigned BitWidth = SE.getTypeSizeInBits(IntTy);
2656
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002657 // TODO: Use a more targeted data structure.
Dan Gohman572645c2010-02-12 10:34:29 +00002658 for (size_t L = 0, LE = LU.Formulae.size(); L != LE; ++L) {
Dan Gohman9f383eb2010-05-20 22:25:20 +00002659 const Formula &F = LU.Formulae[L];
Dan Gohman572645c2010-02-12 10:34:29 +00002660 // Use the immediate in the scaled register.
2661 if (F.ScaledReg == OrigReg) {
2662 int64_t Offs = (uint64_t)F.AM.BaseOffs +
2663 Imm * (uint64_t)F.AM.Scale;
2664 // Don't create 50 + reg(-50).
2665 if (F.referencesReg(SE.getSCEV(
2666 ConstantInt::get(IntTy, -(uint64_t)Offs))))
2667 continue;
2668 Formula NewF = F;
2669 NewF.AM.BaseOffs = Offs;
2670 if (!isLegalUse(NewF.AM, LU.MinOffset, LU.MaxOffset,
2671 LU.Kind, LU.AccessTy, TLI))
2672 continue;
2673 NewF.ScaledReg = SE.getAddExpr(NegImmS, NewF.ScaledReg);
2674
2675 // If the new scale is a constant in a register, and adding the constant
2676 // value to the immediate would produce a value closer to zero than the
2677 // immediate itself, then the formula isn't worthwhile.
2678 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewF.ScaledReg))
2679 if (C->getValue()->getValue().isNegative() !=
2680 (NewF.AM.BaseOffs < 0) &&
2681 (C->getValue()->getValue().abs() * APInt(BitWidth, F.AM.Scale))
Dan Gohmane0567812010-04-08 23:03:40 +00002682 .ule(abs64(NewF.AM.BaseOffs)))
Dan Gohman572645c2010-02-12 10:34:29 +00002683 continue;
2684
2685 // OK, looks good.
2686 (void)InsertFormula(LU, LUIdx, NewF);
2687 } else {
2688 // Use the immediate in a base register.
2689 for (size_t N = 0, NE = F.BaseRegs.size(); N != NE; ++N) {
2690 const SCEV *BaseReg = F.BaseRegs[N];
2691 if (BaseReg != OrigReg)
2692 continue;
2693 Formula NewF = F;
2694 NewF.AM.BaseOffs = (uint64_t)NewF.AM.BaseOffs + Imm;
2695 if (!isLegalUse(NewF.AM, LU.MinOffset, LU.MaxOffset,
2696 LU.Kind, LU.AccessTy, TLI))
2697 continue;
2698 NewF.BaseRegs[N] = SE.getAddExpr(NegImmS, BaseReg);
2699
2700 // If the new formula has a constant in a register, and adding the
2701 // constant value to the immediate would produce a value closer to
2702 // zero than the immediate itself, then the formula isn't worthwhile.
2703 for (SmallVectorImpl<const SCEV *>::const_iterator
2704 J = NewF.BaseRegs.begin(), JE = NewF.BaseRegs.end();
2705 J != JE; ++J)
2706 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*J))
Dan Gohman360026f2010-05-18 23:48:08 +00002707 if ((C->getValue()->getValue() + NewF.AM.BaseOffs).abs().slt(
2708 abs64(NewF.AM.BaseOffs)) &&
2709 (C->getValue()->getValue() +
2710 NewF.AM.BaseOffs).countTrailingZeros() >=
2711 CountTrailingZeros_64(NewF.AM.BaseOffs))
Dan Gohman572645c2010-02-12 10:34:29 +00002712 goto skip_formula;
2713
2714 // Ok, looks good.
2715 (void)InsertFormula(LU, LUIdx, NewF);
2716 break;
2717 skip_formula:;
2718 }
2719 }
2720 }
2721 }
Dale Johannesenc1acc3f2009-05-11 17:15:42 +00002722}
2723
Dan Gohman572645c2010-02-12 10:34:29 +00002724/// GenerateAllReuseFormulae - Generate formulae for each use.
2725void
2726LSRInstance::GenerateAllReuseFormulae() {
Dan Gohmanc2385a02010-02-16 01:42:53 +00002727 // This is split into multiple loops so that hasRegsUsedByUsesOtherThan
Dan Gohman572645c2010-02-12 10:34:29 +00002728 // queries are more precise.
2729 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2730 LSRUse &LU = Uses[LUIdx];
2731 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2732 GenerateReassociations(LU, LUIdx, LU.Formulae[i]);
2733 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2734 GenerateCombinations(LU, LUIdx, LU.Formulae[i]);
2735 }
2736 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2737 LSRUse &LU = Uses[LUIdx];
2738 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2739 GenerateSymbolicOffsets(LU, LUIdx, LU.Formulae[i]);
2740 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2741 GenerateConstantOffsets(LU, LUIdx, LU.Formulae[i]);
2742 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2743 GenerateICmpZeroScales(LU, LUIdx, LU.Formulae[i]);
2744 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2745 GenerateScales(LU, LUIdx, LU.Formulae[i]);
Dan Gohmanc2385a02010-02-16 01:42:53 +00002746 }
2747 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2748 LSRUse &LU = Uses[LUIdx];
Dan Gohman572645c2010-02-12 10:34:29 +00002749 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2750 GenerateTruncates(LU, LUIdx, LU.Formulae[i]);
2751 }
2752
2753 GenerateCrossUseConstantOffsets();
2754}
2755
2756/// If their are multiple formulae with the same set of registers used
2757/// by other uses, pick the best one and delete the others.
2758void LSRInstance::FilterOutUndesirableDedicatedRegisters() {
2759#ifndef NDEBUG
Dan Gohmanc6519f92010-05-20 20:05:31 +00002760 bool ChangedFormulae = false;
Dan Gohman572645c2010-02-12 10:34:29 +00002761#endif
2762
2763 // Collect the best formula for each unique set of shared registers. This
2764 // is reset for each use.
2765 typedef DenseMap<SmallVector<const SCEV *, 2>, size_t, UniquifierDenseMapInfo>
2766 BestFormulaeTy;
2767 BestFormulaeTy BestFormulae;
2768
2769 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2770 LSRUse &LU = Uses[LUIdx];
2771 FormulaSorter Sorter(L, LU, SE, DT);
Dan Gohmanea507f52010-05-20 19:44:23 +00002772 DEBUG(dbgs() << "Filtering for use "; LU.print(dbgs()); dbgs() << '\n');
Dan Gohman572645c2010-02-12 10:34:29 +00002773
Dan Gohmanb2df4332010-05-18 23:42:37 +00002774 bool Any = false;
Dan Gohman572645c2010-02-12 10:34:29 +00002775 for (size_t FIdx = 0, NumForms = LU.Formulae.size();
2776 FIdx != NumForms; ++FIdx) {
2777 Formula &F = LU.Formulae[FIdx];
2778
2779 SmallVector<const SCEV *, 2> Key;
2780 for (SmallVectorImpl<const SCEV *>::const_iterator J = F.BaseRegs.begin(),
2781 JE = F.BaseRegs.end(); J != JE; ++J) {
2782 const SCEV *Reg = *J;
2783 if (RegUses.isRegUsedByUsesOtherThan(Reg, LUIdx))
2784 Key.push_back(Reg);
2785 }
2786 if (F.ScaledReg &&
2787 RegUses.isRegUsedByUsesOtherThan(F.ScaledReg, LUIdx))
2788 Key.push_back(F.ScaledReg);
2789 // Unstable sort by host order ok, because this is only used for
2790 // uniquifying.
2791 std::sort(Key.begin(), Key.end());
2792
2793 std::pair<BestFormulaeTy::const_iterator, bool> P =
2794 BestFormulae.insert(std::make_pair(Key, FIdx));
2795 if (!P.second) {
2796 Formula &Best = LU.Formulae[P.first->second];
2797 if (Sorter.operator()(F, Best))
2798 std::swap(F, Best);
Dan Gohman6458ff92010-05-18 22:37:37 +00002799 DEBUG(dbgs() << " Filtering out formula "; F.print(dbgs());
Dan Gohman572645c2010-02-12 10:34:29 +00002800 dbgs() << "\n"
Dan Gohman6458ff92010-05-18 22:37:37 +00002801 " in favor of formula "; Best.print(dbgs());
Dan Gohman572645c2010-02-12 10:34:29 +00002802 dbgs() << '\n');
2803#ifndef NDEBUG
Dan Gohmanc6519f92010-05-20 20:05:31 +00002804 ChangedFormulae = true;
Dan Gohman572645c2010-02-12 10:34:29 +00002805#endif
Dan Gohmand69d6282010-05-18 22:39:15 +00002806 LU.DeleteFormula(F);
Dan Gohman572645c2010-02-12 10:34:29 +00002807 --FIdx;
2808 --NumForms;
Dan Gohmanb2df4332010-05-18 23:42:37 +00002809 Any = true;
Dan Gohman572645c2010-02-12 10:34:29 +00002810 continue;
2811 }
Dan Gohman59dc6032010-05-07 23:36:59 +00002812 }
2813
Dan Gohman57aaa0b2010-05-18 23:55:57 +00002814 // Now that we've filtered out some formulae, recompute the Regs set.
Dan Gohmanb2df4332010-05-18 23:42:37 +00002815 if (Any)
2816 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman59dc6032010-05-07 23:36:59 +00002817
2818 // Reset this to prepare for the next use.
Dan Gohman572645c2010-02-12 10:34:29 +00002819 BestFormulae.clear();
2820 }
2821
Dan Gohmanc6519f92010-05-20 20:05:31 +00002822 DEBUG(if (ChangedFormulae) {
Dan Gohman9214b822010-02-13 02:06:02 +00002823 dbgs() << "\n"
2824 "After filtering out undesirable candidates:\n";
Dan Gohman572645c2010-02-12 10:34:29 +00002825 print_uses(dbgs());
2826 });
2827}
2828
Dan Gohmand079c302010-05-18 22:51:59 +00002829// This is a rough guess that seems to work fairly well.
2830static const size_t ComplexityLimit = UINT16_MAX;
2831
2832/// EstimateSearchSpaceComplexity - Estimate the worst-case number of
2833/// solutions the solver might have to consider. It almost never considers
2834/// this many solutions because it prune the search space, but the pruning
2835/// isn't always sufficient.
2836size_t LSRInstance::EstimateSearchSpaceComplexity() const {
2837 uint32_t Power = 1;
2838 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
2839 E = Uses.end(); I != E; ++I) {
2840 size_t FSize = I->Formulae.size();
2841 if (FSize >= ComplexityLimit) {
2842 Power = ComplexityLimit;
2843 break;
2844 }
2845 Power *= FSize;
2846 if (Power >= ComplexityLimit)
2847 break;
2848 }
2849 return Power;
2850}
2851
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002852/// NarrowSearchSpaceUsingHeuristics - If there are an extraordinary number of
Dan Gohman572645c2010-02-12 10:34:29 +00002853/// formulae to choose from, use some rough heuristics to prune down the number
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002854/// of formulae. This keeps the main solver from taking an extraordinary amount
Dan Gohman572645c2010-02-12 10:34:29 +00002855/// of time in some worst-case scenarios.
2856void LSRInstance::NarrowSearchSpaceUsingHeuristics() {
Dan Gohmana2086b32010-05-19 23:43:12 +00002857 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
2858 DEBUG(dbgs() << "The search space is too complex.\n");
2859
2860 DEBUG(dbgs() << "Narrowing the search space by eliminating formulae "
2861 "which use a superset of registers used by other "
2862 "formulae.\n");
2863
2864 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2865 LSRUse &LU = Uses[LUIdx];
2866 bool Any = false;
2867 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
2868 Formula &F = LU.Formulae[i];
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00002869 // Look for a formula with a constant or GV in a register. If the use
2870 // also has a formula with that same value in an immediate field,
2871 // delete the one that uses a register.
Dan Gohmana2086b32010-05-19 23:43:12 +00002872 for (SmallVectorImpl<const SCEV *>::const_iterator
2873 I = F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I) {
2874 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*I)) {
2875 Formula NewF = F;
2876 NewF.AM.BaseOffs += C->getValue()->getSExtValue();
2877 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
2878 (I - F.BaseRegs.begin()));
2879 if (LU.HasFormulaWithSameRegs(NewF)) {
2880 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
2881 LU.DeleteFormula(F);
2882 --i;
2883 --e;
2884 Any = true;
2885 break;
2886 }
2887 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(*I)) {
2888 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue()))
2889 if (!F.AM.BaseGV) {
2890 Formula NewF = F;
2891 NewF.AM.BaseGV = GV;
2892 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
2893 (I - F.BaseRegs.begin()));
2894 if (LU.HasFormulaWithSameRegs(NewF)) {
2895 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
2896 dbgs() << '\n');
2897 LU.DeleteFormula(F);
2898 --i;
2899 --e;
2900 Any = true;
2901 break;
2902 }
2903 }
2904 }
2905 }
2906 }
2907 if (Any)
2908 LU.RecomputeRegs(LUIdx, RegUses);
2909 }
2910
2911 DEBUG(dbgs() << "After pre-selection:\n";
2912 print_uses(dbgs()));
2913 }
2914
2915 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
2916 DEBUG(dbgs() << "The search space is too complex.\n");
2917
2918 DEBUG(dbgs() << "Narrowing the search space by assuming that uses "
2919 "separated by a constant offset will use the same "
2920 "registers.\n");
2921
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00002922 // This is especially useful for unrolled loops.
2923
Dan Gohmana2086b32010-05-19 23:43:12 +00002924 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2925 LSRUse &LU = Uses[LUIdx];
Dan Gohman402d4352010-05-20 20:33:18 +00002926 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
2927 E = LU.Formulae.end(); I != E; ++I) {
2928 const Formula &F = *I;
Dan Gohmana2086b32010-05-19 23:43:12 +00002929 if (F.AM.BaseOffs != 0 && F.AM.Scale == 0) {
2930 if (LSRUse *LUThatHas = FindUseWithSimilarFormula(F, LU)) {
2931 if (reconcileNewOffset(*LUThatHas, F.AM.BaseOffs,
2932 /*HasBaseReg=*/false,
2933 LU.Kind, LU.AccessTy)) {
2934 DEBUG(dbgs() << " Deleting use "; LU.print(dbgs());
2935 dbgs() << '\n');
2936
2937 LUThatHas->AllFixupsOutsideLoop &= LU.AllFixupsOutsideLoop;
2938
2939 // Delete formulae from the new use which are no longer legal.
2940 bool Any = false;
2941 for (size_t i = 0, e = LUThatHas->Formulae.size(); i != e; ++i) {
2942 Formula &F = LUThatHas->Formulae[i];
2943 if (!isLegalUse(F.AM,
2944 LUThatHas->MinOffset, LUThatHas->MaxOffset,
2945 LUThatHas->Kind, LUThatHas->AccessTy, TLI)) {
2946 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
2947 dbgs() << '\n');
2948 LUThatHas->DeleteFormula(F);
2949 --i;
2950 --e;
2951 Any = true;
2952 }
2953 }
2954 if (Any)
2955 LUThatHas->RecomputeRegs(LUThatHas - &Uses.front(), RegUses);
2956
2957 // Update the relocs to reference the new use.
Dan Gohman402d4352010-05-20 20:33:18 +00002958 for (SmallVectorImpl<LSRFixup>::iterator I = Fixups.begin(),
2959 E = Fixups.end(); I != E; ++I) {
2960 LSRFixup &Fixup = *I;
2961 if (Fixup.LUIdx == LUIdx) {
2962 Fixup.LUIdx = LUThatHas - &Uses.front();
2963 Fixup.Offset += F.AM.BaseOffs;
Dan Gohmana2086b32010-05-19 23:43:12 +00002964 DEBUG(errs() << "New fixup has offset "
Dan Gohman402d4352010-05-20 20:33:18 +00002965 << Fixup.Offset << '\n');
Dan Gohmana2086b32010-05-19 23:43:12 +00002966 }
Dan Gohman402d4352010-05-20 20:33:18 +00002967 if (Fixup.LUIdx == NumUses-1)
2968 Fixup.LUIdx = LUIdx;
Dan Gohmana2086b32010-05-19 23:43:12 +00002969 }
2970
2971 // Delete the old use.
Dan Gohman5ce6d052010-05-20 15:17:54 +00002972 DeleteUse(LU);
Dan Gohmana2086b32010-05-19 23:43:12 +00002973 --LUIdx;
2974 --NumUses;
2975 break;
2976 }
2977 }
2978 }
2979 }
2980 }
2981
2982 DEBUG(dbgs() << "After pre-selection:\n";
2983 print_uses(dbgs()));
2984 }
2985
Dan Gohman76c315a2010-05-20 20:52:00 +00002986 // With all other options exhausted, loop until the system is simple
2987 // enough to handle.
Dan Gohman572645c2010-02-12 10:34:29 +00002988 SmallPtrSet<const SCEV *, 4> Taken;
Dan Gohmand079c302010-05-18 22:51:59 +00002989 while (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
Dan Gohman572645c2010-02-12 10:34:29 +00002990 // Ok, we have too many of formulae on our hands to conveniently handle.
2991 // Use a rough heuristic to thin out the list.
Dan Gohman0da751b2010-05-18 22:41:32 +00002992 DEBUG(dbgs() << "The search space is too complex.\n");
Dan Gohman572645c2010-02-12 10:34:29 +00002993
2994 // Pick the register which is used by the most LSRUses, which is likely
2995 // to be a good reuse register candidate.
2996 const SCEV *Best = 0;
2997 unsigned BestNum = 0;
2998 for (RegUseTracker::const_iterator I = RegUses.begin(), E = RegUses.end();
2999 I != E; ++I) {
3000 const SCEV *Reg = *I;
3001 if (Taken.count(Reg))
3002 continue;
3003 if (!Best)
3004 Best = Reg;
3005 else {
3006 unsigned Count = RegUses.getUsedByIndices(Reg).count();
3007 if (Count > BestNum) {
3008 Best = Reg;
3009 BestNum = Count;
3010 }
3011 }
3012 }
3013
3014 DEBUG(dbgs() << "Narrowing the search space by assuming " << *Best
Dan Gohman3f46a3a2010-03-01 17:49:51 +00003015 << " will yield profitable reuse.\n");
Dan Gohman572645c2010-02-12 10:34:29 +00003016 Taken.insert(Best);
3017
3018 // In any use with formulae which references this register, delete formulae
3019 // which don't reference it.
Dan Gohmanb2df4332010-05-18 23:42:37 +00003020 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3021 LSRUse &LU = Uses[LUIdx];
Dan Gohman572645c2010-02-12 10:34:29 +00003022 if (!LU.Regs.count(Best)) continue;
3023
Dan Gohmanb2df4332010-05-18 23:42:37 +00003024 bool Any = false;
Dan Gohman572645c2010-02-12 10:34:29 +00003025 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
3026 Formula &F = LU.Formulae[i];
3027 if (!F.referencesReg(Best)) {
3028 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
Dan Gohmand69d6282010-05-18 22:39:15 +00003029 LU.DeleteFormula(F);
Dan Gohman572645c2010-02-12 10:34:29 +00003030 --e;
3031 --i;
Dan Gohmanb2df4332010-05-18 23:42:37 +00003032 Any = true;
Dan Gohman59dc6032010-05-07 23:36:59 +00003033 assert(e != 0 && "Use has no formulae left! Is Regs inconsistent?");
Dan Gohman572645c2010-02-12 10:34:29 +00003034 continue;
3035 }
Dan Gohman572645c2010-02-12 10:34:29 +00003036 }
Dan Gohmanb2df4332010-05-18 23:42:37 +00003037
3038 if (Any)
3039 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman572645c2010-02-12 10:34:29 +00003040 }
3041
3042 DEBUG(dbgs() << "After pre-selection:\n";
3043 print_uses(dbgs()));
3044 }
3045}
3046
3047/// SolveRecurse - This is the recursive solver.
3048void LSRInstance::SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
3049 Cost &SolutionCost,
3050 SmallVectorImpl<const Formula *> &Workspace,
3051 const Cost &CurCost,
3052 const SmallPtrSet<const SCEV *, 16> &CurRegs,
3053 DenseSet<const SCEV *> &VisitedRegs) const {
3054 // Some ideas:
3055 // - prune more:
3056 // - use more aggressive filtering
3057 // - sort the formula so that the most profitable solutions are found first
3058 // - sort the uses too
3059 // - search faster:
Dan Gohman3f46a3a2010-03-01 17:49:51 +00003060 // - don't compute a cost, and then compare. compare while computing a cost
Dan Gohman572645c2010-02-12 10:34:29 +00003061 // and bail early.
3062 // - track register sets with SmallBitVector
3063
3064 const LSRUse &LU = Uses[Workspace.size()];
3065
3066 // If this use references any register that's already a part of the
3067 // in-progress solution, consider it a requirement that a formula must
3068 // reference that register in order to be considered. This prunes out
3069 // unprofitable searching.
3070 SmallSetVector<const SCEV *, 4> ReqRegs;
3071 for (SmallPtrSet<const SCEV *, 16>::const_iterator I = CurRegs.begin(),
3072 E = CurRegs.end(); I != E; ++I)
Dan Gohman9214b822010-02-13 02:06:02 +00003073 if (LU.Regs.count(*I))
Dan Gohman572645c2010-02-12 10:34:29 +00003074 ReqRegs.insert(*I);
Dan Gohman572645c2010-02-12 10:34:29 +00003075
Dan Gohman9214b822010-02-13 02:06:02 +00003076 bool AnySatisfiedReqRegs = false;
Dan Gohman572645c2010-02-12 10:34:29 +00003077 SmallPtrSet<const SCEV *, 16> NewRegs;
3078 Cost NewCost;
Dan Gohman9214b822010-02-13 02:06:02 +00003079retry:
Dan Gohman572645c2010-02-12 10:34:29 +00003080 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
3081 E = LU.Formulae.end(); I != E; ++I) {
3082 const Formula &F = *I;
3083
3084 // Ignore formulae which do not use any of the required registers.
3085 for (SmallSetVector<const SCEV *, 4>::const_iterator J = ReqRegs.begin(),
3086 JE = ReqRegs.end(); J != JE; ++J) {
3087 const SCEV *Reg = *J;
3088 if ((!F.ScaledReg || F.ScaledReg != Reg) &&
3089 std::find(F.BaseRegs.begin(), F.BaseRegs.end(), Reg) ==
3090 F.BaseRegs.end())
3091 goto skip;
3092 }
Dan Gohman9214b822010-02-13 02:06:02 +00003093 AnySatisfiedReqRegs = true;
Dan Gohman572645c2010-02-12 10:34:29 +00003094
3095 // Evaluate the cost of the current formula. If it's already worse than
3096 // the current best, prune the search at that point.
3097 NewCost = CurCost;
3098 NewRegs = CurRegs;
3099 NewCost.RateFormula(F, NewRegs, VisitedRegs, L, LU.Offsets, SE, DT);
3100 if (NewCost < SolutionCost) {
3101 Workspace.push_back(&F);
3102 if (Workspace.size() != Uses.size()) {
3103 SolveRecurse(Solution, SolutionCost, Workspace, NewCost,
3104 NewRegs, VisitedRegs);
3105 if (F.getNumRegs() == 1 && Workspace.size() == 1)
3106 VisitedRegs.insert(F.ScaledReg ? F.ScaledReg : F.BaseRegs[0]);
3107 } else {
3108 DEBUG(dbgs() << "New best at "; NewCost.print(dbgs());
3109 dbgs() << ". Regs:";
3110 for (SmallPtrSet<const SCEV *, 16>::const_iterator
3111 I = NewRegs.begin(), E = NewRegs.end(); I != E; ++I)
3112 dbgs() << ' ' << **I;
3113 dbgs() << '\n');
3114
3115 SolutionCost = NewCost;
3116 Solution = Workspace;
3117 }
3118 Workspace.pop_back();
3119 }
3120 skip:;
3121 }
Dan Gohman9214b822010-02-13 02:06:02 +00003122
3123 // If none of the formulae had all of the required registers, relax the
3124 // constraint so that we don't exclude all formulae.
3125 if (!AnySatisfiedReqRegs) {
Dan Gohman59dc6032010-05-07 23:36:59 +00003126 assert(!ReqRegs.empty() && "Solver failed even without required registers");
Dan Gohman9214b822010-02-13 02:06:02 +00003127 ReqRegs.clear();
3128 goto retry;
3129 }
Dan Gohman572645c2010-02-12 10:34:29 +00003130}
3131
Dan Gohman76c315a2010-05-20 20:52:00 +00003132/// Solve - Choose one formula from each use. Return the results in the given
3133/// Solution vector.
Dan Gohman572645c2010-02-12 10:34:29 +00003134void LSRInstance::Solve(SmallVectorImpl<const Formula *> &Solution) const {
3135 SmallVector<const Formula *, 8> Workspace;
3136 Cost SolutionCost;
3137 SolutionCost.Loose();
3138 Cost CurCost;
3139 SmallPtrSet<const SCEV *, 16> CurRegs;
3140 DenseSet<const SCEV *> VisitedRegs;
3141 Workspace.reserve(Uses.size());
3142
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00003143 // SolveRecurse does all the work.
Dan Gohman572645c2010-02-12 10:34:29 +00003144 SolveRecurse(Solution, SolutionCost, Workspace, CurCost,
3145 CurRegs, VisitedRegs);
3146
3147 // Ok, we've now made all our decisions.
3148 DEBUG(dbgs() << "\n"
3149 "The chosen solution requires "; SolutionCost.print(dbgs());
3150 dbgs() << ":\n";
3151 for (size_t i = 0, e = Uses.size(); i != e; ++i) {
3152 dbgs() << " ";
3153 Uses[i].print(dbgs());
3154 dbgs() << "\n"
3155 " ";
3156 Solution[i]->print(dbgs());
3157 dbgs() << '\n';
3158 });
Dan Gohmana5528782010-05-20 20:59:23 +00003159
3160 assert(Solution.size() == Uses.size() && "Malformed solution!");
Dan Gohman572645c2010-02-12 10:34:29 +00003161}
3162
Dan Gohmane5f76872010-04-09 22:07:05 +00003163/// HoistInsertPosition - Helper for AdjustInsertPositionForExpand. Climb up
3164/// the dominator tree far as we can go while still being dominated by the
3165/// input positions. This helps canonicalize the insert position, which
3166/// encourages sharing.
3167BasicBlock::iterator
3168LSRInstance::HoistInsertPosition(BasicBlock::iterator IP,
3169 const SmallVectorImpl<Instruction *> &Inputs)
3170 const {
3171 for (;;) {
3172 const Loop *IPLoop = LI.getLoopFor(IP->getParent());
3173 unsigned IPLoopDepth = IPLoop ? IPLoop->getLoopDepth() : 0;
3174
3175 BasicBlock *IDom;
Dan Gohmand974a0e2010-05-20 20:00:25 +00003176 for (DomTreeNode *Rung = DT.getNode(IP->getParent()); ; ) {
Dan Gohman0fe46d92010-05-20 22:46:54 +00003177 if (!Rung) return IP;
Dan Gohmand974a0e2010-05-20 20:00:25 +00003178 Rung = Rung->getIDom();
3179 if (!Rung) return IP;
3180 IDom = Rung->getBlock();
Dan Gohmane5f76872010-04-09 22:07:05 +00003181
3182 // Don't climb into a loop though.
3183 const Loop *IDomLoop = LI.getLoopFor(IDom);
3184 unsigned IDomDepth = IDomLoop ? IDomLoop->getLoopDepth() : 0;
3185 if (IDomDepth <= IPLoopDepth &&
3186 (IDomDepth != IPLoopDepth || IDomLoop == IPLoop))
3187 break;
3188 }
3189
3190 bool AllDominate = true;
3191 Instruction *BetterPos = 0;
3192 Instruction *Tentative = IDom->getTerminator();
3193 for (SmallVectorImpl<Instruction *>::const_iterator I = Inputs.begin(),
3194 E = Inputs.end(); I != E; ++I) {
3195 Instruction *Inst = *I;
3196 if (Inst == Tentative || !DT.dominates(Inst, Tentative)) {
3197 AllDominate = false;
3198 break;
3199 }
3200 // Attempt to find an insert position in the middle of the block,
3201 // instead of at the end, so that it can be used for other expansions.
3202 if (IDom == Inst->getParent() &&
3203 (!BetterPos || DT.dominates(BetterPos, Inst)))
Douglas Gregor7d9663c2010-05-11 06:17:44 +00003204 BetterPos = llvm::next(BasicBlock::iterator(Inst));
Dan Gohmane5f76872010-04-09 22:07:05 +00003205 }
3206 if (!AllDominate)
3207 break;
3208 if (BetterPos)
3209 IP = BetterPos;
3210 else
3211 IP = Tentative;
3212 }
3213
3214 return IP;
3215}
3216
3217/// AdjustInsertPositionForExpand - Determine an input position which will be
Dan Gohmand96eae82010-04-09 02:00:38 +00003218/// dominated by the operands and which will dominate the result.
3219BasicBlock::iterator
Dan Gohmane5f76872010-04-09 22:07:05 +00003220LSRInstance::AdjustInsertPositionForExpand(BasicBlock::iterator IP,
3221 const LSRFixup &LF,
3222 const LSRUse &LU) const {
Dan Gohmand96eae82010-04-09 02:00:38 +00003223 // Collect some instructions which must be dominated by the
Dan Gohman448db1c2010-04-07 22:27:08 +00003224 // expanding replacement. These must be dominated by any operands that
Dan Gohman572645c2010-02-12 10:34:29 +00003225 // will be required in the expansion.
3226 SmallVector<Instruction *, 4> Inputs;
3227 if (Instruction *I = dyn_cast<Instruction>(LF.OperandValToReplace))
3228 Inputs.push_back(I);
3229 if (LU.Kind == LSRUse::ICmpZero)
3230 if (Instruction *I =
3231 dyn_cast<Instruction>(cast<ICmpInst>(LF.UserInst)->getOperand(1)))
3232 Inputs.push_back(I);
Dan Gohman448db1c2010-04-07 22:27:08 +00003233 if (LF.PostIncLoops.count(L)) {
3234 if (LF.isUseFullyOutsideLoop(L))
Dan Gohman069d6f32010-03-02 01:59:21 +00003235 Inputs.push_back(L->getLoopLatch()->getTerminator());
3236 else
3237 Inputs.push_back(IVIncInsertPos);
3238 }
Dan Gohman701a4ae2010-04-08 05:57:57 +00003239 // The expansion must also be dominated by the increment positions of any
3240 // loops it for which it is using post-inc mode.
3241 for (PostIncLoopSet::const_iterator I = LF.PostIncLoops.begin(),
3242 E = LF.PostIncLoops.end(); I != E; ++I) {
3243 const Loop *PIL = *I;
3244 if (PIL == L) continue;
3245
Dan Gohmane5f76872010-04-09 22:07:05 +00003246 // Be dominated by the loop exit.
Dan Gohman701a4ae2010-04-08 05:57:57 +00003247 SmallVector<BasicBlock *, 4> ExitingBlocks;
3248 PIL->getExitingBlocks(ExitingBlocks);
3249 if (!ExitingBlocks.empty()) {
3250 BasicBlock *BB = ExitingBlocks[0];
3251 for (unsigned i = 1, e = ExitingBlocks.size(); i != e; ++i)
3252 BB = DT.findNearestCommonDominator(BB, ExitingBlocks[i]);
3253 Inputs.push_back(BB->getTerminator());
3254 }
3255 }
Dan Gohman572645c2010-02-12 10:34:29 +00003256
3257 // Then, climb up the immediate dominator tree as far as we can go while
3258 // still being dominated by the input positions.
Dan Gohmane5f76872010-04-09 22:07:05 +00003259 IP = HoistInsertPosition(IP, Inputs);
Dan Gohmand96eae82010-04-09 02:00:38 +00003260
3261 // Don't insert instructions before PHI nodes.
Dan Gohman572645c2010-02-12 10:34:29 +00003262 while (isa<PHINode>(IP)) ++IP;
Dan Gohmand96eae82010-04-09 02:00:38 +00003263
3264 // Ignore debug intrinsics.
Dan Gohman449f31c2010-03-26 00:33:27 +00003265 while (isa<DbgInfoIntrinsic>(IP)) ++IP;
Dan Gohman572645c2010-02-12 10:34:29 +00003266
Dan Gohmand96eae82010-04-09 02:00:38 +00003267 return IP;
3268}
3269
Dan Gohman76c315a2010-05-20 20:52:00 +00003270/// Expand - Emit instructions for the leading candidate expression for this
3271/// LSRUse (this is called "expanding").
Dan Gohmand96eae82010-04-09 02:00:38 +00003272Value *LSRInstance::Expand(const LSRFixup &LF,
3273 const Formula &F,
3274 BasicBlock::iterator IP,
3275 SCEVExpander &Rewriter,
3276 SmallVectorImpl<WeakVH> &DeadInsts) const {
3277 const LSRUse &LU = Uses[LF.LUIdx];
3278
3279 // Determine an input position which will be dominated by the operands and
3280 // which will dominate the result.
Dan Gohmane5f76872010-04-09 22:07:05 +00003281 IP = AdjustInsertPositionForExpand(IP, LF, LU);
Dan Gohmand96eae82010-04-09 02:00:38 +00003282
Dan Gohman572645c2010-02-12 10:34:29 +00003283 // Inform the Rewriter if we have a post-increment use, so that it can
3284 // perform an advantageous expansion.
Dan Gohman448db1c2010-04-07 22:27:08 +00003285 Rewriter.setPostInc(LF.PostIncLoops);
Dan Gohman572645c2010-02-12 10:34:29 +00003286
3287 // This is the type that the user actually needs.
3288 const Type *OpTy = LF.OperandValToReplace->getType();
3289 // This will be the type that we'll initially expand to.
3290 const Type *Ty = F.getType();
3291 if (!Ty)
3292 // No type known; just expand directly to the ultimate type.
3293 Ty = OpTy;
3294 else if (SE.getEffectiveSCEVType(Ty) == SE.getEffectiveSCEVType(OpTy))
3295 // Expand directly to the ultimate type if it's the right size.
3296 Ty = OpTy;
3297 // This is the type to do integer arithmetic in.
3298 const Type *IntTy = SE.getEffectiveSCEVType(Ty);
3299
3300 // Build up a list of operands to add together to form the full base.
3301 SmallVector<const SCEV *, 8> Ops;
3302
3303 // Expand the BaseRegs portion.
3304 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
3305 E = F.BaseRegs.end(); I != E; ++I) {
3306 const SCEV *Reg = *I;
3307 assert(!Reg->isZero() && "Zero allocated in a base register!");
3308
Dan Gohman448db1c2010-04-07 22:27:08 +00003309 // If we're expanding for a post-inc user, make the post-inc adjustment.
3310 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
3311 Reg = TransformForPostIncUse(Denormalize, Reg,
3312 LF.UserInst, LF.OperandValToReplace,
3313 Loops, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +00003314
3315 Ops.push_back(SE.getUnknown(Rewriter.expandCodeFor(Reg, 0, IP)));
3316 }
3317
Dan Gohman087bd1e2010-03-03 05:29:13 +00003318 // Flush the operand list to suppress SCEVExpander hoisting.
3319 if (!Ops.empty()) {
3320 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
3321 Ops.clear();
3322 Ops.push_back(SE.getUnknown(FullV));
3323 }
3324
Dan Gohman572645c2010-02-12 10:34:29 +00003325 // Expand the ScaledReg portion.
3326 Value *ICmpScaledV = 0;
3327 if (F.AM.Scale != 0) {
3328 const SCEV *ScaledS = F.ScaledReg;
3329
Dan Gohman448db1c2010-04-07 22:27:08 +00003330 // If we're expanding for a post-inc user, make the post-inc adjustment.
3331 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
3332 ScaledS = TransformForPostIncUse(Denormalize, ScaledS,
3333 LF.UserInst, LF.OperandValToReplace,
3334 Loops, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +00003335
3336 if (LU.Kind == LSRUse::ICmpZero) {
3337 // An interesting way of "folding" with an icmp is to use a negated
3338 // scale, which we'll implement by inserting it into the other operand
3339 // of the icmp.
3340 assert(F.AM.Scale == -1 &&
3341 "The only scale supported by ICmpZero uses is -1!");
3342 ICmpScaledV = Rewriter.expandCodeFor(ScaledS, 0, IP);
3343 } else {
3344 // Otherwise just expand the scaled register and an explicit scale,
3345 // which is expected to be matched as part of the address.
3346 ScaledS = SE.getUnknown(Rewriter.expandCodeFor(ScaledS, 0, IP));
3347 ScaledS = SE.getMulExpr(ScaledS,
Dan Gohmandeff6212010-05-03 22:09:21 +00003348 SE.getConstant(ScaledS->getType(), F.AM.Scale));
Dan Gohman572645c2010-02-12 10:34:29 +00003349 Ops.push_back(ScaledS);
Dan Gohman087bd1e2010-03-03 05:29:13 +00003350
3351 // Flush the operand list to suppress SCEVExpander hoisting.
3352 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
3353 Ops.clear();
3354 Ops.push_back(SE.getUnknown(FullV));
Dan Gohman572645c2010-02-12 10:34:29 +00003355 }
3356 }
3357
Dan Gohman087bd1e2010-03-03 05:29:13 +00003358 // Expand the GV portion.
3359 if (F.AM.BaseGV) {
3360 Ops.push_back(SE.getUnknown(F.AM.BaseGV));
3361
3362 // Flush the operand list to suppress SCEVExpander hoisting.
3363 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
3364 Ops.clear();
3365 Ops.push_back(SE.getUnknown(FullV));
3366 }
3367
3368 // Expand the immediate portion.
Dan Gohman572645c2010-02-12 10:34:29 +00003369 int64_t Offset = (uint64_t)F.AM.BaseOffs + LF.Offset;
3370 if (Offset != 0) {
3371 if (LU.Kind == LSRUse::ICmpZero) {
3372 // The other interesting way of "folding" with an ICmpZero is to use a
3373 // negated immediate.
3374 if (!ICmpScaledV)
3375 ICmpScaledV = ConstantInt::get(IntTy, -Offset);
3376 else {
3377 Ops.push_back(SE.getUnknown(ICmpScaledV));
3378 ICmpScaledV = ConstantInt::get(IntTy, Offset);
3379 }
3380 } else {
3381 // Just add the immediate values. These again are expected to be matched
3382 // as part of the address.
Dan Gohman087bd1e2010-03-03 05:29:13 +00003383 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy, Offset)));
Dan Gohman572645c2010-02-12 10:34:29 +00003384 }
3385 }
3386
3387 // Emit instructions summing all the operands.
3388 const SCEV *FullS = Ops.empty() ?
Dan Gohmandeff6212010-05-03 22:09:21 +00003389 SE.getConstant(IntTy, 0) :
Dan Gohman572645c2010-02-12 10:34:29 +00003390 SE.getAddExpr(Ops);
3391 Value *FullV = Rewriter.expandCodeFor(FullS, Ty, IP);
3392
3393 // We're done expanding now, so reset the rewriter.
Dan Gohman448db1c2010-04-07 22:27:08 +00003394 Rewriter.clearPostInc();
Dan Gohman572645c2010-02-12 10:34:29 +00003395
3396 // An ICmpZero Formula represents an ICmp which we're handling as a
3397 // comparison against zero. Now that we've expanded an expression for that
3398 // form, update the ICmp's other operand.
3399 if (LU.Kind == LSRUse::ICmpZero) {
3400 ICmpInst *CI = cast<ICmpInst>(LF.UserInst);
3401 DeadInsts.push_back(CI->getOperand(1));
3402 assert(!F.AM.BaseGV && "ICmp does not support folding a global value and "
3403 "a scale at the same time!");
3404 if (F.AM.Scale == -1) {
3405 if (ICmpScaledV->getType() != OpTy) {
3406 Instruction *Cast =
3407 CastInst::Create(CastInst::getCastOpcode(ICmpScaledV, false,
3408 OpTy, false),
3409 ICmpScaledV, OpTy, "tmp", CI);
3410 ICmpScaledV = Cast;
3411 }
3412 CI->setOperand(1, ICmpScaledV);
3413 } else {
3414 assert(F.AM.Scale == 0 &&
3415 "ICmp does not support folding a global value and "
3416 "a scale at the same time!");
3417 Constant *C = ConstantInt::getSigned(SE.getEffectiveSCEVType(OpTy),
3418 -(uint64_t)Offset);
3419 if (C->getType() != OpTy)
3420 C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
3421 OpTy, false),
3422 C, OpTy);
3423
3424 CI->setOperand(1, C);
3425 }
3426 }
3427
3428 return FullV;
3429}
3430
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003431/// RewriteForPHI - Helper for Rewrite. PHI nodes are special because the use
3432/// of their operands effectively happens in their predecessor blocks, so the
3433/// expression may need to be expanded in multiple places.
3434void LSRInstance::RewriteForPHI(PHINode *PN,
3435 const LSRFixup &LF,
3436 const Formula &F,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003437 SCEVExpander &Rewriter,
3438 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003439 Pass *P) const {
3440 DenseMap<BasicBlock *, Value *> Inserted;
3441 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
3442 if (PN->getIncomingValue(i) == LF.OperandValToReplace) {
3443 BasicBlock *BB = PN->getIncomingBlock(i);
3444
3445 // If this is a critical edge, split the edge so that we do not insert
3446 // the code on all predecessor/successor paths. We do this unless this
3447 // is the canonical backedge for this loop, which complicates post-inc
3448 // users.
3449 if (e != 1 && BB->getTerminator()->getNumSuccessors() > 1 &&
3450 !isa<IndirectBrInst>(BB->getTerminator()) &&
3451 (PN->getParent() != L->getHeader() || !L->contains(BB))) {
3452 // Split the critical edge.
3453 BasicBlock *NewBB = SplitCriticalEdge(BB, PN->getParent(), P);
3454
3455 // If PN is outside of the loop and BB is in the loop, we want to
3456 // move the block to be immediately before the PHI block, not
3457 // immediately after BB.
3458 if (L->contains(BB) && !L->contains(PN))
3459 NewBB->moveBefore(PN->getParent());
3460
3461 // Splitting the edge can reduce the number of PHI entries we have.
3462 e = PN->getNumIncomingValues();
3463 BB = NewBB;
3464 i = PN->getBasicBlockIndex(BB);
3465 }
3466
3467 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> Pair =
3468 Inserted.insert(std::make_pair(BB, static_cast<Value *>(0)));
3469 if (!Pair.second)
3470 PN->setIncomingValue(i, Pair.first->second);
3471 else {
Dan Gohman454d26d2010-02-22 04:11:59 +00003472 Value *FullV = Expand(LF, F, BB->getTerminator(), Rewriter, DeadInsts);
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003473
3474 // If this is reuse-by-noop-cast, insert the noop cast.
3475 const Type *OpTy = LF.OperandValToReplace->getType();
3476 if (FullV->getType() != OpTy)
3477 FullV =
3478 CastInst::Create(CastInst::getCastOpcode(FullV, false,
3479 OpTy, false),
3480 FullV, LF.OperandValToReplace->getType(),
3481 "tmp", BB->getTerminator());
3482
3483 PN->setIncomingValue(i, FullV);
3484 Pair.first->second = FullV;
3485 }
3486 }
3487}
3488
Dan Gohman572645c2010-02-12 10:34:29 +00003489/// Rewrite - Emit instructions for the leading candidate expression for this
3490/// LSRUse (this is called "expanding"), and update the UserInst to reference
3491/// the newly expanded value.
3492void LSRInstance::Rewrite(const LSRFixup &LF,
3493 const Formula &F,
Dan Gohman572645c2010-02-12 10:34:29 +00003494 SCEVExpander &Rewriter,
3495 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman572645c2010-02-12 10:34:29 +00003496 Pass *P) const {
Dan Gohman572645c2010-02-12 10:34:29 +00003497 // First, find an insertion point that dominates UserInst. For PHI nodes,
3498 // find the nearest block which dominates all the relevant uses.
3499 if (PHINode *PN = dyn_cast<PHINode>(LF.UserInst)) {
Dan Gohman454d26d2010-02-22 04:11:59 +00003500 RewriteForPHI(PN, LF, F, Rewriter, DeadInsts, P);
Dan Gohman572645c2010-02-12 10:34:29 +00003501 } else {
Dan Gohman454d26d2010-02-22 04:11:59 +00003502 Value *FullV = Expand(LF, F, LF.UserInst, Rewriter, DeadInsts);
Dan Gohman572645c2010-02-12 10:34:29 +00003503
3504 // If this is reuse-by-noop-cast, insert the noop cast.
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003505 const Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00003506 if (FullV->getType() != OpTy) {
3507 Instruction *Cast =
3508 CastInst::Create(CastInst::getCastOpcode(FullV, false, OpTy, false),
3509 FullV, OpTy, "tmp", LF.UserInst);
3510 FullV = Cast;
3511 }
3512
3513 // Update the user. ICmpZero is handled specially here (for now) because
3514 // Expand may have updated one of the operands of the icmp already, and
3515 // its new value may happen to be equal to LF.OperandValToReplace, in
3516 // which case doing replaceUsesOfWith leads to replacing both operands
3517 // with the same value. TODO: Reorganize this.
3518 if (Uses[LF.LUIdx].Kind == LSRUse::ICmpZero)
3519 LF.UserInst->setOperand(0, FullV);
3520 else
3521 LF.UserInst->replaceUsesOfWith(LF.OperandValToReplace, FullV);
3522 }
3523
3524 DeadInsts.push_back(LF.OperandValToReplace);
3525}
3526
Dan Gohman76c315a2010-05-20 20:52:00 +00003527/// ImplementSolution - Rewrite all the fixup locations with new values,
3528/// following the chosen solution.
Dan Gohman572645c2010-02-12 10:34:29 +00003529void
3530LSRInstance::ImplementSolution(const SmallVectorImpl<const Formula *> &Solution,
3531 Pass *P) {
3532 // Keep track of instructions we may have made dead, so that
3533 // we can remove them after we are done working.
3534 SmallVector<WeakVH, 16> DeadInsts;
3535
3536 SCEVExpander Rewriter(SE);
3537 Rewriter.disableCanonicalMode();
3538 Rewriter.setIVIncInsertPos(L, IVIncInsertPos);
3539
3540 // Expand the new value definitions and update the users.
Dan Gohman402d4352010-05-20 20:33:18 +00003541 for (SmallVectorImpl<LSRFixup>::const_iterator I = Fixups.begin(),
3542 E = Fixups.end(); I != E; ++I) {
3543 const LSRFixup &Fixup = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00003544
Dan Gohman402d4352010-05-20 20:33:18 +00003545 Rewrite(Fixup, *Solution[Fixup.LUIdx], Rewriter, DeadInsts, P);
Dan Gohman572645c2010-02-12 10:34:29 +00003546
3547 Changed = true;
3548 }
3549
3550 // Clean up after ourselves. This must be done before deleting any
3551 // instructions.
3552 Rewriter.clear();
3553
3554 Changed |= DeleteTriviallyDeadInstructions(DeadInsts);
3555}
3556
3557LSRInstance::LSRInstance(const TargetLowering *tli, Loop *l, Pass *P)
3558 : IU(P->getAnalysis<IVUsers>()),
3559 SE(P->getAnalysis<ScalarEvolution>()),
3560 DT(P->getAnalysis<DominatorTree>()),
Dan Gohmane5f76872010-04-09 22:07:05 +00003561 LI(P->getAnalysis<LoopInfo>()),
Dan Gohman572645c2010-02-12 10:34:29 +00003562 TLI(tli), L(l), Changed(false), IVIncInsertPos(0) {
Devang Patel0f54dcb2007-03-06 21:14:09 +00003563
Dan Gohman03e896b2009-11-05 21:11:53 +00003564 // If LoopSimplify form is not available, stay out of trouble.
Dan Gohman572645c2010-02-12 10:34:29 +00003565 if (!L->isLoopSimplifyForm()) return;
Dan Gohman03e896b2009-11-05 21:11:53 +00003566
Dan Gohman572645c2010-02-12 10:34:29 +00003567 // If there's no interesting work to be done, bail early.
3568 if (IU.empty()) return;
Dan Gohman80b0f8c2009-03-09 20:34:59 +00003569
Dan Gohman572645c2010-02-12 10:34:29 +00003570 DEBUG(dbgs() << "\nLSR on loop ";
3571 WriteAsOperand(dbgs(), L->getHeader(), /*PrintType=*/false);
3572 dbgs() << ":\n");
Dan Gohmanf7912df2009-03-09 20:46:50 +00003573
Dan Gohman402d4352010-05-20 20:33:18 +00003574 // First, perform some low-level loop optimizations.
Dan Gohman572645c2010-02-12 10:34:29 +00003575 OptimizeShadowIV();
Dan Gohmanc6519f92010-05-20 20:05:31 +00003576 OptimizeLoopTermCond();
Evan Cheng5792f512009-05-11 22:33:01 +00003577
Dan Gohman402d4352010-05-20 20:33:18 +00003578 // Start collecting data and preparing for the solver.
Dan Gohman572645c2010-02-12 10:34:29 +00003579 CollectInterestingTypesAndFactors();
3580 CollectFixupsAndInitialFormulae();
3581 CollectLoopInvariantFixupsAndFormulae();
Chris Lattner010de252005-08-08 05:28:22 +00003582
Dan Gohman572645c2010-02-12 10:34:29 +00003583 DEBUG(dbgs() << "LSR found " << Uses.size() << " uses:\n";
3584 print_uses(dbgs()));
Misha Brukmanfd939082005-04-21 23:48:37 +00003585
Dan Gohman572645c2010-02-12 10:34:29 +00003586 // Now use the reuse data to generate a bunch of interesting ways
3587 // to formulate the values needed for the uses.
3588 GenerateAllReuseFormulae();
Evan Chengd1d6b5c2006-03-16 21:53:05 +00003589
Dan Gohman572645c2010-02-12 10:34:29 +00003590 DEBUG(dbgs() << "\n"
3591 "After generating reuse formulae:\n";
3592 print_uses(dbgs()));
Nate Begemaneaa13852004-10-18 21:08:22 +00003593
Dan Gohman572645c2010-02-12 10:34:29 +00003594 FilterOutUndesirableDedicatedRegisters();
3595 NarrowSearchSpaceUsingHeuristics();
Dan Gohman6bec5bb2009-12-18 00:06:20 +00003596
Dan Gohman572645c2010-02-12 10:34:29 +00003597 SmallVector<const Formula *, 8> Solution;
3598 Solve(Solution);
Dan Gohman6bec5bb2009-12-18 00:06:20 +00003599
Dan Gohman572645c2010-02-12 10:34:29 +00003600 // Release memory that is no longer needed.
3601 Factors.clear();
3602 Types.clear();
3603 RegUses.clear();
3604
3605#ifndef NDEBUG
3606 // Formulae should be legal.
3607 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
3608 E = Uses.end(); I != E; ++I) {
3609 const LSRUse &LU = *I;
3610 for (SmallVectorImpl<Formula>::const_iterator J = LU.Formulae.begin(),
3611 JE = LU.Formulae.end(); J != JE; ++J)
3612 assert(isLegalUse(J->AM, LU.MinOffset, LU.MaxOffset,
3613 LU.Kind, LU.AccessTy, TLI) &&
3614 "Illegal formula generated!");
3615 };
3616#endif
3617
3618 // Now that we've decided what we want, make it so.
3619 ImplementSolution(Solution, P);
3620}
3621
3622void LSRInstance::print_factors_and_types(raw_ostream &OS) const {
3623 if (Factors.empty() && Types.empty()) return;
3624
3625 OS << "LSR has identified the following interesting factors and types: ";
3626 bool First = true;
3627
3628 for (SmallSetVector<int64_t, 8>::const_iterator
3629 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
3630 if (!First) OS << ", ";
3631 First = false;
3632 OS << '*' << *I;
Evan Cheng81ebdcf2009-11-10 21:14:05 +00003633 }
Dale Johannesenc1acc3f2009-05-11 17:15:42 +00003634
Dan Gohman572645c2010-02-12 10:34:29 +00003635 for (SmallSetVector<const Type *, 4>::const_iterator
3636 I = Types.begin(), E = Types.end(); I != E; ++I) {
3637 if (!First) OS << ", ";
3638 First = false;
3639 OS << '(' << **I << ')';
3640 }
3641 OS << '\n';
3642}
3643
3644void LSRInstance::print_fixups(raw_ostream &OS) const {
3645 OS << "LSR is examining the following fixup sites:\n";
3646 for (SmallVectorImpl<LSRFixup>::const_iterator I = Fixups.begin(),
3647 E = Fixups.end(); I != E; ++I) {
Dan Gohman572645c2010-02-12 10:34:29 +00003648 dbgs() << " ";
Dan Gohman9f383eb2010-05-20 22:25:20 +00003649 I->print(OS);
Dan Gohman572645c2010-02-12 10:34:29 +00003650 OS << '\n';
3651 }
3652}
3653
3654void LSRInstance::print_uses(raw_ostream &OS) const {
3655 OS << "LSR is examining the following uses:\n";
3656 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
3657 E = Uses.end(); I != E; ++I) {
3658 const LSRUse &LU = *I;
3659 dbgs() << " ";
3660 LU.print(OS);
3661 OS << '\n';
3662 for (SmallVectorImpl<Formula>::const_iterator J = LU.Formulae.begin(),
3663 JE = LU.Formulae.end(); J != JE; ++J) {
3664 OS << " ";
3665 J->print(OS);
3666 OS << '\n';
3667 }
3668 }
3669}
3670
3671void LSRInstance::print(raw_ostream &OS) const {
3672 print_factors_and_types(OS);
3673 print_fixups(OS);
3674 print_uses(OS);
3675}
3676
3677void LSRInstance::dump() const {
3678 print(errs()); errs() << '\n';
3679}
3680
3681namespace {
3682
3683class LoopStrengthReduce : public LoopPass {
3684 /// TLI - Keep a pointer of a TargetLowering to consult for determining
3685 /// transformation profitability.
3686 const TargetLowering *const TLI;
3687
3688public:
3689 static char ID; // Pass ID, replacement for typeid
3690 explicit LoopStrengthReduce(const TargetLowering *tli = 0);
3691
3692private:
3693 bool runOnLoop(Loop *L, LPPassManager &LPM);
3694 void getAnalysisUsage(AnalysisUsage &AU) const;
3695};
3696
3697}
3698
3699char LoopStrengthReduce::ID = 0;
3700static RegisterPass<LoopStrengthReduce>
3701X("loop-reduce", "Loop Strength Reduction");
3702
3703Pass *llvm::createLoopStrengthReducePass(const TargetLowering *TLI) {
3704 return new LoopStrengthReduce(TLI);
3705}
3706
3707LoopStrengthReduce::LoopStrengthReduce(const TargetLowering *tli)
3708 : LoopPass(&ID), TLI(tli) {}
3709
3710void LoopStrengthReduce::getAnalysisUsage(AnalysisUsage &AU) const {
3711 // We split critical edges, so we change the CFG. However, we do update
3712 // many analyses if they are around.
3713 AU.addPreservedID(LoopSimplifyID);
Dan Gohman572645c2010-02-12 10:34:29 +00003714 AU.addPreserved("domfrontier");
3715
Dan Gohmane5f76872010-04-09 22:07:05 +00003716 AU.addRequired<LoopInfo>();
3717 AU.addPreserved<LoopInfo>();
Dan Gohman572645c2010-02-12 10:34:29 +00003718 AU.addRequiredID(LoopSimplifyID);
3719 AU.addRequired<DominatorTree>();
3720 AU.addPreserved<DominatorTree>();
3721 AU.addRequired<ScalarEvolution>();
3722 AU.addPreserved<ScalarEvolution>();
3723 AU.addRequired<IVUsers>();
3724 AU.addPreserved<IVUsers>();
3725}
3726
3727bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager & /*LPM*/) {
3728 bool Changed = false;
3729
3730 // Run the main LSR transformation.
3731 Changed |= LSRInstance(TLI, L, this).getChanged();
3732
Dan Gohmanafc36a92009-05-02 18:29:22 +00003733 // At this point, it is worth checking to see if any recurrence PHIs are also
Dan Gohman35738ac2009-05-04 22:30:44 +00003734 // dead, so that we can remove them as well.
Dan Gohman9fff2182010-01-05 16:31:45 +00003735 Changed |= DeleteDeadPHIs(L->getHeader());
Dan Gohmanafc36a92009-05-02 18:29:22 +00003736
Evan Cheng1ce75dc2008-07-07 19:51:32 +00003737 return Changed;
Nate Begemaneaa13852004-10-18 21:08:22 +00003738}