blob: b7d9a258913163baef6bac778cd11f1dbc79245b [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"
Eugene Zelenko306d2992017-10-18 21:46:47 +000068#include "llvm/ADT/iterator_range.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000069#include "llvm/Analysis/IVUsers.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000070#include "llvm/Analysis/LoopAnalysisManager.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000071#include "llvm/Analysis/LoopInfo.h"
Devang Patelb0743b52007-03-06 21:14:09 +000072#include "llvm/Analysis/LoopPass.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000073#include "llvm/Analysis/ScalarEvolution.h"
Nate Begemane68bcd12005-07-30 00:15:07 +000074#include "llvm/Analysis/ScalarEvolutionExpander.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000075#include "llvm/Analysis/ScalarEvolutionExpressions.h"
76#include "llvm/Analysis/ScalarEvolutionNormalization.h"
Chandler Carruth26c59fa2013-01-07 14:41:08 +000077#include "llvm/Analysis/TargetTransformInfo.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000078#include "llvm/IR/BasicBlock.h"
79#include "llvm/IR/Constant.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000080#include "llvm/IR/Constants.h"
81#include "llvm/IR/DerivedTypes.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000082#include "llvm/IR/Dominators.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000083#include "llvm/IR/GlobalValue.h"
Chandler Carruth3bab7e12017-01-11 09:43:56 +000084#include "llvm/IR/IRBuilder.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000085#include "llvm/IR/InstrTypes.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000086#include "llvm/IR/Instruction.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000087#include "llvm/IR/Instructions.h"
88#include "llvm/IR/IntrinsicInst.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000089#include "llvm/IR/Intrinsics.h"
Chandler Carruth3bab7e12017-01-11 09:43:56 +000090#include "llvm/IR/Module.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000091#include "llvm/IR/OperandTraits.h"
92#include "llvm/IR/Operator.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000093#include "llvm/IR/PassManager.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000094#include "llvm/IR/Type.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000095#include "llvm/IR/Use.h"
96#include "llvm/IR/User.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000097#include "llvm/IR/Value.h"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000098#include "llvm/IR/ValueHandle.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000099#include "llvm/Pass.h"
100#include "llvm/Support/Casting.h"
Andrew Trick58124392011-09-27 00:44:14 +0000101#include "llvm/Support/CommandLine.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000102#include "llvm/Support/Compiler.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +0000103#include "llvm/Support/Debug.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000104#include "llvm/Support/ErrorHandling.h"
105#include "llvm/Support/MathExtras.h"
Daniel Dunbar6115b392009-07-26 09:48:23 +0000106#include "llvm/Support/raw_ostream.h"
Dehao Chen6132ee82016-07-18 21:41:50 +0000107#include "llvm/Transforms/Scalar.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +0000108#include "llvm/Transforms/Utils/BasicBlockUtils.h"
109#include "llvm/Transforms/Utils/Local.h"
Jeff Cohenc5009912005-07-30 18:22:27 +0000110#include <algorithm>
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000111#include <cassert>
112#include <cstddef>
113#include <cstdint>
114#include <cstdlib>
115#include <iterator>
Eugene Zelenko306d2992017-10-18 21:46:47 +0000116#include <limits>
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000117#include <map>
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000118#include <utility>
119
Nate Begemanb18121e2004-10-18 21:08:22 +0000120using namespace llvm;
121
Chandler Carruth964daaa2014-04-22 02:55:47 +0000122#define DEBUG_TYPE "loop-reduce"
123
Andrew Trick19f80c12012-04-18 04:00:10 +0000124/// MaxIVUsers is an arbitrary threshold that provides an early opportunitiy for
125/// bail out. This threshold is far beyond the number of users that LSR can
126/// conceivably solve, so it should not affect generated code, but catches the
127/// worst cases before LSR burns too much compile time and stack space.
128static const unsigned MaxIVUsers = 200;
129
Andrew Trickecbe22b2011-10-11 02:30:45 +0000130// Temporary flag to cleanup congruent phis after LSR phi expansion.
131// It's currently disabled until we can determine whether it's truly useful or
132// not. The flag should be removed after the v3.0 release.
Andrew Trick06f6c052012-01-07 07:08:17 +0000133// This is now needed for ivchains.
Benjamin Kramer7ba71be2011-11-26 23:01:57 +0000134static cl::opt<bool> EnablePhiElim(
Andrew Trick06f6c052012-01-07 07:08:17 +0000135 "enable-lsr-phielim", cl::Hidden, cl::init(true),
136 cl::desc("Enable LSR phi elimination"));
Andrew Trick58124392011-09-27 00:44:14 +0000137
Evgeny Stupachenkofe6f5482017-02-11 02:57:43 +0000138// The flag adds instruction count to solutions cost comparision.
139static cl::opt<bool> InsnsCost(
Evgeny Stupachenkoc6752902017-08-07 19:56:34 +0000140 "lsr-insns-cost", cl::Hidden, cl::init(true),
Evgeny Stupachenkofe6f5482017-02-11 02:57:43 +0000141 cl::desc("Add instruction count to a LSR cost model"));
142
Evgeny Stupachenko9909872e302017-02-21 07:34:40 +0000143// Flag to choose how to narrow complex lsr solution
144static cl::opt<bool> LSRExpNarrow(
Evgeny Stupachenkod6aa0d02017-03-04 03:14:05 +0000145 "lsr-exp-narrow", cl::Hidden, cl::init(false),
Evgeny Stupachenko9909872e302017-02-21 07:34:40 +0000146 cl::desc("Narrow LSR complex solution using"
147 " expectation of registers number"));
148
Wei Mi90707392017-07-06 15:52:14 +0000149// Flag to narrow search space by filtering non-optimal formulae with
150// the same ScaledReg and Scale.
151static cl::opt<bool> FilterSameScaledReg(
152 "lsr-filter-same-scaled-reg", cl::Hidden, cl::init(true),
153 cl::desc("Narrow LSR search space by filtering non-optimal formulae"
154 " with the same ScaledReg and Scale"));
155
Andrew Trick248d4102012-01-09 21:18:52 +0000156#ifndef NDEBUG
157// Stress test IV chain generation.
158static cl::opt<bool> StressIVChain(
159 "stress-ivchain", cl::Hidden, cl::init(false),
160 cl::desc("Stress test LSR IV chains"));
161#else
162static bool StressIVChain = false;
163#endif
164
Dan Gohman45774ce2010-02-12 10:34:29 +0000165namespace {
Nate Begemanb18121e2004-10-18 21:08:22 +0000166
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000167struct MemAccessTy {
168 /// Used in situations where the accessed memory type is unknown.
Eugene Zelenko306d2992017-10-18 21:46:47 +0000169 static const unsigned UnknownAddressSpace =
170 std::numeric_limits<unsigned>::max();
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000171
Eugene Zelenko306d2992017-10-18 21:46:47 +0000172 Type *MemTy = nullptr;
173 unsigned AddrSpace = UnknownAddressSpace;
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000174
Eugene Zelenko306d2992017-10-18 21:46:47 +0000175 MemAccessTy() = default;
176 MemAccessTy(Type *Ty, unsigned AS) : MemTy(Ty), AddrSpace(AS) {}
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000177
178 bool operator==(MemAccessTy Other) const {
179 return MemTy == Other.MemTy && AddrSpace == Other.AddrSpace;
180 }
181
182 bool operator!=(MemAccessTy Other) const { return !(*this == Other); }
183
Matt Arsenault1f2ca662017-01-30 19:50:17 +0000184 static MemAccessTy getUnknown(LLVMContext &Ctx,
185 unsigned AS = UnknownAddressSpace) {
186 return MemAccessTy(Type::getVoidTy(Ctx), AS);
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000187 }
188};
189
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000190/// This class holds data which is used to order reuse candidates.
Dan Gohman45774ce2010-02-12 10:34:29 +0000191class RegSortData {
192public:
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000193 /// This represents the set of LSRUse indices which reference
Dan Gohman45774ce2010-02-12 10:34:29 +0000194 /// a particular register.
195 SmallBitVector UsedByIndices;
196
Dan Gohman45774ce2010-02-12 10:34:29 +0000197 void print(raw_ostream &OS) const;
198 void dump() const;
199};
200
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000201} // end anonymous namespace
Dan Gohman45774ce2010-02-12 10:34:29 +0000202
Aaron Ballman615eb472017-10-15 14:32:27 +0000203#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +0000204void RegSortData::print(raw_ostream &OS) const {
205 OS << "[NumUses=" << UsedByIndices.count() << ']';
206}
207
Matthias Braun8c209aa2017-01-28 02:02:38 +0000208LLVM_DUMP_METHOD void RegSortData::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +0000209 print(errs()); errs() << '\n';
210}
Matthias Braun8c209aa2017-01-28 02:02:38 +0000211#endif
Dan Gohman2a12ae72009-02-20 04:17:46 +0000212
Chris Lattner79a42ac2006-12-19 21:40:18 +0000213namespace {
Dale Johannesene3a02be2007-03-20 00:47:50 +0000214
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000215/// Map register candidates to information about how they are used.
Dan Gohman45774ce2010-02-12 10:34:29 +0000216class RegUseTracker {
Eugene Zelenko306d2992017-10-18 21:46:47 +0000217 using RegUsesTy = DenseMap<const SCEV *, RegSortData>;
Dale Johannesene3a02be2007-03-20 00:47:50 +0000218
Dan Gohman248c41d2010-05-18 22:33:00 +0000219 RegUsesTy RegUsesMap;
Dan Gohman45774ce2010-02-12 10:34:29 +0000220 SmallVector<const SCEV *, 16> RegSequence;
Evan Cheng3df447d2006-03-16 21:53:05 +0000221
Dan Gohman45774ce2010-02-12 10:34:29 +0000222public:
Sanjoy Das302bfd02015-08-16 18:22:43 +0000223 void countRegister(const SCEV *Reg, size_t LUIdx);
224 void dropRegister(const SCEV *Reg, size_t LUIdx);
225 void swapAndDropUse(size_t LUIdx, size_t LastLUIdx);
Dan Gohman51ad99d2010-01-21 02:09:26 +0000226
Dan Gohman45774ce2010-02-12 10:34:29 +0000227 bool isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const;
Dan Gohman51ad99d2010-01-21 02:09:26 +0000228
Dan Gohman45774ce2010-02-12 10:34:29 +0000229 const SmallBitVector &getUsedByIndices(const SCEV *Reg) const;
Dan Gohman51ad99d2010-01-21 02:09:26 +0000230
Dan Gohman45774ce2010-02-12 10:34:29 +0000231 void clear();
Dan Gohman51ad99d2010-01-21 02:09:26 +0000232
Eugene Zelenko306d2992017-10-18 21:46:47 +0000233 using iterator = SmallVectorImpl<const SCEV *>::iterator;
234 using const_iterator = SmallVectorImpl<const SCEV *>::const_iterator;
235
Dan Gohman45774ce2010-02-12 10:34:29 +0000236 iterator begin() { return RegSequence.begin(); }
237 iterator end() { return RegSequence.end(); }
238 const_iterator begin() const { return RegSequence.begin(); }
239 const_iterator end() const { return RegSequence.end(); }
240};
Dan Gohman51ad99d2010-01-21 02:09:26 +0000241
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000242} // end anonymous namespace
Dan Gohman51ad99d2010-01-21 02:09:26 +0000243
Dan Gohman45774ce2010-02-12 10:34:29 +0000244void
Sanjoy Das302bfd02015-08-16 18:22:43 +0000245RegUseTracker::countRegister(const SCEV *Reg, size_t LUIdx) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000246 std::pair<RegUsesTy::iterator, bool> Pair =
Dan Gohman248c41d2010-05-18 22:33:00 +0000247 RegUsesMap.insert(std::make_pair(Reg, RegSortData()));
Dan Gohman45774ce2010-02-12 10:34:29 +0000248 RegSortData &RSD = Pair.first->second;
249 if (Pair.second)
250 RegSequence.push_back(Reg);
251 RSD.UsedByIndices.resize(std::max(RSD.UsedByIndices.size(), LUIdx + 1));
252 RSD.UsedByIndices.set(LUIdx);
Dan Gohman51ad99d2010-01-21 02:09:26 +0000253}
254
Dan Gohman4cf99b52010-05-18 23:42:37 +0000255void
Sanjoy Das302bfd02015-08-16 18:22:43 +0000256RegUseTracker::dropRegister(const SCEV *Reg, size_t LUIdx) {
Dan Gohman4cf99b52010-05-18 23:42:37 +0000257 RegUsesTy::iterator It = RegUsesMap.find(Reg);
258 assert(It != RegUsesMap.end());
259 RegSortData &RSD = It->second;
260 assert(RSD.UsedByIndices.size() > LUIdx);
261 RSD.UsedByIndices.reset(LUIdx);
262}
263
Dan Gohman20fab452010-05-19 23:43:12 +0000264void
Sanjoy Das302bfd02015-08-16 18:22:43 +0000265RegUseTracker::swapAndDropUse(size_t LUIdx, size_t LastLUIdx) {
Dan Gohmana7b68d62010-10-07 23:33:43 +0000266 assert(LUIdx <= LastLUIdx);
267
268 // Update RegUses. The data structure is not optimized for this purpose;
269 // we must iterate through it and update each of the bit vectors.
Craig Topper10949ae2015-05-23 08:45:10 +0000270 for (auto &Pair : RegUsesMap) {
271 SmallBitVector &UsedByIndices = Pair.second.UsedByIndices;
Dan Gohmana7b68d62010-10-07 23:33:43 +0000272 if (LUIdx < UsedByIndices.size())
273 UsedByIndices[LUIdx] =
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000274 LastLUIdx < UsedByIndices.size() ? UsedByIndices[LastLUIdx] : false;
Dan Gohmana7b68d62010-10-07 23:33:43 +0000275 UsedByIndices.resize(std::min(UsedByIndices.size(), LastLUIdx));
276 }
Dan Gohman20fab452010-05-19 23:43:12 +0000277}
278
Dan Gohman45774ce2010-02-12 10:34:29 +0000279bool
280RegUseTracker::isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const {
Dan Gohman4f13bbf2010-08-29 15:18:49 +0000281 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
282 if (I == RegUsesMap.end())
283 return false;
284 const SmallBitVector &UsedByIndices = I->second.UsedByIndices;
Dan Gohman45774ce2010-02-12 10:34:29 +0000285 int i = UsedByIndices.find_first();
286 if (i == -1) return false;
287 if ((size_t)i != LUIdx) return true;
288 return UsedByIndices.find_next(i) != -1;
289}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000290
Dan Gohman45774ce2010-02-12 10:34:29 +0000291const SmallBitVector &RegUseTracker::getUsedByIndices(const SCEV *Reg) const {
Dan Gohman248c41d2010-05-18 22:33:00 +0000292 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
293 assert(I != RegUsesMap.end() && "Unknown register!");
Dan Gohman45774ce2010-02-12 10:34:29 +0000294 return I->second.UsedByIndices;
295}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000296
Dan Gohman45774ce2010-02-12 10:34:29 +0000297void RegUseTracker::clear() {
Dan Gohman248c41d2010-05-18 22:33:00 +0000298 RegUsesMap.clear();
Dan Gohman45774ce2010-02-12 10:34:29 +0000299 RegSequence.clear();
300}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000301
Dan Gohman45774ce2010-02-12 10:34:29 +0000302namespace {
303
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000304/// This class holds information that describes a formula for computing
305/// satisfying a use. It may include broken-out immediates and scaled registers.
Dan Gohman45774ce2010-02-12 10:34:29 +0000306struct Formula {
Chandler Carruth6e479322013-01-07 15:04:40 +0000307 /// Global base address used for complex addressing.
Eugene Zelenko306d2992017-10-18 21:46:47 +0000308 GlobalValue *BaseGV = nullptr;
Chandler Carruth6e479322013-01-07 15:04:40 +0000309
310 /// Base offset for complex addressing.
Eugene Zelenko306d2992017-10-18 21:46:47 +0000311 int64_t BaseOffset = 0;
Chandler Carruth6e479322013-01-07 15:04:40 +0000312
313 /// Whether any complex addressing has a base register.
Eugene Zelenko306d2992017-10-18 21:46:47 +0000314 bool HasBaseReg = false;
Chandler Carruth6e479322013-01-07 15:04:40 +0000315
316 /// The scale of any complex addressing.
Eugene Zelenko306d2992017-10-18 21:46:47 +0000317 int64_t Scale = 0;
Dan Gohman45774ce2010-02-12 10:34:29 +0000318
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000319 /// The list of "base" registers for this use. When this is non-empty. The
320 /// canonical representation of a formula is
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000321 /// 1. BaseRegs.size > 1 implies ScaledReg != NULL and
322 /// 2. ScaledReg != NULL implies Scale != 1 || !BaseRegs.empty().
Wei Mi74d5a902017-02-22 21:47:08 +0000323 /// 3. The reg containing recurrent expr related with currect loop in the
324 /// formula should be put in the ScaledReg.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000325 /// #1 enforces that the scaled register is always used when at least two
326 /// registers are needed by the formula: e.g., reg1 + reg2 is reg1 + 1 * reg2.
327 /// #2 enforces that 1 * reg is reg.
Wei Mi74d5a902017-02-22 21:47:08 +0000328 /// #3 ensures invariant regs with respect to current loop can be combined
329 /// together in LSR codegen.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000330 /// This invariant can be temporarly broken while building a formula.
331 /// However, every formula inserted into the LSRInstance must be in canonical
332 /// form.
Preston Gurd25c3b6a2013-02-01 20:41:27 +0000333 SmallVector<const SCEV *, 4> BaseRegs;
Dan Gohman45774ce2010-02-12 10:34:29 +0000334
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000335 /// The 'scaled' register for this use. This should be non-null when Scale is
336 /// not zero.
Eugene Zelenko306d2992017-10-18 21:46:47 +0000337 const SCEV *ScaledReg = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000338
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000339 /// An additional constant offset which added near the use. This requires a
340 /// temporary register, but the offset itself can live in an add immediate
341 /// field rather than a register.
Eugene Zelenko306d2992017-10-18 21:46:47 +0000342 int64_t UnfoldedOffset = 0;
Dan Gohman6136e942011-05-03 00:46:49 +0000343
Eugene Zelenko306d2992017-10-18 21:46:47 +0000344 Formula() = default;
Dan Gohman45774ce2010-02-12 10:34:29 +0000345
Sanjoy Das302bfd02015-08-16 18:22:43 +0000346 void initialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000347
Wei Mi74d5a902017-02-22 21:47:08 +0000348 bool isCanonical(const Loop &L) const;
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000349
Wei Mi74d5a902017-02-22 21:47:08 +0000350 void canonicalize(const Loop &L);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000351
Sanjoy Das302bfd02015-08-16 18:22:43 +0000352 bool unscale();
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000353
Evgeny Stupachenkofe6f5482017-02-11 02:57:43 +0000354 bool hasZeroEnd() const;
355
Adam Nemetdeab6f92014-04-29 18:25:28 +0000356 size_t getNumRegs() const;
Chris Lattner229907c2011-07-18 04:54:35 +0000357 Type *getType() const;
Dan Gohman45774ce2010-02-12 10:34:29 +0000358
Sanjoy Das302bfd02015-08-16 18:22:43 +0000359 void deleteBaseReg(const SCEV *&S);
Dan Gohman80a96082010-05-20 15:17:54 +0000360
Dan Gohman45774ce2010-02-12 10:34:29 +0000361 bool referencesReg(const SCEV *S) const;
362 bool hasRegsUsedByUsesOtherThan(size_t LUIdx,
363 const RegUseTracker &RegUses) const;
364
365 void print(raw_ostream &OS) const;
366 void dump() const;
367};
368
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000369} // end anonymous namespace
Dan Gohman45774ce2010-02-12 10:34:29 +0000370
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000371/// Recursion helper for initialMatch.
Dan Gohman45774ce2010-02-12 10:34:29 +0000372static void DoInitialMatch(const SCEV *S, Loop *L,
373 SmallVectorImpl<const SCEV *> &Good,
374 SmallVectorImpl<const SCEV *> &Bad,
Dan Gohman20d9ce22010-11-17 21:41:58 +0000375 ScalarEvolution &SE) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000376 // Collect expressions which properly dominate the loop header.
Dan Gohman20d9ce22010-11-17 21:41:58 +0000377 if (SE.properlyDominates(S, L->getHeader())) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000378 Good.push_back(S);
379 return;
Dan Gohman51ad99d2010-01-21 02:09:26 +0000380 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000381
382 // Look at add operands.
383 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Craig Topper77b99412015-05-23 08:01:41 +0000384 for (const SCEV *S : Add->operands())
385 DoInitialMatch(S, L, Good, Bad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000386 return;
387 }
388
389 // Look at addrec operands.
390 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S))
Alexandros Lamprineas0ee3ec22016-11-09 08:53:07 +0000391 if (!AR->getStart()->isZero() && AR->isAffine()) {
Dan Gohman20d9ce22010-11-17 21:41:58 +0000392 DoInitialMatch(AR->getStart(), L, Good, Bad, SE);
Dan Gohman1d2ded72010-05-03 22:09:21 +0000393 DoInitialMatch(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
Dan Gohman45774ce2010-02-12 10:34:29 +0000394 AR->getStepRecurrence(SE),
Andrew Trick8b55b732011-03-14 16:50:06 +0000395 // FIXME: AR->getNoWrapFlags()
396 AR->getLoop(), SCEV::FlagAnyWrap),
Dan Gohman20d9ce22010-11-17 21:41:58 +0000397 L, Good, Bad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000398 return;
399 }
400
401 // Handle a multiplication by -1 (negation) if it didn't fold.
402 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S))
403 if (Mul->getOperand(0)->isAllOnesValue()) {
404 SmallVector<const SCEV *, 4> Ops(Mul->op_begin()+1, Mul->op_end());
405 const SCEV *NewMul = SE.getMulExpr(Ops);
406
407 SmallVector<const SCEV *, 4> MyGood;
408 SmallVector<const SCEV *, 4> MyBad;
Dan Gohman20d9ce22010-11-17 21:41:58 +0000409 DoInitialMatch(NewMul, L, MyGood, MyBad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000410 const SCEV *NegOne = SE.getSCEV(ConstantInt::getAllOnesValue(
411 SE.getEffectiveSCEVType(NewMul->getType())));
Craig Topper042a3922015-05-25 20:01:18 +0000412 for (const SCEV *S : MyGood)
413 Good.push_back(SE.getMulExpr(NegOne, S));
414 for (const SCEV *S : MyBad)
415 Bad.push_back(SE.getMulExpr(NegOne, S));
Dan Gohman45774ce2010-02-12 10:34:29 +0000416 return;
417 }
418
419 // Ok, we can't do anything interesting. Just stuff the whole thing into a
420 // register and hope for the best.
421 Bad.push_back(S);
422}
423
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000424/// Incorporate loop-variant parts of S into this Formula, attempting to keep
425/// all loop-invariant and loop-computable values in a single base register.
Sanjoy Das302bfd02015-08-16 18:22:43 +0000426void Formula::initialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000427 SmallVector<const SCEV *, 4> Good;
428 SmallVector<const SCEV *, 4> Bad;
Dan Gohman20d9ce22010-11-17 21:41:58 +0000429 DoInitialMatch(S, L, Good, Bad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000430 if (!Good.empty()) {
Dan Gohman9b5d0bb72010-04-08 23:36:27 +0000431 const SCEV *Sum = SE.getAddExpr(Good);
432 if (!Sum->isZero())
433 BaseRegs.push_back(Sum);
Chandler Carruth6e479322013-01-07 15:04:40 +0000434 HasBaseReg = true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000435 }
436 if (!Bad.empty()) {
Dan Gohman9b5d0bb72010-04-08 23:36:27 +0000437 const SCEV *Sum = SE.getAddExpr(Bad);
438 if (!Sum->isZero())
439 BaseRegs.push_back(Sum);
Chandler Carruth6e479322013-01-07 15:04:40 +0000440 HasBaseReg = true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000441 }
Wei Mi74d5a902017-02-22 21:47:08 +0000442 canonicalize(*L);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000443}
444
Javed Absar0b05f322018-01-17 11:03:06 +0000445/// \brief Check whether or not this formula satisfies the canonical
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000446/// representation.
447/// \see Formula::BaseRegs.
Wei Mi74d5a902017-02-22 21:47:08 +0000448bool Formula::isCanonical(const Loop &L) const {
449 if (!ScaledReg)
450 return BaseRegs.size() <= 1;
451
452 if (Scale != 1)
453 return true;
454
455 if (Scale == 1 && BaseRegs.empty())
456 return false;
457
458 const SCEVAddRecExpr *SAR = dyn_cast<const SCEVAddRecExpr>(ScaledReg);
459 if (SAR && SAR->getLoop() == &L)
460 return true;
461
462 // If ScaledReg is not a recurrent expr, or it is but its loop is not current
463 // loop, meanwhile BaseRegs contains a recurrent expr reg related with current
464 // loop, we want to swap the reg in BaseRegs with ScaledReg.
465 auto I =
466 find_if(make_range(BaseRegs.begin(), BaseRegs.end()), [&](const SCEV *S) {
467 return isa<const SCEVAddRecExpr>(S) &&
468 (cast<SCEVAddRecExpr>(S)->getLoop() == &L);
469 });
470 return I == BaseRegs.end();
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000471}
472
473/// \brief Helper method to morph a formula into its canonical representation.
474/// \see Formula::BaseRegs.
475/// Every formula having more than one base register, must use the ScaledReg
476/// field. Otherwise, we would have to do special cases everywhere in LSR
477/// to treat reg1 + reg2 + ... the same way as reg1 + 1*reg2 + ...
478/// On the other hand, 1*reg should be canonicalized into reg.
Wei Mi74d5a902017-02-22 21:47:08 +0000479void Formula::canonicalize(const Loop &L) {
480 if (isCanonical(L))
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000481 return;
482 // So far we did not need this case. This is easy to implement but it is
483 // useless to maintain dead code. Beside it could hurt compile time.
484 assert(!BaseRegs.empty() && "1*reg => reg, should not be needed.");
Wei Mi74d5a902017-02-22 21:47:08 +0000485
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000486 // Keep the invariant sum in BaseRegs and one of the variant sum in ScaledReg.
Wei Mi74d5a902017-02-22 21:47:08 +0000487 if (!ScaledReg) {
488 ScaledReg = BaseRegs.back();
489 BaseRegs.pop_back();
490 Scale = 1;
491 }
492
493 // If ScaledReg is an invariant with respect to L, find the reg from
494 // BaseRegs containing the recurrent expr related with Loop L. Swap the
495 // reg with ScaledReg.
496 const SCEVAddRecExpr *SAR = dyn_cast<const SCEVAddRecExpr>(ScaledReg);
497 if (!SAR || SAR->getLoop() != &L) {
498 auto I = find_if(make_range(BaseRegs.begin(), BaseRegs.end()),
499 [&](const SCEV *S) {
500 return isa<const SCEVAddRecExpr>(S) &&
501 (cast<SCEVAddRecExpr>(S)->getLoop() == &L);
502 });
503 if (I != BaseRegs.end())
504 std::swap(ScaledReg, *I);
505 }
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000506}
507
508/// \brief Get rid of the scale in the formula.
509/// In other words, this method morphes reg1 + 1*reg2 into reg1 + reg2.
510/// \return true if it was possible to get rid of the scale, false otherwise.
511/// \note After this operation the formula may not be in the canonical form.
Sanjoy Das302bfd02015-08-16 18:22:43 +0000512bool Formula::unscale() {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000513 if (Scale != 1)
514 return false;
515 Scale = 0;
516 BaseRegs.push_back(ScaledReg);
517 ScaledReg = nullptr;
518 return true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000519}
520
Evgeny Stupachenkofe6f5482017-02-11 02:57:43 +0000521bool Formula::hasZeroEnd() const {
522 if (UnfoldedOffset || BaseOffset)
523 return false;
524 if (BaseRegs.size() != 1 || ScaledReg)
525 return false;
526 return true;
527}
528
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000529/// Return the total number of register operands used by this formula. This does
530/// not include register uses implied by non-constant addrec strides.
Adam Nemetdeab6f92014-04-29 18:25:28 +0000531size_t Formula::getNumRegs() const {
Dan Gohman45774ce2010-02-12 10:34:29 +0000532 return !!ScaledReg + BaseRegs.size();
533}
534
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000535/// Return the type of this formula, if it has one, or null otherwise. This type
536/// is meaningless except for the bit size.
Chris Lattner229907c2011-07-18 04:54:35 +0000537Type *Formula::getType() const {
Sanjoy Das215df9e2015-08-04 01:52:05 +0000538 return !BaseRegs.empty() ? BaseRegs.front()->getType() :
539 ScaledReg ? ScaledReg->getType() :
540 BaseGV ? BaseGV->getType() :
541 nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000542}
543
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000544/// Delete the given base reg from the BaseRegs list.
Sanjoy Das302bfd02015-08-16 18:22:43 +0000545void Formula::deleteBaseReg(const SCEV *&S) {
Dan Gohman80a96082010-05-20 15:17:54 +0000546 if (&S != &BaseRegs.back())
547 std::swap(S, BaseRegs.back());
548 BaseRegs.pop_back();
549}
550
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000551/// Test if this formula references the given register.
Dan Gohman45774ce2010-02-12 10:34:29 +0000552bool Formula::referencesReg(const SCEV *S) const {
David Majnemer0d955d02016-08-11 22:21:41 +0000553 return S == ScaledReg || is_contained(BaseRegs, S);
Dan Gohman45774ce2010-02-12 10:34:29 +0000554}
555
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000556/// Test whether this formula uses registers which are used by uses other than
557/// the use with the given index.
Dan Gohman45774ce2010-02-12 10:34:29 +0000558bool Formula::hasRegsUsedByUsesOtherThan(size_t LUIdx,
559 const RegUseTracker &RegUses) const {
560 if (ScaledReg)
561 if (RegUses.isRegUsedByUsesOtherThan(ScaledReg, LUIdx))
562 return true;
Craig Topper042a3922015-05-25 20:01:18 +0000563 for (const SCEV *BaseReg : BaseRegs)
564 if (RegUses.isRegUsedByUsesOtherThan(BaseReg, LUIdx))
Dan Gohman45774ce2010-02-12 10:34:29 +0000565 return true;
566 return false;
567}
568
Aaron Ballman615eb472017-10-15 14:32:27 +0000569#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +0000570void Formula::print(raw_ostream &OS) const {
571 bool First = true;
Chandler Carruth6e479322013-01-07 15:04:40 +0000572 if (BaseGV) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000573 if (!First) OS << " + "; else First = false;
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000574 BaseGV->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +0000575 }
Chandler Carruth6e479322013-01-07 15:04:40 +0000576 if (BaseOffset != 0) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000577 if (!First) OS << " + "; else First = false;
Chandler Carruth6e479322013-01-07 15:04:40 +0000578 OS << BaseOffset;
Dan Gohman45774ce2010-02-12 10:34:29 +0000579 }
Craig Topper042a3922015-05-25 20:01:18 +0000580 for (const SCEV *BaseReg : BaseRegs) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000581 if (!First) OS << " + "; else First = false;
Sanjoy Das215df9e2015-08-04 01:52:05 +0000582 OS << "reg(" << *BaseReg << ')';
Dan Gohman45774ce2010-02-12 10:34:29 +0000583 }
Chandler Carruth6e479322013-01-07 15:04:40 +0000584 if (HasBaseReg && BaseRegs.empty()) {
Dan Gohman06ab08f2010-05-18 22:35:55 +0000585 if (!First) OS << " + "; else First = false;
586 OS << "**error: HasBaseReg**";
Chandler Carruth6e479322013-01-07 15:04:40 +0000587 } else if (!HasBaseReg && !BaseRegs.empty()) {
Dan Gohman06ab08f2010-05-18 22:35:55 +0000588 if (!First) OS << " + "; else First = false;
589 OS << "**error: !HasBaseReg**";
590 }
Chandler Carruth6e479322013-01-07 15:04:40 +0000591 if (Scale != 0) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000592 if (!First) OS << " + "; else First = false;
Chandler Carruth6e479322013-01-07 15:04:40 +0000593 OS << Scale << "*reg(";
Sanjoy Das215df9e2015-08-04 01:52:05 +0000594 if (ScaledReg)
595 OS << *ScaledReg;
596 else
Dan Gohman45774ce2010-02-12 10:34:29 +0000597 OS << "<unknown>";
598 OS << ')';
599 }
Dan Gohman6136e942011-05-03 00:46:49 +0000600 if (UnfoldedOffset != 0) {
Arnaud A. de Grandmaison75c9e6d2014-03-15 22:13:15 +0000601 if (!First) OS << " + ";
Dan Gohman6136e942011-05-03 00:46:49 +0000602 OS << "imm(" << UnfoldedOffset << ')';
603 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000604}
605
Matthias Braun8c209aa2017-01-28 02:02:38 +0000606LLVM_DUMP_METHOD void Formula::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +0000607 print(errs()); errs() << '\n';
608}
Matthias Braun8c209aa2017-01-28 02:02:38 +0000609#endif
Dan Gohman45774ce2010-02-12 10:34:29 +0000610
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000611/// Return true if the given addrec can be sign-extended without changing its
612/// value.
Dan Gohman85af2562010-02-19 19:32:49 +0000613static bool isAddRecSExtable(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
Chris Lattner229907c2011-07-18 04:54:35 +0000614 Type *WideTy =
Dan Gohmanab5fb7f2010-05-20 19:44:23 +0000615 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(AR->getType()) + 1);
Dan Gohman85af2562010-02-19 19:32:49 +0000616 return isa<SCEVAddRecExpr>(SE.getSignExtendExpr(AR, WideTy));
617}
618
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000619/// Return true if the given add can be sign-extended without changing its
620/// value.
Dan Gohman85af2562010-02-19 19:32:49 +0000621static bool isAddSExtable(const SCEVAddExpr *A, ScalarEvolution &SE) {
Chris Lattner229907c2011-07-18 04:54:35 +0000622 Type *WideTy =
Dan Gohmanab5fb7f2010-05-20 19:44:23 +0000623 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(A->getType()) + 1);
Dan Gohman85af2562010-02-19 19:32:49 +0000624 return isa<SCEVAddExpr>(SE.getSignExtendExpr(A, WideTy));
625}
626
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000627/// Return true if the given mul can be sign-extended without changing its
628/// value.
Dan Gohmanab542222010-06-24 16:45:11 +0000629static bool isMulSExtable(const SCEVMulExpr *M, ScalarEvolution &SE) {
Chris Lattner229907c2011-07-18 04:54:35 +0000630 Type *WideTy =
Dan Gohmanab542222010-06-24 16:45:11 +0000631 IntegerType::get(SE.getContext(),
632 SE.getTypeSizeInBits(M->getType()) * M->getNumOperands());
633 return isa<SCEVMulExpr>(SE.getSignExtendExpr(M, WideTy));
Dan Gohman85af2562010-02-19 19:32:49 +0000634}
635
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000636/// Return an expression for LHS /s RHS, if it can be determined and if the
637/// remainder is known to be zero, or null otherwise. If IgnoreSignificantBits
638/// is true, expressions like (X * Y) /s Y are simplified to Y, ignoring that
639/// the multiplication may overflow, which is useful when the result will be
640/// used in a context where the most significant bits are ignored.
Dan Gohman4eebb942010-02-19 19:35:48 +0000641static const SCEV *getExactSDiv(const SCEV *LHS, const SCEV *RHS,
642 ScalarEvolution &SE,
643 bool IgnoreSignificantBits = false) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000644 // Handle the trivial case, which works for any SCEV type.
645 if (LHS == RHS)
Dan Gohman1d2ded72010-05-03 22:09:21 +0000646 return SE.getConstant(LHS->getType(), 1);
Dan Gohman45774ce2010-02-12 10:34:29 +0000647
Dan Gohman47ddf762010-06-24 16:51:25 +0000648 // Handle a few RHS special cases.
649 const SCEVConstant *RC = dyn_cast<SCEVConstant>(RHS);
650 if (RC) {
Sanjoy Das0de2fec2015-12-17 20:28:46 +0000651 const APInt &RA = RC->getAPInt();
Dan Gohman47ddf762010-06-24 16:51:25 +0000652 // Handle x /s -1 as x * -1, to give ScalarEvolution a chance to do
653 // some folding.
654 if (RA.isAllOnesValue())
655 return SE.getMulExpr(LHS, RC);
656 // Handle x /s 1 as x.
657 if (RA == 1)
658 return LHS;
659 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000660
661 // Check for a division of a constant by a constant.
662 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(LHS)) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000663 if (!RC)
Craig Topperf40110f2014-04-25 05:29:35 +0000664 return nullptr;
Sanjoy Das0de2fec2015-12-17 20:28:46 +0000665 const APInt &LA = C->getAPInt();
666 const APInt &RA = RC->getAPInt();
Dan Gohman47ddf762010-06-24 16:51:25 +0000667 if (LA.srem(RA) != 0)
Craig Topperf40110f2014-04-25 05:29:35 +0000668 return nullptr;
Dan Gohman47ddf762010-06-24 16:51:25 +0000669 return SE.getConstant(LA.sdiv(RA));
Dan Gohman45774ce2010-02-12 10:34:29 +0000670 }
671
Dan Gohman85af2562010-02-19 19:32:49 +0000672 // Distribute the sdiv over addrec operands, if the addrec doesn't overflow.
Dan Gohman45774ce2010-02-12 10:34:29 +0000673 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS)) {
Alexandros Lamprineas0ee3ec22016-11-09 08:53:07 +0000674 if ((IgnoreSignificantBits || isAddRecSExtable(AR, SE)) && AR->isAffine()) {
Dan Gohman4eebb942010-02-19 19:35:48 +0000675 const SCEV *Step = getExactSDiv(AR->getStepRecurrence(SE), RHS, SE,
676 IgnoreSignificantBits);
Craig Topperf40110f2014-04-25 05:29:35 +0000677 if (!Step) return nullptr;
Dan Gohman129a8162010-08-19 01:02:31 +0000678 const SCEV *Start = getExactSDiv(AR->getStart(), RHS, SE,
679 IgnoreSignificantBits);
Craig Topperf40110f2014-04-25 05:29:35 +0000680 if (!Start) return nullptr;
Andrew Trick8b55b732011-03-14 16:50:06 +0000681 // FlagNW is independent of the start value, step direction, and is
682 // preserved with smaller magnitude steps.
683 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
684 return SE.getAddRecExpr(Start, Step, AR->getLoop(), SCEV::FlagAnyWrap);
Dan Gohman85af2562010-02-19 19:32:49 +0000685 }
Craig Topperf40110f2014-04-25 05:29:35 +0000686 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000687 }
688
Dan Gohman85af2562010-02-19 19:32:49 +0000689 // Distribute the sdiv over add operands, if the add doesn't overflow.
Dan Gohman45774ce2010-02-12 10:34:29 +0000690 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) {
Dan Gohman85af2562010-02-19 19:32:49 +0000691 if (IgnoreSignificantBits || isAddSExtable(Add, SE)) {
692 SmallVector<const SCEV *, 8> Ops;
Craig Topper042a3922015-05-25 20:01:18 +0000693 for (const SCEV *S : Add->operands()) {
694 const SCEV *Op = getExactSDiv(S, RHS, SE, IgnoreSignificantBits);
Craig Topperf40110f2014-04-25 05:29:35 +0000695 if (!Op) return nullptr;
Dan Gohman85af2562010-02-19 19:32:49 +0000696 Ops.push_back(Op);
697 }
698 return SE.getAddExpr(Ops);
Dan Gohman45774ce2010-02-12 10:34:29 +0000699 }
Craig Topperf40110f2014-04-25 05:29:35 +0000700 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000701 }
702
703 // Check for a multiply operand that we can pull RHS out of.
Dan Gohman963b1c12010-06-24 16:57:52 +0000704 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(LHS)) {
Dan Gohman85af2562010-02-19 19:32:49 +0000705 if (IgnoreSignificantBits || isMulSExtable(Mul, SE)) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000706 SmallVector<const SCEV *, 4> Ops;
707 bool Found = false;
Craig Topper042a3922015-05-25 20:01:18 +0000708 for (const SCEV *S : Mul->operands()) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000709 if (!Found)
Dan Gohman6b733fc2010-05-20 16:23:28 +0000710 if (const SCEV *Q = getExactSDiv(S, RHS, SE,
Dan Gohman4eebb942010-02-19 19:35:48 +0000711 IgnoreSignificantBits)) {
Dan Gohman6b733fc2010-05-20 16:23:28 +0000712 S = Q;
Dan Gohman45774ce2010-02-12 10:34:29 +0000713 Found = true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000714 }
Dan Gohman6b733fc2010-05-20 16:23:28 +0000715 Ops.push_back(S);
Dan Gohman45774ce2010-02-12 10:34:29 +0000716 }
Craig Topperf40110f2014-04-25 05:29:35 +0000717 return Found ? SE.getMulExpr(Ops) : nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000718 }
Craig Topperf40110f2014-04-25 05:29:35 +0000719 return nullptr;
Dan Gohman963b1c12010-06-24 16:57:52 +0000720 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000721
722 // Otherwise we don't know.
Craig Topperf40110f2014-04-25 05:29:35 +0000723 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000724}
725
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000726/// If S involves the addition of a constant integer value, return that integer
727/// value, and mutate S to point to a new SCEV with that value excluded.
Dan Gohman45774ce2010-02-12 10:34:29 +0000728static int64_t ExtractImmediate(const SCEV *&S, ScalarEvolution &SE) {
729 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) {
Sanjoy Das0de2fec2015-12-17 20:28:46 +0000730 if (C->getAPInt().getMinSignedBits() <= 64) {
Dan Gohman1d2ded72010-05-03 22:09:21 +0000731 S = SE.getConstant(C->getType(), 0);
Dan Gohman45774ce2010-02-12 10:34:29 +0000732 return C->getValue()->getSExtValue();
733 }
734 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
735 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
736 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000737 if (Result != 0)
738 S = SE.getAddExpr(NewOps);
Dan Gohman45774ce2010-02-12 10:34:29 +0000739 return Result;
740 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
741 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
742 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000743 if (Result != 0)
Andrew Trick8b55b732011-03-14 16:50:06 +0000744 S = SE.getAddRecExpr(NewOps, AR->getLoop(),
745 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
746 SCEV::FlagAnyWrap);
Dan Gohman45774ce2010-02-12 10:34:29 +0000747 return Result;
748 }
749 return 0;
750}
751
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000752/// If S involves the addition of a GlobalValue address, return that symbol, and
753/// mutate S to point to a new SCEV with that value excluded.
Dan Gohman45774ce2010-02-12 10:34:29 +0000754static GlobalValue *ExtractSymbol(const SCEV *&S, ScalarEvolution &SE) {
755 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
756 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue())) {
Dan Gohman1d2ded72010-05-03 22:09:21 +0000757 S = SE.getConstant(GV->getType(), 0);
Dan Gohman45774ce2010-02-12 10:34:29 +0000758 return GV;
759 }
760 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
761 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
762 GlobalValue *Result = ExtractSymbol(NewOps.back(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000763 if (Result)
764 S = SE.getAddExpr(NewOps);
Dan Gohman45774ce2010-02-12 10:34:29 +0000765 return Result;
766 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
767 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
768 GlobalValue *Result = ExtractSymbol(NewOps.front(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000769 if (Result)
Andrew Trick8b55b732011-03-14 16:50:06 +0000770 S = SE.getAddRecExpr(NewOps, AR->getLoop(),
771 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
772 SCEV::FlagAnyWrap);
Dan Gohman45774ce2010-02-12 10:34:29 +0000773 return Result;
774 }
Craig Topperf40110f2014-04-25 05:29:35 +0000775 return nullptr;
Nate Begemanb18121e2004-10-18 21:08:22 +0000776}
777
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000778/// Returns true if the specified instruction is using the specified value as an
779/// address.
Matt Arsenault3e268cc2017-12-11 21:38:43 +0000780static bool isAddressUse(const TargetTransformInfo &TTI,
781 Instruction *Inst, Value *OperandVal) {
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000782 bool isAddress = isa<LoadInst>(Inst);
783 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
Matt Arsenaultcb3fa372017-02-08 06:44:58 +0000784 if (SI->getPointerOperand() == OperandVal)
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000785 isAddress = true;
786 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
787 // Addressing modes can also be folded into prefetches and a variety
788 // of intrinsics.
789 switch (II->getIntrinsicID()) {
Matt Arsenault3e268cc2017-12-11 21:38:43 +0000790 case Intrinsic::memset:
791 case Intrinsic::prefetch:
792 if (II->getArgOperand(0) == OperandVal)
793 isAddress = true;
794 break;
795 case Intrinsic::memmove:
796 case Intrinsic::memcpy:
797 if (II->getArgOperand(0) == OperandVal ||
798 II->getArgOperand(1) == OperandVal)
799 isAddress = true;
800 break;
801 default: {
802 MemIntrinsicInfo IntrInfo;
803 if (TTI.getTgtMemIntrinsic(II, IntrInfo)) {
804 if (IntrInfo.PtrVal == OperandVal)
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000805 isAddress = true;
Matt Arsenault3e268cc2017-12-11 21:38:43 +0000806 }
807 }
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000808 }
Matt Arsenaultcb3fa372017-02-08 06:44:58 +0000809 } else if (AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(Inst)) {
810 if (RMW->getPointerOperand() == OperandVal)
811 isAddress = true;
812 } else if (AtomicCmpXchgInst *CmpX = dyn_cast<AtomicCmpXchgInst>(Inst)) {
813 if (CmpX->getPointerOperand() == OperandVal)
814 isAddress = true;
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000815 }
816 return isAddress;
817}
Chris Lattnere4ed42a2005-10-03 01:04:44 +0000818
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000819/// Return the type of the memory being accessed.
Matt Arsenault3e268cc2017-12-11 21:38:43 +0000820static MemAccessTy getAccessType(const TargetTransformInfo &TTI,
821 Instruction *Inst) {
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000822 MemAccessTy AccessTy(Inst->getType(), MemAccessTy::UnknownAddressSpace);
823 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
824 AccessTy.MemTy = SI->getOperand(0)->getType();
825 AccessTy.AddrSpace = SI->getPointerAddressSpace();
826 } else if (const LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
827 AccessTy.AddrSpace = LI->getPointerAddressSpace();
Matt Arsenaultcb3fa372017-02-08 06:44:58 +0000828 } else if (const AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(Inst)) {
829 AccessTy.AddrSpace = RMW->getPointerAddressSpace();
830 } else if (const AtomicCmpXchgInst *CmpX = dyn_cast<AtomicCmpXchgInst>(Inst)) {
831 AccessTy.AddrSpace = CmpX->getPointerAddressSpace();
Matt Arsenault3e268cc2017-12-11 21:38:43 +0000832 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
833 switch (II->getIntrinsicID()) {
834 case Intrinsic::prefetch:
835 AccessTy.AddrSpace = II->getArgOperand(0)->getType()->getPointerAddressSpace();
836 break;
837 default: {
838 MemIntrinsicInfo IntrInfo;
839 if (TTI.getTgtMemIntrinsic(II, IntrInfo) && IntrInfo.PtrVal) {
840 AccessTy.AddrSpace
841 = IntrInfo.PtrVal->getType()->getPointerAddressSpace();
842 }
843
844 break;
845 }
846 }
Dan Gohman917ffe42009-03-09 21:01:17 +0000847 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000848
849 // All pointers have the same requirements, so canonicalize them to an
850 // arbitrary pointer type to minimize variation.
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000851 if (PointerType *PTy = dyn_cast<PointerType>(AccessTy.MemTy))
852 AccessTy.MemTy = PointerType::get(IntegerType::get(PTy->getContext(), 1),
853 PTy->getAddressSpace());
Dan Gohman45774ce2010-02-12 10:34:29 +0000854
Dan Gohman14d13392009-05-18 16:45:28 +0000855 return AccessTy;
Dan Gohman917ffe42009-03-09 21:01:17 +0000856}
857
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000858/// Return true if this AddRec is already a phi in its loop.
Andrew Trick5df90962011-12-06 03:13:31 +0000859static bool isExistingPhi(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +0000860 for (PHINode &PN : AR->getLoop()->getHeader()->phis()) {
861 if (SE.isSCEVable(PN.getType()) &&
862 (SE.getEffectiveSCEVType(PN.getType()) ==
Andrew Trick5df90962011-12-06 03:13:31 +0000863 SE.getEffectiveSCEVType(AR->getType())) &&
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +0000864 SE.getSCEV(&PN) == AR)
Andrew Trick5df90962011-12-06 03:13:31 +0000865 return true;
866 }
867 return false;
868}
869
Andrew Trickd5d2db92012-01-10 01:45:08 +0000870/// Check if expanding this expression is likely to incur significant cost. This
871/// is tricky because SCEV doesn't track which expressions are actually computed
872/// by the current IR.
873///
874/// We currently allow expansion of IV increments that involve adds,
875/// multiplication by constants, and AddRecs from existing phis.
876///
877/// TODO: Allow UDivExpr if we can find an existing IV increment that is an
878/// obvious multiple of the UDivExpr.
879static bool isHighCostExpansion(const SCEV *S,
Craig Topper71b7b682014-08-21 05:55:13 +0000880 SmallPtrSetImpl<const SCEV*> &Processed,
Andrew Trickd5d2db92012-01-10 01:45:08 +0000881 ScalarEvolution &SE) {
882 // Zero/One operand expressions
883 switch (S->getSCEVType()) {
884 case scUnknown:
885 case scConstant:
886 return false;
887 case scTruncate:
888 return isHighCostExpansion(cast<SCEVTruncateExpr>(S)->getOperand(),
889 Processed, SE);
890 case scZeroExtend:
891 return isHighCostExpansion(cast<SCEVZeroExtendExpr>(S)->getOperand(),
892 Processed, SE);
893 case scSignExtend:
894 return isHighCostExpansion(cast<SCEVSignExtendExpr>(S)->getOperand(),
895 Processed, SE);
896 }
897
David Blaikie70573dc2014-11-19 07:49:26 +0000898 if (!Processed.insert(S).second)
Andrew Trickd5d2db92012-01-10 01:45:08 +0000899 return false;
900
901 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Craig Topper042a3922015-05-25 20:01:18 +0000902 for (const SCEV *S : Add->operands()) {
903 if (isHighCostExpansion(S, Processed, SE))
Andrew Trickd5d2db92012-01-10 01:45:08 +0000904 return true;
905 }
906 return false;
907 }
908
909 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
910 if (Mul->getNumOperands() == 2) {
911 // Multiplication by a constant is ok
912 if (isa<SCEVConstant>(Mul->getOperand(0)))
913 return isHighCostExpansion(Mul->getOperand(1), Processed, SE);
914
915 // If we have the value of one operand, check if an existing
916 // multiplication already generates this expression.
917 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(Mul->getOperand(1))) {
918 Value *UVal = U->getValue();
Chandler Carruthcdf47882014-03-09 03:16:01 +0000919 for (User *UR : UVal->users()) {
Andrew Trick14779cc2012-03-26 20:28:37 +0000920 // If U is a constant, it may be used by a ConstantExpr.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000921 Instruction *UI = dyn_cast<Instruction>(UR);
922 if (UI && UI->getOpcode() == Instruction::Mul &&
923 SE.isSCEVable(UI->getType())) {
924 return SE.getSCEV(UI) == Mul;
Andrew Trickd5d2db92012-01-10 01:45:08 +0000925 }
926 }
927 }
928 }
929 }
930
931 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
932 if (isExistingPhi(AR, SE))
933 return false;
934 }
935
936 // Fow now, consider any other type of expression (div/mul/min/max) high cost.
937 return true;
938}
939
Javed Absar1e281942018-01-17 21:58:35 +0000940/// If any of the instructions in the specified set are trivially dead, delete
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000941/// them and see if this makes any of their operands subsequently dead.
Dan Gohman45774ce2010-02-12 10:34:29 +0000942static bool
Sanjoy Dase6bca0e2017-05-01 17:07:49 +0000943DeleteTriviallyDeadInstructions(SmallVectorImpl<WeakTrackingVH> &DeadInsts) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000944 bool Changed = false;
945
946 while (!DeadInsts.empty()) {
Richard Smithad9c8e82012-08-21 20:35:14 +0000947 Value *V = DeadInsts.pop_back_val();
948 Instruction *I = dyn_cast_or_null<Instruction>(V);
Dan Gohman45774ce2010-02-12 10:34:29 +0000949
Craig Topperf40110f2014-04-25 05:29:35 +0000950 if (!I || !isInstructionTriviallyDead(I))
Dan Gohman45774ce2010-02-12 10:34:29 +0000951 continue;
952
Craig Topper042a3922015-05-25 20:01:18 +0000953 for (Use &O : I->operands())
954 if (Instruction *U = dyn_cast<Instruction>(O)) {
955 O = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000956 if (U->use_empty())
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +0000957 DeadInsts.emplace_back(U);
Dan Gohman45774ce2010-02-12 10:34:29 +0000958 }
959
960 I->eraseFromParent();
961 Changed = true;
962 }
963
964 return Changed;
965}
966
Dan Gohman045f8192010-01-22 00:46:49 +0000967namespace {
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000968
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000969class LSRUse;
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000970
971} // end anonymous namespace
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000972
973/// \brief Check if the addressing mode defined by \p F is completely
974/// folded in \p LU at isel time.
975/// This includes address-mode folding and special icmp tricks.
976/// This function returns true if \p LU can accommodate what \p F
977/// defines and up to 1 base + 1 scaled + offset.
978/// In other words, if \p F has several base registers, this function may
979/// still return true. Therefore, users still need to account for
980/// additional base registers and/or unfolded offsets to derive an
981/// accurate cost model.
982static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
983 const LSRUse &LU, const Formula &F);
Eugene Zelenko306d2992017-10-18 21:46:47 +0000984
Quentin Colombetbf490d42013-05-31 21:29:03 +0000985// Get the cost of the scaling factor used in F for LU.
986static unsigned getScalingFactorCost(const TargetTransformInfo &TTI,
Wei Mi74d5a902017-02-22 21:47:08 +0000987 const LSRUse &LU, const Formula &F,
988 const Loop &L);
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000989
990namespace {
Jim Grosbach60f48542009-11-17 17:53:56 +0000991
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000992/// This class is used to measure and compare candidate formulae.
Dan Gohman45774ce2010-02-12 10:34:29 +0000993class Cost {
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +0000994 TargetTransformInfo::LSRCost C;
Nate Begemane68bcd12005-07-30 00:15:07 +0000995
Dan Gohman45774ce2010-02-12 10:34:29 +0000996public:
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +0000997 Cost() {
998 C.Insns = 0;
999 C.NumRegs = 0;
1000 C.AddRecCost = 0;
1001 C.NumIVMuls = 0;
1002 C.NumBaseAdds = 0;
1003 C.ImmCost = 0;
1004 C.SetupCost = 0;
1005 C.ScaleCost = 0;
1006 }
Jim Grosbach60f48542009-11-17 17:53:56 +00001007
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001008 bool isLess(Cost &Other, const TargetTransformInfo &TTI);
Dan Gohman045f8192010-01-22 00:46:49 +00001009
Tim Northoverbc6659c2014-01-22 13:27:00 +00001010 void Lose();
Dan Gohman045f8192010-01-22 00:46:49 +00001011
Andrew Trick784729d2011-09-26 23:11:04 +00001012#ifndef NDEBUG
1013 // Once any of the metrics loses, they must all remain losers.
1014 bool isValid() {
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001015 return ((C.Insns | C.NumRegs | C.AddRecCost | C.NumIVMuls | C.NumBaseAdds
1016 | C.ImmCost | C.SetupCost | C.ScaleCost) != ~0u)
1017 || ((C.Insns & C.NumRegs & C.AddRecCost & C.NumIVMuls & C.NumBaseAdds
1018 & C.ImmCost & C.SetupCost & C.ScaleCost) == ~0u);
Andrew Trick784729d2011-09-26 23:11:04 +00001019 }
1020#endif
1021
1022 bool isLoser() {
1023 assert(isValid() && "invalid cost");
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001024 return C.NumRegs == ~0u;
Andrew Trick784729d2011-09-26 23:11:04 +00001025 }
1026
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001027 void RateFormula(const TargetTransformInfo &TTI,
1028 const Formula &F,
Craig Topper71b7b682014-08-21 05:55:13 +00001029 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman45774ce2010-02-12 10:34:29 +00001030 const DenseSet<const SCEV *> &VisitedRegs,
1031 const Loop *L,
Andrew Trick5df90962011-12-06 03:13:31 +00001032 ScalarEvolution &SE, DominatorTree &DT,
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001033 const LSRUse &LU,
Craig Topper71b7b682014-08-21 05:55:13 +00001034 SmallPtrSetImpl<const SCEV *> *LoserRegs = nullptr);
Dan Gohman045f8192010-01-22 00:46:49 +00001035
Dan Gohman45774ce2010-02-12 10:34:29 +00001036 void print(raw_ostream &OS) const;
1037 void dump() const;
Dan Gohman045f8192010-01-22 00:46:49 +00001038
Dan Gohman45774ce2010-02-12 10:34:29 +00001039private:
1040 void RateRegister(const SCEV *Reg,
Craig Topper71b7b682014-08-21 05:55:13 +00001041 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman45774ce2010-02-12 10:34:29 +00001042 const Loop *L,
1043 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman5b18f032010-02-13 02:06:02 +00001044 void RatePrimaryRegister(const SCEV *Reg,
Craig Topper71b7b682014-08-21 05:55:13 +00001045 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman5b18f032010-02-13 02:06:02 +00001046 const Loop *L,
Andrew Trick5df90962011-12-06 03:13:31 +00001047 ScalarEvolution &SE, DominatorTree &DT,
Craig Topper71b7b682014-08-21 05:55:13 +00001048 SmallPtrSetImpl<const SCEV *> *LoserRegs);
Dan Gohman45774ce2010-02-12 10:34:29 +00001049};
Matt Arsenault3e268cc2017-12-11 21:38:43 +00001050
Jonas Paulsson7a794222016-08-17 13:24:19 +00001051/// An operand value in an instruction which is to be replaced with some
1052/// equivalent, possibly strength-reduced, replacement.
1053struct LSRFixup {
1054 /// The instruction which will be updated.
Eugene Zelenko306d2992017-10-18 21:46:47 +00001055 Instruction *UserInst = nullptr;
Jonas Paulsson7a794222016-08-17 13:24:19 +00001056
1057 /// The operand of the instruction which will be replaced. The operand may be
1058 /// used more than once; every instance will be replaced.
Eugene Zelenko306d2992017-10-18 21:46:47 +00001059 Value *OperandValToReplace = nullptr;
Jonas Paulsson7a794222016-08-17 13:24:19 +00001060
1061 /// If this user is to use the post-incremented value of an induction
Vedant Kumar9196ed12017-11-03 01:01:28 +00001062 /// variable, this set is non-empty and holds the loops associated with the
Jonas Paulsson7a794222016-08-17 13:24:19 +00001063 /// induction variable.
1064 PostIncLoopSet PostIncLoops;
1065
1066 /// A constant offset to be added to the LSRUse expression. This allows
1067 /// multiple fixups to share the same LSRUse with different offsets, for
1068 /// example in an unrolled loop.
Eugene Zelenko306d2992017-10-18 21:46:47 +00001069 int64_t Offset = 0;
1070
1071 LSRFixup() = default;
Jonas Paulsson7a794222016-08-17 13:24:19 +00001072
1073 bool isUseFullyOutsideLoop(const Loop *L) const;
1074
Jonas Paulsson7a794222016-08-17 13:24:19 +00001075 void print(raw_ostream &OS) const;
1076 void dump() const;
1077};
1078
Jonas Paulsson7a794222016-08-17 13:24:19 +00001079/// A DenseMapInfo implementation for holding DenseMaps and DenseSets of sorted
1080/// SmallVectors of const SCEV*.
1081struct UniquifierDenseMapInfo {
1082 static SmallVector<const SCEV *, 4> getEmptyKey() {
1083 SmallVector<const SCEV *, 4> V;
1084 V.push_back(reinterpret_cast<const SCEV *>(-1));
1085 return V;
1086 }
1087
1088 static SmallVector<const SCEV *, 4> getTombstoneKey() {
1089 SmallVector<const SCEV *, 4> V;
1090 V.push_back(reinterpret_cast<const SCEV *>(-2));
1091 return V;
1092 }
1093
1094 static unsigned getHashValue(const SmallVector<const SCEV *, 4> &V) {
1095 return static_cast<unsigned>(hash_combine_range(V.begin(), V.end()));
1096 }
1097
1098 static bool isEqual(const SmallVector<const SCEV *, 4> &LHS,
1099 const SmallVector<const SCEV *, 4> &RHS) {
1100 return LHS == RHS;
1101 }
1102};
1103
1104/// This class holds the state that LSR keeps for each use in IVUsers, as well
1105/// as uses invented by LSR itself. It includes information about what kinds of
1106/// things can be folded into the user, information about the user itself, and
1107/// information about how the use may be satisfied. TODO: Represent multiple
1108/// users of the same expression in common?
1109class LSRUse {
1110 DenseSet<SmallVector<const SCEV *, 4>, UniquifierDenseMapInfo> Uniquifier;
1111
1112public:
1113 /// An enum for a kind of use, indicating what types of scaled and immediate
1114 /// operands it might support.
1115 enum KindType {
1116 Basic, ///< A normal use, with no folding.
1117 Special, ///< A special case of basic, allowing -1 scales.
1118 Address, ///< An address use; folding according to TargetLowering
1119 ICmpZero ///< An equality icmp with both operands folded into one.
1120 // TODO: Add a generic icmp too?
1121 };
1122
Eugene Zelenko306d2992017-10-18 21:46:47 +00001123 using SCEVUseKindPair = PointerIntPair<const SCEV *, 2, KindType>;
Jonas Paulsson7a794222016-08-17 13:24:19 +00001124
1125 KindType Kind;
1126 MemAccessTy AccessTy;
1127
1128 /// The list of operands which are to be replaced.
1129 SmallVector<LSRFixup, 8> Fixups;
1130
1131 /// Keep track of the min and max offsets of the fixups.
Eugene Zelenko306d2992017-10-18 21:46:47 +00001132 int64_t MinOffset = std::numeric_limits<int64_t>::max();
1133 int64_t MaxOffset = std::numeric_limits<int64_t>::min();
Jonas Paulsson7a794222016-08-17 13:24:19 +00001134
1135 /// This records whether all of the fixups using this LSRUse are outside of
1136 /// the loop, in which case some special-case heuristics may be used.
Eugene Zelenko306d2992017-10-18 21:46:47 +00001137 bool AllFixupsOutsideLoop = true;
Jonas Paulsson7a794222016-08-17 13:24:19 +00001138
1139 /// RigidFormula is set to true to guarantee that this use will be associated
1140 /// with a single formula--the one that initially matched. Some SCEV
1141 /// expressions cannot be expanded. This allows LSR to consider the registers
1142 /// used by those expressions without the need to expand them later after
1143 /// changing the formula.
Eugene Zelenko306d2992017-10-18 21:46:47 +00001144 bool RigidFormula = false;
Jonas Paulsson7a794222016-08-17 13:24:19 +00001145
1146 /// This records the widest use type for any fixup using this
1147 /// LSRUse. FindUseWithSimilarFormula can't consider uses with different max
1148 /// fixup widths to be equivalent, because the narrower one may be relying on
1149 /// the implicit truncation to truncate away bogus bits.
Eugene Zelenko306d2992017-10-18 21:46:47 +00001150 Type *WidestFixupType = nullptr;
Jonas Paulsson7a794222016-08-17 13:24:19 +00001151
1152 /// A list of ways to build a value that can satisfy this user. After the
1153 /// list is populated, one of these is selected heuristically and used to
1154 /// formulate a replacement for OperandValToReplace in UserInst.
1155 SmallVector<Formula, 12> Formulae;
1156
1157 /// The set of register candidates used by all formulae in this LSRUse.
1158 SmallPtrSet<const SCEV *, 4> Regs;
1159
Eugene Zelenko306d2992017-10-18 21:46:47 +00001160 LSRUse(KindType K, MemAccessTy AT) : Kind(K), AccessTy(AT) {}
Jonas Paulsson7a794222016-08-17 13:24:19 +00001161
1162 LSRFixup &getNewFixup() {
1163 Fixups.push_back(LSRFixup());
1164 return Fixups.back();
1165 }
1166
1167 void pushFixup(LSRFixup &f) {
1168 Fixups.push_back(f);
1169 if (f.Offset > MaxOffset)
1170 MaxOffset = f.Offset;
1171 if (f.Offset < MinOffset)
1172 MinOffset = f.Offset;
1173 }
Matt Arsenault3e268cc2017-12-11 21:38:43 +00001174
Jonas Paulsson7a794222016-08-17 13:24:19 +00001175 bool HasFormulaWithSameRegs(const Formula &F) const;
Evgeny Stupachenko9909872e302017-02-21 07:34:40 +00001176 float getNotSelectedProbability(const SCEV *Reg) const;
Wei Mi74d5a902017-02-22 21:47:08 +00001177 bool InsertFormula(const Formula &F, const Loop &L);
Jonas Paulsson7a794222016-08-17 13:24:19 +00001178 void DeleteFormula(Formula &F);
1179 void RecomputeRegs(size_t LUIdx, RegUseTracker &Reguses);
1180
1181 void print(raw_ostream &OS) const;
1182 void dump() const;
1183};
Dan Gohman45774ce2010-02-12 10:34:29 +00001184
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00001185} // end anonymous namespace
Dan Gohman45774ce2010-02-12 10:34:29 +00001186
Jonas Paulsson6228aed2017-08-09 11:28:01 +00001187static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1188 LSRUse::KindType Kind, MemAccessTy AccessTy,
1189 GlobalValue *BaseGV, int64_t BaseOffset,
1190 bool HasBaseReg, int64_t Scale,
1191 Instruction *Fixup = nullptr);
1192
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001193/// Tally up interesting quantities from the given register.
Dan Gohman45774ce2010-02-12 10:34:29 +00001194void Cost::RateRegister(const SCEV *Reg,
Craig Topper71b7b682014-08-21 05:55:13 +00001195 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman45774ce2010-02-12 10:34:29 +00001196 const Loop *L,
1197 ScalarEvolution &SE, DominatorTree &DT) {
Dan Gohman5b18f032010-02-13 02:06:02 +00001198 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Reg)) {
Wei Mi8f20e632017-02-11 00:50:23 +00001199 // If this is an addrec for another loop, it should be an invariant
1200 // with respect to L since L is the innermost loop (at least
1201 // for now LSR only handles innermost loops).
Andrew Trickd97b83e2012-03-22 22:42:45 +00001202 if (AR->getLoop() != L) {
1203 // If the AddRec exists, consider it's register free and leave it alone.
Andrew Trick5df90962011-12-06 03:13:31 +00001204 if (isExistingPhi(AR, SE))
1205 return;
1206
Wei Mi493fb262017-02-16 21:27:31 +00001207 // It is bad to allow LSR for current loop to add induction variables
1208 // for its sibling loops.
1209 if (!AR->getLoop()->contains(L)) {
1210 Lose();
1211 return;
1212 }
1213
Wei Mi8f20e632017-02-11 00:50:23 +00001214 // Otherwise, it will be an invariant with respect to Loop L.
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001215 ++C.NumRegs;
Andrew Trickd97b83e2012-03-22 22:42:45 +00001216 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00001217 }
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001218 C.AddRecCost += 1; /// TODO: This should be a function of the stride.
Dan Gohman45774ce2010-02-12 10:34:29 +00001219
Dan Gohman5b18f032010-02-13 02:06:02 +00001220 // Add the step value register, if it needs one.
1221 // TODO: The non-affine case isn't precisely modeled here.
Andrew Trick8868fae2011-09-26 23:35:25 +00001222 if (!AR->isAffine() || !isa<SCEVConstant>(AR->getOperand(1))) {
1223 if (!Regs.count(AR->getOperand(1))) {
Dan Gohman5b18f032010-02-13 02:06:02 +00001224 RateRegister(AR->getOperand(1), Regs, L, SE, DT);
Andrew Trick8868fae2011-09-26 23:35:25 +00001225 if (isLoser())
1226 return;
1227 }
1228 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001229 }
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001230 ++C.NumRegs;
Dan Gohman5b18f032010-02-13 02:06:02 +00001231
1232 // Rough heuristic; favor registers which don't require extra setup
1233 // instructions in the preheader.
1234 if (!isa<SCEVUnknown>(Reg) &&
1235 !isa<SCEVConstant>(Reg) &&
1236 !(isa<SCEVAddRecExpr>(Reg) &&
1237 (isa<SCEVUnknown>(cast<SCEVAddRecExpr>(Reg)->getStart()) ||
1238 isa<SCEVConstant>(cast<SCEVAddRecExpr>(Reg)->getStart()))))
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001239 ++C.SetupCost;
Dan Gohman34f37e02010-10-07 23:41:58 +00001240
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001241 C.NumIVMuls += isa<SCEVMulExpr>(Reg) &&
Davide Italiano709d4182016-07-07 17:44:38 +00001242 SE.hasComputableLoopEvolution(Reg, L);
Dan Gohman5b18f032010-02-13 02:06:02 +00001243}
1244
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001245/// Record this register in the set. If we haven't seen it before, rate
1246/// it. Optional LoserRegs provides a way to declare any formula that refers to
1247/// one of those regs an instant loser.
Dan Gohman5b18f032010-02-13 02:06:02 +00001248void Cost::RatePrimaryRegister(const SCEV *Reg,
Craig Topper71b7b682014-08-21 05:55:13 +00001249 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman0849ed52010-02-16 19:42:34 +00001250 const Loop *L,
Andrew Trick5df90962011-12-06 03:13:31 +00001251 ScalarEvolution &SE, DominatorTree &DT,
Craig Topper71b7b682014-08-21 05:55:13 +00001252 SmallPtrSetImpl<const SCEV *> *LoserRegs) {
Andrew Trick5df90962011-12-06 03:13:31 +00001253 if (LoserRegs && LoserRegs->count(Reg)) {
Tim Northoverbc6659c2014-01-22 13:27:00 +00001254 Lose();
Andrew Trick5df90962011-12-06 03:13:31 +00001255 return;
1256 }
David Blaikie70573dc2014-11-19 07:49:26 +00001257 if (Regs.insert(Reg).second) {
Dan Gohman5b18f032010-02-13 02:06:02 +00001258 RateRegister(Reg, Regs, L, SE, DT);
Andrew Tricka1c01ba2013-03-19 04:14:57 +00001259 if (LoserRegs && isLoser())
Andrew Trick5df90962011-12-06 03:13:31 +00001260 LoserRegs->insert(Reg);
1261 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001262}
1263
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001264void Cost::RateFormula(const TargetTransformInfo &TTI,
1265 const Formula &F,
Craig Topper71b7b682014-08-21 05:55:13 +00001266 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman45774ce2010-02-12 10:34:29 +00001267 const DenseSet<const SCEV *> &VisitedRegs,
1268 const Loop *L,
Andrew Trick5df90962011-12-06 03:13:31 +00001269 ScalarEvolution &SE, DominatorTree &DT,
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001270 const LSRUse &LU,
Craig Topper71b7b682014-08-21 05:55:13 +00001271 SmallPtrSetImpl<const SCEV *> *LoserRegs) {
Wei Mi74d5a902017-02-22 21:47:08 +00001272 assert(F.isCanonical(*L) && "Cost is accurate only for canonical formula");
Dan Gohman45774ce2010-02-12 10:34:29 +00001273 // Tally up the registers.
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001274 unsigned PrevAddRecCost = C.AddRecCost;
1275 unsigned PrevNumRegs = C.NumRegs;
1276 unsigned PrevNumBaseAdds = C.NumBaseAdds;
Dan Gohman45774ce2010-02-12 10:34:29 +00001277 if (const SCEV *ScaledReg = F.ScaledReg) {
1278 if (VisitedRegs.count(ScaledReg)) {
Tim Northoverbc6659c2014-01-22 13:27:00 +00001279 Lose();
Dan Gohman45774ce2010-02-12 10:34:29 +00001280 return;
1281 }
Andrew Trick5df90962011-12-06 03:13:31 +00001282 RatePrimaryRegister(ScaledReg, Regs, L, SE, DT, LoserRegs);
Andrew Trick784729d2011-09-26 23:11:04 +00001283 if (isLoser())
1284 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00001285 }
Craig Topper042a3922015-05-25 20:01:18 +00001286 for (const SCEV *BaseReg : F.BaseRegs) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001287 if (VisitedRegs.count(BaseReg)) {
Tim Northoverbc6659c2014-01-22 13:27:00 +00001288 Lose();
Dan Gohman45774ce2010-02-12 10:34:29 +00001289 return;
1290 }
Andrew Trick5df90962011-12-06 03:13:31 +00001291 RatePrimaryRegister(BaseReg, Regs, L, SE, DT, LoserRegs);
Andrew Trick784729d2011-09-26 23:11:04 +00001292 if (isLoser())
1293 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00001294 }
1295
Dan Gohman6136e942011-05-03 00:46:49 +00001296 // Determine how many (unfolded) adds we'll need inside the loop.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001297 size_t NumBaseParts = F.getNumRegs();
Dan Gohman6136e942011-05-03 00:46:49 +00001298 if (NumBaseParts > 1)
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001299 // Do not count the base and a possible second register if the target
1300 // allows to fold 2 registers.
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001301 C.NumBaseAdds +=
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001302 NumBaseParts - (1 + (F.Scale && isAMCompletelyFolded(TTI, LU, F)));
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001303 C.NumBaseAdds += (F.UnfoldedOffset != 0);
Dan Gohman45774ce2010-02-12 10:34:29 +00001304
Quentin Colombetbf490d42013-05-31 21:29:03 +00001305 // Accumulate non-free scaling amounts.
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001306 C.ScaleCost += getScalingFactorCost(TTI, LU, F, *L);
Quentin Colombetbf490d42013-05-31 21:29:03 +00001307
Dan Gohman45774ce2010-02-12 10:34:29 +00001308 // Tally up the non-zero immediates.
Jonas Paulsson7a794222016-08-17 13:24:19 +00001309 for (const LSRFixup &Fixup : LU.Fixups) {
1310 int64_t O = Fixup.Offset;
Craig Topper042a3922015-05-25 20:01:18 +00001311 int64_t Offset = (uint64_t)O + F.BaseOffset;
Chandler Carruth6e479322013-01-07 15:04:40 +00001312 if (F.BaseGV)
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001313 C.ImmCost += 64; // Handle symbolic values conservatively.
Dan Gohman45774ce2010-02-12 10:34:29 +00001314 // TODO: This should probably be the pointer size.
1315 else if (Offset != 0)
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001316 C.ImmCost += APInt(64, Offset, true).getMinSignedBits();
Jonas Paulsson7a794222016-08-17 13:24:19 +00001317
1318 // Check with target if this offset with this instruction is
1319 // specifically not supported.
Jonas Paulsson024e3192017-07-21 11:59:37 +00001320 if (LU.Kind == LSRUse::Address && Offset != 0 &&
Jonas Paulsson6228aed2017-08-09 11:28:01 +00001321 !isAMCompletelyFolded(TTI, LSRUse::Address, LU.AccessTy, F.BaseGV,
1322 Offset, F.HasBaseReg, F.Scale, Fixup.UserInst))
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001323 C.NumBaseAdds++;
Dan Gohman45774ce2010-02-12 10:34:29 +00001324 }
Evgeny Stupachenkofe6f5482017-02-11 02:57:43 +00001325
Evgeny Stupachenko4d94e992017-06-05 22:44:18 +00001326 // If we don't count instruction cost exit here.
1327 if (!InsnsCost) {
1328 assert(isValid() && "invalid cost");
1329 return;
1330 }
1331
1332 // Treat every new register that exceeds TTI.getNumberOfRegisters() - 1 as
1333 // additional instruction (at least fill).
1334 unsigned TTIRegNum = TTI.getNumberOfRegisters(false) - 1;
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001335 if (C.NumRegs > TTIRegNum) {
Evgeny Stupachenko4d94e992017-06-05 22:44:18 +00001336 // Cost already exceeded TTIRegNum, then only newly added register can add
1337 // new instructions.
1338 if (PrevNumRegs > TTIRegNum)
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001339 C.Insns += (C.NumRegs - PrevNumRegs);
Evgeny Stupachenko4d94e992017-06-05 22:44:18 +00001340 else
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001341 C.Insns += (C.NumRegs - TTIRegNum);
Evgeny Stupachenko4d94e992017-06-05 22:44:18 +00001342 }
1343
Evgeny Stupachenkofe6f5482017-02-11 02:57:43 +00001344 // If ICmpZero formula ends with not 0, it could not be replaced by
1345 // just add or sub. We'll need to compare final result of AddRec.
Sanjay Pateld7c702b2018-02-05 23:43:05 +00001346 // That means we'll need an additional instruction. But if the target can
1347 // macro-fuse a compare with a branch, don't count this extra instruction.
Evgeny Stupachenkofe6f5482017-02-11 02:57:43 +00001348 // For -10 + {0, +, 1}:
1349 // i = i + 1;
1350 // cmp i, 10
1351 //
1352 // For {-10, +, 1}:
1353 // i = i + 1;
Sanjay Pateld7c702b2018-02-05 23:43:05 +00001354 if (LU.Kind == LSRUse::ICmpZero && !F.hasZeroEnd() && !TTI.canMacroFuseCmp())
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001355 C.Insns++;
Evgeny Stupachenkofe6f5482017-02-11 02:57:43 +00001356 // Each new AddRec adds 1 instruction to calculation.
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001357 C.Insns += (C.AddRecCost - PrevAddRecCost);
Evgeny Stupachenkofe6f5482017-02-11 02:57:43 +00001358
1359 // BaseAdds adds instructions for unfolded registers.
1360 if (LU.Kind != LSRUse::ICmpZero)
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001361 C.Insns += C.NumBaseAdds - PrevNumBaseAdds;
Andrew Trick784729d2011-09-26 23:11:04 +00001362 assert(isValid() && "invalid cost");
Dan Gohman45774ce2010-02-12 10:34:29 +00001363}
1364
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001365/// Set this cost to a losing value.
Tim Northoverbc6659c2014-01-22 13:27:00 +00001366void Cost::Lose() {
Eugene Zelenko306d2992017-10-18 21:46:47 +00001367 C.Insns = std::numeric_limits<unsigned>::max();
1368 C.NumRegs = std::numeric_limits<unsigned>::max();
1369 C.AddRecCost = std::numeric_limits<unsigned>::max();
1370 C.NumIVMuls = std::numeric_limits<unsigned>::max();
1371 C.NumBaseAdds = std::numeric_limits<unsigned>::max();
1372 C.ImmCost = std::numeric_limits<unsigned>::max();
1373 C.SetupCost = std::numeric_limits<unsigned>::max();
1374 C.ScaleCost = std::numeric_limits<unsigned>::max();
Dan Gohman45774ce2010-02-12 10:34:29 +00001375}
1376
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001377/// Choose the lower cost.
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001378bool Cost::isLess(Cost &Other, const TargetTransformInfo &TTI) {
1379 if (InsnsCost.getNumOccurrences() > 0 && InsnsCost &&
1380 C.Insns != Other.C.Insns)
1381 return C.Insns < Other.C.Insns;
1382 return TTI.isLSRCostLess(C, Other.C);
Dan Gohman45774ce2010-02-12 10:34:29 +00001383}
1384
Aaron Ballman615eb472017-10-15 14:32:27 +00001385#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +00001386void Cost::print(raw_ostream &OS) const {
Evgeny Stupachenko4d94e992017-06-05 22:44:18 +00001387 if (InsnsCost)
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001388 OS << C.Insns << " instruction" << (C.Insns == 1 ? " " : "s ");
1389 OS << C.NumRegs << " reg" << (C.NumRegs == 1 ? "" : "s");
1390 if (C.AddRecCost != 0)
1391 OS << ", with addrec cost " << C.AddRecCost;
1392 if (C.NumIVMuls != 0)
1393 OS << ", plus " << C.NumIVMuls << " IV mul"
1394 << (C.NumIVMuls == 1 ? "" : "s");
1395 if (C.NumBaseAdds != 0)
1396 OS << ", plus " << C.NumBaseAdds << " base add"
1397 << (C.NumBaseAdds == 1 ? "" : "s");
1398 if (C.ScaleCost != 0)
1399 OS << ", plus " << C.ScaleCost << " scale cost";
1400 if (C.ImmCost != 0)
1401 OS << ", plus " << C.ImmCost << " imm cost";
1402 if (C.SetupCost != 0)
1403 OS << ", plus " << C.SetupCost << " setup cost";
Dan Gohman45774ce2010-02-12 10:34:29 +00001404}
1405
Matthias Braun8c209aa2017-01-28 02:02:38 +00001406LLVM_DUMP_METHOD void Cost::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +00001407 print(errs()); errs() << '\n';
1408}
Matthias Braun8c209aa2017-01-28 02:02:38 +00001409#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00001410
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001411/// Test whether this fixup always uses its value outside of the given loop.
Dan Gohmand006ab92010-04-07 22:27:08 +00001412bool LSRFixup::isUseFullyOutsideLoop(const Loop *L) const {
1413 // PHI nodes use their value in their incoming blocks.
1414 if (const PHINode *PN = dyn_cast<PHINode>(UserInst)) {
1415 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
1416 if (PN->getIncomingValue(i) == OperandValToReplace &&
1417 L->contains(PN->getIncomingBlock(i)))
1418 return false;
1419 return true;
1420 }
1421
1422 return !L->contains(UserInst);
1423}
1424
Aaron Ballman615eb472017-10-15 14:32:27 +00001425#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +00001426void LSRFixup::print(raw_ostream &OS) const {
1427 OS << "UserInst=";
1428 // Store is common and interesting enough to be worth special-casing.
1429 if (StoreInst *Store = dyn_cast<StoreInst>(UserInst)) {
1430 OS << "store ";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001431 Store->getOperand(0)->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001432 } else if (UserInst->getType()->isVoidTy())
1433 OS << UserInst->getOpcodeName();
1434 else
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001435 UserInst->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001436
1437 OS << ", OperandValToReplace=";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001438 OperandValToReplace->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001439
Craig Topper042a3922015-05-25 20:01:18 +00001440 for (const Loop *PIL : PostIncLoops) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001441 OS << ", PostIncLoop=";
Craig Topper042a3922015-05-25 20:01:18 +00001442 PIL->getHeader()->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001443 }
1444
Dan Gohman45774ce2010-02-12 10:34:29 +00001445 if (Offset != 0)
1446 OS << ", Offset=" << Offset;
1447}
1448
Matthias Braun8c209aa2017-01-28 02:02:38 +00001449LLVM_DUMP_METHOD void LSRFixup::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +00001450 print(errs()); errs() << '\n';
1451}
Matthias Braun8c209aa2017-01-28 02:02:38 +00001452#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00001453
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001454/// Test whether this use as a formula which has the same registers as the given
1455/// formula.
Dan Gohman20fab452010-05-19 23:43:12 +00001456bool LSRUse::HasFormulaWithSameRegs(const Formula &F) const {
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001457 SmallVector<const SCEV *, 4> Key = F.BaseRegs;
Dan Gohman20fab452010-05-19 23:43:12 +00001458 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1459 // Unstable sort by host order ok, because this is only used for uniquifying.
1460 std::sort(Key.begin(), Key.end());
1461 return Uniquifier.count(Key);
1462}
1463
Evgeny Stupachenko9909872e302017-02-21 07:34:40 +00001464/// The function returns a probability of selecting formula without Reg.
1465float LSRUse::getNotSelectedProbability(const SCEV *Reg) const {
1466 unsigned FNum = 0;
1467 for (const Formula &F : Formulae)
1468 if (F.referencesReg(Reg))
1469 FNum++;
1470 return ((float)(Formulae.size() - FNum)) / Formulae.size();
1471}
1472
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001473/// If the given formula has not yet been inserted, add it to the list, and
1474/// return true. Return false otherwise. The formula must be in canonical form.
Wei Mi74d5a902017-02-22 21:47:08 +00001475bool LSRUse::InsertFormula(const Formula &F, const Loop &L) {
1476 assert(F.isCanonical(L) && "Invalid canonical representation");
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001477
Andrew Trick57243da2013-10-25 21:35:56 +00001478 if (!Formulae.empty() && RigidFormula)
1479 return false;
1480
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001481 SmallVector<const SCEV *, 4> Key = F.BaseRegs;
Dan Gohman45774ce2010-02-12 10:34:29 +00001482 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1483 // Unstable sort by host order ok, because this is only used for uniquifying.
1484 std::sort(Key.begin(), Key.end());
1485
1486 if (!Uniquifier.insert(Key).second)
1487 return false;
1488
1489 // Using a register to hold the value of 0 is not profitable.
1490 assert((!F.ScaledReg || !F.ScaledReg->isZero()) &&
1491 "Zero allocated in a scaled register!");
1492#ifndef NDEBUG
Craig Topper042a3922015-05-25 20:01:18 +00001493 for (const SCEV *BaseReg : F.BaseRegs)
1494 assert(!BaseReg->isZero() && "Zero allocated in a base register!");
Dan Gohman45774ce2010-02-12 10:34:29 +00001495#endif
1496
1497 // Add the formula to the list.
1498 Formulae.push_back(F);
1499
1500 // Record registers now being used by this use.
Dan Gohman45774ce2010-02-12 10:34:29 +00001501 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001502 if (F.ScaledReg)
1503 Regs.insert(F.ScaledReg);
Dan Gohman45774ce2010-02-12 10:34:29 +00001504
1505 return true;
Dan Gohman045f8192010-01-22 00:46:49 +00001506}
1507
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001508/// Remove the given formula from this use's list.
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00001509void LSRUse::DeleteFormula(Formula &F) {
Dan Gohman80a96082010-05-20 15:17:54 +00001510 if (&F != &Formulae.back())
1511 std::swap(F, Formulae.back());
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00001512 Formulae.pop_back();
1513}
1514
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001515/// Recompute the Regs field, and update RegUses.
Dan Gohman4cf99b52010-05-18 23:42:37 +00001516void LSRUse::RecomputeRegs(size_t LUIdx, RegUseTracker &RegUses) {
1517 // Now that we've filtered out some formulae, recompute the Regs set.
Benjamin Kramer1c2beed2015-02-19 17:19:43 +00001518 SmallPtrSet<const SCEV *, 4> OldRegs = std::move(Regs);
Dan Gohman4cf99b52010-05-18 23:42:37 +00001519 Regs.clear();
Benjamin Kramer1c2beed2015-02-19 17:19:43 +00001520 for (const Formula &F : Formulae) {
Dan Gohman4cf99b52010-05-18 23:42:37 +00001521 if (F.ScaledReg) Regs.insert(F.ScaledReg);
1522 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1523 }
1524
1525 // Update the RegTracker.
Craig Topper46276792014-08-24 23:23:06 +00001526 for (const SCEV *S : OldRegs)
1527 if (!Regs.count(S))
Sanjoy Das302bfd02015-08-16 18:22:43 +00001528 RegUses.dropRegister(S, LUIdx);
Dan Gohman4cf99b52010-05-18 23:42:37 +00001529}
1530
Aaron Ballman615eb472017-10-15 14:32:27 +00001531#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +00001532void LSRUse::print(raw_ostream &OS) const {
1533 OS << "LSR Use: Kind=";
1534 switch (Kind) {
1535 case Basic: OS << "Basic"; break;
1536 case Special: OS << "Special"; break;
1537 case ICmpZero: OS << "ICmpZero"; break;
1538 case Address:
1539 OS << "Address of ";
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001540 if (AccessTy.MemTy->isPointerTy())
Dan Gohman45774ce2010-02-12 10:34:29 +00001541 OS << "pointer"; // the full pointer type could be really verbose
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001542 else {
1543 OS << *AccessTy.MemTy;
1544 }
1545
1546 OS << " in addrspace(" << AccessTy.AddrSpace << ')';
Evan Cheng133694d2007-10-25 09:11:16 +00001547 }
1548
Dan Gohman45774ce2010-02-12 10:34:29 +00001549 OS << ", Offsets={";
Craig Topper042a3922015-05-25 20:01:18 +00001550 bool NeedComma = false;
Jonas Paulsson7a794222016-08-17 13:24:19 +00001551 for (const LSRFixup &Fixup : Fixups) {
Craig Topper042a3922015-05-25 20:01:18 +00001552 if (NeedComma) OS << ',';
Jonas Paulsson7a794222016-08-17 13:24:19 +00001553 OS << Fixup.Offset;
Craig Topper042a3922015-05-25 20:01:18 +00001554 NeedComma = true;
Dan Gohman045f8192010-01-22 00:46:49 +00001555 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001556 OS << '}';
Dan Gohman045f8192010-01-22 00:46:49 +00001557
Dan Gohman45774ce2010-02-12 10:34:29 +00001558 if (AllFixupsOutsideLoop)
1559 OS << ", all-fixups-outside-loop";
Dan Gohman14152082010-07-15 20:24:58 +00001560
1561 if (WidestFixupType)
1562 OS << ", widest fixup type: " << *WidestFixupType;
Dan Gohman045f8192010-01-22 00:46:49 +00001563}
1564
Matthias Braun8c209aa2017-01-28 02:02:38 +00001565LLVM_DUMP_METHOD void LSRUse::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +00001566 print(errs()); errs() << '\n';
1567}
Matthias Braun8c209aa2017-01-28 02:02:38 +00001568#endif
Dan Gohman045f8192010-01-22 00:46:49 +00001569
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001570static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001571 LSRUse::KindType Kind, MemAccessTy AccessTy,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001572 GlobalValue *BaseGV, int64_t BaseOffset,
Jonas Paulsson024e3192017-07-21 11:59:37 +00001573 bool HasBaseReg, int64_t Scale,
Jonas Paulsson6228aed2017-08-09 11:28:01 +00001574 Instruction *Fixup/*= nullptr*/) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001575 switch (Kind) {
1576 case LSRUse::Address:
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001577 return TTI.isLegalAddressingMode(AccessTy.MemTy, BaseGV, BaseOffset,
Jonas Paulsson024e3192017-07-21 11:59:37 +00001578 HasBaseReg, Scale, AccessTy.AddrSpace, Fixup);
Dan Gohman45774ce2010-02-12 10:34:29 +00001579
Dan Gohman45774ce2010-02-12 10:34:29 +00001580 case LSRUse::ICmpZero:
1581 // There's not even a target hook for querying whether it would be legal to
1582 // fold a GV into an ICmp.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001583 if (BaseGV)
Dan Gohman45774ce2010-02-12 10:34:29 +00001584 return false;
1585
1586 // ICmp only has two operands; don't allow more than two non-trivial parts.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001587 if (Scale != 0 && HasBaseReg && BaseOffset != 0)
Dan Gohman45774ce2010-02-12 10:34:29 +00001588 return false;
1589
1590 // ICmp only supports no scale or a -1 scale, as we can "fold" a -1 scale by
1591 // putting the scaled register in the other operand of the icmp.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001592 if (Scale != 0 && Scale != -1)
Dan Gohman45774ce2010-02-12 10:34:29 +00001593 return false;
1594
1595 // If we have low-level target information, ask the target if it can fold an
1596 // integer immediate on an icmp.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001597 if (BaseOffset != 0) {
Jakob Stoklund Olesenf2390e82012-04-05 03:10:56 +00001598 // We have one of:
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001599 // ICmpZero BaseReg + BaseOffset => ICmp BaseReg, -BaseOffset
1600 // ICmpZero -1*ScaleReg + BaseOffset => ICmp ScaleReg, BaseOffset
Jakob Stoklund Olesenf2390e82012-04-05 03:10:56 +00001601 // Offs is the ICmp immediate.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001602 if (Scale == 0)
Eugene Zelenko306d2992017-10-18 21:46:47 +00001603 // The cast does the right thing with
1604 // std::numeric_limits<int64_t>::min().
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001605 BaseOffset = -(uint64_t)BaseOffset;
1606 return TTI.isLegalICmpImmediate(BaseOffset);
Dan Gohman045f8192010-01-22 00:46:49 +00001607 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001608
Jakob Stoklund Olesenf2390e82012-04-05 03:10:56 +00001609 // ICmpZero BaseReg + -1*ScaleReg => ICmp BaseReg, ScaleReg
Dan Gohman45774ce2010-02-12 10:34:29 +00001610 return true;
1611
1612 case LSRUse::Basic:
1613 // Only handle single-register values.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001614 return !BaseGV && Scale == 0 && BaseOffset == 0;
Dan Gohman45774ce2010-02-12 10:34:29 +00001615
1616 case LSRUse::Special:
Andrew Trickaca8fb32012-06-15 20:07:26 +00001617 // Special case Basic to handle -1 scales.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001618 return !BaseGV && (Scale == 0 || Scale == -1) && BaseOffset == 0;
Dan Gohman045f8192010-01-22 00:46:49 +00001619 }
1620
David Blaikie46a9f012012-01-20 21:51:11 +00001621 llvm_unreachable("Invalid LSRUse Kind!");
Dan Gohman045f8192010-01-22 00:46:49 +00001622}
1623
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001624static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1625 int64_t MinOffset, int64_t MaxOffset,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001626 LSRUse::KindType Kind, MemAccessTy AccessTy,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001627 GlobalValue *BaseGV, int64_t BaseOffset,
1628 bool HasBaseReg, int64_t Scale) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001629 // Check for overflow.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001630 if (((int64_t)((uint64_t)BaseOffset + MinOffset) > BaseOffset) !=
Dan Gohman45774ce2010-02-12 10:34:29 +00001631 (MinOffset > 0))
1632 return false;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001633 MinOffset = (uint64_t)BaseOffset + MinOffset;
1634 if (((int64_t)((uint64_t)BaseOffset + MaxOffset) > BaseOffset) !=
1635 (MaxOffset > 0))
1636 return false;
1637 MaxOffset = (uint64_t)BaseOffset + MaxOffset;
1638
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001639 return isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, MinOffset,
1640 HasBaseReg, Scale) &&
1641 isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, MaxOffset,
1642 HasBaseReg, Scale);
1643}
1644
1645static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1646 int64_t MinOffset, int64_t MaxOffset,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001647 LSRUse::KindType Kind, MemAccessTy AccessTy,
Wei Mi74d5a902017-02-22 21:47:08 +00001648 const Formula &F, const Loop &L) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001649 // For the purpose of isAMCompletelyFolded either having a canonical formula
1650 // or a scale not equal to zero is correct.
1651 // Problems may arise from non canonical formulae having a scale == 0.
1652 // Strictly speaking it would best to just rely on canonical formulae.
1653 // However, when we generate the scaled formulae, we first check that the
1654 // scaling factor is profitable before computing the actual ScaledReg for
1655 // compile time sake.
Wei Mi74d5a902017-02-22 21:47:08 +00001656 assert((F.isCanonical(L) || F.Scale != 0));
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001657 return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy,
1658 F.BaseGV, F.BaseOffset, F.HasBaseReg, F.Scale);
1659}
1660
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001661/// Test whether we know how to expand the current formula.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001662static bool isLegalUse(const TargetTransformInfo &TTI, int64_t MinOffset,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001663 int64_t MaxOffset, LSRUse::KindType Kind,
1664 MemAccessTy AccessTy, GlobalValue *BaseGV,
1665 int64_t BaseOffset, bool HasBaseReg, int64_t Scale) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001666 // We know how to expand completely foldable formulae.
1667 return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, BaseGV,
1668 BaseOffset, HasBaseReg, Scale) ||
1669 // Or formulae that use a base register produced by a sum of base
1670 // registers.
1671 (Scale == 1 &&
1672 isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy,
1673 BaseGV, BaseOffset, true, 0));
Dan Gohman045f8192010-01-22 00:46:49 +00001674}
1675
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001676static bool isLegalUse(const TargetTransformInfo &TTI, int64_t MinOffset,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001677 int64_t MaxOffset, LSRUse::KindType Kind,
1678 MemAccessTy AccessTy, const Formula &F) {
Chandler Carruth6e479322013-01-07 15:04:40 +00001679 return isLegalUse(TTI, MinOffset, MaxOffset, Kind, AccessTy, F.BaseGV,
1680 F.BaseOffset, F.HasBaseReg, F.Scale);
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001681}
1682
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001683static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1684 const LSRUse &LU, const Formula &F) {
Jonas Paulsson024e3192017-07-21 11:59:37 +00001685 // Target may want to look at the user instructions.
1686 if (LU.Kind == LSRUse::Address && TTI.LSRWithInstrQueries()) {
1687 for (const LSRFixup &Fixup : LU.Fixups)
1688 if (!isAMCompletelyFolded(TTI, LSRUse::Address, LU.AccessTy, F.BaseGV,
Jonas Paulsson50527712017-08-09 11:27:46 +00001689 (F.BaseOffset + Fixup.Offset), F.HasBaseReg,
1690 F.Scale, Fixup.UserInst))
Jonas Paulsson024e3192017-07-21 11:59:37 +00001691 return false;
1692 return true;
1693 }
1694
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001695 return isAMCompletelyFolded(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind,
1696 LU.AccessTy, F.BaseGV, F.BaseOffset, F.HasBaseReg,
1697 F.Scale);
1698}
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001699
Quentin Colombetbf490d42013-05-31 21:29:03 +00001700static unsigned getScalingFactorCost(const TargetTransformInfo &TTI,
Wei Mi74d5a902017-02-22 21:47:08 +00001701 const LSRUse &LU, const Formula &F,
1702 const Loop &L) {
Quentin Colombetbf490d42013-05-31 21:29:03 +00001703 if (!F.Scale)
1704 return 0;
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001705
1706 // If the use is not completely folded in that instruction, we will have to
1707 // pay an extra cost only for scale != 1.
1708 if (!isAMCompletelyFolded(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind,
Wei Mi74d5a902017-02-22 21:47:08 +00001709 LU.AccessTy, F, L))
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001710 return F.Scale != 1;
Quentin Colombetbf490d42013-05-31 21:29:03 +00001711
1712 switch (LU.Kind) {
1713 case LSRUse::Address: {
Quentin Colombet145eb972013-06-19 19:59:41 +00001714 // Check the scaling factor cost with both the min and max offsets.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001715 int ScaleCostMinOffset = TTI.getScalingFactorCost(
1716 LU.AccessTy.MemTy, F.BaseGV, F.BaseOffset + LU.MinOffset, F.HasBaseReg,
1717 F.Scale, LU.AccessTy.AddrSpace);
1718 int ScaleCostMaxOffset = TTI.getScalingFactorCost(
1719 LU.AccessTy.MemTy, F.BaseGV, F.BaseOffset + LU.MaxOffset, F.HasBaseReg,
1720 F.Scale, LU.AccessTy.AddrSpace);
Quentin Colombet145eb972013-06-19 19:59:41 +00001721
1722 assert(ScaleCostMinOffset >= 0 && ScaleCostMaxOffset >= 0 &&
1723 "Legal addressing mode has an illegal cost!");
1724 return std::max(ScaleCostMinOffset, ScaleCostMaxOffset);
Quentin Colombetbf490d42013-05-31 21:29:03 +00001725 }
1726 case LSRUse::ICmpZero:
Quentin Colombetbf490d42013-05-31 21:29:03 +00001727 case LSRUse::Basic:
1728 case LSRUse::Special:
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001729 // The use is completely folded, i.e., everything is folded into the
1730 // instruction.
Quentin Colombetbf490d42013-05-31 21:29:03 +00001731 return 0;
1732 }
1733
1734 llvm_unreachable("Invalid LSRUse Kind!");
1735}
1736
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001737static bool isAlwaysFoldable(const TargetTransformInfo &TTI,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001738 LSRUse::KindType Kind, MemAccessTy AccessTy,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001739 GlobalValue *BaseGV, int64_t BaseOffset,
1740 bool HasBaseReg) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001741 // Fast-path: zero is always foldable.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001742 if (BaseOffset == 0 && !BaseGV) return true;
Dan Gohman045f8192010-01-22 00:46:49 +00001743
Dan Gohman45774ce2010-02-12 10:34:29 +00001744 // Conservatively, create an address with an immediate and a
1745 // base and a scale.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001746 int64_t Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman045f8192010-01-22 00:46:49 +00001747
Dan Gohman20fab452010-05-19 23:43:12 +00001748 // Canonicalize a scale of 1 to a base register if the formula doesn't
1749 // already have a base register.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001750 if (!HasBaseReg && Scale == 1) {
1751 Scale = 0;
1752 HasBaseReg = true;
Dan Gohman20fab452010-05-19 23:43:12 +00001753 }
1754
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001755 return isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, BaseOffset,
1756 HasBaseReg, Scale);
Dan Gohman045f8192010-01-22 00:46:49 +00001757}
1758
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001759static bool isAlwaysFoldable(const TargetTransformInfo &TTI,
1760 ScalarEvolution &SE, int64_t MinOffset,
1761 int64_t MaxOffset, LSRUse::KindType Kind,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001762 MemAccessTy AccessTy, const SCEV *S,
1763 bool HasBaseReg) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001764 // Fast-path: zero is always foldable.
1765 if (S->isZero()) return true;
1766
1767 // Conservatively, create an address with an immediate and a
1768 // base and a scale.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001769 int64_t BaseOffset = ExtractImmediate(S, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +00001770 GlobalValue *BaseGV = ExtractSymbol(S, SE);
1771
1772 // If there's anything else involved, it's not foldable.
1773 if (!S->isZero()) return false;
1774
1775 // Fast-path: zero is always foldable.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001776 if (BaseOffset == 0 && !BaseGV) return true;
Dan Gohman45774ce2010-02-12 10:34:29 +00001777
1778 // Conservatively, create an address with an immediate and a
1779 // base and a scale.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001780 int64_t Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman45774ce2010-02-12 10:34:29 +00001781
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001782 return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, BaseGV,
1783 BaseOffset, HasBaseReg, Scale);
Dan Gohman045f8192010-01-22 00:46:49 +00001784}
1785
Dan Gohman297fb8b2010-06-19 21:21:39 +00001786namespace {
1787
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001788/// An individual increment in a Chain of IV increments. Relate an IV user to
1789/// an expression that computes the IV it uses from the IV used by the previous
1790/// link in the Chain.
Andrew Trick29fe5f02012-01-09 19:50:34 +00001791///
1792/// For the head of a chain, IncExpr holds the absolute SCEV expression for the
1793/// original IVOperand. The head of the chain's IVOperand is only valid during
1794/// chain collection, before LSR replaces IV users. During chain generation,
1795/// IncExpr can be used to find the new IVOperand that computes the same
1796/// expression.
1797struct IVInc {
1798 Instruction *UserInst;
1799 Value* IVOperand;
1800 const SCEV *IncExpr;
1801
Eugene Zelenko306d2992017-10-18 21:46:47 +00001802 IVInc(Instruction *U, Value *O, const SCEV *E)
1803 : UserInst(U), IVOperand(O), IncExpr(E) {}
Andrew Trick29fe5f02012-01-09 19:50:34 +00001804};
1805
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001806// The list of IV increments in program order. We typically add the head of a
1807// chain without finding subsequent links.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001808struct IVChain {
Eugene Zelenko306d2992017-10-18 21:46:47 +00001809 SmallVector<IVInc, 1> Incs;
1810 const SCEV *ExprBase = nullptr;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001811
Eugene Zelenko306d2992017-10-18 21:46:47 +00001812 IVChain() = default;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001813 IVChain(const IVInc &Head, const SCEV *Base)
Eugene Zelenko306d2992017-10-18 21:46:47 +00001814 : Incs(1, Head), ExprBase(Base) {}
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001815
Eugene Zelenko306d2992017-10-18 21:46:47 +00001816 using const_iterator = SmallVectorImpl<IVInc>::const_iterator;
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001817
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001818 // Return the first increment in the chain.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001819 const_iterator begin() const {
1820 assert(!Incs.empty());
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001821 return std::next(Incs.begin());
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001822 }
1823 const_iterator end() const {
1824 return Incs.end();
1825 }
1826
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001827 // Returns true if this chain contains any increments.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001828 bool hasIncs() const { return Incs.size() >= 2; }
1829
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001830 // Add an IVInc to the end of this chain.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001831 void add(const IVInc &X) { Incs.push_back(X); }
1832
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001833 // Returns the last UserInst in the chain.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001834 Instruction *tailUserInst() const { return Incs.back().UserInst; }
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001835
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001836 // Returns true if IncExpr can be profitably added to this chain.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001837 bool isProfitableIncrement(const SCEV *OperExpr,
1838 const SCEV *IncExpr,
1839 ScalarEvolution&);
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001840};
Andrew Trick29fe5f02012-01-09 19:50:34 +00001841
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001842/// Helper for CollectChains to track multiple IV increment uses. Distinguish
1843/// between FarUsers that definitely cross IV increments and NearUsers that may
1844/// be used between IV increments.
Andrew Trick29fe5f02012-01-09 19:50:34 +00001845struct ChainUsers {
1846 SmallPtrSet<Instruction*, 4> FarUsers;
1847 SmallPtrSet<Instruction*, 4> NearUsers;
1848};
1849
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001850/// This class holds state for the main loop strength reduction logic.
Dan Gohman45774ce2010-02-12 10:34:29 +00001851class LSRInstance {
1852 IVUsers &IU;
1853 ScalarEvolution &SE;
1854 DominatorTree &DT;
Dan Gohman607e02b2010-04-09 22:07:05 +00001855 LoopInfo &LI;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001856 const TargetTransformInfo &TTI;
Dan Gohman45774ce2010-02-12 10:34:29 +00001857 Loop *const L;
Eugene Zelenko306d2992017-10-18 21:46:47 +00001858 bool Changed = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00001859
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001860 /// This is the insert position that the current loop's induction variable
1861 /// increment should be placed. In simple loops, this is the latch block's
1862 /// terminator. But in more complicated cases, this is a position which will
1863 /// dominate all the in-loop post-increment users.
Eugene Zelenko306d2992017-10-18 21:46:47 +00001864 Instruction *IVIncInsertPos = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +00001865
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001866 /// Interesting factors between use strides.
Justin Lebar54b0be02016-11-05 16:47:25 +00001867 ///
1868 /// We explicitly use a SetVector which contains a SmallSet, instead of the
1869 /// default, a SmallDenseSet, because we need to use the full range of
1870 /// int64_ts, and there's currently no good way of doing that with
1871 /// SmallDenseSet.
1872 SetVector<int64_t, SmallVector<int64_t, 8>, SmallSet<int64_t, 8>> Factors;
Dan Gohman45774ce2010-02-12 10:34:29 +00001873
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001874 /// Interesting use types, to facilitate truncation reuse.
Chris Lattner229907c2011-07-18 04:54:35 +00001875 SmallSetVector<Type *, 4> Types;
Dan Gohman45774ce2010-02-12 10:34:29 +00001876
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001877 /// The list of interesting uses.
Dan Gohman45774ce2010-02-12 10:34:29 +00001878 SmallVector<LSRUse, 16> Uses;
1879
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001880 /// Track which uses use which register candidates.
Dan Gohman45774ce2010-02-12 10:34:29 +00001881 RegUseTracker RegUses;
1882
Andrew Trick29fe5f02012-01-09 19:50:34 +00001883 // Limit the number of chains to avoid quadratic behavior. We don't expect to
1884 // have more than a few IV increment chains in a loop. Missing a Chain falls
1885 // back to normal LSR behavior for those uses.
1886 static const unsigned MaxChains = 8;
1887
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001888 /// IV users can form a chain of IV increments.
Andrew Trick29fe5f02012-01-09 19:50:34 +00001889 SmallVector<IVChain, MaxChains> IVChainVec;
1890
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001891 /// IV users that belong to profitable IVChains.
Andrew Trick248d4102012-01-09 21:18:52 +00001892 SmallPtrSet<Use*, MaxChains> IVIncSet;
1893
Dan Gohman45774ce2010-02-12 10:34:29 +00001894 void OptimizeShadowIV();
1895 bool FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse);
1896 ICmpInst *OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse);
Dan Gohman4c4043c2010-05-20 20:05:31 +00001897 void OptimizeLoopTermCond();
Dan Gohman45774ce2010-02-12 10:34:29 +00001898
Andrew Trick29fe5f02012-01-09 19:50:34 +00001899 void ChainInstruction(Instruction *UserInst, Instruction *IVOper,
1900 SmallVectorImpl<ChainUsers> &ChainUsersVec);
Andrew Trick248d4102012-01-09 21:18:52 +00001901 void FinalizeChain(IVChain &Chain);
Andrew Trick29fe5f02012-01-09 19:50:34 +00001902 void CollectChains();
Andrew Trick248d4102012-01-09 21:18:52 +00001903 void GenerateIVChain(const IVChain &Chain, SCEVExpander &Rewriter,
Sanjoy Dase6bca0e2017-05-01 17:07:49 +00001904 SmallVectorImpl<WeakTrackingVH> &DeadInsts);
Andrew Trick29fe5f02012-01-09 19:50:34 +00001905
Dan Gohman45774ce2010-02-12 10:34:29 +00001906 void CollectInterestingTypesAndFactors();
1907 void CollectFixupsAndInitialFormulae();
1908
Dan Gohman45774ce2010-02-12 10:34:29 +00001909 // Support for sharing of LSRUses between LSRFixups.
Eugene Zelenko306d2992017-10-18 21:46:47 +00001910 using UseMapTy = DenseMap<LSRUse::SCEVUseKindPair, size_t>;
Dan Gohman45774ce2010-02-12 10:34:29 +00001911 UseMapTy UseMap;
1912
Dan Gohman110ed642010-09-01 01:45:53 +00001913 bool reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001914 LSRUse::KindType Kind, MemAccessTy AccessTy);
Dan Gohman45774ce2010-02-12 10:34:29 +00001915
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001916 std::pair<size_t, int64_t> getUse(const SCEV *&Expr, LSRUse::KindType Kind,
1917 MemAccessTy AccessTy);
Dan Gohman45774ce2010-02-12 10:34:29 +00001918
Dan Gohmana7b68d62010-10-07 23:33:43 +00001919 void DeleteUse(LSRUse &LU, size_t LUIdx);
Dan Gohman80a96082010-05-20 15:17:54 +00001920
Dan Gohman110ed642010-09-01 01:45:53 +00001921 LSRUse *FindUseWithSimilarFormula(const Formula &F, const LSRUse &OrigLU);
Dan Gohman20fab452010-05-19 23:43:12 +00001922
Dan Gohman8c16b382010-02-22 04:11:59 +00001923 void InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00001924 void InsertSupplementalFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
1925 void CountRegisters(const Formula &F, size_t LUIdx);
1926 bool InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F);
1927
1928 void CollectLoopInvariantFixupsAndFormulae();
1929
1930 void GenerateReassociations(LSRUse &LU, unsigned LUIdx, Formula Base,
1931 unsigned Depth = 0);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001932
1933 void GenerateReassociationsImpl(LSRUse &LU, unsigned LUIdx,
1934 const Formula &Base, unsigned Depth,
1935 size_t Idx, bool IsScaledReg = false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001936 void GenerateCombinations(LSRUse &LU, unsigned LUIdx, Formula Base);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001937 void GenerateSymbolicOffsetsImpl(LSRUse &LU, unsigned LUIdx,
1938 const Formula &Base, size_t Idx,
1939 bool IsScaledReg = false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001940 void GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001941 void GenerateConstantOffsetsImpl(LSRUse &LU, unsigned LUIdx,
1942 const Formula &Base,
1943 const SmallVectorImpl<int64_t> &Worklist,
1944 size_t Idx, bool IsScaledReg = false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001945 void GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1946 void GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1947 void GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1948 void GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base);
1949 void GenerateCrossUseConstantOffsets();
1950 void GenerateAllReuseFormulae();
1951
1952 void FilterOutUndesirableDedicatedRegisters();
Dan Gohmana4eca052010-05-18 22:51:59 +00001953
1954 size_t EstimateSearchSpaceComplexity() const;
Dan Gohmane9e08732010-08-29 16:09:42 +00001955 void NarrowSearchSpaceByDetectingSupersets();
1956 void NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman002ff892010-08-29 16:39:22 +00001957 void NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Wei Mi90707392017-07-06 15:52:14 +00001958 void NarrowSearchSpaceByFilterFormulaWithSameScaledReg();
Evgeny Stupachenko9909872e302017-02-21 07:34:40 +00001959 void NarrowSearchSpaceByDeletingCostlyFormulas();
Dan Gohmane9e08732010-08-29 16:09:42 +00001960 void NarrowSearchSpaceByPickingWinnerRegs();
Dan Gohman45774ce2010-02-12 10:34:29 +00001961 void NarrowSearchSpaceUsingHeuristics();
1962
1963 void SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
1964 Cost &SolutionCost,
1965 SmallVectorImpl<const Formula *> &Workspace,
1966 const Cost &CurCost,
1967 const SmallPtrSet<const SCEV *, 16> &CurRegs,
1968 DenseSet<const SCEV *> &VisitedRegs) const;
1969 void Solve(SmallVectorImpl<const Formula *> &Solution) const;
1970
Dan Gohman607e02b2010-04-09 22:07:05 +00001971 BasicBlock::iterator
1972 HoistInsertPosition(BasicBlock::iterator IP,
1973 const SmallVectorImpl<Instruction *> &Inputs) const;
Andrew Trickc908b432012-01-20 07:41:13 +00001974 BasicBlock::iterator
1975 AdjustInsertPositionForExpand(BasicBlock::iterator IP,
1976 const LSRFixup &LF,
1977 const LSRUse &LU,
1978 SCEVExpander &Rewriter) const;
Dan Gohmand2df6432010-04-09 02:00:38 +00001979
Sanjoy Dase6bca0e2017-05-01 17:07:49 +00001980 Value *Expand(const LSRUse &LU, const LSRFixup &LF, const Formula &F,
1981 BasicBlock::iterator IP, SCEVExpander &Rewriter,
1982 SmallVectorImpl<WeakTrackingVH> &DeadInsts) const;
Jonas Paulsson7a794222016-08-17 13:24:19 +00001983 void RewriteForPHI(PHINode *PN, const LSRUse &LU, const LSRFixup &LF,
Sanjoy Dase6bca0e2017-05-01 17:07:49 +00001984 const Formula &F, SCEVExpander &Rewriter,
1985 SmallVectorImpl<WeakTrackingVH> &DeadInsts) const;
1986 void Rewrite(const LSRUse &LU, const LSRFixup &LF, const Formula &F,
Dan Gohman45774ce2010-02-12 10:34:29 +00001987 SCEVExpander &Rewriter,
Sanjoy Dase6bca0e2017-05-01 17:07:49 +00001988 SmallVectorImpl<WeakTrackingVH> &DeadInsts) const;
Justin Bogner843fb202015-12-15 19:40:57 +00001989 void ImplementSolution(const SmallVectorImpl<const Formula *> &Solution);
Dan Gohman45774ce2010-02-12 10:34:29 +00001990
Andrew Trickdc18e382011-12-13 00:55:33 +00001991public:
Justin Bogner843fb202015-12-15 19:40:57 +00001992 LSRInstance(Loop *L, IVUsers &IU, ScalarEvolution &SE, DominatorTree &DT,
1993 LoopInfo &LI, const TargetTransformInfo &TTI);
Dan Gohman45774ce2010-02-12 10:34:29 +00001994
1995 bool getChanged() const { return Changed; }
1996
1997 void print_factors_and_types(raw_ostream &OS) const;
1998 void print_fixups(raw_ostream &OS) const;
1999 void print_uses(raw_ostream &OS) const;
2000 void print(raw_ostream &OS) const;
2001 void dump() const;
2002};
2003
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00002004} // end anonymous namespace
Dan Gohman45774ce2010-02-12 10:34:29 +00002005
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002006/// If IV is used in a int-to-float cast inside the loop then try to eliminate
2007/// the cast operation.
Dan Gohman45774ce2010-02-12 10:34:29 +00002008void LSRInstance::OptimizeShadowIV() {
2009 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
2010 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
2011 return;
2012
2013 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end();
2014 UI != E; /* empty */) {
2015 IVUsers::const_iterator CandidateUI = UI;
2016 ++UI;
2017 Instruction *ShadowUse = CandidateUI->getUser();
Craig Topperf40110f2014-04-25 05:29:35 +00002018 Type *DestTy = nullptr;
Andrew Trick858e9f02011-07-21 01:05:01 +00002019 bool IsSigned = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00002020
2021 /* If shadow use is a int->float cast then insert a second IV
2022 to eliminate this cast.
2023
2024 for (unsigned i = 0; i < n; ++i)
2025 foo((double)i);
2026
2027 is transformed into
2028
2029 double d = 0.0;
2030 for (unsigned i = 0; i < n; ++i, ++d)
2031 foo(d);
2032 */
Andrew Trick858e9f02011-07-21 01:05:01 +00002033 if (UIToFPInst *UCast = dyn_cast<UIToFPInst>(CandidateUI->getUser())) {
2034 IsSigned = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00002035 DestTy = UCast->getDestTy();
Andrew Trick858e9f02011-07-21 01:05:01 +00002036 }
2037 else if (SIToFPInst *SCast = dyn_cast<SIToFPInst>(CandidateUI->getUser())) {
2038 IsSigned = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00002039 DestTy = SCast->getDestTy();
Andrew Trick858e9f02011-07-21 01:05:01 +00002040 }
Dan Gohman45774ce2010-02-12 10:34:29 +00002041 if (!DestTy) continue;
2042
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002043 // If target does not support DestTy natively then do not apply
2044 // this transformation.
2045 if (!TTI.isTypeLegal(DestTy)) continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00002046
2047 PHINode *PH = dyn_cast<PHINode>(ShadowUse->getOperand(0));
2048 if (!PH) continue;
2049 if (PH->getNumIncomingValues() != 2) continue;
2050
Max Kazantsevbb1d0102017-08-29 07:32:20 +00002051 // If the calculation in integers overflows, the result in FP type will
2052 // differ. So we only can do this transformation if we are guaranteed to not
2053 // deal with overflowing values
2054 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(SE.getSCEV(PH));
2055 if (!AR) continue;
2056 if (IsSigned && !AR->hasNoSignedWrap()) continue;
2057 if (!IsSigned && !AR->hasNoUnsignedWrap()) continue;
2058
Chris Lattner229907c2011-07-18 04:54:35 +00002059 Type *SrcTy = PH->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00002060 int Mantissa = DestTy->getFPMantissaWidth();
2061 if (Mantissa == -1) continue;
2062 if ((int)SE.getTypeSizeInBits(SrcTy) > Mantissa)
2063 continue;
2064
2065 unsigned Entry, Latch;
2066 if (PH->getIncomingBlock(0) == L->getLoopPreheader()) {
2067 Entry = 0;
2068 Latch = 1;
Dan Gohman045f8192010-01-22 00:46:49 +00002069 } else {
Dan Gohman45774ce2010-02-12 10:34:29 +00002070 Entry = 1;
2071 Latch = 0;
Dan Gohman045f8192010-01-22 00:46:49 +00002072 }
Dan Gohman045f8192010-01-22 00:46:49 +00002073
Dan Gohman45774ce2010-02-12 10:34:29 +00002074 ConstantInt *Init = dyn_cast<ConstantInt>(PH->getIncomingValue(Entry));
2075 if (!Init) continue;
Andrew Trick858e9f02011-07-21 01:05:01 +00002076 Constant *NewInit = ConstantFP::get(DestTy, IsSigned ?
Andrew Trickbd243d02011-07-21 01:45:54 +00002077 (double)Init->getSExtValue() :
2078 (double)Init->getZExtValue());
Dan Gohman045f8192010-01-22 00:46:49 +00002079
Dan Gohman45774ce2010-02-12 10:34:29 +00002080 BinaryOperator *Incr =
2081 dyn_cast<BinaryOperator>(PH->getIncomingValue(Latch));
2082 if (!Incr) continue;
2083 if (Incr->getOpcode() != Instruction::Add
2084 && Incr->getOpcode() != Instruction::Sub)
Dan Gohman045f8192010-01-22 00:46:49 +00002085 continue;
Dan Gohman045f8192010-01-22 00:46:49 +00002086
Dan Gohman45774ce2010-02-12 10:34:29 +00002087 /* Initialize new IV, double d = 0.0 in above example. */
Craig Topperf40110f2014-04-25 05:29:35 +00002088 ConstantInt *C = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +00002089 if (Incr->getOperand(0) == PH)
2090 C = dyn_cast<ConstantInt>(Incr->getOperand(1));
2091 else if (Incr->getOperand(1) == PH)
2092 C = dyn_cast<ConstantInt>(Incr->getOperand(0));
Dan Gohman045f8192010-01-22 00:46:49 +00002093 else
Dan Gohman045f8192010-01-22 00:46:49 +00002094 continue;
2095
Dan Gohman45774ce2010-02-12 10:34:29 +00002096 if (!C) continue;
Dan Gohman045f8192010-01-22 00:46:49 +00002097
Dan Gohman45774ce2010-02-12 10:34:29 +00002098 // Ignore negative constants, as the code below doesn't handle them
2099 // correctly. TODO: Remove this restriction.
2100 if (!C->getValue().isStrictlyPositive()) continue;
Dan Gohman045f8192010-01-22 00:46:49 +00002101
Dan Gohman45774ce2010-02-12 10:34:29 +00002102 /* Add new PHINode. */
Jay Foad52131342011-03-30 11:28:46 +00002103 PHINode *NewPH = PHINode::Create(DestTy, 2, "IV.S.", PH);
Dan Gohman045f8192010-01-22 00:46:49 +00002104
Dan Gohman45774ce2010-02-12 10:34:29 +00002105 /* create new increment. '++d' in above example. */
2106 Constant *CFP = ConstantFP::get(DestTy, C->getZExtValue());
2107 BinaryOperator *NewIncr =
2108 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
2109 Instruction::FAdd : Instruction::FSub,
2110 NewPH, CFP, "IV.S.next.", Incr);
Dan Gohman045f8192010-01-22 00:46:49 +00002111
Dan Gohman45774ce2010-02-12 10:34:29 +00002112 NewPH->addIncoming(NewInit, PH->getIncomingBlock(Entry));
2113 NewPH->addIncoming(NewIncr, PH->getIncomingBlock(Latch));
Dan Gohman045f8192010-01-22 00:46:49 +00002114
Dan Gohman45774ce2010-02-12 10:34:29 +00002115 /* Remove cast operation */
2116 ShadowUse->replaceAllUsesWith(NewPH);
2117 ShadowUse->eraseFromParent();
Dan Gohman4c4043c2010-05-20 20:05:31 +00002118 Changed = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00002119 break;
Dan Gohman045f8192010-01-22 00:46:49 +00002120 }
2121}
2122
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002123/// If Cond has an operand that is an expression of an IV, set the IV user and
2124/// stride information and return true, otherwise return false.
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00002125bool LSRInstance::FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse) {
Craig Topper042a3922015-05-25 20:01:18 +00002126 for (IVStrideUse &U : IU)
2127 if (U.getUser() == Cond) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002128 // NOTE: we could handle setcc instructions with multiple uses here, but
2129 // InstCombine does it as well for simple uses, it's not clear that it
2130 // occurs enough in real life to handle.
Craig Topper042a3922015-05-25 20:01:18 +00002131 CondUse = &U;
Dan Gohman45774ce2010-02-12 10:34:29 +00002132 return true;
2133 }
Dan Gohman045f8192010-01-22 00:46:49 +00002134 return false;
Evan Cheng133694d2007-10-25 09:11:16 +00002135}
2136
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002137/// Rewrite the loop's terminating condition if it uses a max computation.
Dan Gohman045f8192010-01-22 00:46:49 +00002138///
2139/// This is a narrow solution to a specific, but acute, problem. For loops
2140/// like this:
2141///
2142/// i = 0;
2143/// do {
2144/// p[i] = 0.0;
2145/// } while (++i < n);
2146///
2147/// the trip count isn't just 'n', because 'n' might not be positive. And
2148/// unfortunately this can come up even for loops where the user didn't use
2149/// a C do-while loop. For example, seemingly well-behaved top-test loops
2150/// will commonly be lowered like this:
Eugene Zelenko306d2992017-10-18 21:46:47 +00002151///
Dan Gohman045f8192010-01-22 00:46:49 +00002152/// if (n > 0) {
2153/// i = 0;
2154/// do {
2155/// p[i] = 0.0;
2156/// } while (++i < n);
2157/// }
2158///
2159/// and then it's possible for subsequent optimization to obscure the if
2160/// test in such a way that indvars can't find it.
2161///
2162/// When indvars can't find the if test in loops like this, it creates a
2163/// max expression, which allows it to give the loop a canonical
2164/// induction variable:
2165///
2166/// i = 0;
2167/// max = n < 1 ? 1 : n;
2168/// do {
2169/// p[i] = 0.0;
2170/// } while (++i != max);
2171///
2172/// Canonical induction variables are necessary because the loop passes
2173/// are designed around them. The most obvious example of this is the
2174/// LoopInfo analysis, which doesn't remember trip count values. It
2175/// expects to be able to rediscover the trip count each time it is
Dan Gohman45774ce2010-02-12 10:34:29 +00002176/// needed, and it does this using a simple analysis that only succeeds if
Dan Gohman045f8192010-01-22 00:46:49 +00002177/// the loop has a canonical induction variable.
2178///
2179/// However, when it comes time to generate code, the maximum operation
2180/// can be quite costly, especially if it's inside of an outer loop.
2181///
2182/// This function solves this problem by detecting this type of loop and
2183/// rewriting their conditions from ICMP_NE back to ICMP_SLT, and deleting
2184/// the instructions for the maximum computation.
Dan Gohman45774ce2010-02-12 10:34:29 +00002185ICmpInst *LSRInstance::OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse) {
Dan Gohman045f8192010-01-22 00:46:49 +00002186 // Check that the loop matches the pattern we're looking for.
2187 if (Cond->getPredicate() != CmpInst::ICMP_EQ &&
2188 Cond->getPredicate() != CmpInst::ICMP_NE)
2189 return Cond;
Dan Gohman51ad99d2010-01-21 02:09:26 +00002190
Dan Gohman045f8192010-01-22 00:46:49 +00002191 SelectInst *Sel = dyn_cast<SelectInst>(Cond->getOperand(1));
2192 if (!Sel || !Sel->hasOneUse()) return Cond;
Dan Gohman51ad99d2010-01-21 02:09:26 +00002193
Dan Gohman45774ce2010-02-12 10:34:29 +00002194 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
Dan Gohman045f8192010-01-22 00:46:49 +00002195 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
2196 return Cond;
Dan Gohman1d2ded72010-05-03 22:09:21 +00002197 const SCEV *One = SE.getConstant(BackedgeTakenCount->getType(), 1);
Dan Gohman51ad99d2010-01-21 02:09:26 +00002198
Dan Gohman045f8192010-01-22 00:46:49 +00002199 // Add one to the backedge-taken count to get the trip count.
Dan Gohman9b7632d2010-08-16 15:39:27 +00002200 const SCEV *IterationCount = SE.getAddExpr(One, BackedgeTakenCount);
Dan Gohman534ba372010-04-24 03:13:44 +00002201 if (IterationCount != SE.getSCEV(Sel)) return Cond;
Dan Gohman045f8192010-01-22 00:46:49 +00002202
Dan Gohman534ba372010-04-24 03:13:44 +00002203 // Check for a max calculation that matches the pattern. There's no check
2204 // for ICMP_ULE here because the comparison would be with zero, which
2205 // isn't interesting.
2206 CmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE;
Craig Topperf40110f2014-04-25 05:29:35 +00002207 const SCEVNAryExpr *Max = nullptr;
Dan Gohman534ba372010-04-24 03:13:44 +00002208 if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(BackedgeTakenCount)) {
2209 Pred = ICmpInst::ICMP_SLE;
2210 Max = S;
2211 } else if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(IterationCount)) {
2212 Pred = ICmpInst::ICMP_SLT;
2213 Max = S;
2214 } else if (const SCEVUMaxExpr *U = dyn_cast<SCEVUMaxExpr>(IterationCount)) {
2215 Pred = ICmpInst::ICMP_ULT;
2216 Max = U;
2217 } else {
2218 // No match; bail.
Dan Gohman045f8192010-01-22 00:46:49 +00002219 return Cond;
Dan Gohman534ba372010-04-24 03:13:44 +00002220 }
Dan Gohman045f8192010-01-22 00:46:49 +00002221
2222 // To handle a max with more than two operands, this optimization would
2223 // require additional checking and setup.
2224 if (Max->getNumOperands() != 2)
2225 return Cond;
2226
2227 const SCEV *MaxLHS = Max->getOperand(0);
2228 const SCEV *MaxRHS = Max->getOperand(1);
Dan Gohman534ba372010-04-24 03:13:44 +00002229
2230 // ScalarEvolution canonicalizes constants to the left. For < and >, look
2231 // for a comparison with 1. For <= and >=, a comparison with zero.
2232 if (!MaxLHS ||
2233 (ICmpInst::isTrueWhenEqual(Pred) ? !MaxLHS->isZero() : (MaxLHS != One)))
2234 return Cond;
2235
Dan Gohman045f8192010-01-22 00:46:49 +00002236 // Check the relevant induction variable for conformance to
2237 // the pattern.
Dan Gohman45774ce2010-02-12 10:34:29 +00002238 const SCEV *IV = SE.getSCEV(Cond->getOperand(0));
Dan Gohman045f8192010-01-22 00:46:49 +00002239 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(IV);
2240 if (!AR || !AR->isAffine() ||
2241 AR->getStart() != One ||
Dan Gohman45774ce2010-02-12 10:34:29 +00002242 AR->getStepRecurrence(SE) != One)
Dan Gohman045f8192010-01-22 00:46:49 +00002243 return Cond;
2244
2245 assert(AR->getLoop() == L &&
2246 "Loop condition operand is an addrec in a different loop!");
2247
2248 // Check the right operand of the select, and remember it, as it will
2249 // be used in the new comparison instruction.
Craig Topperf40110f2014-04-25 05:29:35 +00002250 Value *NewRHS = nullptr;
Dan Gohman534ba372010-04-24 03:13:44 +00002251 if (ICmpInst::isTrueWhenEqual(Pred)) {
2252 // Look for n+1, and grab n.
2253 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(1)))
Jakub Staszakf6df1e32013-03-24 09:25:47 +00002254 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1)))
2255 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS)
2256 NewRHS = BO->getOperand(0);
Dan Gohman534ba372010-04-24 03:13:44 +00002257 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(2)))
Jakub Staszakf6df1e32013-03-24 09:25:47 +00002258 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1)))
2259 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS)
2260 NewRHS = BO->getOperand(0);
Dan Gohman534ba372010-04-24 03:13:44 +00002261 if (!NewRHS)
2262 return Cond;
2263 } else if (SE.getSCEV(Sel->getOperand(1)) == MaxRHS)
Dan Gohman045f8192010-01-22 00:46:49 +00002264 NewRHS = Sel->getOperand(1);
Dan Gohman45774ce2010-02-12 10:34:29 +00002265 else if (SE.getSCEV(Sel->getOperand(2)) == MaxRHS)
Dan Gohman045f8192010-01-22 00:46:49 +00002266 NewRHS = Sel->getOperand(2);
Dan Gohman1081f1a2010-06-22 23:07:13 +00002267 else if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(MaxRHS))
2268 NewRHS = SU->getValue();
Dan Gohman534ba372010-04-24 03:13:44 +00002269 else
Dan Gohman1081f1a2010-06-22 23:07:13 +00002270 // Max doesn't match expected pattern.
2271 return Cond;
Dan Gohman045f8192010-01-22 00:46:49 +00002272
2273 // Determine the new comparison opcode. It may be signed or unsigned,
2274 // and the original comparison may be either equality or inequality.
Dan Gohman045f8192010-01-22 00:46:49 +00002275 if (Cond->getPredicate() == CmpInst::ICMP_EQ)
2276 Pred = CmpInst::getInversePredicate(Pred);
2277
2278 // Ok, everything looks ok to change the condition into an SLT or SGE and
2279 // delete the max calculation.
2280 ICmpInst *NewCond =
2281 new ICmpInst(Cond, Pred, Cond->getOperand(0), NewRHS, "scmp");
2282
2283 // Delete the max calculation instructions.
2284 Cond->replaceAllUsesWith(NewCond);
2285 CondUse->setUser(NewCond);
2286 Instruction *Cmp = cast<Instruction>(Sel->getOperand(0));
2287 Cond->eraseFromParent();
2288 Sel->eraseFromParent();
2289 if (Cmp->use_empty())
2290 Cmp->eraseFromParent();
2291 return NewCond;
Dan Gohman68e77352008-09-15 21:22:06 +00002292}
2293
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002294/// Change loop terminating condition to use the postinc iv when possible.
Dan Gohman4c4043c2010-05-20 20:05:31 +00002295void
Dan Gohman45774ce2010-02-12 10:34:29 +00002296LSRInstance::OptimizeLoopTermCond() {
2297 SmallPtrSet<Instruction *, 4> PostIncs;
2298
James Molloy196ad082016-08-15 07:53:03 +00002299 // We need a different set of heuristics for rotated and non-rotated loops.
2300 // If a loop is rotated then the latch is also the backedge, so inserting
2301 // post-inc expressions just before the latch is ideal. To reduce live ranges
2302 // it also makes sense to rewrite terminating conditions to use post-inc
2303 // expressions.
2304 //
2305 // If the loop is not rotated then the latch is not a backedge; the latch
2306 // check is done in the loop head. Adding post-inc expressions before the
2307 // latch will cause overlapping live-ranges of pre-inc and post-inc expressions
2308 // in the loop body. In this case we do *not* want to use post-inc expressions
2309 // in the latch check, and we want to insert post-inc expressions before
2310 // the backedge.
Evan Cheng85a9f432009-11-12 07:35:05 +00002311 BasicBlock *LatchBlock = L->getLoopLatch();
Evan Chengba4e5da72009-11-17 18:10:11 +00002312 SmallVector<BasicBlock*, 8> ExitingBlocks;
2313 L->getExitingBlocks(ExitingBlocks);
James Molloy196ad082016-08-15 07:53:03 +00002314 if (llvm::all_of(ExitingBlocks, [&LatchBlock](const BasicBlock *BB) {
2315 return LatchBlock != BB;
2316 })) {
2317 // The backedge doesn't exit the loop; treat this as a head-tested loop.
2318 IVIncInsertPos = LatchBlock->getTerminator();
2319 return;
2320 }
Jim Grosbach60f48542009-11-17 17:53:56 +00002321
James Molloy196ad082016-08-15 07:53:03 +00002322 // Otherwise treat this as a rotated loop.
Craig Topper042a3922015-05-25 20:01:18 +00002323 for (BasicBlock *ExitingBlock : ExitingBlocks) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002324 // Get the terminating condition for the loop if possible. If we
Evan Chengba4e5da72009-11-17 18:10:11 +00002325 // can, we want to change it to use a post-incremented version of its
2326 // induction variable, to allow coalescing the live ranges for the IV into
2327 // one register value.
Evan Cheng85a9f432009-11-12 07:35:05 +00002328
Evan Chengba4e5da72009-11-17 18:10:11 +00002329 BranchInst *TermBr = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
2330 if (!TermBr)
2331 continue;
2332 // FIXME: Overly conservative, termination condition could be an 'or' etc..
2333 if (TermBr->isUnconditional() || !isa<ICmpInst>(TermBr->getCondition()))
2334 continue;
Evan Cheng85a9f432009-11-12 07:35:05 +00002335
Evan Chengba4e5da72009-11-17 18:10:11 +00002336 // Search IVUsesByStride to find Cond's IVUse if there is one.
Craig Topperf40110f2014-04-25 05:29:35 +00002337 IVStrideUse *CondUse = nullptr;
Evan Chengba4e5da72009-11-17 18:10:11 +00002338 ICmpInst *Cond = cast<ICmpInst>(TermBr->getCondition());
Dan Gohman45774ce2010-02-12 10:34:29 +00002339 if (!FindIVUserForCond(Cond, CondUse))
Evan Chengba4e5da72009-11-17 18:10:11 +00002340 continue;
2341
Evan Chengba4e5da72009-11-17 18:10:11 +00002342 // If the trip count is computed in terms of a max (due to ScalarEvolution
2343 // being unable to find a sufficient guard, for example), change the loop
2344 // comparison to use SLT or ULT instead of NE.
Dan Gohman45774ce2010-02-12 10:34:29 +00002345 // One consequence of doing this now is that it disrupts the count-down
2346 // optimization. That's not always a bad thing though, because in such
2347 // cases it may still be worthwhile to avoid a max.
2348 Cond = OptimizeMax(Cond, CondUse);
Evan Chengba4e5da72009-11-17 18:10:11 +00002349
Dan Gohman45774ce2010-02-12 10:34:29 +00002350 // If this exiting block dominates the latch block, it may also use
2351 // the post-inc value if it won't be shared with other uses.
2352 // Check for dominance.
2353 if (!DT.dominates(ExitingBlock, LatchBlock))
Dan Gohman045f8192010-01-22 00:46:49 +00002354 continue;
Evan Chengba4e5da72009-11-17 18:10:11 +00002355
Dan Gohman45774ce2010-02-12 10:34:29 +00002356 // Conservatively avoid trying to use the post-inc value in non-latch
2357 // exits if there may be pre-inc users in intervening blocks.
Dan Gohman2d0f96d2010-02-14 03:21:49 +00002358 if (LatchBlock != ExitingBlock)
Dan Gohman45774ce2010-02-12 10:34:29 +00002359 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
2360 // Test if the use is reachable from the exiting block. This dominator
2361 // query is a conservative approximation of reachability.
2362 if (&*UI != CondUse &&
2363 !DT.properlyDominates(UI->getUser()->getParent(), ExitingBlock)) {
2364 // Conservatively assume there may be reuse if the quotient of their
2365 // strides could be a legal scale.
Dan Gohmane637ff52010-04-19 21:48:58 +00002366 const SCEV *A = IU.getStride(*CondUse, L);
2367 const SCEV *B = IU.getStride(*UI, L);
Dan Gohmand006ab92010-04-07 22:27:08 +00002368 if (!A || !B) continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00002369 if (SE.getTypeSizeInBits(A->getType()) !=
2370 SE.getTypeSizeInBits(B->getType())) {
2371 if (SE.getTypeSizeInBits(A->getType()) >
2372 SE.getTypeSizeInBits(B->getType()))
2373 B = SE.getSignExtendExpr(B, A->getType());
2374 else
2375 A = SE.getSignExtendExpr(A, B->getType());
2376 }
2377 if (const SCEVConstant *D =
Dan Gohman4eebb942010-02-19 19:35:48 +00002378 dyn_cast_or_null<SCEVConstant>(getExactSDiv(B, A, SE))) {
Dan Gohman86110fa2010-05-20 22:25:20 +00002379 const ConstantInt *C = D->getValue();
Dan Gohman45774ce2010-02-12 10:34:29 +00002380 // Stride of one or negative one can have reuse with non-addresses.
Craig Topper79ab6432017-07-06 18:39:47 +00002381 if (C->isOne() || C->isMinusOne())
Dan Gohman45774ce2010-02-12 10:34:29 +00002382 goto decline_post_inc;
2383 // Avoid weird situations.
Dan Gohman86110fa2010-05-20 22:25:20 +00002384 if (C->getValue().getMinSignedBits() >= 64 ||
2385 C->getValue().isMinSignedValue())
Dan Gohman45774ce2010-02-12 10:34:29 +00002386 goto decline_post_inc;
2387 // Check for possible scaled-address reuse.
Matt Arsenault3e268cc2017-12-11 21:38:43 +00002388 MemAccessTy AccessTy = getAccessType(TTI, UI->getUser());
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002389 int64_t Scale = C->getSExtValue();
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002390 if (TTI.isLegalAddressingMode(AccessTy.MemTy, /*BaseGV=*/nullptr,
2391 /*BaseOffset=*/0,
2392 /*HasBaseReg=*/false, Scale,
2393 AccessTy.AddrSpace))
Dan Gohman45774ce2010-02-12 10:34:29 +00002394 goto decline_post_inc;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002395 Scale = -Scale;
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002396 if (TTI.isLegalAddressingMode(AccessTy.MemTy, /*BaseGV=*/nullptr,
2397 /*BaseOffset=*/0,
2398 /*HasBaseReg=*/false, Scale,
2399 AccessTy.AddrSpace))
Dan Gohman45774ce2010-02-12 10:34:29 +00002400 goto decline_post_inc;
2401 }
2402 }
2403
David Greene2330f782009-12-23 22:58:38 +00002404 DEBUG(dbgs() << " Change loop exiting icmp to use postinc iv: "
Dan Gohman45774ce2010-02-12 10:34:29 +00002405 << *Cond << '\n');
Evan Chengba4e5da72009-11-17 18:10:11 +00002406
2407 // It's possible for the setcc instruction to be anywhere in the loop, and
2408 // possible for it to have multiple users. If it is not immediately before
2409 // the exiting block branch, move it.
Dan Gohman45774ce2010-02-12 10:34:29 +00002410 if (&*++BasicBlock::iterator(Cond) != TermBr) {
2411 if (Cond->hasOneUse()) {
Evan Chengba4e5da72009-11-17 18:10:11 +00002412 Cond->moveBefore(TermBr);
2413 } else {
Dan Gohman45774ce2010-02-12 10:34:29 +00002414 // Clone the terminating condition and insert into the loopend.
2415 ICmpInst *OldCond = Cond;
Evan Chengba4e5da72009-11-17 18:10:11 +00002416 Cond = cast<ICmpInst>(Cond->clone());
2417 Cond->setName(L->getHeader()->getName() + ".termcond");
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00002418 ExitingBlock->getInstList().insert(TermBr->getIterator(), Cond);
Evan Chengba4e5da72009-11-17 18:10:11 +00002419
2420 // Clone the IVUse, as the old use still exists!
Andrew Trickfc4ccb22011-06-21 15:43:52 +00002421 CondUse = &IU.AddUser(Cond, CondUse->getOperandValToReplace());
Dan Gohman45774ce2010-02-12 10:34:29 +00002422 TermBr->replaceUsesOfWith(OldCond, Cond);
Evan Chengba4e5da72009-11-17 18:10:11 +00002423 }
Evan Cheng85a9f432009-11-12 07:35:05 +00002424 }
2425
Evan Chengba4e5da72009-11-17 18:10:11 +00002426 // If we get to here, we know that we can transform the setcc instruction to
2427 // use the post-incremented version of the IV, allowing us to coalesce the
2428 // live ranges for the IV correctly.
Dan Gohmand006ab92010-04-07 22:27:08 +00002429 CondUse->transformToPostInc(L);
Evan Chengba4e5da72009-11-17 18:10:11 +00002430 Changed = true;
2431
Dan Gohman45774ce2010-02-12 10:34:29 +00002432 PostIncs.insert(Cond);
2433 decline_post_inc:;
Dan Gohman51ad99d2010-01-21 02:09:26 +00002434 }
Dan Gohman45774ce2010-02-12 10:34:29 +00002435
2436 // Determine an insertion point for the loop induction variable increment. It
2437 // must dominate all the post-inc comparisons we just set up, and it must
2438 // dominate the loop latch edge.
2439 IVIncInsertPos = L->getLoopLatch()->getTerminator();
Craig Topper46276792014-08-24 23:23:06 +00002440 for (Instruction *Inst : PostIncs) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002441 BasicBlock *BB =
2442 DT.findNearestCommonDominator(IVIncInsertPos->getParent(),
Craig Topper46276792014-08-24 23:23:06 +00002443 Inst->getParent());
2444 if (BB == Inst->getParent())
2445 IVIncInsertPos = Inst;
Dan Gohman45774ce2010-02-12 10:34:29 +00002446 else if (BB != IVIncInsertPos->getParent())
2447 IVIncInsertPos = BB->getTerminator();
2448 }
Dan Gohman51ad99d2010-01-21 02:09:26 +00002449}
2450
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002451/// Determine if the given use can accommodate a fixup at the given offset and
2452/// other details. If so, update the use and return true.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002453bool LSRInstance::reconcileNewOffset(LSRUse &LU, int64_t NewOffset,
2454 bool HasBaseReg, LSRUse::KindType Kind,
2455 MemAccessTy AccessTy) {
Dan Gohman110ed642010-09-01 01:45:53 +00002456 int64_t NewMinOffset = LU.MinOffset;
2457 int64_t NewMaxOffset = LU.MaxOffset;
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002458 MemAccessTy NewAccessTy = AccessTy;
Dan Gohman045f8192010-01-22 00:46:49 +00002459
Dan Gohman45774ce2010-02-12 10:34:29 +00002460 // Check for a mismatched kind. It's tempting to collapse mismatched kinds to
2461 // something conservative, however this can pessimize in the case that one of
2462 // the uses will have all its uses outside the loop, for example.
2463 if (LU.Kind != Kind)
Dan Gohman045f8192010-01-22 00:46:49 +00002464 return false;
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00002465
Dan Gohman45774ce2010-02-12 10:34:29 +00002466 // Check for a mismatched access type, and fall back conservatively as needed.
Dan Gohman32655902010-06-19 21:30:18 +00002467 // TODO: Be less conservative when the type is similar and can use the same
2468 // addressing modes.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002469 if (Kind == LSRUse::Address) {
Matt Arsenault1f2ca662017-01-30 19:50:17 +00002470 if (AccessTy.MemTy != LU.AccessTy.MemTy) {
2471 NewAccessTy = MemAccessTy::getUnknown(AccessTy.MemTy->getContext(),
2472 AccessTy.AddrSpace);
2473 }
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002474 }
Dan Gohman51ad99d2010-01-21 02:09:26 +00002475
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00002476 // Conservatively assume HasBaseReg is true for now.
2477 if (NewOffset < LU.MinOffset) {
2478 if (!isAlwaysFoldable(TTI, Kind, NewAccessTy, /*BaseGV=*/nullptr,
2479 LU.MaxOffset - NewOffset, HasBaseReg))
2480 return false;
2481 NewMinOffset = NewOffset;
2482 } else if (NewOffset > LU.MaxOffset) {
2483 if (!isAlwaysFoldable(TTI, Kind, NewAccessTy, /*BaseGV=*/nullptr,
2484 NewOffset - LU.MinOffset, HasBaseReg))
2485 return false;
2486 NewMaxOffset = NewOffset;
2487 }
2488
Dan Gohman45774ce2010-02-12 10:34:29 +00002489 // Update the use.
Dan Gohman110ed642010-09-01 01:45:53 +00002490 LU.MinOffset = NewMinOffset;
2491 LU.MaxOffset = NewMaxOffset;
2492 LU.AccessTy = NewAccessTy;
Dan Gohman29916e02010-01-21 22:42:49 +00002493 return true;
2494}
2495
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002496/// Return an LSRUse index and an offset value for a fixup which needs the given
2497/// expression, with the given kind and optional access type. Either reuse an
2498/// existing use or create a new one, as needed.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002499std::pair<size_t, int64_t> LSRInstance::getUse(const SCEV *&Expr,
2500 LSRUse::KindType Kind,
2501 MemAccessTy AccessTy) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002502 const SCEV *Copy = Expr;
2503 int64_t Offset = ExtractImmediate(Expr, SE);
Evan Cheng85a9f432009-11-12 07:35:05 +00002504
Dan Gohman45774ce2010-02-12 10:34:29 +00002505 // Basic uses can't accept any offset, for example.
Craig Topperf40110f2014-04-25 05:29:35 +00002506 if (!isAlwaysFoldable(TTI, Kind, AccessTy, /*BaseGV=*/ nullptr,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002507 Offset, /*HasBaseReg=*/ true)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002508 Expr = Copy;
2509 Offset = 0;
2510 }
2511
2512 std::pair<UseMapTy::iterator, bool> P =
Benjamin Kramer62fb0cf2014-03-15 17:17:48 +00002513 UseMap.insert(std::make_pair(LSRUse::SCEVUseKindPair(Expr, Kind), 0));
Dan Gohman45774ce2010-02-12 10:34:29 +00002514 if (!P.second) {
2515 // A use already existed with this base.
2516 size_t LUIdx = P.first->second;
2517 LSRUse &LU = Uses[LUIdx];
Dan Gohman110ed642010-09-01 01:45:53 +00002518 if (reconcileNewOffset(LU, Offset, /*HasBaseReg=*/true, Kind, AccessTy))
Dan Gohman45774ce2010-02-12 10:34:29 +00002519 // Reuse this use.
2520 return std::make_pair(LUIdx, Offset);
2521 }
2522
2523 // Create a new use.
2524 size_t LUIdx = Uses.size();
2525 P.first->second = LUIdx;
2526 Uses.push_back(LSRUse(Kind, AccessTy));
2527 LSRUse &LU = Uses[LUIdx];
2528
Dan Gohman45774ce2010-02-12 10:34:29 +00002529 LU.MinOffset = Offset;
2530 LU.MaxOffset = Offset;
2531 return std::make_pair(LUIdx, Offset);
2532}
2533
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002534/// Delete the given use from the Uses list.
Dan Gohmana7b68d62010-10-07 23:33:43 +00002535void LSRInstance::DeleteUse(LSRUse &LU, size_t LUIdx) {
Dan Gohman110ed642010-09-01 01:45:53 +00002536 if (&LU != &Uses.back())
Dan Gohman80a96082010-05-20 15:17:54 +00002537 std::swap(LU, Uses.back());
2538 Uses.pop_back();
Dan Gohmana7b68d62010-10-07 23:33:43 +00002539
2540 // Update RegUses.
Sanjoy Das302bfd02015-08-16 18:22:43 +00002541 RegUses.swapAndDropUse(LUIdx, Uses.size());
Dan Gohman80a96082010-05-20 15:17:54 +00002542}
2543
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002544/// Look for a use distinct from OrigLU which is has a formula that has the same
2545/// registers as the given formula.
Dan Gohman20fab452010-05-19 23:43:12 +00002546LSRUse *
2547LSRInstance::FindUseWithSimilarFormula(const Formula &OrigF,
Dan Gohman110ed642010-09-01 01:45:53 +00002548 const LSRUse &OrigLU) {
2549 // Search all uses for the formula. This could be more clever.
Dan Gohman20fab452010-05-19 23:43:12 +00002550 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2551 LSRUse &LU = Uses[LUIdx];
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002552 // Check whether this use is close enough to OrigLU, to see whether it's
2553 // worthwhile looking through its formulae.
2554 // Ignore ICmpZero uses because they may contain formulae generated by
2555 // GenerateICmpZeroScales, in which case adding fixup offsets may
2556 // be invalid.
Dan Gohman20fab452010-05-19 23:43:12 +00002557 if (&LU != &OrigLU &&
2558 LU.Kind != LSRUse::ICmpZero &&
2559 LU.Kind == OrigLU.Kind && OrigLU.AccessTy == LU.AccessTy &&
Dan Gohman14152082010-07-15 20:24:58 +00002560 LU.WidestFixupType == OrigLU.WidestFixupType &&
Dan Gohman20fab452010-05-19 23:43:12 +00002561 LU.HasFormulaWithSameRegs(OrigF)) {
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002562 // Scan through this use's formulae.
Craig Topper042a3922015-05-25 20:01:18 +00002563 for (const Formula &F : LU.Formulae) {
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002564 // Check to see if this formula has the same registers and symbols
2565 // as OrigF.
Dan Gohman20fab452010-05-19 23:43:12 +00002566 if (F.BaseRegs == OrigF.BaseRegs &&
2567 F.ScaledReg == OrigF.ScaledReg &&
Chandler Carruth6e479322013-01-07 15:04:40 +00002568 F.BaseGV == OrigF.BaseGV &&
2569 F.Scale == OrigF.Scale &&
Dan Gohman6136e942011-05-03 00:46:49 +00002570 F.UnfoldedOffset == OrigF.UnfoldedOffset) {
Chandler Carruth6e479322013-01-07 15:04:40 +00002571 if (F.BaseOffset == 0)
Dan Gohman20fab452010-05-19 23:43:12 +00002572 return &LU;
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002573 // This is the formula where all the registers and symbols matched;
2574 // there aren't going to be any others. Since we declined it, we
Benjamin Kramerbde91762012-06-02 10:20:22 +00002575 // can skip the rest of the formulae and proceed to the next LSRUse.
Dan Gohman20fab452010-05-19 23:43:12 +00002576 break;
2577 }
2578 }
2579 }
2580 }
2581
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002582 // Nothing looked good.
Craig Topperf40110f2014-04-25 05:29:35 +00002583 return nullptr;
Dan Gohman20fab452010-05-19 23:43:12 +00002584}
2585
Dan Gohman45774ce2010-02-12 10:34:29 +00002586void LSRInstance::CollectInterestingTypesAndFactors() {
2587 SmallSetVector<const SCEV *, 4> Strides;
2588
Dan Gohman2446f572010-02-19 00:05:23 +00002589 // Collect interesting types and strides.
Dan Gohmand006ab92010-04-07 22:27:08 +00002590 SmallVector<const SCEV *, 4> Worklist;
Craig Topper042a3922015-05-25 20:01:18 +00002591 for (const IVStrideUse &U : IU) {
2592 const SCEV *Expr = IU.getExpr(U);
Dan Gohman45774ce2010-02-12 10:34:29 +00002593
2594 // Collect interesting types.
Dan Gohmand006ab92010-04-07 22:27:08 +00002595 Types.insert(SE.getEffectiveSCEVType(Expr->getType()));
Dan Gohman45774ce2010-02-12 10:34:29 +00002596
Dan Gohmand006ab92010-04-07 22:27:08 +00002597 // Add strides for mentioned loops.
2598 Worklist.push_back(Expr);
2599 do {
2600 const SCEV *S = Worklist.pop_back_val();
2601 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
Andrew Trickd97b83e2012-03-22 22:42:45 +00002602 if (AR->getLoop() == L)
Andrew Tricke8b4f402011-12-10 00:25:00 +00002603 Strides.insert(AR->getStepRecurrence(SE));
Dan Gohmand006ab92010-04-07 22:27:08 +00002604 Worklist.push_back(AR->getStart());
2605 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Dan Gohmandd41bba2010-06-21 19:47:52 +00002606 Worklist.append(Add->op_begin(), Add->op_end());
Dan Gohmand006ab92010-04-07 22:27:08 +00002607 }
2608 } while (!Worklist.empty());
Dan Gohman2446f572010-02-19 00:05:23 +00002609 }
2610
2611 // Compute interesting factors from the set of interesting strides.
2612 for (SmallSetVector<const SCEV *, 4>::const_iterator
2613 I = Strides.begin(), E = Strides.end(); I != E; ++I)
Dan Gohman45774ce2010-02-12 10:34:29 +00002614 for (SmallSetVector<const SCEV *, 4>::const_iterator NewStrideIter =
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002615 std::next(I); NewStrideIter != E; ++NewStrideIter) {
Dan Gohman2446f572010-02-19 00:05:23 +00002616 const SCEV *OldStride = *I;
Dan Gohman45774ce2010-02-12 10:34:29 +00002617 const SCEV *NewStride = *NewStrideIter;
Dan Gohman45774ce2010-02-12 10:34:29 +00002618
2619 if (SE.getTypeSizeInBits(OldStride->getType()) !=
2620 SE.getTypeSizeInBits(NewStride->getType())) {
2621 if (SE.getTypeSizeInBits(OldStride->getType()) >
2622 SE.getTypeSizeInBits(NewStride->getType()))
2623 NewStride = SE.getSignExtendExpr(NewStride, OldStride->getType());
2624 else
2625 OldStride = SE.getSignExtendExpr(OldStride, NewStride->getType());
2626 }
2627 if (const SCEVConstant *Factor =
Dan Gohman4eebb942010-02-19 19:35:48 +00002628 dyn_cast_or_null<SCEVConstant>(getExactSDiv(NewStride, OldStride,
2629 SE, true))) {
Sanjoy Das0de2fec2015-12-17 20:28:46 +00002630 if (Factor->getAPInt().getMinSignedBits() <= 64)
2631 Factors.insert(Factor->getAPInt().getSExtValue());
Dan Gohman45774ce2010-02-12 10:34:29 +00002632 } else if (const SCEVConstant *Factor =
Dan Gohman8c16b382010-02-22 04:11:59 +00002633 dyn_cast_or_null<SCEVConstant>(getExactSDiv(OldStride,
2634 NewStride,
Dan Gohman4eebb942010-02-19 19:35:48 +00002635 SE, true))) {
Sanjoy Das0de2fec2015-12-17 20:28:46 +00002636 if (Factor->getAPInt().getMinSignedBits() <= 64)
2637 Factors.insert(Factor->getAPInt().getSExtValue());
Dan Gohman45774ce2010-02-12 10:34:29 +00002638 }
2639 }
Dan Gohman45774ce2010-02-12 10:34:29 +00002640
2641 // If all uses use the same type, don't bother looking for truncation-based
2642 // reuse.
2643 if (Types.size() == 1)
2644 Types.clear();
2645
2646 DEBUG(print_factors_and_types(dbgs()));
2647}
2648
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002649/// Helper for CollectChains that finds an IV operand (computed by an AddRec in
2650/// this loop) within [OI,OE) or returns OE. If IVUsers mapped Instructions to
2651/// IVStrideUses, we could partially skip this.
Andrew Trick29fe5f02012-01-09 19:50:34 +00002652static User::op_iterator
2653findIVOperand(User::op_iterator OI, User::op_iterator OE,
2654 Loop *L, ScalarEvolution &SE) {
2655 for(; OI != OE; ++OI) {
2656 if (Instruction *Oper = dyn_cast<Instruction>(*OI)) {
2657 if (!SE.isSCEVable(Oper->getType()))
2658 continue;
2659
2660 if (const SCEVAddRecExpr *AR =
2661 dyn_cast<SCEVAddRecExpr>(SE.getSCEV(Oper))) {
2662 if (AR->getLoop() == L)
2663 break;
2664 }
2665 }
2666 }
2667 return OI;
2668}
2669
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002670/// IVChain logic must consistenctly peek base TruncInst operands, so wrap it in
2671/// a convenient helper.
Andrew Trick29fe5f02012-01-09 19:50:34 +00002672static Value *getWideOperand(Value *Oper) {
2673 if (TruncInst *Trunc = dyn_cast<TruncInst>(Oper))
2674 return Trunc->getOperand(0);
2675 return Oper;
2676}
2677
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002678/// Return true if we allow an IV chain to include both types.
Andrew Trick29fe5f02012-01-09 19:50:34 +00002679static bool isCompatibleIVType(Value *LVal, Value *RVal) {
2680 Type *LType = LVal->getType();
2681 Type *RType = RVal->getType();
Mikael Holmenece84cd2017-02-14 06:37:42 +00002682 return (LType == RType) || (LType->isPointerTy() && RType->isPointerTy() &&
2683 // Different address spaces means (possibly)
2684 // different types of the pointer implementation,
2685 // e.g. i16 vs i32 so disallow that.
2686 (LType->getPointerAddressSpace() ==
2687 RType->getPointerAddressSpace()));
Andrew Trick29fe5f02012-01-09 19:50:34 +00002688}
2689
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002690/// Return an approximation of this SCEV expression's "base", or NULL for any
2691/// constant. Returning the expression itself is conservative. Returning a
2692/// deeper subexpression is more precise and valid as long as it isn't less
2693/// complex than another subexpression. For expressions involving multiple
2694/// unscaled values, we need to return the pointer-type SCEVUnknown. This avoids
2695/// forming chains across objects, such as: PrevOper==a[i], IVOper==b[i],
2696/// IVInc==b-a.
Andrew Trickd5d2db92012-01-10 01:45:08 +00002697///
2698/// Since SCEVUnknown is the rightmost type, and pointers are the rightmost
2699/// SCEVUnknown, we simply return the rightmost SCEV operand.
2700static const SCEV *getExprBase(const SCEV *S) {
2701 switch (S->getSCEVType()) {
2702 default: // uncluding scUnknown.
2703 return S;
2704 case scConstant:
Craig Topperf40110f2014-04-25 05:29:35 +00002705 return nullptr;
Andrew Trickd5d2db92012-01-10 01:45:08 +00002706 case scTruncate:
2707 return getExprBase(cast<SCEVTruncateExpr>(S)->getOperand());
2708 case scZeroExtend:
2709 return getExprBase(cast<SCEVZeroExtendExpr>(S)->getOperand());
2710 case scSignExtend:
2711 return getExprBase(cast<SCEVSignExtendExpr>(S)->getOperand());
2712 case scAddExpr: {
2713 // Skip over scaled operands (scMulExpr) to follow add operands as long as
2714 // there's nothing more complex.
2715 // FIXME: not sure if we want to recognize negation.
2716 const SCEVAddExpr *Add = cast<SCEVAddExpr>(S);
2717 for (std::reverse_iterator<SCEVAddExpr::op_iterator> I(Add->op_end()),
2718 E(Add->op_begin()); I != E; ++I) {
2719 const SCEV *SubExpr = *I;
2720 if (SubExpr->getSCEVType() == scAddExpr)
2721 return getExprBase(SubExpr);
2722
2723 if (SubExpr->getSCEVType() != scMulExpr)
2724 return SubExpr;
2725 }
2726 return S; // all operands are scaled, be conservative.
2727 }
2728 case scAddRecExpr:
2729 return getExprBase(cast<SCEVAddRecExpr>(S)->getStart());
2730 }
2731}
2732
Andrew Trick248d4102012-01-09 21:18:52 +00002733/// Return true if the chain increment is profitable to expand into a loop
2734/// invariant value, which may require its own register. A profitable chain
2735/// increment will be an offset relative to the same base. We allow such offsets
2736/// to potentially be used as chain increment as long as it's not obviously
2737/// expensive to expand using real instructions.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002738bool IVChain::isProfitableIncrement(const SCEV *OperExpr,
2739 const SCEV *IncExpr,
2740 ScalarEvolution &SE) {
2741 // Aggressively form chains when -stress-ivchain.
Andrew Trick248d4102012-01-09 21:18:52 +00002742 if (StressIVChain)
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002743 return true;
Andrew Trick248d4102012-01-09 21:18:52 +00002744
Andrew Trickd5d2db92012-01-10 01:45:08 +00002745 // Do not replace a constant offset from IV head with a nonconstant IV
2746 // increment.
2747 if (!isa<SCEVConstant>(IncExpr)) {
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002748 const SCEV *HeadExpr = SE.getSCEV(getWideOperand(Incs[0].IVOperand));
Andrew Trickd5d2db92012-01-10 01:45:08 +00002749 if (isa<SCEVConstant>(SE.getMinusSCEV(OperExpr, HeadExpr)))
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00002750 return false;
Andrew Trickd5d2db92012-01-10 01:45:08 +00002751 }
2752
2753 SmallPtrSet<const SCEV*, 8> Processed;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002754 return !isHighCostExpansion(IncExpr, Processed, SE);
Andrew Trick248d4102012-01-09 21:18:52 +00002755}
2756
2757/// Return true if the number of registers needed for the chain is estimated to
2758/// be less than the number required for the individual IV users. First prohibit
2759/// any IV users that keep the IV live across increments (the Users set should
2760/// be empty). Next count the number and type of increments in the chain.
2761///
2762/// Chaining IVs can lead to considerable code bloat if ISEL doesn't
2763/// effectively use postinc addressing modes. Only consider it profitable it the
2764/// increments can be computed in fewer registers when chained.
2765///
2766/// TODO: Consider IVInc free if it's already used in another chains.
2767static bool
Craig Topper71b7b682014-08-21 05:55:13 +00002768isProfitableChain(IVChain &Chain, SmallPtrSetImpl<Instruction*> &Users,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002769 ScalarEvolution &SE, const TargetTransformInfo &TTI) {
Andrew Trick248d4102012-01-09 21:18:52 +00002770 if (StressIVChain)
2771 return true;
2772
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002773 if (!Chain.hasIncs())
Andrew Trickd5d2db92012-01-10 01:45:08 +00002774 return false;
2775
2776 if (!Users.empty()) {
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002777 DEBUG(dbgs() << "Chain: " << *Chain.Incs[0].UserInst << " users:\n";
Craig Topper46276792014-08-24 23:23:06 +00002778 for (Instruction *Inst : Users) {
2779 dbgs() << " " << *Inst << "\n";
Andrew Trickd5d2db92012-01-10 01:45:08 +00002780 });
2781 return false;
2782 }
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002783 assert(!Chain.Incs.empty() && "empty IV chains are not allowed");
Andrew Trickd5d2db92012-01-10 01:45:08 +00002784
2785 // The chain itself may require a register, so intialize cost to 1.
2786 int cost = 1;
2787
2788 // A complete chain likely eliminates the need for keeping the original IV in
2789 // a register. LSR does not currently know how to form a complete chain unless
2790 // the header phi already exists.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002791 if (isa<PHINode>(Chain.tailUserInst())
2792 && SE.getSCEV(Chain.tailUserInst()) == Chain.Incs[0].IncExpr) {
Andrew Trickd5d2db92012-01-10 01:45:08 +00002793 --cost;
2794 }
Craig Topperf40110f2014-04-25 05:29:35 +00002795 const SCEV *LastIncExpr = nullptr;
Andrew Trickd5d2db92012-01-10 01:45:08 +00002796 unsigned NumConstIncrements = 0;
2797 unsigned NumVarIncrements = 0;
2798 unsigned NumReusedIncrements = 0;
Craig Topper042a3922015-05-25 20:01:18 +00002799 for (const IVInc &Inc : Chain) {
2800 if (Inc.IncExpr->isZero())
Andrew Trickd5d2db92012-01-10 01:45:08 +00002801 continue;
2802
2803 // Incrementing by zero or some constant is neutral. We assume constants can
2804 // be folded into an addressing mode or an add's immediate operand.
Craig Topper042a3922015-05-25 20:01:18 +00002805 if (isa<SCEVConstant>(Inc.IncExpr)) {
Andrew Trickd5d2db92012-01-10 01:45:08 +00002806 ++NumConstIncrements;
2807 continue;
2808 }
2809
Craig Topper042a3922015-05-25 20:01:18 +00002810 if (Inc.IncExpr == LastIncExpr)
Andrew Trickd5d2db92012-01-10 01:45:08 +00002811 ++NumReusedIncrements;
2812 else
2813 ++NumVarIncrements;
2814
Craig Topper042a3922015-05-25 20:01:18 +00002815 LastIncExpr = Inc.IncExpr;
Andrew Trickd5d2db92012-01-10 01:45:08 +00002816 }
2817 // An IV chain with a single increment is handled by LSR's postinc
2818 // uses. However, a chain with multiple increments requires keeping the IV's
2819 // value live longer than it needs to be if chained.
2820 if (NumConstIncrements > 1)
2821 --cost;
2822
2823 // Materializing increment expressions in the preheader that didn't exist in
2824 // the original code may cost a register. For example, sign-extended array
2825 // indices can produce ridiculous increments like this:
2826 // IV + ((sext i32 (2 * %s) to i64) + (-1 * (sext i32 %s to i64)))
2827 cost += NumVarIncrements;
2828
2829 // Reusing variable increments likely saves a register to hold the multiple of
2830 // the stride.
2831 cost -= NumReusedIncrements;
2832
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002833 DEBUG(dbgs() << "Chain: " << *Chain.Incs[0].UserInst << " Cost: " << cost
2834 << "\n");
Andrew Trickd5d2db92012-01-10 01:45:08 +00002835
2836 return cost < 0;
Andrew Trick248d4102012-01-09 21:18:52 +00002837}
2838
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002839/// Add this IV user to an existing chain or make it the head of a new chain.
Andrew Trick29fe5f02012-01-09 19:50:34 +00002840void LSRInstance::ChainInstruction(Instruction *UserInst, Instruction *IVOper,
2841 SmallVectorImpl<ChainUsers> &ChainUsersVec) {
2842 // When IVs are used as types of varying widths, they are generally converted
2843 // to a wider type with some uses remaining narrow under a (free) trunc.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002844 Value *const NextIV = getWideOperand(IVOper);
2845 const SCEV *const OperExpr = SE.getSCEV(NextIV);
2846 const SCEV *const OperExprBase = getExprBase(OperExpr);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002847
2848 // Visit all existing chains. Check if its IVOper can be computed as a
2849 // profitable loop invariant increment from the last link in the Chain.
2850 unsigned ChainIdx = 0, NChains = IVChainVec.size();
Craig Topperf40110f2014-04-25 05:29:35 +00002851 const SCEV *LastIncExpr = nullptr;
Andrew Trick29fe5f02012-01-09 19:50:34 +00002852 for (; ChainIdx < NChains; ++ChainIdx) {
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002853 IVChain &Chain = IVChainVec[ChainIdx];
2854
2855 // Prune the solution space aggressively by checking that both IV operands
2856 // are expressions that operate on the same unscaled SCEVUnknown. This
2857 // "base" will be canceled by the subsequent getMinusSCEV call. Checking
2858 // first avoids creating extra SCEV expressions.
2859 if (!StressIVChain && Chain.ExprBase != OperExprBase)
2860 continue;
2861
2862 Value *PrevIV = getWideOperand(Chain.Incs.back().IVOperand);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002863 if (!isCompatibleIVType(PrevIV, NextIV))
2864 continue;
2865
Andrew Trick356a8962012-03-26 20:28:35 +00002866 // A phi node terminates a chain.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002867 if (isa<PHINode>(UserInst) && isa<PHINode>(Chain.tailUserInst()))
Andrew Trick29fe5f02012-01-09 19:50:34 +00002868 continue;
2869
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002870 // The increment must be loop-invariant so it can be kept in a register.
2871 const SCEV *PrevExpr = SE.getSCEV(PrevIV);
2872 const SCEV *IncExpr = SE.getMinusSCEV(OperExpr, PrevExpr);
2873 if (!SE.isLoopInvariant(IncExpr, L))
2874 continue;
2875
2876 if (Chain.isProfitableIncrement(OperExpr, IncExpr, SE)) {
Andrew Trick29fe5f02012-01-09 19:50:34 +00002877 LastIncExpr = IncExpr;
2878 break;
2879 }
2880 }
2881 // If we haven't found a chain, create a new one, unless we hit the max. Don't
2882 // bother for phi nodes, because they must be last in the chain.
2883 if (ChainIdx == NChains) {
2884 if (isa<PHINode>(UserInst))
2885 return;
Andrew Trick248d4102012-01-09 21:18:52 +00002886 if (NChains >= MaxChains && !StressIVChain) {
Andrew Trick29fe5f02012-01-09 19:50:34 +00002887 DEBUG(dbgs() << "IV Chain Limit\n");
2888 return;
2889 }
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002890 LastIncExpr = OperExpr;
Andrew Trickb9c822a2012-01-20 21:23:40 +00002891 // IVUsers may have skipped over sign/zero extensions. We don't currently
2892 // attempt to form chains involving extensions unless they can be hoisted
2893 // into this loop's AddRec.
2894 if (!isa<SCEVAddRecExpr>(LastIncExpr))
2895 return;
Andrew Trick29fe5f02012-01-09 19:50:34 +00002896 ++NChains;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002897 IVChainVec.push_back(IVChain(IVInc(UserInst, IVOper, LastIncExpr),
2898 OperExprBase));
Andrew Trick29fe5f02012-01-09 19:50:34 +00002899 ChainUsersVec.resize(NChains);
Jakob Stoklund Olesen293673d2012-04-25 18:01:32 +00002900 DEBUG(dbgs() << "IV Chain#" << ChainIdx << " Head: (" << *UserInst
2901 << ") IV=" << *LastIncExpr << "\n");
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002902 } else {
Jakob Stoklund Olesen293673d2012-04-25 18:01:32 +00002903 DEBUG(dbgs() << "IV Chain#" << ChainIdx << " Inc: (" << *UserInst
2904 << ") IV+" << *LastIncExpr << "\n");
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002905 // Add this IV user to the end of the chain.
2906 IVChainVec[ChainIdx].add(IVInc(UserInst, IVOper, LastIncExpr));
2907 }
Andrew Trickbc705902013-02-09 01:11:01 +00002908 IVChain &Chain = IVChainVec[ChainIdx];
Andrew Trick29fe5f02012-01-09 19:50:34 +00002909
2910 SmallPtrSet<Instruction*,4> &NearUsers = ChainUsersVec[ChainIdx].NearUsers;
2911 // This chain's NearUsers become FarUsers.
2912 if (!LastIncExpr->isZero()) {
2913 ChainUsersVec[ChainIdx].FarUsers.insert(NearUsers.begin(),
2914 NearUsers.end());
2915 NearUsers.clear();
2916 }
2917
2918 // All other uses of IVOperand become near uses of the chain.
2919 // We currently ignore intermediate values within SCEV expressions, assuming
2920 // they will eventually be used be the current chain, or can be computed
2921 // from one of the chain increments. To be more precise we could
2922 // transitively follow its user and only add leaf IV users to the set.
Chandler Carruthcdf47882014-03-09 03:16:01 +00002923 for (User *U : IVOper->users()) {
2924 Instruction *OtherUse = dyn_cast<Instruction>(U);
Andrew Trickbc705902013-02-09 01:11:01 +00002925 if (!OtherUse)
Andrew Tricke51feea2012-03-26 18:03:16 +00002926 continue;
Andrew Trickbc705902013-02-09 01:11:01 +00002927 // Uses in the chain will no longer be uses if the chain is formed.
2928 // Include the head of the chain in this iteration (not Chain.begin()).
2929 IVChain::const_iterator IncIter = Chain.Incs.begin();
2930 IVChain::const_iterator IncEnd = Chain.Incs.end();
2931 for( ; IncIter != IncEnd; ++IncIter) {
2932 if (IncIter->UserInst == OtherUse)
2933 break;
2934 }
2935 if (IncIter != IncEnd)
2936 continue;
2937
Andrew Trick29fe5f02012-01-09 19:50:34 +00002938 if (SE.isSCEVable(OtherUse->getType())
2939 && !isa<SCEVUnknown>(SE.getSCEV(OtherUse))
2940 && IU.isIVUserOrOperand(OtherUse)) {
2941 continue;
2942 }
Andrew Tricke51feea2012-03-26 18:03:16 +00002943 NearUsers.insert(OtherUse);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002944 }
2945
2946 // Since this user is part of the chain, it's no longer considered a use
2947 // of the chain.
2948 ChainUsersVec[ChainIdx].FarUsers.erase(UserInst);
2949}
2950
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002951/// Populate the vector of Chains.
Andrew Trick29fe5f02012-01-09 19:50:34 +00002952///
2953/// This decreases ILP at the architecture level. Targets with ample registers,
2954/// multiple memory ports, and no register renaming probably don't want
2955/// this. However, such targets should probably disable LSR altogether.
2956///
2957/// The job of LSR is to make a reasonable choice of induction variables across
2958/// the loop. Subsequent passes can easily "unchain" computation exposing more
2959/// ILP *within the loop* if the target wants it.
2960///
2961/// Finding the best IV chain is potentially a scheduling problem. Since LSR
2962/// will not reorder memory operations, it will recognize this as a chain, but
2963/// will generate redundant IV increments. Ideally this would be corrected later
2964/// by a smart scheduler:
2965/// = A[i]
2966/// = A[i+x]
2967/// A[i] =
2968/// A[i+x] =
2969///
2970/// TODO: Walk the entire domtree within this loop, not just the path to the
2971/// loop latch. This will discover chains on side paths, but requires
2972/// maintaining multiple copies of the Chains state.
2973void LSRInstance::CollectChains() {
Jakob Stoklund Olesen293673d2012-04-25 18:01:32 +00002974 DEBUG(dbgs() << "Collecting IV Chains.\n");
Andrew Trick29fe5f02012-01-09 19:50:34 +00002975 SmallVector<ChainUsers, 8> ChainUsersVec;
2976
2977 SmallVector<BasicBlock *,8> LatchPath;
2978 BasicBlock *LoopHeader = L->getHeader();
2979 for (DomTreeNode *Rung = DT.getNode(L->getLoopLatch());
2980 Rung->getBlock() != LoopHeader; Rung = Rung->getIDom()) {
2981 LatchPath.push_back(Rung->getBlock());
2982 }
2983 LatchPath.push_back(LoopHeader);
2984
2985 // Walk the instruction stream from the loop header to the loop latch.
David Majnemerd7708772016-06-24 04:05:21 +00002986 for (BasicBlock *BB : reverse(LatchPath)) {
2987 for (Instruction &I : *BB) {
Andrew Trick29fe5f02012-01-09 19:50:34 +00002988 // Skip instructions that weren't seen by IVUsers analysis.
David Majnemerd7708772016-06-24 04:05:21 +00002989 if (isa<PHINode>(I) || !IU.isIVUserOrOperand(&I))
Andrew Trick29fe5f02012-01-09 19:50:34 +00002990 continue;
2991
2992 // Ignore users that are part of a SCEV expression. This way we only
2993 // consider leaf IV Users. This effectively rediscovers a portion of
2994 // IVUsers analysis but in program order this time.
Sanjoy Das2f274562017-10-18 22:00:57 +00002995 if (SE.isSCEVable(I.getType()) && !isa<SCEVUnknown>(SE.getSCEV(&I)))
Jatin Bhatejac61ade12017-11-13 16:43:24 +00002996 continue;
Andrew Trick29fe5f02012-01-09 19:50:34 +00002997
2998 // Remove this instruction from any NearUsers set it may be in.
2999 for (unsigned ChainIdx = 0, NChains = IVChainVec.size();
3000 ChainIdx < NChains; ++ChainIdx) {
David Majnemerd7708772016-06-24 04:05:21 +00003001 ChainUsersVec[ChainIdx].NearUsers.erase(&I);
Andrew Trick29fe5f02012-01-09 19:50:34 +00003002 }
3003 // Search for operands that can be chained.
3004 SmallPtrSet<Instruction*, 4> UniqueOperands;
David Majnemerd7708772016-06-24 04:05:21 +00003005 User::op_iterator IVOpEnd = I.op_end();
3006 User::op_iterator IVOpIter = findIVOperand(I.op_begin(), IVOpEnd, L, SE);
Andrew Trick29fe5f02012-01-09 19:50:34 +00003007 while (IVOpIter != IVOpEnd) {
3008 Instruction *IVOpInst = cast<Instruction>(*IVOpIter);
David Blaikie70573dc2014-11-19 07:49:26 +00003009 if (UniqueOperands.insert(IVOpInst).second)
David Majnemerd7708772016-06-24 04:05:21 +00003010 ChainInstruction(&I, IVOpInst, ChainUsersVec);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00003011 IVOpIter = findIVOperand(std::next(IVOpIter), IVOpEnd, L, SE);
Andrew Trick29fe5f02012-01-09 19:50:34 +00003012 }
3013 } // Continue walking down the instructions.
3014 } // Continue walking down the domtree.
3015 // Visit phi backedges to determine if the chain can generate the IV postinc.
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +00003016 for (PHINode &PN : L->getHeader()->phis()) {
3017 if (!SE.isSCEVable(PN.getType()))
Andrew Trick29fe5f02012-01-09 19:50:34 +00003018 continue;
3019
3020 Instruction *IncV =
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +00003021 dyn_cast<Instruction>(PN.getIncomingValueForBlock(L->getLoopLatch()));
Andrew Trick29fe5f02012-01-09 19:50:34 +00003022 if (IncV)
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +00003023 ChainInstruction(&PN, IncV, ChainUsersVec);
Andrew Trick29fe5f02012-01-09 19:50:34 +00003024 }
Andrew Trick248d4102012-01-09 21:18:52 +00003025 // Remove any unprofitable chains.
3026 unsigned ChainIdx = 0;
3027 for (unsigned UsersIdx = 0, NChains = IVChainVec.size();
3028 UsersIdx < NChains; ++UsersIdx) {
3029 if (!isProfitableChain(IVChainVec[UsersIdx],
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003030 ChainUsersVec[UsersIdx].FarUsers, SE, TTI))
Andrew Trick248d4102012-01-09 21:18:52 +00003031 continue;
3032 // Preserve the chain at UsesIdx.
3033 if (ChainIdx != UsersIdx)
3034 IVChainVec[ChainIdx] = IVChainVec[UsersIdx];
3035 FinalizeChain(IVChainVec[ChainIdx]);
3036 ++ChainIdx;
3037 }
3038 IVChainVec.resize(ChainIdx);
3039}
3040
3041void LSRInstance::FinalizeChain(IVChain &Chain) {
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00003042 assert(!Chain.Incs.empty() && "empty IV chains are not allowed");
3043 DEBUG(dbgs() << "Final Chain: " << *Chain.Incs[0].UserInst << "\n");
Andrew Trick248d4102012-01-09 21:18:52 +00003044
Craig Topper042a3922015-05-25 20:01:18 +00003045 for (const IVInc &Inc : Chain) {
Evgeny Stupachenko8efbe6a2016-11-21 21:55:03 +00003046 DEBUG(dbgs() << " Inc: " << *Inc.UserInst << "\n");
David Majnemer42531262016-08-12 03:55:06 +00003047 auto UseI = find(Inc.UserInst->operands(), Inc.IVOperand);
Craig Topper042a3922015-05-25 20:01:18 +00003048 assert(UseI != Inc.UserInst->op_end() && "cannot find IV operand");
Andrew Trick248d4102012-01-09 21:18:52 +00003049 IVIncSet.insert(UseI);
3050 }
3051}
3052
3053/// Return true if the IVInc can be folded into an addressing mode.
3054static bool canFoldIVIncExpr(const SCEV *IncExpr, Instruction *UserInst,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003055 Value *Operand, const TargetTransformInfo &TTI) {
Andrew Trick248d4102012-01-09 21:18:52 +00003056 const SCEVConstant *IncConst = dyn_cast<SCEVConstant>(IncExpr);
Matt Arsenault3e268cc2017-12-11 21:38:43 +00003057 if (!IncConst || !isAddressUse(TTI, UserInst, Operand))
Andrew Trick248d4102012-01-09 21:18:52 +00003058 return false;
3059
Sanjoy Das0de2fec2015-12-17 20:28:46 +00003060 if (IncConst->getAPInt().getMinSignedBits() > 64)
Andrew Trick248d4102012-01-09 21:18:52 +00003061 return false;
3062
Matt Arsenault3e268cc2017-12-11 21:38:43 +00003063 MemAccessTy AccessTy = getAccessType(TTI, UserInst);
Andrew Trick248d4102012-01-09 21:18:52 +00003064 int64_t IncOffset = IncConst->getValue()->getSExtValue();
Matt Arsenault427a0fd2015-08-15 00:53:06 +00003065 if (!isAlwaysFoldable(TTI, LSRUse::Address, AccessTy, /*BaseGV=*/nullptr,
3066 IncOffset, /*HaseBaseReg=*/false))
Andrew Trick248d4102012-01-09 21:18:52 +00003067 return false;
3068
3069 return true;
3070}
3071
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003072/// Generate an add or subtract for each IVInc in a chain to materialize the IV
3073/// user's operand from the previous IV user's operand.
Andrew Trick248d4102012-01-09 21:18:52 +00003074void LSRInstance::GenerateIVChain(const IVChain &Chain, SCEVExpander &Rewriter,
Sanjoy Dase6bca0e2017-05-01 17:07:49 +00003075 SmallVectorImpl<WeakTrackingVH> &DeadInsts) {
Andrew Trick248d4102012-01-09 21:18:52 +00003076 // Find the new IVOperand for the head of the chain. It may have been replaced
3077 // by LSR.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00003078 const IVInc &Head = Chain.Incs[0];
Andrew Trick248d4102012-01-09 21:18:52 +00003079 User::op_iterator IVOpEnd = Head.UserInst->op_end();
Andrew Trickf3a25442013-03-19 05:10:27 +00003080 // findIVOperand returns IVOpEnd if it can no longer find a valid IV user.
Andrew Trick248d4102012-01-09 21:18:52 +00003081 User::op_iterator IVOpIter = findIVOperand(Head.UserInst->op_begin(),
3082 IVOpEnd, L, SE);
Craig Topperf40110f2014-04-25 05:29:35 +00003083 Value *IVSrc = nullptr;
Andrew Trickf3a25442013-03-19 05:10:27 +00003084 while (IVOpIter != IVOpEnd) {
Andrew Trick248d4102012-01-09 21:18:52 +00003085 IVSrc = getWideOperand(*IVOpIter);
3086
3087 // If this operand computes the expression that the chain needs, we may use
3088 // it. (Check this after setting IVSrc which is used below.)
3089 //
3090 // Note that if Head.IncExpr is wider than IVSrc, then this phi is too
3091 // narrow for the chain, so we can no longer use it. We do allow using a
3092 // wider phi, assuming the LSR checked for free truncation. In that case we
3093 // should already have a truncate on this operand such that
3094 // getSCEV(IVSrc) == IncExpr.
3095 if (SE.getSCEV(*IVOpIter) == Head.IncExpr
3096 || SE.getSCEV(IVSrc) == Head.IncExpr) {
3097 break;
3098 }
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00003099 IVOpIter = findIVOperand(std::next(IVOpIter), IVOpEnd, L, SE);
Andrew Trickf3a25442013-03-19 05:10:27 +00003100 }
Andrew Trick248d4102012-01-09 21:18:52 +00003101 if (IVOpIter == IVOpEnd) {
3102 // Gracefully give up on this chain.
3103 DEBUG(dbgs() << "Concealed chain head: " << *Head.UserInst << "\n");
3104 return;
3105 }
3106
3107 DEBUG(dbgs() << "Generate chain at: " << *IVSrc << "\n");
3108 Type *IVTy = IVSrc->getType();
3109 Type *IntTy = SE.getEffectiveSCEVType(IVTy);
Craig Topperf40110f2014-04-25 05:29:35 +00003110 const SCEV *LeftOverExpr = nullptr;
Craig Topper042a3922015-05-25 20:01:18 +00003111 for (const IVInc &Inc : Chain) {
3112 Instruction *InsertPt = Inc.UserInst;
Andrew Trick248d4102012-01-09 21:18:52 +00003113 if (isa<PHINode>(InsertPt))
3114 InsertPt = L->getLoopLatch()->getTerminator();
3115
3116 // IVOper will replace the current IV User's operand. IVSrc is the IV
3117 // value currently held in a register.
3118 Value *IVOper = IVSrc;
Craig Topper042a3922015-05-25 20:01:18 +00003119 if (!Inc.IncExpr->isZero()) {
Andrew Trick248d4102012-01-09 21:18:52 +00003120 // IncExpr was the result of subtraction of two narrow values, so must
3121 // be signed.
Craig Topper042a3922015-05-25 20:01:18 +00003122 const SCEV *IncExpr = SE.getNoopOrSignExtend(Inc.IncExpr, IntTy);
Andrew Trick248d4102012-01-09 21:18:52 +00003123 LeftOverExpr = LeftOverExpr ?
3124 SE.getAddExpr(LeftOverExpr, IncExpr) : IncExpr;
3125 }
3126 if (LeftOverExpr && !LeftOverExpr->isZero()) {
3127 // Expand the IV increment.
3128 Rewriter.clearPostInc();
3129 Value *IncV = Rewriter.expandCodeFor(LeftOverExpr, IntTy, InsertPt);
3130 const SCEV *IVOperExpr = SE.getAddExpr(SE.getUnknown(IVSrc),
3131 SE.getUnknown(IncV));
3132 IVOper = Rewriter.expandCodeFor(IVOperExpr, IVTy, InsertPt);
3133
3134 // If an IV increment can't be folded, use it as the next IV value.
Craig Topper042a3922015-05-25 20:01:18 +00003135 if (!canFoldIVIncExpr(LeftOverExpr, Inc.UserInst, Inc.IVOperand, TTI)) {
Andrew Trick248d4102012-01-09 21:18:52 +00003136 assert(IVTy == IVOper->getType() && "inconsistent IV increment type");
3137 IVSrc = IVOper;
Craig Topperf40110f2014-04-25 05:29:35 +00003138 LeftOverExpr = nullptr;
Andrew Trick248d4102012-01-09 21:18:52 +00003139 }
3140 }
Craig Topper042a3922015-05-25 20:01:18 +00003141 Type *OperTy = Inc.IVOperand->getType();
Andrew Trick248d4102012-01-09 21:18:52 +00003142 if (IVTy != OperTy) {
3143 assert(SE.getTypeSizeInBits(IVTy) >= SE.getTypeSizeInBits(OperTy) &&
3144 "cannot extend a chained IV");
3145 IRBuilder<> Builder(InsertPt);
3146 IVOper = Builder.CreateTruncOrBitCast(IVOper, OperTy, "lsr.chain");
3147 }
Craig Topper042a3922015-05-25 20:01:18 +00003148 Inc.UserInst->replaceUsesOfWith(Inc.IVOperand, IVOper);
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00003149 DeadInsts.emplace_back(Inc.IVOperand);
Andrew Trick248d4102012-01-09 21:18:52 +00003150 }
3151 // If LSR created a new, wider phi, we may also replace its postinc. We only
3152 // do this if we also found a wide value for the head of the chain.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00003153 if (isa<PHINode>(Chain.tailUserInst())) {
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +00003154 for (PHINode &Phi : L->getHeader()->phis()) {
3155 if (!isCompatibleIVType(&Phi, IVSrc))
Andrew Trick248d4102012-01-09 21:18:52 +00003156 continue;
3157 Instruction *PostIncV = dyn_cast<Instruction>(
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +00003158 Phi.getIncomingValueForBlock(L->getLoopLatch()));
Andrew Trick248d4102012-01-09 21:18:52 +00003159 if (!PostIncV || (SE.getSCEV(PostIncV) != SE.getSCEV(IVSrc)))
3160 continue;
3161 Value *IVOper = IVSrc;
3162 Type *PostIncTy = PostIncV->getType();
3163 if (IVTy != PostIncTy) {
3164 assert(PostIncTy->isPointerTy() && "mixing int/ptr IV types");
3165 IRBuilder<> Builder(L->getLoopLatch()->getTerminator());
3166 Builder.SetCurrentDebugLocation(PostIncV->getDebugLoc());
3167 IVOper = Builder.CreatePointerCast(IVSrc, PostIncTy, "lsr.chain");
3168 }
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +00003169 Phi.replaceUsesOfWith(PostIncV, IVOper);
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00003170 DeadInsts.emplace_back(PostIncV);
Andrew Trick248d4102012-01-09 21:18:52 +00003171 }
3172 }
Andrew Trick29fe5f02012-01-09 19:50:34 +00003173}
3174
Dan Gohman45774ce2010-02-12 10:34:29 +00003175void LSRInstance::CollectFixupsAndInitialFormulae() {
Craig Topper042a3922015-05-25 20:01:18 +00003176 for (const IVStrideUse &U : IU) {
3177 Instruction *UserInst = U.getUser();
Andrew Trick248d4102012-01-09 21:18:52 +00003178 // Skip IV users that are part of profitable IV Chains.
David Majnemer42531262016-08-12 03:55:06 +00003179 User::op_iterator UseI =
3180 find(UserInst->operands(), U.getOperandValToReplace());
Andrew Trick248d4102012-01-09 21:18:52 +00003181 assert(UseI != UserInst->op_end() && "cannot find IV operand");
Quentin Colombet35109902017-01-28 01:05:27 +00003182 if (IVIncSet.count(UseI)) {
3183 DEBUG(dbgs() << "Use is in profitable chain: " << **UseI << '\n');
Andrew Trick248d4102012-01-09 21:18:52 +00003184 continue;
Quentin Colombet35109902017-01-28 01:05:27 +00003185 }
Andrew Trick248d4102012-01-09 21:18:52 +00003186
Dan Gohman45774ce2010-02-12 10:34:29 +00003187 LSRUse::KindType Kind = LSRUse::Basic;
Matt Arsenault427a0fd2015-08-15 00:53:06 +00003188 MemAccessTy AccessTy;
Matt Arsenault3e268cc2017-12-11 21:38:43 +00003189 if (isAddressUse(TTI, UserInst, U.getOperandValToReplace())) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003190 Kind = LSRUse::Address;
Matt Arsenault3e268cc2017-12-11 21:38:43 +00003191 AccessTy = getAccessType(TTI, UserInst);
Dan Gohman45774ce2010-02-12 10:34:29 +00003192 }
3193
Craig Topper042a3922015-05-25 20:01:18 +00003194 const SCEV *S = IU.getExpr(U);
Jonas Paulsson7a794222016-08-17 13:24:19 +00003195 PostIncLoopSet TmpPostIncLoops = U.getPostIncLoops();
Matt Arsenault3e268cc2017-12-11 21:38:43 +00003196
Dan Gohman45774ce2010-02-12 10:34:29 +00003197 // Equality (== and !=) ICmps are special. We can rewrite (i == N) as
3198 // (N - i == 0), and this allows (N - i) to be the expression that we work
3199 // with rather than just N or i, so we can consider the register
3200 // requirements for both N and i at the same time. Limiting this code to
3201 // equality icmps is not a problem because all interesting loops use
3202 // equality icmps, thanks to IndVarSimplify.
Jonas Paulsson7a794222016-08-17 13:24:19 +00003203 if (ICmpInst *CI = dyn_cast<ICmpInst>(UserInst))
Dan Gohman45774ce2010-02-12 10:34:29 +00003204 if (CI->isEquality()) {
3205 // Swap the operands if needed to put the OperandValToReplace on the
3206 // left, for consistency.
3207 Value *NV = CI->getOperand(1);
Jonas Paulsson7a794222016-08-17 13:24:19 +00003208 if (NV == U.getOperandValToReplace()) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003209 CI->setOperand(1, CI->getOperand(0));
3210 CI->setOperand(0, NV);
Dan Gohmanee2fea32010-05-20 19:26:52 +00003211 NV = CI->getOperand(1);
Dan Gohmanfdf98742010-05-20 19:16:03 +00003212 Changed = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00003213 }
3214
3215 // x == y --> x - y == 0
3216 const SCEV *N = SE.getSCEV(NV);
Andrew Trick57243da2013-10-25 21:35:56 +00003217 if (SE.isLoopInvariant(N, L) && isSafeToExpand(N, SE)) {
Dan Gohman3268e4d2011-05-18 21:02:18 +00003218 // S is normalized, so normalize N before folding it into S
3219 // to keep the result normalized.
Sanjoy Dase3a15e82017-04-14 15:49:59 +00003220 N = normalizeForPostIncUse(N, TmpPostIncLoops, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +00003221 Kind = LSRUse::ICmpZero;
3222 S = SE.getMinusSCEV(N, S);
3223 }
3224
3225 // -1 and the negations of all interesting strides (except the negation
3226 // of -1) are now also interesting.
3227 for (size_t i = 0, e = Factors.size(); i != e; ++i)
3228 if (Factors[i] != -1)
3229 Factors.insert(-(uint64_t)Factors[i]);
3230 Factors.insert(-1);
3231 }
3232
Jonas Paulsson7a794222016-08-17 13:24:19 +00003233 // Get or create an LSRUse.
Dan Gohman45774ce2010-02-12 10:34:29 +00003234 std::pair<size_t, int64_t> P = getUse(S, Kind, AccessTy);
Jonas Paulsson7a794222016-08-17 13:24:19 +00003235 size_t LUIdx = P.first;
3236 int64_t Offset = P.second;
3237 LSRUse &LU = Uses[LUIdx];
3238
3239 // Record the fixup.
3240 LSRFixup &LF = LU.getNewFixup();
3241 LF.UserInst = UserInst;
3242 LF.OperandValToReplace = U.getOperandValToReplace();
3243 LF.PostIncLoops = TmpPostIncLoops;
3244 LF.Offset = Offset;
Dan Gohmand006ab92010-04-07 22:27:08 +00003245 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Jonas Paulsson7a794222016-08-17 13:24:19 +00003246
Dan Gohman14152082010-07-15 20:24:58 +00003247 if (!LU.WidestFixupType ||
3248 SE.getTypeSizeInBits(LU.WidestFixupType) <
3249 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
3250 LU.WidestFixupType = LF.OperandValToReplace->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003251
3252 // If this is the first use of this LSRUse, give it a formula.
3253 if (LU.Formulae.empty()) {
Jonas Paulsson7a794222016-08-17 13:24:19 +00003254 InsertInitialFormula(S, LU, LUIdx);
3255 CountRegisters(LU.Formulae.back(), LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00003256 }
3257 }
3258
3259 DEBUG(print_fixups(dbgs()));
3260}
3261
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003262/// Insert a formula for the given expression into the given use, separating out
3263/// loop-variant portions from loop-invariant and loop-computable portions.
Dan Gohman45774ce2010-02-12 10:34:29 +00003264void
Dan Gohman8c16b382010-02-22 04:11:59 +00003265LSRInstance::InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx) {
Andrew Trick57243da2013-10-25 21:35:56 +00003266 // Mark uses whose expressions cannot be expanded.
3267 if (!isSafeToExpand(S, SE))
3268 LU.RigidFormula = true;
3269
Dan Gohman45774ce2010-02-12 10:34:29 +00003270 Formula F;
Sanjoy Das302bfd02015-08-16 18:22:43 +00003271 F.initialMatch(S, L, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +00003272 bool Inserted = InsertFormula(LU, LUIdx, F);
3273 assert(Inserted && "Initial formula already exists!"); (void)Inserted;
3274}
3275
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003276/// Insert a simple single-register formula for the given expression into the
3277/// given use.
Dan Gohman45774ce2010-02-12 10:34:29 +00003278void
3279LSRInstance::InsertSupplementalFormula(const SCEV *S,
3280 LSRUse &LU, size_t LUIdx) {
3281 Formula F;
3282 F.BaseRegs.push_back(S);
Chandler Carruth7e31c8f2013-01-12 23:46:04 +00003283 F.HasBaseReg = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00003284 bool Inserted = InsertFormula(LU, LUIdx, F);
3285 assert(Inserted && "Supplemental formula already exists!"); (void)Inserted;
3286}
3287
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003288/// Note which registers are used by the given formula, updating RegUses.
Dan Gohman45774ce2010-02-12 10:34:29 +00003289void LSRInstance::CountRegisters(const Formula &F, size_t LUIdx) {
3290 if (F.ScaledReg)
Sanjoy Das302bfd02015-08-16 18:22:43 +00003291 RegUses.countRegister(F.ScaledReg, LUIdx);
Craig Topper042a3922015-05-25 20:01:18 +00003292 for (const SCEV *BaseReg : F.BaseRegs)
Sanjoy Das302bfd02015-08-16 18:22:43 +00003293 RegUses.countRegister(BaseReg, LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00003294}
3295
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003296/// If the given formula has not yet been inserted, add it to the list, and
3297/// return true. Return false otherwise.
Dan Gohman45774ce2010-02-12 10:34:29 +00003298bool LSRInstance::InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003299 // Do not insert formula that we will not be able to expand.
3300 assert(isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F) &&
3301 "Formula is illegal");
Wei Mi74d5a902017-02-22 21:47:08 +00003302
3303 if (!LU.InsertFormula(F, *L))
Dan Gohman45774ce2010-02-12 10:34:29 +00003304 return false;
3305
3306 CountRegisters(F, LUIdx);
3307 return true;
3308}
3309
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003310/// Check for other uses of loop-invariant values which we're tracking. These
3311/// other uses will pin these values in registers, making them less profitable
3312/// for elimination.
Dan Gohman45774ce2010-02-12 10:34:29 +00003313/// TODO: This currently misses non-constant addrec step registers.
3314/// TODO: Should this give more weight to users inside the loop?
3315void
3316LSRInstance::CollectLoopInvariantFixupsAndFormulae() {
3317 SmallVector<const SCEV *, 8> Worklist(RegUses.begin(), RegUses.end());
Andrew Trickdd925ad2014-10-25 19:59:30 +00003318 SmallPtrSet<const SCEV *, 32> Visited;
Dan Gohman45774ce2010-02-12 10:34:29 +00003319
3320 while (!Worklist.empty()) {
3321 const SCEV *S = Worklist.pop_back_val();
3322
Andrew Trick9ccbed52014-10-25 19:42:07 +00003323 // Don't process the same SCEV twice
David Blaikie70573dc2014-11-19 07:49:26 +00003324 if (!Visited.insert(S).second)
Andrew Trick9ccbed52014-10-25 19:42:07 +00003325 continue;
3326
Dan Gohman45774ce2010-02-12 10:34:29 +00003327 if (const SCEVNAryExpr *N = dyn_cast<SCEVNAryExpr>(S))
Dan Gohmandd41bba2010-06-21 19:47:52 +00003328 Worklist.append(N->op_begin(), N->op_end());
Dan Gohman45774ce2010-02-12 10:34:29 +00003329 else if (const SCEVCastExpr *C = dyn_cast<SCEVCastExpr>(S))
3330 Worklist.push_back(C->getOperand());
3331 else if (const SCEVUDivExpr *D = dyn_cast<SCEVUDivExpr>(S)) {
3332 Worklist.push_back(D->getLHS());
3333 Worklist.push_back(D->getRHS());
Chandler Carruthcdf47882014-03-09 03:16:01 +00003334 } else if (const SCEVUnknown *US = dyn_cast<SCEVUnknown>(S)) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00003335 const Value *V = US->getValue();
Dan Gohman67b44032010-06-04 23:16:05 +00003336 if (const Instruction *Inst = dyn_cast<Instruction>(V)) {
3337 // Look for instructions defined outside the loop.
Dan Gohman45774ce2010-02-12 10:34:29 +00003338 if (L->contains(Inst)) continue;
Dan Gohman67b44032010-06-04 23:16:05 +00003339 } else if (isa<UndefValue>(V))
3340 // Undef doesn't have a live range, so it doesn't matter.
3341 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00003342 for (const Use &U : V->uses()) {
3343 const Instruction *UserInst = dyn_cast<Instruction>(U.getUser());
Dan Gohman45774ce2010-02-12 10:34:29 +00003344 // Ignore non-instructions.
3345 if (!UserInst)
Dan Gohman045f8192010-01-22 00:46:49 +00003346 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003347 // Ignore instructions in other functions (as can happen with
3348 // Constants).
3349 if (UserInst->getParent()->getParent() != L->getHeader()->getParent())
Dan Gohman045f8192010-01-22 00:46:49 +00003350 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003351 // Ignore instructions not dominated by the loop.
3352 const BasicBlock *UseBB = !isa<PHINode>(UserInst) ?
3353 UserInst->getParent() :
3354 cast<PHINode>(UserInst)->getIncomingBlock(
Chandler Carruthcdf47882014-03-09 03:16:01 +00003355 PHINode::getIncomingValueNumForOperand(U.getOperandNo()));
Dan Gohman45774ce2010-02-12 10:34:29 +00003356 if (!DT.dominates(L->getHeader(), UseBB))
3357 continue;
David Majnemerb2221842015-11-08 05:04:07 +00003358 // Don't bother if the instruction is in a BB which ends in an EHPad.
3359 if (UseBB->getTerminator()->isEHPad())
3360 continue;
David Majnemerbba17392017-01-13 22:24:27 +00003361 // Don't bother rewriting PHIs in catchswitch blocks.
3362 if (isa<CatchSwitchInst>(UserInst->getParent()->getTerminator()))
3363 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003364 // Ignore uses which are part of other SCEV expressions, to avoid
3365 // analyzing them multiple times.
Dan Gohman42ec4eb2010-04-09 19:12:34 +00003366 if (SE.isSCEVable(UserInst->getType())) {
3367 const SCEV *UserS = SE.getSCEV(const_cast<Instruction *>(UserInst));
3368 // If the user is a no-op, look through to its uses.
3369 if (!isa<SCEVUnknown>(UserS))
3370 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00003371 if (UserS == US) {
Dan Gohman42ec4eb2010-04-09 19:12:34 +00003372 Worklist.push_back(
3373 SE.getUnknown(const_cast<Instruction *>(UserInst)));
3374 continue;
3375 }
3376 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003377 // Ignore icmp instructions which are already being analyzed.
3378 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UserInst)) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00003379 unsigned OtherIdx = !U.getOperandNo();
Dan Gohman45774ce2010-02-12 10:34:29 +00003380 Value *OtherOp = const_cast<Value *>(ICI->getOperand(OtherIdx));
Dan Gohmanafd6db92010-11-17 21:23:15 +00003381 if (SE.hasComputableLoopEvolution(SE.getSCEV(OtherOp), L))
Dan Gohman45774ce2010-02-12 10:34:29 +00003382 continue;
3383 }
3384
Matt Arsenault427a0fd2015-08-15 00:53:06 +00003385 std::pair<size_t, int64_t> P = getUse(
3386 S, LSRUse::Basic, MemAccessTy());
Jonas Paulsson7a794222016-08-17 13:24:19 +00003387 size_t LUIdx = P.first;
3388 int64_t Offset = P.second;
3389 LSRUse &LU = Uses[LUIdx];
3390 LSRFixup &LF = LU.getNewFixup();
3391 LF.UserInst = const_cast<Instruction *>(UserInst);
3392 LF.OperandValToReplace = U;
3393 LF.Offset = Offset;
Dan Gohmand006ab92010-04-07 22:27:08 +00003394 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohman14152082010-07-15 20:24:58 +00003395 if (!LU.WidestFixupType ||
3396 SE.getTypeSizeInBits(LU.WidestFixupType) <
3397 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
3398 LU.WidestFixupType = LF.OperandValToReplace->getType();
Jonas Paulsson7a794222016-08-17 13:24:19 +00003399 InsertSupplementalFormula(US, LU, LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00003400 CountRegisters(LU.Formulae.back(), Uses.size() - 1);
3401 break;
3402 }
3403 }
3404 }
3405}
3406
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003407/// Split S into subexpressions which can be pulled out into separate
3408/// registers. If C is non-null, multiply each subexpression by C.
Andrew Trickc8037062012-07-17 05:30:37 +00003409///
3410/// Return remainder expression after factoring the subexpressions captured by
3411/// Ops. If Ops is complete, return NULL.
3412static const SCEV *CollectSubexprs(const SCEV *S, const SCEVConstant *C,
3413 SmallVectorImpl<const SCEV *> &Ops,
3414 const Loop *L,
3415 ScalarEvolution &SE,
3416 unsigned Depth = 0) {
3417 // Arbitrarily cap recursion to protect compile time.
3418 if (Depth >= 3)
3419 return S;
3420
Dan Gohman45774ce2010-02-12 10:34:29 +00003421 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
3422 // Break out add operands.
Craig Topper042a3922015-05-25 20:01:18 +00003423 for (const SCEV *S : Add->operands()) {
3424 const SCEV *Remainder = CollectSubexprs(S, C, Ops, L, SE, Depth+1);
Andrew Trickc8037062012-07-17 05:30:37 +00003425 if (Remainder)
3426 Ops.push_back(C ? SE.getMulExpr(C, Remainder) : Remainder);
3427 }
Craig Topperf40110f2014-04-25 05:29:35 +00003428 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +00003429 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
3430 // Split a non-zero base out of an addrec.
Alexandros Lamprineas0ee3ec22016-11-09 08:53:07 +00003431 if (AR->getStart()->isZero() || !AR->isAffine())
Andrew Trickc8037062012-07-17 05:30:37 +00003432 return S;
3433
3434 const SCEV *Remainder = CollectSubexprs(AR->getStart(),
3435 C, Ops, L, SE, Depth+1);
3436 // Split the non-zero AddRec unless it is part of a nested recurrence that
3437 // does not pertain to this loop.
3438 if (Remainder && (AR->getLoop() == L || !isa<SCEVAddRecExpr>(Remainder))) {
3439 Ops.push_back(C ? SE.getMulExpr(C, Remainder) : Remainder);
Craig Topperf40110f2014-04-25 05:29:35 +00003440 Remainder = nullptr;
Andrew Trickc8037062012-07-17 05:30:37 +00003441 }
3442 if (Remainder != AR->getStart()) {
3443 if (!Remainder)
3444 Remainder = SE.getConstant(AR->getType(), 0);
3445 return SE.getAddRecExpr(Remainder,
3446 AR->getStepRecurrence(SE),
3447 AR->getLoop(),
3448 //FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
3449 SCEV::FlagAnyWrap);
Dan Gohman45774ce2010-02-12 10:34:29 +00003450 }
3451 } else if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
3452 // Break (C * (a + b + c)) into C*a + C*b + C*c.
Andrew Trickc8037062012-07-17 05:30:37 +00003453 if (Mul->getNumOperands() != 2)
3454 return S;
3455 if (const SCEVConstant *Op0 =
3456 dyn_cast<SCEVConstant>(Mul->getOperand(0))) {
3457 C = C ? cast<SCEVConstant>(SE.getMulExpr(C, Op0)) : Op0;
3458 const SCEV *Remainder =
3459 CollectSubexprs(Mul->getOperand(1), C, Ops, L, SE, Depth+1);
3460 if (Remainder)
3461 Ops.push_back(SE.getMulExpr(C, Remainder));
Craig Topperf40110f2014-04-25 05:29:35 +00003462 return nullptr;
Andrew Trickc8037062012-07-17 05:30:37 +00003463 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003464 }
Andrew Trickc8037062012-07-17 05:30:37 +00003465 return S;
Dan Gohman45774ce2010-02-12 10:34:29 +00003466}
3467
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003468/// \brief Helper function for LSRInstance::GenerateReassociations.
3469void LSRInstance::GenerateReassociationsImpl(LSRUse &LU, unsigned LUIdx,
3470 const Formula &Base,
3471 unsigned Depth, size_t Idx,
3472 bool IsScaledReg) {
3473 const SCEV *BaseReg = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx];
3474 SmallVector<const SCEV *, 8> AddOps;
3475 const SCEV *Remainder = CollectSubexprs(BaseReg, nullptr, AddOps, L, SE);
3476 if (Remainder)
3477 AddOps.push_back(Remainder);
3478
3479 if (AddOps.size() == 1)
3480 return;
3481
3482 for (SmallVectorImpl<const SCEV *>::const_iterator J = AddOps.begin(),
3483 JE = AddOps.end();
3484 J != JE; ++J) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003485 // Loop-variant "unknown" values are uninteresting; we won't be able to
3486 // do anything meaningful with them.
3487 if (isa<SCEVUnknown>(*J) && !SE.isLoopInvariant(*J, L))
3488 continue;
3489
3490 // Don't pull a constant into a register if the constant could be folded
3491 // into an immediate field.
3492 if (isAlwaysFoldable(TTI, SE, LU.MinOffset, LU.MaxOffset, LU.Kind,
3493 LU.AccessTy, *J, Base.getNumRegs() > 1))
3494 continue;
3495
3496 // Collect all operands except *J.
3497 SmallVector<const SCEV *, 8> InnerAddOps(
3498 ((const SmallVector<const SCEV *, 8> &)AddOps).begin(), J);
3499 InnerAddOps.append(std::next(J),
3500 ((const SmallVector<const SCEV *, 8> &)AddOps).end());
3501
3502 // Don't leave just a constant behind in a register if the constant could
3503 // be folded into an immediate field.
3504 if (InnerAddOps.size() == 1 &&
3505 isAlwaysFoldable(TTI, SE, LU.MinOffset, LU.MaxOffset, LU.Kind,
3506 LU.AccessTy, InnerAddOps[0], Base.getNumRegs() > 1))
3507 continue;
3508
3509 const SCEV *InnerSum = SE.getAddExpr(InnerAddOps);
3510 if (InnerSum->isZero())
3511 continue;
3512 Formula F = Base;
3513
3514 // Add the remaining pieces of the add back into the new formula.
3515 const SCEVConstant *InnerSumSC = dyn_cast<SCEVConstant>(InnerSum);
3516 if (InnerSumSC && SE.getTypeSizeInBits(InnerSumSC->getType()) <= 64 &&
3517 TTI.isLegalAddImmediate((uint64_t)F.UnfoldedOffset +
3518 InnerSumSC->getValue()->getZExtValue())) {
3519 F.UnfoldedOffset =
3520 (uint64_t)F.UnfoldedOffset + InnerSumSC->getValue()->getZExtValue();
3521 if (IsScaledReg)
3522 F.ScaledReg = nullptr;
3523 else
3524 F.BaseRegs.erase(F.BaseRegs.begin() + Idx);
3525 } else if (IsScaledReg)
3526 F.ScaledReg = InnerSum;
3527 else
3528 F.BaseRegs[Idx] = InnerSum;
3529
3530 // Add J as its own register, or an unfolded immediate.
3531 const SCEVConstant *SC = dyn_cast<SCEVConstant>(*J);
3532 if (SC && SE.getTypeSizeInBits(SC->getType()) <= 64 &&
3533 TTI.isLegalAddImmediate((uint64_t)F.UnfoldedOffset +
3534 SC->getValue()->getZExtValue()))
3535 F.UnfoldedOffset =
3536 (uint64_t)F.UnfoldedOffset + SC->getValue()->getZExtValue();
3537 else
3538 F.BaseRegs.push_back(*J);
3539 // We may have changed the number of register in base regs, adjust the
3540 // formula accordingly.
Wei Mi74d5a902017-02-22 21:47:08 +00003541 F.canonicalize(*L);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003542
3543 if (InsertFormula(LU, LUIdx, F))
3544 // If that formula hadn't been seen before, recurse to find more like
3545 // it.
3546 GenerateReassociations(LU, LUIdx, LU.Formulae.back(), Depth + 1);
3547 }
3548}
3549
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003550/// Split out subexpressions from adds and the bases of addrecs.
Dan Gohman45774ce2010-02-12 10:34:29 +00003551void LSRInstance::GenerateReassociations(LSRUse &LU, unsigned LUIdx,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003552 Formula Base, unsigned Depth) {
Wei Mi74d5a902017-02-22 21:47:08 +00003553 assert(Base.isCanonical(*L) && "Input must be in the canonical form");
Dan Gohman45774ce2010-02-12 10:34:29 +00003554 // Arbitrarily cap recursion to protect compile time.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003555 if (Depth >= 3)
3556 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003557
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003558 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3559 GenerateReassociationsImpl(LU, LUIdx, Base, Depth, i);
Dan Gohman45774ce2010-02-12 10:34:29 +00003560
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003561 if (Base.Scale == 1)
3562 GenerateReassociationsImpl(LU, LUIdx, Base, Depth,
3563 /* Idx */ -1, /* IsScaledReg */ true);
Dan Gohman45774ce2010-02-12 10:34:29 +00003564}
3565
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003566/// Generate a formula consisting of all of the loop-dominating registers added
3567/// into a single register.
Dan Gohman45774ce2010-02-12 10:34:29 +00003568void LSRInstance::GenerateCombinations(LSRUse &LU, unsigned LUIdx,
Dan Gohmane4e51a62010-02-14 18:51:39 +00003569 Formula Base) {
Dan Gohman8b0a4192010-03-01 17:49:51 +00003570 // This method is only interesting on a plurality of registers.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003571 if (Base.BaseRegs.size() + (Base.Scale == 1) <= 1)
3572 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003573
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003574 // Flatten the representation, i.e., reg1 + 1*reg2 => reg1 + reg2, before
3575 // processing the formula.
Sanjoy Das302bfd02015-08-16 18:22:43 +00003576 Base.unscale();
Dan Gohman45774ce2010-02-12 10:34:29 +00003577 Formula F = Base;
3578 F.BaseRegs.clear();
3579 SmallVector<const SCEV *, 4> Ops;
Craig Topper042a3922015-05-25 20:01:18 +00003580 for (const SCEV *BaseReg : Base.BaseRegs) {
Dan Gohman20d9ce22010-11-17 21:41:58 +00003581 if (SE.properlyDominates(BaseReg, L->getHeader()) &&
Dan Gohmanafd6db92010-11-17 21:23:15 +00003582 !SE.hasComputableLoopEvolution(BaseReg, L))
Dan Gohman45774ce2010-02-12 10:34:29 +00003583 Ops.push_back(BaseReg);
3584 else
3585 F.BaseRegs.push_back(BaseReg);
3586 }
3587 if (Ops.size() > 1) {
Dan Gohmanbb7d5222010-02-14 18:50:49 +00003588 const SCEV *Sum = SE.getAddExpr(Ops);
3589 // TODO: If Sum is zero, it probably means ScalarEvolution missed an
3590 // opportunity to fold something. For now, just ignore such cases
Dan Gohman8b0a4192010-03-01 17:49:51 +00003591 // rather than proceed with zero in a register.
Dan Gohmanbb7d5222010-02-14 18:50:49 +00003592 if (!Sum->isZero()) {
3593 F.BaseRegs.push_back(Sum);
Wei Mi74d5a902017-02-22 21:47:08 +00003594 F.canonicalize(*L);
Dan Gohmanbb7d5222010-02-14 18:50:49 +00003595 (void)InsertFormula(LU, LUIdx, F);
3596 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003597 }
3598}
3599
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003600/// \brief Helper function for LSRInstance::GenerateSymbolicOffsets.
3601void LSRInstance::GenerateSymbolicOffsetsImpl(LSRUse &LU, unsigned LUIdx,
3602 const Formula &Base, size_t Idx,
3603 bool IsScaledReg) {
3604 const SCEV *G = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx];
3605 GlobalValue *GV = ExtractSymbol(G, SE);
3606 if (G->isZero() || !GV)
3607 return;
3608 Formula F = Base;
3609 F.BaseGV = GV;
3610 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F))
3611 return;
3612 if (IsScaledReg)
3613 F.ScaledReg = G;
3614 else
3615 F.BaseRegs[Idx] = G;
3616 (void)InsertFormula(LU, LUIdx, F);
3617}
3618
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003619/// Generate reuse formulae using symbolic offsets.
Dan Gohman45774ce2010-02-12 10:34:29 +00003620void LSRInstance::GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx,
3621 Formula Base) {
3622 // We can't add a symbolic offset if the address already contains one.
Chandler Carruth6e479322013-01-07 15:04:40 +00003623 if (Base.BaseGV) return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003624
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003625 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3626 GenerateSymbolicOffsetsImpl(LU, LUIdx, Base, i);
3627 if (Base.Scale == 1)
3628 GenerateSymbolicOffsetsImpl(LU, LUIdx, Base, /* Idx */ -1,
3629 /* IsScaledReg */ true);
3630}
3631
3632/// \brief Helper function for LSRInstance::GenerateConstantOffsets.
3633void LSRInstance::GenerateConstantOffsetsImpl(
3634 LSRUse &LU, unsigned LUIdx, const Formula &Base,
3635 const SmallVectorImpl<int64_t> &Worklist, size_t Idx, bool IsScaledReg) {
3636 const SCEV *G = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx];
Craig Topper042a3922015-05-25 20:01:18 +00003637 for (int64_t Offset : Worklist) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003638 Formula F = Base;
Craig Topper042a3922015-05-25 20:01:18 +00003639 F.BaseOffset = (uint64_t)Base.BaseOffset - Offset;
3640 if (isLegalUse(TTI, LU.MinOffset - Offset, LU.MaxOffset - Offset, LU.Kind,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003641 LU.AccessTy, F)) {
3642 // Add the offset to the base register.
Craig Topper042a3922015-05-25 20:01:18 +00003643 const SCEV *NewG = SE.getAddExpr(SE.getConstant(G->getType(), Offset), G);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003644 // If it cancelled out, drop the base register, otherwise update it.
3645 if (NewG->isZero()) {
3646 if (IsScaledReg) {
3647 F.Scale = 0;
3648 F.ScaledReg = nullptr;
3649 } else
Sanjoy Das302bfd02015-08-16 18:22:43 +00003650 F.deleteBaseReg(F.BaseRegs[Idx]);
Wei Mi74d5a902017-02-22 21:47:08 +00003651 F.canonicalize(*L);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003652 } else if (IsScaledReg)
3653 F.ScaledReg = NewG;
3654 else
3655 F.BaseRegs[Idx] = NewG;
3656
3657 (void)InsertFormula(LU, LUIdx, F);
3658 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003659 }
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003660
3661 int64_t Imm = ExtractImmediate(G, SE);
3662 if (G->isZero() || Imm == 0)
3663 return;
3664 Formula F = Base;
3665 F.BaseOffset = (uint64_t)F.BaseOffset + Imm;
3666 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F))
3667 return;
3668 if (IsScaledReg)
3669 F.ScaledReg = G;
3670 else
3671 F.BaseRegs[Idx] = G;
3672 (void)InsertFormula(LU, LUIdx, F);
Dan Gohman45774ce2010-02-12 10:34:29 +00003673}
3674
3675/// GenerateConstantOffsets - Generate reuse formulae using symbolic offsets.
3676void LSRInstance::GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx,
3677 Formula Base) {
3678 // TODO: For now, just add the min and max offset, because it usually isn't
3679 // worthwhile looking at everything inbetween.
Dan Gohman4afd4122010-07-15 15:14:45 +00003680 SmallVector<int64_t, 2> Worklist;
Dan Gohman45774ce2010-02-12 10:34:29 +00003681 Worklist.push_back(LU.MinOffset);
3682 if (LU.MaxOffset != LU.MinOffset)
3683 Worklist.push_back(LU.MaxOffset);
3684
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003685 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3686 GenerateConstantOffsetsImpl(LU, LUIdx, Base, Worklist, i);
3687 if (Base.Scale == 1)
3688 GenerateConstantOffsetsImpl(LU, LUIdx, Base, Worklist, /* Idx */ -1,
3689 /* IsScaledReg */ true);
Dan Gohman45774ce2010-02-12 10:34:29 +00003690}
3691
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003692/// For ICmpZero, check to see if we can scale up the comparison. For example, x
3693/// == y -> x*c == y*c.
Dan Gohman45774ce2010-02-12 10:34:29 +00003694void LSRInstance::GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx,
3695 Formula Base) {
3696 if (LU.Kind != LSRUse::ICmpZero) return;
3697
3698 // Determine the integer type for the base formula.
Chris Lattner229907c2011-07-18 04:54:35 +00003699 Type *IntTy = Base.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003700 if (!IntTy) return;
3701 if (SE.getTypeSizeInBits(IntTy) > 64) return;
3702
3703 // Don't do this if there is more than one offset.
3704 if (LU.MinOffset != LU.MaxOffset) return;
3705
Evgeny Stupachenko38197c62017-08-04 18:46:13 +00003706 // Check if transformation is valid. It is illegal to multiply pointer.
3707 if (Base.ScaledReg && Base.ScaledReg->getType()->isPointerTy())
3708 return;
3709 for (const SCEV *BaseReg : Base.BaseRegs)
3710 if (BaseReg->getType()->isPointerTy())
3711 return;
Chandler Carruth6e479322013-01-07 15:04:40 +00003712 assert(!Base.BaseGV && "ICmpZero use is not legal!");
Dan Gohman45774ce2010-02-12 10:34:29 +00003713
3714 // Check each interesting stride.
Craig Topper042a3922015-05-25 20:01:18 +00003715 for (int64_t Factor : Factors) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003716 // Check that the multiplication doesn't overflow.
Eugene Zelenko306d2992017-10-18 21:46:47 +00003717 if (Base.BaseOffset == std::numeric_limits<int64_t>::min() && Factor == -1)
Dan Gohman5f10d6c2010-02-17 00:41:53 +00003718 continue;
Chandler Carruth6e479322013-01-07 15:04:40 +00003719 int64_t NewBaseOffset = (uint64_t)Base.BaseOffset * Factor;
3720 if (NewBaseOffset / Factor != Base.BaseOffset)
Dan Gohman45774ce2010-02-12 10:34:29 +00003721 continue;
Andrew Trick429e9ed2014-02-26 16:31:56 +00003722 // If the offset will be truncated at this use, check that it is in bounds.
3723 if (!IntTy->isPointerTy() &&
3724 !ConstantInt::isValueValidForType(IntTy, NewBaseOffset))
3725 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003726
3727 // Check that multiplying with the use offset doesn't overflow.
3728 int64_t Offset = LU.MinOffset;
Eugene Zelenko306d2992017-10-18 21:46:47 +00003729 if (Offset == std::numeric_limits<int64_t>::min() && Factor == -1)
Dan Gohman5f10d6c2010-02-17 00:41:53 +00003730 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003731 Offset = (uint64_t)Offset * Factor;
Dan Gohman13ac3b22010-02-17 00:42:19 +00003732 if (Offset / Factor != LU.MinOffset)
Dan Gohman45774ce2010-02-12 10:34:29 +00003733 continue;
Andrew Trick429e9ed2014-02-26 16:31:56 +00003734 // If the offset will be truncated at this use, check that it is in bounds.
3735 if (!IntTy->isPointerTy() &&
3736 !ConstantInt::isValueValidForType(IntTy, Offset))
3737 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003738
Dan Gohman963b1c12010-06-24 16:57:52 +00003739 Formula F = Base;
Chandler Carruth6e479322013-01-07 15:04:40 +00003740 F.BaseOffset = NewBaseOffset;
Dan Gohman963b1c12010-06-24 16:57:52 +00003741
Dan Gohman45774ce2010-02-12 10:34:29 +00003742 // Check that this scale is legal.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003743 if (!isLegalUse(TTI, Offset, Offset, LU.Kind, LU.AccessTy, F))
Dan Gohman45774ce2010-02-12 10:34:29 +00003744 continue;
3745
3746 // Compensate for the use having MinOffset built into it.
Chandler Carruth6e479322013-01-07 15:04:40 +00003747 F.BaseOffset = (uint64_t)F.BaseOffset + Offset - LU.MinOffset;
Dan Gohman45774ce2010-02-12 10:34:29 +00003748
Dan Gohman1d2ded72010-05-03 22:09:21 +00003749 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman45774ce2010-02-12 10:34:29 +00003750
3751 // Check that multiplying with each base register doesn't overflow.
3752 for (size_t i = 0, e = F.BaseRegs.size(); i != e; ++i) {
3753 F.BaseRegs[i] = SE.getMulExpr(F.BaseRegs[i], FactorS);
Dan Gohman4eebb942010-02-19 19:35:48 +00003754 if (getExactSDiv(F.BaseRegs[i], FactorS, SE) != Base.BaseRegs[i])
Dan Gohman45774ce2010-02-12 10:34:29 +00003755 goto next;
3756 }
3757
3758 // Check that multiplying with the scaled register doesn't overflow.
3759 if (F.ScaledReg) {
3760 F.ScaledReg = SE.getMulExpr(F.ScaledReg, FactorS);
Dan Gohman4eebb942010-02-19 19:35:48 +00003761 if (getExactSDiv(F.ScaledReg, FactorS, SE) != Base.ScaledReg)
Dan Gohman45774ce2010-02-12 10:34:29 +00003762 continue;
3763 }
3764
Dan Gohman6136e942011-05-03 00:46:49 +00003765 // Check that multiplying with the unfolded offset doesn't overflow.
3766 if (F.UnfoldedOffset != 0) {
Eugene Zelenko306d2992017-10-18 21:46:47 +00003767 if (F.UnfoldedOffset == std::numeric_limits<int64_t>::min() &&
3768 Factor == -1)
Dan Gohman6c4a3192011-05-23 21:07:39 +00003769 continue;
Dan Gohman6136e942011-05-03 00:46:49 +00003770 F.UnfoldedOffset = (uint64_t)F.UnfoldedOffset * Factor;
3771 if (F.UnfoldedOffset / Factor != Base.UnfoldedOffset)
3772 continue;
Andrew Trick429e9ed2014-02-26 16:31:56 +00003773 // If the offset will be truncated, check that it is in bounds.
3774 if (!IntTy->isPointerTy() &&
3775 !ConstantInt::isValueValidForType(IntTy, F.UnfoldedOffset))
3776 continue;
Dan Gohman6136e942011-05-03 00:46:49 +00003777 }
3778
Dan Gohman45774ce2010-02-12 10:34:29 +00003779 // If we make it here and it's legal, add it.
3780 (void)InsertFormula(LU, LUIdx, F);
3781 next:;
3782 }
3783}
3784
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003785/// Generate stride factor reuse formulae by making use of scaled-offset address
3786/// modes, for example.
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00003787void LSRInstance::GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003788 // Determine the integer type for the base formula.
Chris Lattner229907c2011-07-18 04:54:35 +00003789 Type *IntTy = Base.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003790 if (!IntTy) return;
3791
3792 // If this Formula already has a scaled register, we can't add another one.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003793 // Try to unscale the formula to generate a better scale.
Sanjoy Das302bfd02015-08-16 18:22:43 +00003794 if (Base.Scale != 0 && !Base.unscale())
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003795 return;
3796
Sanjoy Das302bfd02015-08-16 18:22:43 +00003797 assert(Base.Scale == 0 && "unscale did not did its job!");
Dan Gohman45774ce2010-02-12 10:34:29 +00003798
3799 // Check each interesting stride.
Craig Topper042a3922015-05-25 20:01:18 +00003800 for (int64_t Factor : Factors) {
Chandler Carruth6e479322013-01-07 15:04:40 +00003801 Base.Scale = Factor;
3802 Base.HasBaseReg = Base.BaseRegs.size() > 1;
Dan Gohman45774ce2010-02-12 10:34:29 +00003803 // Check whether this scale is going to be legal.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003804 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
3805 Base)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003806 // As a special-case, handle special out-of-loop Basic users specially.
3807 // TODO: Reconsider this special case.
3808 if (LU.Kind == LSRUse::Basic &&
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003809 isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LSRUse::Special,
3810 LU.AccessTy, Base) &&
Dan Gohman45774ce2010-02-12 10:34:29 +00003811 LU.AllFixupsOutsideLoop)
3812 LU.Kind = LSRUse::Special;
3813 else
3814 continue;
3815 }
3816 // For an ICmpZero, negating a solitary base register won't lead to
3817 // new solutions.
3818 if (LU.Kind == LSRUse::ICmpZero &&
Chandler Carruth6e479322013-01-07 15:04:40 +00003819 !Base.HasBaseReg && Base.BaseOffset == 0 && !Base.BaseGV)
Dan Gohman45774ce2010-02-12 10:34:29 +00003820 continue;
Wei Mi74d5a902017-02-22 21:47:08 +00003821 // For each addrec base reg, if its loop is current loop, apply the scale.
3822 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
3823 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Base.BaseRegs[i]);
3824 if (AR && (AR->getLoop() == L || LU.AllFixupsOutsideLoop)) {
Dan Gohman1d2ded72010-05-03 22:09:21 +00003825 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman45774ce2010-02-12 10:34:29 +00003826 if (FactorS->isZero())
3827 continue;
3828 // Divide out the factor, ignoring high bits, since we'll be
3829 // scaling the value back up in the end.
Dan Gohman4eebb942010-02-19 19:35:48 +00003830 if (const SCEV *Quotient = getExactSDiv(AR, FactorS, SE, true)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003831 // TODO: This could be optimized to avoid all the copying.
3832 Formula F = Base;
3833 F.ScaledReg = Quotient;
Sanjoy Das302bfd02015-08-16 18:22:43 +00003834 F.deleteBaseReg(F.BaseRegs[i]);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003835 // The canonical representation of 1*reg is reg, which is already in
3836 // Base. In that case, do not try to insert the formula, it will be
3837 // rejected anyway.
Wei Mi74d5a902017-02-22 21:47:08 +00003838 if (F.Scale == 1 && (F.BaseRegs.empty() ||
3839 (AR->getLoop() != L && LU.AllFixupsOutsideLoop)))
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003840 continue;
Wei Mi74d5a902017-02-22 21:47:08 +00003841 // If AllFixupsOutsideLoop is true and F.Scale is 1, we may generate
3842 // non canonical Formula with ScaledReg's loop not being L.
3843 if (F.Scale == 1 && LU.AllFixupsOutsideLoop)
3844 F.canonicalize(*L);
Dan Gohman45774ce2010-02-12 10:34:29 +00003845 (void)InsertFormula(LU, LUIdx, F);
3846 }
3847 }
Wei Mi74d5a902017-02-22 21:47:08 +00003848 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003849 }
3850}
3851
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003852/// Generate reuse formulae from different IV types.
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00003853void LSRInstance::GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003854 // Don't bother truncating symbolic values.
Chandler Carruth6e479322013-01-07 15:04:40 +00003855 if (Base.BaseGV) return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003856
3857 // Determine the integer type for the base formula.
Chris Lattner229907c2011-07-18 04:54:35 +00003858 Type *DstTy = Base.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003859 if (!DstTy) return;
3860 DstTy = SE.getEffectiveSCEVType(DstTy);
3861
Craig Topper042a3922015-05-25 20:01:18 +00003862 for (Type *SrcTy : Types) {
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003863 if (SrcTy != DstTy && TTI.isTruncateFree(SrcTy, DstTy)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003864 Formula F = Base;
3865
Craig Topper042a3922015-05-25 20:01:18 +00003866 if (F.ScaledReg) F.ScaledReg = SE.getAnyExtendExpr(F.ScaledReg, SrcTy);
3867 for (const SCEV *&BaseReg : F.BaseRegs)
3868 BaseReg = SE.getAnyExtendExpr(BaseReg, SrcTy);
Dan Gohman45774ce2010-02-12 10:34:29 +00003869
3870 // TODO: This assumes we've done basic processing on all uses and
3871 // have an idea what the register usage is.
3872 if (!F.hasRegsUsedByUsesOtherThan(LUIdx, RegUses))
3873 continue;
3874
Wei Mi8848c1e2017-05-18 17:21:22 +00003875 F.canonicalize(*L);
Dan Gohman45774ce2010-02-12 10:34:29 +00003876 (void)InsertFormula(LU, LUIdx, F);
3877 }
3878 }
3879}
3880
3881namespace {
3882
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003883/// Helper class for GenerateCrossUseConstantOffsets. It's used to defer
3884/// modifications so that the search phase doesn't have to worry about the data
3885/// structures moving underneath it.
Dan Gohman45774ce2010-02-12 10:34:29 +00003886struct WorkItem {
3887 size_t LUIdx;
3888 int64_t Imm;
3889 const SCEV *OrigReg;
3890
3891 WorkItem(size_t LI, int64_t I, const SCEV *R)
Eugene Zelenko306d2992017-10-18 21:46:47 +00003892 : LUIdx(LI), Imm(I), OrigReg(R) {}
Dan Gohman45774ce2010-02-12 10:34:29 +00003893
3894 void print(raw_ostream &OS) const;
3895 void dump() const;
3896};
3897
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00003898} // end anonymous namespace
Dan Gohman45774ce2010-02-12 10:34:29 +00003899
Aaron Ballman615eb472017-10-15 14:32:27 +00003900#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +00003901void WorkItem::print(raw_ostream &OS) const {
3902 OS << "in formulae referencing " << *OrigReg << " in use " << LUIdx
3903 << " , add offset " << Imm;
3904}
3905
Matthias Braun8c209aa2017-01-28 02:02:38 +00003906LLVM_DUMP_METHOD void WorkItem::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +00003907 print(errs()); errs() << '\n';
3908}
Matthias Braun8c209aa2017-01-28 02:02:38 +00003909#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00003910
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003911/// Look for registers which are a constant distance apart and try to form reuse
3912/// opportunities between them.
Dan Gohman45774ce2010-02-12 10:34:29 +00003913void LSRInstance::GenerateCrossUseConstantOffsets() {
3914 // Group the registers by their value without any added constant offset.
Eugene Zelenko306d2992017-10-18 21:46:47 +00003915 using ImmMapTy = std::map<int64_t, const SCEV *>;
3916
Craig Topper042a3922015-05-25 20:01:18 +00003917 DenseMap<const SCEV *, ImmMapTy> Map;
Dan Gohman45774ce2010-02-12 10:34:29 +00003918 DenseMap<const SCEV *, SmallBitVector> UsedByIndicesMap;
3919 SmallVector<const SCEV *, 8> Sequence;
Craig Topper042a3922015-05-25 20:01:18 +00003920 for (const SCEV *Use : RegUses) {
3921 const SCEV *Reg = Use; // Make a copy for ExtractImmediate to modify.
Dan Gohman45774ce2010-02-12 10:34:29 +00003922 int64_t Imm = ExtractImmediate(Reg, SE);
Craig Topper042a3922015-05-25 20:01:18 +00003923 auto Pair = Map.insert(std::make_pair(Reg, ImmMapTy()));
Dan Gohman45774ce2010-02-12 10:34:29 +00003924 if (Pair.second)
3925 Sequence.push_back(Reg);
Craig Topper042a3922015-05-25 20:01:18 +00003926 Pair.first->second.insert(std::make_pair(Imm, Use));
3927 UsedByIndicesMap[Reg] |= RegUses.getUsedByIndices(Use);
Dan Gohman45774ce2010-02-12 10:34:29 +00003928 }
3929
3930 // Now examine each set of registers with the same base value. Build up
3931 // a list of work to do and do the work in a separate step so that we're
3932 // not adding formulae and register counts while we're searching.
Dan Gohman110ed642010-09-01 01:45:53 +00003933 SmallVector<WorkItem, 32> WorkItems;
3934 SmallSet<std::pair<size_t, int64_t>, 32> UniqueItems;
Craig Topper042a3922015-05-25 20:01:18 +00003935 for (const SCEV *Reg : Sequence) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003936 const ImmMapTy &Imms = Map.find(Reg)->second;
3937
Dan Gohman363f8472010-02-12 19:20:37 +00003938 // It's not worthwhile looking for reuse if there's only one offset.
3939 if (Imms.size() == 1)
3940 continue;
3941
Dan Gohman45774ce2010-02-12 10:34:29 +00003942 DEBUG(dbgs() << "Generating cross-use offsets for " << *Reg << ':';
Craig Topper042a3922015-05-25 20:01:18 +00003943 for (const auto &Entry : Imms)
3944 dbgs() << ' ' << Entry.first;
Dan Gohman45774ce2010-02-12 10:34:29 +00003945 dbgs() << '\n');
3946
3947 // Examine each offset.
3948 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
3949 J != JE; ++J) {
3950 const SCEV *OrigReg = J->second;
3951
3952 int64_t JImm = J->first;
3953 const SmallBitVector &UsedByIndices = RegUses.getUsedByIndices(OrigReg);
3954
3955 if (!isa<SCEVConstant>(OrigReg) &&
3956 UsedByIndicesMap[Reg].count() == 1) {
3957 DEBUG(dbgs() << "Skipping cross-use reuse for " << *OrigReg << '\n');
3958 continue;
3959 }
3960
3961 // Conservatively examine offsets between this orig reg a few selected
3962 // other orig regs.
3963 ImmMapTy::const_iterator OtherImms[] = {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00003964 Imms.begin(), std::prev(Imms.end()),
3965 Imms.lower_bound((Imms.begin()->first + std::prev(Imms.end())->first) /
3966 2)
Dan Gohman45774ce2010-02-12 10:34:29 +00003967 };
3968 for (size_t i = 0, e = array_lengthof(OtherImms); i != e; ++i) {
3969 ImmMapTy::const_iterator M = OtherImms[i];
Dan Gohman363f8472010-02-12 19:20:37 +00003970 if (M == J || M == JE) continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003971
3972 // Compute the difference between the two.
3973 int64_t Imm = (uint64_t)JImm - M->first;
Francis Visoiu Mistrihb52e0362017-05-17 01:07:53 +00003974 for (unsigned LUIdx : UsedByIndices.set_bits())
Dan Gohman45774ce2010-02-12 10:34:29 +00003975 // Make a memo of this use, offset, and register tuple.
David Blaikie70573dc2014-11-19 07:49:26 +00003976 if (UniqueItems.insert(std::make_pair(LUIdx, Imm)).second)
Dan Gohman110ed642010-09-01 01:45:53 +00003977 WorkItems.push_back(WorkItem(LUIdx, Imm, OrigReg));
Evan Cheng85a9f432009-11-12 07:35:05 +00003978 }
3979 }
3980 }
3981
Dan Gohman45774ce2010-02-12 10:34:29 +00003982 Map.clear();
3983 Sequence.clear();
3984 UsedByIndicesMap.clear();
Dan Gohman110ed642010-09-01 01:45:53 +00003985 UniqueItems.clear();
Dan Gohman45774ce2010-02-12 10:34:29 +00003986
3987 // Now iterate through the worklist and add new formulae.
Craig Topper042a3922015-05-25 20:01:18 +00003988 for (const WorkItem &WI : WorkItems) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003989 size_t LUIdx = WI.LUIdx;
3990 LSRUse &LU = Uses[LUIdx];
3991 int64_t Imm = WI.Imm;
3992 const SCEV *OrigReg = WI.OrigReg;
3993
Chris Lattner229907c2011-07-18 04:54:35 +00003994 Type *IntTy = SE.getEffectiveSCEVType(OrigReg->getType());
Dan Gohman45774ce2010-02-12 10:34:29 +00003995 const SCEV *NegImmS = SE.getSCEV(ConstantInt::get(IntTy, -(uint64_t)Imm));
3996 unsigned BitWidth = SE.getTypeSizeInBits(IntTy);
3997
Dan Gohman8b0a4192010-03-01 17:49:51 +00003998 // TODO: Use a more targeted data structure.
Dan Gohman45774ce2010-02-12 10:34:29 +00003999 for (size_t L = 0, LE = LU.Formulae.size(); L != LE; ++L) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004000 Formula F = LU.Formulae[L];
4001 // FIXME: The code for the scaled and unscaled registers looks
4002 // very similar but slightly different. Investigate if they
4003 // could be merged. That way, we would not have to unscale the
4004 // Formula.
Sanjoy Das302bfd02015-08-16 18:22:43 +00004005 F.unscale();
Dan Gohman45774ce2010-02-12 10:34:29 +00004006 // Use the immediate in the scaled register.
4007 if (F.ScaledReg == OrigReg) {
Chandler Carruth6e479322013-01-07 15:04:40 +00004008 int64_t Offset = (uint64_t)F.BaseOffset + Imm * (uint64_t)F.Scale;
Dan Gohman45774ce2010-02-12 10:34:29 +00004009 // Don't create 50 + reg(-50).
4010 if (F.referencesReg(SE.getSCEV(
Chandler Carruth6e479322013-01-07 15:04:40 +00004011 ConstantInt::get(IntTy, -(uint64_t)Offset))))
Dan Gohman45774ce2010-02-12 10:34:29 +00004012 continue;
4013 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00004014 NewF.BaseOffset = Offset;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004015 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
4016 NewF))
Dan Gohman45774ce2010-02-12 10:34:29 +00004017 continue;
4018 NewF.ScaledReg = SE.getAddExpr(NegImmS, NewF.ScaledReg);
4019
4020 // If the new scale is a constant in a register, and adding the constant
4021 // value to the immediate would produce a value closer to zero than the
4022 // immediate itself, then the formula isn't worthwhile.
4023 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewF.ScaledReg))
Sanjoy Das0de2fec2015-12-17 20:28:46 +00004024 if (C->getValue()->isNegative() != (NewF.BaseOffset < 0) &&
4025 (C->getAPInt().abs() * APInt(BitWidth, F.Scale))
4026 .ule(std::abs(NewF.BaseOffset)))
Dan Gohman45774ce2010-02-12 10:34:29 +00004027 continue;
4028
4029 // OK, looks good.
Wei Mi74d5a902017-02-22 21:47:08 +00004030 NewF.canonicalize(*this->L);
Dan Gohman45774ce2010-02-12 10:34:29 +00004031 (void)InsertFormula(LU, LUIdx, NewF);
4032 } else {
4033 // Use the immediate in a base register.
4034 for (size_t N = 0, NE = F.BaseRegs.size(); N != NE; ++N) {
4035 const SCEV *BaseReg = F.BaseRegs[N];
4036 if (BaseReg != OrigReg)
4037 continue;
4038 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00004039 NewF.BaseOffset = (uint64_t)NewF.BaseOffset + Imm;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004040 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset,
4041 LU.Kind, LU.AccessTy, NewF)) {
4042 if (!TTI.isLegalAddImmediate((uint64_t)NewF.UnfoldedOffset + Imm))
Dan Gohman6136e942011-05-03 00:46:49 +00004043 continue;
4044 NewF = F;
4045 NewF.UnfoldedOffset = (uint64_t)NewF.UnfoldedOffset + Imm;
4046 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004047 NewF.BaseRegs[N] = SE.getAddExpr(NegImmS, BaseReg);
4048
4049 // If the new formula has a constant in a register, and adding the
4050 // constant value to the immediate would produce a value closer to
4051 // zero than the immediate itself, then the formula isn't worthwhile.
Craig Topper10949ae2015-05-23 08:45:10 +00004052 for (const SCEV *NewReg : NewF.BaseRegs)
4053 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewReg))
Sanjoy Das0de2fec2015-12-17 20:28:46 +00004054 if ((C->getAPInt() + NewF.BaseOffset)
4055 .abs()
4056 .slt(std::abs(NewF.BaseOffset)) &&
4057 (C->getAPInt() + NewF.BaseOffset).countTrailingZeros() >=
4058 countTrailingZeros<uint64_t>(NewF.BaseOffset))
Dan Gohman45774ce2010-02-12 10:34:29 +00004059 goto skip_formula;
4060
4061 // Ok, looks good.
Wei Mi74d5a902017-02-22 21:47:08 +00004062 NewF.canonicalize(*this->L);
Dan Gohman45774ce2010-02-12 10:34:29 +00004063 (void)InsertFormula(LU, LUIdx, NewF);
4064 break;
4065 skip_formula:;
4066 }
4067 }
4068 }
4069 }
Dale Johannesen02cb2bf2009-05-11 17:15:42 +00004070}
4071
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004072/// Generate formulae for each use.
Dan Gohman45774ce2010-02-12 10:34:29 +00004073void
4074LSRInstance::GenerateAllReuseFormulae() {
Dan Gohman521efe62010-02-16 01:42:53 +00004075 // This is split into multiple loops so that hasRegsUsedByUsesOtherThan
Dan Gohman45774ce2010-02-12 10:34:29 +00004076 // queries are more precise.
4077 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4078 LSRUse &LU = Uses[LUIdx];
4079 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
4080 GenerateReassociations(LU, LUIdx, LU.Formulae[i]);
4081 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
4082 GenerateCombinations(LU, LUIdx, LU.Formulae[i]);
4083 }
4084 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4085 LSRUse &LU = Uses[LUIdx];
4086 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
4087 GenerateSymbolicOffsets(LU, LUIdx, LU.Formulae[i]);
4088 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
4089 GenerateConstantOffsets(LU, LUIdx, LU.Formulae[i]);
4090 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
4091 GenerateICmpZeroScales(LU, LUIdx, LU.Formulae[i]);
4092 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
4093 GenerateScales(LU, LUIdx, LU.Formulae[i]);
Dan Gohman521efe62010-02-16 01:42:53 +00004094 }
4095 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4096 LSRUse &LU = Uses[LUIdx];
Dan Gohman45774ce2010-02-12 10:34:29 +00004097 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
4098 GenerateTruncates(LU, LUIdx, LU.Formulae[i]);
4099 }
4100
4101 GenerateCrossUseConstantOffsets();
Dan Gohmanbf673e02010-08-29 15:21:38 +00004102
4103 DEBUG(dbgs() << "\n"
4104 "After generating reuse formulae:\n";
4105 print_uses(dbgs()));
Dan Gohman45774ce2010-02-12 10:34:29 +00004106}
4107
Dan Gohman1b61fd92010-10-07 23:43:09 +00004108/// If there are multiple formulae with the same set of registers used
Dan Gohman45774ce2010-02-12 10:34:29 +00004109/// by other uses, pick the best one and delete the others.
4110void LSRInstance::FilterOutUndesirableDedicatedRegisters() {
Dan Gohman5947e162010-10-07 23:52:18 +00004111 DenseSet<const SCEV *> VisitedRegs;
4112 SmallPtrSet<const SCEV *, 16> Regs;
Andrew Trick5df90962011-12-06 03:13:31 +00004113 SmallPtrSet<const SCEV *, 16> LoserRegs;
Dan Gohman45774ce2010-02-12 10:34:29 +00004114#ifndef NDEBUG
Dan Gohman4c4043c2010-05-20 20:05:31 +00004115 bool ChangedFormulae = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00004116#endif
4117
4118 // Collect the best formula for each unique set of shared registers. This
4119 // is reset for each use.
Eugene Zelenko306d2992017-10-18 21:46:47 +00004120 using BestFormulaeTy =
4121 DenseMap<SmallVector<const SCEV *, 4>, size_t, UniquifierDenseMapInfo>;
4122
Dan Gohman45774ce2010-02-12 10:34:29 +00004123 BestFormulaeTy BestFormulae;
4124
4125 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4126 LSRUse &LU = Uses[LUIdx];
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00004127 DEBUG(dbgs() << "Filtering for use "; LU.print(dbgs()); dbgs() << '\n');
Dan Gohman45774ce2010-02-12 10:34:29 +00004128
Dan Gohman4cf99b52010-05-18 23:42:37 +00004129 bool Any = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00004130 for (size_t FIdx = 0, NumForms = LU.Formulae.size();
4131 FIdx != NumForms; ++FIdx) {
4132 Formula &F = LU.Formulae[FIdx];
4133
Andrew Trick5df90962011-12-06 03:13:31 +00004134 // Some formulas are instant losers. For example, they may depend on
4135 // nonexistent AddRecs from other loops. These need to be filtered
4136 // immediately, otherwise heuristics could choose them over others leading
4137 // to an unsatisfactory solution. Passing LoserRegs into RateFormula here
4138 // avoids the need to recompute this information across formulae using the
4139 // same bad AddRec. Passing LoserRegs is also essential unless we remove
4140 // the corresponding bad register from the Regs set.
4141 Cost CostF;
4142 Regs.clear();
Jonas Paulsson7a794222016-08-17 13:24:19 +00004143 CostF.RateFormula(TTI, F, Regs, VisitedRegs, L, SE, DT, LU, &LoserRegs);
Andrew Trick5df90962011-12-06 03:13:31 +00004144 if (CostF.isLoser()) {
4145 // During initial formula generation, undesirable formulae are generated
4146 // by uses within other loops that have some non-trivial address mode or
4147 // use the postinc form of the IV. LSR needs to provide these formulae
4148 // as the basis of rediscovering the desired formula that uses an AddRec
4149 // corresponding to the existing phi. Once all formulae have been
4150 // generated, these initial losers may be pruned.
4151 DEBUG(dbgs() << " Filtering loser "; F.print(dbgs());
4152 dbgs() << "\n");
Dan Gohman45774ce2010-02-12 10:34:29 +00004153 }
Andrew Trick5df90962011-12-06 03:13:31 +00004154 else {
Preston Gurd25c3b6a2013-02-01 20:41:27 +00004155 SmallVector<const SCEV *, 4> Key;
Craig Topper77b99412015-05-23 08:01:41 +00004156 for (const SCEV *Reg : F.BaseRegs) {
Andrew Trick5df90962011-12-06 03:13:31 +00004157 if (RegUses.isRegUsedByUsesOtherThan(Reg, LUIdx))
4158 Key.push_back(Reg);
4159 }
4160 if (F.ScaledReg &&
4161 RegUses.isRegUsedByUsesOtherThan(F.ScaledReg, LUIdx))
4162 Key.push_back(F.ScaledReg);
4163 // Unstable sort by host order ok, because this is only used for
4164 // uniquifying.
4165 std::sort(Key.begin(), Key.end());
Dan Gohman45774ce2010-02-12 10:34:29 +00004166
Andrew Trick5df90962011-12-06 03:13:31 +00004167 std::pair<BestFormulaeTy::const_iterator, bool> P =
4168 BestFormulae.insert(std::make_pair(Key, FIdx));
4169 if (P.second)
4170 continue;
4171
Dan Gohman45774ce2010-02-12 10:34:29 +00004172 Formula &Best = LU.Formulae[P.first->second];
Dan Gohman5947e162010-10-07 23:52:18 +00004173
Dan Gohman5947e162010-10-07 23:52:18 +00004174 Cost CostBest;
Dan Gohman5947e162010-10-07 23:52:18 +00004175 Regs.clear();
Jonas Paulsson7a794222016-08-17 13:24:19 +00004176 CostBest.RateFormula(TTI, Best, Regs, VisitedRegs, L, SE, DT, LU);
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00004177 if (CostF.isLess(CostBest, TTI))
Dan Gohman45774ce2010-02-12 10:34:29 +00004178 std::swap(F, Best);
Dan Gohman8aca7ef2010-05-18 22:37:37 +00004179 DEBUG(dbgs() << " Filtering out formula "; F.print(dbgs());
Dan Gohman45774ce2010-02-12 10:34:29 +00004180 dbgs() << "\n"
Dan Gohman8aca7ef2010-05-18 22:37:37 +00004181 " in favor of formula "; Best.print(dbgs());
Dan Gohman45774ce2010-02-12 10:34:29 +00004182 dbgs() << '\n');
Dan Gohman45774ce2010-02-12 10:34:29 +00004183 }
Andrew Trick5df90962011-12-06 03:13:31 +00004184#ifndef NDEBUG
4185 ChangedFormulae = true;
4186#endif
4187 LU.DeleteFormula(F);
4188 --FIdx;
4189 --NumForms;
4190 Any = true;
Dan Gohmand0800242010-05-07 23:36:59 +00004191 }
4192
Dan Gohmanbeebef42010-05-18 23:55:57 +00004193 // Now that we've filtered out some formulae, recompute the Regs set.
Dan Gohman4cf99b52010-05-18 23:42:37 +00004194 if (Any)
4195 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohmand0800242010-05-07 23:36:59 +00004196
4197 // Reset this to prepare for the next use.
Dan Gohman45774ce2010-02-12 10:34:29 +00004198 BestFormulae.clear();
4199 }
4200
Dan Gohman4c4043c2010-05-20 20:05:31 +00004201 DEBUG(if (ChangedFormulae) {
Dan Gohman5b18f032010-02-13 02:06:02 +00004202 dbgs() << "\n"
4203 "After filtering out undesirable candidates:\n";
Dan Gohman45774ce2010-02-12 10:34:29 +00004204 print_uses(dbgs());
4205 });
4206}
4207
Dan Gohmana4eca052010-05-18 22:51:59 +00004208// This is a rough guess that seems to work fairly well.
Eugene Zelenko306d2992017-10-18 21:46:47 +00004209static const size_t ComplexityLimit = std::numeric_limits<uint16_t>::max();
Dan Gohmana4eca052010-05-18 22:51:59 +00004210
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004211/// Estimate the worst-case number of solutions the solver might have to
4212/// consider. It almost never considers this many solutions because it prune the
4213/// search space, but the pruning isn't always sufficient.
Dan Gohmana4eca052010-05-18 22:51:59 +00004214size_t LSRInstance::EstimateSearchSpaceComplexity() const {
Dan Gohman49d638b2010-10-07 23:37:58 +00004215 size_t Power = 1;
Craig Topper10949ae2015-05-23 08:45:10 +00004216 for (const LSRUse &LU : Uses) {
4217 size_t FSize = LU.Formulae.size();
Dan Gohmana4eca052010-05-18 22:51:59 +00004218 if (FSize >= ComplexityLimit) {
4219 Power = ComplexityLimit;
4220 break;
4221 }
4222 Power *= FSize;
4223 if (Power >= ComplexityLimit)
4224 break;
4225 }
4226 return Power;
4227}
4228
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004229/// When one formula uses a superset of the registers of another formula, it
4230/// won't help reduce register pressure (though it may not necessarily hurt
4231/// register pressure); remove it to simplify the system.
Dan Gohmane9e08732010-08-29 16:09:42 +00004232void LSRInstance::NarrowSearchSpaceByDetectingSupersets() {
Dan Gohman20fab452010-05-19 23:43:12 +00004233 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
4234 DEBUG(dbgs() << "The search space is too complex.\n");
4235
4236 DEBUG(dbgs() << "Narrowing the search space by eliminating formulae "
4237 "which use a superset of registers used by other "
4238 "formulae.\n");
4239
4240 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4241 LSRUse &LU = Uses[LUIdx];
4242 bool Any = false;
4243 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
4244 Formula &F = LU.Formulae[i];
Dan Gohman8ec018c2010-05-20 20:00:41 +00004245 // Look for a formula with a constant or GV in a register. If the use
4246 // also has a formula with that same value in an immediate field,
4247 // delete the one that uses a register.
Dan Gohman20fab452010-05-19 23:43:12 +00004248 for (SmallVectorImpl<const SCEV *>::const_iterator
4249 I = F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I) {
4250 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*I)) {
4251 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00004252 NewF.BaseOffset += C->getValue()->getSExtValue();
Dan Gohman20fab452010-05-19 23:43:12 +00004253 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
4254 (I - F.BaseRegs.begin()));
4255 if (LU.HasFormulaWithSameRegs(NewF)) {
4256 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
4257 LU.DeleteFormula(F);
4258 --i;
4259 --e;
4260 Any = true;
4261 break;
4262 }
4263 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(*I)) {
4264 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue()))
Chandler Carruth6e479322013-01-07 15:04:40 +00004265 if (!F.BaseGV) {
Dan Gohman20fab452010-05-19 23:43:12 +00004266 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00004267 NewF.BaseGV = GV;
Dan Gohman20fab452010-05-19 23:43:12 +00004268 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
4269 (I - F.BaseRegs.begin()));
4270 if (LU.HasFormulaWithSameRegs(NewF)) {
4271 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
4272 dbgs() << '\n');
4273 LU.DeleteFormula(F);
4274 --i;
4275 --e;
4276 Any = true;
4277 break;
4278 }
4279 }
4280 }
4281 }
4282 }
4283 if (Any)
4284 LU.RecomputeRegs(LUIdx, RegUses);
4285 }
4286
4287 DEBUG(dbgs() << "After pre-selection:\n";
4288 print_uses(dbgs()));
4289 }
Dan Gohmane9e08732010-08-29 16:09:42 +00004290}
Dan Gohman20fab452010-05-19 23:43:12 +00004291
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004292/// When there are many registers for expressions like A, A+1, A+2, etc.,
4293/// allocate a single register for them.
Dan Gohmane9e08732010-08-29 16:09:42 +00004294void LSRInstance::NarrowSearchSpaceByCollapsingUnrolledCode() {
Jakub Staszak11bd8352013-02-16 16:08:15 +00004295 if (EstimateSearchSpaceComplexity() < ComplexityLimit)
4296 return;
Dan Gohman20fab452010-05-19 23:43:12 +00004297
Jakub Staszak11bd8352013-02-16 16:08:15 +00004298 DEBUG(dbgs() << "The search space is too complex.\n"
4299 "Narrowing the search space by assuming that uses separated "
4300 "by a constant offset will use the same registers.\n");
Dan Gohman20fab452010-05-19 23:43:12 +00004301
Jakub Staszak11bd8352013-02-16 16:08:15 +00004302 // This is especially useful for unrolled loops.
Dan Gohman8ec018c2010-05-20 20:00:41 +00004303
Jakub Staszak11bd8352013-02-16 16:08:15 +00004304 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4305 LSRUse &LU = Uses[LUIdx];
Craig Topper77b99412015-05-23 08:01:41 +00004306 for (const Formula &F : LU.Formulae) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004307 if (F.BaseOffset == 0 || (F.Scale != 0 && F.Scale != 1))
Jakub Staszak11bd8352013-02-16 16:08:15 +00004308 continue;
Dan Gohman20fab452010-05-19 23:43:12 +00004309
Jakub Staszak11bd8352013-02-16 16:08:15 +00004310 LSRUse *LUThatHas = FindUseWithSimilarFormula(F, LU);
4311 if (!LUThatHas)
4312 continue;
Dan Gohman20fab452010-05-19 23:43:12 +00004313
Jakub Staszak11bd8352013-02-16 16:08:15 +00004314 if (!reconcileNewOffset(*LUThatHas, F.BaseOffset, /*HasBaseReg=*/ false,
4315 LU.Kind, LU.AccessTy))
4316 continue;
Dan Gohman110ed642010-09-01 01:45:53 +00004317
Jakub Staszak11bd8352013-02-16 16:08:15 +00004318 DEBUG(dbgs() << " Deleting use "; LU.print(dbgs()); dbgs() << '\n');
Dan Gohman2fd85d72010-10-08 19:33:26 +00004319
Jakub Staszak11bd8352013-02-16 16:08:15 +00004320 LUThatHas->AllFixupsOutsideLoop &= LU.AllFixupsOutsideLoop;
4321
Jonas Paulsson7a794222016-08-17 13:24:19 +00004322 // Transfer the fixups of LU to LUThatHas.
4323 for (LSRFixup &Fixup : LU.Fixups) {
4324 Fixup.Offset += F.BaseOffset;
4325 LUThatHas->pushFixup(Fixup);
4326 DEBUG(dbgs() << "New fixup has offset " << Fixup.Offset << '\n');
Jakub Staszak11bd8352013-02-16 16:08:15 +00004327 }
Matt Arsenault3e268cc2017-12-11 21:38:43 +00004328
Jakub Staszak11bd8352013-02-16 16:08:15 +00004329 // Delete formulae from the new use which are no longer legal.
4330 bool Any = false;
4331 for (size_t i = 0, e = LUThatHas->Formulae.size(); i != e; ++i) {
4332 Formula &F = LUThatHas->Formulae[i];
4333 if (!isLegalUse(TTI, LUThatHas->MinOffset, LUThatHas->MaxOffset,
4334 LUThatHas->Kind, LUThatHas->AccessTy, F)) {
4335 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
4336 dbgs() << '\n');
4337 LUThatHas->DeleteFormula(F);
4338 --i;
4339 --e;
4340 Any = true;
Dan Gohman20fab452010-05-19 23:43:12 +00004341 }
4342 }
Dan Gohman20fab452010-05-19 23:43:12 +00004343
Jakub Staszak11bd8352013-02-16 16:08:15 +00004344 if (Any)
4345 LUThatHas->RecomputeRegs(LUThatHas - &Uses.front(), RegUses);
4346
4347 // Delete the old use.
4348 DeleteUse(LU, LUIdx);
4349 --LUIdx;
4350 --NumUses;
4351 break;
4352 }
Dan Gohman20fab452010-05-19 23:43:12 +00004353 }
Jakub Staszak11bd8352013-02-16 16:08:15 +00004354
4355 DEBUG(dbgs() << "After pre-selection:\n"; print_uses(dbgs()));
Dan Gohmane9e08732010-08-29 16:09:42 +00004356}
Dan Gohman20fab452010-05-19 23:43:12 +00004357
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004358/// Call FilterOutUndesirableDedicatedRegisters again, if necessary, now that
Dan Gohman002ff892010-08-29 16:39:22 +00004359/// we've done more filtering, as it may be able to find more formulae to
4360/// eliminate.
4361void LSRInstance::NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters(){
4362 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
4363 DEBUG(dbgs() << "The search space is too complex.\n");
4364
4365 DEBUG(dbgs() << "Narrowing the search space by re-filtering out "
4366 "undesirable dedicated registers.\n");
4367
4368 FilterOutUndesirableDedicatedRegisters();
4369
4370 DEBUG(dbgs() << "After pre-selection:\n";
4371 print_uses(dbgs()));
4372 }
4373}
4374
Wei Mi90707392017-07-06 15:52:14 +00004375/// If a LSRUse has multiple formulae with the same ScaledReg and Scale.
4376/// Pick the best one and delete the others.
4377/// This narrowing heuristic is to keep as many formulae with different
4378/// Scale and ScaledReg pair as possible while narrowing the search space.
4379/// The benefit is that it is more likely to find out a better solution
4380/// from a formulae set with more Scale and ScaledReg variations than
4381/// a formulae set with the same Scale and ScaledReg. The picking winner
4382/// reg heurstic will often keep the formulae with the same Scale and
4383/// ScaledReg and filter others, and we want to avoid that if possible.
4384void LSRInstance::NarrowSearchSpaceByFilterFormulaWithSameScaledReg() {
4385 if (EstimateSearchSpaceComplexity() < ComplexityLimit)
4386 return;
4387
4388 DEBUG(dbgs() << "The search space is too complex.\n"
4389 "Narrowing the search space by choosing the best Formula "
4390 "from the Formulae with the same Scale and ScaledReg.\n");
4391
4392 // Map the "Scale * ScaledReg" pair to the best formula of current LSRUse.
Eugene Zelenko306d2992017-10-18 21:46:47 +00004393 using BestFormulaeTy = DenseMap<std::pair<const SCEV *, int64_t>, size_t>;
4394
Wei Mi90707392017-07-06 15:52:14 +00004395 BestFormulaeTy BestFormulae;
4396#ifndef NDEBUG
4397 bool ChangedFormulae = false;
4398#endif
4399 DenseSet<const SCEV *> VisitedRegs;
4400 SmallPtrSet<const SCEV *, 16> Regs;
4401
4402 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4403 LSRUse &LU = Uses[LUIdx];
4404 DEBUG(dbgs() << "Filtering for use "; LU.print(dbgs()); dbgs() << '\n');
4405
4406 // Return true if Formula FA is better than Formula FB.
4407 auto IsBetterThan = [&](Formula &FA, Formula &FB) {
4408 // First we will try to choose the Formula with fewer new registers.
4409 // For a register used by current Formula, the more the register is
4410 // shared among LSRUses, the less we increase the register number
4411 // counter of the formula.
4412 size_t FARegNum = 0;
4413 for (const SCEV *Reg : FA.BaseRegs) {
4414 const SmallBitVector &UsedByIndices = RegUses.getUsedByIndices(Reg);
4415 FARegNum += (NumUses - UsedByIndices.count() + 1);
4416 }
4417 size_t FBRegNum = 0;
4418 for (const SCEV *Reg : FB.BaseRegs) {
4419 const SmallBitVector &UsedByIndices = RegUses.getUsedByIndices(Reg);
4420 FBRegNum += (NumUses - UsedByIndices.count() + 1);
4421 }
4422 if (FARegNum != FBRegNum)
4423 return FARegNum < FBRegNum;
4424
4425 // If the new register numbers are the same, choose the Formula with
4426 // less Cost.
4427 Cost CostFA, CostFB;
4428 Regs.clear();
4429 CostFA.RateFormula(TTI, FA, Regs, VisitedRegs, L, SE, DT, LU);
4430 Regs.clear();
4431 CostFB.RateFormula(TTI, FB, Regs, VisitedRegs, L, SE, DT, LU);
4432 return CostFA.isLess(CostFB, TTI);
4433 };
4434
4435 bool Any = false;
4436 for (size_t FIdx = 0, NumForms = LU.Formulae.size(); FIdx != NumForms;
4437 ++FIdx) {
4438 Formula &F = LU.Formulae[FIdx];
4439 if (!F.ScaledReg)
4440 continue;
4441 auto P = BestFormulae.insert({{F.ScaledReg, F.Scale}, FIdx});
4442 if (P.second)
4443 continue;
4444
4445 Formula &Best = LU.Formulae[P.first->second];
4446 if (IsBetterThan(F, Best))
4447 std::swap(F, Best);
4448 DEBUG(dbgs() << " Filtering out formula "; F.print(dbgs());
4449 dbgs() << "\n"
4450 " in favor of formula ";
4451 Best.print(dbgs()); dbgs() << '\n');
4452#ifndef NDEBUG
4453 ChangedFormulae = true;
4454#endif
4455 LU.DeleteFormula(F);
4456 --FIdx;
4457 --NumForms;
4458 Any = true;
4459 }
4460 if (Any)
4461 LU.RecomputeRegs(LUIdx, RegUses);
4462
4463 // Reset this to prepare for the next use.
4464 BestFormulae.clear();
4465 }
4466
4467 DEBUG(if (ChangedFormulae) {
4468 dbgs() << "\n"
4469 "After filtering out undesirable candidates:\n";
4470 print_uses(dbgs());
4471 });
4472}
4473
Evgeny Stupachenko9909872e302017-02-21 07:34:40 +00004474/// The function delete formulas with high registers number expectation.
4475/// Assuming we don't know the value of each formula (already delete
4476/// all inefficient), generate probability of not selecting for each
4477/// register.
4478/// For example,
4479/// Use1:
4480/// reg(a) + reg({0,+,1})
4481/// reg(a) + reg({-1,+,1}) + 1
4482/// reg({a,+,1})
4483/// Use2:
4484/// reg(b) + reg({0,+,1})
4485/// reg(b) + reg({-1,+,1}) + 1
4486/// reg({b,+,1})
4487/// Use3:
4488/// reg(c) + reg(b) + reg({0,+,1})
4489/// reg(c) + reg({b,+,1})
4490///
4491/// Probability of not selecting
4492/// Use1 Use2 Use3
4493/// reg(a) (1/3) * 1 * 1
4494/// reg(b) 1 * (1/3) * (1/2)
4495/// reg({0,+,1}) (2/3) * (2/3) * (1/2)
4496/// reg({-1,+,1}) (2/3) * (2/3) * 1
4497/// reg({a,+,1}) (2/3) * 1 * 1
4498/// reg({b,+,1}) 1 * (2/3) * (2/3)
4499/// reg(c) 1 * 1 * 0
4500///
4501/// Now count registers number mathematical expectation for each formula:
4502/// Note that for each use we exclude probability if not selecting for the use.
4503/// For example for Use1 probability for reg(a) would be just 1 * 1 (excluding
4504/// probabilty 1/3 of not selecting for Use1).
4505/// Use1:
4506/// reg(a) + reg({0,+,1}) 1 + 1/3 -- to be deleted
4507/// reg(a) + reg({-1,+,1}) + 1 1 + 4/9 -- to be deleted
4508/// reg({a,+,1}) 1
4509/// Use2:
4510/// reg(b) + reg({0,+,1}) 1/2 + 1/3 -- to be deleted
4511/// reg(b) + reg({-1,+,1}) + 1 1/2 + 2/3 -- to be deleted
4512/// reg({b,+,1}) 2/3
4513/// Use3:
4514/// reg(c) + reg(b) + reg({0,+,1}) 1 + 1/3 + 4/9 -- to be deleted
4515/// reg(c) + reg({b,+,1}) 1 + 2/3
Evgeny Stupachenko9909872e302017-02-21 07:34:40 +00004516void LSRInstance::NarrowSearchSpaceByDeletingCostlyFormulas() {
4517 if (EstimateSearchSpaceComplexity() < ComplexityLimit)
4518 return;
4519 // Ok, we have too many of formulae on our hands to conveniently handle.
4520 // Use a rough heuristic to thin out the list.
4521
4522 // Set of Regs wich will be 100% used in final solution.
4523 // Used in each formula of a solution (in example above this is reg(c)).
4524 // We can skip them in calculations.
4525 SmallPtrSet<const SCEV *, 4> UniqRegs;
4526 DEBUG(dbgs() << "The search space is too complex.\n");
4527
4528 // Map each register to probability of not selecting
4529 DenseMap <const SCEV *, float> RegNumMap;
4530 for (const SCEV *Reg : RegUses) {
4531 if (UniqRegs.count(Reg))
4532 continue;
4533 float PNotSel = 1;
4534 for (const LSRUse &LU : Uses) {
4535 if (!LU.Regs.count(Reg))
4536 continue;
4537 float P = LU.getNotSelectedProbability(Reg);
4538 if (P != 0.0)
4539 PNotSel *= P;
4540 else
4541 UniqRegs.insert(Reg);
4542 }
4543 RegNumMap.insert(std::make_pair(Reg, PNotSel));
4544 }
4545
4546 DEBUG(dbgs() << "Narrowing the search space by deleting costly formulas\n");
4547
4548 // Delete formulas where registers number expectation is high.
4549 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4550 LSRUse &LU = Uses[LUIdx];
4551 // If nothing to delete - continue.
4552 if (LU.Formulae.size() < 2)
4553 continue;
4554 // This is temporary solution to test performance. Float should be
4555 // replaced with round independent type (based on integers) to avoid
4556 // different results for different target builds.
4557 float FMinRegNum = LU.Formulae[0].getNumRegs();
4558 float FMinARegNum = LU.Formulae[0].getNumRegs();
4559 size_t MinIdx = 0;
4560 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
4561 Formula &F = LU.Formulae[i];
4562 float FRegNum = 0;
4563 float FARegNum = 0;
4564 for (const SCEV *BaseReg : F.BaseRegs) {
4565 if (UniqRegs.count(BaseReg))
4566 continue;
4567 FRegNum += RegNumMap[BaseReg] / LU.getNotSelectedProbability(BaseReg);
4568 if (isa<SCEVAddRecExpr>(BaseReg))
4569 FARegNum +=
4570 RegNumMap[BaseReg] / LU.getNotSelectedProbability(BaseReg);
4571 }
4572 if (const SCEV *ScaledReg = F.ScaledReg) {
4573 if (!UniqRegs.count(ScaledReg)) {
4574 FRegNum +=
4575 RegNumMap[ScaledReg] / LU.getNotSelectedProbability(ScaledReg);
4576 if (isa<SCEVAddRecExpr>(ScaledReg))
4577 FARegNum +=
4578 RegNumMap[ScaledReg] / LU.getNotSelectedProbability(ScaledReg);
4579 }
4580 }
4581 if (FMinRegNum > FRegNum ||
4582 (FMinRegNum == FRegNum && FMinARegNum > FARegNum)) {
4583 FMinRegNum = FRegNum;
4584 FMinARegNum = FARegNum;
4585 MinIdx = i;
4586 }
4587 }
4588 DEBUG(dbgs() << " The formula "; LU.Formulae[MinIdx].print(dbgs());
4589 dbgs() << " with min reg num " << FMinRegNum << '\n');
4590 if (MinIdx != 0)
4591 std::swap(LU.Formulae[MinIdx], LU.Formulae[0]);
4592 while (LU.Formulae.size() != 1) {
4593 DEBUG(dbgs() << " Deleting "; LU.Formulae.back().print(dbgs());
4594 dbgs() << '\n');
4595 LU.Formulae.pop_back();
4596 }
4597 LU.RecomputeRegs(LUIdx, RegUses);
4598 assert(LU.Formulae.size() == 1 && "Should be exactly 1 min regs formula");
4599 Formula &F = LU.Formulae[0];
4600 DEBUG(dbgs() << " Leaving only "; F.print(dbgs()); dbgs() << '\n');
4601 // When we choose the formula, the regs become unique.
4602 UniqRegs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
4603 if (F.ScaledReg)
4604 UniqRegs.insert(F.ScaledReg);
4605 }
4606 DEBUG(dbgs() << "After pre-selection:\n";
4607 print_uses(dbgs()));
4608}
4609
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004610/// Pick a register which seems likely to be profitable, and then in any use
4611/// which has any reference to that register, delete all formulae which do not
4612/// reference that register.
Dan Gohmane9e08732010-08-29 16:09:42 +00004613void LSRInstance::NarrowSearchSpaceByPickingWinnerRegs() {
Dan Gohmana4ca28a2010-05-20 20:52:00 +00004614 // With all other options exhausted, loop until the system is simple
4615 // enough to handle.
Dan Gohman45774ce2010-02-12 10:34:29 +00004616 SmallPtrSet<const SCEV *, 4> Taken;
Dan Gohmana4eca052010-05-18 22:51:59 +00004617 while (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004618 // Ok, we have too many of formulae on our hands to conveniently handle.
4619 // Use a rough heuristic to thin out the list.
Dan Gohman63e90152010-05-18 22:41:32 +00004620 DEBUG(dbgs() << "The search space is too complex.\n");
Dan Gohman45774ce2010-02-12 10:34:29 +00004621
4622 // Pick the register which is used by the most LSRUses, which is likely
4623 // to be a good reuse register candidate.
Craig Topperf40110f2014-04-25 05:29:35 +00004624 const SCEV *Best = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +00004625 unsigned BestNum = 0;
Craig Topper77b99412015-05-23 08:01:41 +00004626 for (const SCEV *Reg : RegUses) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004627 if (Taken.count(Reg))
4628 continue;
Evgeny Stupachenko0c4300f2016-11-30 22:23:51 +00004629 if (!Best) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004630 Best = Reg;
Evgeny Stupachenko0c4300f2016-11-30 22:23:51 +00004631 BestNum = RegUses.getUsedByIndices(Reg).count();
4632 } else {
Dan Gohman45774ce2010-02-12 10:34:29 +00004633 unsigned Count = RegUses.getUsedByIndices(Reg).count();
4634 if (Count > BestNum) {
4635 Best = Reg;
4636 BestNum = Count;
4637 }
4638 }
4639 }
4640
4641 DEBUG(dbgs() << "Narrowing the search space by assuming " << *Best
Dan Gohman8b0a4192010-03-01 17:49:51 +00004642 << " will yield profitable reuse.\n");
Dan Gohman45774ce2010-02-12 10:34:29 +00004643 Taken.insert(Best);
4644
4645 // In any use with formulae which references this register, delete formulae
4646 // which don't reference it.
Dan Gohman4cf99b52010-05-18 23:42:37 +00004647 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4648 LSRUse &LU = Uses[LUIdx];
Dan Gohman45774ce2010-02-12 10:34:29 +00004649 if (!LU.Regs.count(Best)) continue;
4650
Dan Gohman4cf99b52010-05-18 23:42:37 +00004651 bool Any = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00004652 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
4653 Formula &F = LU.Formulae[i];
4654 if (!F.referencesReg(Best)) {
4655 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00004656 LU.DeleteFormula(F);
Dan Gohman45774ce2010-02-12 10:34:29 +00004657 --e;
4658 --i;
Dan Gohman4cf99b52010-05-18 23:42:37 +00004659 Any = true;
Dan Gohmand0800242010-05-07 23:36:59 +00004660 assert(e != 0 && "Use has no formulae left! Is Regs inconsistent?");
Dan Gohman45774ce2010-02-12 10:34:29 +00004661 continue;
4662 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004663 }
Dan Gohman4cf99b52010-05-18 23:42:37 +00004664
4665 if (Any)
4666 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman45774ce2010-02-12 10:34:29 +00004667 }
4668
4669 DEBUG(dbgs() << "After pre-selection:\n";
4670 print_uses(dbgs()));
4671 }
4672}
4673
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004674/// If there are an extraordinary number of formulae to choose from, use some
4675/// rough heuristics to prune down the number of formulae. This keeps the main
4676/// solver from taking an extraordinary amount of time in some worst-case
4677/// scenarios.
Dan Gohmane9e08732010-08-29 16:09:42 +00004678void LSRInstance::NarrowSearchSpaceUsingHeuristics() {
4679 NarrowSearchSpaceByDetectingSupersets();
4680 NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman002ff892010-08-29 16:39:22 +00004681 NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Wei Mi90707392017-07-06 15:52:14 +00004682 if (FilterSameScaledReg)
4683 NarrowSearchSpaceByFilterFormulaWithSameScaledReg();
Evgeny Stupachenko9909872e302017-02-21 07:34:40 +00004684 if (LSRExpNarrow)
4685 NarrowSearchSpaceByDeletingCostlyFormulas();
4686 else
4687 NarrowSearchSpaceByPickingWinnerRegs();
Dan Gohmane9e08732010-08-29 16:09:42 +00004688}
4689
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004690/// This is the recursive solver.
Dan Gohman45774ce2010-02-12 10:34:29 +00004691void LSRInstance::SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
4692 Cost &SolutionCost,
4693 SmallVectorImpl<const Formula *> &Workspace,
4694 const Cost &CurCost,
4695 const SmallPtrSet<const SCEV *, 16> &CurRegs,
4696 DenseSet<const SCEV *> &VisitedRegs) const {
4697 // Some ideas:
4698 // - prune more:
4699 // - use more aggressive filtering
4700 // - sort the formula so that the most profitable solutions are found first
4701 // - sort the uses too
4702 // - search faster:
Dan Gohman8b0a4192010-03-01 17:49:51 +00004703 // - don't compute a cost, and then compare. compare while computing a cost
Dan Gohman45774ce2010-02-12 10:34:29 +00004704 // and bail early.
4705 // - track register sets with SmallBitVector
4706
4707 const LSRUse &LU = Uses[Workspace.size()];
4708
4709 // If this use references any register that's already a part of the
4710 // in-progress solution, consider it a requirement that a formula must
4711 // reference that register in order to be considered. This prunes out
4712 // unprofitable searching.
4713 SmallSetVector<const SCEV *, 4> ReqRegs;
Craig Topper46276792014-08-24 23:23:06 +00004714 for (const SCEV *S : CurRegs)
4715 if (LU.Regs.count(S))
4716 ReqRegs.insert(S);
Dan Gohman45774ce2010-02-12 10:34:29 +00004717
4718 SmallPtrSet<const SCEV *, 16> NewRegs;
4719 Cost NewCost;
Craig Topper77b99412015-05-23 08:01:41 +00004720 for (const Formula &F : LU.Formulae) {
Adam Nemetdeab6f92014-04-29 18:25:28 +00004721 // Ignore formulae which may not be ideal in terms of register reuse of
4722 // ReqRegs. The formula should use all required registers before
4723 // introducing new ones.
4724 int NumReqRegsToFind = std::min(F.getNumRegs(), ReqRegs.size());
Craig Topper77b99412015-05-23 08:01:41 +00004725 for (const SCEV *Reg : ReqRegs) {
Adam Nemetdeab6f92014-04-29 18:25:28 +00004726 if ((F.ScaledReg && F.ScaledReg == Reg) ||
David Majnemer0d955d02016-08-11 22:21:41 +00004727 is_contained(F.BaseRegs, Reg)) {
Adam Nemetdeab6f92014-04-29 18:25:28 +00004728 --NumReqRegsToFind;
4729 if (NumReqRegsToFind == 0)
4730 break;
Andrew Tricke3502cb2012-03-22 22:42:51 +00004731 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004732 }
Adam Nemetdeab6f92014-04-29 18:25:28 +00004733 if (NumReqRegsToFind != 0) {
Andrew Tricke3502cb2012-03-22 22:42:51 +00004734 // If none of the formulae satisfied the required registers, then we could
4735 // clear ReqRegs and try again. Currently, we simply give up in this case.
4736 continue;
4737 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004738
4739 // Evaluate the cost of the current formula. If it's already worse than
4740 // the current best, prune the search at that point.
4741 NewCost = CurCost;
4742 NewRegs = CurRegs;
Jonas Paulsson7a794222016-08-17 13:24:19 +00004743 NewCost.RateFormula(TTI, F, NewRegs, VisitedRegs, L, SE, DT, LU);
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00004744 if (NewCost.isLess(SolutionCost, TTI)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004745 Workspace.push_back(&F);
4746 if (Workspace.size() != Uses.size()) {
4747 SolveRecurse(Solution, SolutionCost, Workspace, NewCost,
4748 NewRegs, VisitedRegs);
4749 if (F.getNumRegs() == 1 && Workspace.size() == 1)
4750 VisitedRegs.insert(F.ScaledReg ? F.ScaledReg : F.BaseRegs[0]);
4751 } else {
4752 DEBUG(dbgs() << "New best at "; NewCost.print(dbgs());
Andrew Trick4dc3eff2012-01-09 18:58:16 +00004753 dbgs() << ".\n Regs:";
Craig Topper46276792014-08-24 23:23:06 +00004754 for (const SCEV *S : NewRegs)
4755 dbgs() << ' ' << *S;
Dan Gohman45774ce2010-02-12 10:34:29 +00004756 dbgs() << '\n');
4757
4758 SolutionCost = NewCost;
4759 Solution = Workspace;
4760 }
4761 Workspace.pop_back();
4762 }
Dan Gohman5b18f032010-02-13 02:06:02 +00004763 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004764}
4765
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004766/// Choose one formula from each use. Return the results in the given Solution
4767/// vector.
Dan Gohman45774ce2010-02-12 10:34:29 +00004768void LSRInstance::Solve(SmallVectorImpl<const Formula *> &Solution) const {
4769 SmallVector<const Formula *, 8> Workspace;
4770 Cost SolutionCost;
Tim Northoverbc6659c2014-01-22 13:27:00 +00004771 SolutionCost.Lose();
Dan Gohman45774ce2010-02-12 10:34:29 +00004772 Cost CurCost;
4773 SmallPtrSet<const SCEV *, 16> CurRegs;
4774 DenseSet<const SCEV *> VisitedRegs;
4775 Workspace.reserve(Uses.size());
4776
Dan Gohman8ec018c2010-05-20 20:00:41 +00004777 // SolveRecurse does all the work.
Dan Gohman45774ce2010-02-12 10:34:29 +00004778 SolveRecurse(Solution, SolutionCost, Workspace, CurCost,
4779 CurRegs, VisitedRegs);
Andrew Trick58124392011-09-27 00:44:14 +00004780 if (Solution.empty()) {
4781 DEBUG(dbgs() << "\nNo Satisfactory Solution\n");
4782 return;
4783 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004784
4785 // Ok, we've now made all our decisions.
4786 DEBUG(dbgs() << "\n"
4787 "The chosen solution requires "; SolutionCost.print(dbgs());
4788 dbgs() << ":\n";
4789 for (size_t i = 0, e = Uses.size(); i != e; ++i) {
4790 dbgs() << " ";
4791 Uses[i].print(dbgs());
4792 dbgs() << "\n"
4793 " ";
4794 Solution[i]->print(dbgs());
4795 dbgs() << '\n';
4796 });
Dan Gohman6295f2e2010-05-20 20:59:23 +00004797
4798 assert(Solution.size() == Uses.size() && "Malformed solution!");
Dan Gohman45774ce2010-02-12 10:34:29 +00004799}
4800
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004801/// Helper for AdjustInsertPositionForExpand. Climb up the dominator tree far as
4802/// we can go while still being dominated by the input positions. This helps
4803/// canonicalize the insert position, which encourages sharing.
Dan Gohman607e02b2010-04-09 22:07:05 +00004804BasicBlock::iterator
4805LSRInstance::HoistInsertPosition(BasicBlock::iterator IP,
4806 const SmallVectorImpl<Instruction *> &Inputs)
4807 const {
Geoff Berry43e51602016-06-06 19:10:46 +00004808 Instruction *Tentative = &*IP;
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00004809 while (true) {
Geoff Berry43e51602016-06-06 19:10:46 +00004810 bool AllDominate = true;
4811 Instruction *BetterPos = nullptr;
4812 // Don't bother attempting to insert before a catchswitch, their basic block
4813 // cannot have other non-PHI instructions.
4814 if (isa<CatchSwitchInst>(Tentative))
4815 return IP;
4816
4817 for (Instruction *Inst : Inputs) {
4818 if (Inst == Tentative || !DT.dominates(Inst, Tentative)) {
4819 AllDominate = false;
4820 break;
4821 }
4822 // Attempt to find an insert position in the middle of the block,
4823 // instead of at the end, so that it can be used for other expansions.
4824 if (Tentative->getParent() == Inst->getParent() &&
4825 (!BetterPos || !DT.dominates(Inst, BetterPos)))
4826 BetterPos = &*std::next(BasicBlock::iterator(Inst));
4827 }
4828 if (!AllDominate)
4829 break;
4830 if (BetterPos)
4831 IP = BetterPos->getIterator();
4832 else
4833 IP = Tentative->getIterator();
4834
Dan Gohman607e02b2010-04-09 22:07:05 +00004835 const Loop *IPLoop = LI.getLoopFor(IP->getParent());
4836 unsigned IPLoopDepth = IPLoop ? IPLoop->getLoopDepth() : 0;
4837
4838 BasicBlock *IDom;
Dan Gohman8ce95cc2010-05-20 20:00:25 +00004839 for (DomTreeNode *Rung = DT.getNode(IP->getParent()); ; ) {
Dan Gohman9b48b852010-05-20 22:46:54 +00004840 if (!Rung) return IP;
Dan Gohman8ce95cc2010-05-20 20:00:25 +00004841 Rung = Rung->getIDom();
4842 if (!Rung) return IP;
4843 IDom = Rung->getBlock();
Dan Gohman607e02b2010-04-09 22:07:05 +00004844
4845 // Don't climb into a loop though.
4846 const Loop *IDomLoop = LI.getLoopFor(IDom);
4847 unsigned IDomDepth = IDomLoop ? IDomLoop->getLoopDepth() : 0;
4848 if (IDomDepth <= IPLoopDepth &&
4849 (IDomDepth != IPLoopDepth || IDomLoop == IPLoop))
4850 break;
4851 }
4852
Geoff Berry43e51602016-06-06 19:10:46 +00004853 Tentative = IDom->getTerminator();
Dan Gohman607e02b2010-04-09 22:07:05 +00004854 }
4855
4856 return IP;
4857}
4858
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004859/// Determine an input position which will be dominated by the operands and
4860/// which will dominate the result.
Dan Gohmand2df6432010-04-09 02:00:38 +00004861BasicBlock::iterator
Andrew Trickc908b432012-01-20 07:41:13 +00004862LSRInstance::AdjustInsertPositionForExpand(BasicBlock::iterator LowestIP,
Dan Gohman607e02b2010-04-09 22:07:05 +00004863 const LSRFixup &LF,
Andrew Trickc908b432012-01-20 07:41:13 +00004864 const LSRUse &LU,
4865 SCEVExpander &Rewriter) const {
Dan Gohmand2df6432010-04-09 02:00:38 +00004866 // Collect some instructions which must be dominated by the
Dan Gohmand006ab92010-04-07 22:27:08 +00004867 // expanding replacement. These must be dominated by any operands that
Dan Gohman45774ce2010-02-12 10:34:29 +00004868 // will be required in the expansion.
4869 SmallVector<Instruction *, 4> Inputs;
4870 if (Instruction *I = dyn_cast<Instruction>(LF.OperandValToReplace))
4871 Inputs.push_back(I);
4872 if (LU.Kind == LSRUse::ICmpZero)
4873 if (Instruction *I =
4874 dyn_cast<Instruction>(cast<ICmpInst>(LF.UserInst)->getOperand(1)))
4875 Inputs.push_back(I);
Dan Gohmand006ab92010-04-07 22:27:08 +00004876 if (LF.PostIncLoops.count(L)) {
4877 if (LF.isUseFullyOutsideLoop(L))
Dan Gohman52f55632010-03-02 01:59:21 +00004878 Inputs.push_back(L->getLoopLatch()->getTerminator());
4879 else
4880 Inputs.push_back(IVIncInsertPos);
4881 }
Dan Gohman45065392010-04-08 05:57:57 +00004882 // The expansion must also be dominated by the increment positions of any
4883 // loops it for which it is using post-inc mode.
Craig Topper77b99412015-05-23 08:01:41 +00004884 for (const Loop *PIL : LF.PostIncLoops) {
Dan Gohman45065392010-04-08 05:57:57 +00004885 if (PIL == L) continue;
4886
Dan Gohman607e02b2010-04-09 22:07:05 +00004887 // Be dominated by the loop exit.
Dan Gohman45065392010-04-08 05:57:57 +00004888 SmallVector<BasicBlock *, 4> ExitingBlocks;
4889 PIL->getExitingBlocks(ExitingBlocks);
4890 if (!ExitingBlocks.empty()) {
4891 BasicBlock *BB = ExitingBlocks[0];
4892 for (unsigned i = 1, e = ExitingBlocks.size(); i != e; ++i)
4893 BB = DT.findNearestCommonDominator(BB, ExitingBlocks[i]);
4894 Inputs.push_back(BB->getTerminator());
4895 }
4896 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004897
David Majnemerba275f92015-08-19 19:54:02 +00004898 assert(!isa<PHINode>(LowestIP) && !LowestIP->isEHPad()
Andrew Trickc908b432012-01-20 07:41:13 +00004899 && !isa<DbgInfoIntrinsic>(LowestIP) &&
4900 "Insertion point must be a normal instruction");
4901
Dan Gohman45774ce2010-02-12 10:34:29 +00004902 // Then, climb up the immediate dominator tree as far as we can go while
4903 // still being dominated by the input positions.
Andrew Trickc908b432012-01-20 07:41:13 +00004904 BasicBlock::iterator IP = HoistInsertPosition(LowestIP, Inputs);
Dan Gohmand2df6432010-04-09 02:00:38 +00004905
4906 // Don't insert instructions before PHI nodes.
Dan Gohman45774ce2010-02-12 10:34:29 +00004907 while (isa<PHINode>(IP)) ++IP;
Dan Gohmand2df6432010-04-09 02:00:38 +00004908
Bill Wendling86c5cbe2011-08-24 21:06:46 +00004909 // Ignore landingpad instructions.
David Majnemere09d0352016-03-24 21:40:22 +00004910 while (IP->isEHPad()) ++IP;
Bill Wendling86c5cbe2011-08-24 21:06:46 +00004911
Dan Gohmand2df6432010-04-09 02:00:38 +00004912 // Ignore debug intrinsics.
Dan Gohmand42e09d2010-03-26 00:33:27 +00004913 while (isa<DbgInfoIntrinsic>(IP)) ++IP;
Dan Gohman45774ce2010-02-12 10:34:29 +00004914
Andrew Trickc908b432012-01-20 07:41:13 +00004915 // Set IP below instructions recently inserted by SCEVExpander. This keeps the
4916 // IP consistent across expansions and allows the previously inserted
4917 // instructions to be reused by subsequent expansion.
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00004918 while (Rewriter.isInsertedInstruction(&*IP) && IP != LowestIP)
4919 ++IP;
Andrew Trickc908b432012-01-20 07:41:13 +00004920
Dan Gohmand2df6432010-04-09 02:00:38 +00004921 return IP;
4922}
4923
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004924/// Emit instructions for the leading candidate expression for this LSRUse (this
4925/// is called "expanding").
Sanjoy Dase6bca0e2017-05-01 17:07:49 +00004926Value *LSRInstance::Expand(const LSRUse &LU, const LSRFixup &LF,
4927 const Formula &F, BasicBlock::iterator IP,
Dan Gohmand2df6432010-04-09 02:00:38 +00004928 SCEVExpander &Rewriter,
Sanjoy Dase6bca0e2017-05-01 17:07:49 +00004929 SmallVectorImpl<WeakTrackingVH> &DeadInsts) const {
Andrew Trick57243da2013-10-25 21:35:56 +00004930 if (LU.RigidFormula)
4931 return LF.OperandValToReplace;
Dan Gohmand2df6432010-04-09 02:00:38 +00004932
4933 // Determine an input position which will be dominated by the operands and
4934 // which will dominate the result.
Andrew Trickc908b432012-01-20 07:41:13 +00004935 IP = AdjustInsertPositionForExpand(IP, LF, LU, Rewriter);
Geoff Berryd0182802016-08-11 21:05:17 +00004936 Rewriter.setInsertPoint(&*IP);
Dan Gohmand2df6432010-04-09 02:00:38 +00004937
Dan Gohman45774ce2010-02-12 10:34:29 +00004938 // Inform the Rewriter if we have a post-increment use, so that it can
4939 // perform an advantageous expansion.
Dan Gohmand006ab92010-04-07 22:27:08 +00004940 Rewriter.setPostInc(LF.PostIncLoops);
Dan Gohman45774ce2010-02-12 10:34:29 +00004941
4942 // This is the type that the user actually needs.
Chris Lattner229907c2011-07-18 04:54:35 +00004943 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00004944 // This will be the type that we'll initially expand to.
Chris Lattner229907c2011-07-18 04:54:35 +00004945 Type *Ty = F.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00004946 if (!Ty)
4947 // No type known; just expand directly to the ultimate type.
4948 Ty = OpTy;
4949 else if (SE.getEffectiveSCEVType(Ty) == SE.getEffectiveSCEVType(OpTy))
4950 // Expand directly to the ultimate type if it's the right size.
4951 Ty = OpTy;
4952 // This is the type to do integer arithmetic in.
Chris Lattner229907c2011-07-18 04:54:35 +00004953 Type *IntTy = SE.getEffectiveSCEVType(Ty);
Dan Gohman45774ce2010-02-12 10:34:29 +00004954
4955 // Build up a list of operands to add together to form the full base.
4956 SmallVector<const SCEV *, 8> Ops;
4957
4958 // Expand the BaseRegs portion.
Craig Topper77b99412015-05-23 08:01:41 +00004959 for (const SCEV *Reg : F.BaseRegs) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004960 assert(!Reg->isZero() && "Zero allocated in a base register!");
4961
Dan Gohmand006ab92010-04-07 22:27:08 +00004962 // If we're expanding for a post-inc user, make the post-inc adjustment.
Sanjoy Dase3a15e82017-04-14 15:49:59 +00004963 Reg = denormalizeForPostIncUse(Reg, LF.PostIncLoops, SE);
Geoff Berryd0182802016-08-11 21:05:17 +00004964 Ops.push_back(SE.getUnknown(Rewriter.expandCodeFor(Reg, nullptr)));
Dan Gohman45774ce2010-02-12 10:34:29 +00004965 }
4966
4967 // Expand the ScaledReg portion.
Craig Topperf40110f2014-04-25 05:29:35 +00004968 Value *ICmpScaledV = nullptr;
Chandler Carruth6e479322013-01-07 15:04:40 +00004969 if (F.Scale != 0) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004970 const SCEV *ScaledS = F.ScaledReg;
4971
Dan Gohmand006ab92010-04-07 22:27:08 +00004972 // If we're expanding for a post-inc user, make the post-inc adjustment.
4973 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
Sanjoy Dase3a15e82017-04-14 15:49:59 +00004974 ScaledS = denormalizeForPostIncUse(ScaledS, Loops, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +00004975
4976 if (LU.Kind == LSRUse::ICmpZero) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004977 // Expand ScaleReg as if it was part of the base regs.
4978 if (F.Scale == 1)
Sanjoy Das215df9e2015-08-04 01:52:05 +00004979 Ops.push_back(
Geoff Berryd0182802016-08-11 21:05:17 +00004980 SE.getUnknown(Rewriter.expandCodeFor(ScaledS, nullptr)));
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004981 else {
4982 // An interesting way of "folding" with an icmp is to use a negated
4983 // scale, which we'll implement by inserting it into the other operand
4984 // of the icmp.
4985 assert(F.Scale == -1 &&
4986 "The only scale supported by ICmpZero uses is -1!");
Geoff Berryd0182802016-08-11 21:05:17 +00004987 ICmpScaledV = Rewriter.expandCodeFor(ScaledS, nullptr);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004988 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004989 } else {
4990 // Otherwise just expand the scaled register and an explicit scale,
4991 // which is expected to be matched as part of the address.
Andrew Trick8370c7c2012-06-15 20:07:29 +00004992
4993 // Flush the operand list to suppress SCEVExpander hoisting address modes.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004994 // Unless the addressing mode will not be folded.
4995 if (!Ops.empty() && LU.Kind == LSRUse::Address &&
4996 isAMCompletelyFolded(TTI, LU, F)) {
Mikael Holmen6d069762018-02-01 06:38:34 +00004997 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), nullptr);
Andrew Trick8370c7c2012-06-15 20:07:29 +00004998 Ops.clear();
4999 Ops.push_back(SE.getUnknown(FullV));
5000 }
Geoff Berryd0182802016-08-11 21:05:17 +00005001 ScaledS = SE.getUnknown(Rewriter.expandCodeFor(ScaledS, nullptr));
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00005002 if (F.Scale != 1)
5003 ScaledS =
5004 SE.getMulExpr(ScaledS, SE.getConstant(ScaledS->getType(), F.Scale));
Dan Gohman45774ce2010-02-12 10:34:29 +00005005 Ops.push_back(ScaledS);
5006 }
5007 }
5008
Dan Gohman29707de2010-03-03 05:29:13 +00005009 // Expand the GV portion.
Chandler Carruth6e479322013-01-07 15:04:40 +00005010 if (F.BaseGV) {
Dan Gohman29707de2010-03-03 05:29:13 +00005011 // Flush the operand list to suppress SCEVExpander hoisting.
Andrew Trick8370c7c2012-06-15 20:07:29 +00005012 if (!Ops.empty()) {
Geoff Berryd0182802016-08-11 21:05:17 +00005013 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty);
Andrew Trick8370c7c2012-06-15 20:07:29 +00005014 Ops.clear();
5015 Ops.push_back(SE.getUnknown(FullV));
5016 }
Chandler Carruth6e479322013-01-07 15:04:40 +00005017 Ops.push_back(SE.getUnknown(F.BaseGV));
Andrew Trick8370c7c2012-06-15 20:07:29 +00005018 }
5019
5020 // Flush the operand list to suppress SCEVExpander hoisting of both folded and
5021 // unfolded offsets. LSR assumes they both live next to their uses.
5022 if (!Ops.empty()) {
Geoff Berryd0182802016-08-11 21:05:17 +00005023 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty);
Dan Gohman29707de2010-03-03 05:29:13 +00005024 Ops.clear();
5025 Ops.push_back(SE.getUnknown(FullV));
5026 }
5027
5028 // Expand the immediate portion.
Chandler Carruth6e479322013-01-07 15:04:40 +00005029 int64_t Offset = (uint64_t)F.BaseOffset + LF.Offset;
Dan Gohman45774ce2010-02-12 10:34:29 +00005030 if (Offset != 0) {
5031 if (LU.Kind == LSRUse::ICmpZero) {
5032 // The other interesting way of "folding" with an ICmpZero is to use a
5033 // negated immediate.
5034 if (!ICmpScaledV)
Eli Friedmanb46345d2011-10-13 23:48:33 +00005035 ICmpScaledV = ConstantInt::get(IntTy, -(uint64_t)Offset);
Dan Gohman45774ce2010-02-12 10:34:29 +00005036 else {
5037 Ops.push_back(SE.getUnknown(ICmpScaledV));
5038 ICmpScaledV = ConstantInt::get(IntTy, Offset);
5039 }
5040 } else {
5041 // Just add the immediate values. These again are expected to be matched
5042 // as part of the address.
Dan Gohman29707de2010-03-03 05:29:13 +00005043 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy, Offset)));
Dan Gohman45774ce2010-02-12 10:34:29 +00005044 }
5045 }
5046
Dan Gohman6136e942011-05-03 00:46:49 +00005047 // Expand the unfolded offset portion.
5048 int64_t UnfoldedOffset = F.UnfoldedOffset;
5049 if (UnfoldedOffset != 0) {
5050 // Just add the immediate values.
5051 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy,
5052 UnfoldedOffset)));
5053 }
5054
Dan Gohman45774ce2010-02-12 10:34:29 +00005055 // Emit instructions summing all the operands.
5056 const SCEV *FullS = Ops.empty() ?
Dan Gohman1d2ded72010-05-03 22:09:21 +00005057 SE.getConstant(IntTy, 0) :
Dan Gohman45774ce2010-02-12 10:34:29 +00005058 SE.getAddExpr(Ops);
Geoff Berryd0182802016-08-11 21:05:17 +00005059 Value *FullV = Rewriter.expandCodeFor(FullS, Ty);
Dan Gohman45774ce2010-02-12 10:34:29 +00005060
5061 // We're done expanding now, so reset the rewriter.
Dan Gohmand006ab92010-04-07 22:27:08 +00005062 Rewriter.clearPostInc();
Dan Gohman45774ce2010-02-12 10:34:29 +00005063
5064 // An ICmpZero Formula represents an ICmp which we're handling as a
5065 // comparison against zero. Now that we've expanded an expression for that
5066 // form, update the ICmp's other operand.
5067 if (LU.Kind == LSRUse::ICmpZero) {
5068 ICmpInst *CI = cast<ICmpInst>(LF.UserInst);
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00005069 DeadInsts.emplace_back(CI->getOperand(1));
Chandler Carruth6e479322013-01-07 15:04:40 +00005070 assert(!F.BaseGV && "ICmp does not support folding a global value and "
Dan Gohman45774ce2010-02-12 10:34:29 +00005071 "a scale at the same time!");
Chandler Carruth6e479322013-01-07 15:04:40 +00005072 if (F.Scale == -1) {
Dan Gohman45774ce2010-02-12 10:34:29 +00005073 if (ICmpScaledV->getType() != OpTy) {
5074 Instruction *Cast =
5075 CastInst::Create(CastInst::getCastOpcode(ICmpScaledV, false,
5076 OpTy, false),
5077 ICmpScaledV, OpTy, "tmp", CI);
5078 ICmpScaledV = Cast;
5079 }
5080 CI->setOperand(1, ICmpScaledV);
5081 } else {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00005082 // A scale of 1 means that the scale has been expanded as part of the
5083 // base regs.
5084 assert((F.Scale == 0 || F.Scale == 1) &&
Dan Gohman45774ce2010-02-12 10:34:29 +00005085 "ICmp does not support folding a global value and "
5086 "a scale at the same time!");
5087 Constant *C = ConstantInt::getSigned(SE.getEffectiveSCEVType(OpTy),
5088 -(uint64_t)Offset);
5089 if (C->getType() != OpTy)
5090 C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
5091 OpTy, false),
5092 C, OpTy);
5093
5094 CI->setOperand(1, C);
5095 }
5096 }
5097
5098 return FullV;
5099}
5100
Sanjoy Das94c4aec2015-08-16 18:22:46 +00005101/// Helper for Rewrite. PHI nodes are special because the use of their operands
5102/// effectively happens in their predecessor blocks, so the expression may need
5103/// to be expanded in multiple places.
Sanjoy Dase6bca0e2017-05-01 17:07:49 +00005104void LSRInstance::RewriteForPHI(
5105 PHINode *PN, const LSRUse &LU, const LSRFixup &LF, const Formula &F,
5106 SCEVExpander &Rewriter, SmallVectorImpl<WeakTrackingVH> &DeadInsts) const {
Dan Gohman6deab962010-02-16 20:25:07 +00005107 DenseMap<BasicBlock *, Value *> Inserted;
5108 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
5109 if (PN->getIncomingValue(i) == LF.OperandValToReplace) {
5110 BasicBlock *BB = PN->getIncomingBlock(i);
5111
5112 // If this is a critical edge, split the edge so that we do not insert
5113 // the code on all predecessor/successor paths. We do this unless this
5114 // is the canonical backedge for this loop, which complicates post-inc
5115 // users.
5116 if (e != 1 && BB->getTerminator()->getNumSuccessors() > 1 &&
David Majnemerbba17392017-01-13 22:24:27 +00005117 !isa<IndirectBrInst>(BB->getTerminator()) &&
5118 !isa<CatchSwitchInst>(BB->getTerminator())) {
Bill Wendling07efd6f2011-08-25 01:08:34 +00005119 BasicBlock *Parent = PN->getParent();
5120 Loop *PNLoop = LI.getLoopFor(Parent);
5121 if (!PNLoop || Parent != PNLoop->getHeader()) {
Dan Gohmande7f6992011-02-08 00:55:13 +00005122 // Split the critical edge.
Craig Topperf40110f2014-04-25 05:29:35 +00005123 BasicBlock *NewBB = nullptr;
Bill Wendling3fb137f2011-08-25 05:55:40 +00005124 if (!Parent->isLandingPad()) {
Chandler Carruth37df2cf2015-01-19 12:09:11 +00005125 NewBB = SplitCriticalEdge(BB, Parent,
5126 CriticalEdgeSplittingOptions(&DT, &LI)
5127 .setMergeIdenticalEdges()
5128 .setDontDeleteUselessPHIs());
Bill Wendling3fb137f2011-08-25 05:55:40 +00005129 } else {
5130 SmallVector<BasicBlock*, 2> NewBBs;
Chandler Carruth96ada252015-07-22 09:52:54 +00005131 SplitLandingPadPredecessors(Parent, BB, "", "", NewBBs, &DT, &LI);
Bill Wendling3fb137f2011-08-25 05:55:40 +00005132 NewBB = NewBBs[0];
5133 }
Andrew Trick402edbb2012-09-18 17:51:33 +00005134 // If NewBB==NULL, then SplitCriticalEdge refused to split because all
5135 // phi predecessors are identical. The simple thing to do is skip
5136 // splitting in this case rather than complicate the API.
5137 if (NewBB) {
5138 // If PN is outside of the loop and BB is in the loop, we want to
5139 // move the block to be immediately before the PHI block, not
5140 // immediately after BB.
5141 if (L->contains(BB) && !L->contains(PN))
5142 NewBB->moveBefore(PN->getParent());
Dan Gohman6deab962010-02-16 20:25:07 +00005143
Andrew Trick402edbb2012-09-18 17:51:33 +00005144 // Splitting the edge can reduce the number of PHI entries we have.
5145 e = PN->getNumIncomingValues();
5146 BB = NewBB;
5147 i = PN->getBasicBlockIndex(BB);
5148 }
Dan Gohmande7f6992011-02-08 00:55:13 +00005149 }
Dan Gohman6deab962010-02-16 20:25:07 +00005150 }
5151
5152 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> Pair =
Craig Topperf40110f2014-04-25 05:29:35 +00005153 Inserted.insert(std::make_pair(BB, static_cast<Value *>(nullptr)));
Dan Gohman6deab962010-02-16 20:25:07 +00005154 if (!Pair.second)
5155 PN->setIncomingValue(i, Pair.first->second);
5156 else {
Jonas Paulsson7a794222016-08-17 13:24:19 +00005157 Value *FullV = Expand(LU, LF, F, BB->getTerminator()->getIterator(),
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00005158 Rewriter, DeadInsts);
Dan Gohman6deab962010-02-16 20:25:07 +00005159
5160 // If this is reuse-by-noop-cast, insert the noop cast.
Chris Lattner229907c2011-07-18 04:54:35 +00005161 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman6deab962010-02-16 20:25:07 +00005162 if (FullV->getType() != OpTy)
5163 FullV =
5164 CastInst::Create(CastInst::getCastOpcode(FullV, false,
5165 OpTy, false),
5166 FullV, LF.OperandValToReplace->getType(),
5167 "tmp", BB->getTerminator());
5168
5169 PN->setIncomingValue(i, FullV);
5170 Pair.first->second = FullV;
5171 }
5172 }
5173}
5174
Sanjoy Das94c4aec2015-08-16 18:22:46 +00005175/// Emit instructions for the leading candidate expression for this LSRUse (this
5176/// is called "expanding"), and update the UserInst to reference the newly
5177/// expanded value.
Sanjoy Dase6bca0e2017-05-01 17:07:49 +00005178void LSRInstance::Rewrite(const LSRUse &LU, const LSRFixup &LF,
5179 const Formula &F, SCEVExpander &Rewriter,
5180 SmallVectorImpl<WeakTrackingVH> &DeadInsts) const {
Dan Gohman45774ce2010-02-12 10:34:29 +00005181 // First, find an insertion point that dominates UserInst. For PHI nodes,
5182 // find the nearest block which dominates all the relevant uses.
5183 if (PHINode *PN = dyn_cast<PHINode>(LF.UserInst)) {
Jonas Paulsson7a794222016-08-17 13:24:19 +00005184 RewriteForPHI(PN, LU, LF, F, Rewriter, DeadInsts);
Dan Gohman45774ce2010-02-12 10:34:29 +00005185 } else {
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00005186 Value *FullV =
Jonas Paulsson7a794222016-08-17 13:24:19 +00005187 Expand(LU, LF, F, LF.UserInst->getIterator(), Rewriter, DeadInsts);
Dan Gohman45774ce2010-02-12 10:34:29 +00005188
5189 // If this is reuse-by-noop-cast, insert the noop cast.
Chris Lattner229907c2011-07-18 04:54:35 +00005190 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00005191 if (FullV->getType() != OpTy) {
5192 Instruction *Cast =
5193 CastInst::Create(CastInst::getCastOpcode(FullV, false, OpTy, false),
5194 FullV, OpTy, "tmp", LF.UserInst);
5195 FullV = Cast;
5196 }
5197
5198 // Update the user. ICmpZero is handled specially here (for now) because
5199 // Expand may have updated one of the operands of the icmp already, and
5200 // its new value may happen to be equal to LF.OperandValToReplace, in
5201 // which case doing replaceUsesOfWith leads to replacing both operands
5202 // with the same value. TODO: Reorganize this.
Jonas Paulsson7a794222016-08-17 13:24:19 +00005203 if (LU.Kind == LSRUse::ICmpZero)
Dan Gohman45774ce2010-02-12 10:34:29 +00005204 LF.UserInst->setOperand(0, FullV);
5205 else
5206 LF.UserInst->replaceUsesOfWith(LF.OperandValToReplace, FullV);
5207 }
5208
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00005209 DeadInsts.emplace_back(LF.OperandValToReplace);
Dan Gohman45774ce2010-02-12 10:34:29 +00005210}
5211
Sanjoy Das94c4aec2015-08-16 18:22:46 +00005212/// Rewrite all the fixup locations with new values, following the chosen
5213/// solution.
Justin Bogner843fb202015-12-15 19:40:57 +00005214void LSRInstance::ImplementSolution(
5215 const SmallVectorImpl<const Formula *> &Solution) {
Dan Gohman45774ce2010-02-12 10:34:29 +00005216 // Keep track of instructions we may have made dead, so that
5217 // we can remove them after we are done working.
Sanjoy Dase6bca0e2017-05-01 17:07:49 +00005218 SmallVector<WeakTrackingVH, 16> DeadInsts;
Dan Gohman45774ce2010-02-12 10:34:29 +00005219
Mehdi Aminia28d91d2015-03-10 02:37:25 +00005220 SCEVExpander Rewriter(SE, L->getHeader()->getModule()->getDataLayout(),
5221 "lsr");
Andrew Trick4dc3eff2012-01-09 18:58:16 +00005222#ifndef NDEBUG
5223 Rewriter.setDebugType(DEBUG_TYPE);
5224#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00005225 Rewriter.disableCanonicalMode();
Andrew Trick7fb669a2011-10-07 23:46:21 +00005226 Rewriter.enableLSRMode();
Dan Gohman45774ce2010-02-12 10:34:29 +00005227 Rewriter.setIVIncInsertPos(L, IVIncInsertPos);
5228
Andrew Trickd5d2db92012-01-10 01:45:08 +00005229 // Mark phi nodes that terminate chains so the expander tries to reuse them.
Craig Topper77b99412015-05-23 08:01:41 +00005230 for (const IVChain &Chain : IVChainVec) {
5231 if (PHINode *PN = dyn_cast<PHINode>(Chain.tailUserInst()))
Andrew Trickd5d2db92012-01-10 01:45:08 +00005232 Rewriter.setChainedPhi(PN);
5233 }
5234
Dan Gohman45774ce2010-02-12 10:34:29 +00005235 // Expand the new value definitions and update the users.
Jonas Paulsson7a794222016-08-17 13:24:19 +00005236 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx)
5237 for (const LSRFixup &Fixup : Uses[LUIdx].Fixups) {
5238 Rewrite(Uses[LUIdx], Fixup, *Solution[LUIdx], Rewriter, DeadInsts);
5239 Changed = true;
5240 }
Dan Gohman45774ce2010-02-12 10:34:29 +00005241
Craig Topper77b99412015-05-23 08:01:41 +00005242 for (const IVChain &Chain : IVChainVec) {
5243 GenerateIVChain(Chain, Rewriter, DeadInsts);
Andrew Trick248d4102012-01-09 21:18:52 +00005244 Changed = true;
5245 }
Dan Gohman45774ce2010-02-12 10:34:29 +00005246 // Clean up after ourselves. This must be done before deleting any
5247 // instructions.
5248 Rewriter.clear();
5249
5250 Changed |= DeleteTriviallyDeadInstructions(DeadInsts);
5251}
5252
Justin Bogner843fb202015-12-15 19:40:57 +00005253LSRInstance::LSRInstance(Loop *L, IVUsers &IU, ScalarEvolution &SE,
5254 DominatorTree &DT, LoopInfo &LI,
5255 const TargetTransformInfo &TTI)
Eugene Zelenko306d2992017-10-18 21:46:47 +00005256 : IU(IU), SE(SE), DT(DT), LI(LI), TTI(TTI), L(L) {
Dan Gohmana83ac2d2009-11-05 21:11:53 +00005257 // If LoopSimplify form is not available, stay out of trouble.
Andrew Trick732ad802012-01-07 03:16:50 +00005258 if (!L->isLoopSimplifyForm())
5259 return;
Dan Gohmana83ac2d2009-11-05 21:11:53 +00005260
Andrew Trick070e5402012-03-16 03:16:56 +00005261 // If there's no interesting work to be done, bail early.
5262 if (IU.empty()) return;
5263
Andrew Trick19f80c12012-04-18 04:00:10 +00005264 // If there's too much analysis to be done, bail early. We won't be able to
5265 // model the problem anyway.
5266 unsigned NumUsers = 0;
Craig Topper77b99412015-05-23 08:01:41 +00005267 for (const IVStrideUse &U : IU) {
Andrew Trick19f80c12012-04-18 04:00:10 +00005268 if (++NumUsers > MaxIVUsers) {
Craig Topper37d0d862015-05-23 08:20:33 +00005269 (void)U;
Craig Topper77b99412015-05-23 08:01:41 +00005270 DEBUG(dbgs() << "LSR skipping loop, too many IV Users in " << U << "\n");
Andrew Trick19f80c12012-04-18 04:00:10 +00005271 return;
5272 }
David Majnemera53b5bb2016-02-03 21:30:34 +00005273 // Bail out if we have a PHI on an EHPad that gets a value from a
5274 // CatchSwitchInst. Because the CatchSwitchInst cannot be split, there is
5275 // no good place to stick any instructions.
5276 if (auto *PN = dyn_cast<PHINode>(U.getUser())) {
5277 auto *FirstNonPHI = PN->getParent()->getFirstNonPHI();
5278 if (isa<FuncletPadInst>(FirstNonPHI) ||
5279 isa<CatchSwitchInst>(FirstNonPHI))
5280 for (BasicBlock *PredBB : PN->blocks())
5281 if (isa<CatchSwitchInst>(PredBB->getFirstNonPHI()))
5282 return;
5283 }
Andrew Trick19f80c12012-04-18 04:00:10 +00005284 }
5285
Andrew Trick070e5402012-03-16 03:16:56 +00005286#ifndef NDEBUG
Andrew Trick12728f02012-01-17 06:45:52 +00005287 // All dominating loops must have preheaders, or SCEVExpander may not be able
5288 // to materialize an AddRecExpr whose Start is an outer AddRecExpr.
5289 //
Andrew Trick070e5402012-03-16 03:16:56 +00005290 // IVUsers analysis should only create users that are dominated by simple loop
5291 // headers. Since this loop should dominate all of its users, its user list
5292 // should be empty if this loop itself is not within a simple loop nest.
Andrew Trick12728f02012-01-17 06:45:52 +00005293 for (DomTreeNode *Rung = DT.getNode(L->getLoopPreheader());
5294 Rung; Rung = Rung->getIDom()) {
5295 BasicBlock *BB = Rung->getBlock();
5296 const Loop *DomLoop = LI.getLoopFor(BB);
5297 if (DomLoop && DomLoop->getHeader() == BB) {
Andrew Trick070e5402012-03-16 03:16:56 +00005298 assert(DomLoop->getLoopPreheader() && "LSR needs a simplified loop nest");
Andrew Trick12728f02012-01-17 06:45:52 +00005299 }
Andrew Trick732ad802012-01-07 03:16:50 +00005300 }
Andrew Trick070e5402012-03-16 03:16:56 +00005301#endif // DEBUG
Dan Gohman85875f72009-03-09 20:34:59 +00005302
Dan Gohman45774ce2010-02-12 10:34:29 +00005303 DEBUG(dbgs() << "\nLSR on loop ";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00005304 L->getHeader()->printAsOperand(dbgs(), /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00005305 dbgs() << ":\n");
Dan Gohmane201f8f2009-03-09 20:46:50 +00005306
Dan Gohman927bcaa2010-05-20 20:33:18 +00005307 // First, perform some low-level loop optimizations.
Dan Gohman45774ce2010-02-12 10:34:29 +00005308 OptimizeShadowIV();
Dan Gohman4c4043c2010-05-20 20:05:31 +00005309 OptimizeLoopTermCond();
Evan Cheng78a4eb82009-05-11 22:33:01 +00005310
Andrew Trick8acb4342011-07-21 00:40:04 +00005311 // If loop preparation eliminates all interesting IV users, bail.
5312 if (IU.empty()) return;
5313
Andrew Trick168dfff2011-09-29 01:53:08 +00005314 // Skip nested loops until we can model them better with formulae.
Andrew Trickd97b83e2012-03-22 22:42:45 +00005315 if (!L->empty()) {
Andrew Trickbc6de902011-09-29 01:33:38 +00005316 DEBUG(dbgs() << "LSR skipping outer loop " << *L << "\n");
Andrew Trick168dfff2011-09-29 01:53:08 +00005317 return;
Andrew Trickbc6de902011-09-29 01:33:38 +00005318 }
5319
Dan Gohman927bcaa2010-05-20 20:33:18 +00005320 // Start collecting data and preparing for the solver.
Andrew Trick29fe5f02012-01-09 19:50:34 +00005321 CollectChains();
Dan Gohman45774ce2010-02-12 10:34:29 +00005322 CollectInterestingTypesAndFactors();
5323 CollectFixupsAndInitialFormulae();
5324 CollectLoopInvariantFixupsAndFormulae();
Chris Lattner9bfa6f82005-08-08 05:28:22 +00005325
Andrew Trick248d4102012-01-09 21:18:52 +00005326 assert(!Uses.empty() && "IVUsers reported at least one use");
Dan Gohman45774ce2010-02-12 10:34:29 +00005327 DEBUG(dbgs() << "LSR found " << Uses.size() << " uses:\n";
5328 print_uses(dbgs()));
Misha Brukmanb1c93172005-04-21 23:48:37 +00005329
Dan Gohman45774ce2010-02-12 10:34:29 +00005330 // Now use the reuse data to generate a bunch of interesting ways
5331 // to formulate the values needed for the uses.
5332 GenerateAllReuseFormulae();
Evan Cheng3df447d2006-03-16 21:53:05 +00005333
Dan Gohman45774ce2010-02-12 10:34:29 +00005334 FilterOutUndesirableDedicatedRegisters();
5335 NarrowSearchSpaceUsingHeuristics();
Dan Gohman92c36962009-12-18 00:06:20 +00005336
Dan Gohman45774ce2010-02-12 10:34:29 +00005337 SmallVector<const Formula *, 8> Solution;
5338 Solve(Solution);
Dan Gohman92c36962009-12-18 00:06:20 +00005339
Dan Gohman45774ce2010-02-12 10:34:29 +00005340 // Release memory that is no longer needed.
5341 Factors.clear();
5342 Types.clear();
5343 RegUses.clear();
5344
Andrew Trick58124392011-09-27 00:44:14 +00005345 if (Solution.empty())
5346 return;
5347
Dan Gohman45774ce2010-02-12 10:34:29 +00005348#ifndef NDEBUG
5349 // Formulae should be legal.
Craig Topper77b99412015-05-23 08:01:41 +00005350 for (const LSRUse &LU : Uses) {
5351 for (const Formula &F : LU.Formulae)
Chandler Carruth26c59fa2013-01-07 14:41:08 +00005352 assert(isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
Craig Topper77b99412015-05-23 08:01:41 +00005353 F) && "Illegal formula generated!");
Dan Gohman45774ce2010-02-12 10:34:29 +00005354 };
5355#endif
5356
5357 // Now that we've decided what we want, make it so.
Justin Bogner843fb202015-12-15 19:40:57 +00005358 ImplementSolution(Solution);
Dan Gohman45774ce2010-02-12 10:34:29 +00005359}
5360
Aaron Ballman615eb472017-10-15 14:32:27 +00005361#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +00005362void LSRInstance::print_factors_and_types(raw_ostream &OS) const {
5363 if (Factors.empty() && Types.empty()) return;
5364
5365 OS << "LSR has identified the following interesting factors and types: ";
5366 bool First = true;
5367
Craig Topper10949ae2015-05-23 08:45:10 +00005368 for (int64_t Factor : Factors) {
Dan Gohman45774ce2010-02-12 10:34:29 +00005369 if (!First) OS << ", ";
5370 First = false;
Craig Topper10949ae2015-05-23 08:45:10 +00005371 OS << '*' << Factor;
Evan Cheng87fe40b2009-11-10 21:14:05 +00005372 }
Dale Johannesen02cb2bf2009-05-11 17:15:42 +00005373
Craig Topper10949ae2015-05-23 08:45:10 +00005374 for (Type *Ty : Types) {
Dan Gohman45774ce2010-02-12 10:34:29 +00005375 if (!First) OS << ", ";
5376 First = false;
Craig Topper10949ae2015-05-23 08:45:10 +00005377 OS << '(' << *Ty << ')';
Dan Gohman45774ce2010-02-12 10:34:29 +00005378 }
5379 OS << '\n';
5380}
5381
5382void LSRInstance::print_fixups(raw_ostream &OS) const {
5383 OS << "LSR is examining the following fixup sites:\n";
Jonas Paulsson7a794222016-08-17 13:24:19 +00005384 for (const LSRUse &LU : Uses)
5385 for (const LSRFixup &LF : LU.Fixups) {
5386 dbgs() << " ";
5387 LF.print(OS);
5388 OS << '\n';
5389 }
Dan Gohman45774ce2010-02-12 10:34:29 +00005390}
5391
5392void LSRInstance::print_uses(raw_ostream &OS) const {
5393 OS << "LSR is examining the following uses:\n";
Craig Topper77b99412015-05-23 08:01:41 +00005394 for (const LSRUse &LU : Uses) {
Dan Gohman45774ce2010-02-12 10:34:29 +00005395 dbgs() << " ";
5396 LU.print(OS);
5397 OS << '\n';
Craig Topper77b99412015-05-23 08:01:41 +00005398 for (const Formula &F : LU.Formulae) {
Dan Gohman45774ce2010-02-12 10:34:29 +00005399 OS << " ";
Craig Topper77b99412015-05-23 08:01:41 +00005400 F.print(OS);
Dan Gohman45774ce2010-02-12 10:34:29 +00005401 OS << '\n';
5402 }
5403 }
5404}
5405
5406void LSRInstance::print(raw_ostream &OS) const {
5407 print_factors_and_types(OS);
5408 print_fixups(OS);
5409 print_uses(OS);
5410}
5411
Matthias Braun8c209aa2017-01-28 02:02:38 +00005412LLVM_DUMP_METHOD void LSRInstance::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +00005413 print(errs()); errs() << '\n';
5414}
Matthias Braun8c209aa2017-01-28 02:02:38 +00005415#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00005416
5417namespace {
5418
5419class LoopStrengthReduce : public LoopPass {
Dan Gohman45774ce2010-02-12 10:34:29 +00005420public:
5421 static char ID; // Pass ID, replacement for typeid
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00005422
Chandler Carruth26c59fa2013-01-07 14:41:08 +00005423 LoopStrengthReduce();
Dan Gohman45774ce2010-02-12 10:34:29 +00005424
5425private:
Craig Topper3e4c6972014-03-05 09:10:37 +00005426 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
5427 void getAnalysisUsage(AnalysisUsage &AU) const override;
Dan Gohman45774ce2010-02-12 10:34:29 +00005428};
Dan Gohman45774ce2010-02-12 10:34:29 +00005429
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00005430} // end anonymous namespace
Dan Gohman45774ce2010-02-12 10:34:29 +00005431
Chandler Carruth26c59fa2013-01-07 14:41:08 +00005432LoopStrengthReduce::LoopStrengthReduce() : LoopPass(ID) {
5433 initializeLoopStrengthReducePass(*PassRegistry::getPassRegistry());
5434}
Dan Gohman45774ce2010-02-12 10:34:29 +00005435
5436void LoopStrengthReduce::getAnalysisUsage(AnalysisUsage &AU) const {
5437 // We split critical edges, so we change the CFG. However, we do update
5438 // many analyses if they are around.
Eric Christopherda6bd452011-02-10 01:48:24 +00005439 AU.addPreservedID(LoopSimplifyID);
Dan Gohman45774ce2010-02-12 10:34:29 +00005440
Chandler Carruth4f8f3072015-01-17 14:16:18 +00005441 AU.addRequired<LoopInfoWrapperPass>();
5442 AU.addPreserved<LoopInfoWrapperPass>();
Eric Christopherda6bd452011-02-10 01:48:24 +00005443 AU.addRequiredID(LoopSimplifyID);
Chandler Carruth73523022014-01-13 13:07:17 +00005444 AU.addRequired<DominatorTreeWrapperPass>();
5445 AU.addPreserved<DominatorTreeWrapperPass>();
Chandler Carruth2f1fd162015-08-17 02:08:17 +00005446 AU.addRequired<ScalarEvolutionWrapperPass>();
5447 AU.addPreserved<ScalarEvolutionWrapperPass>();
Cameron Zwarich97dae4d2011-02-10 23:53:14 +00005448 // Requiring LoopSimplify a second time here prevents IVUsers from running
5449 // twice, since LoopSimplify was invalidated by running ScalarEvolution.
5450 AU.addRequiredID(LoopSimplifyID);
Dehao Chen1a444522016-07-16 22:51:33 +00005451 AU.addRequired<IVUsersWrapperPass>();
5452 AU.addPreserved<IVUsersWrapperPass>();
Chandler Carruth705b1852015-01-31 03:43:40 +00005453 AU.addRequired<TargetTransformInfoWrapperPass>();
Dan Gohman45774ce2010-02-12 10:34:29 +00005454}
5455
Dehao Chen6132ee82016-07-18 21:41:50 +00005456static bool ReduceLoopStrength(Loop *L, IVUsers &IU, ScalarEvolution &SE,
5457 DominatorTree &DT, LoopInfo &LI,
5458 const TargetTransformInfo &TTI) {
Dan Gohman45774ce2010-02-12 10:34:29 +00005459 bool Changed = false;
5460
5461 // Run the main LSR transformation.
Justin Bogner843fb202015-12-15 19:40:57 +00005462 Changed |= LSRInstance(L, IU, SE, DT, LI, TTI).getChanged();
Dan Gohman45774ce2010-02-12 10:34:29 +00005463
Andrew Trick2ec61a82012-01-07 01:36:44 +00005464 // Remove any extra phis created by processing inner loops.
Dan Gohmanb5358002010-01-05 16:31:45 +00005465 Changed |= DeleteDeadPHIs(L->getHeader());
Andrew Trickf950ce82013-01-06 05:59:39 +00005466 if (EnablePhiElim && L->isLoopSimplifyForm()) {
Sanjoy Dase6bca0e2017-05-01 17:07:49 +00005467 SmallVector<WeakTrackingVH, 16> DeadInsts;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00005468 const DataLayout &DL = L->getHeader()->getModule()->getDataLayout();
Dehao Chen6132ee82016-07-18 21:41:50 +00005469 SCEVExpander Rewriter(SE, DL, "lsr");
Andrew Trick2ec61a82012-01-07 01:36:44 +00005470#ifndef NDEBUG
5471 Rewriter.setDebugType(DEBUG_TYPE);
5472#endif
Dehao Chen6132ee82016-07-18 21:41:50 +00005473 unsigned numFolded = Rewriter.replaceCongruentIVs(L, &DT, DeadInsts, &TTI);
Andrew Trick2ec61a82012-01-07 01:36:44 +00005474 if (numFolded) {
5475 Changed = true;
5476 DeleteTriviallyDeadInstructions(DeadInsts);
5477 DeleteDeadPHIs(L->getHeader());
5478 }
5479 }
Evan Cheng03001cb2008-07-07 19:51:32 +00005480 return Changed;
Nate Begemanb18121e2004-10-18 21:08:22 +00005481}
Dehao Chen6132ee82016-07-18 21:41:50 +00005482
5483bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager & /*LPM*/) {
5484 if (skipLoop(L))
5485 return false;
5486
5487 auto &IU = getAnalysis<IVUsersWrapperPass>().getIU();
5488 auto &SE = getAnalysis<ScalarEvolutionWrapperPass>().getSE();
5489 auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
5490 auto &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
5491 const auto &TTI = getAnalysis<TargetTransformInfoWrapperPass>().getTTI(
5492 *L->getHeader()->getParent());
5493 return ReduceLoopStrength(L, IU, SE, DT, LI, TTI);
5494}
5495
Chandler Carruth410eaeb2017-01-11 06:23:21 +00005496PreservedAnalyses LoopStrengthReducePass::run(Loop &L, LoopAnalysisManager &AM,
5497 LoopStandardAnalysisResults &AR,
5498 LPMUpdater &) {
5499 if (!ReduceLoopStrength(&L, AM.getResult<IVUsersAnalysis>(L, AR), AR.SE,
5500 AR.DT, AR.LI, AR.TTI))
Dehao Chen6132ee82016-07-18 21:41:50 +00005501 return PreservedAnalyses::all();
5502
5503 return getLoopPassPreservedAnalyses();
5504}
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00005505
5506char LoopStrengthReduce::ID = 0;
Eugene Zelenko306d2992017-10-18 21:46:47 +00005507
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00005508INITIALIZE_PASS_BEGIN(LoopStrengthReduce, "loop-reduce",
5509 "Loop Strength Reduction", false, false)
5510INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
5511INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
5512INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass)
5513INITIALIZE_PASS_DEPENDENCY(IVUsersWrapperPass)
5514INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
5515INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
5516INITIALIZE_PASS_END(LoopStrengthReduce, "loop-reduce",
5517 "Loop Strength Reduction", false, false)
5518
5519Pass *llvm::createLoopStrengthReducePass() { return new LoopStrengthReduce(); }