blob: 6e7e135d95a8676895643659b86b30544ce2f090 [file] [log] [blame]
Dan Gohman0a40ad92009-04-16 03:18:22 +00001//===- LoopStrengthReduce.cpp - Strength Reduce IVs in Loops --------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
Nate Begemanb18121e2004-10-18 21:08:22 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
Nate Begemanb18121e2004-10-18 21:08:22 +00008//===----------------------------------------------------------------------===//
9//
Dan Gohman97f70ad2009-05-19 20:37:36 +000010// This transformation analyzes and transforms the induction variables (and
11// computations derived from them) into forms suitable for efficient execution
12// on the target.
13//
Nate Begemanb18121e2004-10-18 21:08:22 +000014// This pass performs a strength reduction on array references inside loops that
Dan Gohman97f70ad2009-05-19 20:37:36 +000015// have as one or more of their components the loop induction variable, it
16// rewrites expressions to take advantage of scaled-index addressing modes
17// available on the target, and it performs a variety of other optimizations
18// related to loop induction variables.
Nate Begemanb18121e2004-10-18 21:08:22 +000019//
Dan Gohman45774ce2010-02-12 10:34:29 +000020// Terminology note: this code has a lot of handling for "post-increment" or
21// "post-inc" users. This is not talking about post-increment addressing modes;
22// it is instead talking about code like this:
23//
24// %i = phi [ 0, %entry ], [ %i.next, %latch ]
25// ...
26// %i.next = add %i, 1
27// %c = icmp eq %i.next, %n
28//
29// The SCEV for %i is {0,+,1}<%L>. The SCEV for %i.next is {1,+,1}<%L>, however
30// it's useful to think about these as the same register, with some uses using
Sanjoy Das7041fb12015-03-27 06:01:56 +000031// the value of the register before the add and some using it after. In this
Dan Gohman45774ce2010-02-12 10:34:29 +000032// example, the icmp is a post-increment user, since it uses %i.next, which is
33// the value of the induction variable after the increment. The other common
34// case of post-increment users is users outside the loop.
35//
36// TODO: More sophistication in the way Formulae are generated and filtered.
37//
38// TODO: Handle multiple loops at a time.
39//
Chandler Carruth26c59fa2013-01-07 14:41:08 +000040// TODO: Should the addressing mode BaseGV be changed to a ConstantExpr instead
41// of a GlobalValue?
Dan Gohman45774ce2010-02-12 10:34:29 +000042//
43// TODO: When truncation is free, truncate ICmp users' operands to make it a
44// smaller encoding (on x86 at least).
45//
46// TODO: When a negated register is used by an add (such as in a list of
47// multiple base registers, or as the increment expression in an addrec),
48// we may not actually need both reg and (-1 * reg) in registers; the
49// negation can be implemented by using a sub instead of an add. The
50// lack of support for taking this into consideration when making
51// register pressure decisions is partly worked around by the "Special"
52// use kind.
53//
Nate Begemanb18121e2004-10-18 21:08:22 +000054//===----------------------------------------------------------------------===//
55
Dehao Chen6132ee82016-07-18 21:41:50 +000056#include "llvm/Transforms/Scalar/LoopStrengthReduce.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000057#include "llvm/ADT/APInt.h"
58#include "llvm/ADT/DenseMap.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000059#include "llvm/ADT/DenseSet.h"
Benjamin Kramer62fb0cf2014-03-15 17:17:48 +000060#include "llvm/ADT/Hashing.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000061#include "llvm/ADT/PointerIntPair.h"
Chandler Carruth3bab7e12017-01-11 09:43:56 +000062#include "llvm/ADT/STLExtras.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000063#include "llvm/ADT/SetVector.h"
64#include "llvm/ADT/SmallBitVector.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000065#include "llvm/ADT/SmallPtrSet.h"
66#include "llvm/ADT/SmallSet.h"
67#include "llvm/ADT/SmallVector.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000068#include "llvm/Analysis/IVUsers.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000069#include "llvm/Analysis/LoopInfo.h"
Devang Patelb0743b52007-03-06 21:14:09 +000070#include "llvm/Analysis/LoopPass.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000071#include "llvm/Analysis/ScalarEvolution.h"
Nate Begemane68bcd12005-07-30 00:15:07 +000072#include "llvm/Analysis/ScalarEvolutionExpander.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000073#include "llvm/Analysis/ScalarEvolutionExpressions.h"
74#include "llvm/Analysis/ScalarEvolutionNormalization.h"
Chandler Carruth26c59fa2013-01-07 14:41:08 +000075#include "llvm/Analysis/TargetTransformInfo.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000076#include "llvm/IR/BasicBlock.h"
77#include "llvm/IR/Constant.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000078#include "llvm/IR/Constants.h"
79#include "llvm/IR/DerivedTypes.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000080#include "llvm/IR/Dominators.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000081#include "llvm/IR/GlobalValue.h"
Chandler Carruth3bab7e12017-01-11 09:43:56 +000082#include "llvm/IR/IRBuilder.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000083#include "llvm/IR/Instruction.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000084#include "llvm/IR/Instructions.h"
85#include "llvm/IR/IntrinsicInst.h"
Chandler Carruth3bab7e12017-01-11 09:43:56 +000086#include "llvm/IR/Module.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000087#include "llvm/IR/OperandTraits.h"
88#include "llvm/IR/Operator.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000089#include "llvm/IR/Type.h"
90#include "llvm/IR/Value.h"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000091#include "llvm/IR/ValueHandle.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000092#include "llvm/Pass.h"
93#include "llvm/Support/Casting.h"
Andrew Trick58124392011-09-27 00:44:14 +000094#include "llvm/Support/CommandLine.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000095#include "llvm/Support/Compiler.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000096#include "llvm/Support/Debug.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000097#include "llvm/Support/ErrorHandling.h"
98#include "llvm/Support/MathExtras.h"
Daniel Dunbar6115b392009-07-26 09:48:23 +000099#include "llvm/Support/raw_ostream.h"
Dehao Chen6132ee82016-07-18 21:41:50 +0000100#include "llvm/Transforms/Scalar.h"
Chandler Carruth3bab7e12017-01-11 09:43:56 +0000101#include "llvm/Transforms/Scalar/LoopPassManager.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +0000102#include "llvm/Transforms/Utils/BasicBlockUtils.h"
103#include "llvm/Transforms/Utils/Local.h"
Jeff Cohenc5009912005-07-30 18:22:27 +0000104#include <algorithm>
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000105#include <cassert>
106#include <cstddef>
107#include <cstdint>
108#include <cstdlib>
109#include <iterator>
110#include <map>
111#include <tuple>
112#include <utility>
113
Nate Begemanb18121e2004-10-18 21:08:22 +0000114using namespace llvm;
115
Chandler Carruth964daaa2014-04-22 02:55:47 +0000116#define DEBUG_TYPE "loop-reduce"
117
Andrew Trick19f80c12012-04-18 04:00:10 +0000118/// MaxIVUsers is an arbitrary threshold that provides an early opportunitiy for
119/// bail out. This threshold is far beyond the number of users that LSR can
120/// conceivably solve, so it should not affect generated code, but catches the
121/// worst cases before LSR burns too much compile time and stack space.
122static const unsigned MaxIVUsers = 200;
123
Andrew Trickecbe22b2011-10-11 02:30:45 +0000124// Temporary flag to cleanup congruent phis after LSR phi expansion.
125// It's currently disabled until we can determine whether it's truly useful or
126// not. The flag should be removed after the v3.0 release.
Andrew Trick06f6c052012-01-07 07:08:17 +0000127// This is now needed for ivchains.
Benjamin Kramer7ba71be2011-11-26 23:01:57 +0000128static cl::opt<bool> EnablePhiElim(
Andrew Trick06f6c052012-01-07 07:08:17 +0000129 "enable-lsr-phielim", cl::Hidden, cl::init(true),
130 cl::desc("Enable LSR phi elimination"));
Andrew Trick58124392011-09-27 00:44:14 +0000131
Andrew Trick248d4102012-01-09 21:18:52 +0000132#ifndef NDEBUG
133// Stress test IV chain generation.
134static cl::opt<bool> StressIVChain(
135 "stress-ivchain", cl::Hidden, cl::init(false),
136 cl::desc("Stress test LSR IV chains"));
137#else
138static bool StressIVChain = false;
139#endif
140
Dan Gohman45774ce2010-02-12 10:34:29 +0000141namespace {
Nate Begemanb18121e2004-10-18 21:08:22 +0000142
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000143struct MemAccessTy {
144 /// Used in situations where the accessed memory type is unknown.
145 static const unsigned UnknownAddressSpace = ~0u;
146
147 Type *MemTy;
148 unsigned AddrSpace;
149
150 MemAccessTy() : MemTy(nullptr), AddrSpace(UnknownAddressSpace) {}
151
152 MemAccessTy(Type *Ty, unsigned AS) :
153 MemTy(Ty), AddrSpace(AS) {}
154
155 bool operator==(MemAccessTy Other) const {
156 return MemTy == Other.MemTy && AddrSpace == Other.AddrSpace;
157 }
158
159 bool operator!=(MemAccessTy Other) const { return !(*this == Other); }
160
161 static MemAccessTy getUnknown(LLVMContext &Ctx) {
162 return MemAccessTy(Type::getVoidTy(Ctx), UnknownAddressSpace);
163 }
164};
165
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000166/// This class holds data which is used to order reuse candidates.
Dan Gohman45774ce2010-02-12 10:34:29 +0000167class RegSortData {
168public:
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000169 /// This represents the set of LSRUse indices which reference
Dan Gohman45774ce2010-02-12 10:34:29 +0000170 /// a particular register.
171 SmallBitVector UsedByIndices;
172
Dan Gohman45774ce2010-02-12 10:34:29 +0000173 void print(raw_ostream &OS) const;
174 void dump() const;
175};
176
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000177} // end anonymous namespace
Dan Gohman45774ce2010-02-12 10:34:29 +0000178
179void RegSortData::print(raw_ostream &OS) const {
180 OS << "[NumUses=" << UsedByIndices.count() << ']';
181}
182
Matthias Braun8c209aa2017-01-28 02:02:38 +0000183#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
184LLVM_DUMP_METHOD void RegSortData::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +0000185 print(errs()); errs() << '\n';
186}
Matthias Braun8c209aa2017-01-28 02:02:38 +0000187#endif
Dan Gohman2a12ae72009-02-20 04:17:46 +0000188
Chris Lattner79a42ac2006-12-19 21:40:18 +0000189namespace {
Dale Johannesene3a02be2007-03-20 00:47:50 +0000190
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000191/// Map register candidates to information about how they are used.
Dan Gohman45774ce2010-02-12 10:34:29 +0000192class RegUseTracker {
193 typedef DenseMap<const SCEV *, RegSortData> RegUsesTy;
Dale Johannesene3a02be2007-03-20 00:47:50 +0000194
Dan Gohman248c41d2010-05-18 22:33:00 +0000195 RegUsesTy RegUsesMap;
Dan Gohman45774ce2010-02-12 10:34:29 +0000196 SmallVector<const SCEV *, 16> RegSequence;
Evan Cheng3df447d2006-03-16 21:53:05 +0000197
Dan Gohman45774ce2010-02-12 10:34:29 +0000198public:
Sanjoy Das302bfd02015-08-16 18:22:43 +0000199 void countRegister(const SCEV *Reg, size_t LUIdx);
200 void dropRegister(const SCEV *Reg, size_t LUIdx);
201 void swapAndDropUse(size_t LUIdx, size_t LastLUIdx);
Dan Gohman51ad99d2010-01-21 02:09:26 +0000202
Dan Gohman45774ce2010-02-12 10:34:29 +0000203 bool isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const;
Dan Gohman51ad99d2010-01-21 02:09:26 +0000204
Dan Gohman45774ce2010-02-12 10:34:29 +0000205 const SmallBitVector &getUsedByIndices(const SCEV *Reg) const;
Dan Gohman51ad99d2010-01-21 02:09:26 +0000206
Dan Gohman45774ce2010-02-12 10:34:29 +0000207 void clear();
Dan Gohman51ad99d2010-01-21 02:09:26 +0000208
Dan Gohman45774ce2010-02-12 10:34:29 +0000209 typedef SmallVectorImpl<const SCEV *>::iterator iterator;
210 typedef SmallVectorImpl<const SCEV *>::const_iterator const_iterator;
211 iterator begin() { return RegSequence.begin(); }
212 iterator end() { return RegSequence.end(); }
213 const_iterator begin() const { return RegSequence.begin(); }
214 const_iterator end() const { return RegSequence.end(); }
215};
Dan Gohman51ad99d2010-01-21 02:09:26 +0000216
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000217} // end anonymous namespace
Dan Gohman51ad99d2010-01-21 02:09:26 +0000218
Dan Gohman45774ce2010-02-12 10:34:29 +0000219void
Sanjoy Das302bfd02015-08-16 18:22:43 +0000220RegUseTracker::countRegister(const SCEV *Reg, size_t LUIdx) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000221 std::pair<RegUsesTy::iterator, bool> Pair =
Dan Gohman248c41d2010-05-18 22:33:00 +0000222 RegUsesMap.insert(std::make_pair(Reg, RegSortData()));
Dan Gohman45774ce2010-02-12 10:34:29 +0000223 RegSortData &RSD = Pair.first->second;
224 if (Pair.second)
225 RegSequence.push_back(Reg);
226 RSD.UsedByIndices.resize(std::max(RSD.UsedByIndices.size(), LUIdx + 1));
227 RSD.UsedByIndices.set(LUIdx);
Dan Gohman51ad99d2010-01-21 02:09:26 +0000228}
229
Dan Gohman4cf99b52010-05-18 23:42:37 +0000230void
Sanjoy Das302bfd02015-08-16 18:22:43 +0000231RegUseTracker::dropRegister(const SCEV *Reg, size_t LUIdx) {
Dan Gohman4cf99b52010-05-18 23:42:37 +0000232 RegUsesTy::iterator It = RegUsesMap.find(Reg);
233 assert(It != RegUsesMap.end());
234 RegSortData &RSD = It->second;
235 assert(RSD.UsedByIndices.size() > LUIdx);
236 RSD.UsedByIndices.reset(LUIdx);
237}
238
Dan Gohman20fab452010-05-19 23:43:12 +0000239void
Sanjoy Das302bfd02015-08-16 18:22:43 +0000240RegUseTracker::swapAndDropUse(size_t LUIdx, size_t LastLUIdx) {
Dan Gohmana7b68d62010-10-07 23:33:43 +0000241 assert(LUIdx <= LastLUIdx);
242
243 // Update RegUses. The data structure is not optimized for this purpose;
244 // we must iterate through it and update each of the bit vectors.
Craig Topper10949ae2015-05-23 08:45:10 +0000245 for (auto &Pair : RegUsesMap) {
246 SmallBitVector &UsedByIndices = Pair.second.UsedByIndices;
Dan Gohmana7b68d62010-10-07 23:33:43 +0000247 if (LUIdx < UsedByIndices.size())
248 UsedByIndices[LUIdx] =
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000249 LastLUIdx < UsedByIndices.size() ? UsedByIndices[LastLUIdx] : false;
Dan Gohmana7b68d62010-10-07 23:33:43 +0000250 UsedByIndices.resize(std::min(UsedByIndices.size(), LastLUIdx));
251 }
Dan Gohman20fab452010-05-19 23:43:12 +0000252}
253
Dan Gohman45774ce2010-02-12 10:34:29 +0000254bool
255RegUseTracker::isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const {
Dan Gohman4f13bbf2010-08-29 15:18:49 +0000256 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
257 if (I == RegUsesMap.end())
258 return false;
259 const SmallBitVector &UsedByIndices = I->second.UsedByIndices;
Dan Gohman45774ce2010-02-12 10:34:29 +0000260 int i = UsedByIndices.find_first();
261 if (i == -1) return false;
262 if ((size_t)i != LUIdx) return true;
263 return UsedByIndices.find_next(i) != -1;
264}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000265
Dan Gohman45774ce2010-02-12 10:34:29 +0000266const SmallBitVector &RegUseTracker::getUsedByIndices(const SCEV *Reg) const {
Dan Gohman248c41d2010-05-18 22:33:00 +0000267 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
268 assert(I != RegUsesMap.end() && "Unknown register!");
Dan Gohman45774ce2010-02-12 10:34:29 +0000269 return I->second.UsedByIndices;
270}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000271
Dan Gohman45774ce2010-02-12 10:34:29 +0000272void RegUseTracker::clear() {
Dan Gohman248c41d2010-05-18 22:33:00 +0000273 RegUsesMap.clear();
Dan Gohman45774ce2010-02-12 10:34:29 +0000274 RegSequence.clear();
275}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000276
Dan Gohman45774ce2010-02-12 10:34:29 +0000277namespace {
278
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000279/// This class holds information that describes a formula for computing
280/// satisfying a use. It may include broken-out immediates and scaled registers.
Dan Gohman45774ce2010-02-12 10:34:29 +0000281struct Formula {
Chandler Carruth6e479322013-01-07 15:04:40 +0000282 /// Global base address used for complex addressing.
283 GlobalValue *BaseGV;
284
285 /// Base offset for complex addressing.
286 int64_t BaseOffset;
287
288 /// Whether any complex addressing has a base register.
289 bool HasBaseReg;
290
291 /// The scale of any complex addressing.
292 int64_t Scale;
Dan Gohman45774ce2010-02-12 10:34:29 +0000293
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000294 /// The list of "base" registers for this use. When this is non-empty. The
295 /// canonical representation of a formula is
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000296 /// 1. BaseRegs.size > 1 implies ScaledReg != NULL and
297 /// 2. ScaledReg != NULL implies Scale != 1 || !BaseRegs.empty().
298 /// #1 enforces that the scaled register is always used when at least two
299 /// registers are needed by the formula: e.g., reg1 + reg2 is reg1 + 1 * reg2.
300 /// #2 enforces that 1 * reg is reg.
301 /// This invariant can be temporarly broken while building a formula.
302 /// However, every formula inserted into the LSRInstance must be in canonical
303 /// form.
Preston Gurd25c3b6a2013-02-01 20:41:27 +0000304 SmallVector<const SCEV *, 4> BaseRegs;
Dan Gohman45774ce2010-02-12 10:34:29 +0000305
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000306 /// The 'scaled' register for this use. This should be non-null when Scale is
307 /// not zero.
Dan Gohman45774ce2010-02-12 10:34:29 +0000308 const SCEV *ScaledReg;
309
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000310 /// An additional constant offset which added near the use. This requires a
311 /// temporary register, but the offset itself can live in an add immediate
312 /// field rather than a register.
Dan Gohman6136e942011-05-03 00:46:49 +0000313 int64_t UnfoldedOffset;
314
Chandler Carruth6e479322013-01-07 15:04:40 +0000315 Formula()
Craig Topperf40110f2014-04-25 05:29:35 +0000316 : BaseGV(nullptr), BaseOffset(0), HasBaseReg(false), Scale(0),
Sanjoy Das215df9e2015-08-04 01:52:05 +0000317 ScaledReg(nullptr), UnfoldedOffset(0) {}
Dan Gohman45774ce2010-02-12 10:34:29 +0000318
Sanjoy Das302bfd02015-08-16 18:22:43 +0000319 void initialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000320
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000321 bool isCanonical() const;
322
Sanjoy Das302bfd02015-08-16 18:22:43 +0000323 void canonicalize();
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000324
Sanjoy Das302bfd02015-08-16 18:22:43 +0000325 bool unscale();
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000326
Adam Nemetdeab6f92014-04-29 18:25:28 +0000327 size_t getNumRegs() const;
Chris Lattner229907c2011-07-18 04:54:35 +0000328 Type *getType() const;
Dan Gohman45774ce2010-02-12 10:34:29 +0000329
Sanjoy Das302bfd02015-08-16 18:22:43 +0000330 void deleteBaseReg(const SCEV *&S);
Dan Gohman80a96082010-05-20 15:17:54 +0000331
Dan Gohman45774ce2010-02-12 10:34:29 +0000332 bool referencesReg(const SCEV *S) const;
333 bool hasRegsUsedByUsesOtherThan(size_t LUIdx,
334 const RegUseTracker &RegUses) const;
335
336 void print(raw_ostream &OS) const;
337 void dump() const;
338};
339
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000340} // end anonymous namespace
Dan Gohman45774ce2010-02-12 10:34:29 +0000341
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000342/// Recursion helper for initialMatch.
Dan Gohman45774ce2010-02-12 10:34:29 +0000343static void DoInitialMatch(const SCEV *S, Loop *L,
344 SmallVectorImpl<const SCEV *> &Good,
345 SmallVectorImpl<const SCEV *> &Bad,
Dan Gohman20d9ce22010-11-17 21:41:58 +0000346 ScalarEvolution &SE) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000347 // Collect expressions which properly dominate the loop header.
Dan Gohman20d9ce22010-11-17 21:41:58 +0000348 if (SE.properlyDominates(S, L->getHeader())) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000349 Good.push_back(S);
350 return;
Dan Gohman51ad99d2010-01-21 02:09:26 +0000351 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000352
353 // Look at add operands.
354 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Craig Topper77b99412015-05-23 08:01:41 +0000355 for (const SCEV *S : Add->operands())
356 DoInitialMatch(S, L, Good, Bad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000357 return;
358 }
359
360 // Look at addrec operands.
361 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S))
Alexandros Lamprineas0ee3ec22016-11-09 08:53:07 +0000362 if (!AR->getStart()->isZero() && AR->isAffine()) {
Dan Gohman20d9ce22010-11-17 21:41:58 +0000363 DoInitialMatch(AR->getStart(), L, Good, Bad, SE);
Dan Gohman1d2ded72010-05-03 22:09:21 +0000364 DoInitialMatch(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
Dan Gohman45774ce2010-02-12 10:34:29 +0000365 AR->getStepRecurrence(SE),
Andrew Trick8b55b732011-03-14 16:50:06 +0000366 // FIXME: AR->getNoWrapFlags()
367 AR->getLoop(), SCEV::FlagAnyWrap),
Dan Gohman20d9ce22010-11-17 21:41:58 +0000368 L, Good, Bad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000369 return;
370 }
371
372 // Handle a multiplication by -1 (negation) if it didn't fold.
373 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S))
374 if (Mul->getOperand(0)->isAllOnesValue()) {
375 SmallVector<const SCEV *, 4> Ops(Mul->op_begin()+1, Mul->op_end());
376 const SCEV *NewMul = SE.getMulExpr(Ops);
377
378 SmallVector<const SCEV *, 4> MyGood;
379 SmallVector<const SCEV *, 4> MyBad;
Dan Gohman20d9ce22010-11-17 21:41:58 +0000380 DoInitialMatch(NewMul, L, MyGood, MyBad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000381 const SCEV *NegOne = SE.getSCEV(ConstantInt::getAllOnesValue(
382 SE.getEffectiveSCEVType(NewMul->getType())));
Craig Topper042a3922015-05-25 20:01:18 +0000383 for (const SCEV *S : MyGood)
384 Good.push_back(SE.getMulExpr(NegOne, S));
385 for (const SCEV *S : MyBad)
386 Bad.push_back(SE.getMulExpr(NegOne, S));
Dan Gohman45774ce2010-02-12 10:34:29 +0000387 return;
388 }
389
390 // Ok, we can't do anything interesting. Just stuff the whole thing into a
391 // register and hope for the best.
392 Bad.push_back(S);
393}
394
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000395/// Incorporate loop-variant parts of S into this Formula, attempting to keep
396/// all loop-invariant and loop-computable values in a single base register.
Sanjoy Das302bfd02015-08-16 18:22:43 +0000397void Formula::initialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000398 SmallVector<const SCEV *, 4> Good;
399 SmallVector<const SCEV *, 4> Bad;
Dan Gohman20d9ce22010-11-17 21:41:58 +0000400 DoInitialMatch(S, L, Good, Bad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000401 if (!Good.empty()) {
Dan Gohman9b5d0bb72010-04-08 23:36:27 +0000402 const SCEV *Sum = SE.getAddExpr(Good);
403 if (!Sum->isZero())
404 BaseRegs.push_back(Sum);
Chandler Carruth6e479322013-01-07 15:04:40 +0000405 HasBaseReg = true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000406 }
407 if (!Bad.empty()) {
Dan Gohman9b5d0bb72010-04-08 23:36:27 +0000408 const SCEV *Sum = SE.getAddExpr(Bad);
409 if (!Sum->isZero())
410 BaseRegs.push_back(Sum);
Chandler Carruth6e479322013-01-07 15:04:40 +0000411 HasBaseReg = true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000412 }
Sanjoy Das302bfd02015-08-16 18:22:43 +0000413 canonicalize();
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000414}
415
416/// \brief Check whether or not this formula statisfies the canonical
417/// representation.
418/// \see Formula::BaseRegs.
419bool Formula::isCanonical() const {
420 if (ScaledReg)
421 return Scale != 1 || !BaseRegs.empty();
422 return BaseRegs.size() <= 1;
423}
424
425/// \brief Helper method to morph a formula into its canonical representation.
426/// \see Formula::BaseRegs.
427/// Every formula having more than one base register, must use the ScaledReg
428/// field. Otherwise, we would have to do special cases everywhere in LSR
429/// to treat reg1 + reg2 + ... the same way as reg1 + 1*reg2 + ...
430/// On the other hand, 1*reg should be canonicalized into reg.
Sanjoy Das302bfd02015-08-16 18:22:43 +0000431void Formula::canonicalize() {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000432 if (isCanonical())
433 return;
434 // So far we did not need this case. This is easy to implement but it is
435 // useless to maintain dead code. Beside it could hurt compile time.
436 assert(!BaseRegs.empty() && "1*reg => reg, should not be needed.");
437 // Keep the invariant sum in BaseRegs and one of the variant sum in ScaledReg.
438 ScaledReg = BaseRegs.back();
439 BaseRegs.pop_back();
440 Scale = 1;
441 size_t BaseRegsSize = BaseRegs.size();
442 size_t Try = 0;
443 // If ScaledReg is an invariant, try to find a variant expression.
444 while (Try < BaseRegsSize && !isa<SCEVAddRecExpr>(ScaledReg))
445 std::swap(ScaledReg, BaseRegs[Try++]);
446}
447
448/// \brief Get rid of the scale in the formula.
449/// In other words, this method morphes reg1 + 1*reg2 into reg1 + reg2.
450/// \return true if it was possible to get rid of the scale, false otherwise.
451/// \note After this operation the formula may not be in the canonical form.
Sanjoy Das302bfd02015-08-16 18:22:43 +0000452bool Formula::unscale() {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000453 if (Scale != 1)
454 return false;
455 Scale = 0;
456 BaseRegs.push_back(ScaledReg);
457 ScaledReg = nullptr;
458 return true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000459}
460
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000461/// Return the total number of register operands used by this formula. This does
462/// not include register uses implied by non-constant addrec strides.
Adam Nemetdeab6f92014-04-29 18:25:28 +0000463size_t Formula::getNumRegs() const {
Dan Gohman45774ce2010-02-12 10:34:29 +0000464 return !!ScaledReg + BaseRegs.size();
465}
466
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000467/// Return the type of this formula, if it has one, or null otherwise. This type
468/// is meaningless except for the bit size.
Chris Lattner229907c2011-07-18 04:54:35 +0000469Type *Formula::getType() const {
Sanjoy Das215df9e2015-08-04 01:52:05 +0000470 return !BaseRegs.empty() ? BaseRegs.front()->getType() :
471 ScaledReg ? ScaledReg->getType() :
472 BaseGV ? BaseGV->getType() :
473 nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000474}
475
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000476/// Delete the given base reg from the BaseRegs list.
Sanjoy Das302bfd02015-08-16 18:22:43 +0000477void Formula::deleteBaseReg(const SCEV *&S) {
Dan Gohman80a96082010-05-20 15:17:54 +0000478 if (&S != &BaseRegs.back())
479 std::swap(S, BaseRegs.back());
480 BaseRegs.pop_back();
481}
482
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000483/// Test if this formula references the given register.
Dan Gohman45774ce2010-02-12 10:34:29 +0000484bool Formula::referencesReg(const SCEV *S) const {
David Majnemer0d955d02016-08-11 22:21:41 +0000485 return S == ScaledReg || is_contained(BaseRegs, S);
Dan Gohman45774ce2010-02-12 10:34:29 +0000486}
487
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000488/// Test whether this formula uses registers which are used by uses other than
489/// the use with the given index.
Dan Gohman45774ce2010-02-12 10:34:29 +0000490bool Formula::hasRegsUsedByUsesOtherThan(size_t LUIdx,
491 const RegUseTracker &RegUses) const {
492 if (ScaledReg)
493 if (RegUses.isRegUsedByUsesOtherThan(ScaledReg, LUIdx))
494 return true;
Craig Topper042a3922015-05-25 20:01:18 +0000495 for (const SCEV *BaseReg : BaseRegs)
496 if (RegUses.isRegUsedByUsesOtherThan(BaseReg, LUIdx))
Dan Gohman45774ce2010-02-12 10:34:29 +0000497 return true;
498 return false;
499}
500
501void Formula::print(raw_ostream &OS) const {
502 bool First = true;
Chandler Carruth6e479322013-01-07 15:04:40 +0000503 if (BaseGV) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000504 if (!First) OS << " + "; else First = false;
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000505 BaseGV->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +0000506 }
Chandler Carruth6e479322013-01-07 15:04:40 +0000507 if (BaseOffset != 0) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000508 if (!First) OS << " + "; else First = false;
Chandler Carruth6e479322013-01-07 15:04:40 +0000509 OS << BaseOffset;
Dan Gohman45774ce2010-02-12 10:34:29 +0000510 }
Craig Topper042a3922015-05-25 20:01:18 +0000511 for (const SCEV *BaseReg : BaseRegs) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000512 if (!First) OS << " + "; else First = false;
Sanjoy Das215df9e2015-08-04 01:52:05 +0000513 OS << "reg(" << *BaseReg << ')';
Dan Gohman45774ce2010-02-12 10:34:29 +0000514 }
Chandler Carruth6e479322013-01-07 15:04:40 +0000515 if (HasBaseReg && BaseRegs.empty()) {
Dan Gohman06ab08f2010-05-18 22:35:55 +0000516 if (!First) OS << " + "; else First = false;
517 OS << "**error: HasBaseReg**";
Chandler Carruth6e479322013-01-07 15:04:40 +0000518 } else if (!HasBaseReg && !BaseRegs.empty()) {
Dan Gohman06ab08f2010-05-18 22:35:55 +0000519 if (!First) OS << " + "; else First = false;
520 OS << "**error: !HasBaseReg**";
521 }
Chandler Carruth6e479322013-01-07 15:04:40 +0000522 if (Scale != 0) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000523 if (!First) OS << " + "; else First = false;
Chandler Carruth6e479322013-01-07 15:04:40 +0000524 OS << Scale << "*reg(";
Sanjoy Das215df9e2015-08-04 01:52:05 +0000525 if (ScaledReg)
526 OS << *ScaledReg;
527 else
Dan Gohman45774ce2010-02-12 10:34:29 +0000528 OS << "<unknown>";
529 OS << ')';
530 }
Dan Gohman6136e942011-05-03 00:46:49 +0000531 if (UnfoldedOffset != 0) {
Arnaud A. de Grandmaison75c9e6d2014-03-15 22:13:15 +0000532 if (!First) OS << " + ";
Dan Gohman6136e942011-05-03 00:46:49 +0000533 OS << "imm(" << UnfoldedOffset << ')';
534 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000535}
536
Matthias Braun8c209aa2017-01-28 02:02:38 +0000537#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
538LLVM_DUMP_METHOD void Formula::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +0000539 print(errs()); errs() << '\n';
540}
Matthias Braun8c209aa2017-01-28 02:02:38 +0000541#endif
Dan Gohman45774ce2010-02-12 10:34:29 +0000542
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000543/// Return true if the given addrec can be sign-extended without changing its
544/// value.
Dan Gohman85af2562010-02-19 19:32:49 +0000545static bool isAddRecSExtable(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
Chris Lattner229907c2011-07-18 04:54:35 +0000546 Type *WideTy =
Dan Gohmanab5fb7f2010-05-20 19:44:23 +0000547 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(AR->getType()) + 1);
Dan Gohman85af2562010-02-19 19:32:49 +0000548 return isa<SCEVAddRecExpr>(SE.getSignExtendExpr(AR, WideTy));
549}
550
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000551/// Return true if the given add can be sign-extended without changing its
552/// value.
Dan Gohman85af2562010-02-19 19:32:49 +0000553static bool isAddSExtable(const SCEVAddExpr *A, ScalarEvolution &SE) {
Chris Lattner229907c2011-07-18 04:54:35 +0000554 Type *WideTy =
Dan Gohmanab5fb7f2010-05-20 19:44:23 +0000555 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(A->getType()) + 1);
Dan Gohman85af2562010-02-19 19:32:49 +0000556 return isa<SCEVAddExpr>(SE.getSignExtendExpr(A, WideTy));
557}
558
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000559/// Return true if the given mul can be sign-extended without changing its
560/// value.
Dan Gohmanab542222010-06-24 16:45:11 +0000561static bool isMulSExtable(const SCEVMulExpr *M, ScalarEvolution &SE) {
Chris Lattner229907c2011-07-18 04:54:35 +0000562 Type *WideTy =
Dan Gohmanab542222010-06-24 16:45:11 +0000563 IntegerType::get(SE.getContext(),
564 SE.getTypeSizeInBits(M->getType()) * M->getNumOperands());
565 return isa<SCEVMulExpr>(SE.getSignExtendExpr(M, WideTy));
Dan Gohman85af2562010-02-19 19:32:49 +0000566}
567
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000568/// Return an expression for LHS /s RHS, if it can be determined and if the
569/// remainder is known to be zero, or null otherwise. If IgnoreSignificantBits
570/// is true, expressions like (X * Y) /s Y are simplified to Y, ignoring that
571/// the multiplication may overflow, which is useful when the result will be
572/// used in a context where the most significant bits are ignored.
Dan Gohman4eebb942010-02-19 19:35:48 +0000573static const SCEV *getExactSDiv(const SCEV *LHS, const SCEV *RHS,
574 ScalarEvolution &SE,
575 bool IgnoreSignificantBits = false) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000576 // Handle the trivial case, which works for any SCEV type.
577 if (LHS == RHS)
Dan Gohman1d2ded72010-05-03 22:09:21 +0000578 return SE.getConstant(LHS->getType(), 1);
Dan Gohman45774ce2010-02-12 10:34:29 +0000579
Dan Gohman47ddf762010-06-24 16:51:25 +0000580 // Handle a few RHS special cases.
581 const SCEVConstant *RC = dyn_cast<SCEVConstant>(RHS);
582 if (RC) {
Sanjoy Das0de2fec2015-12-17 20:28:46 +0000583 const APInt &RA = RC->getAPInt();
Dan Gohman47ddf762010-06-24 16:51:25 +0000584 // Handle x /s -1 as x * -1, to give ScalarEvolution a chance to do
585 // some folding.
586 if (RA.isAllOnesValue())
587 return SE.getMulExpr(LHS, RC);
588 // Handle x /s 1 as x.
589 if (RA == 1)
590 return LHS;
591 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000592
593 // Check for a division of a constant by a constant.
594 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(LHS)) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000595 if (!RC)
Craig Topperf40110f2014-04-25 05:29:35 +0000596 return nullptr;
Sanjoy Das0de2fec2015-12-17 20:28:46 +0000597 const APInt &LA = C->getAPInt();
598 const APInt &RA = RC->getAPInt();
Dan Gohman47ddf762010-06-24 16:51:25 +0000599 if (LA.srem(RA) != 0)
Craig Topperf40110f2014-04-25 05:29:35 +0000600 return nullptr;
Dan Gohman47ddf762010-06-24 16:51:25 +0000601 return SE.getConstant(LA.sdiv(RA));
Dan Gohman45774ce2010-02-12 10:34:29 +0000602 }
603
Dan Gohman85af2562010-02-19 19:32:49 +0000604 // Distribute the sdiv over addrec operands, if the addrec doesn't overflow.
Dan Gohman45774ce2010-02-12 10:34:29 +0000605 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS)) {
Alexandros Lamprineas0ee3ec22016-11-09 08:53:07 +0000606 if ((IgnoreSignificantBits || isAddRecSExtable(AR, SE)) && AR->isAffine()) {
Dan Gohman4eebb942010-02-19 19:35:48 +0000607 const SCEV *Step = getExactSDiv(AR->getStepRecurrence(SE), RHS, SE,
608 IgnoreSignificantBits);
Craig Topperf40110f2014-04-25 05:29:35 +0000609 if (!Step) return nullptr;
Dan Gohman129a8162010-08-19 01:02:31 +0000610 const SCEV *Start = getExactSDiv(AR->getStart(), RHS, SE,
611 IgnoreSignificantBits);
Craig Topperf40110f2014-04-25 05:29:35 +0000612 if (!Start) return nullptr;
Andrew Trick8b55b732011-03-14 16:50:06 +0000613 // FlagNW is independent of the start value, step direction, and is
614 // preserved with smaller magnitude steps.
615 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
616 return SE.getAddRecExpr(Start, Step, AR->getLoop(), SCEV::FlagAnyWrap);
Dan Gohman85af2562010-02-19 19:32:49 +0000617 }
Craig Topperf40110f2014-04-25 05:29:35 +0000618 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000619 }
620
Dan Gohman85af2562010-02-19 19:32:49 +0000621 // Distribute the sdiv over add operands, if the add doesn't overflow.
Dan Gohman45774ce2010-02-12 10:34:29 +0000622 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) {
Dan Gohman85af2562010-02-19 19:32:49 +0000623 if (IgnoreSignificantBits || isAddSExtable(Add, SE)) {
624 SmallVector<const SCEV *, 8> Ops;
Craig Topper042a3922015-05-25 20:01:18 +0000625 for (const SCEV *S : Add->operands()) {
626 const SCEV *Op = getExactSDiv(S, RHS, SE, IgnoreSignificantBits);
Craig Topperf40110f2014-04-25 05:29:35 +0000627 if (!Op) return nullptr;
Dan Gohman85af2562010-02-19 19:32:49 +0000628 Ops.push_back(Op);
629 }
630 return SE.getAddExpr(Ops);
Dan Gohman45774ce2010-02-12 10:34:29 +0000631 }
Craig Topperf40110f2014-04-25 05:29:35 +0000632 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000633 }
634
635 // Check for a multiply operand that we can pull RHS out of.
Dan Gohman963b1c12010-06-24 16:57:52 +0000636 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(LHS)) {
Dan Gohman85af2562010-02-19 19:32:49 +0000637 if (IgnoreSignificantBits || isMulSExtable(Mul, SE)) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000638 SmallVector<const SCEV *, 4> Ops;
639 bool Found = false;
Craig Topper042a3922015-05-25 20:01:18 +0000640 for (const SCEV *S : Mul->operands()) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000641 if (!Found)
Dan Gohman6b733fc2010-05-20 16:23:28 +0000642 if (const SCEV *Q = getExactSDiv(S, RHS, SE,
Dan Gohman4eebb942010-02-19 19:35:48 +0000643 IgnoreSignificantBits)) {
Dan Gohman6b733fc2010-05-20 16:23:28 +0000644 S = Q;
Dan Gohman45774ce2010-02-12 10:34:29 +0000645 Found = true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000646 }
Dan Gohman6b733fc2010-05-20 16:23:28 +0000647 Ops.push_back(S);
Dan Gohman45774ce2010-02-12 10:34:29 +0000648 }
Craig Topperf40110f2014-04-25 05:29:35 +0000649 return Found ? SE.getMulExpr(Ops) : nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000650 }
Craig Topperf40110f2014-04-25 05:29:35 +0000651 return nullptr;
Dan Gohman963b1c12010-06-24 16:57:52 +0000652 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000653
654 // Otherwise we don't know.
Craig Topperf40110f2014-04-25 05:29:35 +0000655 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000656}
657
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000658/// If S involves the addition of a constant integer value, return that integer
659/// value, and mutate S to point to a new SCEV with that value excluded.
Dan Gohman45774ce2010-02-12 10:34:29 +0000660static int64_t ExtractImmediate(const SCEV *&S, ScalarEvolution &SE) {
661 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) {
Sanjoy Das0de2fec2015-12-17 20:28:46 +0000662 if (C->getAPInt().getMinSignedBits() <= 64) {
Dan Gohman1d2ded72010-05-03 22:09:21 +0000663 S = SE.getConstant(C->getType(), 0);
Dan Gohman45774ce2010-02-12 10:34:29 +0000664 return C->getValue()->getSExtValue();
665 }
666 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
667 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
668 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000669 if (Result != 0)
670 S = SE.getAddExpr(NewOps);
Dan Gohman45774ce2010-02-12 10:34:29 +0000671 return Result;
672 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
673 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
674 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000675 if (Result != 0)
Andrew Trick8b55b732011-03-14 16:50:06 +0000676 S = SE.getAddRecExpr(NewOps, AR->getLoop(),
677 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
678 SCEV::FlagAnyWrap);
Dan Gohman45774ce2010-02-12 10:34:29 +0000679 return Result;
680 }
681 return 0;
682}
683
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000684/// If S involves the addition of a GlobalValue address, return that symbol, and
685/// mutate S to point to a new SCEV with that value excluded.
Dan Gohman45774ce2010-02-12 10:34:29 +0000686static GlobalValue *ExtractSymbol(const SCEV *&S, ScalarEvolution &SE) {
687 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
688 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue())) {
Dan Gohman1d2ded72010-05-03 22:09:21 +0000689 S = SE.getConstant(GV->getType(), 0);
Dan Gohman45774ce2010-02-12 10:34:29 +0000690 return GV;
691 }
692 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
693 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
694 GlobalValue *Result = ExtractSymbol(NewOps.back(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000695 if (Result)
696 S = SE.getAddExpr(NewOps);
Dan Gohman45774ce2010-02-12 10:34:29 +0000697 return Result;
698 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
699 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
700 GlobalValue *Result = ExtractSymbol(NewOps.front(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000701 if (Result)
Andrew Trick8b55b732011-03-14 16:50:06 +0000702 S = SE.getAddRecExpr(NewOps, AR->getLoop(),
703 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
704 SCEV::FlagAnyWrap);
Dan Gohman45774ce2010-02-12 10:34:29 +0000705 return Result;
706 }
Craig Topperf40110f2014-04-25 05:29:35 +0000707 return nullptr;
Nate Begemanb18121e2004-10-18 21:08:22 +0000708}
709
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000710/// Returns true if the specified instruction is using the specified value as an
711/// address.
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000712static bool isAddressUse(Instruction *Inst, Value *OperandVal) {
713 bool isAddress = isa<LoadInst>(Inst);
714 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
715 if (SI->getOperand(1) == OperandVal)
716 isAddress = true;
717 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
718 // Addressing modes can also be folded into prefetches and a variety
719 // of intrinsics.
720 switch (II->getIntrinsicID()) {
721 default: break;
722 case Intrinsic::prefetch:
Gabor Greif8ae30952010-06-30 09:15:28 +0000723 if (II->getArgOperand(0) == OperandVal)
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000724 isAddress = true;
725 break;
726 }
727 }
728 return isAddress;
729}
Chris Lattnere4ed42a2005-10-03 01:04:44 +0000730
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000731/// Return the type of the memory being accessed.
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000732static MemAccessTy getAccessType(const Instruction *Inst) {
733 MemAccessTy AccessTy(Inst->getType(), MemAccessTy::UnknownAddressSpace);
734 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
735 AccessTy.MemTy = SI->getOperand(0)->getType();
736 AccessTy.AddrSpace = SI->getPointerAddressSpace();
737 } else if (const LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
738 AccessTy.AddrSpace = LI->getPointerAddressSpace();
Dan Gohman917ffe42009-03-09 21:01:17 +0000739 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000740
741 // All pointers have the same requirements, so canonicalize them to an
742 // arbitrary pointer type to minimize variation.
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000743 if (PointerType *PTy = dyn_cast<PointerType>(AccessTy.MemTy))
744 AccessTy.MemTy = PointerType::get(IntegerType::get(PTy->getContext(), 1),
745 PTy->getAddressSpace());
Dan Gohman45774ce2010-02-12 10:34:29 +0000746
Dan Gohman14d13392009-05-18 16:45:28 +0000747 return AccessTy;
Dan Gohman917ffe42009-03-09 21:01:17 +0000748}
749
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000750/// Return true if this AddRec is already a phi in its loop.
Andrew Trick5df90962011-12-06 03:13:31 +0000751static bool isExistingPhi(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
752 for (BasicBlock::iterator I = AR->getLoop()->getHeader()->begin();
753 PHINode *PN = dyn_cast<PHINode>(I); ++I) {
754 if (SE.isSCEVable(PN->getType()) &&
755 (SE.getEffectiveSCEVType(PN->getType()) ==
756 SE.getEffectiveSCEVType(AR->getType())) &&
757 SE.getSCEV(PN) == AR)
758 return true;
759 }
760 return false;
761}
762
Andrew Trickd5d2db92012-01-10 01:45:08 +0000763/// Check if expanding this expression is likely to incur significant cost. This
764/// is tricky because SCEV doesn't track which expressions are actually computed
765/// by the current IR.
766///
767/// We currently allow expansion of IV increments that involve adds,
768/// multiplication by constants, and AddRecs from existing phis.
769///
770/// TODO: Allow UDivExpr if we can find an existing IV increment that is an
771/// obvious multiple of the UDivExpr.
772static bool isHighCostExpansion(const SCEV *S,
Craig Topper71b7b682014-08-21 05:55:13 +0000773 SmallPtrSetImpl<const SCEV*> &Processed,
Andrew Trickd5d2db92012-01-10 01:45:08 +0000774 ScalarEvolution &SE) {
775 // Zero/One operand expressions
776 switch (S->getSCEVType()) {
777 case scUnknown:
778 case scConstant:
779 return false;
780 case scTruncate:
781 return isHighCostExpansion(cast<SCEVTruncateExpr>(S)->getOperand(),
782 Processed, SE);
783 case scZeroExtend:
784 return isHighCostExpansion(cast<SCEVZeroExtendExpr>(S)->getOperand(),
785 Processed, SE);
786 case scSignExtend:
787 return isHighCostExpansion(cast<SCEVSignExtendExpr>(S)->getOperand(),
788 Processed, SE);
789 }
790
David Blaikie70573dc2014-11-19 07:49:26 +0000791 if (!Processed.insert(S).second)
Andrew Trickd5d2db92012-01-10 01:45:08 +0000792 return false;
793
794 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Craig Topper042a3922015-05-25 20:01:18 +0000795 for (const SCEV *S : Add->operands()) {
796 if (isHighCostExpansion(S, Processed, SE))
Andrew Trickd5d2db92012-01-10 01:45:08 +0000797 return true;
798 }
799 return false;
800 }
801
802 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
803 if (Mul->getNumOperands() == 2) {
804 // Multiplication by a constant is ok
805 if (isa<SCEVConstant>(Mul->getOperand(0)))
806 return isHighCostExpansion(Mul->getOperand(1), Processed, SE);
807
808 // If we have the value of one operand, check if an existing
809 // multiplication already generates this expression.
810 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(Mul->getOperand(1))) {
811 Value *UVal = U->getValue();
Chandler Carruthcdf47882014-03-09 03:16:01 +0000812 for (User *UR : UVal->users()) {
Andrew Trick14779cc2012-03-26 20:28:37 +0000813 // If U is a constant, it may be used by a ConstantExpr.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000814 Instruction *UI = dyn_cast<Instruction>(UR);
815 if (UI && UI->getOpcode() == Instruction::Mul &&
816 SE.isSCEVable(UI->getType())) {
817 return SE.getSCEV(UI) == Mul;
Andrew Trickd5d2db92012-01-10 01:45:08 +0000818 }
819 }
820 }
821 }
822 }
823
824 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
825 if (isExistingPhi(AR, SE))
826 return false;
827 }
828
829 // Fow now, consider any other type of expression (div/mul/min/max) high cost.
830 return true;
831}
832
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000833/// If any of the instructions is the specified set are trivially dead, delete
834/// them and see if this makes any of their operands subsequently dead.
Dan Gohman45774ce2010-02-12 10:34:29 +0000835static bool
836DeleteTriviallyDeadInstructions(SmallVectorImpl<WeakVH> &DeadInsts) {
837 bool Changed = false;
838
839 while (!DeadInsts.empty()) {
Richard Smithad9c8e82012-08-21 20:35:14 +0000840 Value *V = DeadInsts.pop_back_val();
841 Instruction *I = dyn_cast_or_null<Instruction>(V);
Dan Gohman45774ce2010-02-12 10:34:29 +0000842
Craig Topperf40110f2014-04-25 05:29:35 +0000843 if (!I || !isInstructionTriviallyDead(I))
Dan Gohman45774ce2010-02-12 10:34:29 +0000844 continue;
845
Craig Topper042a3922015-05-25 20:01:18 +0000846 for (Use &O : I->operands())
847 if (Instruction *U = dyn_cast<Instruction>(O)) {
848 O = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000849 if (U->use_empty())
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +0000850 DeadInsts.emplace_back(U);
Dan Gohman45774ce2010-02-12 10:34:29 +0000851 }
852
853 I->eraseFromParent();
854 Changed = true;
855 }
856
857 return Changed;
858}
859
Dan Gohman045f8192010-01-22 00:46:49 +0000860namespace {
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000861
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000862class LSRUse;
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000863
864} // end anonymous namespace
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000865
866/// \brief Check if the addressing mode defined by \p F is completely
867/// folded in \p LU at isel time.
868/// This includes address-mode folding and special icmp tricks.
869/// This function returns true if \p LU can accommodate what \p F
870/// defines and up to 1 base + 1 scaled + offset.
871/// In other words, if \p F has several base registers, this function may
872/// still return true. Therefore, users still need to account for
873/// additional base registers and/or unfolded offsets to derive an
874/// accurate cost model.
875static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
876 const LSRUse &LU, const Formula &F);
Quentin Colombetbf490d42013-05-31 21:29:03 +0000877// Get the cost of the scaling factor used in F for LU.
878static unsigned getScalingFactorCost(const TargetTransformInfo &TTI,
879 const LSRUse &LU, const Formula &F);
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000880
881namespace {
Jim Grosbach60f48542009-11-17 17:53:56 +0000882
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000883/// This class is used to measure and compare candidate formulae.
Dan Gohman45774ce2010-02-12 10:34:29 +0000884class Cost {
885 /// TODO: Some of these could be merged. Also, a lexical ordering
886 /// isn't always optimal.
887 unsigned NumRegs;
888 unsigned AddRecCost;
889 unsigned NumIVMuls;
890 unsigned NumBaseAdds;
891 unsigned ImmCost;
892 unsigned SetupCost;
Quentin Colombetbf490d42013-05-31 21:29:03 +0000893 unsigned ScaleCost;
Nate Begemane68bcd12005-07-30 00:15:07 +0000894
Dan Gohman45774ce2010-02-12 10:34:29 +0000895public:
896 Cost()
897 : NumRegs(0), AddRecCost(0), NumIVMuls(0), NumBaseAdds(0), ImmCost(0),
Quentin Colombetbf490d42013-05-31 21:29:03 +0000898 SetupCost(0), ScaleCost(0) {}
Jim Grosbach60f48542009-11-17 17:53:56 +0000899
Dan Gohman45774ce2010-02-12 10:34:29 +0000900 bool operator<(const Cost &Other) const;
Dan Gohman045f8192010-01-22 00:46:49 +0000901
Tim Northoverbc6659c2014-01-22 13:27:00 +0000902 void Lose();
Dan Gohman045f8192010-01-22 00:46:49 +0000903
Andrew Trick784729d2011-09-26 23:11:04 +0000904#ifndef NDEBUG
905 // Once any of the metrics loses, they must all remain losers.
906 bool isValid() {
907 return ((NumRegs | AddRecCost | NumIVMuls | NumBaseAdds
Quentin Colombetbf490d42013-05-31 21:29:03 +0000908 | ImmCost | SetupCost | ScaleCost) != ~0u)
Andrew Trick784729d2011-09-26 23:11:04 +0000909 || ((NumRegs & AddRecCost & NumIVMuls & NumBaseAdds
Quentin Colombetbf490d42013-05-31 21:29:03 +0000910 & ImmCost & SetupCost & ScaleCost) == ~0u);
Andrew Trick784729d2011-09-26 23:11:04 +0000911 }
912#endif
913
914 bool isLoser() {
915 assert(isValid() && "invalid cost");
916 return NumRegs == ~0u;
917 }
918
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000919 void RateFormula(const TargetTransformInfo &TTI,
920 const Formula &F,
Craig Topper71b7b682014-08-21 05:55:13 +0000921 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman45774ce2010-02-12 10:34:29 +0000922 const DenseSet<const SCEV *> &VisitedRegs,
923 const Loop *L,
Andrew Trick5df90962011-12-06 03:13:31 +0000924 ScalarEvolution &SE, DominatorTree &DT,
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000925 const LSRUse &LU,
Craig Topper71b7b682014-08-21 05:55:13 +0000926 SmallPtrSetImpl<const SCEV *> *LoserRegs = nullptr);
Dan Gohman045f8192010-01-22 00:46:49 +0000927
Dan Gohman45774ce2010-02-12 10:34:29 +0000928 void print(raw_ostream &OS) const;
929 void dump() const;
Dan Gohman045f8192010-01-22 00:46:49 +0000930
Dan Gohman45774ce2010-02-12 10:34:29 +0000931private:
932 void RateRegister(const SCEV *Reg,
Craig Topper71b7b682014-08-21 05:55:13 +0000933 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman45774ce2010-02-12 10:34:29 +0000934 const Loop *L,
935 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman5b18f032010-02-13 02:06:02 +0000936 void RatePrimaryRegister(const SCEV *Reg,
Craig Topper71b7b682014-08-21 05:55:13 +0000937 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman5b18f032010-02-13 02:06:02 +0000938 const Loop *L,
Andrew Trick5df90962011-12-06 03:13:31 +0000939 ScalarEvolution &SE, DominatorTree &DT,
Craig Topper71b7b682014-08-21 05:55:13 +0000940 SmallPtrSetImpl<const SCEV *> *LoserRegs);
Dan Gohman45774ce2010-02-12 10:34:29 +0000941};
Jonas Paulsson7a794222016-08-17 13:24:19 +0000942
943/// An operand value in an instruction which is to be replaced with some
944/// equivalent, possibly strength-reduced, replacement.
945struct LSRFixup {
946 /// The instruction which will be updated.
947 Instruction *UserInst;
948
949 /// The operand of the instruction which will be replaced. The operand may be
950 /// used more than once; every instance will be replaced.
951 Value *OperandValToReplace;
952
953 /// If this user is to use the post-incremented value of an induction
954 /// variable, this variable is non-null and holds the loop associated with the
955 /// induction variable.
956 PostIncLoopSet PostIncLoops;
957
958 /// A constant offset to be added to the LSRUse expression. This allows
959 /// multiple fixups to share the same LSRUse with different offsets, for
960 /// example in an unrolled loop.
961 int64_t Offset;
962
963 bool isUseFullyOutsideLoop(const Loop *L) const;
964
965 LSRFixup();
966
967 void print(raw_ostream &OS) const;
968 void dump() const;
969};
970
Jonas Paulsson7a794222016-08-17 13:24:19 +0000971/// A DenseMapInfo implementation for holding DenseMaps and DenseSets of sorted
972/// SmallVectors of const SCEV*.
973struct UniquifierDenseMapInfo {
974 static SmallVector<const SCEV *, 4> getEmptyKey() {
975 SmallVector<const SCEV *, 4> V;
976 V.push_back(reinterpret_cast<const SCEV *>(-1));
977 return V;
978 }
979
980 static SmallVector<const SCEV *, 4> getTombstoneKey() {
981 SmallVector<const SCEV *, 4> V;
982 V.push_back(reinterpret_cast<const SCEV *>(-2));
983 return V;
984 }
985
986 static unsigned getHashValue(const SmallVector<const SCEV *, 4> &V) {
987 return static_cast<unsigned>(hash_combine_range(V.begin(), V.end()));
988 }
989
990 static bool isEqual(const SmallVector<const SCEV *, 4> &LHS,
991 const SmallVector<const SCEV *, 4> &RHS) {
992 return LHS == RHS;
993 }
994};
995
996/// This class holds the state that LSR keeps for each use in IVUsers, as well
997/// as uses invented by LSR itself. It includes information about what kinds of
998/// things can be folded into the user, information about the user itself, and
999/// information about how the use may be satisfied. TODO: Represent multiple
1000/// users of the same expression in common?
1001class LSRUse {
1002 DenseSet<SmallVector<const SCEV *, 4>, UniquifierDenseMapInfo> Uniquifier;
1003
1004public:
1005 /// An enum for a kind of use, indicating what types of scaled and immediate
1006 /// operands it might support.
1007 enum KindType {
1008 Basic, ///< A normal use, with no folding.
1009 Special, ///< A special case of basic, allowing -1 scales.
1010 Address, ///< An address use; folding according to TargetLowering
1011 ICmpZero ///< An equality icmp with both operands folded into one.
1012 // TODO: Add a generic icmp too?
1013 };
1014
1015 typedef PointerIntPair<const SCEV *, 2, KindType> SCEVUseKindPair;
1016
1017 KindType Kind;
1018 MemAccessTy AccessTy;
1019
1020 /// The list of operands which are to be replaced.
1021 SmallVector<LSRFixup, 8> Fixups;
1022
1023 /// Keep track of the min and max offsets of the fixups.
1024 int64_t MinOffset;
1025 int64_t MaxOffset;
1026
1027 /// This records whether all of the fixups using this LSRUse are outside of
1028 /// the loop, in which case some special-case heuristics may be used.
1029 bool AllFixupsOutsideLoop;
1030
1031 /// RigidFormula is set to true to guarantee that this use will be associated
1032 /// with a single formula--the one that initially matched. Some SCEV
1033 /// expressions cannot be expanded. This allows LSR to consider the registers
1034 /// used by those expressions without the need to expand them later after
1035 /// changing the formula.
1036 bool RigidFormula;
1037
1038 /// This records the widest use type for any fixup using this
1039 /// LSRUse. FindUseWithSimilarFormula can't consider uses with different max
1040 /// fixup widths to be equivalent, because the narrower one may be relying on
1041 /// the implicit truncation to truncate away bogus bits.
1042 Type *WidestFixupType;
1043
1044 /// A list of ways to build a value that can satisfy this user. After the
1045 /// list is populated, one of these is selected heuristically and used to
1046 /// formulate a replacement for OperandValToReplace in UserInst.
1047 SmallVector<Formula, 12> Formulae;
1048
1049 /// The set of register candidates used by all formulae in this LSRUse.
1050 SmallPtrSet<const SCEV *, 4> Regs;
1051
1052 LSRUse(KindType K, MemAccessTy AT)
1053 : Kind(K), AccessTy(AT), MinOffset(INT64_MAX), MaxOffset(INT64_MIN),
1054 AllFixupsOutsideLoop(true), RigidFormula(false),
1055 WidestFixupType(nullptr) {}
1056
1057 LSRFixup &getNewFixup() {
1058 Fixups.push_back(LSRFixup());
1059 return Fixups.back();
1060 }
1061
1062 void pushFixup(LSRFixup &f) {
1063 Fixups.push_back(f);
1064 if (f.Offset > MaxOffset)
1065 MaxOffset = f.Offset;
1066 if (f.Offset < MinOffset)
1067 MinOffset = f.Offset;
1068 }
1069
1070 bool HasFormulaWithSameRegs(const Formula &F) const;
1071 bool InsertFormula(const Formula &F);
1072 void DeleteFormula(Formula &F);
1073 void RecomputeRegs(size_t LUIdx, RegUseTracker &Reguses);
1074
1075 void print(raw_ostream &OS) const;
1076 void dump() const;
1077};
Dan Gohman45774ce2010-02-12 10:34:29 +00001078
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00001079} // end anonymous namespace
Dan Gohman45774ce2010-02-12 10:34:29 +00001080
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001081/// Tally up interesting quantities from the given register.
Dan Gohman45774ce2010-02-12 10:34:29 +00001082void Cost::RateRegister(const SCEV *Reg,
Craig Topper71b7b682014-08-21 05:55:13 +00001083 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman45774ce2010-02-12 10:34:29 +00001084 const Loop *L,
1085 ScalarEvolution &SE, DominatorTree &DT) {
Dan Gohman5b18f032010-02-13 02:06:02 +00001086 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Reg)) {
Wei Mi37c4aaa2016-11-15 19:42:05 +00001087 // If this is an addrec for another loop, don't second-guess its addrec phi
1088 // nodes. LSR isn't currently smart enough to reason about more than one
1089 // loop at a time. LSR has already run on inner loops, will not run on outer
1090 // loops, and cannot be expected to change sibling loops.
Andrew Trickd97b83e2012-03-22 22:42:45 +00001091 if (AR->getLoop() != L) {
1092 // If the AddRec exists, consider it's register free and leave it alone.
Andrew Trick5df90962011-12-06 03:13:31 +00001093 if (isExistingPhi(AR, SE))
1094 return;
1095
Wei Mi37c4aaa2016-11-15 19:42:05 +00001096 // Otherwise, do not consider this formula at all.
1097 Lose();
Andrew Trickd97b83e2012-03-22 22:42:45 +00001098 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00001099 }
Andrew Trickd97b83e2012-03-22 22:42:45 +00001100 AddRecCost += 1; /// TODO: This should be a function of the stride.
Dan Gohman45774ce2010-02-12 10:34:29 +00001101
Dan Gohman5b18f032010-02-13 02:06:02 +00001102 // Add the step value register, if it needs one.
1103 // TODO: The non-affine case isn't precisely modeled here.
Andrew Trick8868fae2011-09-26 23:35:25 +00001104 if (!AR->isAffine() || !isa<SCEVConstant>(AR->getOperand(1))) {
1105 if (!Regs.count(AR->getOperand(1))) {
Dan Gohman5b18f032010-02-13 02:06:02 +00001106 RateRegister(AR->getOperand(1), Regs, L, SE, DT);
Andrew Trick8868fae2011-09-26 23:35:25 +00001107 if (isLoser())
1108 return;
1109 }
1110 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001111 }
Dan Gohman5b18f032010-02-13 02:06:02 +00001112 ++NumRegs;
1113
1114 // Rough heuristic; favor registers which don't require extra setup
1115 // instructions in the preheader.
1116 if (!isa<SCEVUnknown>(Reg) &&
1117 !isa<SCEVConstant>(Reg) &&
1118 !(isa<SCEVAddRecExpr>(Reg) &&
1119 (isa<SCEVUnknown>(cast<SCEVAddRecExpr>(Reg)->getStart()) ||
1120 isa<SCEVConstant>(cast<SCEVAddRecExpr>(Reg)->getStart()))))
1121 ++SetupCost;
Dan Gohman34f37e02010-10-07 23:41:58 +00001122
Davide Italiano709d4182016-07-07 17:44:38 +00001123 NumIVMuls += isa<SCEVMulExpr>(Reg) &&
1124 SE.hasComputableLoopEvolution(Reg, L);
Dan Gohman5b18f032010-02-13 02:06:02 +00001125}
1126
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001127/// Record this register in the set. If we haven't seen it before, rate
1128/// it. Optional LoserRegs provides a way to declare any formula that refers to
1129/// one of those regs an instant loser.
Dan Gohman5b18f032010-02-13 02:06:02 +00001130void Cost::RatePrimaryRegister(const SCEV *Reg,
Craig Topper71b7b682014-08-21 05:55:13 +00001131 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman0849ed52010-02-16 19:42:34 +00001132 const Loop *L,
Andrew Trick5df90962011-12-06 03:13:31 +00001133 ScalarEvolution &SE, DominatorTree &DT,
Craig Topper71b7b682014-08-21 05:55:13 +00001134 SmallPtrSetImpl<const SCEV *> *LoserRegs) {
Andrew Trick5df90962011-12-06 03:13:31 +00001135 if (LoserRegs && LoserRegs->count(Reg)) {
Tim Northoverbc6659c2014-01-22 13:27:00 +00001136 Lose();
Andrew Trick5df90962011-12-06 03:13:31 +00001137 return;
1138 }
David Blaikie70573dc2014-11-19 07:49:26 +00001139 if (Regs.insert(Reg).second) {
Dan Gohman5b18f032010-02-13 02:06:02 +00001140 RateRegister(Reg, Regs, L, SE, DT);
Andrew Tricka1c01ba2013-03-19 04:14:57 +00001141 if (LoserRegs && isLoser())
Andrew Trick5df90962011-12-06 03:13:31 +00001142 LoserRegs->insert(Reg);
1143 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001144}
1145
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001146void Cost::RateFormula(const TargetTransformInfo &TTI,
1147 const Formula &F,
Craig Topper71b7b682014-08-21 05:55:13 +00001148 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman45774ce2010-02-12 10:34:29 +00001149 const DenseSet<const SCEV *> &VisitedRegs,
1150 const Loop *L,
Andrew Trick5df90962011-12-06 03:13:31 +00001151 ScalarEvolution &SE, DominatorTree &DT,
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001152 const LSRUse &LU,
Craig Topper71b7b682014-08-21 05:55:13 +00001153 SmallPtrSetImpl<const SCEV *> *LoserRegs) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001154 assert(F.isCanonical() && "Cost is accurate only for canonical formula");
Dan Gohman45774ce2010-02-12 10:34:29 +00001155 // Tally up the registers.
1156 if (const SCEV *ScaledReg = F.ScaledReg) {
1157 if (VisitedRegs.count(ScaledReg)) {
Tim Northoverbc6659c2014-01-22 13:27:00 +00001158 Lose();
Dan Gohman45774ce2010-02-12 10:34:29 +00001159 return;
1160 }
Andrew Trick5df90962011-12-06 03:13:31 +00001161 RatePrimaryRegister(ScaledReg, Regs, L, SE, DT, LoserRegs);
Andrew Trick784729d2011-09-26 23:11:04 +00001162 if (isLoser())
1163 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00001164 }
Craig Topper042a3922015-05-25 20:01:18 +00001165 for (const SCEV *BaseReg : F.BaseRegs) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001166 if (VisitedRegs.count(BaseReg)) {
Tim Northoverbc6659c2014-01-22 13:27:00 +00001167 Lose();
Dan Gohman45774ce2010-02-12 10:34:29 +00001168 return;
1169 }
Andrew Trick5df90962011-12-06 03:13:31 +00001170 RatePrimaryRegister(BaseReg, Regs, L, SE, DT, LoserRegs);
Andrew Trick784729d2011-09-26 23:11:04 +00001171 if (isLoser())
1172 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00001173 }
1174
Dan Gohman6136e942011-05-03 00:46:49 +00001175 // Determine how many (unfolded) adds we'll need inside the loop.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001176 size_t NumBaseParts = F.getNumRegs();
Dan Gohman6136e942011-05-03 00:46:49 +00001177 if (NumBaseParts > 1)
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001178 // Do not count the base and a possible second register if the target
1179 // allows to fold 2 registers.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001180 NumBaseAdds +=
1181 NumBaseParts - (1 + (F.Scale && isAMCompletelyFolded(TTI, LU, F)));
1182 NumBaseAdds += (F.UnfoldedOffset != 0);
Dan Gohman45774ce2010-02-12 10:34:29 +00001183
Quentin Colombetbf490d42013-05-31 21:29:03 +00001184 // Accumulate non-free scaling amounts.
1185 ScaleCost += getScalingFactorCost(TTI, LU, F);
1186
Dan Gohman45774ce2010-02-12 10:34:29 +00001187 // Tally up the non-zero immediates.
Jonas Paulsson7a794222016-08-17 13:24:19 +00001188 for (const LSRFixup &Fixup : LU.Fixups) {
1189 int64_t O = Fixup.Offset;
Craig Topper042a3922015-05-25 20:01:18 +00001190 int64_t Offset = (uint64_t)O + F.BaseOffset;
Chandler Carruth6e479322013-01-07 15:04:40 +00001191 if (F.BaseGV)
Dan Gohman45774ce2010-02-12 10:34:29 +00001192 ImmCost += 64; // Handle symbolic values conservatively.
1193 // TODO: This should probably be the pointer size.
1194 else if (Offset != 0)
1195 ImmCost += APInt(64, Offset, true).getMinSignedBits();
Jonas Paulsson7a794222016-08-17 13:24:19 +00001196
1197 // Check with target if this offset with this instruction is
1198 // specifically not supported.
1199 if ((isa<LoadInst>(Fixup.UserInst) || isa<StoreInst>(Fixup.UserInst)) &&
1200 !TTI.isFoldableMemAccessOffset(Fixup.UserInst, Offset))
1201 NumBaseAdds++;
Dan Gohman45774ce2010-02-12 10:34:29 +00001202 }
Andrew Trick784729d2011-09-26 23:11:04 +00001203 assert(isValid() && "invalid cost");
Dan Gohman45774ce2010-02-12 10:34:29 +00001204}
1205
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001206/// Set this cost to a losing value.
Tim Northoverbc6659c2014-01-22 13:27:00 +00001207void Cost::Lose() {
Dan Gohman45774ce2010-02-12 10:34:29 +00001208 NumRegs = ~0u;
1209 AddRecCost = ~0u;
1210 NumIVMuls = ~0u;
1211 NumBaseAdds = ~0u;
1212 ImmCost = ~0u;
1213 SetupCost = ~0u;
Quentin Colombetbf490d42013-05-31 21:29:03 +00001214 ScaleCost = ~0u;
Dan Gohman45774ce2010-02-12 10:34:29 +00001215}
1216
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001217/// Choose the lower cost.
Dan Gohman45774ce2010-02-12 10:34:29 +00001218bool Cost::operator<(const Cost &Other) const {
Benjamin Kramerb2f034b2014-03-03 19:58:30 +00001219 return std::tie(NumRegs, AddRecCost, NumIVMuls, NumBaseAdds, ScaleCost,
1220 ImmCost, SetupCost) <
1221 std::tie(Other.NumRegs, Other.AddRecCost, Other.NumIVMuls,
1222 Other.NumBaseAdds, Other.ScaleCost, Other.ImmCost,
1223 Other.SetupCost);
Dan Gohman45774ce2010-02-12 10:34:29 +00001224}
1225
1226void Cost::print(raw_ostream &OS) const {
1227 OS << NumRegs << " reg" << (NumRegs == 1 ? "" : "s");
1228 if (AddRecCost != 0)
1229 OS << ", with addrec cost " << AddRecCost;
1230 if (NumIVMuls != 0)
1231 OS << ", plus " << NumIVMuls << " IV mul" << (NumIVMuls == 1 ? "" : "s");
1232 if (NumBaseAdds != 0)
1233 OS << ", plus " << NumBaseAdds << " base add"
1234 << (NumBaseAdds == 1 ? "" : "s");
Quentin Colombetbf490d42013-05-31 21:29:03 +00001235 if (ScaleCost != 0)
1236 OS << ", plus " << ScaleCost << " scale cost";
Dan Gohman45774ce2010-02-12 10:34:29 +00001237 if (ImmCost != 0)
1238 OS << ", plus " << ImmCost << " imm cost";
1239 if (SetupCost != 0)
1240 OS << ", plus " << SetupCost << " setup cost";
1241}
1242
Matthias Braun8c209aa2017-01-28 02:02:38 +00001243#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1244LLVM_DUMP_METHOD void Cost::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +00001245 print(errs()); errs() << '\n';
1246}
Matthias Braun8c209aa2017-01-28 02:02:38 +00001247#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00001248
Dan Gohman45774ce2010-02-12 10:34:29 +00001249LSRFixup::LSRFixup()
Jonas Paulsson7a794222016-08-17 13:24:19 +00001250 : UserInst(nullptr), OperandValToReplace(nullptr),
Craig Topperf40110f2014-04-25 05:29:35 +00001251 Offset(0) {}
Dan Gohman45774ce2010-02-12 10:34:29 +00001252
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001253/// Test whether this fixup always uses its value outside of the given loop.
Dan Gohmand006ab92010-04-07 22:27:08 +00001254bool LSRFixup::isUseFullyOutsideLoop(const Loop *L) const {
1255 // PHI nodes use their value in their incoming blocks.
1256 if (const PHINode *PN = dyn_cast<PHINode>(UserInst)) {
1257 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
1258 if (PN->getIncomingValue(i) == OperandValToReplace &&
1259 L->contains(PN->getIncomingBlock(i)))
1260 return false;
1261 return true;
1262 }
1263
1264 return !L->contains(UserInst);
1265}
1266
Dan Gohman45774ce2010-02-12 10:34:29 +00001267void LSRFixup::print(raw_ostream &OS) const {
1268 OS << "UserInst=";
1269 // Store is common and interesting enough to be worth special-casing.
1270 if (StoreInst *Store = dyn_cast<StoreInst>(UserInst)) {
1271 OS << "store ";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001272 Store->getOperand(0)->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001273 } else if (UserInst->getType()->isVoidTy())
1274 OS << UserInst->getOpcodeName();
1275 else
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001276 UserInst->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001277
1278 OS << ", OperandValToReplace=";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001279 OperandValToReplace->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001280
Craig Topper042a3922015-05-25 20:01:18 +00001281 for (const Loop *PIL : PostIncLoops) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001282 OS << ", PostIncLoop=";
Craig Topper042a3922015-05-25 20:01:18 +00001283 PIL->getHeader()->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001284 }
1285
Dan Gohman45774ce2010-02-12 10:34:29 +00001286 if (Offset != 0)
1287 OS << ", Offset=" << Offset;
1288}
1289
Matthias Braun8c209aa2017-01-28 02:02:38 +00001290#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1291LLVM_DUMP_METHOD void LSRFixup::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +00001292 print(errs()); errs() << '\n';
1293}
Matthias Braun8c209aa2017-01-28 02:02:38 +00001294#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00001295
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001296/// Test whether this use as a formula which has the same registers as the given
1297/// formula.
Dan Gohman20fab452010-05-19 23:43:12 +00001298bool LSRUse::HasFormulaWithSameRegs(const Formula &F) const {
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001299 SmallVector<const SCEV *, 4> Key = F.BaseRegs;
Dan Gohman20fab452010-05-19 23:43:12 +00001300 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1301 // Unstable sort by host order ok, because this is only used for uniquifying.
1302 std::sort(Key.begin(), Key.end());
1303 return Uniquifier.count(Key);
1304}
1305
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001306/// If the given formula has not yet been inserted, add it to the list, and
1307/// return true. Return false otherwise. The formula must be in canonical form.
Dan Gohman8c16b382010-02-22 04:11:59 +00001308bool LSRUse::InsertFormula(const Formula &F) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001309 assert(F.isCanonical() && "Invalid canonical representation");
1310
Andrew Trick57243da2013-10-25 21:35:56 +00001311 if (!Formulae.empty() && RigidFormula)
1312 return false;
1313
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001314 SmallVector<const SCEV *, 4> Key = F.BaseRegs;
Dan Gohman45774ce2010-02-12 10:34:29 +00001315 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1316 // Unstable sort by host order ok, because this is only used for uniquifying.
1317 std::sort(Key.begin(), Key.end());
1318
1319 if (!Uniquifier.insert(Key).second)
1320 return false;
1321
1322 // Using a register to hold the value of 0 is not profitable.
1323 assert((!F.ScaledReg || !F.ScaledReg->isZero()) &&
1324 "Zero allocated in a scaled register!");
1325#ifndef NDEBUG
Craig Topper042a3922015-05-25 20:01:18 +00001326 for (const SCEV *BaseReg : F.BaseRegs)
1327 assert(!BaseReg->isZero() && "Zero allocated in a base register!");
Dan Gohman45774ce2010-02-12 10:34:29 +00001328#endif
1329
1330 // Add the formula to the list.
1331 Formulae.push_back(F);
1332
1333 // Record registers now being used by this use.
Dan Gohman45774ce2010-02-12 10:34:29 +00001334 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001335 if (F.ScaledReg)
1336 Regs.insert(F.ScaledReg);
Dan Gohman45774ce2010-02-12 10:34:29 +00001337
1338 return true;
Dan Gohman045f8192010-01-22 00:46:49 +00001339}
1340
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001341/// Remove the given formula from this use's list.
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00001342void LSRUse::DeleteFormula(Formula &F) {
Dan Gohman80a96082010-05-20 15:17:54 +00001343 if (&F != &Formulae.back())
1344 std::swap(F, Formulae.back());
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00001345 Formulae.pop_back();
1346}
1347
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001348/// Recompute the Regs field, and update RegUses.
Dan Gohman4cf99b52010-05-18 23:42:37 +00001349void LSRUse::RecomputeRegs(size_t LUIdx, RegUseTracker &RegUses) {
1350 // Now that we've filtered out some formulae, recompute the Regs set.
Benjamin Kramer1c2beed2015-02-19 17:19:43 +00001351 SmallPtrSet<const SCEV *, 4> OldRegs = std::move(Regs);
Dan Gohman4cf99b52010-05-18 23:42:37 +00001352 Regs.clear();
Benjamin Kramer1c2beed2015-02-19 17:19:43 +00001353 for (const Formula &F : Formulae) {
Dan Gohman4cf99b52010-05-18 23:42:37 +00001354 if (F.ScaledReg) Regs.insert(F.ScaledReg);
1355 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1356 }
1357
1358 // Update the RegTracker.
Craig Topper46276792014-08-24 23:23:06 +00001359 for (const SCEV *S : OldRegs)
1360 if (!Regs.count(S))
Sanjoy Das302bfd02015-08-16 18:22:43 +00001361 RegUses.dropRegister(S, LUIdx);
Dan Gohman4cf99b52010-05-18 23:42:37 +00001362}
1363
Dan Gohman45774ce2010-02-12 10:34:29 +00001364void LSRUse::print(raw_ostream &OS) const {
1365 OS << "LSR Use: Kind=";
1366 switch (Kind) {
1367 case Basic: OS << "Basic"; break;
1368 case Special: OS << "Special"; break;
1369 case ICmpZero: OS << "ICmpZero"; break;
1370 case Address:
1371 OS << "Address of ";
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001372 if (AccessTy.MemTy->isPointerTy())
Dan Gohman45774ce2010-02-12 10:34:29 +00001373 OS << "pointer"; // the full pointer type could be really verbose
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001374 else {
1375 OS << *AccessTy.MemTy;
1376 }
1377
1378 OS << " in addrspace(" << AccessTy.AddrSpace << ')';
Evan Cheng133694d2007-10-25 09:11:16 +00001379 }
1380
Dan Gohman45774ce2010-02-12 10:34:29 +00001381 OS << ", Offsets={";
Craig Topper042a3922015-05-25 20:01:18 +00001382 bool NeedComma = false;
Jonas Paulsson7a794222016-08-17 13:24:19 +00001383 for (const LSRFixup &Fixup : Fixups) {
Craig Topper042a3922015-05-25 20:01:18 +00001384 if (NeedComma) OS << ',';
Jonas Paulsson7a794222016-08-17 13:24:19 +00001385 OS << Fixup.Offset;
Craig Topper042a3922015-05-25 20:01:18 +00001386 NeedComma = true;
Dan Gohman045f8192010-01-22 00:46:49 +00001387 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001388 OS << '}';
Dan Gohman045f8192010-01-22 00:46:49 +00001389
Dan Gohman45774ce2010-02-12 10:34:29 +00001390 if (AllFixupsOutsideLoop)
1391 OS << ", all-fixups-outside-loop";
Dan Gohman14152082010-07-15 20:24:58 +00001392
1393 if (WidestFixupType)
1394 OS << ", widest fixup type: " << *WidestFixupType;
Dan Gohman045f8192010-01-22 00:46:49 +00001395}
1396
Matthias Braun8c209aa2017-01-28 02:02:38 +00001397#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1398LLVM_DUMP_METHOD void LSRUse::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +00001399 print(errs()); errs() << '\n';
1400}
Matthias Braun8c209aa2017-01-28 02:02:38 +00001401#endif
Dan Gohman045f8192010-01-22 00:46:49 +00001402
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001403static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001404 LSRUse::KindType Kind, MemAccessTy AccessTy,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001405 GlobalValue *BaseGV, int64_t BaseOffset,
1406 bool HasBaseReg, int64_t Scale) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001407 switch (Kind) {
1408 case LSRUse::Address:
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001409 return TTI.isLegalAddressingMode(AccessTy.MemTy, BaseGV, BaseOffset,
1410 HasBaseReg, Scale, AccessTy.AddrSpace);
Dan Gohman45774ce2010-02-12 10:34:29 +00001411
Dan Gohman45774ce2010-02-12 10:34:29 +00001412 case LSRUse::ICmpZero:
1413 // There's not even a target hook for querying whether it would be legal to
1414 // fold a GV into an ICmp.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001415 if (BaseGV)
Dan Gohman45774ce2010-02-12 10:34:29 +00001416 return false;
1417
1418 // ICmp only has two operands; don't allow more than two non-trivial parts.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001419 if (Scale != 0 && HasBaseReg && BaseOffset != 0)
Dan Gohman45774ce2010-02-12 10:34:29 +00001420 return false;
1421
1422 // ICmp only supports no scale or a -1 scale, as we can "fold" a -1 scale by
1423 // putting the scaled register in the other operand of the icmp.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001424 if (Scale != 0 && Scale != -1)
Dan Gohman45774ce2010-02-12 10:34:29 +00001425 return false;
1426
1427 // If we have low-level target information, ask the target if it can fold an
1428 // integer immediate on an icmp.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001429 if (BaseOffset != 0) {
Jakob Stoklund Olesenf2390e82012-04-05 03:10:56 +00001430 // We have one of:
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001431 // ICmpZero BaseReg + BaseOffset => ICmp BaseReg, -BaseOffset
1432 // ICmpZero -1*ScaleReg + BaseOffset => ICmp ScaleReg, BaseOffset
Jakob Stoklund Olesenf2390e82012-04-05 03:10:56 +00001433 // Offs is the ICmp immediate.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001434 if (Scale == 0)
1435 // The cast does the right thing with INT64_MIN.
1436 BaseOffset = -(uint64_t)BaseOffset;
1437 return TTI.isLegalICmpImmediate(BaseOffset);
Dan Gohman045f8192010-01-22 00:46:49 +00001438 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001439
Jakob Stoklund Olesenf2390e82012-04-05 03:10:56 +00001440 // ICmpZero BaseReg + -1*ScaleReg => ICmp BaseReg, ScaleReg
Dan Gohman45774ce2010-02-12 10:34:29 +00001441 return true;
1442
1443 case LSRUse::Basic:
1444 // Only handle single-register values.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001445 return !BaseGV && Scale == 0 && BaseOffset == 0;
Dan Gohman45774ce2010-02-12 10:34:29 +00001446
1447 case LSRUse::Special:
Andrew Trickaca8fb32012-06-15 20:07:26 +00001448 // Special case Basic to handle -1 scales.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001449 return !BaseGV && (Scale == 0 || Scale == -1) && BaseOffset == 0;
Dan Gohman045f8192010-01-22 00:46:49 +00001450 }
1451
David Blaikie46a9f012012-01-20 21:51:11 +00001452 llvm_unreachable("Invalid LSRUse Kind!");
Dan Gohman045f8192010-01-22 00:46:49 +00001453}
1454
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001455static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1456 int64_t MinOffset, int64_t MaxOffset,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001457 LSRUse::KindType Kind, MemAccessTy AccessTy,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001458 GlobalValue *BaseGV, int64_t BaseOffset,
1459 bool HasBaseReg, int64_t Scale) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001460 // Check for overflow.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001461 if (((int64_t)((uint64_t)BaseOffset + MinOffset) > BaseOffset) !=
Dan Gohman45774ce2010-02-12 10:34:29 +00001462 (MinOffset > 0))
1463 return false;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001464 MinOffset = (uint64_t)BaseOffset + MinOffset;
1465 if (((int64_t)((uint64_t)BaseOffset + MaxOffset) > BaseOffset) !=
1466 (MaxOffset > 0))
1467 return false;
1468 MaxOffset = (uint64_t)BaseOffset + MaxOffset;
1469
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001470 return isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, MinOffset,
1471 HasBaseReg, Scale) &&
1472 isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, MaxOffset,
1473 HasBaseReg, Scale);
1474}
1475
1476static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1477 int64_t MinOffset, int64_t MaxOffset,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001478 LSRUse::KindType Kind, MemAccessTy AccessTy,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001479 const Formula &F) {
1480 // For the purpose of isAMCompletelyFolded either having a canonical formula
1481 // or a scale not equal to zero is correct.
1482 // Problems may arise from non canonical formulae having a scale == 0.
1483 // Strictly speaking it would best to just rely on canonical formulae.
1484 // However, when we generate the scaled formulae, we first check that the
1485 // scaling factor is profitable before computing the actual ScaledReg for
1486 // compile time sake.
1487 assert((F.isCanonical() || F.Scale != 0));
1488 return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy,
1489 F.BaseGV, F.BaseOffset, F.HasBaseReg, F.Scale);
1490}
1491
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001492/// Test whether we know how to expand the current formula.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001493static bool isLegalUse(const TargetTransformInfo &TTI, int64_t MinOffset,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001494 int64_t MaxOffset, LSRUse::KindType Kind,
1495 MemAccessTy AccessTy, GlobalValue *BaseGV,
1496 int64_t BaseOffset, bool HasBaseReg, int64_t Scale) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001497 // We know how to expand completely foldable formulae.
1498 return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, BaseGV,
1499 BaseOffset, HasBaseReg, Scale) ||
1500 // Or formulae that use a base register produced by a sum of base
1501 // registers.
1502 (Scale == 1 &&
1503 isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy,
1504 BaseGV, BaseOffset, true, 0));
Dan Gohman045f8192010-01-22 00:46:49 +00001505}
1506
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001507static bool isLegalUse(const TargetTransformInfo &TTI, int64_t MinOffset,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001508 int64_t MaxOffset, LSRUse::KindType Kind,
1509 MemAccessTy AccessTy, const Formula &F) {
Chandler Carruth6e479322013-01-07 15:04:40 +00001510 return isLegalUse(TTI, MinOffset, MaxOffset, Kind, AccessTy, F.BaseGV,
1511 F.BaseOffset, F.HasBaseReg, F.Scale);
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001512}
1513
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001514static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1515 const LSRUse &LU, const Formula &F) {
1516 return isAMCompletelyFolded(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind,
1517 LU.AccessTy, F.BaseGV, F.BaseOffset, F.HasBaseReg,
1518 F.Scale);
1519}
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001520
Quentin Colombetbf490d42013-05-31 21:29:03 +00001521static unsigned getScalingFactorCost(const TargetTransformInfo &TTI,
1522 const LSRUse &LU, const Formula &F) {
1523 if (!F.Scale)
1524 return 0;
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001525
1526 // If the use is not completely folded in that instruction, we will have to
1527 // pay an extra cost only for scale != 1.
1528 if (!isAMCompletelyFolded(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind,
1529 LU.AccessTy, F))
1530 return F.Scale != 1;
Quentin Colombetbf490d42013-05-31 21:29:03 +00001531
1532 switch (LU.Kind) {
1533 case LSRUse::Address: {
Quentin Colombet145eb972013-06-19 19:59:41 +00001534 // Check the scaling factor cost with both the min and max offsets.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001535 int ScaleCostMinOffset = TTI.getScalingFactorCost(
1536 LU.AccessTy.MemTy, F.BaseGV, F.BaseOffset + LU.MinOffset, F.HasBaseReg,
1537 F.Scale, LU.AccessTy.AddrSpace);
1538 int ScaleCostMaxOffset = TTI.getScalingFactorCost(
1539 LU.AccessTy.MemTy, F.BaseGV, F.BaseOffset + LU.MaxOffset, F.HasBaseReg,
1540 F.Scale, LU.AccessTy.AddrSpace);
Quentin Colombet145eb972013-06-19 19:59:41 +00001541
1542 assert(ScaleCostMinOffset >= 0 && ScaleCostMaxOffset >= 0 &&
1543 "Legal addressing mode has an illegal cost!");
1544 return std::max(ScaleCostMinOffset, ScaleCostMaxOffset);
Quentin Colombetbf490d42013-05-31 21:29:03 +00001545 }
1546 case LSRUse::ICmpZero:
Quentin Colombetbf490d42013-05-31 21:29:03 +00001547 case LSRUse::Basic:
1548 case LSRUse::Special:
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001549 // The use is completely folded, i.e., everything is folded into the
1550 // instruction.
Quentin Colombetbf490d42013-05-31 21:29:03 +00001551 return 0;
1552 }
1553
1554 llvm_unreachable("Invalid LSRUse Kind!");
1555}
1556
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001557static bool isAlwaysFoldable(const TargetTransformInfo &TTI,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001558 LSRUse::KindType Kind, MemAccessTy AccessTy,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001559 GlobalValue *BaseGV, int64_t BaseOffset,
1560 bool HasBaseReg) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001561 // Fast-path: zero is always foldable.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001562 if (BaseOffset == 0 && !BaseGV) return true;
Dan Gohman045f8192010-01-22 00:46:49 +00001563
Dan Gohman45774ce2010-02-12 10:34:29 +00001564 // Conservatively, create an address with an immediate and a
1565 // base and a scale.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001566 int64_t Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman045f8192010-01-22 00:46:49 +00001567
Dan Gohman20fab452010-05-19 23:43:12 +00001568 // Canonicalize a scale of 1 to a base register if the formula doesn't
1569 // already have a base register.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001570 if (!HasBaseReg && Scale == 1) {
1571 Scale = 0;
1572 HasBaseReg = true;
Dan Gohman20fab452010-05-19 23:43:12 +00001573 }
1574
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001575 return isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, BaseOffset,
1576 HasBaseReg, Scale);
Dan Gohman045f8192010-01-22 00:46:49 +00001577}
1578
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001579static bool isAlwaysFoldable(const TargetTransformInfo &TTI,
1580 ScalarEvolution &SE, int64_t MinOffset,
1581 int64_t MaxOffset, LSRUse::KindType Kind,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001582 MemAccessTy AccessTy, const SCEV *S,
1583 bool HasBaseReg) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001584 // Fast-path: zero is always foldable.
1585 if (S->isZero()) return true;
1586
1587 // Conservatively, create an address with an immediate and a
1588 // base and a scale.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001589 int64_t BaseOffset = ExtractImmediate(S, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +00001590 GlobalValue *BaseGV = ExtractSymbol(S, SE);
1591
1592 // If there's anything else involved, it's not foldable.
1593 if (!S->isZero()) return false;
1594
1595 // Fast-path: zero is always foldable.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001596 if (BaseOffset == 0 && !BaseGV) return true;
Dan Gohman45774ce2010-02-12 10:34:29 +00001597
1598 // Conservatively, create an address with an immediate and a
1599 // base and a scale.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001600 int64_t Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman45774ce2010-02-12 10:34:29 +00001601
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001602 return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, BaseGV,
1603 BaseOffset, HasBaseReg, Scale);
Dan Gohman045f8192010-01-22 00:46:49 +00001604}
1605
Dan Gohman297fb8b2010-06-19 21:21:39 +00001606namespace {
1607
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001608/// An individual increment in a Chain of IV increments. Relate an IV user to
1609/// an expression that computes the IV it uses from the IV used by the previous
1610/// link in the Chain.
Andrew Trick29fe5f02012-01-09 19:50:34 +00001611///
1612/// For the head of a chain, IncExpr holds the absolute SCEV expression for the
1613/// original IVOperand. The head of the chain's IVOperand is only valid during
1614/// chain collection, before LSR replaces IV users. During chain generation,
1615/// IncExpr can be used to find the new IVOperand that computes the same
1616/// expression.
1617struct IVInc {
1618 Instruction *UserInst;
1619 Value* IVOperand;
1620 const SCEV *IncExpr;
1621
1622 IVInc(Instruction *U, Value *O, const SCEV *E):
1623 UserInst(U), IVOperand(O), IncExpr(E) {}
1624};
1625
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001626// The list of IV increments in program order. We typically add the head of a
1627// chain without finding subsequent links.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001628struct IVChain {
1629 SmallVector<IVInc,1> Incs;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001630 const SCEV *ExprBase;
1631
Craig Topperf40110f2014-04-25 05:29:35 +00001632 IVChain() : ExprBase(nullptr) {}
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001633
1634 IVChain(const IVInc &Head, const SCEV *Base)
1635 : Incs(1, Head), ExprBase(Base) {}
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001636
1637 typedef SmallVectorImpl<IVInc>::const_iterator const_iterator;
1638
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001639 // Return the first increment in the chain.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001640 const_iterator begin() const {
1641 assert(!Incs.empty());
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001642 return std::next(Incs.begin());
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001643 }
1644 const_iterator end() const {
1645 return Incs.end();
1646 }
1647
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001648 // Returns true if this chain contains any increments.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001649 bool hasIncs() const { return Incs.size() >= 2; }
1650
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001651 // Add an IVInc to the end of this chain.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001652 void add(const IVInc &X) { Incs.push_back(X); }
1653
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001654 // Returns the last UserInst in the chain.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001655 Instruction *tailUserInst() const { return Incs.back().UserInst; }
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001656
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001657 // Returns true if IncExpr can be profitably added to this chain.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001658 bool isProfitableIncrement(const SCEV *OperExpr,
1659 const SCEV *IncExpr,
1660 ScalarEvolution&);
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001661};
Andrew Trick29fe5f02012-01-09 19:50:34 +00001662
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001663/// Helper for CollectChains to track multiple IV increment uses. Distinguish
1664/// between FarUsers that definitely cross IV increments and NearUsers that may
1665/// be used between IV increments.
Andrew Trick29fe5f02012-01-09 19:50:34 +00001666struct ChainUsers {
1667 SmallPtrSet<Instruction*, 4> FarUsers;
1668 SmallPtrSet<Instruction*, 4> NearUsers;
1669};
1670
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001671/// This class holds state for the main loop strength reduction logic.
Dan Gohman45774ce2010-02-12 10:34:29 +00001672class LSRInstance {
1673 IVUsers &IU;
1674 ScalarEvolution &SE;
1675 DominatorTree &DT;
Dan Gohman607e02b2010-04-09 22:07:05 +00001676 LoopInfo &LI;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001677 const TargetTransformInfo &TTI;
Dan Gohman45774ce2010-02-12 10:34:29 +00001678 Loop *const L;
1679 bool Changed;
1680
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001681 /// This is the insert position that the current loop's induction variable
1682 /// increment should be placed. In simple loops, this is the latch block's
1683 /// terminator. But in more complicated cases, this is a position which will
1684 /// dominate all the in-loop post-increment users.
Dan Gohman45774ce2010-02-12 10:34:29 +00001685 Instruction *IVIncInsertPos;
1686
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001687 /// Interesting factors between use strides.
Justin Lebar54b0be02016-11-05 16:47:25 +00001688 ///
1689 /// We explicitly use a SetVector which contains a SmallSet, instead of the
1690 /// default, a SmallDenseSet, because we need to use the full range of
1691 /// int64_ts, and there's currently no good way of doing that with
1692 /// SmallDenseSet.
1693 SetVector<int64_t, SmallVector<int64_t, 8>, SmallSet<int64_t, 8>> Factors;
Dan Gohman45774ce2010-02-12 10:34:29 +00001694
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001695 /// Interesting use types, to facilitate truncation reuse.
Chris Lattner229907c2011-07-18 04:54:35 +00001696 SmallSetVector<Type *, 4> Types;
Dan Gohman45774ce2010-02-12 10:34:29 +00001697
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001698 /// The list of interesting uses.
Dan Gohman45774ce2010-02-12 10:34:29 +00001699 SmallVector<LSRUse, 16> Uses;
1700
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001701 /// Track which uses use which register candidates.
Dan Gohman45774ce2010-02-12 10:34:29 +00001702 RegUseTracker RegUses;
1703
Andrew Trick29fe5f02012-01-09 19:50:34 +00001704 // Limit the number of chains to avoid quadratic behavior. We don't expect to
1705 // have more than a few IV increment chains in a loop. Missing a Chain falls
1706 // back to normal LSR behavior for those uses.
1707 static const unsigned MaxChains = 8;
1708
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001709 /// IV users can form a chain of IV increments.
Andrew Trick29fe5f02012-01-09 19:50:34 +00001710 SmallVector<IVChain, MaxChains> IVChainVec;
1711
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001712 /// IV users that belong to profitable IVChains.
Andrew Trick248d4102012-01-09 21:18:52 +00001713 SmallPtrSet<Use*, MaxChains> IVIncSet;
1714
Dan Gohman45774ce2010-02-12 10:34:29 +00001715 void OptimizeShadowIV();
1716 bool FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse);
1717 ICmpInst *OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse);
Dan Gohman4c4043c2010-05-20 20:05:31 +00001718 void OptimizeLoopTermCond();
Dan Gohman45774ce2010-02-12 10:34:29 +00001719
Andrew Trick29fe5f02012-01-09 19:50:34 +00001720 void ChainInstruction(Instruction *UserInst, Instruction *IVOper,
1721 SmallVectorImpl<ChainUsers> &ChainUsersVec);
Andrew Trick248d4102012-01-09 21:18:52 +00001722 void FinalizeChain(IVChain &Chain);
Andrew Trick29fe5f02012-01-09 19:50:34 +00001723 void CollectChains();
Andrew Trick248d4102012-01-09 21:18:52 +00001724 void GenerateIVChain(const IVChain &Chain, SCEVExpander &Rewriter,
1725 SmallVectorImpl<WeakVH> &DeadInsts);
Andrew Trick29fe5f02012-01-09 19:50:34 +00001726
Dan Gohman45774ce2010-02-12 10:34:29 +00001727 void CollectInterestingTypesAndFactors();
1728 void CollectFixupsAndInitialFormulae();
1729
Dan Gohman45774ce2010-02-12 10:34:29 +00001730 // Support for sharing of LSRUses between LSRFixups.
Benjamin Kramer62fb0cf2014-03-15 17:17:48 +00001731 typedef DenseMap<LSRUse::SCEVUseKindPair, size_t> UseMapTy;
Dan Gohman45774ce2010-02-12 10:34:29 +00001732 UseMapTy UseMap;
1733
Dan Gohman110ed642010-09-01 01:45:53 +00001734 bool reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001735 LSRUse::KindType Kind, MemAccessTy AccessTy);
Dan Gohman45774ce2010-02-12 10:34:29 +00001736
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001737 std::pair<size_t, int64_t> getUse(const SCEV *&Expr, LSRUse::KindType Kind,
1738 MemAccessTy AccessTy);
Dan Gohman45774ce2010-02-12 10:34:29 +00001739
Dan Gohmana7b68d62010-10-07 23:33:43 +00001740 void DeleteUse(LSRUse &LU, size_t LUIdx);
Dan Gohman80a96082010-05-20 15:17:54 +00001741
Dan Gohman110ed642010-09-01 01:45:53 +00001742 LSRUse *FindUseWithSimilarFormula(const Formula &F, const LSRUse &OrigLU);
Dan Gohman20fab452010-05-19 23:43:12 +00001743
Dan Gohman8c16b382010-02-22 04:11:59 +00001744 void InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00001745 void InsertSupplementalFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
1746 void CountRegisters(const Formula &F, size_t LUIdx);
1747 bool InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F);
1748
1749 void CollectLoopInvariantFixupsAndFormulae();
1750
1751 void GenerateReassociations(LSRUse &LU, unsigned LUIdx, Formula Base,
1752 unsigned Depth = 0);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001753
1754 void GenerateReassociationsImpl(LSRUse &LU, unsigned LUIdx,
1755 const Formula &Base, unsigned Depth,
1756 size_t Idx, bool IsScaledReg = false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001757 void GenerateCombinations(LSRUse &LU, unsigned LUIdx, Formula Base);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001758 void GenerateSymbolicOffsetsImpl(LSRUse &LU, unsigned LUIdx,
1759 const Formula &Base, size_t Idx,
1760 bool IsScaledReg = false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001761 void GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001762 void GenerateConstantOffsetsImpl(LSRUse &LU, unsigned LUIdx,
1763 const Formula &Base,
1764 const SmallVectorImpl<int64_t> &Worklist,
1765 size_t Idx, bool IsScaledReg = false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001766 void GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1767 void GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1768 void GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1769 void GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base);
1770 void GenerateCrossUseConstantOffsets();
1771 void GenerateAllReuseFormulae();
1772
1773 void FilterOutUndesirableDedicatedRegisters();
Dan Gohmana4eca052010-05-18 22:51:59 +00001774
1775 size_t EstimateSearchSpaceComplexity() const;
Dan Gohmane9e08732010-08-29 16:09:42 +00001776 void NarrowSearchSpaceByDetectingSupersets();
1777 void NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman002ff892010-08-29 16:39:22 +00001778 void NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Dan Gohmane9e08732010-08-29 16:09:42 +00001779 void NarrowSearchSpaceByPickingWinnerRegs();
Dan Gohman45774ce2010-02-12 10:34:29 +00001780 void NarrowSearchSpaceUsingHeuristics();
1781
1782 void SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
1783 Cost &SolutionCost,
1784 SmallVectorImpl<const Formula *> &Workspace,
1785 const Cost &CurCost,
1786 const SmallPtrSet<const SCEV *, 16> &CurRegs,
1787 DenseSet<const SCEV *> &VisitedRegs) const;
1788 void Solve(SmallVectorImpl<const Formula *> &Solution) const;
1789
Dan Gohman607e02b2010-04-09 22:07:05 +00001790 BasicBlock::iterator
1791 HoistInsertPosition(BasicBlock::iterator IP,
1792 const SmallVectorImpl<Instruction *> &Inputs) const;
Andrew Trickc908b432012-01-20 07:41:13 +00001793 BasicBlock::iterator
1794 AdjustInsertPositionForExpand(BasicBlock::iterator IP,
1795 const LSRFixup &LF,
1796 const LSRUse &LU,
1797 SCEVExpander &Rewriter) const;
Dan Gohmand2df6432010-04-09 02:00:38 +00001798
Jonas Paulsson7a794222016-08-17 13:24:19 +00001799 Value *Expand(const LSRUse &LU, const LSRFixup &LF,
Dan Gohman45774ce2010-02-12 10:34:29 +00001800 const Formula &F,
Dan Gohman8c16b382010-02-22 04:11:59 +00001801 BasicBlock::iterator IP,
Dan Gohman45774ce2010-02-12 10:34:29 +00001802 SCEVExpander &Rewriter,
Dan Gohman8c16b382010-02-22 04:11:59 +00001803 SmallVectorImpl<WeakVH> &DeadInsts) const;
Jonas Paulsson7a794222016-08-17 13:24:19 +00001804 void RewriteForPHI(PHINode *PN, const LSRUse &LU, const LSRFixup &LF,
Dan Gohman6deab962010-02-16 20:25:07 +00001805 const Formula &F,
Dan Gohman6deab962010-02-16 20:25:07 +00001806 SCEVExpander &Rewriter,
Justin Bogner843fb202015-12-15 19:40:57 +00001807 SmallVectorImpl<WeakVH> &DeadInsts) const;
Jonas Paulsson7a794222016-08-17 13:24:19 +00001808 void Rewrite(const LSRUse &LU, const LSRFixup &LF,
Dan Gohman45774ce2010-02-12 10:34:29 +00001809 const Formula &F,
Dan Gohman45774ce2010-02-12 10:34:29 +00001810 SCEVExpander &Rewriter,
Justin Bogner843fb202015-12-15 19:40:57 +00001811 SmallVectorImpl<WeakVH> &DeadInsts) const;
1812 void ImplementSolution(const SmallVectorImpl<const Formula *> &Solution);
Dan Gohman45774ce2010-02-12 10:34:29 +00001813
Andrew Trickdc18e382011-12-13 00:55:33 +00001814public:
Justin Bogner843fb202015-12-15 19:40:57 +00001815 LSRInstance(Loop *L, IVUsers &IU, ScalarEvolution &SE, DominatorTree &DT,
1816 LoopInfo &LI, const TargetTransformInfo &TTI);
Dan Gohman45774ce2010-02-12 10:34:29 +00001817
1818 bool getChanged() const { return Changed; }
1819
1820 void print_factors_and_types(raw_ostream &OS) const;
1821 void print_fixups(raw_ostream &OS) const;
1822 void print_uses(raw_ostream &OS) const;
1823 void print(raw_ostream &OS) const;
1824 void dump() const;
1825};
1826
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00001827} // end anonymous namespace
Dan Gohman45774ce2010-02-12 10:34:29 +00001828
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001829/// If IV is used in a int-to-float cast inside the loop then try to eliminate
1830/// the cast operation.
Dan Gohman45774ce2010-02-12 10:34:29 +00001831void LSRInstance::OptimizeShadowIV() {
1832 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
1833 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1834 return;
1835
1836 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end();
1837 UI != E; /* empty */) {
1838 IVUsers::const_iterator CandidateUI = UI;
1839 ++UI;
1840 Instruction *ShadowUse = CandidateUI->getUser();
Craig Topperf40110f2014-04-25 05:29:35 +00001841 Type *DestTy = nullptr;
Andrew Trick858e9f02011-07-21 01:05:01 +00001842 bool IsSigned = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00001843
1844 /* If shadow use is a int->float cast then insert a second IV
1845 to eliminate this cast.
1846
1847 for (unsigned i = 0; i < n; ++i)
1848 foo((double)i);
1849
1850 is transformed into
1851
1852 double d = 0.0;
1853 for (unsigned i = 0; i < n; ++i, ++d)
1854 foo(d);
1855 */
Andrew Trick858e9f02011-07-21 01:05:01 +00001856 if (UIToFPInst *UCast = dyn_cast<UIToFPInst>(CandidateUI->getUser())) {
1857 IsSigned = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00001858 DestTy = UCast->getDestTy();
Andrew Trick858e9f02011-07-21 01:05:01 +00001859 }
1860 else if (SIToFPInst *SCast = dyn_cast<SIToFPInst>(CandidateUI->getUser())) {
1861 IsSigned = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00001862 DestTy = SCast->getDestTy();
Andrew Trick858e9f02011-07-21 01:05:01 +00001863 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001864 if (!DestTy) continue;
1865
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001866 // If target does not support DestTy natively then do not apply
1867 // this transformation.
1868 if (!TTI.isTypeLegal(DestTy)) continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00001869
1870 PHINode *PH = dyn_cast<PHINode>(ShadowUse->getOperand(0));
1871 if (!PH) continue;
1872 if (PH->getNumIncomingValues() != 2) continue;
1873
Chris Lattner229907c2011-07-18 04:54:35 +00001874 Type *SrcTy = PH->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00001875 int Mantissa = DestTy->getFPMantissaWidth();
1876 if (Mantissa == -1) continue;
1877 if ((int)SE.getTypeSizeInBits(SrcTy) > Mantissa)
1878 continue;
1879
1880 unsigned Entry, Latch;
1881 if (PH->getIncomingBlock(0) == L->getLoopPreheader()) {
1882 Entry = 0;
1883 Latch = 1;
Dan Gohman045f8192010-01-22 00:46:49 +00001884 } else {
Dan Gohman45774ce2010-02-12 10:34:29 +00001885 Entry = 1;
1886 Latch = 0;
Dan Gohman045f8192010-01-22 00:46:49 +00001887 }
Dan Gohman045f8192010-01-22 00:46:49 +00001888
Dan Gohman45774ce2010-02-12 10:34:29 +00001889 ConstantInt *Init = dyn_cast<ConstantInt>(PH->getIncomingValue(Entry));
1890 if (!Init) continue;
Andrew Trick858e9f02011-07-21 01:05:01 +00001891 Constant *NewInit = ConstantFP::get(DestTy, IsSigned ?
Andrew Trickbd243d02011-07-21 01:45:54 +00001892 (double)Init->getSExtValue() :
1893 (double)Init->getZExtValue());
Dan Gohman045f8192010-01-22 00:46:49 +00001894
Dan Gohman45774ce2010-02-12 10:34:29 +00001895 BinaryOperator *Incr =
1896 dyn_cast<BinaryOperator>(PH->getIncomingValue(Latch));
1897 if (!Incr) continue;
1898 if (Incr->getOpcode() != Instruction::Add
1899 && Incr->getOpcode() != Instruction::Sub)
Dan Gohman045f8192010-01-22 00:46:49 +00001900 continue;
Dan Gohman045f8192010-01-22 00:46:49 +00001901
Dan Gohman45774ce2010-02-12 10:34:29 +00001902 /* Initialize new IV, double d = 0.0 in above example. */
Craig Topperf40110f2014-04-25 05:29:35 +00001903 ConstantInt *C = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +00001904 if (Incr->getOperand(0) == PH)
1905 C = dyn_cast<ConstantInt>(Incr->getOperand(1));
1906 else if (Incr->getOperand(1) == PH)
1907 C = dyn_cast<ConstantInt>(Incr->getOperand(0));
Dan Gohman045f8192010-01-22 00:46:49 +00001908 else
Dan Gohman045f8192010-01-22 00:46:49 +00001909 continue;
1910
Dan Gohman45774ce2010-02-12 10:34:29 +00001911 if (!C) continue;
Dan Gohman045f8192010-01-22 00:46:49 +00001912
Dan Gohman45774ce2010-02-12 10:34:29 +00001913 // Ignore negative constants, as the code below doesn't handle them
1914 // correctly. TODO: Remove this restriction.
1915 if (!C->getValue().isStrictlyPositive()) continue;
Dan Gohman045f8192010-01-22 00:46:49 +00001916
Dan Gohman45774ce2010-02-12 10:34:29 +00001917 /* Add new PHINode. */
Jay Foad52131342011-03-30 11:28:46 +00001918 PHINode *NewPH = PHINode::Create(DestTy, 2, "IV.S.", PH);
Dan Gohman045f8192010-01-22 00:46:49 +00001919
Dan Gohman45774ce2010-02-12 10:34:29 +00001920 /* create new increment. '++d' in above example. */
1921 Constant *CFP = ConstantFP::get(DestTy, C->getZExtValue());
1922 BinaryOperator *NewIncr =
1923 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
1924 Instruction::FAdd : Instruction::FSub,
1925 NewPH, CFP, "IV.S.next.", Incr);
Dan Gohman045f8192010-01-22 00:46:49 +00001926
Dan Gohman45774ce2010-02-12 10:34:29 +00001927 NewPH->addIncoming(NewInit, PH->getIncomingBlock(Entry));
1928 NewPH->addIncoming(NewIncr, PH->getIncomingBlock(Latch));
Dan Gohman045f8192010-01-22 00:46:49 +00001929
Dan Gohman45774ce2010-02-12 10:34:29 +00001930 /* Remove cast operation */
1931 ShadowUse->replaceAllUsesWith(NewPH);
1932 ShadowUse->eraseFromParent();
Dan Gohman4c4043c2010-05-20 20:05:31 +00001933 Changed = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00001934 break;
Dan Gohman045f8192010-01-22 00:46:49 +00001935 }
1936}
1937
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001938/// If Cond has an operand that is an expression of an IV, set the IV user and
1939/// stride information and return true, otherwise return false.
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00001940bool LSRInstance::FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse) {
Craig Topper042a3922015-05-25 20:01:18 +00001941 for (IVStrideUse &U : IU)
1942 if (U.getUser() == Cond) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001943 // NOTE: we could handle setcc instructions with multiple uses here, but
1944 // InstCombine does it as well for simple uses, it's not clear that it
1945 // occurs enough in real life to handle.
Craig Topper042a3922015-05-25 20:01:18 +00001946 CondUse = &U;
Dan Gohman45774ce2010-02-12 10:34:29 +00001947 return true;
1948 }
Dan Gohman045f8192010-01-22 00:46:49 +00001949 return false;
Evan Cheng133694d2007-10-25 09:11:16 +00001950}
1951
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001952/// Rewrite the loop's terminating condition if it uses a max computation.
Dan Gohman045f8192010-01-22 00:46:49 +00001953///
1954/// This is a narrow solution to a specific, but acute, problem. For loops
1955/// like this:
1956///
1957/// i = 0;
1958/// do {
1959/// p[i] = 0.0;
1960/// } while (++i < n);
1961///
1962/// the trip count isn't just 'n', because 'n' might not be positive. And
1963/// unfortunately this can come up even for loops where the user didn't use
1964/// a C do-while loop. For example, seemingly well-behaved top-test loops
1965/// will commonly be lowered like this:
1966//
1967/// if (n > 0) {
1968/// i = 0;
1969/// do {
1970/// p[i] = 0.0;
1971/// } while (++i < n);
1972/// }
1973///
1974/// and then it's possible for subsequent optimization to obscure the if
1975/// test in such a way that indvars can't find it.
1976///
1977/// When indvars can't find the if test in loops like this, it creates a
1978/// max expression, which allows it to give the loop a canonical
1979/// induction variable:
1980///
1981/// i = 0;
1982/// max = n < 1 ? 1 : n;
1983/// do {
1984/// p[i] = 0.0;
1985/// } while (++i != max);
1986///
1987/// Canonical induction variables are necessary because the loop passes
1988/// are designed around them. The most obvious example of this is the
1989/// LoopInfo analysis, which doesn't remember trip count values. It
1990/// expects to be able to rediscover the trip count each time it is
Dan Gohman45774ce2010-02-12 10:34:29 +00001991/// needed, and it does this using a simple analysis that only succeeds if
Dan Gohman045f8192010-01-22 00:46:49 +00001992/// the loop has a canonical induction variable.
1993///
1994/// However, when it comes time to generate code, the maximum operation
1995/// can be quite costly, especially if it's inside of an outer loop.
1996///
1997/// This function solves this problem by detecting this type of loop and
1998/// rewriting their conditions from ICMP_NE back to ICMP_SLT, and deleting
1999/// the instructions for the maximum computation.
2000///
Dan Gohman45774ce2010-02-12 10:34:29 +00002001ICmpInst *LSRInstance::OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse) {
Dan Gohman045f8192010-01-22 00:46:49 +00002002 // Check that the loop matches the pattern we're looking for.
2003 if (Cond->getPredicate() != CmpInst::ICMP_EQ &&
2004 Cond->getPredicate() != CmpInst::ICMP_NE)
2005 return Cond;
Dan Gohman51ad99d2010-01-21 02:09:26 +00002006
Dan Gohman045f8192010-01-22 00:46:49 +00002007 SelectInst *Sel = dyn_cast<SelectInst>(Cond->getOperand(1));
2008 if (!Sel || !Sel->hasOneUse()) return Cond;
Dan Gohman51ad99d2010-01-21 02:09:26 +00002009
Dan Gohman45774ce2010-02-12 10:34:29 +00002010 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
Dan Gohman045f8192010-01-22 00:46:49 +00002011 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
2012 return Cond;
Dan Gohman1d2ded72010-05-03 22:09:21 +00002013 const SCEV *One = SE.getConstant(BackedgeTakenCount->getType(), 1);
Dan Gohman51ad99d2010-01-21 02:09:26 +00002014
Dan Gohman045f8192010-01-22 00:46:49 +00002015 // Add one to the backedge-taken count to get the trip count.
Dan Gohman9b7632d2010-08-16 15:39:27 +00002016 const SCEV *IterationCount = SE.getAddExpr(One, BackedgeTakenCount);
Dan Gohman534ba372010-04-24 03:13:44 +00002017 if (IterationCount != SE.getSCEV(Sel)) return Cond;
Dan Gohman045f8192010-01-22 00:46:49 +00002018
Dan Gohman534ba372010-04-24 03:13:44 +00002019 // Check for a max calculation that matches the pattern. There's no check
2020 // for ICMP_ULE here because the comparison would be with zero, which
2021 // isn't interesting.
2022 CmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE;
Craig Topperf40110f2014-04-25 05:29:35 +00002023 const SCEVNAryExpr *Max = nullptr;
Dan Gohman534ba372010-04-24 03:13:44 +00002024 if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(BackedgeTakenCount)) {
2025 Pred = ICmpInst::ICMP_SLE;
2026 Max = S;
2027 } else if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(IterationCount)) {
2028 Pred = ICmpInst::ICMP_SLT;
2029 Max = S;
2030 } else if (const SCEVUMaxExpr *U = dyn_cast<SCEVUMaxExpr>(IterationCount)) {
2031 Pred = ICmpInst::ICMP_ULT;
2032 Max = U;
2033 } else {
2034 // No match; bail.
Dan Gohman045f8192010-01-22 00:46:49 +00002035 return Cond;
Dan Gohman534ba372010-04-24 03:13:44 +00002036 }
Dan Gohman045f8192010-01-22 00:46:49 +00002037
2038 // To handle a max with more than two operands, this optimization would
2039 // require additional checking and setup.
2040 if (Max->getNumOperands() != 2)
2041 return Cond;
2042
2043 const SCEV *MaxLHS = Max->getOperand(0);
2044 const SCEV *MaxRHS = Max->getOperand(1);
Dan Gohman534ba372010-04-24 03:13:44 +00002045
2046 // ScalarEvolution canonicalizes constants to the left. For < and >, look
2047 // for a comparison with 1. For <= and >=, a comparison with zero.
2048 if (!MaxLHS ||
2049 (ICmpInst::isTrueWhenEqual(Pred) ? !MaxLHS->isZero() : (MaxLHS != One)))
2050 return Cond;
2051
Dan Gohman045f8192010-01-22 00:46:49 +00002052 // Check the relevant induction variable for conformance to
2053 // the pattern.
Dan Gohman45774ce2010-02-12 10:34:29 +00002054 const SCEV *IV = SE.getSCEV(Cond->getOperand(0));
Dan Gohman045f8192010-01-22 00:46:49 +00002055 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(IV);
2056 if (!AR || !AR->isAffine() ||
2057 AR->getStart() != One ||
Dan Gohman45774ce2010-02-12 10:34:29 +00002058 AR->getStepRecurrence(SE) != One)
Dan Gohman045f8192010-01-22 00:46:49 +00002059 return Cond;
2060
2061 assert(AR->getLoop() == L &&
2062 "Loop condition operand is an addrec in a different loop!");
2063
2064 // Check the right operand of the select, and remember it, as it will
2065 // be used in the new comparison instruction.
Craig Topperf40110f2014-04-25 05:29:35 +00002066 Value *NewRHS = nullptr;
Dan Gohman534ba372010-04-24 03:13:44 +00002067 if (ICmpInst::isTrueWhenEqual(Pred)) {
2068 // Look for n+1, and grab n.
2069 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(1)))
Jakub Staszakf6df1e32013-03-24 09:25:47 +00002070 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1)))
2071 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS)
2072 NewRHS = BO->getOperand(0);
Dan Gohman534ba372010-04-24 03:13:44 +00002073 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(2)))
Jakub Staszakf6df1e32013-03-24 09:25:47 +00002074 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1)))
2075 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS)
2076 NewRHS = BO->getOperand(0);
Dan Gohman534ba372010-04-24 03:13:44 +00002077 if (!NewRHS)
2078 return Cond;
2079 } else if (SE.getSCEV(Sel->getOperand(1)) == MaxRHS)
Dan Gohman045f8192010-01-22 00:46:49 +00002080 NewRHS = Sel->getOperand(1);
Dan Gohman45774ce2010-02-12 10:34:29 +00002081 else if (SE.getSCEV(Sel->getOperand(2)) == MaxRHS)
Dan Gohman045f8192010-01-22 00:46:49 +00002082 NewRHS = Sel->getOperand(2);
Dan Gohman1081f1a2010-06-22 23:07:13 +00002083 else if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(MaxRHS))
2084 NewRHS = SU->getValue();
Dan Gohman534ba372010-04-24 03:13:44 +00002085 else
Dan Gohman1081f1a2010-06-22 23:07:13 +00002086 // Max doesn't match expected pattern.
2087 return Cond;
Dan Gohman045f8192010-01-22 00:46:49 +00002088
2089 // Determine the new comparison opcode. It may be signed or unsigned,
2090 // and the original comparison may be either equality or inequality.
Dan Gohman045f8192010-01-22 00:46:49 +00002091 if (Cond->getPredicate() == CmpInst::ICMP_EQ)
2092 Pred = CmpInst::getInversePredicate(Pred);
2093
2094 // Ok, everything looks ok to change the condition into an SLT or SGE and
2095 // delete the max calculation.
2096 ICmpInst *NewCond =
2097 new ICmpInst(Cond, Pred, Cond->getOperand(0), NewRHS, "scmp");
2098
2099 // Delete the max calculation instructions.
2100 Cond->replaceAllUsesWith(NewCond);
2101 CondUse->setUser(NewCond);
2102 Instruction *Cmp = cast<Instruction>(Sel->getOperand(0));
2103 Cond->eraseFromParent();
2104 Sel->eraseFromParent();
2105 if (Cmp->use_empty())
2106 Cmp->eraseFromParent();
2107 return NewCond;
Dan Gohman68e77352008-09-15 21:22:06 +00002108}
2109
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002110/// Change loop terminating condition to use the postinc iv when possible.
Dan Gohman4c4043c2010-05-20 20:05:31 +00002111void
Dan Gohman45774ce2010-02-12 10:34:29 +00002112LSRInstance::OptimizeLoopTermCond() {
2113 SmallPtrSet<Instruction *, 4> PostIncs;
2114
James Molloy196ad082016-08-15 07:53:03 +00002115 // We need a different set of heuristics for rotated and non-rotated loops.
2116 // If a loop is rotated then the latch is also the backedge, so inserting
2117 // post-inc expressions just before the latch is ideal. To reduce live ranges
2118 // it also makes sense to rewrite terminating conditions to use post-inc
2119 // expressions.
2120 //
2121 // If the loop is not rotated then the latch is not a backedge; the latch
2122 // check is done in the loop head. Adding post-inc expressions before the
2123 // latch will cause overlapping live-ranges of pre-inc and post-inc expressions
2124 // in the loop body. In this case we do *not* want to use post-inc expressions
2125 // in the latch check, and we want to insert post-inc expressions before
2126 // the backedge.
Evan Cheng85a9f432009-11-12 07:35:05 +00002127 BasicBlock *LatchBlock = L->getLoopLatch();
Evan Chengba4e5da72009-11-17 18:10:11 +00002128 SmallVector<BasicBlock*, 8> ExitingBlocks;
2129 L->getExitingBlocks(ExitingBlocks);
James Molloy196ad082016-08-15 07:53:03 +00002130 if (llvm::all_of(ExitingBlocks, [&LatchBlock](const BasicBlock *BB) {
2131 return LatchBlock != BB;
2132 })) {
2133 // The backedge doesn't exit the loop; treat this as a head-tested loop.
2134 IVIncInsertPos = LatchBlock->getTerminator();
2135 return;
2136 }
Jim Grosbach60f48542009-11-17 17:53:56 +00002137
James Molloy196ad082016-08-15 07:53:03 +00002138 // Otherwise treat this as a rotated loop.
Craig Topper042a3922015-05-25 20:01:18 +00002139 for (BasicBlock *ExitingBlock : ExitingBlocks) {
Evan Cheng85a9f432009-11-12 07:35:05 +00002140
Dan Gohman45774ce2010-02-12 10:34:29 +00002141 // Get the terminating condition for the loop if possible. If we
Evan Chengba4e5da72009-11-17 18:10:11 +00002142 // can, we want to change it to use a post-incremented version of its
2143 // induction variable, to allow coalescing the live ranges for the IV into
2144 // one register value.
Evan Cheng85a9f432009-11-12 07:35:05 +00002145
Evan Chengba4e5da72009-11-17 18:10:11 +00002146 BranchInst *TermBr = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
2147 if (!TermBr)
2148 continue;
2149 // FIXME: Overly conservative, termination condition could be an 'or' etc..
2150 if (TermBr->isUnconditional() || !isa<ICmpInst>(TermBr->getCondition()))
2151 continue;
Evan Cheng85a9f432009-11-12 07:35:05 +00002152
Evan Chengba4e5da72009-11-17 18:10:11 +00002153 // Search IVUsesByStride to find Cond's IVUse if there is one.
Craig Topperf40110f2014-04-25 05:29:35 +00002154 IVStrideUse *CondUse = nullptr;
Evan Chengba4e5da72009-11-17 18:10:11 +00002155 ICmpInst *Cond = cast<ICmpInst>(TermBr->getCondition());
Dan Gohman45774ce2010-02-12 10:34:29 +00002156 if (!FindIVUserForCond(Cond, CondUse))
Evan Chengba4e5da72009-11-17 18:10:11 +00002157 continue;
2158
Evan Chengba4e5da72009-11-17 18:10:11 +00002159 // If the trip count is computed in terms of a max (due to ScalarEvolution
2160 // being unable to find a sufficient guard, for example), change the loop
2161 // comparison to use SLT or ULT instead of NE.
Dan Gohman45774ce2010-02-12 10:34:29 +00002162 // One consequence of doing this now is that it disrupts the count-down
2163 // optimization. That's not always a bad thing though, because in such
2164 // cases it may still be worthwhile to avoid a max.
2165 Cond = OptimizeMax(Cond, CondUse);
Evan Chengba4e5da72009-11-17 18:10:11 +00002166
Dan Gohman45774ce2010-02-12 10:34:29 +00002167 // If this exiting block dominates the latch block, it may also use
2168 // the post-inc value if it won't be shared with other uses.
2169 // Check for dominance.
2170 if (!DT.dominates(ExitingBlock, LatchBlock))
Dan Gohman045f8192010-01-22 00:46:49 +00002171 continue;
Evan Chengba4e5da72009-11-17 18:10:11 +00002172
Dan Gohman45774ce2010-02-12 10:34:29 +00002173 // Conservatively avoid trying to use the post-inc value in non-latch
2174 // exits if there may be pre-inc users in intervening blocks.
Dan Gohman2d0f96d2010-02-14 03:21:49 +00002175 if (LatchBlock != ExitingBlock)
Dan Gohman45774ce2010-02-12 10:34:29 +00002176 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
2177 // Test if the use is reachable from the exiting block. This dominator
2178 // query is a conservative approximation of reachability.
2179 if (&*UI != CondUse &&
2180 !DT.properlyDominates(UI->getUser()->getParent(), ExitingBlock)) {
2181 // Conservatively assume there may be reuse if the quotient of their
2182 // strides could be a legal scale.
Dan Gohmane637ff52010-04-19 21:48:58 +00002183 const SCEV *A = IU.getStride(*CondUse, L);
2184 const SCEV *B = IU.getStride(*UI, L);
Dan Gohmand006ab92010-04-07 22:27:08 +00002185 if (!A || !B) continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00002186 if (SE.getTypeSizeInBits(A->getType()) !=
2187 SE.getTypeSizeInBits(B->getType())) {
2188 if (SE.getTypeSizeInBits(A->getType()) >
2189 SE.getTypeSizeInBits(B->getType()))
2190 B = SE.getSignExtendExpr(B, A->getType());
2191 else
2192 A = SE.getSignExtendExpr(A, B->getType());
2193 }
2194 if (const SCEVConstant *D =
Dan Gohman4eebb942010-02-19 19:35:48 +00002195 dyn_cast_or_null<SCEVConstant>(getExactSDiv(B, A, SE))) {
Dan Gohman86110fa2010-05-20 22:25:20 +00002196 const ConstantInt *C = D->getValue();
Dan Gohman45774ce2010-02-12 10:34:29 +00002197 // Stride of one or negative one can have reuse with non-addresses.
Dan Gohman86110fa2010-05-20 22:25:20 +00002198 if (C->isOne() || C->isAllOnesValue())
Dan Gohman45774ce2010-02-12 10:34:29 +00002199 goto decline_post_inc;
2200 // Avoid weird situations.
Dan Gohman86110fa2010-05-20 22:25:20 +00002201 if (C->getValue().getMinSignedBits() >= 64 ||
2202 C->getValue().isMinSignedValue())
Dan Gohman45774ce2010-02-12 10:34:29 +00002203 goto decline_post_inc;
2204 // Check for possible scaled-address reuse.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002205 MemAccessTy AccessTy = getAccessType(UI->getUser());
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002206 int64_t Scale = C->getSExtValue();
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002207 if (TTI.isLegalAddressingMode(AccessTy.MemTy, /*BaseGV=*/nullptr,
2208 /*BaseOffset=*/0,
2209 /*HasBaseReg=*/false, Scale,
2210 AccessTy.AddrSpace))
Dan Gohman45774ce2010-02-12 10:34:29 +00002211 goto decline_post_inc;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002212 Scale = -Scale;
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002213 if (TTI.isLegalAddressingMode(AccessTy.MemTy, /*BaseGV=*/nullptr,
2214 /*BaseOffset=*/0,
2215 /*HasBaseReg=*/false, Scale,
2216 AccessTy.AddrSpace))
Dan Gohman45774ce2010-02-12 10:34:29 +00002217 goto decline_post_inc;
2218 }
2219 }
2220
David Greene2330f782009-12-23 22:58:38 +00002221 DEBUG(dbgs() << " Change loop exiting icmp to use postinc iv: "
Dan Gohman45774ce2010-02-12 10:34:29 +00002222 << *Cond << '\n');
Evan Chengba4e5da72009-11-17 18:10:11 +00002223
2224 // It's possible for the setcc instruction to be anywhere in the loop, and
2225 // possible for it to have multiple users. If it is not immediately before
2226 // the exiting block branch, move it.
Dan Gohman45774ce2010-02-12 10:34:29 +00002227 if (&*++BasicBlock::iterator(Cond) != TermBr) {
2228 if (Cond->hasOneUse()) {
Evan Chengba4e5da72009-11-17 18:10:11 +00002229 Cond->moveBefore(TermBr);
2230 } else {
Dan Gohman45774ce2010-02-12 10:34:29 +00002231 // Clone the terminating condition and insert into the loopend.
2232 ICmpInst *OldCond = Cond;
Evan Chengba4e5da72009-11-17 18:10:11 +00002233 Cond = cast<ICmpInst>(Cond->clone());
2234 Cond->setName(L->getHeader()->getName() + ".termcond");
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00002235 ExitingBlock->getInstList().insert(TermBr->getIterator(), Cond);
Evan Chengba4e5da72009-11-17 18:10:11 +00002236
2237 // Clone the IVUse, as the old use still exists!
Andrew Trickfc4ccb22011-06-21 15:43:52 +00002238 CondUse = &IU.AddUser(Cond, CondUse->getOperandValToReplace());
Dan Gohman45774ce2010-02-12 10:34:29 +00002239 TermBr->replaceUsesOfWith(OldCond, Cond);
Evan Chengba4e5da72009-11-17 18:10:11 +00002240 }
Evan Cheng85a9f432009-11-12 07:35:05 +00002241 }
2242
Evan Chengba4e5da72009-11-17 18:10:11 +00002243 // If we get to here, we know that we can transform the setcc instruction to
2244 // use the post-incremented version of the IV, allowing us to coalesce the
2245 // live ranges for the IV correctly.
Dan Gohmand006ab92010-04-07 22:27:08 +00002246 CondUse->transformToPostInc(L);
Evan Chengba4e5da72009-11-17 18:10:11 +00002247 Changed = true;
2248
Dan Gohman45774ce2010-02-12 10:34:29 +00002249 PostIncs.insert(Cond);
2250 decline_post_inc:;
Dan Gohman51ad99d2010-01-21 02:09:26 +00002251 }
Dan Gohman45774ce2010-02-12 10:34:29 +00002252
2253 // Determine an insertion point for the loop induction variable increment. It
2254 // must dominate all the post-inc comparisons we just set up, and it must
2255 // dominate the loop latch edge.
2256 IVIncInsertPos = L->getLoopLatch()->getTerminator();
Craig Topper46276792014-08-24 23:23:06 +00002257 for (Instruction *Inst : PostIncs) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002258 BasicBlock *BB =
2259 DT.findNearestCommonDominator(IVIncInsertPos->getParent(),
Craig Topper46276792014-08-24 23:23:06 +00002260 Inst->getParent());
2261 if (BB == Inst->getParent())
2262 IVIncInsertPos = Inst;
Dan Gohman45774ce2010-02-12 10:34:29 +00002263 else if (BB != IVIncInsertPos->getParent())
2264 IVIncInsertPos = BB->getTerminator();
2265 }
Dan Gohman51ad99d2010-01-21 02:09:26 +00002266}
2267
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002268/// Determine if the given use can accommodate a fixup at the given offset and
2269/// other details. If so, update the use and return true.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002270bool LSRInstance::reconcileNewOffset(LSRUse &LU, int64_t NewOffset,
2271 bool HasBaseReg, LSRUse::KindType Kind,
2272 MemAccessTy AccessTy) {
Dan Gohman110ed642010-09-01 01:45:53 +00002273 int64_t NewMinOffset = LU.MinOffset;
2274 int64_t NewMaxOffset = LU.MaxOffset;
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002275 MemAccessTy NewAccessTy = AccessTy;
Dan Gohman045f8192010-01-22 00:46:49 +00002276
Dan Gohman45774ce2010-02-12 10:34:29 +00002277 // Check for a mismatched kind. It's tempting to collapse mismatched kinds to
2278 // something conservative, however this can pessimize in the case that one of
2279 // the uses will have all its uses outside the loop, for example.
2280 if (LU.Kind != Kind)
Dan Gohman045f8192010-01-22 00:46:49 +00002281 return false;
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00002282
Dan Gohman45774ce2010-02-12 10:34:29 +00002283 // Check for a mismatched access type, and fall back conservatively as needed.
Dan Gohman32655902010-06-19 21:30:18 +00002284 // TODO: Be less conservative when the type is similar and can use the same
2285 // addressing modes.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002286 if (Kind == LSRUse::Address) {
2287 if (AccessTy != LU.AccessTy)
2288 NewAccessTy = MemAccessTy::getUnknown(AccessTy.MemTy->getContext());
2289 }
Dan Gohman51ad99d2010-01-21 02:09:26 +00002290
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00002291 // Conservatively assume HasBaseReg is true for now.
2292 if (NewOffset < LU.MinOffset) {
2293 if (!isAlwaysFoldable(TTI, Kind, NewAccessTy, /*BaseGV=*/nullptr,
2294 LU.MaxOffset - NewOffset, HasBaseReg))
2295 return false;
2296 NewMinOffset = NewOffset;
2297 } else if (NewOffset > LU.MaxOffset) {
2298 if (!isAlwaysFoldable(TTI, Kind, NewAccessTy, /*BaseGV=*/nullptr,
2299 NewOffset - LU.MinOffset, HasBaseReg))
2300 return false;
2301 NewMaxOffset = NewOffset;
2302 }
2303
Dan Gohman45774ce2010-02-12 10:34:29 +00002304 // Update the use.
Dan Gohman110ed642010-09-01 01:45:53 +00002305 LU.MinOffset = NewMinOffset;
2306 LU.MaxOffset = NewMaxOffset;
2307 LU.AccessTy = NewAccessTy;
Dan Gohman29916e02010-01-21 22:42:49 +00002308 return true;
2309}
2310
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002311/// Return an LSRUse index and an offset value for a fixup which needs the given
2312/// expression, with the given kind and optional access type. Either reuse an
2313/// existing use or create a new one, as needed.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002314std::pair<size_t, int64_t> LSRInstance::getUse(const SCEV *&Expr,
2315 LSRUse::KindType Kind,
2316 MemAccessTy AccessTy) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002317 const SCEV *Copy = Expr;
2318 int64_t Offset = ExtractImmediate(Expr, SE);
Evan Cheng85a9f432009-11-12 07:35:05 +00002319
Dan Gohman45774ce2010-02-12 10:34:29 +00002320 // Basic uses can't accept any offset, for example.
Craig Topperf40110f2014-04-25 05:29:35 +00002321 if (!isAlwaysFoldable(TTI, Kind, AccessTy, /*BaseGV=*/ nullptr,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002322 Offset, /*HasBaseReg=*/ true)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002323 Expr = Copy;
2324 Offset = 0;
2325 }
2326
2327 std::pair<UseMapTy::iterator, bool> P =
Benjamin Kramer62fb0cf2014-03-15 17:17:48 +00002328 UseMap.insert(std::make_pair(LSRUse::SCEVUseKindPair(Expr, Kind), 0));
Dan Gohman45774ce2010-02-12 10:34:29 +00002329 if (!P.second) {
2330 // A use already existed with this base.
2331 size_t LUIdx = P.first->second;
2332 LSRUse &LU = Uses[LUIdx];
Dan Gohman110ed642010-09-01 01:45:53 +00002333 if (reconcileNewOffset(LU, Offset, /*HasBaseReg=*/true, Kind, AccessTy))
Dan Gohman45774ce2010-02-12 10:34:29 +00002334 // Reuse this use.
2335 return std::make_pair(LUIdx, Offset);
2336 }
2337
2338 // Create a new use.
2339 size_t LUIdx = Uses.size();
2340 P.first->second = LUIdx;
2341 Uses.push_back(LSRUse(Kind, AccessTy));
2342 LSRUse &LU = Uses[LUIdx];
2343
Dan Gohman45774ce2010-02-12 10:34:29 +00002344 LU.MinOffset = Offset;
2345 LU.MaxOffset = Offset;
2346 return std::make_pair(LUIdx, Offset);
2347}
2348
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002349/// Delete the given use from the Uses list.
Dan Gohmana7b68d62010-10-07 23:33:43 +00002350void LSRInstance::DeleteUse(LSRUse &LU, size_t LUIdx) {
Dan Gohman110ed642010-09-01 01:45:53 +00002351 if (&LU != &Uses.back())
Dan Gohman80a96082010-05-20 15:17:54 +00002352 std::swap(LU, Uses.back());
2353 Uses.pop_back();
Dan Gohmana7b68d62010-10-07 23:33:43 +00002354
2355 // Update RegUses.
Sanjoy Das302bfd02015-08-16 18:22:43 +00002356 RegUses.swapAndDropUse(LUIdx, Uses.size());
Dan Gohman80a96082010-05-20 15:17:54 +00002357}
2358
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002359/// Look for a use distinct from OrigLU which is has a formula that has the same
2360/// registers as the given formula.
Dan Gohman20fab452010-05-19 23:43:12 +00002361LSRUse *
2362LSRInstance::FindUseWithSimilarFormula(const Formula &OrigF,
Dan Gohman110ed642010-09-01 01:45:53 +00002363 const LSRUse &OrigLU) {
2364 // Search all uses for the formula. This could be more clever.
Dan Gohman20fab452010-05-19 23:43:12 +00002365 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2366 LSRUse &LU = Uses[LUIdx];
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002367 // Check whether this use is close enough to OrigLU, to see whether it's
2368 // worthwhile looking through its formulae.
2369 // Ignore ICmpZero uses because they may contain formulae generated by
2370 // GenerateICmpZeroScales, in which case adding fixup offsets may
2371 // be invalid.
Dan Gohman20fab452010-05-19 23:43:12 +00002372 if (&LU != &OrigLU &&
2373 LU.Kind != LSRUse::ICmpZero &&
2374 LU.Kind == OrigLU.Kind && OrigLU.AccessTy == LU.AccessTy &&
Dan Gohman14152082010-07-15 20:24:58 +00002375 LU.WidestFixupType == OrigLU.WidestFixupType &&
Dan Gohman20fab452010-05-19 23:43:12 +00002376 LU.HasFormulaWithSameRegs(OrigF)) {
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002377 // Scan through this use's formulae.
Craig Topper042a3922015-05-25 20:01:18 +00002378 for (const Formula &F : LU.Formulae) {
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002379 // Check to see if this formula has the same registers and symbols
2380 // as OrigF.
Dan Gohman20fab452010-05-19 23:43:12 +00002381 if (F.BaseRegs == OrigF.BaseRegs &&
2382 F.ScaledReg == OrigF.ScaledReg &&
Chandler Carruth6e479322013-01-07 15:04:40 +00002383 F.BaseGV == OrigF.BaseGV &&
2384 F.Scale == OrigF.Scale &&
Dan Gohman6136e942011-05-03 00:46:49 +00002385 F.UnfoldedOffset == OrigF.UnfoldedOffset) {
Chandler Carruth6e479322013-01-07 15:04:40 +00002386 if (F.BaseOffset == 0)
Dan Gohman20fab452010-05-19 23:43:12 +00002387 return &LU;
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002388 // This is the formula where all the registers and symbols matched;
2389 // there aren't going to be any others. Since we declined it, we
Benjamin Kramerbde91762012-06-02 10:20:22 +00002390 // can skip the rest of the formulae and proceed to the next LSRUse.
Dan Gohman20fab452010-05-19 23:43:12 +00002391 break;
2392 }
2393 }
2394 }
2395 }
2396
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002397 // Nothing looked good.
Craig Topperf40110f2014-04-25 05:29:35 +00002398 return nullptr;
Dan Gohman20fab452010-05-19 23:43:12 +00002399}
2400
Dan Gohman45774ce2010-02-12 10:34:29 +00002401void LSRInstance::CollectInterestingTypesAndFactors() {
2402 SmallSetVector<const SCEV *, 4> Strides;
2403
Dan Gohman2446f572010-02-19 00:05:23 +00002404 // Collect interesting types and strides.
Dan Gohmand006ab92010-04-07 22:27:08 +00002405 SmallVector<const SCEV *, 4> Worklist;
Craig Topper042a3922015-05-25 20:01:18 +00002406 for (const IVStrideUse &U : IU) {
2407 const SCEV *Expr = IU.getExpr(U);
Dan Gohman45774ce2010-02-12 10:34:29 +00002408
2409 // Collect interesting types.
Dan Gohmand006ab92010-04-07 22:27:08 +00002410 Types.insert(SE.getEffectiveSCEVType(Expr->getType()));
Dan Gohman45774ce2010-02-12 10:34:29 +00002411
Dan Gohmand006ab92010-04-07 22:27:08 +00002412 // Add strides for mentioned loops.
2413 Worklist.push_back(Expr);
2414 do {
2415 const SCEV *S = Worklist.pop_back_val();
2416 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
Andrew Trickd97b83e2012-03-22 22:42:45 +00002417 if (AR->getLoop() == L)
Andrew Tricke8b4f402011-12-10 00:25:00 +00002418 Strides.insert(AR->getStepRecurrence(SE));
Dan Gohmand006ab92010-04-07 22:27:08 +00002419 Worklist.push_back(AR->getStart());
2420 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Dan Gohmandd41bba2010-06-21 19:47:52 +00002421 Worklist.append(Add->op_begin(), Add->op_end());
Dan Gohmand006ab92010-04-07 22:27:08 +00002422 }
2423 } while (!Worklist.empty());
Dan Gohman2446f572010-02-19 00:05:23 +00002424 }
2425
2426 // Compute interesting factors from the set of interesting strides.
2427 for (SmallSetVector<const SCEV *, 4>::const_iterator
2428 I = Strides.begin(), E = Strides.end(); I != E; ++I)
Dan Gohman45774ce2010-02-12 10:34:29 +00002429 for (SmallSetVector<const SCEV *, 4>::const_iterator NewStrideIter =
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002430 std::next(I); NewStrideIter != E; ++NewStrideIter) {
Dan Gohman2446f572010-02-19 00:05:23 +00002431 const SCEV *OldStride = *I;
Dan Gohman45774ce2010-02-12 10:34:29 +00002432 const SCEV *NewStride = *NewStrideIter;
Dan Gohman45774ce2010-02-12 10:34:29 +00002433
2434 if (SE.getTypeSizeInBits(OldStride->getType()) !=
2435 SE.getTypeSizeInBits(NewStride->getType())) {
2436 if (SE.getTypeSizeInBits(OldStride->getType()) >
2437 SE.getTypeSizeInBits(NewStride->getType()))
2438 NewStride = SE.getSignExtendExpr(NewStride, OldStride->getType());
2439 else
2440 OldStride = SE.getSignExtendExpr(OldStride, NewStride->getType());
2441 }
2442 if (const SCEVConstant *Factor =
Dan Gohman4eebb942010-02-19 19:35:48 +00002443 dyn_cast_or_null<SCEVConstant>(getExactSDiv(NewStride, OldStride,
2444 SE, true))) {
Sanjoy Das0de2fec2015-12-17 20:28:46 +00002445 if (Factor->getAPInt().getMinSignedBits() <= 64)
2446 Factors.insert(Factor->getAPInt().getSExtValue());
Dan Gohman45774ce2010-02-12 10:34:29 +00002447 } else if (const SCEVConstant *Factor =
Dan Gohman8c16b382010-02-22 04:11:59 +00002448 dyn_cast_or_null<SCEVConstant>(getExactSDiv(OldStride,
2449 NewStride,
Dan Gohman4eebb942010-02-19 19:35:48 +00002450 SE, true))) {
Sanjoy Das0de2fec2015-12-17 20:28:46 +00002451 if (Factor->getAPInt().getMinSignedBits() <= 64)
2452 Factors.insert(Factor->getAPInt().getSExtValue());
Dan Gohman45774ce2010-02-12 10:34:29 +00002453 }
2454 }
Dan Gohman45774ce2010-02-12 10:34:29 +00002455
2456 // If all uses use the same type, don't bother looking for truncation-based
2457 // reuse.
2458 if (Types.size() == 1)
2459 Types.clear();
2460
2461 DEBUG(print_factors_and_types(dbgs()));
2462}
2463
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002464/// Helper for CollectChains that finds an IV operand (computed by an AddRec in
2465/// this loop) within [OI,OE) or returns OE. If IVUsers mapped Instructions to
2466/// IVStrideUses, we could partially skip this.
Andrew Trick29fe5f02012-01-09 19:50:34 +00002467static User::op_iterator
2468findIVOperand(User::op_iterator OI, User::op_iterator OE,
2469 Loop *L, ScalarEvolution &SE) {
2470 for(; OI != OE; ++OI) {
2471 if (Instruction *Oper = dyn_cast<Instruction>(*OI)) {
2472 if (!SE.isSCEVable(Oper->getType()))
2473 continue;
2474
2475 if (const SCEVAddRecExpr *AR =
2476 dyn_cast<SCEVAddRecExpr>(SE.getSCEV(Oper))) {
2477 if (AR->getLoop() == L)
2478 break;
2479 }
2480 }
2481 }
2482 return OI;
2483}
2484
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002485/// IVChain logic must consistenctly peek base TruncInst operands, so wrap it in
2486/// a convenient helper.
Andrew Trick29fe5f02012-01-09 19:50:34 +00002487static Value *getWideOperand(Value *Oper) {
2488 if (TruncInst *Trunc = dyn_cast<TruncInst>(Oper))
2489 return Trunc->getOperand(0);
2490 return Oper;
2491}
2492
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002493/// Return true if we allow an IV chain to include both types.
Andrew Trick29fe5f02012-01-09 19:50:34 +00002494static bool isCompatibleIVType(Value *LVal, Value *RVal) {
2495 Type *LType = LVal->getType();
2496 Type *RType = RVal->getType();
2497 return (LType == RType) || (LType->isPointerTy() && RType->isPointerTy());
2498}
2499
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002500/// Return an approximation of this SCEV expression's "base", or NULL for any
2501/// constant. Returning the expression itself is conservative. Returning a
2502/// deeper subexpression is more precise and valid as long as it isn't less
2503/// complex than another subexpression. For expressions involving multiple
2504/// unscaled values, we need to return the pointer-type SCEVUnknown. This avoids
2505/// forming chains across objects, such as: PrevOper==a[i], IVOper==b[i],
2506/// IVInc==b-a.
Andrew Trickd5d2db92012-01-10 01:45:08 +00002507///
2508/// Since SCEVUnknown is the rightmost type, and pointers are the rightmost
2509/// SCEVUnknown, we simply return the rightmost SCEV operand.
2510static const SCEV *getExprBase(const SCEV *S) {
2511 switch (S->getSCEVType()) {
2512 default: // uncluding scUnknown.
2513 return S;
2514 case scConstant:
Craig Topperf40110f2014-04-25 05:29:35 +00002515 return nullptr;
Andrew Trickd5d2db92012-01-10 01:45:08 +00002516 case scTruncate:
2517 return getExprBase(cast<SCEVTruncateExpr>(S)->getOperand());
2518 case scZeroExtend:
2519 return getExprBase(cast<SCEVZeroExtendExpr>(S)->getOperand());
2520 case scSignExtend:
2521 return getExprBase(cast<SCEVSignExtendExpr>(S)->getOperand());
2522 case scAddExpr: {
2523 // Skip over scaled operands (scMulExpr) to follow add operands as long as
2524 // there's nothing more complex.
2525 // FIXME: not sure if we want to recognize negation.
2526 const SCEVAddExpr *Add = cast<SCEVAddExpr>(S);
2527 for (std::reverse_iterator<SCEVAddExpr::op_iterator> I(Add->op_end()),
2528 E(Add->op_begin()); I != E; ++I) {
2529 const SCEV *SubExpr = *I;
2530 if (SubExpr->getSCEVType() == scAddExpr)
2531 return getExprBase(SubExpr);
2532
2533 if (SubExpr->getSCEVType() != scMulExpr)
2534 return SubExpr;
2535 }
2536 return S; // all operands are scaled, be conservative.
2537 }
2538 case scAddRecExpr:
2539 return getExprBase(cast<SCEVAddRecExpr>(S)->getStart());
2540 }
2541}
2542
Andrew Trick248d4102012-01-09 21:18:52 +00002543/// Return true if the chain increment is profitable to expand into a loop
2544/// invariant value, which may require its own register. A profitable chain
2545/// increment will be an offset relative to the same base. We allow such offsets
2546/// to potentially be used as chain increment as long as it's not obviously
2547/// expensive to expand using real instructions.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002548bool IVChain::isProfitableIncrement(const SCEV *OperExpr,
2549 const SCEV *IncExpr,
2550 ScalarEvolution &SE) {
2551 // Aggressively form chains when -stress-ivchain.
Andrew Trick248d4102012-01-09 21:18:52 +00002552 if (StressIVChain)
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002553 return true;
Andrew Trick248d4102012-01-09 21:18:52 +00002554
Andrew Trickd5d2db92012-01-10 01:45:08 +00002555 // Do not replace a constant offset from IV head with a nonconstant IV
2556 // increment.
2557 if (!isa<SCEVConstant>(IncExpr)) {
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002558 const SCEV *HeadExpr = SE.getSCEV(getWideOperand(Incs[0].IVOperand));
Andrew Trickd5d2db92012-01-10 01:45:08 +00002559 if (isa<SCEVConstant>(SE.getMinusSCEV(OperExpr, HeadExpr)))
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00002560 return false;
Andrew Trickd5d2db92012-01-10 01:45:08 +00002561 }
2562
2563 SmallPtrSet<const SCEV*, 8> Processed;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002564 return !isHighCostExpansion(IncExpr, Processed, SE);
Andrew Trick248d4102012-01-09 21:18:52 +00002565}
2566
2567/// Return true if the number of registers needed for the chain is estimated to
2568/// be less than the number required for the individual IV users. First prohibit
2569/// any IV users that keep the IV live across increments (the Users set should
2570/// be empty). Next count the number and type of increments in the chain.
2571///
2572/// Chaining IVs can lead to considerable code bloat if ISEL doesn't
2573/// effectively use postinc addressing modes. Only consider it profitable it the
2574/// increments can be computed in fewer registers when chained.
2575///
2576/// TODO: Consider IVInc free if it's already used in another chains.
2577static bool
Craig Topper71b7b682014-08-21 05:55:13 +00002578isProfitableChain(IVChain &Chain, SmallPtrSetImpl<Instruction*> &Users,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002579 ScalarEvolution &SE, const TargetTransformInfo &TTI) {
Andrew Trick248d4102012-01-09 21:18:52 +00002580 if (StressIVChain)
2581 return true;
2582
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002583 if (!Chain.hasIncs())
Andrew Trickd5d2db92012-01-10 01:45:08 +00002584 return false;
2585
2586 if (!Users.empty()) {
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002587 DEBUG(dbgs() << "Chain: " << *Chain.Incs[0].UserInst << " users:\n";
Craig Topper46276792014-08-24 23:23:06 +00002588 for (Instruction *Inst : Users) {
2589 dbgs() << " " << *Inst << "\n";
Andrew Trickd5d2db92012-01-10 01:45:08 +00002590 });
2591 return false;
2592 }
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002593 assert(!Chain.Incs.empty() && "empty IV chains are not allowed");
Andrew Trickd5d2db92012-01-10 01:45:08 +00002594
2595 // The chain itself may require a register, so intialize cost to 1.
2596 int cost = 1;
2597
2598 // A complete chain likely eliminates the need for keeping the original IV in
2599 // a register. LSR does not currently know how to form a complete chain unless
2600 // the header phi already exists.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002601 if (isa<PHINode>(Chain.tailUserInst())
2602 && SE.getSCEV(Chain.tailUserInst()) == Chain.Incs[0].IncExpr) {
Andrew Trickd5d2db92012-01-10 01:45:08 +00002603 --cost;
2604 }
Craig Topperf40110f2014-04-25 05:29:35 +00002605 const SCEV *LastIncExpr = nullptr;
Andrew Trickd5d2db92012-01-10 01:45:08 +00002606 unsigned NumConstIncrements = 0;
2607 unsigned NumVarIncrements = 0;
2608 unsigned NumReusedIncrements = 0;
Craig Topper042a3922015-05-25 20:01:18 +00002609 for (const IVInc &Inc : Chain) {
2610 if (Inc.IncExpr->isZero())
Andrew Trickd5d2db92012-01-10 01:45:08 +00002611 continue;
2612
2613 // Incrementing by zero or some constant is neutral. We assume constants can
2614 // be folded into an addressing mode or an add's immediate operand.
Craig Topper042a3922015-05-25 20:01:18 +00002615 if (isa<SCEVConstant>(Inc.IncExpr)) {
Andrew Trickd5d2db92012-01-10 01:45:08 +00002616 ++NumConstIncrements;
2617 continue;
2618 }
2619
Craig Topper042a3922015-05-25 20:01:18 +00002620 if (Inc.IncExpr == LastIncExpr)
Andrew Trickd5d2db92012-01-10 01:45:08 +00002621 ++NumReusedIncrements;
2622 else
2623 ++NumVarIncrements;
2624
Craig Topper042a3922015-05-25 20:01:18 +00002625 LastIncExpr = Inc.IncExpr;
Andrew Trickd5d2db92012-01-10 01:45:08 +00002626 }
2627 // An IV chain with a single increment is handled by LSR's postinc
2628 // uses. However, a chain with multiple increments requires keeping the IV's
2629 // value live longer than it needs to be if chained.
2630 if (NumConstIncrements > 1)
2631 --cost;
2632
2633 // Materializing increment expressions in the preheader that didn't exist in
2634 // the original code may cost a register. For example, sign-extended array
2635 // indices can produce ridiculous increments like this:
2636 // IV + ((sext i32 (2 * %s) to i64) + (-1 * (sext i32 %s to i64)))
2637 cost += NumVarIncrements;
2638
2639 // Reusing variable increments likely saves a register to hold the multiple of
2640 // the stride.
2641 cost -= NumReusedIncrements;
2642
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002643 DEBUG(dbgs() << "Chain: " << *Chain.Incs[0].UserInst << " Cost: " << cost
2644 << "\n");
Andrew Trickd5d2db92012-01-10 01:45:08 +00002645
2646 return cost < 0;
Andrew Trick248d4102012-01-09 21:18:52 +00002647}
2648
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002649/// Add this IV user to an existing chain or make it the head of a new chain.
Andrew Trick29fe5f02012-01-09 19:50:34 +00002650void LSRInstance::ChainInstruction(Instruction *UserInst, Instruction *IVOper,
2651 SmallVectorImpl<ChainUsers> &ChainUsersVec) {
2652 // When IVs are used as types of varying widths, they are generally converted
2653 // to a wider type with some uses remaining narrow under a (free) trunc.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002654 Value *const NextIV = getWideOperand(IVOper);
2655 const SCEV *const OperExpr = SE.getSCEV(NextIV);
2656 const SCEV *const OperExprBase = getExprBase(OperExpr);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002657
2658 // Visit all existing chains. Check if its IVOper can be computed as a
2659 // profitable loop invariant increment from the last link in the Chain.
2660 unsigned ChainIdx = 0, NChains = IVChainVec.size();
Craig Topperf40110f2014-04-25 05:29:35 +00002661 const SCEV *LastIncExpr = nullptr;
Andrew Trick29fe5f02012-01-09 19:50:34 +00002662 for (; ChainIdx < NChains; ++ChainIdx) {
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002663 IVChain &Chain = IVChainVec[ChainIdx];
2664
2665 // Prune the solution space aggressively by checking that both IV operands
2666 // are expressions that operate on the same unscaled SCEVUnknown. This
2667 // "base" will be canceled by the subsequent getMinusSCEV call. Checking
2668 // first avoids creating extra SCEV expressions.
2669 if (!StressIVChain && Chain.ExprBase != OperExprBase)
2670 continue;
2671
2672 Value *PrevIV = getWideOperand(Chain.Incs.back().IVOperand);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002673 if (!isCompatibleIVType(PrevIV, NextIV))
2674 continue;
2675
Andrew Trick356a8962012-03-26 20:28:35 +00002676 // A phi node terminates a chain.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002677 if (isa<PHINode>(UserInst) && isa<PHINode>(Chain.tailUserInst()))
Andrew Trick29fe5f02012-01-09 19:50:34 +00002678 continue;
2679
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002680 // The increment must be loop-invariant so it can be kept in a register.
2681 const SCEV *PrevExpr = SE.getSCEV(PrevIV);
2682 const SCEV *IncExpr = SE.getMinusSCEV(OperExpr, PrevExpr);
2683 if (!SE.isLoopInvariant(IncExpr, L))
2684 continue;
2685
2686 if (Chain.isProfitableIncrement(OperExpr, IncExpr, SE)) {
Andrew Trick29fe5f02012-01-09 19:50:34 +00002687 LastIncExpr = IncExpr;
2688 break;
2689 }
2690 }
2691 // If we haven't found a chain, create a new one, unless we hit the max. Don't
2692 // bother for phi nodes, because they must be last in the chain.
2693 if (ChainIdx == NChains) {
2694 if (isa<PHINode>(UserInst))
2695 return;
Andrew Trick248d4102012-01-09 21:18:52 +00002696 if (NChains >= MaxChains && !StressIVChain) {
Andrew Trick29fe5f02012-01-09 19:50:34 +00002697 DEBUG(dbgs() << "IV Chain Limit\n");
2698 return;
2699 }
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002700 LastIncExpr = OperExpr;
Andrew Trickb9c822a2012-01-20 21:23:40 +00002701 // IVUsers may have skipped over sign/zero extensions. We don't currently
2702 // attempt to form chains involving extensions unless they can be hoisted
2703 // into this loop's AddRec.
2704 if (!isa<SCEVAddRecExpr>(LastIncExpr))
2705 return;
Andrew Trick29fe5f02012-01-09 19:50:34 +00002706 ++NChains;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002707 IVChainVec.push_back(IVChain(IVInc(UserInst, IVOper, LastIncExpr),
2708 OperExprBase));
Andrew Trick29fe5f02012-01-09 19:50:34 +00002709 ChainUsersVec.resize(NChains);
Jakob Stoklund Olesen293673d2012-04-25 18:01:32 +00002710 DEBUG(dbgs() << "IV Chain#" << ChainIdx << " Head: (" << *UserInst
2711 << ") IV=" << *LastIncExpr << "\n");
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002712 } else {
Jakob Stoklund Olesen293673d2012-04-25 18:01:32 +00002713 DEBUG(dbgs() << "IV Chain#" << ChainIdx << " Inc: (" << *UserInst
2714 << ") IV+" << *LastIncExpr << "\n");
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002715 // Add this IV user to the end of the chain.
2716 IVChainVec[ChainIdx].add(IVInc(UserInst, IVOper, LastIncExpr));
2717 }
Andrew Trickbc705902013-02-09 01:11:01 +00002718 IVChain &Chain = IVChainVec[ChainIdx];
Andrew Trick29fe5f02012-01-09 19:50:34 +00002719
2720 SmallPtrSet<Instruction*,4> &NearUsers = ChainUsersVec[ChainIdx].NearUsers;
2721 // This chain's NearUsers become FarUsers.
2722 if (!LastIncExpr->isZero()) {
2723 ChainUsersVec[ChainIdx].FarUsers.insert(NearUsers.begin(),
2724 NearUsers.end());
2725 NearUsers.clear();
2726 }
2727
2728 // All other uses of IVOperand become near uses of the chain.
2729 // We currently ignore intermediate values within SCEV expressions, assuming
2730 // they will eventually be used be the current chain, or can be computed
2731 // from one of the chain increments. To be more precise we could
2732 // transitively follow its user and only add leaf IV users to the set.
Chandler Carruthcdf47882014-03-09 03:16:01 +00002733 for (User *U : IVOper->users()) {
2734 Instruction *OtherUse = dyn_cast<Instruction>(U);
Andrew Trickbc705902013-02-09 01:11:01 +00002735 if (!OtherUse)
Andrew Tricke51feea2012-03-26 18:03:16 +00002736 continue;
Andrew Trickbc705902013-02-09 01:11:01 +00002737 // Uses in the chain will no longer be uses if the chain is formed.
2738 // Include the head of the chain in this iteration (not Chain.begin()).
2739 IVChain::const_iterator IncIter = Chain.Incs.begin();
2740 IVChain::const_iterator IncEnd = Chain.Incs.end();
2741 for( ; IncIter != IncEnd; ++IncIter) {
2742 if (IncIter->UserInst == OtherUse)
2743 break;
2744 }
2745 if (IncIter != IncEnd)
2746 continue;
2747
Andrew Trick29fe5f02012-01-09 19:50:34 +00002748 if (SE.isSCEVable(OtherUse->getType())
2749 && !isa<SCEVUnknown>(SE.getSCEV(OtherUse))
2750 && IU.isIVUserOrOperand(OtherUse)) {
2751 continue;
2752 }
Andrew Tricke51feea2012-03-26 18:03:16 +00002753 NearUsers.insert(OtherUse);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002754 }
2755
2756 // Since this user is part of the chain, it's no longer considered a use
2757 // of the chain.
2758 ChainUsersVec[ChainIdx].FarUsers.erase(UserInst);
2759}
2760
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002761/// Populate the vector of Chains.
Andrew Trick29fe5f02012-01-09 19:50:34 +00002762///
2763/// This decreases ILP at the architecture level. Targets with ample registers,
2764/// multiple memory ports, and no register renaming probably don't want
2765/// this. However, such targets should probably disable LSR altogether.
2766///
2767/// The job of LSR is to make a reasonable choice of induction variables across
2768/// the loop. Subsequent passes can easily "unchain" computation exposing more
2769/// ILP *within the loop* if the target wants it.
2770///
2771/// Finding the best IV chain is potentially a scheduling problem. Since LSR
2772/// will not reorder memory operations, it will recognize this as a chain, but
2773/// will generate redundant IV increments. Ideally this would be corrected later
2774/// by a smart scheduler:
2775/// = A[i]
2776/// = A[i+x]
2777/// A[i] =
2778/// A[i+x] =
2779///
2780/// TODO: Walk the entire domtree within this loop, not just the path to the
2781/// loop latch. This will discover chains on side paths, but requires
2782/// maintaining multiple copies of the Chains state.
2783void LSRInstance::CollectChains() {
Jakob Stoklund Olesen293673d2012-04-25 18:01:32 +00002784 DEBUG(dbgs() << "Collecting IV Chains.\n");
Andrew Trick29fe5f02012-01-09 19:50:34 +00002785 SmallVector<ChainUsers, 8> ChainUsersVec;
2786
2787 SmallVector<BasicBlock *,8> LatchPath;
2788 BasicBlock *LoopHeader = L->getHeader();
2789 for (DomTreeNode *Rung = DT.getNode(L->getLoopLatch());
2790 Rung->getBlock() != LoopHeader; Rung = Rung->getIDom()) {
2791 LatchPath.push_back(Rung->getBlock());
2792 }
2793 LatchPath.push_back(LoopHeader);
2794
2795 // Walk the instruction stream from the loop header to the loop latch.
David Majnemerd7708772016-06-24 04:05:21 +00002796 for (BasicBlock *BB : reverse(LatchPath)) {
2797 for (Instruction &I : *BB) {
Andrew Trick29fe5f02012-01-09 19:50:34 +00002798 // Skip instructions that weren't seen by IVUsers analysis.
David Majnemerd7708772016-06-24 04:05:21 +00002799 if (isa<PHINode>(I) || !IU.isIVUserOrOperand(&I))
Andrew Trick29fe5f02012-01-09 19:50:34 +00002800 continue;
2801
2802 // Ignore users that are part of a SCEV expression. This way we only
2803 // consider leaf IV Users. This effectively rediscovers a portion of
2804 // IVUsers analysis but in program order this time.
David Majnemerd7708772016-06-24 04:05:21 +00002805 if (SE.isSCEVable(I.getType()) && !isa<SCEVUnknown>(SE.getSCEV(&I)))
Andrew Trick29fe5f02012-01-09 19:50:34 +00002806 continue;
2807
2808 // Remove this instruction from any NearUsers set it may be in.
2809 for (unsigned ChainIdx = 0, NChains = IVChainVec.size();
2810 ChainIdx < NChains; ++ChainIdx) {
David Majnemerd7708772016-06-24 04:05:21 +00002811 ChainUsersVec[ChainIdx].NearUsers.erase(&I);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002812 }
2813 // Search for operands that can be chained.
2814 SmallPtrSet<Instruction*, 4> UniqueOperands;
David Majnemerd7708772016-06-24 04:05:21 +00002815 User::op_iterator IVOpEnd = I.op_end();
2816 User::op_iterator IVOpIter = findIVOperand(I.op_begin(), IVOpEnd, L, SE);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002817 while (IVOpIter != IVOpEnd) {
2818 Instruction *IVOpInst = cast<Instruction>(*IVOpIter);
David Blaikie70573dc2014-11-19 07:49:26 +00002819 if (UniqueOperands.insert(IVOpInst).second)
David Majnemerd7708772016-06-24 04:05:21 +00002820 ChainInstruction(&I, IVOpInst, ChainUsersVec);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002821 IVOpIter = findIVOperand(std::next(IVOpIter), IVOpEnd, L, SE);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002822 }
2823 } // Continue walking down the instructions.
2824 } // Continue walking down the domtree.
2825 // Visit phi backedges to determine if the chain can generate the IV postinc.
2826 for (BasicBlock::iterator I = L->getHeader()->begin();
2827 PHINode *PN = dyn_cast<PHINode>(I); ++I) {
2828 if (!SE.isSCEVable(PN->getType()))
2829 continue;
2830
2831 Instruction *IncV =
2832 dyn_cast<Instruction>(PN->getIncomingValueForBlock(L->getLoopLatch()));
2833 if (IncV)
2834 ChainInstruction(PN, IncV, ChainUsersVec);
2835 }
Andrew Trick248d4102012-01-09 21:18:52 +00002836 // Remove any unprofitable chains.
2837 unsigned ChainIdx = 0;
2838 for (unsigned UsersIdx = 0, NChains = IVChainVec.size();
2839 UsersIdx < NChains; ++UsersIdx) {
2840 if (!isProfitableChain(IVChainVec[UsersIdx],
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002841 ChainUsersVec[UsersIdx].FarUsers, SE, TTI))
Andrew Trick248d4102012-01-09 21:18:52 +00002842 continue;
2843 // Preserve the chain at UsesIdx.
2844 if (ChainIdx != UsersIdx)
2845 IVChainVec[ChainIdx] = IVChainVec[UsersIdx];
2846 FinalizeChain(IVChainVec[ChainIdx]);
2847 ++ChainIdx;
2848 }
2849 IVChainVec.resize(ChainIdx);
2850}
2851
2852void LSRInstance::FinalizeChain(IVChain &Chain) {
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002853 assert(!Chain.Incs.empty() && "empty IV chains are not allowed");
2854 DEBUG(dbgs() << "Final Chain: " << *Chain.Incs[0].UserInst << "\n");
Andrew Trick248d4102012-01-09 21:18:52 +00002855
Craig Topper042a3922015-05-25 20:01:18 +00002856 for (const IVInc &Inc : Chain) {
Evgeny Stupachenko8efbe6a2016-11-21 21:55:03 +00002857 DEBUG(dbgs() << " Inc: " << *Inc.UserInst << "\n");
David Majnemer42531262016-08-12 03:55:06 +00002858 auto UseI = find(Inc.UserInst->operands(), Inc.IVOperand);
Craig Topper042a3922015-05-25 20:01:18 +00002859 assert(UseI != Inc.UserInst->op_end() && "cannot find IV operand");
Andrew Trick248d4102012-01-09 21:18:52 +00002860 IVIncSet.insert(UseI);
2861 }
2862}
2863
2864/// Return true if the IVInc can be folded into an addressing mode.
2865static bool canFoldIVIncExpr(const SCEV *IncExpr, Instruction *UserInst,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002866 Value *Operand, const TargetTransformInfo &TTI) {
Andrew Trick248d4102012-01-09 21:18:52 +00002867 const SCEVConstant *IncConst = dyn_cast<SCEVConstant>(IncExpr);
2868 if (!IncConst || !isAddressUse(UserInst, Operand))
2869 return false;
2870
Sanjoy Das0de2fec2015-12-17 20:28:46 +00002871 if (IncConst->getAPInt().getMinSignedBits() > 64)
Andrew Trick248d4102012-01-09 21:18:52 +00002872 return false;
2873
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002874 MemAccessTy AccessTy = getAccessType(UserInst);
Andrew Trick248d4102012-01-09 21:18:52 +00002875 int64_t IncOffset = IncConst->getValue()->getSExtValue();
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002876 if (!isAlwaysFoldable(TTI, LSRUse::Address, AccessTy, /*BaseGV=*/nullptr,
2877 IncOffset, /*HaseBaseReg=*/false))
Andrew Trick248d4102012-01-09 21:18:52 +00002878 return false;
2879
2880 return true;
2881}
2882
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002883/// Generate an add or subtract for each IVInc in a chain to materialize the IV
2884/// user's operand from the previous IV user's operand.
Andrew Trick248d4102012-01-09 21:18:52 +00002885void LSRInstance::GenerateIVChain(const IVChain &Chain, SCEVExpander &Rewriter,
2886 SmallVectorImpl<WeakVH> &DeadInsts) {
2887 // Find the new IVOperand for the head of the chain. It may have been replaced
2888 // by LSR.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002889 const IVInc &Head = Chain.Incs[0];
Andrew Trick248d4102012-01-09 21:18:52 +00002890 User::op_iterator IVOpEnd = Head.UserInst->op_end();
Andrew Trickf3a25442013-03-19 05:10:27 +00002891 // findIVOperand returns IVOpEnd if it can no longer find a valid IV user.
Andrew Trick248d4102012-01-09 21:18:52 +00002892 User::op_iterator IVOpIter = findIVOperand(Head.UserInst->op_begin(),
2893 IVOpEnd, L, SE);
Craig Topperf40110f2014-04-25 05:29:35 +00002894 Value *IVSrc = nullptr;
Andrew Trickf3a25442013-03-19 05:10:27 +00002895 while (IVOpIter != IVOpEnd) {
Andrew Trick248d4102012-01-09 21:18:52 +00002896 IVSrc = getWideOperand(*IVOpIter);
2897
2898 // If this operand computes the expression that the chain needs, we may use
2899 // it. (Check this after setting IVSrc which is used below.)
2900 //
2901 // Note that if Head.IncExpr is wider than IVSrc, then this phi is too
2902 // narrow for the chain, so we can no longer use it. We do allow using a
2903 // wider phi, assuming the LSR checked for free truncation. In that case we
2904 // should already have a truncate on this operand such that
2905 // getSCEV(IVSrc) == IncExpr.
2906 if (SE.getSCEV(*IVOpIter) == Head.IncExpr
2907 || SE.getSCEV(IVSrc) == Head.IncExpr) {
2908 break;
2909 }
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002910 IVOpIter = findIVOperand(std::next(IVOpIter), IVOpEnd, L, SE);
Andrew Trickf3a25442013-03-19 05:10:27 +00002911 }
Andrew Trick248d4102012-01-09 21:18:52 +00002912 if (IVOpIter == IVOpEnd) {
2913 // Gracefully give up on this chain.
2914 DEBUG(dbgs() << "Concealed chain head: " << *Head.UserInst << "\n");
2915 return;
2916 }
2917
2918 DEBUG(dbgs() << "Generate chain at: " << *IVSrc << "\n");
2919 Type *IVTy = IVSrc->getType();
2920 Type *IntTy = SE.getEffectiveSCEVType(IVTy);
Craig Topperf40110f2014-04-25 05:29:35 +00002921 const SCEV *LeftOverExpr = nullptr;
Craig Topper042a3922015-05-25 20:01:18 +00002922 for (const IVInc &Inc : Chain) {
2923 Instruction *InsertPt = Inc.UserInst;
Andrew Trick248d4102012-01-09 21:18:52 +00002924 if (isa<PHINode>(InsertPt))
2925 InsertPt = L->getLoopLatch()->getTerminator();
2926
2927 // IVOper will replace the current IV User's operand. IVSrc is the IV
2928 // value currently held in a register.
2929 Value *IVOper = IVSrc;
Craig Topper042a3922015-05-25 20:01:18 +00002930 if (!Inc.IncExpr->isZero()) {
Andrew Trick248d4102012-01-09 21:18:52 +00002931 // IncExpr was the result of subtraction of two narrow values, so must
2932 // be signed.
Craig Topper042a3922015-05-25 20:01:18 +00002933 const SCEV *IncExpr = SE.getNoopOrSignExtend(Inc.IncExpr, IntTy);
Andrew Trick248d4102012-01-09 21:18:52 +00002934 LeftOverExpr = LeftOverExpr ?
2935 SE.getAddExpr(LeftOverExpr, IncExpr) : IncExpr;
2936 }
2937 if (LeftOverExpr && !LeftOverExpr->isZero()) {
2938 // Expand the IV increment.
2939 Rewriter.clearPostInc();
2940 Value *IncV = Rewriter.expandCodeFor(LeftOverExpr, IntTy, InsertPt);
2941 const SCEV *IVOperExpr = SE.getAddExpr(SE.getUnknown(IVSrc),
2942 SE.getUnknown(IncV));
2943 IVOper = Rewriter.expandCodeFor(IVOperExpr, IVTy, InsertPt);
2944
2945 // If an IV increment can't be folded, use it as the next IV value.
Craig Topper042a3922015-05-25 20:01:18 +00002946 if (!canFoldIVIncExpr(LeftOverExpr, Inc.UserInst, Inc.IVOperand, TTI)) {
Andrew Trick248d4102012-01-09 21:18:52 +00002947 assert(IVTy == IVOper->getType() && "inconsistent IV increment type");
2948 IVSrc = IVOper;
Craig Topperf40110f2014-04-25 05:29:35 +00002949 LeftOverExpr = nullptr;
Andrew Trick248d4102012-01-09 21:18:52 +00002950 }
2951 }
Craig Topper042a3922015-05-25 20:01:18 +00002952 Type *OperTy = Inc.IVOperand->getType();
Andrew Trick248d4102012-01-09 21:18:52 +00002953 if (IVTy != OperTy) {
2954 assert(SE.getTypeSizeInBits(IVTy) >= SE.getTypeSizeInBits(OperTy) &&
2955 "cannot extend a chained IV");
2956 IRBuilder<> Builder(InsertPt);
2957 IVOper = Builder.CreateTruncOrBitCast(IVOper, OperTy, "lsr.chain");
2958 }
Craig Topper042a3922015-05-25 20:01:18 +00002959 Inc.UserInst->replaceUsesOfWith(Inc.IVOperand, IVOper);
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00002960 DeadInsts.emplace_back(Inc.IVOperand);
Andrew Trick248d4102012-01-09 21:18:52 +00002961 }
2962 // If LSR created a new, wider phi, we may also replace its postinc. We only
2963 // do this if we also found a wide value for the head of the chain.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002964 if (isa<PHINode>(Chain.tailUserInst())) {
Andrew Trick248d4102012-01-09 21:18:52 +00002965 for (BasicBlock::iterator I = L->getHeader()->begin();
2966 PHINode *Phi = dyn_cast<PHINode>(I); ++I) {
2967 if (!isCompatibleIVType(Phi, IVSrc))
2968 continue;
2969 Instruction *PostIncV = dyn_cast<Instruction>(
2970 Phi->getIncomingValueForBlock(L->getLoopLatch()));
2971 if (!PostIncV || (SE.getSCEV(PostIncV) != SE.getSCEV(IVSrc)))
2972 continue;
2973 Value *IVOper = IVSrc;
2974 Type *PostIncTy = PostIncV->getType();
2975 if (IVTy != PostIncTy) {
2976 assert(PostIncTy->isPointerTy() && "mixing int/ptr IV types");
2977 IRBuilder<> Builder(L->getLoopLatch()->getTerminator());
2978 Builder.SetCurrentDebugLocation(PostIncV->getDebugLoc());
2979 IVOper = Builder.CreatePointerCast(IVSrc, PostIncTy, "lsr.chain");
2980 }
2981 Phi->replaceUsesOfWith(PostIncV, IVOper);
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00002982 DeadInsts.emplace_back(PostIncV);
Andrew Trick248d4102012-01-09 21:18:52 +00002983 }
2984 }
Andrew Trick29fe5f02012-01-09 19:50:34 +00002985}
2986
Dan Gohman45774ce2010-02-12 10:34:29 +00002987void LSRInstance::CollectFixupsAndInitialFormulae() {
Craig Topper042a3922015-05-25 20:01:18 +00002988 for (const IVStrideUse &U : IU) {
2989 Instruction *UserInst = U.getUser();
Andrew Trick248d4102012-01-09 21:18:52 +00002990 // Skip IV users that are part of profitable IV Chains.
David Majnemer42531262016-08-12 03:55:06 +00002991 User::op_iterator UseI =
2992 find(UserInst->operands(), U.getOperandValToReplace());
Andrew Trick248d4102012-01-09 21:18:52 +00002993 assert(UseI != UserInst->op_end() && "cannot find IV operand");
Quentin Colombet35109902017-01-28 01:05:27 +00002994 if (IVIncSet.count(UseI)) {
2995 DEBUG(dbgs() << "Use is in profitable chain: " << **UseI << '\n');
Andrew Trick248d4102012-01-09 21:18:52 +00002996 continue;
Quentin Colombet35109902017-01-28 01:05:27 +00002997 }
Andrew Trick248d4102012-01-09 21:18:52 +00002998
Dan Gohman45774ce2010-02-12 10:34:29 +00002999 LSRUse::KindType Kind = LSRUse::Basic;
Matt Arsenault427a0fd2015-08-15 00:53:06 +00003000 MemAccessTy AccessTy;
Jonas Paulsson7a794222016-08-17 13:24:19 +00003001 if (isAddressUse(UserInst, U.getOperandValToReplace())) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003002 Kind = LSRUse::Address;
Jonas Paulsson7a794222016-08-17 13:24:19 +00003003 AccessTy = getAccessType(UserInst);
Dan Gohman45774ce2010-02-12 10:34:29 +00003004 }
3005
Craig Topper042a3922015-05-25 20:01:18 +00003006 const SCEV *S = IU.getExpr(U);
Jonas Paulsson7a794222016-08-17 13:24:19 +00003007 PostIncLoopSet TmpPostIncLoops = U.getPostIncLoops();
3008
Dan Gohman45774ce2010-02-12 10:34:29 +00003009 // Equality (== and !=) ICmps are special. We can rewrite (i == N) as
3010 // (N - i == 0), and this allows (N - i) to be the expression that we work
3011 // with rather than just N or i, so we can consider the register
3012 // requirements for both N and i at the same time. Limiting this code to
3013 // equality icmps is not a problem because all interesting loops use
3014 // equality icmps, thanks to IndVarSimplify.
Jonas Paulsson7a794222016-08-17 13:24:19 +00003015 if (ICmpInst *CI = dyn_cast<ICmpInst>(UserInst))
Dan Gohman45774ce2010-02-12 10:34:29 +00003016 if (CI->isEquality()) {
3017 // Swap the operands if needed to put the OperandValToReplace on the
3018 // left, for consistency.
3019 Value *NV = CI->getOperand(1);
Jonas Paulsson7a794222016-08-17 13:24:19 +00003020 if (NV == U.getOperandValToReplace()) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003021 CI->setOperand(1, CI->getOperand(0));
3022 CI->setOperand(0, NV);
Dan Gohmanee2fea32010-05-20 19:26:52 +00003023 NV = CI->getOperand(1);
Dan Gohmanfdf98742010-05-20 19:16:03 +00003024 Changed = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00003025 }
3026
3027 // x == y --> x - y == 0
3028 const SCEV *N = SE.getSCEV(NV);
Andrew Trick57243da2013-10-25 21:35:56 +00003029 if (SE.isLoopInvariant(N, L) && isSafeToExpand(N, SE)) {
Dan Gohman3268e4d2011-05-18 21:02:18 +00003030 // S is normalized, so normalize N before folding it into S
3031 // to keep the result normalized.
Craig Topperf40110f2014-04-25 05:29:35 +00003032 N = TransformForPostIncUse(Normalize, N, CI, nullptr,
Jonas Paulsson7a794222016-08-17 13:24:19 +00003033 TmpPostIncLoops, SE, DT);
Dan Gohman45774ce2010-02-12 10:34:29 +00003034 Kind = LSRUse::ICmpZero;
3035 S = SE.getMinusSCEV(N, S);
3036 }
3037
3038 // -1 and the negations of all interesting strides (except the negation
3039 // of -1) are now also interesting.
3040 for (size_t i = 0, e = Factors.size(); i != e; ++i)
3041 if (Factors[i] != -1)
3042 Factors.insert(-(uint64_t)Factors[i]);
3043 Factors.insert(-1);
3044 }
3045
Jonas Paulsson7a794222016-08-17 13:24:19 +00003046 // Get or create an LSRUse.
Dan Gohman45774ce2010-02-12 10:34:29 +00003047 std::pair<size_t, int64_t> P = getUse(S, Kind, AccessTy);
Jonas Paulsson7a794222016-08-17 13:24:19 +00003048 size_t LUIdx = P.first;
3049 int64_t Offset = P.second;
3050 LSRUse &LU = Uses[LUIdx];
3051
3052 // Record the fixup.
3053 LSRFixup &LF = LU.getNewFixup();
3054 LF.UserInst = UserInst;
3055 LF.OperandValToReplace = U.getOperandValToReplace();
3056 LF.PostIncLoops = TmpPostIncLoops;
3057 LF.Offset = Offset;
Dan Gohmand006ab92010-04-07 22:27:08 +00003058 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Jonas Paulsson7a794222016-08-17 13:24:19 +00003059
Dan Gohman14152082010-07-15 20:24:58 +00003060 if (!LU.WidestFixupType ||
3061 SE.getTypeSizeInBits(LU.WidestFixupType) <
3062 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
3063 LU.WidestFixupType = LF.OperandValToReplace->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003064
3065 // If this is the first use of this LSRUse, give it a formula.
3066 if (LU.Formulae.empty()) {
Jonas Paulsson7a794222016-08-17 13:24:19 +00003067 InsertInitialFormula(S, LU, LUIdx);
3068 CountRegisters(LU.Formulae.back(), LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00003069 }
3070 }
3071
3072 DEBUG(print_fixups(dbgs()));
3073}
3074
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003075/// Insert a formula for the given expression into the given use, separating out
3076/// loop-variant portions from loop-invariant and loop-computable portions.
Dan Gohman45774ce2010-02-12 10:34:29 +00003077void
Dan Gohman8c16b382010-02-22 04:11:59 +00003078LSRInstance::InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx) {
Andrew Trick57243da2013-10-25 21:35:56 +00003079 // Mark uses whose expressions cannot be expanded.
3080 if (!isSafeToExpand(S, SE))
3081 LU.RigidFormula = true;
3082
Dan Gohman45774ce2010-02-12 10:34:29 +00003083 Formula F;
Sanjoy Das302bfd02015-08-16 18:22:43 +00003084 F.initialMatch(S, L, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +00003085 bool Inserted = InsertFormula(LU, LUIdx, F);
3086 assert(Inserted && "Initial formula already exists!"); (void)Inserted;
3087}
3088
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003089/// Insert a simple single-register formula for the given expression into the
3090/// given use.
Dan Gohman45774ce2010-02-12 10:34:29 +00003091void
3092LSRInstance::InsertSupplementalFormula(const SCEV *S,
3093 LSRUse &LU, size_t LUIdx) {
3094 Formula F;
3095 F.BaseRegs.push_back(S);
Chandler Carruth7e31c8f2013-01-12 23:46:04 +00003096 F.HasBaseReg = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00003097 bool Inserted = InsertFormula(LU, LUIdx, F);
3098 assert(Inserted && "Supplemental formula already exists!"); (void)Inserted;
3099}
3100
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003101/// Note which registers are used by the given formula, updating RegUses.
Dan Gohman45774ce2010-02-12 10:34:29 +00003102void LSRInstance::CountRegisters(const Formula &F, size_t LUIdx) {
3103 if (F.ScaledReg)
Sanjoy Das302bfd02015-08-16 18:22:43 +00003104 RegUses.countRegister(F.ScaledReg, LUIdx);
Craig Topper042a3922015-05-25 20:01:18 +00003105 for (const SCEV *BaseReg : F.BaseRegs)
Sanjoy Das302bfd02015-08-16 18:22:43 +00003106 RegUses.countRegister(BaseReg, LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00003107}
3108
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003109/// If the given formula has not yet been inserted, add it to the list, and
3110/// return true. Return false otherwise.
Dan Gohman45774ce2010-02-12 10:34:29 +00003111bool LSRInstance::InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003112 // Do not insert formula that we will not be able to expand.
3113 assert(isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F) &&
3114 "Formula is illegal");
Dan Gohman8c16b382010-02-22 04:11:59 +00003115 if (!LU.InsertFormula(F))
Dan Gohman45774ce2010-02-12 10:34:29 +00003116 return false;
3117
3118 CountRegisters(F, LUIdx);
3119 return true;
3120}
3121
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003122/// Check for other uses of loop-invariant values which we're tracking. These
3123/// other uses will pin these values in registers, making them less profitable
3124/// for elimination.
Dan Gohman45774ce2010-02-12 10:34:29 +00003125/// TODO: This currently misses non-constant addrec step registers.
3126/// TODO: Should this give more weight to users inside the loop?
3127void
3128LSRInstance::CollectLoopInvariantFixupsAndFormulae() {
3129 SmallVector<const SCEV *, 8> Worklist(RegUses.begin(), RegUses.end());
Andrew Trickdd925ad2014-10-25 19:59:30 +00003130 SmallPtrSet<const SCEV *, 32> Visited;
Dan Gohman45774ce2010-02-12 10:34:29 +00003131
3132 while (!Worklist.empty()) {
3133 const SCEV *S = Worklist.pop_back_val();
3134
Andrew Trick9ccbed52014-10-25 19:42:07 +00003135 // Don't process the same SCEV twice
David Blaikie70573dc2014-11-19 07:49:26 +00003136 if (!Visited.insert(S).second)
Andrew Trick9ccbed52014-10-25 19:42:07 +00003137 continue;
3138
Dan Gohman45774ce2010-02-12 10:34:29 +00003139 if (const SCEVNAryExpr *N = dyn_cast<SCEVNAryExpr>(S))
Dan Gohmandd41bba2010-06-21 19:47:52 +00003140 Worklist.append(N->op_begin(), N->op_end());
Dan Gohman45774ce2010-02-12 10:34:29 +00003141 else if (const SCEVCastExpr *C = dyn_cast<SCEVCastExpr>(S))
3142 Worklist.push_back(C->getOperand());
3143 else if (const SCEVUDivExpr *D = dyn_cast<SCEVUDivExpr>(S)) {
3144 Worklist.push_back(D->getLHS());
3145 Worklist.push_back(D->getRHS());
Chandler Carruthcdf47882014-03-09 03:16:01 +00003146 } else if (const SCEVUnknown *US = dyn_cast<SCEVUnknown>(S)) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00003147 const Value *V = US->getValue();
Dan Gohman67b44032010-06-04 23:16:05 +00003148 if (const Instruction *Inst = dyn_cast<Instruction>(V)) {
3149 // Look for instructions defined outside the loop.
Dan Gohman45774ce2010-02-12 10:34:29 +00003150 if (L->contains(Inst)) continue;
Dan Gohman67b44032010-06-04 23:16:05 +00003151 } else if (isa<UndefValue>(V))
3152 // Undef doesn't have a live range, so it doesn't matter.
3153 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00003154 for (const Use &U : V->uses()) {
3155 const Instruction *UserInst = dyn_cast<Instruction>(U.getUser());
Dan Gohman45774ce2010-02-12 10:34:29 +00003156 // Ignore non-instructions.
3157 if (!UserInst)
Dan Gohman045f8192010-01-22 00:46:49 +00003158 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003159 // Ignore instructions in other functions (as can happen with
3160 // Constants).
3161 if (UserInst->getParent()->getParent() != L->getHeader()->getParent())
Dan Gohman045f8192010-01-22 00:46:49 +00003162 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003163 // Ignore instructions not dominated by the loop.
3164 const BasicBlock *UseBB = !isa<PHINode>(UserInst) ?
3165 UserInst->getParent() :
3166 cast<PHINode>(UserInst)->getIncomingBlock(
Chandler Carruthcdf47882014-03-09 03:16:01 +00003167 PHINode::getIncomingValueNumForOperand(U.getOperandNo()));
Dan Gohman45774ce2010-02-12 10:34:29 +00003168 if (!DT.dominates(L->getHeader(), UseBB))
3169 continue;
David Majnemerb2221842015-11-08 05:04:07 +00003170 // Don't bother if the instruction is in a BB which ends in an EHPad.
3171 if (UseBB->getTerminator()->isEHPad())
3172 continue;
David Majnemerbba17392017-01-13 22:24:27 +00003173 // Don't bother rewriting PHIs in catchswitch blocks.
3174 if (isa<CatchSwitchInst>(UserInst->getParent()->getTerminator()))
3175 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003176 // Ignore uses which are part of other SCEV expressions, to avoid
3177 // analyzing them multiple times.
Dan Gohman42ec4eb2010-04-09 19:12:34 +00003178 if (SE.isSCEVable(UserInst->getType())) {
3179 const SCEV *UserS = SE.getSCEV(const_cast<Instruction *>(UserInst));
3180 // If the user is a no-op, look through to its uses.
3181 if (!isa<SCEVUnknown>(UserS))
3182 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00003183 if (UserS == US) {
Dan Gohman42ec4eb2010-04-09 19:12:34 +00003184 Worklist.push_back(
3185 SE.getUnknown(const_cast<Instruction *>(UserInst)));
3186 continue;
3187 }
3188 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003189 // Ignore icmp instructions which are already being analyzed.
3190 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UserInst)) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00003191 unsigned OtherIdx = !U.getOperandNo();
Dan Gohman45774ce2010-02-12 10:34:29 +00003192 Value *OtherOp = const_cast<Value *>(ICI->getOperand(OtherIdx));
Dan Gohmanafd6db92010-11-17 21:23:15 +00003193 if (SE.hasComputableLoopEvolution(SE.getSCEV(OtherOp), L))
Dan Gohman45774ce2010-02-12 10:34:29 +00003194 continue;
3195 }
3196
Matt Arsenault427a0fd2015-08-15 00:53:06 +00003197 std::pair<size_t, int64_t> P = getUse(
3198 S, LSRUse::Basic, MemAccessTy());
Jonas Paulsson7a794222016-08-17 13:24:19 +00003199 size_t LUIdx = P.first;
3200 int64_t Offset = P.second;
3201 LSRUse &LU = Uses[LUIdx];
3202 LSRFixup &LF = LU.getNewFixup();
3203 LF.UserInst = const_cast<Instruction *>(UserInst);
3204 LF.OperandValToReplace = U;
3205 LF.Offset = Offset;
Dan Gohmand006ab92010-04-07 22:27:08 +00003206 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohman14152082010-07-15 20:24:58 +00003207 if (!LU.WidestFixupType ||
3208 SE.getTypeSizeInBits(LU.WidestFixupType) <
3209 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
3210 LU.WidestFixupType = LF.OperandValToReplace->getType();
Jonas Paulsson7a794222016-08-17 13:24:19 +00003211 InsertSupplementalFormula(US, LU, LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00003212 CountRegisters(LU.Formulae.back(), Uses.size() - 1);
3213 break;
3214 }
3215 }
3216 }
3217}
3218
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003219/// Split S into subexpressions which can be pulled out into separate
3220/// registers. If C is non-null, multiply each subexpression by C.
Andrew Trickc8037062012-07-17 05:30:37 +00003221///
3222/// Return remainder expression after factoring the subexpressions captured by
3223/// Ops. If Ops is complete, return NULL.
3224static const SCEV *CollectSubexprs(const SCEV *S, const SCEVConstant *C,
3225 SmallVectorImpl<const SCEV *> &Ops,
3226 const Loop *L,
3227 ScalarEvolution &SE,
3228 unsigned Depth = 0) {
3229 // Arbitrarily cap recursion to protect compile time.
3230 if (Depth >= 3)
3231 return S;
3232
Dan Gohman45774ce2010-02-12 10:34:29 +00003233 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
3234 // Break out add operands.
Craig Topper042a3922015-05-25 20:01:18 +00003235 for (const SCEV *S : Add->operands()) {
3236 const SCEV *Remainder = CollectSubexprs(S, C, Ops, L, SE, Depth+1);
Andrew Trickc8037062012-07-17 05:30:37 +00003237 if (Remainder)
3238 Ops.push_back(C ? SE.getMulExpr(C, Remainder) : Remainder);
3239 }
Craig Topperf40110f2014-04-25 05:29:35 +00003240 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +00003241 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
3242 // Split a non-zero base out of an addrec.
Alexandros Lamprineas0ee3ec22016-11-09 08:53:07 +00003243 if (AR->getStart()->isZero() || !AR->isAffine())
Andrew Trickc8037062012-07-17 05:30:37 +00003244 return S;
3245
3246 const SCEV *Remainder = CollectSubexprs(AR->getStart(),
3247 C, Ops, L, SE, Depth+1);
3248 // Split the non-zero AddRec unless it is part of a nested recurrence that
3249 // does not pertain to this loop.
3250 if (Remainder && (AR->getLoop() == L || !isa<SCEVAddRecExpr>(Remainder))) {
3251 Ops.push_back(C ? SE.getMulExpr(C, Remainder) : Remainder);
Craig Topperf40110f2014-04-25 05:29:35 +00003252 Remainder = nullptr;
Andrew Trickc8037062012-07-17 05:30:37 +00003253 }
3254 if (Remainder != AR->getStart()) {
3255 if (!Remainder)
3256 Remainder = SE.getConstant(AR->getType(), 0);
3257 return SE.getAddRecExpr(Remainder,
3258 AR->getStepRecurrence(SE),
3259 AR->getLoop(),
3260 //FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
3261 SCEV::FlagAnyWrap);
Dan Gohman45774ce2010-02-12 10:34:29 +00003262 }
3263 } else if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
3264 // Break (C * (a + b + c)) into C*a + C*b + C*c.
Andrew Trickc8037062012-07-17 05:30:37 +00003265 if (Mul->getNumOperands() != 2)
3266 return S;
3267 if (const SCEVConstant *Op0 =
3268 dyn_cast<SCEVConstant>(Mul->getOperand(0))) {
3269 C = C ? cast<SCEVConstant>(SE.getMulExpr(C, Op0)) : Op0;
3270 const SCEV *Remainder =
3271 CollectSubexprs(Mul->getOperand(1), C, Ops, L, SE, Depth+1);
3272 if (Remainder)
3273 Ops.push_back(SE.getMulExpr(C, Remainder));
Craig Topperf40110f2014-04-25 05:29:35 +00003274 return nullptr;
Andrew Trickc8037062012-07-17 05:30:37 +00003275 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003276 }
Andrew Trickc8037062012-07-17 05:30:37 +00003277 return S;
Dan Gohman45774ce2010-02-12 10:34:29 +00003278}
3279
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003280/// \brief Helper function for LSRInstance::GenerateReassociations.
3281void LSRInstance::GenerateReassociationsImpl(LSRUse &LU, unsigned LUIdx,
3282 const Formula &Base,
3283 unsigned Depth, size_t Idx,
3284 bool IsScaledReg) {
3285 const SCEV *BaseReg = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx];
3286 SmallVector<const SCEV *, 8> AddOps;
3287 const SCEV *Remainder = CollectSubexprs(BaseReg, nullptr, AddOps, L, SE);
3288 if (Remainder)
3289 AddOps.push_back(Remainder);
3290
3291 if (AddOps.size() == 1)
3292 return;
3293
3294 for (SmallVectorImpl<const SCEV *>::const_iterator J = AddOps.begin(),
3295 JE = AddOps.end();
3296 J != JE; ++J) {
3297
3298 // Loop-variant "unknown" values are uninteresting; we won't be able to
3299 // do anything meaningful with them.
3300 if (isa<SCEVUnknown>(*J) && !SE.isLoopInvariant(*J, L))
3301 continue;
3302
3303 // Don't pull a constant into a register if the constant could be folded
3304 // into an immediate field.
3305 if (isAlwaysFoldable(TTI, SE, LU.MinOffset, LU.MaxOffset, LU.Kind,
3306 LU.AccessTy, *J, Base.getNumRegs() > 1))
3307 continue;
3308
3309 // Collect all operands except *J.
3310 SmallVector<const SCEV *, 8> InnerAddOps(
3311 ((const SmallVector<const SCEV *, 8> &)AddOps).begin(), J);
3312 InnerAddOps.append(std::next(J),
3313 ((const SmallVector<const SCEV *, 8> &)AddOps).end());
3314
3315 // Don't leave just a constant behind in a register if the constant could
3316 // be folded into an immediate field.
3317 if (InnerAddOps.size() == 1 &&
3318 isAlwaysFoldable(TTI, SE, LU.MinOffset, LU.MaxOffset, LU.Kind,
3319 LU.AccessTy, InnerAddOps[0], Base.getNumRegs() > 1))
3320 continue;
3321
3322 const SCEV *InnerSum = SE.getAddExpr(InnerAddOps);
3323 if (InnerSum->isZero())
3324 continue;
3325 Formula F = Base;
3326
3327 // Add the remaining pieces of the add back into the new formula.
3328 const SCEVConstant *InnerSumSC = dyn_cast<SCEVConstant>(InnerSum);
3329 if (InnerSumSC && SE.getTypeSizeInBits(InnerSumSC->getType()) <= 64 &&
3330 TTI.isLegalAddImmediate((uint64_t)F.UnfoldedOffset +
3331 InnerSumSC->getValue()->getZExtValue())) {
3332 F.UnfoldedOffset =
3333 (uint64_t)F.UnfoldedOffset + InnerSumSC->getValue()->getZExtValue();
3334 if (IsScaledReg)
3335 F.ScaledReg = nullptr;
3336 else
3337 F.BaseRegs.erase(F.BaseRegs.begin() + Idx);
3338 } else if (IsScaledReg)
3339 F.ScaledReg = InnerSum;
3340 else
3341 F.BaseRegs[Idx] = InnerSum;
3342
3343 // Add J as its own register, or an unfolded immediate.
3344 const SCEVConstant *SC = dyn_cast<SCEVConstant>(*J);
3345 if (SC && SE.getTypeSizeInBits(SC->getType()) <= 64 &&
3346 TTI.isLegalAddImmediate((uint64_t)F.UnfoldedOffset +
3347 SC->getValue()->getZExtValue()))
3348 F.UnfoldedOffset =
3349 (uint64_t)F.UnfoldedOffset + SC->getValue()->getZExtValue();
3350 else
3351 F.BaseRegs.push_back(*J);
3352 // We may have changed the number of register in base regs, adjust the
3353 // formula accordingly.
Sanjoy Das302bfd02015-08-16 18:22:43 +00003354 F.canonicalize();
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003355
3356 if (InsertFormula(LU, LUIdx, F))
3357 // If that formula hadn't been seen before, recurse to find more like
3358 // it.
3359 GenerateReassociations(LU, LUIdx, LU.Formulae.back(), Depth + 1);
3360 }
3361}
3362
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003363/// Split out subexpressions from adds and the bases of addrecs.
Dan Gohman45774ce2010-02-12 10:34:29 +00003364void LSRInstance::GenerateReassociations(LSRUse &LU, unsigned LUIdx,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003365 Formula Base, unsigned Depth) {
3366 assert(Base.isCanonical() && "Input must be in the canonical form");
Dan Gohman45774ce2010-02-12 10:34:29 +00003367 // Arbitrarily cap recursion to protect compile time.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003368 if (Depth >= 3)
3369 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003370
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003371 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3372 GenerateReassociationsImpl(LU, LUIdx, Base, Depth, i);
Dan Gohman45774ce2010-02-12 10:34:29 +00003373
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003374 if (Base.Scale == 1)
3375 GenerateReassociationsImpl(LU, LUIdx, Base, Depth,
3376 /* Idx */ -1, /* IsScaledReg */ true);
Dan Gohman45774ce2010-02-12 10:34:29 +00003377}
3378
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003379/// Generate a formula consisting of all of the loop-dominating registers added
3380/// into a single register.
Dan Gohman45774ce2010-02-12 10:34:29 +00003381void LSRInstance::GenerateCombinations(LSRUse &LU, unsigned LUIdx,
Dan Gohmane4e51a62010-02-14 18:51:39 +00003382 Formula Base) {
Dan Gohman8b0a4192010-03-01 17:49:51 +00003383 // This method is only interesting on a plurality of registers.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003384 if (Base.BaseRegs.size() + (Base.Scale == 1) <= 1)
3385 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003386
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003387 // Flatten the representation, i.e., reg1 + 1*reg2 => reg1 + reg2, before
3388 // processing the formula.
Sanjoy Das302bfd02015-08-16 18:22:43 +00003389 Base.unscale();
Dan Gohman45774ce2010-02-12 10:34:29 +00003390 Formula F = Base;
3391 F.BaseRegs.clear();
3392 SmallVector<const SCEV *, 4> Ops;
Craig Topper042a3922015-05-25 20:01:18 +00003393 for (const SCEV *BaseReg : Base.BaseRegs) {
Dan Gohman20d9ce22010-11-17 21:41:58 +00003394 if (SE.properlyDominates(BaseReg, L->getHeader()) &&
Dan Gohmanafd6db92010-11-17 21:23:15 +00003395 !SE.hasComputableLoopEvolution(BaseReg, L))
Dan Gohman45774ce2010-02-12 10:34:29 +00003396 Ops.push_back(BaseReg);
3397 else
3398 F.BaseRegs.push_back(BaseReg);
3399 }
3400 if (Ops.size() > 1) {
Dan Gohmanbb7d5222010-02-14 18:50:49 +00003401 const SCEV *Sum = SE.getAddExpr(Ops);
3402 // TODO: If Sum is zero, it probably means ScalarEvolution missed an
3403 // opportunity to fold something. For now, just ignore such cases
Dan Gohman8b0a4192010-03-01 17:49:51 +00003404 // rather than proceed with zero in a register.
Dan Gohmanbb7d5222010-02-14 18:50:49 +00003405 if (!Sum->isZero()) {
3406 F.BaseRegs.push_back(Sum);
Sanjoy Das302bfd02015-08-16 18:22:43 +00003407 F.canonicalize();
Dan Gohmanbb7d5222010-02-14 18:50:49 +00003408 (void)InsertFormula(LU, LUIdx, F);
3409 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003410 }
3411}
3412
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003413/// \brief Helper function for LSRInstance::GenerateSymbolicOffsets.
3414void LSRInstance::GenerateSymbolicOffsetsImpl(LSRUse &LU, unsigned LUIdx,
3415 const Formula &Base, size_t Idx,
3416 bool IsScaledReg) {
3417 const SCEV *G = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx];
3418 GlobalValue *GV = ExtractSymbol(G, SE);
3419 if (G->isZero() || !GV)
3420 return;
3421 Formula F = Base;
3422 F.BaseGV = GV;
3423 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F))
3424 return;
3425 if (IsScaledReg)
3426 F.ScaledReg = G;
3427 else
3428 F.BaseRegs[Idx] = G;
3429 (void)InsertFormula(LU, LUIdx, F);
3430}
3431
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003432/// Generate reuse formulae using symbolic offsets.
Dan Gohman45774ce2010-02-12 10:34:29 +00003433void LSRInstance::GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx,
3434 Formula Base) {
3435 // We can't add a symbolic offset if the address already contains one.
Chandler Carruth6e479322013-01-07 15:04:40 +00003436 if (Base.BaseGV) return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003437
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003438 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3439 GenerateSymbolicOffsetsImpl(LU, LUIdx, Base, i);
3440 if (Base.Scale == 1)
3441 GenerateSymbolicOffsetsImpl(LU, LUIdx, Base, /* Idx */ -1,
3442 /* IsScaledReg */ true);
3443}
3444
3445/// \brief Helper function for LSRInstance::GenerateConstantOffsets.
3446void LSRInstance::GenerateConstantOffsetsImpl(
3447 LSRUse &LU, unsigned LUIdx, const Formula &Base,
3448 const SmallVectorImpl<int64_t> &Worklist, size_t Idx, bool IsScaledReg) {
3449 const SCEV *G = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx];
Craig Topper042a3922015-05-25 20:01:18 +00003450 for (int64_t Offset : Worklist) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003451 Formula F = Base;
Craig Topper042a3922015-05-25 20:01:18 +00003452 F.BaseOffset = (uint64_t)Base.BaseOffset - Offset;
3453 if (isLegalUse(TTI, LU.MinOffset - Offset, LU.MaxOffset - Offset, LU.Kind,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003454 LU.AccessTy, F)) {
3455 // Add the offset to the base register.
Craig Topper042a3922015-05-25 20:01:18 +00003456 const SCEV *NewG = SE.getAddExpr(SE.getConstant(G->getType(), Offset), G);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003457 // If it cancelled out, drop the base register, otherwise update it.
3458 if (NewG->isZero()) {
3459 if (IsScaledReg) {
3460 F.Scale = 0;
3461 F.ScaledReg = nullptr;
3462 } else
Sanjoy Das302bfd02015-08-16 18:22:43 +00003463 F.deleteBaseReg(F.BaseRegs[Idx]);
3464 F.canonicalize();
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003465 } else if (IsScaledReg)
3466 F.ScaledReg = NewG;
3467 else
3468 F.BaseRegs[Idx] = NewG;
3469
3470 (void)InsertFormula(LU, LUIdx, F);
3471 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003472 }
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003473
3474 int64_t Imm = ExtractImmediate(G, SE);
3475 if (G->isZero() || Imm == 0)
3476 return;
3477 Formula F = Base;
3478 F.BaseOffset = (uint64_t)F.BaseOffset + Imm;
3479 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F))
3480 return;
3481 if (IsScaledReg)
3482 F.ScaledReg = G;
3483 else
3484 F.BaseRegs[Idx] = G;
3485 (void)InsertFormula(LU, LUIdx, F);
Dan Gohman45774ce2010-02-12 10:34:29 +00003486}
3487
3488/// GenerateConstantOffsets - Generate reuse formulae using symbolic offsets.
3489void LSRInstance::GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx,
3490 Formula Base) {
3491 // TODO: For now, just add the min and max offset, because it usually isn't
3492 // worthwhile looking at everything inbetween.
Dan Gohman4afd4122010-07-15 15:14:45 +00003493 SmallVector<int64_t, 2> Worklist;
Dan Gohman45774ce2010-02-12 10:34:29 +00003494 Worklist.push_back(LU.MinOffset);
3495 if (LU.MaxOffset != LU.MinOffset)
3496 Worklist.push_back(LU.MaxOffset);
3497
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003498 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3499 GenerateConstantOffsetsImpl(LU, LUIdx, Base, Worklist, i);
3500 if (Base.Scale == 1)
3501 GenerateConstantOffsetsImpl(LU, LUIdx, Base, Worklist, /* Idx */ -1,
3502 /* IsScaledReg */ true);
Dan Gohman45774ce2010-02-12 10:34:29 +00003503}
3504
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003505/// For ICmpZero, check to see if we can scale up the comparison. For example, x
3506/// == y -> x*c == y*c.
Dan Gohman45774ce2010-02-12 10:34:29 +00003507void LSRInstance::GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx,
3508 Formula Base) {
3509 if (LU.Kind != LSRUse::ICmpZero) return;
3510
3511 // Determine the integer type for the base formula.
Chris Lattner229907c2011-07-18 04:54:35 +00003512 Type *IntTy = Base.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003513 if (!IntTy) return;
3514 if (SE.getTypeSizeInBits(IntTy) > 64) return;
3515
3516 // Don't do this if there is more than one offset.
3517 if (LU.MinOffset != LU.MaxOffset) return;
3518
Chandler Carruth6e479322013-01-07 15:04:40 +00003519 assert(!Base.BaseGV && "ICmpZero use is not legal!");
Dan Gohman45774ce2010-02-12 10:34:29 +00003520
3521 // Check each interesting stride.
Craig Topper042a3922015-05-25 20:01:18 +00003522 for (int64_t Factor : Factors) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003523 // Check that the multiplication doesn't overflow.
Chandler Carruth6e479322013-01-07 15:04:40 +00003524 if (Base.BaseOffset == INT64_MIN && Factor == -1)
Dan Gohman5f10d6c2010-02-17 00:41:53 +00003525 continue;
Chandler Carruth6e479322013-01-07 15:04:40 +00003526 int64_t NewBaseOffset = (uint64_t)Base.BaseOffset * Factor;
3527 if (NewBaseOffset / Factor != Base.BaseOffset)
Dan Gohman45774ce2010-02-12 10:34:29 +00003528 continue;
Andrew Trick429e9ed2014-02-26 16:31:56 +00003529 // If the offset will be truncated at this use, check that it is in bounds.
3530 if (!IntTy->isPointerTy() &&
3531 !ConstantInt::isValueValidForType(IntTy, NewBaseOffset))
3532 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003533
3534 // Check that multiplying with the use offset doesn't overflow.
3535 int64_t Offset = LU.MinOffset;
Dan Gohman5f10d6c2010-02-17 00:41:53 +00003536 if (Offset == INT64_MIN && Factor == -1)
3537 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003538 Offset = (uint64_t)Offset * Factor;
Dan Gohman13ac3b22010-02-17 00:42:19 +00003539 if (Offset / Factor != LU.MinOffset)
Dan Gohman45774ce2010-02-12 10:34:29 +00003540 continue;
Andrew Trick429e9ed2014-02-26 16:31:56 +00003541 // If the offset will be truncated at this use, check that it is in bounds.
3542 if (!IntTy->isPointerTy() &&
3543 !ConstantInt::isValueValidForType(IntTy, Offset))
3544 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003545
Dan Gohman963b1c12010-06-24 16:57:52 +00003546 Formula F = Base;
Chandler Carruth6e479322013-01-07 15:04:40 +00003547 F.BaseOffset = NewBaseOffset;
Dan Gohman963b1c12010-06-24 16:57:52 +00003548
Dan Gohman45774ce2010-02-12 10:34:29 +00003549 // Check that this scale is legal.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003550 if (!isLegalUse(TTI, Offset, Offset, LU.Kind, LU.AccessTy, F))
Dan Gohman45774ce2010-02-12 10:34:29 +00003551 continue;
3552
3553 // Compensate for the use having MinOffset built into it.
Chandler Carruth6e479322013-01-07 15:04:40 +00003554 F.BaseOffset = (uint64_t)F.BaseOffset + Offset - LU.MinOffset;
Dan Gohman45774ce2010-02-12 10:34:29 +00003555
Dan Gohman1d2ded72010-05-03 22:09:21 +00003556 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman45774ce2010-02-12 10:34:29 +00003557
3558 // Check that multiplying with each base register doesn't overflow.
3559 for (size_t i = 0, e = F.BaseRegs.size(); i != e; ++i) {
3560 F.BaseRegs[i] = SE.getMulExpr(F.BaseRegs[i], FactorS);
Dan Gohman4eebb942010-02-19 19:35:48 +00003561 if (getExactSDiv(F.BaseRegs[i], FactorS, SE) != Base.BaseRegs[i])
Dan Gohman45774ce2010-02-12 10:34:29 +00003562 goto next;
3563 }
3564
3565 // Check that multiplying with the scaled register doesn't overflow.
3566 if (F.ScaledReg) {
3567 F.ScaledReg = SE.getMulExpr(F.ScaledReg, FactorS);
Dan Gohman4eebb942010-02-19 19:35:48 +00003568 if (getExactSDiv(F.ScaledReg, FactorS, SE) != Base.ScaledReg)
Dan Gohman45774ce2010-02-12 10:34:29 +00003569 continue;
3570 }
3571
Dan Gohman6136e942011-05-03 00:46:49 +00003572 // Check that multiplying with the unfolded offset doesn't overflow.
3573 if (F.UnfoldedOffset != 0) {
Dan Gohman6c4a3192011-05-23 21:07:39 +00003574 if (F.UnfoldedOffset == INT64_MIN && Factor == -1)
3575 continue;
Dan Gohman6136e942011-05-03 00:46:49 +00003576 F.UnfoldedOffset = (uint64_t)F.UnfoldedOffset * Factor;
3577 if (F.UnfoldedOffset / Factor != Base.UnfoldedOffset)
3578 continue;
Andrew Trick429e9ed2014-02-26 16:31:56 +00003579 // If the offset will be truncated, check that it is in bounds.
3580 if (!IntTy->isPointerTy() &&
3581 !ConstantInt::isValueValidForType(IntTy, F.UnfoldedOffset))
3582 continue;
Dan Gohman6136e942011-05-03 00:46:49 +00003583 }
3584
Dan Gohman45774ce2010-02-12 10:34:29 +00003585 // If we make it here and it's legal, add it.
3586 (void)InsertFormula(LU, LUIdx, F);
3587 next:;
3588 }
3589}
3590
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003591/// Generate stride factor reuse formulae by making use of scaled-offset address
3592/// modes, for example.
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00003593void LSRInstance::GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003594 // Determine the integer type for the base formula.
Chris Lattner229907c2011-07-18 04:54:35 +00003595 Type *IntTy = Base.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003596 if (!IntTy) return;
3597
3598 // If this Formula already has a scaled register, we can't add another one.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003599 // Try to unscale the formula to generate a better scale.
Sanjoy Das302bfd02015-08-16 18:22:43 +00003600 if (Base.Scale != 0 && !Base.unscale())
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003601 return;
3602
Sanjoy Das302bfd02015-08-16 18:22:43 +00003603 assert(Base.Scale == 0 && "unscale did not did its job!");
Dan Gohman45774ce2010-02-12 10:34:29 +00003604
3605 // Check each interesting stride.
Craig Topper042a3922015-05-25 20:01:18 +00003606 for (int64_t Factor : Factors) {
Chandler Carruth6e479322013-01-07 15:04:40 +00003607 Base.Scale = Factor;
3608 Base.HasBaseReg = Base.BaseRegs.size() > 1;
Dan Gohman45774ce2010-02-12 10:34:29 +00003609 // Check whether this scale is going to be legal.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003610 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
3611 Base)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003612 // As a special-case, handle special out-of-loop Basic users specially.
3613 // TODO: Reconsider this special case.
3614 if (LU.Kind == LSRUse::Basic &&
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003615 isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LSRUse::Special,
3616 LU.AccessTy, Base) &&
Dan Gohman45774ce2010-02-12 10:34:29 +00003617 LU.AllFixupsOutsideLoop)
3618 LU.Kind = LSRUse::Special;
3619 else
3620 continue;
3621 }
3622 // For an ICmpZero, negating a solitary base register won't lead to
3623 // new solutions.
3624 if (LU.Kind == LSRUse::ICmpZero &&
Chandler Carruth6e479322013-01-07 15:04:40 +00003625 !Base.HasBaseReg && Base.BaseOffset == 0 && !Base.BaseGV)
Dan Gohman45774ce2010-02-12 10:34:29 +00003626 continue;
3627 // For each addrec base reg, apply the scale, if possible.
3628 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3629 if (const SCEVAddRecExpr *AR =
3630 dyn_cast<SCEVAddRecExpr>(Base.BaseRegs[i])) {
Dan Gohman1d2ded72010-05-03 22:09:21 +00003631 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman45774ce2010-02-12 10:34:29 +00003632 if (FactorS->isZero())
3633 continue;
3634 // Divide out the factor, ignoring high bits, since we'll be
3635 // scaling the value back up in the end.
Dan Gohman4eebb942010-02-19 19:35:48 +00003636 if (const SCEV *Quotient = getExactSDiv(AR, FactorS, SE, true)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003637 // TODO: This could be optimized to avoid all the copying.
3638 Formula F = Base;
3639 F.ScaledReg = Quotient;
Sanjoy Das302bfd02015-08-16 18:22:43 +00003640 F.deleteBaseReg(F.BaseRegs[i]);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003641 // The canonical representation of 1*reg is reg, which is already in
3642 // Base. In that case, do not try to insert the formula, it will be
3643 // rejected anyway.
3644 if (F.Scale == 1 && F.BaseRegs.empty())
3645 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003646 (void)InsertFormula(LU, LUIdx, F);
3647 }
3648 }
3649 }
3650}
3651
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003652/// Generate reuse formulae from different IV types.
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00003653void LSRInstance::GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003654 // Don't bother truncating symbolic values.
Chandler Carruth6e479322013-01-07 15:04:40 +00003655 if (Base.BaseGV) return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003656
3657 // Determine the integer type for the base formula.
Chris Lattner229907c2011-07-18 04:54:35 +00003658 Type *DstTy = Base.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003659 if (!DstTy) return;
3660 DstTy = SE.getEffectiveSCEVType(DstTy);
3661
Craig Topper042a3922015-05-25 20:01:18 +00003662 for (Type *SrcTy : Types) {
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003663 if (SrcTy != DstTy && TTI.isTruncateFree(SrcTy, DstTy)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003664 Formula F = Base;
3665
Craig Topper042a3922015-05-25 20:01:18 +00003666 if (F.ScaledReg) F.ScaledReg = SE.getAnyExtendExpr(F.ScaledReg, SrcTy);
3667 for (const SCEV *&BaseReg : F.BaseRegs)
3668 BaseReg = SE.getAnyExtendExpr(BaseReg, SrcTy);
Dan Gohman45774ce2010-02-12 10:34:29 +00003669
3670 // TODO: This assumes we've done basic processing on all uses and
3671 // have an idea what the register usage is.
3672 if (!F.hasRegsUsedByUsesOtherThan(LUIdx, RegUses))
3673 continue;
3674
3675 (void)InsertFormula(LU, LUIdx, F);
3676 }
3677 }
3678}
3679
3680namespace {
3681
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003682/// Helper class for GenerateCrossUseConstantOffsets. It's used to defer
3683/// modifications so that the search phase doesn't have to worry about the data
3684/// structures moving underneath it.
Dan Gohman45774ce2010-02-12 10:34:29 +00003685struct WorkItem {
3686 size_t LUIdx;
3687 int64_t Imm;
3688 const SCEV *OrigReg;
3689
3690 WorkItem(size_t LI, int64_t I, const SCEV *R)
3691 : LUIdx(LI), Imm(I), OrigReg(R) {}
3692
3693 void print(raw_ostream &OS) const;
3694 void dump() const;
3695};
3696
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00003697} // end anonymous namespace
Dan Gohman45774ce2010-02-12 10:34:29 +00003698
3699void WorkItem::print(raw_ostream &OS) const {
3700 OS << "in formulae referencing " << *OrigReg << " in use " << LUIdx
3701 << " , add offset " << Imm;
3702}
3703
Matthias Braun8c209aa2017-01-28 02:02:38 +00003704#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3705LLVM_DUMP_METHOD void WorkItem::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +00003706 print(errs()); errs() << '\n';
3707}
Matthias Braun8c209aa2017-01-28 02:02:38 +00003708#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00003709
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003710/// Look for registers which are a constant distance apart and try to form reuse
3711/// opportunities between them.
Dan Gohman45774ce2010-02-12 10:34:29 +00003712void LSRInstance::GenerateCrossUseConstantOffsets() {
3713 // Group the registers by their value without any added constant offset.
3714 typedef std::map<int64_t, const SCEV *> ImmMapTy;
Craig Topper042a3922015-05-25 20:01:18 +00003715 DenseMap<const SCEV *, ImmMapTy> Map;
Dan Gohman45774ce2010-02-12 10:34:29 +00003716 DenseMap<const SCEV *, SmallBitVector> UsedByIndicesMap;
3717 SmallVector<const SCEV *, 8> Sequence;
Craig Topper042a3922015-05-25 20:01:18 +00003718 for (const SCEV *Use : RegUses) {
3719 const SCEV *Reg = Use; // Make a copy for ExtractImmediate to modify.
Dan Gohman45774ce2010-02-12 10:34:29 +00003720 int64_t Imm = ExtractImmediate(Reg, SE);
Craig Topper042a3922015-05-25 20:01:18 +00003721 auto Pair = Map.insert(std::make_pair(Reg, ImmMapTy()));
Dan Gohman45774ce2010-02-12 10:34:29 +00003722 if (Pair.second)
3723 Sequence.push_back(Reg);
Craig Topper042a3922015-05-25 20:01:18 +00003724 Pair.first->second.insert(std::make_pair(Imm, Use));
3725 UsedByIndicesMap[Reg] |= RegUses.getUsedByIndices(Use);
Dan Gohman45774ce2010-02-12 10:34:29 +00003726 }
3727
3728 // Now examine each set of registers with the same base value. Build up
3729 // a list of work to do and do the work in a separate step so that we're
3730 // not adding formulae and register counts while we're searching.
Dan Gohman110ed642010-09-01 01:45:53 +00003731 SmallVector<WorkItem, 32> WorkItems;
3732 SmallSet<std::pair<size_t, int64_t>, 32> UniqueItems;
Craig Topper042a3922015-05-25 20:01:18 +00003733 for (const SCEV *Reg : Sequence) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003734 const ImmMapTy &Imms = Map.find(Reg)->second;
3735
Dan Gohman363f8472010-02-12 19:20:37 +00003736 // It's not worthwhile looking for reuse if there's only one offset.
3737 if (Imms.size() == 1)
3738 continue;
3739
Dan Gohman45774ce2010-02-12 10:34:29 +00003740 DEBUG(dbgs() << "Generating cross-use offsets for " << *Reg << ':';
Craig Topper042a3922015-05-25 20:01:18 +00003741 for (const auto &Entry : Imms)
3742 dbgs() << ' ' << Entry.first;
Dan Gohman45774ce2010-02-12 10:34:29 +00003743 dbgs() << '\n');
3744
3745 // Examine each offset.
3746 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
3747 J != JE; ++J) {
3748 const SCEV *OrigReg = J->second;
3749
3750 int64_t JImm = J->first;
3751 const SmallBitVector &UsedByIndices = RegUses.getUsedByIndices(OrigReg);
3752
3753 if (!isa<SCEVConstant>(OrigReg) &&
3754 UsedByIndicesMap[Reg].count() == 1) {
3755 DEBUG(dbgs() << "Skipping cross-use reuse for " << *OrigReg << '\n');
3756 continue;
3757 }
3758
3759 // Conservatively examine offsets between this orig reg a few selected
3760 // other orig regs.
3761 ImmMapTy::const_iterator OtherImms[] = {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00003762 Imms.begin(), std::prev(Imms.end()),
3763 Imms.lower_bound((Imms.begin()->first + std::prev(Imms.end())->first) /
3764 2)
Dan Gohman45774ce2010-02-12 10:34:29 +00003765 };
3766 for (size_t i = 0, e = array_lengthof(OtherImms); i != e; ++i) {
3767 ImmMapTy::const_iterator M = OtherImms[i];
Dan Gohman363f8472010-02-12 19:20:37 +00003768 if (M == J || M == JE) continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003769
3770 // Compute the difference between the two.
3771 int64_t Imm = (uint64_t)JImm - M->first;
3772 for (int LUIdx = UsedByIndices.find_first(); LUIdx != -1;
Dan Gohman110ed642010-09-01 01:45:53 +00003773 LUIdx = UsedByIndices.find_next(LUIdx))
Dan Gohman45774ce2010-02-12 10:34:29 +00003774 // Make a memo of this use, offset, and register tuple.
David Blaikie70573dc2014-11-19 07:49:26 +00003775 if (UniqueItems.insert(std::make_pair(LUIdx, Imm)).second)
Dan Gohman110ed642010-09-01 01:45:53 +00003776 WorkItems.push_back(WorkItem(LUIdx, Imm, OrigReg));
Evan Cheng85a9f432009-11-12 07:35:05 +00003777 }
3778 }
3779 }
3780
Dan Gohman45774ce2010-02-12 10:34:29 +00003781 Map.clear();
3782 Sequence.clear();
3783 UsedByIndicesMap.clear();
Dan Gohman110ed642010-09-01 01:45:53 +00003784 UniqueItems.clear();
Dan Gohman45774ce2010-02-12 10:34:29 +00003785
3786 // Now iterate through the worklist and add new formulae.
Craig Topper042a3922015-05-25 20:01:18 +00003787 for (const WorkItem &WI : WorkItems) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003788 size_t LUIdx = WI.LUIdx;
3789 LSRUse &LU = Uses[LUIdx];
3790 int64_t Imm = WI.Imm;
3791 const SCEV *OrigReg = WI.OrigReg;
3792
Chris Lattner229907c2011-07-18 04:54:35 +00003793 Type *IntTy = SE.getEffectiveSCEVType(OrigReg->getType());
Dan Gohman45774ce2010-02-12 10:34:29 +00003794 const SCEV *NegImmS = SE.getSCEV(ConstantInt::get(IntTy, -(uint64_t)Imm));
3795 unsigned BitWidth = SE.getTypeSizeInBits(IntTy);
3796
Dan Gohman8b0a4192010-03-01 17:49:51 +00003797 // TODO: Use a more targeted data structure.
Dan Gohman45774ce2010-02-12 10:34:29 +00003798 for (size_t L = 0, LE = LU.Formulae.size(); L != LE; ++L) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003799 Formula F = LU.Formulae[L];
3800 // FIXME: The code for the scaled and unscaled registers looks
3801 // very similar but slightly different. Investigate if they
3802 // could be merged. That way, we would not have to unscale the
3803 // Formula.
Sanjoy Das302bfd02015-08-16 18:22:43 +00003804 F.unscale();
Dan Gohman45774ce2010-02-12 10:34:29 +00003805 // Use the immediate in the scaled register.
3806 if (F.ScaledReg == OrigReg) {
Chandler Carruth6e479322013-01-07 15:04:40 +00003807 int64_t Offset = (uint64_t)F.BaseOffset + Imm * (uint64_t)F.Scale;
Dan Gohman45774ce2010-02-12 10:34:29 +00003808 // Don't create 50 + reg(-50).
3809 if (F.referencesReg(SE.getSCEV(
Chandler Carruth6e479322013-01-07 15:04:40 +00003810 ConstantInt::get(IntTy, -(uint64_t)Offset))))
Dan Gohman45774ce2010-02-12 10:34:29 +00003811 continue;
3812 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00003813 NewF.BaseOffset = Offset;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003814 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
3815 NewF))
Dan Gohman45774ce2010-02-12 10:34:29 +00003816 continue;
3817 NewF.ScaledReg = SE.getAddExpr(NegImmS, NewF.ScaledReg);
3818
3819 // If the new scale is a constant in a register, and adding the constant
3820 // value to the immediate would produce a value closer to zero than the
3821 // immediate itself, then the formula isn't worthwhile.
3822 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewF.ScaledReg))
Sanjoy Das0de2fec2015-12-17 20:28:46 +00003823 if (C->getValue()->isNegative() != (NewF.BaseOffset < 0) &&
3824 (C->getAPInt().abs() * APInt(BitWidth, F.Scale))
3825 .ule(std::abs(NewF.BaseOffset)))
Dan Gohman45774ce2010-02-12 10:34:29 +00003826 continue;
3827
3828 // OK, looks good.
Sanjoy Das302bfd02015-08-16 18:22:43 +00003829 NewF.canonicalize();
Dan Gohman45774ce2010-02-12 10:34:29 +00003830 (void)InsertFormula(LU, LUIdx, NewF);
3831 } else {
3832 // Use the immediate in a base register.
3833 for (size_t N = 0, NE = F.BaseRegs.size(); N != NE; ++N) {
3834 const SCEV *BaseReg = F.BaseRegs[N];
3835 if (BaseReg != OrigReg)
3836 continue;
3837 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00003838 NewF.BaseOffset = (uint64_t)NewF.BaseOffset + Imm;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003839 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset,
3840 LU.Kind, LU.AccessTy, NewF)) {
3841 if (!TTI.isLegalAddImmediate((uint64_t)NewF.UnfoldedOffset + Imm))
Dan Gohman6136e942011-05-03 00:46:49 +00003842 continue;
3843 NewF = F;
3844 NewF.UnfoldedOffset = (uint64_t)NewF.UnfoldedOffset + Imm;
3845 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003846 NewF.BaseRegs[N] = SE.getAddExpr(NegImmS, BaseReg);
3847
3848 // If the new formula has a constant in a register, and adding the
3849 // constant value to the immediate would produce a value closer to
3850 // zero than the immediate itself, then the formula isn't worthwhile.
Craig Topper10949ae2015-05-23 08:45:10 +00003851 for (const SCEV *NewReg : NewF.BaseRegs)
3852 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewReg))
Sanjoy Das0de2fec2015-12-17 20:28:46 +00003853 if ((C->getAPInt() + NewF.BaseOffset)
3854 .abs()
3855 .slt(std::abs(NewF.BaseOffset)) &&
3856 (C->getAPInt() + NewF.BaseOffset).countTrailingZeros() >=
3857 countTrailingZeros<uint64_t>(NewF.BaseOffset))
Dan Gohman45774ce2010-02-12 10:34:29 +00003858 goto skip_formula;
3859
3860 // Ok, looks good.
Sanjoy Das302bfd02015-08-16 18:22:43 +00003861 NewF.canonicalize();
Dan Gohman45774ce2010-02-12 10:34:29 +00003862 (void)InsertFormula(LU, LUIdx, NewF);
3863 break;
3864 skip_formula:;
3865 }
3866 }
3867 }
3868 }
Dale Johannesen02cb2bf2009-05-11 17:15:42 +00003869}
3870
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003871/// Generate formulae for each use.
Dan Gohman45774ce2010-02-12 10:34:29 +00003872void
3873LSRInstance::GenerateAllReuseFormulae() {
Dan Gohman521efe62010-02-16 01:42:53 +00003874 // This is split into multiple loops so that hasRegsUsedByUsesOtherThan
Dan Gohman45774ce2010-02-12 10:34:29 +00003875 // queries are more precise.
3876 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3877 LSRUse &LU = Uses[LUIdx];
3878 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3879 GenerateReassociations(LU, LUIdx, LU.Formulae[i]);
3880 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3881 GenerateCombinations(LU, LUIdx, LU.Formulae[i]);
3882 }
3883 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3884 LSRUse &LU = Uses[LUIdx];
3885 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3886 GenerateSymbolicOffsets(LU, LUIdx, LU.Formulae[i]);
3887 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3888 GenerateConstantOffsets(LU, LUIdx, LU.Formulae[i]);
3889 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3890 GenerateICmpZeroScales(LU, LUIdx, LU.Formulae[i]);
3891 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3892 GenerateScales(LU, LUIdx, LU.Formulae[i]);
Dan Gohman521efe62010-02-16 01:42:53 +00003893 }
3894 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3895 LSRUse &LU = Uses[LUIdx];
Dan Gohman45774ce2010-02-12 10:34:29 +00003896 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3897 GenerateTruncates(LU, LUIdx, LU.Formulae[i]);
3898 }
3899
3900 GenerateCrossUseConstantOffsets();
Dan Gohmanbf673e02010-08-29 15:21:38 +00003901
3902 DEBUG(dbgs() << "\n"
3903 "After generating reuse formulae:\n";
3904 print_uses(dbgs()));
Dan Gohman45774ce2010-02-12 10:34:29 +00003905}
3906
Dan Gohman1b61fd92010-10-07 23:43:09 +00003907/// If there are multiple formulae with the same set of registers used
Dan Gohman45774ce2010-02-12 10:34:29 +00003908/// by other uses, pick the best one and delete the others.
3909void LSRInstance::FilterOutUndesirableDedicatedRegisters() {
Dan Gohman5947e162010-10-07 23:52:18 +00003910 DenseSet<const SCEV *> VisitedRegs;
3911 SmallPtrSet<const SCEV *, 16> Regs;
Andrew Trick5df90962011-12-06 03:13:31 +00003912 SmallPtrSet<const SCEV *, 16> LoserRegs;
Dan Gohman45774ce2010-02-12 10:34:29 +00003913#ifndef NDEBUG
Dan Gohman4c4043c2010-05-20 20:05:31 +00003914 bool ChangedFormulae = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00003915#endif
3916
3917 // Collect the best formula for each unique set of shared registers. This
3918 // is reset for each use.
Preston Gurd25c3b6a2013-02-01 20:41:27 +00003919 typedef DenseMap<SmallVector<const SCEV *, 4>, size_t, UniquifierDenseMapInfo>
Dan Gohman45774ce2010-02-12 10:34:29 +00003920 BestFormulaeTy;
3921 BestFormulaeTy BestFormulae;
3922
3923 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3924 LSRUse &LU = Uses[LUIdx];
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00003925 DEBUG(dbgs() << "Filtering for use "; LU.print(dbgs()); dbgs() << '\n');
Dan Gohman45774ce2010-02-12 10:34:29 +00003926
Dan Gohman4cf99b52010-05-18 23:42:37 +00003927 bool Any = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00003928 for (size_t FIdx = 0, NumForms = LU.Formulae.size();
3929 FIdx != NumForms; ++FIdx) {
3930 Formula &F = LU.Formulae[FIdx];
3931
Andrew Trick5df90962011-12-06 03:13:31 +00003932 // Some formulas are instant losers. For example, they may depend on
3933 // nonexistent AddRecs from other loops. These need to be filtered
3934 // immediately, otherwise heuristics could choose them over others leading
3935 // to an unsatisfactory solution. Passing LoserRegs into RateFormula here
3936 // avoids the need to recompute this information across formulae using the
3937 // same bad AddRec. Passing LoserRegs is also essential unless we remove
3938 // the corresponding bad register from the Regs set.
3939 Cost CostF;
3940 Regs.clear();
Jonas Paulsson7a794222016-08-17 13:24:19 +00003941 CostF.RateFormula(TTI, F, Regs, VisitedRegs, L, SE, DT, LU, &LoserRegs);
Andrew Trick5df90962011-12-06 03:13:31 +00003942 if (CostF.isLoser()) {
3943 // During initial formula generation, undesirable formulae are generated
3944 // by uses within other loops that have some non-trivial address mode or
3945 // use the postinc form of the IV. LSR needs to provide these formulae
3946 // as the basis of rediscovering the desired formula that uses an AddRec
3947 // corresponding to the existing phi. Once all formulae have been
3948 // generated, these initial losers may be pruned.
3949 DEBUG(dbgs() << " Filtering loser "; F.print(dbgs());
3950 dbgs() << "\n");
Dan Gohman45774ce2010-02-12 10:34:29 +00003951 }
Andrew Trick5df90962011-12-06 03:13:31 +00003952 else {
Preston Gurd25c3b6a2013-02-01 20:41:27 +00003953 SmallVector<const SCEV *, 4> Key;
Craig Topper77b99412015-05-23 08:01:41 +00003954 for (const SCEV *Reg : F.BaseRegs) {
Andrew Trick5df90962011-12-06 03:13:31 +00003955 if (RegUses.isRegUsedByUsesOtherThan(Reg, LUIdx))
3956 Key.push_back(Reg);
3957 }
3958 if (F.ScaledReg &&
3959 RegUses.isRegUsedByUsesOtherThan(F.ScaledReg, LUIdx))
3960 Key.push_back(F.ScaledReg);
3961 // Unstable sort by host order ok, because this is only used for
3962 // uniquifying.
3963 std::sort(Key.begin(), Key.end());
Dan Gohman45774ce2010-02-12 10:34:29 +00003964
Andrew Trick5df90962011-12-06 03:13:31 +00003965 std::pair<BestFormulaeTy::const_iterator, bool> P =
3966 BestFormulae.insert(std::make_pair(Key, FIdx));
3967 if (P.second)
3968 continue;
3969
Dan Gohman45774ce2010-02-12 10:34:29 +00003970 Formula &Best = LU.Formulae[P.first->second];
Dan Gohman5947e162010-10-07 23:52:18 +00003971
Dan Gohman5947e162010-10-07 23:52:18 +00003972 Cost CostBest;
Dan Gohman5947e162010-10-07 23:52:18 +00003973 Regs.clear();
Jonas Paulsson7a794222016-08-17 13:24:19 +00003974 CostBest.RateFormula(TTI, Best, Regs, VisitedRegs, L, SE, DT, LU);
Dan Gohman5947e162010-10-07 23:52:18 +00003975 if (CostF < CostBest)
Dan Gohman45774ce2010-02-12 10:34:29 +00003976 std::swap(F, Best);
Dan Gohman8aca7ef2010-05-18 22:37:37 +00003977 DEBUG(dbgs() << " Filtering out formula "; F.print(dbgs());
Dan Gohman45774ce2010-02-12 10:34:29 +00003978 dbgs() << "\n"
Dan Gohman8aca7ef2010-05-18 22:37:37 +00003979 " in favor of formula "; Best.print(dbgs());
Dan Gohman45774ce2010-02-12 10:34:29 +00003980 dbgs() << '\n');
Dan Gohman45774ce2010-02-12 10:34:29 +00003981 }
Andrew Trick5df90962011-12-06 03:13:31 +00003982#ifndef NDEBUG
3983 ChangedFormulae = true;
3984#endif
3985 LU.DeleteFormula(F);
3986 --FIdx;
3987 --NumForms;
3988 Any = true;
Dan Gohmand0800242010-05-07 23:36:59 +00003989 }
3990
Dan Gohmanbeebef42010-05-18 23:55:57 +00003991 // Now that we've filtered out some formulae, recompute the Regs set.
Dan Gohman4cf99b52010-05-18 23:42:37 +00003992 if (Any)
3993 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohmand0800242010-05-07 23:36:59 +00003994
3995 // Reset this to prepare for the next use.
Dan Gohman45774ce2010-02-12 10:34:29 +00003996 BestFormulae.clear();
3997 }
3998
Dan Gohman4c4043c2010-05-20 20:05:31 +00003999 DEBUG(if (ChangedFormulae) {
Dan Gohman5b18f032010-02-13 02:06:02 +00004000 dbgs() << "\n"
4001 "After filtering out undesirable candidates:\n";
Dan Gohman45774ce2010-02-12 10:34:29 +00004002 print_uses(dbgs());
4003 });
4004}
4005
Dan Gohmana4eca052010-05-18 22:51:59 +00004006// This is a rough guess that seems to work fairly well.
4007static const size_t ComplexityLimit = UINT16_MAX;
4008
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004009/// Estimate the worst-case number of solutions the solver might have to
4010/// consider. It almost never considers this many solutions because it prune the
4011/// search space, but the pruning isn't always sufficient.
Dan Gohmana4eca052010-05-18 22:51:59 +00004012size_t LSRInstance::EstimateSearchSpaceComplexity() const {
Dan Gohman49d638b2010-10-07 23:37:58 +00004013 size_t Power = 1;
Craig Topper10949ae2015-05-23 08:45:10 +00004014 for (const LSRUse &LU : Uses) {
4015 size_t FSize = LU.Formulae.size();
Dan Gohmana4eca052010-05-18 22:51:59 +00004016 if (FSize >= ComplexityLimit) {
4017 Power = ComplexityLimit;
4018 break;
4019 }
4020 Power *= FSize;
4021 if (Power >= ComplexityLimit)
4022 break;
4023 }
4024 return Power;
4025}
4026
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004027/// When one formula uses a superset of the registers of another formula, it
4028/// won't help reduce register pressure (though it may not necessarily hurt
4029/// register pressure); remove it to simplify the system.
Dan Gohmane9e08732010-08-29 16:09:42 +00004030void LSRInstance::NarrowSearchSpaceByDetectingSupersets() {
Dan Gohman20fab452010-05-19 23:43:12 +00004031 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
4032 DEBUG(dbgs() << "The search space is too complex.\n");
4033
4034 DEBUG(dbgs() << "Narrowing the search space by eliminating formulae "
4035 "which use a superset of registers used by other "
4036 "formulae.\n");
4037
4038 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4039 LSRUse &LU = Uses[LUIdx];
4040 bool Any = false;
4041 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
4042 Formula &F = LU.Formulae[i];
Dan Gohman8ec018c2010-05-20 20:00:41 +00004043 // Look for a formula with a constant or GV in a register. If the use
4044 // also has a formula with that same value in an immediate field,
4045 // delete the one that uses a register.
Dan Gohman20fab452010-05-19 23:43:12 +00004046 for (SmallVectorImpl<const SCEV *>::const_iterator
4047 I = F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I) {
4048 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*I)) {
4049 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00004050 NewF.BaseOffset += C->getValue()->getSExtValue();
Dan Gohman20fab452010-05-19 23:43:12 +00004051 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
4052 (I - F.BaseRegs.begin()));
4053 if (LU.HasFormulaWithSameRegs(NewF)) {
4054 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
4055 LU.DeleteFormula(F);
4056 --i;
4057 --e;
4058 Any = true;
4059 break;
4060 }
4061 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(*I)) {
4062 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue()))
Chandler Carruth6e479322013-01-07 15:04:40 +00004063 if (!F.BaseGV) {
Dan Gohman20fab452010-05-19 23:43:12 +00004064 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00004065 NewF.BaseGV = GV;
Dan Gohman20fab452010-05-19 23:43:12 +00004066 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
4067 (I - F.BaseRegs.begin()));
4068 if (LU.HasFormulaWithSameRegs(NewF)) {
4069 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
4070 dbgs() << '\n');
4071 LU.DeleteFormula(F);
4072 --i;
4073 --e;
4074 Any = true;
4075 break;
4076 }
4077 }
4078 }
4079 }
4080 }
4081 if (Any)
4082 LU.RecomputeRegs(LUIdx, RegUses);
4083 }
4084
4085 DEBUG(dbgs() << "After pre-selection:\n";
4086 print_uses(dbgs()));
4087 }
Dan Gohmane9e08732010-08-29 16:09:42 +00004088}
Dan Gohman20fab452010-05-19 23:43:12 +00004089
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004090/// When there are many registers for expressions like A, A+1, A+2, etc.,
4091/// allocate a single register for them.
Dan Gohmane9e08732010-08-29 16:09:42 +00004092void LSRInstance::NarrowSearchSpaceByCollapsingUnrolledCode() {
Jakub Staszak11bd8352013-02-16 16:08:15 +00004093 if (EstimateSearchSpaceComplexity() < ComplexityLimit)
4094 return;
Dan Gohman20fab452010-05-19 23:43:12 +00004095
Jakub Staszak11bd8352013-02-16 16:08:15 +00004096 DEBUG(dbgs() << "The search space is too complex.\n"
4097 "Narrowing the search space by assuming that uses separated "
4098 "by a constant offset will use the same registers.\n");
Dan Gohman20fab452010-05-19 23:43:12 +00004099
Jakub Staszak11bd8352013-02-16 16:08:15 +00004100 // This is especially useful for unrolled loops.
Dan Gohman8ec018c2010-05-20 20:00:41 +00004101
Jakub Staszak11bd8352013-02-16 16:08:15 +00004102 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4103 LSRUse &LU = Uses[LUIdx];
Craig Topper77b99412015-05-23 08:01:41 +00004104 for (const Formula &F : LU.Formulae) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004105 if (F.BaseOffset == 0 || (F.Scale != 0 && F.Scale != 1))
Jakub Staszak11bd8352013-02-16 16:08:15 +00004106 continue;
Dan Gohman20fab452010-05-19 23:43:12 +00004107
Jakub Staszak11bd8352013-02-16 16:08:15 +00004108 LSRUse *LUThatHas = FindUseWithSimilarFormula(F, LU);
4109 if (!LUThatHas)
4110 continue;
Dan Gohman20fab452010-05-19 23:43:12 +00004111
Jakub Staszak11bd8352013-02-16 16:08:15 +00004112 if (!reconcileNewOffset(*LUThatHas, F.BaseOffset, /*HasBaseReg=*/ false,
4113 LU.Kind, LU.AccessTy))
4114 continue;
Dan Gohman110ed642010-09-01 01:45:53 +00004115
Jakub Staszak11bd8352013-02-16 16:08:15 +00004116 DEBUG(dbgs() << " Deleting use "; LU.print(dbgs()); dbgs() << '\n');
Dan Gohman2fd85d72010-10-08 19:33:26 +00004117
Jakub Staszak11bd8352013-02-16 16:08:15 +00004118 LUThatHas->AllFixupsOutsideLoop &= LU.AllFixupsOutsideLoop;
4119
Jonas Paulsson7a794222016-08-17 13:24:19 +00004120 // Transfer the fixups of LU to LUThatHas.
4121 for (LSRFixup &Fixup : LU.Fixups) {
4122 Fixup.Offset += F.BaseOffset;
4123 LUThatHas->pushFixup(Fixup);
4124 DEBUG(dbgs() << "New fixup has offset " << Fixup.Offset << '\n');
Jakub Staszak11bd8352013-02-16 16:08:15 +00004125 }
Jonas Paulsson7a794222016-08-17 13:24:19 +00004126
Jakub Staszak11bd8352013-02-16 16:08:15 +00004127 // Delete formulae from the new use which are no longer legal.
4128 bool Any = false;
4129 for (size_t i = 0, e = LUThatHas->Formulae.size(); i != e; ++i) {
4130 Formula &F = LUThatHas->Formulae[i];
4131 if (!isLegalUse(TTI, LUThatHas->MinOffset, LUThatHas->MaxOffset,
4132 LUThatHas->Kind, LUThatHas->AccessTy, F)) {
4133 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
4134 dbgs() << '\n');
4135 LUThatHas->DeleteFormula(F);
4136 --i;
4137 --e;
4138 Any = true;
Dan Gohman20fab452010-05-19 23:43:12 +00004139 }
4140 }
Dan Gohman20fab452010-05-19 23:43:12 +00004141
Jakub Staszak11bd8352013-02-16 16:08:15 +00004142 if (Any)
4143 LUThatHas->RecomputeRegs(LUThatHas - &Uses.front(), RegUses);
4144
4145 // Delete the old use.
4146 DeleteUse(LU, LUIdx);
4147 --LUIdx;
4148 --NumUses;
4149 break;
4150 }
Dan Gohman20fab452010-05-19 23:43:12 +00004151 }
Jakub Staszak11bd8352013-02-16 16:08:15 +00004152
4153 DEBUG(dbgs() << "After pre-selection:\n"; print_uses(dbgs()));
Dan Gohmane9e08732010-08-29 16:09:42 +00004154}
Dan Gohman20fab452010-05-19 23:43:12 +00004155
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004156/// Call FilterOutUndesirableDedicatedRegisters again, if necessary, now that
Dan Gohman002ff892010-08-29 16:39:22 +00004157/// we've done more filtering, as it may be able to find more formulae to
4158/// eliminate.
4159void LSRInstance::NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters(){
4160 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
4161 DEBUG(dbgs() << "The search space is too complex.\n");
4162
4163 DEBUG(dbgs() << "Narrowing the search space by re-filtering out "
4164 "undesirable dedicated registers.\n");
4165
4166 FilterOutUndesirableDedicatedRegisters();
4167
4168 DEBUG(dbgs() << "After pre-selection:\n";
4169 print_uses(dbgs()));
4170 }
4171}
4172
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004173/// Pick a register which seems likely to be profitable, and then in any use
4174/// which has any reference to that register, delete all formulae which do not
4175/// reference that register.
Dan Gohmane9e08732010-08-29 16:09:42 +00004176void LSRInstance::NarrowSearchSpaceByPickingWinnerRegs() {
Dan Gohmana4ca28a2010-05-20 20:52:00 +00004177 // With all other options exhausted, loop until the system is simple
4178 // enough to handle.
Dan Gohman45774ce2010-02-12 10:34:29 +00004179 SmallPtrSet<const SCEV *, 4> Taken;
Dan Gohmana4eca052010-05-18 22:51:59 +00004180 while (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004181 // Ok, we have too many of formulae on our hands to conveniently handle.
4182 // Use a rough heuristic to thin out the list.
Dan Gohman63e90152010-05-18 22:41:32 +00004183 DEBUG(dbgs() << "The search space is too complex.\n");
Dan Gohman45774ce2010-02-12 10:34:29 +00004184
4185 // Pick the register which is used by the most LSRUses, which is likely
4186 // to be a good reuse register candidate.
Craig Topperf40110f2014-04-25 05:29:35 +00004187 const SCEV *Best = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +00004188 unsigned BestNum = 0;
Craig Topper77b99412015-05-23 08:01:41 +00004189 for (const SCEV *Reg : RegUses) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004190 if (Taken.count(Reg))
4191 continue;
Evgeny Stupachenko0c4300f2016-11-30 22:23:51 +00004192 if (!Best) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004193 Best = Reg;
Evgeny Stupachenko0c4300f2016-11-30 22:23:51 +00004194 BestNum = RegUses.getUsedByIndices(Reg).count();
4195 } else {
Dan Gohman45774ce2010-02-12 10:34:29 +00004196 unsigned Count = RegUses.getUsedByIndices(Reg).count();
4197 if (Count > BestNum) {
4198 Best = Reg;
4199 BestNum = Count;
4200 }
4201 }
4202 }
4203
4204 DEBUG(dbgs() << "Narrowing the search space by assuming " << *Best
Dan Gohman8b0a4192010-03-01 17:49:51 +00004205 << " will yield profitable reuse.\n");
Dan Gohman45774ce2010-02-12 10:34:29 +00004206 Taken.insert(Best);
4207
4208 // In any use with formulae which references this register, delete formulae
4209 // which don't reference it.
Dan Gohman4cf99b52010-05-18 23:42:37 +00004210 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4211 LSRUse &LU = Uses[LUIdx];
Dan Gohman45774ce2010-02-12 10:34:29 +00004212 if (!LU.Regs.count(Best)) continue;
4213
Dan Gohman4cf99b52010-05-18 23:42:37 +00004214 bool Any = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00004215 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
4216 Formula &F = LU.Formulae[i];
4217 if (!F.referencesReg(Best)) {
4218 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00004219 LU.DeleteFormula(F);
Dan Gohman45774ce2010-02-12 10:34:29 +00004220 --e;
4221 --i;
Dan Gohman4cf99b52010-05-18 23:42:37 +00004222 Any = true;
Dan Gohmand0800242010-05-07 23:36:59 +00004223 assert(e != 0 && "Use has no formulae left! Is Regs inconsistent?");
Dan Gohman45774ce2010-02-12 10:34:29 +00004224 continue;
4225 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004226 }
Dan Gohman4cf99b52010-05-18 23:42:37 +00004227
4228 if (Any)
4229 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman45774ce2010-02-12 10:34:29 +00004230 }
4231
4232 DEBUG(dbgs() << "After pre-selection:\n";
4233 print_uses(dbgs()));
4234 }
4235}
4236
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004237/// If there are an extraordinary number of formulae to choose from, use some
4238/// rough heuristics to prune down the number of formulae. This keeps the main
4239/// solver from taking an extraordinary amount of time in some worst-case
4240/// scenarios.
Dan Gohmane9e08732010-08-29 16:09:42 +00004241void LSRInstance::NarrowSearchSpaceUsingHeuristics() {
4242 NarrowSearchSpaceByDetectingSupersets();
4243 NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman002ff892010-08-29 16:39:22 +00004244 NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Dan Gohmane9e08732010-08-29 16:09:42 +00004245 NarrowSearchSpaceByPickingWinnerRegs();
4246}
4247
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004248/// This is the recursive solver.
Dan Gohman45774ce2010-02-12 10:34:29 +00004249void LSRInstance::SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
4250 Cost &SolutionCost,
4251 SmallVectorImpl<const Formula *> &Workspace,
4252 const Cost &CurCost,
4253 const SmallPtrSet<const SCEV *, 16> &CurRegs,
4254 DenseSet<const SCEV *> &VisitedRegs) const {
4255 // Some ideas:
4256 // - prune more:
4257 // - use more aggressive filtering
4258 // - sort the formula so that the most profitable solutions are found first
4259 // - sort the uses too
4260 // - search faster:
Dan Gohman8b0a4192010-03-01 17:49:51 +00004261 // - don't compute a cost, and then compare. compare while computing a cost
Dan Gohman45774ce2010-02-12 10:34:29 +00004262 // and bail early.
4263 // - track register sets with SmallBitVector
4264
4265 const LSRUse &LU = Uses[Workspace.size()];
4266
4267 // If this use references any register that's already a part of the
4268 // in-progress solution, consider it a requirement that a formula must
4269 // reference that register in order to be considered. This prunes out
4270 // unprofitable searching.
4271 SmallSetVector<const SCEV *, 4> ReqRegs;
Craig Topper46276792014-08-24 23:23:06 +00004272 for (const SCEV *S : CurRegs)
4273 if (LU.Regs.count(S))
4274 ReqRegs.insert(S);
Dan Gohman45774ce2010-02-12 10:34:29 +00004275
4276 SmallPtrSet<const SCEV *, 16> NewRegs;
4277 Cost NewCost;
Craig Topper77b99412015-05-23 08:01:41 +00004278 for (const Formula &F : LU.Formulae) {
Adam Nemetdeab6f92014-04-29 18:25:28 +00004279 // Ignore formulae which may not be ideal in terms of register reuse of
4280 // ReqRegs. The formula should use all required registers before
4281 // introducing new ones.
4282 int NumReqRegsToFind = std::min(F.getNumRegs(), ReqRegs.size());
Craig Topper77b99412015-05-23 08:01:41 +00004283 for (const SCEV *Reg : ReqRegs) {
Adam Nemetdeab6f92014-04-29 18:25:28 +00004284 if ((F.ScaledReg && F.ScaledReg == Reg) ||
David Majnemer0d955d02016-08-11 22:21:41 +00004285 is_contained(F.BaseRegs, Reg)) {
Adam Nemetdeab6f92014-04-29 18:25:28 +00004286 --NumReqRegsToFind;
4287 if (NumReqRegsToFind == 0)
4288 break;
Andrew Tricke3502cb2012-03-22 22:42:51 +00004289 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004290 }
Adam Nemetdeab6f92014-04-29 18:25:28 +00004291 if (NumReqRegsToFind != 0) {
Andrew Tricke3502cb2012-03-22 22:42:51 +00004292 // If none of the formulae satisfied the required registers, then we could
4293 // clear ReqRegs and try again. Currently, we simply give up in this case.
4294 continue;
4295 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004296
4297 // Evaluate the cost of the current formula. If it's already worse than
4298 // the current best, prune the search at that point.
4299 NewCost = CurCost;
4300 NewRegs = CurRegs;
Jonas Paulsson7a794222016-08-17 13:24:19 +00004301 NewCost.RateFormula(TTI, F, NewRegs, VisitedRegs, L, SE, DT, LU);
Dan Gohman45774ce2010-02-12 10:34:29 +00004302 if (NewCost < SolutionCost) {
4303 Workspace.push_back(&F);
4304 if (Workspace.size() != Uses.size()) {
4305 SolveRecurse(Solution, SolutionCost, Workspace, NewCost,
4306 NewRegs, VisitedRegs);
4307 if (F.getNumRegs() == 1 && Workspace.size() == 1)
4308 VisitedRegs.insert(F.ScaledReg ? F.ScaledReg : F.BaseRegs[0]);
4309 } else {
4310 DEBUG(dbgs() << "New best at "; NewCost.print(dbgs());
Andrew Trick4dc3eff2012-01-09 18:58:16 +00004311 dbgs() << ".\n Regs:";
Craig Topper46276792014-08-24 23:23:06 +00004312 for (const SCEV *S : NewRegs)
4313 dbgs() << ' ' << *S;
Dan Gohman45774ce2010-02-12 10:34:29 +00004314 dbgs() << '\n');
4315
4316 SolutionCost = NewCost;
4317 Solution = Workspace;
4318 }
4319 Workspace.pop_back();
4320 }
Dan Gohman5b18f032010-02-13 02:06:02 +00004321 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004322}
4323
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004324/// Choose one formula from each use. Return the results in the given Solution
4325/// vector.
Dan Gohman45774ce2010-02-12 10:34:29 +00004326void LSRInstance::Solve(SmallVectorImpl<const Formula *> &Solution) const {
4327 SmallVector<const Formula *, 8> Workspace;
4328 Cost SolutionCost;
Tim Northoverbc6659c2014-01-22 13:27:00 +00004329 SolutionCost.Lose();
Dan Gohman45774ce2010-02-12 10:34:29 +00004330 Cost CurCost;
4331 SmallPtrSet<const SCEV *, 16> CurRegs;
4332 DenseSet<const SCEV *> VisitedRegs;
4333 Workspace.reserve(Uses.size());
4334
Dan Gohman8ec018c2010-05-20 20:00:41 +00004335 // SolveRecurse does all the work.
Dan Gohman45774ce2010-02-12 10:34:29 +00004336 SolveRecurse(Solution, SolutionCost, Workspace, CurCost,
4337 CurRegs, VisitedRegs);
Andrew Trick58124392011-09-27 00:44:14 +00004338 if (Solution.empty()) {
4339 DEBUG(dbgs() << "\nNo Satisfactory Solution\n");
4340 return;
4341 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004342
4343 // Ok, we've now made all our decisions.
4344 DEBUG(dbgs() << "\n"
4345 "The chosen solution requires "; SolutionCost.print(dbgs());
4346 dbgs() << ":\n";
4347 for (size_t i = 0, e = Uses.size(); i != e; ++i) {
4348 dbgs() << " ";
4349 Uses[i].print(dbgs());
4350 dbgs() << "\n"
4351 " ";
4352 Solution[i]->print(dbgs());
4353 dbgs() << '\n';
4354 });
Dan Gohman6295f2e2010-05-20 20:59:23 +00004355
4356 assert(Solution.size() == Uses.size() && "Malformed solution!");
Dan Gohman45774ce2010-02-12 10:34:29 +00004357}
4358
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004359/// Helper for AdjustInsertPositionForExpand. Climb up the dominator tree far as
4360/// we can go while still being dominated by the input positions. This helps
4361/// canonicalize the insert position, which encourages sharing.
Dan Gohman607e02b2010-04-09 22:07:05 +00004362BasicBlock::iterator
4363LSRInstance::HoistInsertPosition(BasicBlock::iterator IP,
4364 const SmallVectorImpl<Instruction *> &Inputs)
4365 const {
Geoff Berry43e51602016-06-06 19:10:46 +00004366 Instruction *Tentative = &*IP;
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00004367 while (true) {
Geoff Berry43e51602016-06-06 19:10:46 +00004368 bool AllDominate = true;
4369 Instruction *BetterPos = nullptr;
4370 // Don't bother attempting to insert before a catchswitch, their basic block
4371 // cannot have other non-PHI instructions.
4372 if (isa<CatchSwitchInst>(Tentative))
4373 return IP;
4374
4375 for (Instruction *Inst : Inputs) {
4376 if (Inst == Tentative || !DT.dominates(Inst, Tentative)) {
4377 AllDominate = false;
4378 break;
4379 }
4380 // Attempt to find an insert position in the middle of the block,
4381 // instead of at the end, so that it can be used for other expansions.
4382 if (Tentative->getParent() == Inst->getParent() &&
4383 (!BetterPos || !DT.dominates(Inst, BetterPos)))
4384 BetterPos = &*std::next(BasicBlock::iterator(Inst));
4385 }
4386 if (!AllDominate)
4387 break;
4388 if (BetterPos)
4389 IP = BetterPos->getIterator();
4390 else
4391 IP = Tentative->getIterator();
4392
Dan Gohman607e02b2010-04-09 22:07:05 +00004393 const Loop *IPLoop = LI.getLoopFor(IP->getParent());
4394 unsigned IPLoopDepth = IPLoop ? IPLoop->getLoopDepth() : 0;
4395
4396 BasicBlock *IDom;
Dan Gohman8ce95cc2010-05-20 20:00:25 +00004397 for (DomTreeNode *Rung = DT.getNode(IP->getParent()); ; ) {
Dan Gohman9b48b852010-05-20 22:46:54 +00004398 if (!Rung) return IP;
Dan Gohman8ce95cc2010-05-20 20:00:25 +00004399 Rung = Rung->getIDom();
4400 if (!Rung) return IP;
4401 IDom = Rung->getBlock();
Dan Gohman607e02b2010-04-09 22:07:05 +00004402
4403 // Don't climb into a loop though.
4404 const Loop *IDomLoop = LI.getLoopFor(IDom);
4405 unsigned IDomDepth = IDomLoop ? IDomLoop->getLoopDepth() : 0;
4406 if (IDomDepth <= IPLoopDepth &&
4407 (IDomDepth != IPLoopDepth || IDomLoop == IPLoop))
4408 break;
4409 }
4410
Geoff Berry43e51602016-06-06 19:10:46 +00004411 Tentative = IDom->getTerminator();
Dan Gohman607e02b2010-04-09 22:07:05 +00004412 }
4413
4414 return IP;
4415}
4416
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004417/// Determine an input position which will be dominated by the operands and
4418/// which will dominate the result.
Dan Gohmand2df6432010-04-09 02:00:38 +00004419BasicBlock::iterator
Andrew Trickc908b432012-01-20 07:41:13 +00004420LSRInstance::AdjustInsertPositionForExpand(BasicBlock::iterator LowestIP,
Dan Gohman607e02b2010-04-09 22:07:05 +00004421 const LSRFixup &LF,
Andrew Trickc908b432012-01-20 07:41:13 +00004422 const LSRUse &LU,
4423 SCEVExpander &Rewriter) const {
Dan Gohmand2df6432010-04-09 02:00:38 +00004424 // Collect some instructions which must be dominated by the
Dan Gohmand006ab92010-04-07 22:27:08 +00004425 // expanding replacement. These must be dominated by any operands that
Dan Gohman45774ce2010-02-12 10:34:29 +00004426 // will be required in the expansion.
4427 SmallVector<Instruction *, 4> Inputs;
4428 if (Instruction *I = dyn_cast<Instruction>(LF.OperandValToReplace))
4429 Inputs.push_back(I);
4430 if (LU.Kind == LSRUse::ICmpZero)
4431 if (Instruction *I =
4432 dyn_cast<Instruction>(cast<ICmpInst>(LF.UserInst)->getOperand(1)))
4433 Inputs.push_back(I);
Dan Gohmand006ab92010-04-07 22:27:08 +00004434 if (LF.PostIncLoops.count(L)) {
4435 if (LF.isUseFullyOutsideLoop(L))
Dan Gohman52f55632010-03-02 01:59:21 +00004436 Inputs.push_back(L->getLoopLatch()->getTerminator());
4437 else
4438 Inputs.push_back(IVIncInsertPos);
4439 }
Dan Gohman45065392010-04-08 05:57:57 +00004440 // The expansion must also be dominated by the increment positions of any
4441 // loops it for which it is using post-inc mode.
Craig Topper77b99412015-05-23 08:01:41 +00004442 for (const Loop *PIL : LF.PostIncLoops) {
Dan Gohman45065392010-04-08 05:57:57 +00004443 if (PIL == L) continue;
4444
Dan Gohman607e02b2010-04-09 22:07:05 +00004445 // Be dominated by the loop exit.
Dan Gohman45065392010-04-08 05:57:57 +00004446 SmallVector<BasicBlock *, 4> ExitingBlocks;
4447 PIL->getExitingBlocks(ExitingBlocks);
4448 if (!ExitingBlocks.empty()) {
4449 BasicBlock *BB = ExitingBlocks[0];
4450 for (unsigned i = 1, e = ExitingBlocks.size(); i != e; ++i)
4451 BB = DT.findNearestCommonDominator(BB, ExitingBlocks[i]);
4452 Inputs.push_back(BB->getTerminator());
4453 }
4454 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004455
David Majnemerba275f92015-08-19 19:54:02 +00004456 assert(!isa<PHINode>(LowestIP) && !LowestIP->isEHPad()
Andrew Trickc908b432012-01-20 07:41:13 +00004457 && !isa<DbgInfoIntrinsic>(LowestIP) &&
4458 "Insertion point must be a normal instruction");
4459
Dan Gohman45774ce2010-02-12 10:34:29 +00004460 // Then, climb up the immediate dominator tree as far as we can go while
4461 // still being dominated by the input positions.
Andrew Trickc908b432012-01-20 07:41:13 +00004462 BasicBlock::iterator IP = HoistInsertPosition(LowestIP, Inputs);
Dan Gohmand2df6432010-04-09 02:00:38 +00004463
4464 // Don't insert instructions before PHI nodes.
Dan Gohman45774ce2010-02-12 10:34:29 +00004465 while (isa<PHINode>(IP)) ++IP;
Dan Gohmand2df6432010-04-09 02:00:38 +00004466
Bill Wendling86c5cbe2011-08-24 21:06:46 +00004467 // Ignore landingpad instructions.
David Majnemere09d0352016-03-24 21:40:22 +00004468 while (IP->isEHPad()) ++IP;
Bill Wendling86c5cbe2011-08-24 21:06:46 +00004469
Dan Gohmand2df6432010-04-09 02:00:38 +00004470 // Ignore debug intrinsics.
Dan Gohmand42e09d2010-03-26 00:33:27 +00004471 while (isa<DbgInfoIntrinsic>(IP)) ++IP;
Dan Gohman45774ce2010-02-12 10:34:29 +00004472
Andrew Trickc908b432012-01-20 07:41:13 +00004473 // Set IP below instructions recently inserted by SCEVExpander. This keeps the
4474 // IP consistent across expansions and allows the previously inserted
4475 // instructions to be reused by subsequent expansion.
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00004476 while (Rewriter.isInsertedInstruction(&*IP) && IP != LowestIP)
4477 ++IP;
Andrew Trickc908b432012-01-20 07:41:13 +00004478
Dan Gohmand2df6432010-04-09 02:00:38 +00004479 return IP;
4480}
4481
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004482/// Emit instructions for the leading candidate expression for this LSRUse (this
4483/// is called "expanding").
Jonas Paulsson7a794222016-08-17 13:24:19 +00004484Value *LSRInstance::Expand(const LSRUse &LU,
4485 const LSRFixup &LF,
Dan Gohmand2df6432010-04-09 02:00:38 +00004486 const Formula &F,
4487 BasicBlock::iterator IP,
4488 SCEVExpander &Rewriter,
4489 SmallVectorImpl<WeakVH> &DeadInsts) const {
Andrew Trick57243da2013-10-25 21:35:56 +00004490 if (LU.RigidFormula)
4491 return LF.OperandValToReplace;
Dan Gohmand2df6432010-04-09 02:00:38 +00004492
4493 // Determine an input position which will be dominated by the operands and
4494 // which will dominate the result.
Andrew Trickc908b432012-01-20 07:41:13 +00004495 IP = AdjustInsertPositionForExpand(IP, LF, LU, Rewriter);
Geoff Berryd0182802016-08-11 21:05:17 +00004496 Rewriter.setInsertPoint(&*IP);
Dan Gohmand2df6432010-04-09 02:00:38 +00004497
Dan Gohman45774ce2010-02-12 10:34:29 +00004498 // Inform the Rewriter if we have a post-increment use, so that it can
4499 // perform an advantageous expansion.
Dan Gohmand006ab92010-04-07 22:27:08 +00004500 Rewriter.setPostInc(LF.PostIncLoops);
Dan Gohman45774ce2010-02-12 10:34:29 +00004501
4502 // This is the type that the user actually needs.
Chris Lattner229907c2011-07-18 04:54:35 +00004503 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00004504 // This will be the type that we'll initially expand to.
Chris Lattner229907c2011-07-18 04:54:35 +00004505 Type *Ty = F.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00004506 if (!Ty)
4507 // No type known; just expand directly to the ultimate type.
4508 Ty = OpTy;
4509 else if (SE.getEffectiveSCEVType(Ty) == SE.getEffectiveSCEVType(OpTy))
4510 // Expand directly to the ultimate type if it's the right size.
4511 Ty = OpTy;
4512 // This is the type to do integer arithmetic in.
Chris Lattner229907c2011-07-18 04:54:35 +00004513 Type *IntTy = SE.getEffectiveSCEVType(Ty);
Dan Gohman45774ce2010-02-12 10:34:29 +00004514
4515 // Build up a list of operands to add together to form the full base.
4516 SmallVector<const SCEV *, 8> Ops;
4517
4518 // Expand the BaseRegs portion.
Craig Topper77b99412015-05-23 08:01:41 +00004519 for (const SCEV *Reg : F.BaseRegs) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004520 assert(!Reg->isZero() && "Zero allocated in a base register!");
4521
Dan Gohmand006ab92010-04-07 22:27:08 +00004522 // If we're expanding for a post-inc user, make the post-inc adjustment.
4523 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
Sanjoy Das215df9e2015-08-04 01:52:05 +00004524 Reg = TransformForPostIncUse(Denormalize, Reg,
4525 LF.UserInst, LF.OperandValToReplace,
4526 Loops, SE, DT);
Dan Gohman45774ce2010-02-12 10:34:29 +00004527
Geoff Berryd0182802016-08-11 21:05:17 +00004528 Ops.push_back(SE.getUnknown(Rewriter.expandCodeFor(Reg, nullptr)));
Dan Gohman45774ce2010-02-12 10:34:29 +00004529 }
4530
4531 // Expand the ScaledReg portion.
Craig Topperf40110f2014-04-25 05:29:35 +00004532 Value *ICmpScaledV = nullptr;
Chandler Carruth6e479322013-01-07 15:04:40 +00004533 if (F.Scale != 0) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004534 const SCEV *ScaledS = F.ScaledReg;
4535
Dan Gohmand006ab92010-04-07 22:27:08 +00004536 // If we're expanding for a post-inc user, make the post-inc adjustment.
4537 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
Sanjoy Das215df9e2015-08-04 01:52:05 +00004538 ScaledS = TransformForPostIncUse(Denormalize, ScaledS,
4539 LF.UserInst, LF.OperandValToReplace,
4540 Loops, SE, DT);
Dan Gohman45774ce2010-02-12 10:34:29 +00004541
4542 if (LU.Kind == LSRUse::ICmpZero) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004543 // Expand ScaleReg as if it was part of the base regs.
4544 if (F.Scale == 1)
Sanjoy Das215df9e2015-08-04 01:52:05 +00004545 Ops.push_back(
Geoff Berryd0182802016-08-11 21:05:17 +00004546 SE.getUnknown(Rewriter.expandCodeFor(ScaledS, nullptr)));
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004547 else {
4548 // An interesting way of "folding" with an icmp is to use a negated
4549 // scale, which we'll implement by inserting it into the other operand
4550 // of the icmp.
4551 assert(F.Scale == -1 &&
4552 "The only scale supported by ICmpZero uses is -1!");
Geoff Berryd0182802016-08-11 21:05:17 +00004553 ICmpScaledV = Rewriter.expandCodeFor(ScaledS, nullptr);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004554 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004555 } else {
4556 // Otherwise just expand the scaled register and an explicit scale,
4557 // which is expected to be matched as part of the address.
Andrew Trick8370c7c2012-06-15 20:07:29 +00004558
4559 // Flush the operand list to suppress SCEVExpander hoisting address modes.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004560 // Unless the addressing mode will not be folded.
4561 if (!Ops.empty() && LU.Kind == LSRUse::Address &&
4562 isAMCompletelyFolded(TTI, LU, F)) {
Geoff Berryd0182802016-08-11 21:05:17 +00004563 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty);
Andrew Trick8370c7c2012-06-15 20:07:29 +00004564 Ops.clear();
4565 Ops.push_back(SE.getUnknown(FullV));
4566 }
Geoff Berryd0182802016-08-11 21:05:17 +00004567 ScaledS = SE.getUnknown(Rewriter.expandCodeFor(ScaledS, nullptr));
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004568 if (F.Scale != 1)
4569 ScaledS =
4570 SE.getMulExpr(ScaledS, SE.getConstant(ScaledS->getType(), F.Scale));
Dan Gohman45774ce2010-02-12 10:34:29 +00004571 Ops.push_back(ScaledS);
4572 }
4573 }
4574
Dan Gohman29707de2010-03-03 05:29:13 +00004575 // Expand the GV portion.
Chandler Carruth6e479322013-01-07 15:04:40 +00004576 if (F.BaseGV) {
Dan Gohman29707de2010-03-03 05:29:13 +00004577 // Flush the operand list to suppress SCEVExpander hoisting.
Andrew Trick8370c7c2012-06-15 20:07:29 +00004578 if (!Ops.empty()) {
Geoff Berryd0182802016-08-11 21:05:17 +00004579 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty);
Andrew Trick8370c7c2012-06-15 20:07:29 +00004580 Ops.clear();
4581 Ops.push_back(SE.getUnknown(FullV));
4582 }
Chandler Carruth6e479322013-01-07 15:04:40 +00004583 Ops.push_back(SE.getUnknown(F.BaseGV));
Andrew Trick8370c7c2012-06-15 20:07:29 +00004584 }
4585
4586 // Flush the operand list to suppress SCEVExpander hoisting of both folded and
4587 // unfolded offsets. LSR assumes they both live next to their uses.
4588 if (!Ops.empty()) {
Geoff Berryd0182802016-08-11 21:05:17 +00004589 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty);
Dan Gohman29707de2010-03-03 05:29:13 +00004590 Ops.clear();
4591 Ops.push_back(SE.getUnknown(FullV));
4592 }
4593
4594 // Expand the immediate portion.
Chandler Carruth6e479322013-01-07 15:04:40 +00004595 int64_t Offset = (uint64_t)F.BaseOffset + LF.Offset;
Dan Gohman45774ce2010-02-12 10:34:29 +00004596 if (Offset != 0) {
4597 if (LU.Kind == LSRUse::ICmpZero) {
4598 // The other interesting way of "folding" with an ICmpZero is to use a
4599 // negated immediate.
4600 if (!ICmpScaledV)
Eli Friedmanb46345d2011-10-13 23:48:33 +00004601 ICmpScaledV = ConstantInt::get(IntTy, -(uint64_t)Offset);
Dan Gohman45774ce2010-02-12 10:34:29 +00004602 else {
4603 Ops.push_back(SE.getUnknown(ICmpScaledV));
4604 ICmpScaledV = ConstantInt::get(IntTy, Offset);
4605 }
4606 } else {
4607 // Just add the immediate values. These again are expected to be matched
4608 // as part of the address.
Dan Gohman29707de2010-03-03 05:29:13 +00004609 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy, Offset)));
Dan Gohman45774ce2010-02-12 10:34:29 +00004610 }
4611 }
4612
Dan Gohman6136e942011-05-03 00:46:49 +00004613 // Expand the unfolded offset portion.
4614 int64_t UnfoldedOffset = F.UnfoldedOffset;
4615 if (UnfoldedOffset != 0) {
4616 // Just add the immediate values.
4617 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy,
4618 UnfoldedOffset)));
4619 }
4620
Dan Gohman45774ce2010-02-12 10:34:29 +00004621 // Emit instructions summing all the operands.
4622 const SCEV *FullS = Ops.empty() ?
Dan Gohman1d2ded72010-05-03 22:09:21 +00004623 SE.getConstant(IntTy, 0) :
Dan Gohman45774ce2010-02-12 10:34:29 +00004624 SE.getAddExpr(Ops);
Geoff Berryd0182802016-08-11 21:05:17 +00004625 Value *FullV = Rewriter.expandCodeFor(FullS, Ty);
Dan Gohman45774ce2010-02-12 10:34:29 +00004626
4627 // We're done expanding now, so reset the rewriter.
Dan Gohmand006ab92010-04-07 22:27:08 +00004628 Rewriter.clearPostInc();
Dan Gohman45774ce2010-02-12 10:34:29 +00004629
4630 // An ICmpZero Formula represents an ICmp which we're handling as a
4631 // comparison against zero. Now that we've expanded an expression for that
4632 // form, update the ICmp's other operand.
4633 if (LU.Kind == LSRUse::ICmpZero) {
4634 ICmpInst *CI = cast<ICmpInst>(LF.UserInst);
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00004635 DeadInsts.emplace_back(CI->getOperand(1));
Chandler Carruth6e479322013-01-07 15:04:40 +00004636 assert(!F.BaseGV && "ICmp does not support folding a global value and "
Dan Gohman45774ce2010-02-12 10:34:29 +00004637 "a scale at the same time!");
Chandler Carruth6e479322013-01-07 15:04:40 +00004638 if (F.Scale == -1) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004639 if (ICmpScaledV->getType() != OpTy) {
4640 Instruction *Cast =
4641 CastInst::Create(CastInst::getCastOpcode(ICmpScaledV, false,
4642 OpTy, false),
4643 ICmpScaledV, OpTy, "tmp", CI);
4644 ICmpScaledV = Cast;
4645 }
4646 CI->setOperand(1, ICmpScaledV);
4647 } else {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004648 // A scale of 1 means that the scale has been expanded as part of the
4649 // base regs.
4650 assert((F.Scale == 0 || F.Scale == 1) &&
Dan Gohman45774ce2010-02-12 10:34:29 +00004651 "ICmp does not support folding a global value and "
4652 "a scale at the same time!");
4653 Constant *C = ConstantInt::getSigned(SE.getEffectiveSCEVType(OpTy),
4654 -(uint64_t)Offset);
4655 if (C->getType() != OpTy)
4656 C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
4657 OpTy, false),
4658 C, OpTy);
4659
4660 CI->setOperand(1, C);
4661 }
4662 }
4663
4664 return FullV;
4665}
4666
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004667/// Helper for Rewrite. PHI nodes are special because the use of their operands
4668/// effectively happens in their predecessor blocks, so the expression may need
4669/// to be expanded in multiple places.
Dan Gohman6deab962010-02-16 20:25:07 +00004670void LSRInstance::RewriteForPHI(PHINode *PN,
Jonas Paulsson7a794222016-08-17 13:24:19 +00004671 const LSRUse &LU,
Dan Gohman6deab962010-02-16 20:25:07 +00004672 const LSRFixup &LF,
4673 const Formula &F,
Dan Gohman6deab962010-02-16 20:25:07 +00004674 SCEVExpander &Rewriter,
Justin Bogner843fb202015-12-15 19:40:57 +00004675 SmallVectorImpl<WeakVH> &DeadInsts) const {
Dan Gohman6deab962010-02-16 20:25:07 +00004676 DenseMap<BasicBlock *, Value *> Inserted;
4677 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
4678 if (PN->getIncomingValue(i) == LF.OperandValToReplace) {
4679 BasicBlock *BB = PN->getIncomingBlock(i);
4680
4681 // If this is a critical edge, split the edge so that we do not insert
4682 // the code on all predecessor/successor paths. We do this unless this
4683 // is the canonical backedge for this loop, which complicates post-inc
4684 // users.
4685 if (e != 1 && BB->getTerminator()->getNumSuccessors() > 1 &&
David Majnemerbba17392017-01-13 22:24:27 +00004686 !isa<IndirectBrInst>(BB->getTerminator()) &&
4687 !isa<CatchSwitchInst>(BB->getTerminator())) {
Bill Wendling07efd6f2011-08-25 01:08:34 +00004688 BasicBlock *Parent = PN->getParent();
4689 Loop *PNLoop = LI.getLoopFor(Parent);
4690 if (!PNLoop || Parent != PNLoop->getHeader()) {
Dan Gohmande7f6992011-02-08 00:55:13 +00004691 // Split the critical edge.
Craig Topperf40110f2014-04-25 05:29:35 +00004692 BasicBlock *NewBB = nullptr;
Bill Wendling3fb137f2011-08-25 05:55:40 +00004693 if (!Parent->isLandingPad()) {
Chandler Carruth37df2cf2015-01-19 12:09:11 +00004694 NewBB = SplitCriticalEdge(BB, Parent,
4695 CriticalEdgeSplittingOptions(&DT, &LI)
4696 .setMergeIdenticalEdges()
4697 .setDontDeleteUselessPHIs());
Bill Wendling3fb137f2011-08-25 05:55:40 +00004698 } else {
4699 SmallVector<BasicBlock*, 2> NewBBs;
Chandler Carruth96ada252015-07-22 09:52:54 +00004700 SplitLandingPadPredecessors(Parent, BB, "", "", NewBBs, &DT, &LI);
Bill Wendling3fb137f2011-08-25 05:55:40 +00004701 NewBB = NewBBs[0];
4702 }
Andrew Trick402edbb2012-09-18 17:51:33 +00004703 // If NewBB==NULL, then SplitCriticalEdge refused to split because all
4704 // phi predecessors are identical. The simple thing to do is skip
4705 // splitting in this case rather than complicate the API.
4706 if (NewBB) {
4707 // If PN is outside of the loop and BB is in the loop, we want to
4708 // move the block to be immediately before the PHI block, not
4709 // immediately after BB.
4710 if (L->contains(BB) && !L->contains(PN))
4711 NewBB->moveBefore(PN->getParent());
Dan Gohman6deab962010-02-16 20:25:07 +00004712
Andrew Trick402edbb2012-09-18 17:51:33 +00004713 // Splitting the edge can reduce the number of PHI entries we have.
4714 e = PN->getNumIncomingValues();
4715 BB = NewBB;
4716 i = PN->getBasicBlockIndex(BB);
4717 }
Dan Gohmande7f6992011-02-08 00:55:13 +00004718 }
Dan Gohman6deab962010-02-16 20:25:07 +00004719 }
4720
4721 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> Pair =
Craig Topperf40110f2014-04-25 05:29:35 +00004722 Inserted.insert(std::make_pair(BB, static_cast<Value *>(nullptr)));
Dan Gohman6deab962010-02-16 20:25:07 +00004723 if (!Pair.second)
4724 PN->setIncomingValue(i, Pair.first->second);
4725 else {
Jonas Paulsson7a794222016-08-17 13:24:19 +00004726 Value *FullV = Expand(LU, LF, F, BB->getTerminator()->getIterator(),
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00004727 Rewriter, DeadInsts);
Dan Gohman6deab962010-02-16 20:25:07 +00004728
4729 // If this is reuse-by-noop-cast, insert the noop cast.
Chris Lattner229907c2011-07-18 04:54:35 +00004730 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman6deab962010-02-16 20:25:07 +00004731 if (FullV->getType() != OpTy)
4732 FullV =
4733 CastInst::Create(CastInst::getCastOpcode(FullV, false,
4734 OpTy, false),
4735 FullV, LF.OperandValToReplace->getType(),
4736 "tmp", BB->getTerminator());
4737
4738 PN->setIncomingValue(i, FullV);
4739 Pair.first->second = FullV;
4740 }
4741 }
4742}
4743
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004744/// Emit instructions for the leading candidate expression for this LSRUse (this
4745/// is called "expanding"), and update the UserInst to reference the newly
4746/// expanded value.
Jonas Paulsson7a794222016-08-17 13:24:19 +00004747void LSRInstance::Rewrite(const LSRUse &LU,
4748 const LSRFixup &LF,
Dan Gohman45774ce2010-02-12 10:34:29 +00004749 const Formula &F,
Dan Gohman45774ce2010-02-12 10:34:29 +00004750 SCEVExpander &Rewriter,
Justin Bogner843fb202015-12-15 19:40:57 +00004751 SmallVectorImpl<WeakVH> &DeadInsts) const {
Dan Gohman45774ce2010-02-12 10:34:29 +00004752 // First, find an insertion point that dominates UserInst. For PHI nodes,
4753 // find the nearest block which dominates all the relevant uses.
4754 if (PHINode *PN = dyn_cast<PHINode>(LF.UserInst)) {
Jonas Paulsson7a794222016-08-17 13:24:19 +00004755 RewriteForPHI(PN, LU, LF, F, Rewriter, DeadInsts);
Dan Gohman45774ce2010-02-12 10:34:29 +00004756 } else {
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00004757 Value *FullV =
Jonas Paulsson7a794222016-08-17 13:24:19 +00004758 Expand(LU, LF, F, LF.UserInst->getIterator(), Rewriter, DeadInsts);
Dan Gohman45774ce2010-02-12 10:34:29 +00004759
4760 // If this is reuse-by-noop-cast, insert the noop cast.
Chris Lattner229907c2011-07-18 04:54:35 +00004761 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00004762 if (FullV->getType() != OpTy) {
4763 Instruction *Cast =
4764 CastInst::Create(CastInst::getCastOpcode(FullV, false, OpTy, false),
4765 FullV, OpTy, "tmp", LF.UserInst);
4766 FullV = Cast;
4767 }
4768
4769 // Update the user. ICmpZero is handled specially here (for now) because
4770 // Expand may have updated one of the operands of the icmp already, and
4771 // its new value may happen to be equal to LF.OperandValToReplace, in
4772 // which case doing replaceUsesOfWith leads to replacing both operands
4773 // with the same value. TODO: Reorganize this.
Jonas Paulsson7a794222016-08-17 13:24:19 +00004774 if (LU.Kind == LSRUse::ICmpZero)
Dan Gohman45774ce2010-02-12 10:34:29 +00004775 LF.UserInst->setOperand(0, FullV);
4776 else
4777 LF.UserInst->replaceUsesOfWith(LF.OperandValToReplace, FullV);
4778 }
4779
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00004780 DeadInsts.emplace_back(LF.OperandValToReplace);
Dan Gohman45774ce2010-02-12 10:34:29 +00004781}
4782
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004783/// Rewrite all the fixup locations with new values, following the chosen
4784/// solution.
Justin Bogner843fb202015-12-15 19:40:57 +00004785void LSRInstance::ImplementSolution(
4786 const SmallVectorImpl<const Formula *> &Solution) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004787 // Keep track of instructions we may have made dead, so that
4788 // we can remove them after we are done working.
4789 SmallVector<WeakVH, 16> DeadInsts;
4790
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004791 SCEVExpander Rewriter(SE, L->getHeader()->getModule()->getDataLayout(),
4792 "lsr");
Andrew Trick4dc3eff2012-01-09 18:58:16 +00004793#ifndef NDEBUG
4794 Rewriter.setDebugType(DEBUG_TYPE);
4795#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00004796 Rewriter.disableCanonicalMode();
Andrew Trick7fb669a2011-10-07 23:46:21 +00004797 Rewriter.enableLSRMode();
Dan Gohman45774ce2010-02-12 10:34:29 +00004798 Rewriter.setIVIncInsertPos(L, IVIncInsertPos);
4799
Andrew Trickd5d2db92012-01-10 01:45:08 +00004800 // Mark phi nodes that terminate chains so the expander tries to reuse them.
Craig Topper77b99412015-05-23 08:01:41 +00004801 for (const IVChain &Chain : IVChainVec) {
4802 if (PHINode *PN = dyn_cast<PHINode>(Chain.tailUserInst()))
Andrew Trickd5d2db92012-01-10 01:45:08 +00004803 Rewriter.setChainedPhi(PN);
4804 }
4805
Dan Gohman45774ce2010-02-12 10:34:29 +00004806 // Expand the new value definitions and update the users.
Jonas Paulsson7a794222016-08-17 13:24:19 +00004807 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx)
4808 for (const LSRFixup &Fixup : Uses[LUIdx].Fixups) {
4809 Rewrite(Uses[LUIdx], Fixup, *Solution[LUIdx], Rewriter, DeadInsts);
4810 Changed = true;
4811 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004812
Craig Topper77b99412015-05-23 08:01:41 +00004813 for (const IVChain &Chain : IVChainVec) {
4814 GenerateIVChain(Chain, Rewriter, DeadInsts);
Andrew Trick248d4102012-01-09 21:18:52 +00004815 Changed = true;
4816 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004817 // Clean up after ourselves. This must be done before deleting any
4818 // instructions.
4819 Rewriter.clear();
4820
4821 Changed |= DeleteTriviallyDeadInstructions(DeadInsts);
4822}
4823
Justin Bogner843fb202015-12-15 19:40:57 +00004824LSRInstance::LSRInstance(Loop *L, IVUsers &IU, ScalarEvolution &SE,
4825 DominatorTree &DT, LoopInfo &LI,
4826 const TargetTransformInfo &TTI)
4827 : IU(IU), SE(SE), DT(DT), LI(LI), TTI(TTI), L(L), Changed(false),
4828 IVIncInsertPos(nullptr) {
Dan Gohmana83ac2d2009-11-05 21:11:53 +00004829 // If LoopSimplify form is not available, stay out of trouble.
Andrew Trick732ad802012-01-07 03:16:50 +00004830 if (!L->isLoopSimplifyForm())
4831 return;
Dan Gohmana83ac2d2009-11-05 21:11:53 +00004832
Andrew Trick070e5402012-03-16 03:16:56 +00004833 // If there's no interesting work to be done, bail early.
4834 if (IU.empty()) return;
4835
Andrew Trick19f80c12012-04-18 04:00:10 +00004836 // If there's too much analysis to be done, bail early. We won't be able to
4837 // model the problem anyway.
4838 unsigned NumUsers = 0;
Craig Topper77b99412015-05-23 08:01:41 +00004839 for (const IVStrideUse &U : IU) {
Andrew Trick19f80c12012-04-18 04:00:10 +00004840 if (++NumUsers > MaxIVUsers) {
Craig Topper37d0d862015-05-23 08:20:33 +00004841 (void)U;
Craig Topper77b99412015-05-23 08:01:41 +00004842 DEBUG(dbgs() << "LSR skipping loop, too many IV Users in " << U << "\n");
Andrew Trick19f80c12012-04-18 04:00:10 +00004843 return;
4844 }
David Majnemera53b5bb2016-02-03 21:30:34 +00004845 // Bail out if we have a PHI on an EHPad that gets a value from a
4846 // CatchSwitchInst. Because the CatchSwitchInst cannot be split, there is
4847 // no good place to stick any instructions.
4848 if (auto *PN = dyn_cast<PHINode>(U.getUser())) {
4849 auto *FirstNonPHI = PN->getParent()->getFirstNonPHI();
4850 if (isa<FuncletPadInst>(FirstNonPHI) ||
4851 isa<CatchSwitchInst>(FirstNonPHI))
4852 for (BasicBlock *PredBB : PN->blocks())
4853 if (isa<CatchSwitchInst>(PredBB->getFirstNonPHI()))
4854 return;
4855 }
Andrew Trick19f80c12012-04-18 04:00:10 +00004856 }
4857
Andrew Trick070e5402012-03-16 03:16:56 +00004858#ifndef NDEBUG
Andrew Trick12728f02012-01-17 06:45:52 +00004859 // All dominating loops must have preheaders, or SCEVExpander may not be able
4860 // to materialize an AddRecExpr whose Start is an outer AddRecExpr.
4861 //
Andrew Trick070e5402012-03-16 03:16:56 +00004862 // IVUsers analysis should only create users that are dominated by simple loop
4863 // headers. Since this loop should dominate all of its users, its user list
4864 // should be empty if this loop itself is not within a simple loop nest.
Andrew Trick12728f02012-01-17 06:45:52 +00004865 for (DomTreeNode *Rung = DT.getNode(L->getLoopPreheader());
4866 Rung; Rung = Rung->getIDom()) {
4867 BasicBlock *BB = Rung->getBlock();
4868 const Loop *DomLoop = LI.getLoopFor(BB);
4869 if (DomLoop && DomLoop->getHeader() == BB) {
Andrew Trick070e5402012-03-16 03:16:56 +00004870 assert(DomLoop->getLoopPreheader() && "LSR needs a simplified loop nest");
Andrew Trick12728f02012-01-17 06:45:52 +00004871 }
Andrew Trick732ad802012-01-07 03:16:50 +00004872 }
Andrew Trick070e5402012-03-16 03:16:56 +00004873#endif // DEBUG
Dan Gohman85875f72009-03-09 20:34:59 +00004874
Dan Gohman45774ce2010-02-12 10:34:29 +00004875 DEBUG(dbgs() << "\nLSR on loop ";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00004876 L->getHeader()->printAsOperand(dbgs(), /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00004877 dbgs() << ":\n");
Dan Gohmane201f8f2009-03-09 20:46:50 +00004878
Dan Gohman927bcaa2010-05-20 20:33:18 +00004879 // First, perform some low-level loop optimizations.
Dan Gohman45774ce2010-02-12 10:34:29 +00004880 OptimizeShadowIV();
Dan Gohman4c4043c2010-05-20 20:05:31 +00004881 OptimizeLoopTermCond();
Evan Cheng78a4eb82009-05-11 22:33:01 +00004882
Andrew Trick8acb4342011-07-21 00:40:04 +00004883 // If loop preparation eliminates all interesting IV users, bail.
4884 if (IU.empty()) return;
4885
Andrew Trick168dfff2011-09-29 01:53:08 +00004886 // Skip nested loops until we can model them better with formulae.
Andrew Trickd97b83e2012-03-22 22:42:45 +00004887 if (!L->empty()) {
Andrew Trickbc6de902011-09-29 01:33:38 +00004888 DEBUG(dbgs() << "LSR skipping outer loop " << *L << "\n");
Andrew Trick168dfff2011-09-29 01:53:08 +00004889 return;
Andrew Trickbc6de902011-09-29 01:33:38 +00004890 }
4891
Dan Gohman927bcaa2010-05-20 20:33:18 +00004892 // Start collecting data and preparing for the solver.
Andrew Trick29fe5f02012-01-09 19:50:34 +00004893 CollectChains();
Dan Gohman45774ce2010-02-12 10:34:29 +00004894 CollectInterestingTypesAndFactors();
4895 CollectFixupsAndInitialFormulae();
4896 CollectLoopInvariantFixupsAndFormulae();
Chris Lattner9bfa6f82005-08-08 05:28:22 +00004897
Andrew Trick248d4102012-01-09 21:18:52 +00004898 assert(!Uses.empty() && "IVUsers reported at least one use");
Dan Gohman45774ce2010-02-12 10:34:29 +00004899 DEBUG(dbgs() << "LSR found " << Uses.size() << " uses:\n";
4900 print_uses(dbgs()));
Misha Brukmanb1c93172005-04-21 23:48:37 +00004901
Dan Gohman45774ce2010-02-12 10:34:29 +00004902 // Now use the reuse data to generate a bunch of interesting ways
4903 // to formulate the values needed for the uses.
4904 GenerateAllReuseFormulae();
Evan Cheng3df447d2006-03-16 21:53:05 +00004905
Dan Gohman45774ce2010-02-12 10:34:29 +00004906 FilterOutUndesirableDedicatedRegisters();
4907 NarrowSearchSpaceUsingHeuristics();
Dan Gohman92c36962009-12-18 00:06:20 +00004908
Dan Gohman45774ce2010-02-12 10:34:29 +00004909 SmallVector<const Formula *, 8> Solution;
4910 Solve(Solution);
Dan Gohman92c36962009-12-18 00:06:20 +00004911
Dan Gohman45774ce2010-02-12 10:34:29 +00004912 // Release memory that is no longer needed.
4913 Factors.clear();
4914 Types.clear();
4915 RegUses.clear();
4916
Andrew Trick58124392011-09-27 00:44:14 +00004917 if (Solution.empty())
4918 return;
4919
Dan Gohman45774ce2010-02-12 10:34:29 +00004920#ifndef NDEBUG
4921 // Formulae should be legal.
Craig Topper77b99412015-05-23 08:01:41 +00004922 for (const LSRUse &LU : Uses) {
4923 for (const Formula &F : LU.Formulae)
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004924 assert(isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
Craig Topper77b99412015-05-23 08:01:41 +00004925 F) && "Illegal formula generated!");
Dan Gohman45774ce2010-02-12 10:34:29 +00004926 };
4927#endif
4928
4929 // Now that we've decided what we want, make it so.
Justin Bogner843fb202015-12-15 19:40:57 +00004930 ImplementSolution(Solution);
Dan Gohman45774ce2010-02-12 10:34:29 +00004931}
4932
4933void LSRInstance::print_factors_and_types(raw_ostream &OS) const {
4934 if (Factors.empty() && Types.empty()) return;
4935
4936 OS << "LSR has identified the following interesting factors and types: ";
4937 bool First = true;
4938
Craig Topper10949ae2015-05-23 08:45:10 +00004939 for (int64_t Factor : Factors) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004940 if (!First) OS << ", ";
4941 First = false;
Craig Topper10949ae2015-05-23 08:45:10 +00004942 OS << '*' << Factor;
Evan Cheng87fe40b2009-11-10 21:14:05 +00004943 }
Dale Johannesen02cb2bf2009-05-11 17:15:42 +00004944
Craig Topper10949ae2015-05-23 08:45:10 +00004945 for (Type *Ty : Types) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004946 if (!First) OS << ", ";
4947 First = false;
Craig Topper10949ae2015-05-23 08:45:10 +00004948 OS << '(' << *Ty << ')';
Dan Gohman45774ce2010-02-12 10:34:29 +00004949 }
4950 OS << '\n';
4951}
4952
4953void LSRInstance::print_fixups(raw_ostream &OS) const {
4954 OS << "LSR is examining the following fixup sites:\n";
Jonas Paulsson7a794222016-08-17 13:24:19 +00004955 for (const LSRUse &LU : Uses)
4956 for (const LSRFixup &LF : LU.Fixups) {
4957 dbgs() << " ";
4958 LF.print(OS);
4959 OS << '\n';
4960 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004961}
4962
4963void LSRInstance::print_uses(raw_ostream &OS) const {
4964 OS << "LSR is examining the following uses:\n";
Craig Topper77b99412015-05-23 08:01:41 +00004965 for (const LSRUse &LU : Uses) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004966 dbgs() << " ";
4967 LU.print(OS);
4968 OS << '\n';
Craig Topper77b99412015-05-23 08:01:41 +00004969 for (const Formula &F : LU.Formulae) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004970 OS << " ";
Craig Topper77b99412015-05-23 08:01:41 +00004971 F.print(OS);
Dan Gohman45774ce2010-02-12 10:34:29 +00004972 OS << '\n';
4973 }
4974 }
4975}
4976
4977void LSRInstance::print(raw_ostream &OS) const {
4978 print_factors_and_types(OS);
4979 print_fixups(OS);
4980 print_uses(OS);
4981}
4982
Matthias Braun8c209aa2017-01-28 02:02:38 +00004983#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
4984LLVM_DUMP_METHOD void LSRInstance::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +00004985 print(errs()); errs() << '\n';
4986}
Matthias Braun8c209aa2017-01-28 02:02:38 +00004987#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00004988
4989namespace {
4990
4991class LoopStrengthReduce : public LoopPass {
Dan Gohman45774ce2010-02-12 10:34:29 +00004992public:
4993 static char ID; // Pass ID, replacement for typeid
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00004994
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004995 LoopStrengthReduce();
Dan Gohman45774ce2010-02-12 10:34:29 +00004996
4997private:
Craig Topper3e4c6972014-03-05 09:10:37 +00004998 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
4999 void getAnalysisUsage(AnalysisUsage &AU) const override;
Dan Gohman45774ce2010-02-12 10:34:29 +00005000};
Dan Gohman45774ce2010-02-12 10:34:29 +00005001
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00005002} // end anonymous namespace
Dan Gohman45774ce2010-02-12 10:34:29 +00005003
Chandler Carruth26c59fa2013-01-07 14:41:08 +00005004LoopStrengthReduce::LoopStrengthReduce() : LoopPass(ID) {
5005 initializeLoopStrengthReducePass(*PassRegistry::getPassRegistry());
5006}
Dan Gohman45774ce2010-02-12 10:34:29 +00005007
5008void LoopStrengthReduce::getAnalysisUsage(AnalysisUsage &AU) const {
5009 // We split critical edges, so we change the CFG. However, we do update
5010 // many analyses if they are around.
Eric Christopherda6bd452011-02-10 01:48:24 +00005011 AU.addPreservedID(LoopSimplifyID);
Dan Gohman45774ce2010-02-12 10:34:29 +00005012
Chandler Carruth4f8f3072015-01-17 14:16:18 +00005013 AU.addRequired<LoopInfoWrapperPass>();
5014 AU.addPreserved<LoopInfoWrapperPass>();
Eric Christopherda6bd452011-02-10 01:48:24 +00005015 AU.addRequiredID(LoopSimplifyID);
Chandler Carruth73523022014-01-13 13:07:17 +00005016 AU.addRequired<DominatorTreeWrapperPass>();
5017 AU.addPreserved<DominatorTreeWrapperPass>();
Chandler Carruth2f1fd162015-08-17 02:08:17 +00005018 AU.addRequired<ScalarEvolutionWrapperPass>();
5019 AU.addPreserved<ScalarEvolutionWrapperPass>();
Cameron Zwarich97dae4d2011-02-10 23:53:14 +00005020 // Requiring LoopSimplify a second time here prevents IVUsers from running
5021 // twice, since LoopSimplify was invalidated by running ScalarEvolution.
5022 AU.addRequiredID(LoopSimplifyID);
Dehao Chen1a444522016-07-16 22:51:33 +00005023 AU.addRequired<IVUsersWrapperPass>();
5024 AU.addPreserved<IVUsersWrapperPass>();
Chandler Carruth705b1852015-01-31 03:43:40 +00005025 AU.addRequired<TargetTransformInfoWrapperPass>();
Dan Gohman45774ce2010-02-12 10:34:29 +00005026}
5027
Dehao Chen6132ee82016-07-18 21:41:50 +00005028static bool ReduceLoopStrength(Loop *L, IVUsers &IU, ScalarEvolution &SE,
5029 DominatorTree &DT, LoopInfo &LI,
5030 const TargetTransformInfo &TTI) {
Dan Gohman45774ce2010-02-12 10:34:29 +00005031 bool Changed = false;
5032
5033 // Run the main LSR transformation.
Justin Bogner843fb202015-12-15 19:40:57 +00005034 Changed |= LSRInstance(L, IU, SE, DT, LI, TTI).getChanged();
Dan Gohman45774ce2010-02-12 10:34:29 +00005035
Andrew Trick2ec61a82012-01-07 01:36:44 +00005036 // Remove any extra phis created by processing inner loops.
Dan Gohmanb5358002010-01-05 16:31:45 +00005037 Changed |= DeleteDeadPHIs(L->getHeader());
Andrew Trickf950ce82013-01-06 05:59:39 +00005038 if (EnablePhiElim && L->isLoopSimplifyForm()) {
Andrew Trick2ec61a82012-01-07 01:36:44 +00005039 SmallVector<WeakVH, 16> DeadInsts;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00005040 const DataLayout &DL = L->getHeader()->getModule()->getDataLayout();
Dehao Chen6132ee82016-07-18 21:41:50 +00005041 SCEVExpander Rewriter(SE, DL, "lsr");
Andrew Trick2ec61a82012-01-07 01:36:44 +00005042#ifndef NDEBUG
5043 Rewriter.setDebugType(DEBUG_TYPE);
5044#endif
Dehao Chen6132ee82016-07-18 21:41:50 +00005045 unsigned numFolded = Rewriter.replaceCongruentIVs(L, &DT, DeadInsts, &TTI);
Andrew Trick2ec61a82012-01-07 01:36:44 +00005046 if (numFolded) {
5047 Changed = true;
5048 DeleteTriviallyDeadInstructions(DeadInsts);
5049 DeleteDeadPHIs(L->getHeader());
5050 }
5051 }
Evan Cheng03001cb2008-07-07 19:51:32 +00005052 return Changed;
Nate Begemanb18121e2004-10-18 21:08:22 +00005053}
Dehao Chen6132ee82016-07-18 21:41:50 +00005054
5055bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager & /*LPM*/) {
5056 if (skipLoop(L))
5057 return false;
5058
5059 auto &IU = getAnalysis<IVUsersWrapperPass>().getIU();
5060 auto &SE = getAnalysis<ScalarEvolutionWrapperPass>().getSE();
5061 auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
5062 auto &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
5063 const auto &TTI = getAnalysis<TargetTransformInfoWrapperPass>().getTTI(
5064 *L->getHeader()->getParent());
5065 return ReduceLoopStrength(L, IU, SE, DT, LI, TTI);
5066}
5067
Chandler Carruth410eaeb2017-01-11 06:23:21 +00005068PreservedAnalyses LoopStrengthReducePass::run(Loop &L, LoopAnalysisManager &AM,
5069 LoopStandardAnalysisResults &AR,
5070 LPMUpdater &) {
5071 if (!ReduceLoopStrength(&L, AM.getResult<IVUsersAnalysis>(L, AR), AR.SE,
5072 AR.DT, AR.LI, AR.TTI))
Dehao Chen6132ee82016-07-18 21:41:50 +00005073 return PreservedAnalyses::all();
5074
5075 return getLoopPassPreservedAnalyses();
5076}
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00005077
5078char LoopStrengthReduce::ID = 0;
5079INITIALIZE_PASS_BEGIN(LoopStrengthReduce, "loop-reduce",
5080 "Loop Strength Reduction", false, false)
5081INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
5082INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
5083INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass)
5084INITIALIZE_PASS_DEPENDENCY(IVUsersWrapperPass)
5085INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
5086INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
5087INITIALIZE_PASS_END(LoopStrengthReduce, "loop-reduce",
5088 "Loop Strength Reduction", false, false)
5089
5090Pass *llvm::createLoopStrengthReducePass() { return new LoopStrengthReduce(); }