1 //===- LoopStrengthReduce.cpp - Strength Reduce IVs in Loops --------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // 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 //
14 // This pass performs a strength reduction on array references inside loops that
15 // 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.
19 //
20 // Terminology note: this code has a lot of handling for "post-increment" or
21 // "post-inc" users. This is not talking about post-increment addressing modes;
22 // it is instead talking about code like this:
23 //
24 //   %i = phi [ 0, %entry ], [ %i.next, %latch ]
25 //   ...
26 //   %i.next = add %i, 1
27 //   %c = icmp eq %i.next, %n
28 //
29 // The SCEV for %i is {0,+,1}<%L>. The SCEV for %i.next is {1,+,1}<%L>, however
30 // it's useful to think about these as the same register, with some uses using
31 // the value of the register before the add and some using it after. In this
32 // example, the icmp is a post-increment user, since it uses %i.next, which is
33 // the value of the induction variable after the increment. The other common
34 // case of post-increment users is users outside the loop.
35 //
36 // TODO: More sophistication in the way Formulae are generated and filtered.
37 //
38 // TODO: Handle multiple loops at a time.
39 //
40 // TODO: Should the addressing mode BaseGV be changed to a ConstantExpr instead
41 //       of a GlobalValue?
42 //
43 // TODO: When truncation is free, truncate ICmp users' operands to make it a
44 //       smaller encoding (on x86 at least).
45 //
46 // TODO: When a negated register is used by an add (such as in a list of
47 //       multiple base registers, or as the increment expression in an addrec),
48 //       we may not actually need both reg and (-1 * reg) in registers; the
49 //       negation can be implemented by using a sub instead of an add. The
50 //       lack of support for taking this into consideration when making
51 //       register pressure decisions is partly worked around by the "Special"
52 //       use kind.
53 //
54 //===----------------------------------------------------------------------===//
55 
56 #include "llvm/Transforms/Scalar/LoopStrengthReduce.h"
57 #include "llvm/ADT/APInt.h"
58 #include "llvm/ADT/DenseMap.h"
59 #include "llvm/ADT/DenseSet.h"
60 #include "llvm/ADT/Hashing.h"
61 #include "llvm/ADT/PointerIntPair.h"
62 #include "llvm/ADT/STLExtras.h"
63 #include "llvm/ADT/SetVector.h"
64 #include "llvm/ADT/SmallBitVector.h"
65 #include "llvm/ADT/SmallPtrSet.h"
66 #include "llvm/ADT/SmallSet.h"
67 #include "llvm/ADT/SmallVector.h"
68 #include "llvm/Analysis/IVUsers.h"
69 #include "llvm/Analysis/LoopInfo.h"
70 #include "llvm/Analysis/LoopPass.h"
71 #include "llvm/Analysis/ScalarEvolution.h"
72 #include "llvm/Analysis/ScalarEvolutionExpander.h"
73 #include "llvm/Analysis/ScalarEvolutionExpressions.h"
74 #include "llvm/Analysis/ScalarEvolutionNormalization.h"
75 #include "llvm/Analysis/TargetTransformInfo.h"
76 #include "llvm/IR/BasicBlock.h"
77 #include "llvm/IR/Constant.h"
78 #include "llvm/IR/Constants.h"
79 #include "llvm/IR/DerivedTypes.h"
80 #include "llvm/IR/Dominators.h"
81 #include "llvm/IR/GlobalValue.h"
82 #include "llvm/IR/IRBuilder.h"
83 #include "llvm/IR/Instruction.h"
84 #include "llvm/IR/Instructions.h"
85 #include "llvm/IR/IntrinsicInst.h"
86 #include "llvm/IR/Module.h"
87 #include "llvm/IR/OperandTraits.h"
88 #include "llvm/IR/Operator.h"
89 #include "llvm/IR/Type.h"
90 #include "llvm/IR/Value.h"
91 #include "llvm/IR/ValueHandle.h"
92 #include "llvm/Pass.h"
93 #include "llvm/Support/Casting.h"
94 #include "llvm/Support/CommandLine.h"
95 #include "llvm/Support/Compiler.h"
96 #include "llvm/Support/Debug.h"
97 #include "llvm/Support/ErrorHandling.h"
98 #include "llvm/Support/MathExtras.h"
99 #include "llvm/Support/raw_ostream.h"
100 #include "llvm/Transforms/Scalar.h"
101 #include "llvm/Transforms/Scalar/LoopPassManager.h"
102 #include "llvm/Transforms/Utils/BasicBlockUtils.h"
103 #include "llvm/Transforms/Utils/Local.h"
104 #include <algorithm>
105 #include <cassert>
106 #include <cstddef>
107 #include <cstdint>
108 #include <cstdlib>
109 #include <iterator>
110 #include <map>
111 #include <tuple>
112 #include <utility>
113 
114 using namespace llvm;
115 
116 #define DEBUG_TYPE "loop-reduce"
117 
118 /// MaxIVUsers is an arbitrary threshold that provides an early opportunitiy for
119 /// bail out. This threshold is far beyond the number of users that LSR can
120 /// conceivably solve, so it should not affect generated code, but catches the
121 /// worst cases before LSR burns too much compile time and stack space.
122 static const unsigned MaxIVUsers = 200;
123 
124 // Temporary flag to cleanup congruent phis after LSR phi expansion.
125 // It's currently disabled until we can determine whether it's truly useful or
126 // not. The flag should be removed after the v3.0 release.
127 // This is now needed for ivchains.
128 static cl::opt<bool> EnablePhiElim(
129   "enable-lsr-phielim", cl::Hidden, cl::init(true),
130   cl::desc("Enable LSR phi elimination"));
131 
132 // The flag adds instruction count to solutions cost comparision.
133 static cl::opt<bool> InsnsCost(
134   "lsr-insns-cost", cl::Hidden, cl::init(false),
135   cl::desc("Add instruction count to a LSR cost model"));
136 
137 #ifndef NDEBUG
138 // Stress test IV chain generation.
139 static cl::opt<bool> StressIVChain(
140   "stress-ivchain", cl::Hidden, cl::init(false),
141   cl::desc("Stress test LSR IV chains"));
142 #else
143 static bool StressIVChain = false;
144 #endif
145 
146 namespace {
147 
148 struct MemAccessTy {
149   /// Used in situations where the accessed memory type is unknown.
150   static const unsigned UnknownAddressSpace = ~0u;
151 
152   Type *MemTy;
153   unsigned AddrSpace;
154 
155   MemAccessTy() : MemTy(nullptr), AddrSpace(UnknownAddressSpace) {}
156 
157   MemAccessTy(Type *Ty, unsigned AS) :
158     MemTy(Ty), AddrSpace(AS) {}
159 
160   bool operator==(MemAccessTy Other) const {
161     return MemTy == Other.MemTy && AddrSpace == Other.AddrSpace;
162   }
163 
164   bool operator!=(MemAccessTy Other) const { return !(*this == Other); }
165 
166   static MemAccessTy getUnknown(LLVMContext &Ctx,
167                                 unsigned AS = UnknownAddressSpace) {
168     return MemAccessTy(Type::getVoidTy(Ctx), AS);
169   }
170 };
171 
172 /// This class holds data which is used to order reuse candidates.
173 class RegSortData {
174 public:
175   /// This represents the set of LSRUse indices which reference
176   /// a particular register.
177   SmallBitVector UsedByIndices;
178 
179   void print(raw_ostream &OS) const;
180   void dump() const;
181 };
182 
183 } // end anonymous namespace
184 
185 void RegSortData::print(raw_ostream &OS) const {
186   OS << "[NumUses=" << UsedByIndices.count() << ']';
187 }
188 
189 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
190 LLVM_DUMP_METHOD void RegSortData::dump() const {
191   print(errs()); errs() << '\n';
192 }
193 #endif
194 
195 namespace {
196 
197 /// Map register candidates to information about how they are used.
198 class RegUseTracker {
199   typedef DenseMap<const SCEV *, RegSortData> RegUsesTy;
200 
201   RegUsesTy RegUsesMap;
202   SmallVector<const SCEV *, 16> RegSequence;
203 
204 public:
205   void countRegister(const SCEV *Reg, size_t LUIdx);
206   void dropRegister(const SCEV *Reg, size_t LUIdx);
207   void swapAndDropUse(size_t LUIdx, size_t LastLUIdx);
208 
209   bool isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const;
210 
211   const SmallBitVector &getUsedByIndices(const SCEV *Reg) const;
212 
213   void clear();
214 
215   typedef SmallVectorImpl<const SCEV *>::iterator iterator;
216   typedef SmallVectorImpl<const SCEV *>::const_iterator const_iterator;
217   iterator begin() { return RegSequence.begin(); }
218   iterator end()   { return RegSequence.end(); }
219   const_iterator begin() const { return RegSequence.begin(); }
220   const_iterator end() const   { return RegSequence.end(); }
221 };
222 
223 } // end anonymous namespace
224 
225 void
226 RegUseTracker::countRegister(const SCEV *Reg, size_t LUIdx) {
227   std::pair<RegUsesTy::iterator, bool> Pair =
228     RegUsesMap.insert(std::make_pair(Reg, RegSortData()));
229   RegSortData &RSD = Pair.first->second;
230   if (Pair.second)
231     RegSequence.push_back(Reg);
232   RSD.UsedByIndices.resize(std::max(RSD.UsedByIndices.size(), LUIdx + 1));
233   RSD.UsedByIndices.set(LUIdx);
234 }
235 
236 void
237 RegUseTracker::dropRegister(const SCEV *Reg, size_t LUIdx) {
238   RegUsesTy::iterator It = RegUsesMap.find(Reg);
239   assert(It != RegUsesMap.end());
240   RegSortData &RSD = It->second;
241   assert(RSD.UsedByIndices.size() > LUIdx);
242   RSD.UsedByIndices.reset(LUIdx);
243 }
244 
245 void
246 RegUseTracker::swapAndDropUse(size_t LUIdx, size_t LastLUIdx) {
247   assert(LUIdx <= LastLUIdx);
248 
249   // Update RegUses. The data structure is not optimized for this purpose;
250   // we must iterate through it and update each of the bit vectors.
251   for (auto &Pair : RegUsesMap) {
252     SmallBitVector &UsedByIndices = Pair.second.UsedByIndices;
253     if (LUIdx < UsedByIndices.size())
254       UsedByIndices[LUIdx] =
255         LastLUIdx < UsedByIndices.size() ? UsedByIndices[LastLUIdx] : false;
256     UsedByIndices.resize(std::min(UsedByIndices.size(), LastLUIdx));
257   }
258 }
259 
260 bool
261 RegUseTracker::isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const {
262   RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
263   if (I == RegUsesMap.end())
264     return false;
265   const SmallBitVector &UsedByIndices = I->second.UsedByIndices;
266   int i = UsedByIndices.find_first();
267   if (i == -1) return false;
268   if ((size_t)i != LUIdx) return true;
269   return UsedByIndices.find_next(i) != -1;
270 }
271 
272 const SmallBitVector &RegUseTracker::getUsedByIndices(const SCEV *Reg) const {
273   RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
274   assert(I != RegUsesMap.end() && "Unknown register!");
275   return I->second.UsedByIndices;
276 }
277 
278 void RegUseTracker::clear() {
279   RegUsesMap.clear();
280   RegSequence.clear();
281 }
282 
283 namespace {
284 
285 /// This class holds information that describes a formula for computing
286 /// satisfying a use. It may include broken-out immediates and scaled registers.
287 struct Formula {
288   /// Global base address used for complex addressing.
289   GlobalValue *BaseGV;
290 
291   /// Base offset for complex addressing.
292   int64_t BaseOffset;
293 
294   /// Whether any complex addressing has a base register.
295   bool HasBaseReg;
296 
297   /// The scale of any complex addressing.
298   int64_t Scale;
299 
300   /// The list of "base" registers for this use. When this is non-empty. The
301   /// canonical representation of a formula is
302   /// 1. BaseRegs.size > 1 implies ScaledReg != NULL and
303   /// 2. ScaledReg != NULL implies Scale != 1 || !BaseRegs.empty().
304   /// #1 enforces that the scaled register is always used when at least two
305   /// registers are needed by the formula: e.g., reg1 + reg2 is reg1 + 1 * reg2.
306   /// #2 enforces that 1 * reg is reg.
307   /// This invariant can be temporarly broken while building a formula.
308   /// However, every formula inserted into the LSRInstance must be in canonical
309   /// form.
310   SmallVector<const SCEV *, 4> BaseRegs;
311 
312   /// The 'scaled' register for this use. This should be non-null when Scale is
313   /// not zero.
314   const SCEV *ScaledReg;
315 
316   /// An additional constant offset which added near the use. This requires a
317   /// temporary register, but the offset itself can live in an add immediate
318   /// field rather than a register.
319   int64_t UnfoldedOffset;
320 
321   Formula()
322       : BaseGV(nullptr), BaseOffset(0), HasBaseReg(false), Scale(0),
323         ScaledReg(nullptr), UnfoldedOffset(0) {}
324 
325   void initialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE);
326 
327   bool isCanonical() const;
328 
329   void canonicalize();
330 
331   bool unscale();
332 
333   bool hasZeroEnd() const;
334 
335   size_t getNumRegs() const;
336   Type *getType() const;
337 
338   void deleteBaseReg(const SCEV *&S);
339 
340   bool referencesReg(const SCEV *S) const;
341   bool hasRegsUsedByUsesOtherThan(size_t LUIdx,
342                                   const RegUseTracker &RegUses) const;
343 
344   void print(raw_ostream &OS) const;
345   void dump() const;
346 };
347 
348 } // end anonymous namespace
349 
350 /// Recursion helper for initialMatch.
351 static void DoInitialMatch(const SCEV *S, Loop *L,
352                            SmallVectorImpl<const SCEV *> &Good,
353                            SmallVectorImpl<const SCEV *> &Bad,
354                            ScalarEvolution &SE) {
355   // Collect expressions which properly dominate the loop header.
356   if (SE.properlyDominates(S, L->getHeader())) {
357     Good.push_back(S);
358     return;
359   }
360 
361   // Look at add operands.
362   if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
363     for (const SCEV *S : Add->operands())
364       DoInitialMatch(S, L, Good, Bad, SE);
365     return;
366   }
367 
368   // Look at addrec operands.
369   if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S))
370     if (!AR->getStart()->isZero() && AR->isAffine()) {
371       DoInitialMatch(AR->getStart(), L, Good, Bad, SE);
372       DoInitialMatch(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
373                                       AR->getStepRecurrence(SE),
374                                       // FIXME: AR->getNoWrapFlags()
375                                       AR->getLoop(), SCEV::FlagAnyWrap),
376                      L, Good, Bad, SE);
377       return;
378     }
379 
380   // Handle a multiplication by -1 (negation) if it didn't fold.
381   if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S))
382     if (Mul->getOperand(0)->isAllOnesValue()) {
383       SmallVector<const SCEV *, 4> Ops(Mul->op_begin()+1, Mul->op_end());
384       const SCEV *NewMul = SE.getMulExpr(Ops);
385 
386       SmallVector<const SCEV *, 4> MyGood;
387       SmallVector<const SCEV *, 4> MyBad;
388       DoInitialMatch(NewMul, L, MyGood, MyBad, SE);
389       const SCEV *NegOne = SE.getSCEV(ConstantInt::getAllOnesValue(
390         SE.getEffectiveSCEVType(NewMul->getType())));
391       for (const SCEV *S : MyGood)
392         Good.push_back(SE.getMulExpr(NegOne, S));
393       for (const SCEV *S : MyBad)
394         Bad.push_back(SE.getMulExpr(NegOne, S));
395       return;
396     }
397 
398   // Ok, we can't do anything interesting. Just stuff the whole thing into a
399   // register and hope for the best.
400   Bad.push_back(S);
401 }
402 
403 /// Incorporate loop-variant parts of S into this Formula, attempting to keep
404 /// all loop-invariant and loop-computable values in a single base register.
405 void Formula::initialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE) {
406   SmallVector<const SCEV *, 4> Good;
407   SmallVector<const SCEV *, 4> Bad;
408   DoInitialMatch(S, L, Good, Bad, SE);
409   if (!Good.empty()) {
410     const SCEV *Sum = SE.getAddExpr(Good);
411     if (!Sum->isZero())
412       BaseRegs.push_back(Sum);
413     HasBaseReg = true;
414   }
415   if (!Bad.empty()) {
416     const SCEV *Sum = SE.getAddExpr(Bad);
417     if (!Sum->isZero())
418       BaseRegs.push_back(Sum);
419     HasBaseReg = true;
420   }
421   canonicalize();
422 }
423 
424 /// \brief Check whether or not this formula statisfies the canonical
425 /// representation.
426 /// \see Formula::BaseRegs.
427 bool Formula::isCanonical() const {
428   if (ScaledReg)
429     return Scale != 1 || !BaseRegs.empty();
430   return BaseRegs.size() <= 1;
431 }
432 
433 /// \brief Helper method to morph a formula into its canonical representation.
434 /// \see Formula::BaseRegs.
435 /// Every formula having more than one base register, must use the ScaledReg
436 /// field. Otherwise, we would have to do special cases everywhere in LSR
437 /// to treat reg1 + reg2 + ... the same way as reg1 + 1*reg2 + ...
438 /// On the other hand, 1*reg should be canonicalized into reg.
439 void Formula::canonicalize() {
440   if (isCanonical())
441     return;
442   // So far we did not need this case. This is easy to implement but it is
443   // useless to maintain dead code. Beside it could hurt compile time.
444   assert(!BaseRegs.empty() && "1*reg => reg, should not be needed.");
445   // Keep the invariant sum in BaseRegs and one of the variant sum in ScaledReg.
446   ScaledReg = BaseRegs.back();
447   BaseRegs.pop_back();
448   Scale = 1;
449   size_t BaseRegsSize = BaseRegs.size();
450   size_t Try = 0;
451   // If ScaledReg is an invariant, try to find a variant expression.
452   while (Try < BaseRegsSize && !isa<SCEVAddRecExpr>(ScaledReg))
453     std::swap(ScaledReg, BaseRegs[Try++]);
454 }
455 
456 /// \brief Get rid of the scale in the formula.
457 /// In other words, this method morphes reg1 + 1*reg2 into reg1 + reg2.
458 /// \return true if it was possible to get rid of the scale, false otherwise.
459 /// \note After this operation the formula may not be in the canonical form.
460 bool Formula::unscale() {
461   if (Scale != 1)
462     return false;
463   Scale = 0;
464   BaseRegs.push_back(ScaledReg);
465   ScaledReg = nullptr;
466   return true;
467 }
468 
469 bool Formula::hasZeroEnd() const {
470   if (UnfoldedOffset || BaseOffset)
471     return false;
472   if (BaseRegs.size() != 1 || ScaledReg)
473     return false;
474   return true;
475 }
476 
477 /// Return the total number of register operands used by this formula. This does
478 /// not include register uses implied by non-constant addrec strides.
479 size_t Formula::getNumRegs() const {
480   return !!ScaledReg + BaseRegs.size();
481 }
482 
483 /// Return the type of this formula, if it has one, or null otherwise. This type
484 /// is meaningless except for the bit size.
485 Type *Formula::getType() const {
486   return !BaseRegs.empty() ? BaseRegs.front()->getType() :
487          ScaledReg ? ScaledReg->getType() :
488          BaseGV ? BaseGV->getType() :
489          nullptr;
490 }
491 
492 /// Delete the given base reg from the BaseRegs list.
493 void Formula::deleteBaseReg(const SCEV *&S) {
494   if (&S != &BaseRegs.back())
495     std::swap(S, BaseRegs.back());
496   BaseRegs.pop_back();
497 }
498 
499 /// Test if this formula references the given register.
500 bool Formula::referencesReg(const SCEV *S) const {
501   return S == ScaledReg || is_contained(BaseRegs, S);
502 }
503 
504 /// Test whether this formula uses registers which are used by uses other than
505 /// the use with the given index.
506 bool Formula::hasRegsUsedByUsesOtherThan(size_t LUIdx,
507                                          const RegUseTracker &RegUses) const {
508   if (ScaledReg)
509     if (RegUses.isRegUsedByUsesOtherThan(ScaledReg, LUIdx))
510       return true;
511   for (const SCEV *BaseReg : BaseRegs)
512     if (RegUses.isRegUsedByUsesOtherThan(BaseReg, LUIdx))
513       return true;
514   return false;
515 }
516 
517 void Formula::print(raw_ostream &OS) const {
518   bool First = true;
519   if (BaseGV) {
520     if (!First) OS << " + "; else First = false;
521     BaseGV->printAsOperand(OS, /*PrintType=*/false);
522   }
523   if (BaseOffset != 0) {
524     if (!First) OS << " + "; else First = false;
525     OS << BaseOffset;
526   }
527   for (const SCEV *BaseReg : BaseRegs) {
528     if (!First) OS << " + "; else First = false;
529     OS << "reg(" << *BaseReg << ')';
530   }
531   if (HasBaseReg && BaseRegs.empty()) {
532     if (!First) OS << " + "; else First = false;
533     OS << "**error: HasBaseReg**";
534   } else if (!HasBaseReg && !BaseRegs.empty()) {
535     if (!First) OS << " + "; else First = false;
536     OS << "**error: !HasBaseReg**";
537   }
538   if (Scale != 0) {
539     if (!First) OS << " + "; else First = false;
540     OS << Scale << "*reg(";
541     if (ScaledReg)
542       OS << *ScaledReg;
543     else
544       OS << "<unknown>";
545     OS << ')';
546   }
547   if (UnfoldedOffset != 0) {
548     if (!First) OS << " + ";
549     OS << "imm(" << UnfoldedOffset << ')';
550   }
551 }
552 
553 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
554 LLVM_DUMP_METHOD void Formula::dump() const {
555   print(errs()); errs() << '\n';
556 }
557 #endif
558 
559 /// Return true if the given addrec can be sign-extended without changing its
560 /// value.
561 static bool isAddRecSExtable(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
562   Type *WideTy =
563     IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(AR->getType()) + 1);
564   return isa<SCEVAddRecExpr>(SE.getSignExtendExpr(AR, WideTy));
565 }
566 
567 /// Return true if the given add can be sign-extended without changing its
568 /// value.
569 static bool isAddSExtable(const SCEVAddExpr *A, ScalarEvolution &SE) {
570   Type *WideTy =
571     IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(A->getType()) + 1);
572   return isa<SCEVAddExpr>(SE.getSignExtendExpr(A, WideTy));
573 }
574 
575 /// Return true if the given mul can be sign-extended without changing its
576 /// value.
577 static bool isMulSExtable(const SCEVMulExpr *M, ScalarEvolution &SE) {
578   Type *WideTy =
579     IntegerType::get(SE.getContext(),
580                      SE.getTypeSizeInBits(M->getType()) * M->getNumOperands());
581   return isa<SCEVMulExpr>(SE.getSignExtendExpr(M, WideTy));
582 }
583 
584 /// Return an expression for LHS /s RHS, if it can be determined and if the
585 /// remainder is known to be zero, or null otherwise. If IgnoreSignificantBits
586 /// is true, expressions like (X * Y) /s Y are simplified to Y, ignoring that
587 /// the multiplication may overflow, which is useful when the result will be
588 /// used in a context where the most significant bits are ignored.
589 static const SCEV *getExactSDiv(const SCEV *LHS, const SCEV *RHS,
590                                 ScalarEvolution &SE,
591                                 bool IgnoreSignificantBits = false) {
592   // Handle the trivial case, which works for any SCEV type.
593   if (LHS == RHS)
594     return SE.getConstant(LHS->getType(), 1);
595 
596   // Handle a few RHS special cases.
597   const SCEVConstant *RC = dyn_cast<SCEVConstant>(RHS);
598   if (RC) {
599     const APInt &RA = RC->getAPInt();
600     // Handle x /s -1 as x * -1, to give ScalarEvolution a chance to do
601     // some folding.
602     if (RA.isAllOnesValue())
603       return SE.getMulExpr(LHS, RC);
604     // Handle x /s 1 as x.
605     if (RA == 1)
606       return LHS;
607   }
608 
609   // Check for a division of a constant by a constant.
610   if (const SCEVConstant *C = dyn_cast<SCEVConstant>(LHS)) {
611     if (!RC)
612       return nullptr;
613     const APInt &LA = C->getAPInt();
614     const APInt &RA = RC->getAPInt();
615     if (LA.srem(RA) != 0)
616       return nullptr;
617     return SE.getConstant(LA.sdiv(RA));
618   }
619 
620   // Distribute the sdiv over addrec operands, if the addrec doesn't overflow.
621   if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS)) {
622     if ((IgnoreSignificantBits || isAddRecSExtable(AR, SE)) && AR->isAffine()) {
623       const SCEV *Step = getExactSDiv(AR->getStepRecurrence(SE), RHS, SE,
624                                       IgnoreSignificantBits);
625       if (!Step) return nullptr;
626       const SCEV *Start = getExactSDiv(AR->getStart(), RHS, SE,
627                                        IgnoreSignificantBits);
628       if (!Start) return nullptr;
629       // FlagNW is independent of the start value, step direction, and is
630       // preserved with smaller magnitude steps.
631       // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
632       return SE.getAddRecExpr(Start, Step, AR->getLoop(), SCEV::FlagAnyWrap);
633     }
634     return nullptr;
635   }
636 
637   // Distribute the sdiv over add operands, if the add doesn't overflow.
638   if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) {
639     if (IgnoreSignificantBits || isAddSExtable(Add, SE)) {
640       SmallVector<const SCEV *, 8> Ops;
641       for (const SCEV *S : Add->operands()) {
642         const SCEV *Op = getExactSDiv(S, RHS, SE, IgnoreSignificantBits);
643         if (!Op) return nullptr;
644         Ops.push_back(Op);
645       }
646       return SE.getAddExpr(Ops);
647     }
648     return nullptr;
649   }
650 
651   // Check for a multiply operand that we can pull RHS out of.
652   if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(LHS)) {
653     if (IgnoreSignificantBits || isMulSExtable(Mul, SE)) {
654       SmallVector<const SCEV *, 4> Ops;
655       bool Found = false;
656       for (const SCEV *S : Mul->operands()) {
657         if (!Found)
658           if (const SCEV *Q = getExactSDiv(S, RHS, SE,
659                                            IgnoreSignificantBits)) {
660             S = Q;
661             Found = true;
662           }
663         Ops.push_back(S);
664       }
665       return Found ? SE.getMulExpr(Ops) : nullptr;
666     }
667     return nullptr;
668   }
669 
670   // Otherwise we don't know.
671   return nullptr;
672 }
673 
674 /// If S involves the addition of a constant integer value, return that integer
675 /// value, and mutate S to point to a new SCEV with that value excluded.
676 static int64_t ExtractImmediate(const SCEV *&S, ScalarEvolution &SE) {
677   if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) {
678     if (C->getAPInt().getMinSignedBits() <= 64) {
679       S = SE.getConstant(C->getType(), 0);
680       return C->getValue()->getSExtValue();
681     }
682   } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
683     SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
684     int64_t Result = ExtractImmediate(NewOps.front(), SE);
685     if (Result != 0)
686       S = SE.getAddExpr(NewOps);
687     return Result;
688   } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
689     SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
690     int64_t Result = ExtractImmediate(NewOps.front(), SE);
691     if (Result != 0)
692       S = SE.getAddRecExpr(NewOps, AR->getLoop(),
693                            // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
694                            SCEV::FlagAnyWrap);
695     return Result;
696   }
697   return 0;
698 }
699 
700 /// If S involves the addition of a GlobalValue address, return that symbol, and
701 /// mutate S to point to a new SCEV with that value excluded.
702 static GlobalValue *ExtractSymbol(const SCEV *&S, ScalarEvolution &SE) {
703   if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
704     if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue())) {
705       S = SE.getConstant(GV->getType(), 0);
706       return GV;
707     }
708   } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
709     SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
710     GlobalValue *Result = ExtractSymbol(NewOps.back(), SE);
711     if (Result)
712       S = SE.getAddExpr(NewOps);
713     return Result;
714   } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
715     SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
716     GlobalValue *Result = ExtractSymbol(NewOps.front(), SE);
717     if (Result)
718       S = SE.getAddRecExpr(NewOps, AR->getLoop(),
719                            // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
720                            SCEV::FlagAnyWrap);
721     return Result;
722   }
723   return nullptr;
724 }
725 
726 /// Returns true if the specified instruction is using the specified value as an
727 /// address.
728 static bool isAddressUse(Instruction *Inst, Value *OperandVal) {
729   bool isAddress = isa<LoadInst>(Inst);
730   if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
731     if (SI->getPointerOperand() == OperandVal)
732       isAddress = true;
733   } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
734     // Addressing modes can also be folded into prefetches and a variety
735     // of intrinsics.
736     switch (II->getIntrinsicID()) {
737       default: break;
738       case Intrinsic::prefetch:
739         if (II->getArgOperand(0) == OperandVal)
740           isAddress = true;
741         break;
742     }
743   } else if (AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(Inst)) {
744     if (RMW->getPointerOperand() == OperandVal)
745       isAddress = true;
746   } else if (AtomicCmpXchgInst *CmpX = dyn_cast<AtomicCmpXchgInst>(Inst)) {
747     if (CmpX->getPointerOperand() == OperandVal)
748       isAddress = true;
749   }
750   return isAddress;
751 }
752 
753 /// Return the type of the memory being accessed.
754 static MemAccessTy getAccessType(const Instruction *Inst) {
755   MemAccessTy AccessTy(Inst->getType(), MemAccessTy::UnknownAddressSpace);
756   if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
757     AccessTy.MemTy = SI->getOperand(0)->getType();
758     AccessTy.AddrSpace = SI->getPointerAddressSpace();
759   } else if (const LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
760     AccessTy.AddrSpace = LI->getPointerAddressSpace();
761   } else if (const AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(Inst)) {
762     AccessTy.AddrSpace = RMW->getPointerAddressSpace();
763   } else if (const AtomicCmpXchgInst *CmpX = dyn_cast<AtomicCmpXchgInst>(Inst)) {
764     AccessTy.AddrSpace = CmpX->getPointerAddressSpace();
765   }
766 
767   // All pointers have the same requirements, so canonicalize them to an
768   // arbitrary pointer type to minimize variation.
769   if (PointerType *PTy = dyn_cast<PointerType>(AccessTy.MemTy))
770     AccessTy.MemTy = PointerType::get(IntegerType::get(PTy->getContext(), 1),
771                                       PTy->getAddressSpace());
772 
773   return AccessTy;
774 }
775 
776 /// Return true if this AddRec is already a phi in its loop.
777 static bool isExistingPhi(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
778   for (BasicBlock::iterator I = AR->getLoop()->getHeader()->begin();
779        PHINode *PN = dyn_cast<PHINode>(I); ++I) {
780     if (SE.isSCEVable(PN->getType()) &&
781         (SE.getEffectiveSCEVType(PN->getType()) ==
782          SE.getEffectiveSCEVType(AR->getType())) &&
783         SE.getSCEV(PN) == AR)
784       return true;
785   }
786   return false;
787 }
788 
789 /// Check if expanding this expression is likely to incur significant cost. This
790 /// is tricky because SCEV doesn't track which expressions are actually computed
791 /// by the current IR.
792 ///
793 /// We currently allow expansion of IV increments that involve adds,
794 /// multiplication by constants, and AddRecs from existing phis.
795 ///
796 /// TODO: Allow UDivExpr if we can find an existing IV increment that is an
797 /// obvious multiple of the UDivExpr.
798 static bool isHighCostExpansion(const SCEV *S,
799                                 SmallPtrSetImpl<const SCEV*> &Processed,
800                                 ScalarEvolution &SE) {
801   // Zero/One operand expressions
802   switch (S->getSCEVType()) {
803   case scUnknown:
804   case scConstant:
805     return false;
806   case scTruncate:
807     return isHighCostExpansion(cast<SCEVTruncateExpr>(S)->getOperand(),
808                                Processed, SE);
809   case scZeroExtend:
810     return isHighCostExpansion(cast<SCEVZeroExtendExpr>(S)->getOperand(),
811                                Processed, SE);
812   case scSignExtend:
813     return isHighCostExpansion(cast<SCEVSignExtendExpr>(S)->getOperand(),
814                                Processed, SE);
815   }
816 
817   if (!Processed.insert(S).second)
818     return false;
819 
820   if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
821     for (const SCEV *S : Add->operands()) {
822       if (isHighCostExpansion(S, Processed, SE))
823         return true;
824     }
825     return false;
826   }
827 
828   if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
829     if (Mul->getNumOperands() == 2) {
830       // Multiplication by a constant is ok
831       if (isa<SCEVConstant>(Mul->getOperand(0)))
832         return isHighCostExpansion(Mul->getOperand(1), Processed, SE);
833 
834       // If we have the value of one operand, check if an existing
835       // multiplication already generates this expression.
836       if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(Mul->getOperand(1))) {
837         Value *UVal = U->getValue();
838         for (User *UR : UVal->users()) {
839           // If U is a constant, it may be used by a ConstantExpr.
840           Instruction *UI = dyn_cast<Instruction>(UR);
841           if (UI && UI->getOpcode() == Instruction::Mul &&
842               SE.isSCEVable(UI->getType())) {
843             return SE.getSCEV(UI) == Mul;
844           }
845         }
846       }
847     }
848   }
849 
850   if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
851     if (isExistingPhi(AR, SE))
852       return false;
853   }
854 
855   // Fow now, consider any other type of expression (div/mul/min/max) high cost.
856   return true;
857 }
858 
859 /// If any of the instructions is the specified set are trivially dead, delete
860 /// them and see if this makes any of their operands subsequently dead.
861 static bool
862 DeleteTriviallyDeadInstructions(SmallVectorImpl<WeakVH> &DeadInsts) {
863   bool Changed = false;
864 
865   while (!DeadInsts.empty()) {
866     Value *V = DeadInsts.pop_back_val();
867     Instruction *I = dyn_cast_or_null<Instruction>(V);
868 
869     if (!I || !isInstructionTriviallyDead(I))
870       continue;
871 
872     for (Use &O : I->operands())
873       if (Instruction *U = dyn_cast<Instruction>(O)) {
874         O = nullptr;
875         if (U->use_empty())
876           DeadInsts.emplace_back(U);
877       }
878 
879     I->eraseFromParent();
880     Changed = true;
881   }
882 
883   return Changed;
884 }
885 
886 namespace {
887 
888 class LSRUse;
889 
890 } // end anonymous namespace
891 
892 /// \brief Check if the addressing mode defined by \p F is completely
893 /// folded in \p LU at isel time.
894 /// This includes address-mode folding and special icmp tricks.
895 /// This function returns true if \p LU can accommodate what \p F
896 /// defines and up to 1 base + 1 scaled + offset.
897 /// In other words, if \p F has several base registers, this function may
898 /// still return true. Therefore, users still need to account for
899 /// additional base registers and/or unfolded offsets to derive an
900 /// accurate cost model.
901 static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
902                                  const LSRUse &LU, const Formula &F);
903 // Get the cost of the scaling factor used in F for LU.
904 static unsigned getScalingFactorCost(const TargetTransformInfo &TTI,
905                                      const LSRUse &LU, const Formula &F);
906 
907 namespace {
908 
909 /// This class is used to measure and compare candidate formulae.
910 class Cost {
911   /// TODO: Some of these could be merged. Also, a lexical ordering
912   /// isn't always optimal.
913   unsigned Insns;
914   unsigned NumRegs;
915   unsigned AddRecCost;
916   unsigned NumIVMuls;
917   unsigned NumBaseAdds;
918   unsigned ImmCost;
919   unsigned SetupCost;
920   unsigned ScaleCost;
921 
922 public:
923   Cost()
924     : Insns(0), NumRegs(0), AddRecCost(0), NumIVMuls(0), NumBaseAdds(0),
925       ImmCost(0), SetupCost(0), ScaleCost(0) {}
926 
927   bool operator<(const Cost &Other) const;
928 
929   void Lose();
930 
931 #ifndef NDEBUG
932   // Once any of the metrics loses, they must all remain losers.
933   bool isValid() {
934     return ((Insns | NumRegs | AddRecCost | NumIVMuls | NumBaseAdds
935              | ImmCost | SetupCost | ScaleCost) != ~0u)
936       || ((Insns & NumRegs & AddRecCost & NumIVMuls & NumBaseAdds
937            & ImmCost & SetupCost & ScaleCost) == ~0u);
938   }
939 #endif
940 
941   bool isLoser() {
942     assert(isValid() && "invalid cost");
943     return NumRegs == ~0u;
944   }
945 
946   void RateFormula(const TargetTransformInfo &TTI,
947                    const Formula &F,
948                    SmallPtrSetImpl<const SCEV *> &Regs,
949                    const DenseSet<const SCEV *> &VisitedRegs,
950                    const Loop *L,
951                    ScalarEvolution &SE, DominatorTree &DT,
952                    const LSRUse &LU,
953                    SmallPtrSetImpl<const SCEV *> *LoserRegs = nullptr);
954 
955   void print(raw_ostream &OS) const;
956   void dump() const;
957 
958 private:
959   void RateRegister(const SCEV *Reg,
960                     SmallPtrSetImpl<const SCEV *> &Regs,
961                     const Loop *L,
962                     ScalarEvolution &SE, DominatorTree &DT);
963   void RatePrimaryRegister(const SCEV *Reg,
964                            SmallPtrSetImpl<const SCEV *> &Regs,
965                            const Loop *L,
966                            ScalarEvolution &SE, DominatorTree &DT,
967                            SmallPtrSetImpl<const SCEV *> *LoserRegs);
968 };
969 
970 /// An operand value in an instruction which is to be replaced with some
971 /// equivalent, possibly strength-reduced, replacement.
972 struct LSRFixup {
973   /// The instruction which will be updated.
974   Instruction *UserInst;
975 
976   /// The operand of the instruction which will be replaced. The operand may be
977   /// used more than once; every instance will be replaced.
978   Value *OperandValToReplace;
979 
980   /// If this user is to use the post-incremented value of an induction
981   /// variable, this variable is non-null and holds the loop associated with the
982   /// induction variable.
983   PostIncLoopSet PostIncLoops;
984 
985   /// A constant offset to be added to the LSRUse expression.  This allows
986   /// multiple fixups to share the same LSRUse with different offsets, for
987   /// example in an unrolled loop.
988   int64_t Offset;
989 
990   bool isUseFullyOutsideLoop(const Loop *L) const;
991 
992   LSRFixup();
993 
994   void print(raw_ostream &OS) const;
995   void dump() const;
996 };
997 
998 /// A DenseMapInfo implementation for holding DenseMaps and DenseSets of sorted
999 /// SmallVectors of const SCEV*.
1000 struct UniquifierDenseMapInfo {
1001   static SmallVector<const SCEV *, 4> getEmptyKey() {
1002     SmallVector<const SCEV *, 4>  V;
1003     V.push_back(reinterpret_cast<const SCEV *>(-1));
1004     return V;
1005   }
1006 
1007   static SmallVector<const SCEV *, 4> getTombstoneKey() {
1008     SmallVector<const SCEV *, 4> V;
1009     V.push_back(reinterpret_cast<const SCEV *>(-2));
1010     return V;
1011   }
1012 
1013   static unsigned getHashValue(const SmallVector<const SCEV *, 4> &V) {
1014     return static_cast<unsigned>(hash_combine_range(V.begin(), V.end()));
1015   }
1016 
1017   static bool isEqual(const SmallVector<const SCEV *, 4> &LHS,
1018                       const SmallVector<const SCEV *, 4> &RHS) {
1019     return LHS == RHS;
1020   }
1021 };
1022 
1023 /// This class holds the state that LSR keeps for each use in IVUsers, as well
1024 /// as uses invented by LSR itself. It includes information about what kinds of
1025 /// things can be folded into the user, information about the user itself, and
1026 /// information about how the use may be satisfied.  TODO: Represent multiple
1027 /// users of the same expression in common?
1028 class LSRUse {
1029   DenseSet<SmallVector<const SCEV *, 4>, UniquifierDenseMapInfo> Uniquifier;
1030 
1031 public:
1032   /// An enum for a kind of use, indicating what types of scaled and immediate
1033   /// operands it might support.
1034   enum KindType {
1035     Basic,   ///< A normal use, with no folding.
1036     Special, ///< A special case of basic, allowing -1 scales.
1037     Address, ///< An address use; folding according to TargetLowering
1038     ICmpZero ///< An equality icmp with both operands folded into one.
1039     // TODO: Add a generic icmp too?
1040   };
1041 
1042   typedef PointerIntPair<const SCEV *, 2, KindType> SCEVUseKindPair;
1043 
1044   KindType Kind;
1045   MemAccessTy AccessTy;
1046 
1047   /// The list of operands which are to be replaced.
1048   SmallVector<LSRFixup, 8> Fixups;
1049 
1050   /// Keep track of the min and max offsets of the fixups.
1051   int64_t MinOffset;
1052   int64_t MaxOffset;
1053 
1054   /// This records whether all of the fixups using this LSRUse are outside of
1055   /// the loop, in which case some special-case heuristics may be used.
1056   bool AllFixupsOutsideLoop;
1057 
1058   /// RigidFormula is set to true to guarantee that this use will be associated
1059   /// with a single formula--the one that initially matched. Some SCEV
1060   /// expressions cannot be expanded. This allows LSR to consider the registers
1061   /// used by those expressions without the need to expand them later after
1062   /// changing the formula.
1063   bool RigidFormula;
1064 
1065   /// This records the widest use type for any fixup using this
1066   /// LSRUse. FindUseWithSimilarFormula can't consider uses with different max
1067   /// fixup widths to be equivalent, because the narrower one may be relying on
1068   /// the implicit truncation to truncate away bogus bits.
1069   Type *WidestFixupType;
1070 
1071   /// A list of ways to build a value that can satisfy this user.  After the
1072   /// list is populated, one of these is selected heuristically and used to
1073   /// formulate a replacement for OperandValToReplace in UserInst.
1074   SmallVector<Formula, 12> Formulae;
1075 
1076   /// The set of register candidates used by all formulae in this LSRUse.
1077   SmallPtrSet<const SCEV *, 4> Regs;
1078 
1079   LSRUse(KindType K, MemAccessTy AT)
1080       : Kind(K), AccessTy(AT), MinOffset(INT64_MAX), MaxOffset(INT64_MIN),
1081         AllFixupsOutsideLoop(true), RigidFormula(false),
1082         WidestFixupType(nullptr) {}
1083 
1084   LSRFixup &getNewFixup() {
1085     Fixups.push_back(LSRFixup());
1086     return Fixups.back();
1087   }
1088 
1089   void pushFixup(LSRFixup &f) {
1090     Fixups.push_back(f);
1091     if (f.Offset > MaxOffset)
1092       MaxOffset = f.Offset;
1093     if (f.Offset < MinOffset)
1094       MinOffset = f.Offset;
1095   }
1096 
1097   bool HasFormulaWithSameRegs(const Formula &F) const;
1098   bool InsertFormula(const Formula &F);
1099   void DeleteFormula(Formula &F);
1100   void RecomputeRegs(size_t LUIdx, RegUseTracker &Reguses);
1101 
1102   void print(raw_ostream &OS) const;
1103   void dump() const;
1104 };
1105 
1106 } // end anonymous namespace
1107 
1108 /// Tally up interesting quantities from the given register.
1109 void Cost::RateRegister(const SCEV *Reg,
1110                         SmallPtrSetImpl<const SCEV *> &Regs,
1111                         const Loop *L,
1112                         ScalarEvolution &SE, DominatorTree &DT) {
1113   if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Reg)) {
1114     // If this is an addrec for another loop, it should be an invariant
1115     // with respect to L since L is the innermost loop (at least
1116     // for now LSR only handles innermost loops).
1117     if (AR->getLoop() != L) {
1118       // If the AddRec exists, consider it's register free and leave it alone.
1119       if (isExistingPhi(AR, SE))
1120         return;
1121 
1122       // Otherwise, it will be an invariant with respect to Loop L.
1123       ++NumRegs;
1124       return;
1125     }
1126     AddRecCost += 1; /// TODO: This should be a function of the stride.
1127 
1128     // Add the step value register, if it needs one.
1129     // TODO: The non-affine case isn't precisely modeled here.
1130     if (!AR->isAffine() || !isa<SCEVConstant>(AR->getOperand(1))) {
1131       if (!Regs.count(AR->getOperand(1))) {
1132         RateRegister(AR->getOperand(1), Regs, L, SE, DT);
1133         if (isLoser())
1134           return;
1135       }
1136     }
1137   }
1138   ++NumRegs;
1139 
1140   // Rough heuristic; favor registers which don't require extra setup
1141   // instructions in the preheader.
1142   if (!isa<SCEVUnknown>(Reg) &&
1143       !isa<SCEVConstant>(Reg) &&
1144       !(isa<SCEVAddRecExpr>(Reg) &&
1145         (isa<SCEVUnknown>(cast<SCEVAddRecExpr>(Reg)->getStart()) ||
1146          isa<SCEVConstant>(cast<SCEVAddRecExpr>(Reg)->getStart()))))
1147     ++SetupCost;
1148 
1149   NumIVMuls += isa<SCEVMulExpr>(Reg) &&
1150                SE.hasComputableLoopEvolution(Reg, L);
1151 }
1152 
1153 /// Record this register in the set. If we haven't seen it before, rate
1154 /// it. Optional LoserRegs provides a way to declare any formula that refers to
1155 /// one of those regs an instant loser.
1156 void Cost::RatePrimaryRegister(const SCEV *Reg,
1157                                SmallPtrSetImpl<const SCEV *> &Regs,
1158                                const Loop *L,
1159                                ScalarEvolution &SE, DominatorTree &DT,
1160                                SmallPtrSetImpl<const SCEV *> *LoserRegs) {
1161   if (LoserRegs && LoserRegs->count(Reg)) {
1162     Lose();
1163     return;
1164   }
1165   if (Regs.insert(Reg).second) {
1166     RateRegister(Reg, Regs, L, SE, DT);
1167     if (LoserRegs && isLoser())
1168       LoserRegs->insert(Reg);
1169   }
1170 }
1171 
1172 void Cost::RateFormula(const TargetTransformInfo &TTI,
1173                        const Formula &F,
1174                        SmallPtrSetImpl<const SCEV *> &Regs,
1175                        const DenseSet<const SCEV *> &VisitedRegs,
1176                        const Loop *L,
1177                        ScalarEvolution &SE, DominatorTree &DT,
1178                        const LSRUse &LU,
1179                        SmallPtrSetImpl<const SCEV *> *LoserRegs) {
1180   assert(F.isCanonical() && "Cost is accurate only for canonical formula");
1181   // Tally up the registers.
1182   unsigned PrevAddRecCost = AddRecCost;
1183   unsigned PrevNumRegs = NumRegs;
1184   unsigned PrevNumBaseAdds = NumBaseAdds;
1185   if (const SCEV *ScaledReg = F.ScaledReg) {
1186     if (VisitedRegs.count(ScaledReg)) {
1187       Lose();
1188       return;
1189     }
1190     RatePrimaryRegister(ScaledReg, Regs, L, SE, DT, LoserRegs);
1191     if (isLoser())
1192       return;
1193   }
1194   for (const SCEV *BaseReg : F.BaseRegs) {
1195     if (VisitedRegs.count(BaseReg)) {
1196       Lose();
1197       return;
1198     }
1199     RatePrimaryRegister(BaseReg, Regs, L, SE, DT, LoserRegs);
1200     if (isLoser())
1201       return;
1202   }
1203 
1204   // Treat every new register that exceeds TTI.getNumberOfRegisters() - 1 as
1205   // additional instruction (at least fill).
1206   unsigned TTIRegNum = TTI.getNumberOfRegisters(false) - 1;
1207   if (NumRegs > TTIRegNum) {
1208     // Cost already exceeded TTIRegNum, then only newly added register can add
1209     // new instructions.
1210     if (PrevNumRegs > TTIRegNum)
1211       Insns += (NumRegs - PrevNumRegs);
1212     else
1213       Insns += (NumRegs - TTIRegNum);
1214   }
1215 
1216   // Determine how many (unfolded) adds we'll need inside the loop.
1217   size_t NumBaseParts = F.getNumRegs();
1218   if (NumBaseParts > 1)
1219     // Do not count the base and a possible second register if the target
1220     // allows to fold 2 registers.
1221     NumBaseAdds +=
1222         NumBaseParts - (1 + (F.Scale && isAMCompletelyFolded(TTI, LU, F)));
1223   NumBaseAdds += (F.UnfoldedOffset != 0);
1224 
1225   // Accumulate non-free scaling amounts.
1226   ScaleCost += getScalingFactorCost(TTI, LU, F);
1227 
1228   // Tally up the non-zero immediates.
1229   for (const LSRFixup &Fixup : LU.Fixups) {
1230     int64_t O = Fixup.Offset;
1231     int64_t Offset = (uint64_t)O + F.BaseOffset;
1232     if (F.BaseGV)
1233       ImmCost += 64; // Handle symbolic values conservatively.
1234                      // TODO: This should probably be the pointer size.
1235     else if (Offset != 0)
1236       ImmCost += APInt(64, Offset, true).getMinSignedBits();
1237 
1238     // Check with target if this offset with this instruction is
1239     // specifically not supported.
1240     if ((isa<LoadInst>(Fixup.UserInst) || isa<StoreInst>(Fixup.UserInst)) &&
1241         !TTI.isFoldableMemAccessOffset(Fixup.UserInst, Offset))
1242       NumBaseAdds++;
1243   }
1244 
1245   // If ICmpZero formula ends with not 0, it could not be replaced by
1246   // just add or sub. We'll need to compare final result of AddRec.
1247   // That means we'll need an additional instruction.
1248   // For -10 + {0, +, 1}:
1249   // i = i + 1;
1250   // cmp i, 10
1251   //
1252   // For {-10, +, 1}:
1253   // i = i + 1;
1254   if (LU.Kind == LSRUse::ICmpZero && !F.hasZeroEnd())
1255     Insns++;
1256   // Each new AddRec adds 1 instruction to calculation.
1257   Insns += (AddRecCost - PrevAddRecCost);
1258 
1259   // BaseAdds adds instructions for unfolded registers.
1260   if (LU.Kind != LSRUse::ICmpZero)
1261     Insns += NumBaseAdds - PrevNumBaseAdds;
1262   assert(isValid() && "invalid cost");
1263 }
1264 
1265 /// Set this cost to a losing value.
1266 void Cost::Lose() {
1267   Insns = ~0u;
1268   NumRegs = ~0u;
1269   AddRecCost = ~0u;
1270   NumIVMuls = ~0u;
1271   NumBaseAdds = ~0u;
1272   ImmCost = ~0u;
1273   SetupCost = ~0u;
1274   ScaleCost = ~0u;
1275 }
1276 
1277 /// Choose the lower cost.
1278 bool Cost::operator<(const Cost &Other) const {
1279   if (InsnsCost && Insns != Other.Insns)
1280     return Insns < Other.Insns;
1281   return std::tie(NumRegs, AddRecCost, NumIVMuls, NumBaseAdds, ScaleCost,
1282                   ImmCost, SetupCost) <
1283          std::tie(Other.NumRegs, Other.AddRecCost, Other.NumIVMuls,
1284                   Other.NumBaseAdds, Other.ScaleCost, Other.ImmCost,
1285                   Other.SetupCost);
1286 }
1287 
1288 void Cost::print(raw_ostream &OS) const {
1289   OS << Insns << " instruction" << (Insns == 1 ? " " : "s ");
1290   OS << NumRegs << " reg" << (NumRegs == 1 ? "" : "s");
1291   if (AddRecCost != 0)
1292     OS << ", with addrec cost " << AddRecCost;
1293   if (NumIVMuls != 0)
1294     OS << ", plus " << NumIVMuls << " IV mul" << (NumIVMuls == 1 ? "" : "s");
1295   if (NumBaseAdds != 0)
1296     OS << ", plus " << NumBaseAdds << " base add"
1297        << (NumBaseAdds == 1 ? "" : "s");
1298   if (ScaleCost != 0)
1299     OS << ", plus " << ScaleCost << " scale cost";
1300   if (ImmCost != 0)
1301     OS << ", plus " << ImmCost << " imm cost";
1302   if (SetupCost != 0)
1303     OS << ", plus " << SetupCost << " setup cost";
1304 }
1305 
1306 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1307 LLVM_DUMP_METHOD void Cost::dump() const {
1308   print(errs()); errs() << '\n';
1309 }
1310 #endif
1311 
1312 LSRFixup::LSRFixup()
1313   : UserInst(nullptr), OperandValToReplace(nullptr),
1314     Offset(0) {}
1315 
1316 /// Test whether this fixup always uses its value outside of the given loop.
1317 bool LSRFixup::isUseFullyOutsideLoop(const Loop *L) const {
1318   // PHI nodes use their value in their incoming blocks.
1319   if (const PHINode *PN = dyn_cast<PHINode>(UserInst)) {
1320     for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
1321       if (PN->getIncomingValue(i) == OperandValToReplace &&
1322           L->contains(PN->getIncomingBlock(i)))
1323         return false;
1324     return true;
1325   }
1326 
1327   return !L->contains(UserInst);
1328 }
1329 
1330 void LSRFixup::print(raw_ostream &OS) const {
1331   OS << "UserInst=";
1332   // Store is common and interesting enough to be worth special-casing.
1333   if (StoreInst *Store = dyn_cast<StoreInst>(UserInst)) {
1334     OS << "store ";
1335     Store->getOperand(0)->printAsOperand(OS, /*PrintType=*/false);
1336   } else if (UserInst->getType()->isVoidTy())
1337     OS << UserInst->getOpcodeName();
1338   else
1339     UserInst->printAsOperand(OS, /*PrintType=*/false);
1340 
1341   OS << ", OperandValToReplace=";
1342   OperandValToReplace->printAsOperand(OS, /*PrintType=*/false);
1343 
1344   for (const Loop *PIL : PostIncLoops) {
1345     OS << ", PostIncLoop=";
1346     PIL->getHeader()->printAsOperand(OS, /*PrintType=*/false);
1347   }
1348 
1349   if (Offset != 0)
1350     OS << ", Offset=" << Offset;
1351 }
1352 
1353 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1354 LLVM_DUMP_METHOD void LSRFixup::dump() const {
1355   print(errs()); errs() << '\n';
1356 }
1357 #endif
1358 
1359 /// Test whether this use as a formula which has the same registers as the given
1360 /// formula.
1361 bool LSRUse::HasFormulaWithSameRegs(const Formula &F) const {
1362   SmallVector<const SCEV *, 4> Key = F.BaseRegs;
1363   if (F.ScaledReg) Key.push_back(F.ScaledReg);
1364   // Unstable sort by host order ok, because this is only used for uniquifying.
1365   std::sort(Key.begin(), Key.end());
1366   return Uniquifier.count(Key);
1367 }
1368 
1369 /// If the given formula has not yet been inserted, add it to the list, and
1370 /// return true. Return false otherwise.  The formula must be in canonical form.
1371 bool LSRUse::InsertFormula(const Formula &F) {
1372   assert(F.isCanonical() && "Invalid canonical representation");
1373 
1374   if (!Formulae.empty() && RigidFormula)
1375     return false;
1376 
1377   SmallVector<const SCEV *, 4> Key = F.BaseRegs;
1378   if (F.ScaledReg) Key.push_back(F.ScaledReg);
1379   // Unstable sort by host order ok, because this is only used for uniquifying.
1380   std::sort(Key.begin(), Key.end());
1381 
1382   if (!Uniquifier.insert(Key).second)
1383     return false;
1384 
1385   // Using a register to hold the value of 0 is not profitable.
1386   assert((!F.ScaledReg || !F.ScaledReg->isZero()) &&
1387          "Zero allocated in a scaled register!");
1388 #ifndef NDEBUG
1389   for (const SCEV *BaseReg : F.BaseRegs)
1390     assert(!BaseReg->isZero() && "Zero allocated in a base register!");
1391 #endif
1392 
1393   // Add the formula to the list.
1394   Formulae.push_back(F);
1395 
1396   // Record registers now being used by this use.
1397   Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1398   if (F.ScaledReg)
1399     Regs.insert(F.ScaledReg);
1400 
1401   return true;
1402 }
1403 
1404 /// Remove the given formula from this use's list.
1405 void LSRUse::DeleteFormula(Formula &F) {
1406   if (&F != &Formulae.back())
1407     std::swap(F, Formulae.back());
1408   Formulae.pop_back();
1409 }
1410 
1411 /// Recompute the Regs field, and update RegUses.
1412 void LSRUse::RecomputeRegs(size_t LUIdx, RegUseTracker &RegUses) {
1413   // Now that we've filtered out some formulae, recompute the Regs set.
1414   SmallPtrSet<const SCEV *, 4> OldRegs = std::move(Regs);
1415   Regs.clear();
1416   for (const Formula &F : Formulae) {
1417     if (F.ScaledReg) Regs.insert(F.ScaledReg);
1418     Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1419   }
1420 
1421   // Update the RegTracker.
1422   for (const SCEV *S : OldRegs)
1423     if (!Regs.count(S))
1424       RegUses.dropRegister(S, LUIdx);
1425 }
1426 
1427 void LSRUse::print(raw_ostream &OS) const {
1428   OS << "LSR Use: Kind=";
1429   switch (Kind) {
1430   case Basic:    OS << "Basic"; break;
1431   case Special:  OS << "Special"; break;
1432   case ICmpZero: OS << "ICmpZero"; break;
1433   case Address:
1434     OS << "Address of ";
1435     if (AccessTy.MemTy->isPointerTy())
1436       OS << "pointer"; // the full pointer type could be really verbose
1437     else {
1438       OS << *AccessTy.MemTy;
1439     }
1440 
1441     OS << " in addrspace(" << AccessTy.AddrSpace << ')';
1442   }
1443 
1444   OS << ", Offsets={";
1445   bool NeedComma = false;
1446   for (const LSRFixup &Fixup : Fixups) {
1447     if (NeedComma) OS << ',';
1448     OS << Fixup.Offset;
1449     NeedComma = true;
1450   }
1451   OS << '}';
1452 
1453   if (AllFixupsOutsideLoop)
1454     OS << ", all-fixups-outside-loop";
1455 
1456   if (WidestFixupType)
1457     OS << ", widest fixup type: " << *WidestFixupType;
1458 }
1459 
1460 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1461 LLVM_DUMP_METHOD void LSRUse::dump() const {
1462   print(errs()); errs() << '\n';
1463 }
1464 #endif
1465 
1466 static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1467                                  LSRUse::KindType Kind, MemAccessTy AccessTy,
1468                                  GlobalValue *BaseGV, int64_t BaseOffset,
1469                                  bool HasBaseReg, int64_t Scale) {
1470   switch (Kind) {
1471   case LSRUse::Address:
1472     return TTI.isLegalAddressingMode(AccessTy.MemTy, BaseGV, BaseOffset,
1473                                      HasBaseReg, Scale, AccessTy.AddrSpace);
1474 
1475   case LSRUse::ICmpZero:
1476     // There's not even a target hook for querying whether it would be legal to
1477     // fold a GV into an ICmp.
1478     if (BaseGV)
1479       return false;
1480 
1481     // ICmp only has two operands; don't allow more than two non-trivial parts.
1482     if (Scale != 0 && HasBaseReg && BaseOffset != 0)
1483       return false;
1484 
1485     // ICmp only supports no scale or a -1 scale, as we can "fold" a -1 scale by
1486     // putting the scaled register in the other operand of the icmp.
1487     if (Scale != 0 && Scale != -1)
1488       return false;
1489 
1490     // If we have low-level target information, ask the target if it can fold an
1491     // integer immediate on an icmp.
1492     if (BaseOffset != 0) {
1493       // We have one of:
1494       // ICmpZero     BaseReg + BaseOffset => ICmp BaseReg, -BaseOffset
1495       // ICmpZero -1*ScaleReg + BaseOffset => ICmp ScaleReg, BaseOffset
1496       // Offs is the ICmp immediate.
1497       if (Scale == 0)
1498         // The cast does the right thing with INT64_MIN.
1499         BaseOffset = -(uint64_t)BaseOffset;
1500       return TTI.isLegalICmpImmediate(BaseOffset);
1501     }
1502 
1503     // ICmpZero BaseReg + -1*ScaleReg => ICmp BaseReg, ScaleReg
1504     return true;
1505 
1506   case LSRUse::Basic:
1507     // Only handle single-register values.
1508     return !BaseGV && Scale == 0 && BaseOffset == 0;
1509 
1510   case LSRUse::Special:
1511     // Special case Basic to handle -1 scales.
1512     return !BaseGV && (Scale == 0 || Scale == -1) && BaseOffset == 0;
1513   }
1514 
1515   llvm_unreachable("Invalid LSRUse Kind!");
1516 }
1517 
1518 static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1519                                  int64_t MinOffset, int64_t MaxOffset,
1520                                  LSRUse::KindType Kind, MemAccessTy AccessTy,
1521                                  GlobalValue *BaseGV, int64_t BaseOffset,
1522                                  bool HasBaseReg, int64_t Scale) {
1523   // Check for overflow.
1524   if (((int64_t)((uint64_t)BaseOffset + MinOffset) > BaseOffset) !=
1525       (MinOffset > 0))
1526     return false;
1527   MinOffset = (uint64_t)BaseOffset + MinOffset;
1528   if (((int64_t)((uint64_t)BaseOffset + MaxOffset) > BaseOffset) !=
1529       (MaxOffset > 0))
1530     return false;
1531   MaxOffset = (uint64_t)BaseOffset + MaxOffset;
1532 
1533   return isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, MinOffset,
1534                               HasBaseReg, Scale) &&
1535          isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, MaxOffset,
1536                               HasBaseReg, Scale);
1537 }
1538 
1539 static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1540                                  int64_t MinOffset, int64_t MaxOffset,
1541                                  LSRUse::KindType Kind, MemAccessTy AccessTy,
1542                                  const Formula &F) {
1543   // For the purpose of isAMCompletelyFolded either having a canonical formula
1544   // or a scale not equal to zero is correct.
1545   // Problems may arise from non canonical formulae having a scale == 0.
1546   // Strictly speaking it would best to just rely on canonical formulae.
1547   // However, when we generate the scaled formulae, we first check that the
1548   // scaling factor is profitable before computing the actual ScaledReg for
1549   // compile time sake.
1550   assert((F.isCanonical() || F.Scale != 0));
1551   return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy,
1552                               F.BaseGV, F.BaseOffset, F.HasBaseReg, F.Scale);
1553 }
1554 
1555 /// Test whether we know how to expand the current formula.
1556 static bool isLegalUse(const TargetTransformInfo &TTI, int64_t MinOffset,
1557                        int64_t MaxOffset, LSRUse::KindType Kind,
1558                        MemAccessTy AccessTy, GlobalValue *BaseGV,
1559                        int64_t BaseOffset, bool HasBaseReg, int64_t Scale) {
1560   // We know how to expand completely foldable formulae.
1561   return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, BaseGV,
1562                               BaseOffset, HasBaseReg, Scale) ||
1563          // Or formulae that use a base register produced by a sum of base
1564          // registers.
1565          (Scale == 1 &&
1566           isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy,
1567                                BaseGV, BaseOffset, true, 0));
1568 }
1569 
1570 static bool isLegalUse(const TargetTransformInfo &TTI, int64_t MinOffset,
1571                        int64_t MaxOffset, LSRUse::KindType Kind,
1572                        MemAccessTy AccessTy, const Formula &F) {
1573   return isLegalUse(TTI, MinOffset, MaxOffset, Kind, AccessTy, F.BaseGV,
1574                     F.BaseOffset, F.HasBaseReg, F.Scale);
1575 }
1576 
1577 static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1578                                  const LSRUse &LU, const Formula &F) {
1579   return isAMCompletelyFolded(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind,
1580                               LU.AccessTy, F.BaseGV, F.BaseOffset, F.HasBaseReg,
1581                               F.Scale);
1582 }
1583 
1584 static unsigned getScalingFactorCost(const TargetTransformInfo &TTI,
1585                                      const LSRUse &LU, const Formula &F) {
1586   if (!F.Scale)
1587     return 0;
1588 
1589   // If the use is not completely folded in that instruction, we will have to
1590   // pay an extra cost only for scale != 1.
1591   if (!isAMCompletelyFolded(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind,
1592                             LU.AccessTy, F))
1593     return F.Scale != 1;
1594 
1595   switch (LU.Kind) {
1596   case LSRUse::Address: {
1597     // Check the scaling factor cost with both the min and max offsets.
1598     int ScaleCostMinOffset = TTI.getScalingFactorCost(
1599         LU.AccessTy.MemTy, F.BaseGV, F.BaseOffset + LU.MinOffset, F.HasBaseReg,
1600         F.Scale, LU.AccessTy.AddrSpace);
1601     int ScaleCostMaxOffset = TTI.getScalingFactorCost(
1602         LU.AccessTy.MemTy, F.BaseGV, F.BaseOffset + LU.MaxOffset, F.HasBaseReg,
1603         F.Scale, LU.AccessTy.AddrSpace);
1604 
1605     assert(ScaleCostMinOffset >= 0 && ScaleCostMaxOffset >= 0 &&
1606            "Legal addressing mode has an illegal cost!");
1607     return std::max(ScaleCostMinOffset, ScaleCostMaxOffset);
1608   }
1609   case LSRUse::ICmpZero:
1610   case LSRUse::Basic:
1611   case LSRUse::Special:
1612     // The use is completely folded, i.e., everything is folded into the
1613     // instruction.
1614     return 0;
1615   }
1616 
1617   llvm_unreachable("Invalid LSRUse Kind!");
1618 }
1619 
1620 static bool isAlwaysFoldable(const TargetTransformInfo &TTI,
1621                              LSRUse::KindType Kind, MemAccessTy AccessTy,
1622                              GlobalValue *BaseGV, int64_t BaseOffset,
1623                              bool HasBaseReg) {
1624   // Fast-path: zero is always foldable.
1625   if (BaseOffset == 0 && !BaseGV) return true;
1626 
1627   // Conservatively, create an address with an immediate and a
1628   // base and a scale.
1629   int64_t Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
1630 
1631   // Canonicalize a scale of 1 to a base register if the formula doesn't
1632   // already have a base register.
1633   if (!HasBaseReg && Scale == 1) {
1634     Scale = 0;
1635     HasBaseReg = true;
1636   }
1637 
1638   return isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, BaseOffset,
1639                               HasBaseReg, Scale);
1640 }
1641 
1642 static bool isAlwaysFoldable(const TargetTransformInfo &TTI,
1643                              ScalarEvolution &SE, int64_t MinOffset,
1644                              int64_t MaxOffset, LSRUse::KindType Kind,
1645                              MemAccessTy AccessTy, const SCEV *S,
1646                              bool HasBaseReg) {
1647   // Fast-path: zero is always foldable.
1648   if (S->isZero()) return true;
1649 
1650   // Conservatively, create an address with an immediate and a
1651   // base and a scale.
1652   int64_t BaseOffset = ExtractImmediate(S, SE);
1653   GlobalValue *BaseGV = ExtractSymbol(S, SE);
1654 
1655   // If there's anything else involved, it's not foldable.
1656   if (!S->isZero()) return false;
1657 
1658   // Fast-path: zero is always foldable.
1659   if (BaseOffset == 0 && !BaseGV) return true;
1660 
1661   // Conservatively, create an address with an immediate and a
1662   // base and a scale.
1663   int64_t Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
1664 
1665   return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, BaseGV,
1666                               BaseOffset, HasBaseReg, Scale);
1667 }
1668 
1669 namespace {
1670 
1671 /// An individual increment in a Chain of IV increments.  Relate an IV user to
1672 /// an expression that computes the IV it uses from the IV used by the previous
1673 /// link in the Chain.
1674 ///
1675 /// For the head of a chain, IncExpr holds the absolute SCEV expression for the
1676 /// original IVOperand. The head of the chain's IVOperand is only valid during
1677 /// chain collection, before LSR replaces IV users. During chain generation,
1678 /// IncExpr can be used to find the new IVOperand that computes the same
1679 /// expression.
1680 struct IVInc {
1681   Instruction *UserInst;
1682   Value* IVOperand;
1683   const SCEV *IncExpr;
1684 
1685   IVInc(Instruction *U, Value *O, const SCEV *E):
1686     UserInst(U), IVOperand(O), IncExpr(E) {}
1687 };
1688 
1689 // The list of IV increments in program order.  We typically add the head of a
1690 // chain without finding subsequent links.
1691 struct IVChain {
1692   SmallVector<IVInc,1> Incs;
1693   const SCEV *ExprBase;
1694 
1695   IVChain() : ExprBase(nullptr) {}
1696 
1697   IVChain(const IVInc &Head, const SCEV *Base)
1698     : Incs(1, Head), ExprBase(Base) {}
1699 
1700   typedef SmallVectorImpl<IVInc>::const_iterator const_iterator;
1701 
1702   // Return the first increment in the chain.
1703   const_iterator begin() const {
1704     assert(!Incs.empty());
1705     return std::next(Incs.begin());
1706   }
1707   const_iterator end() const {
1708     return Incs.end();
1709   }
1710 
1711   // Returns true if this chain contains any increments.
1712   bool hasIncs() const { return Incs.size() >= 2; }
1713 
1714   // Add an IVInc to the end of this chain.
1715   void add(const IVInc &X) { Incs.push_back(X); }
1716 
1717   // Returns the last UserInst in the chain.
1718   Instruction *tailUserInst() const { return Incs.back().UserInst; }
1719 
1720   // Returns true if IncExpr can be profitably added to this chain.
1721   bool isProfitableIncrement(const SCEV *OperExpr,
1722                              const SCEV *IncExpr,
1723                              ScalarEvolution&);
1724 };
1725 
1726 /// Helper for CollectChains to track multiple IV increment uses.  Distinguish
1727 /// between FarUsers that definitely cross IV increments and NearUsers that may
1728 /// be used between IV increments.
1729 struct ChainUsers {
1730   SmallPtrSet<Instruction*, 4> FarUsers;
1731   SmallPtrSet<Instruction*, 4> NearUsers;
1732 };
1733 
1734 /// This class holds state for the main loop strength reduction logic.
1735 class LSRInstance {
1736   IVUsers &IU;
1737   ScalarEvolution &SE;
1738   DominatorTree &DT;
1739   LoopInfo &LI;
1740   const TargetTransformInfo &TTI;
1741   Loop *const L;
1742   bool Changed;
1743 
1744   /// This is the insert position that the current loop's induction variable
1745   /// increment should be placed. In simple loops, this is the latch block's
1746   /// terminator. But in more complicated cases, this is a position which will
1747   /// dominate all the in-loop post-increment users.
1748   Instruction *IVIncInsertPos;
1749 
1750   /// Interesting factors between use strides.
1751   ///
1752   /// We explicitly use a SetVector which contains a SmallSet, instead of the
1753   /// default, a SmallDenseSet, because we need to use the full range of
1754   /// int64_ts, and there's currently no good way of doing that with
1755   /// SmallDenseSet.
1756   SetVector<int64_t, SmallVector<int64_t, 8>, SmallSet<int64_t, 8>> Factors;
1757 
1758   /// Interesting use types, to facilitate truncation reuse.
1759   SmallSetVector<Type *, 4> Types;
1760 
1761   /// The list of interesting uses.
1762   SmallVector<LSRUse, 16> Uses;
1763 
1764   /// Track which uses use which register candidates.
1765   RegUseTracker RegUses;
1766 
1767   // Limit the number of chains to avoid quadratic behavior. We don't expect to
1768   // have more than a few IV increment chains in a loop. Missing a Chain falls
1769   // back to normal LSR behavior for those uses.
1770   static const unsigned MaxChains = 8;
1771 
1772   /// IV users can form a chain of IV increments.
1773   SmallVector<IVChain, MaxChains> IVChainVec;
1774 
1775   /// IV users that belong to profitable IVChains.
1776   SmallPtrSet<Use*, MaxChains> IVIncSet;
1777 
1778   void OptimizeShadowIV();
1779   bool FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse);
1780   ICmpInst *OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse);
1781   void OptimizeLoopTermCond();
1782 
1783   void ChainInstruction(Instruction *UserInst, Instruction *IVOper,
1784                         SmallVectorImpl<ChainUsers> &ChainUsersVec);
1785   void FinalizeChain(IVChain &Chain);
1786   void CollectChains();
1787   void GenerateIVChain(const IVChain &Chain, SCEVExpander &Rewriter,
1788                        SmallVectorImpl<WeakVH> &DeadInsts);
1789 
1790   void CollectInterestingTypesAndFactors();
1791   void CollectFixupsAndInitialFormulae();
1792 
1793   // Support for sharing of LSRUses between LSRFixups.
1794   typedef DenseMap<LSRUse::SCEVUseKindPair, size_t> UseMapTy;
1795   UseMapTy UseMap;
1796 
1797   bool reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
1798                           LSRUse::KindType Kind, MemAccessTy AccessTy);
1799 
1800   std::pair<size_t, int64_t> getUse(const SCEV *&Expr, LSRUse::KindType Kind,
1801                                     MemAccessTy AccessTy);
1802 
1803   void DeleteUse(LSRUse &LU, size_t LUIdx);
1804 
1805   LSRUse *FindUseWithSimilarFormula(const Formula &F, const LSRUse &OrigLU);
1806 
1807   void InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
1808   void InsertSupplementalFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
1809   void CountRegisters(const Formula &F, size_t LUIdx);
1810   bool InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F);
1811 
1812   void CollectLoopInvariantFixupsAndFormulae();
1813 
1814   void GenerateReassociations(LSRUse &LU, unsigned LUIdx, Formula Base,
1815                               unsigned Depth = 0);
1816 
1817   void GenerateReassociationsImpl(LSRUse &LU, unsigned LUIdx,
1818                                   const Formula &Base, unsigned Depth,
1819                                   size_t Idx, bool IsScaledReg = false);
1820   void GenerateCombinations(LSRUse &LU, unsigned LUIdx, Formula Base);
1821   void GenerateSymbolicOffsetsImpl(LSRUse &LU, unsigned LUIdx,
1822                                    const Formula &Base, size_t Idx,
1823                                    bool IsScaledReg = false);
1824   void GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1825   void GenerateConstantOffsetsImpl(LSRUse &LU, unsigned LUIdx,
1826                                    const Formula &Base,
1827                                    const SmallVectorImpl<int64_t> &Worklist,
1828                                    size_t Idx, bool IsScaledReg = false);
1829   void GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1830   void GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1831   void GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1832   void GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base);
1833   void GenerateCrossUseConstantOffsets();
1834   void GenerateAllReuseFormulae();
1835 
1836   void FilterOutUndesirableDedicatedRegisters();
1837 
1838   size_t EstimateSearchSpaceComplexity() const;
1839   void NarrowSearchSpaceByDetectingSupersets();
1840   void NarrowSearchSpaceByCollapsingUnrolledCode();
1841   void NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
1842   void NarrowSearchSpaceByPickingWinnerRegs();
1843   void NarrowSearchSpaceUsingHeuristics();
1844 
1845   void SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
1846                     Cost &SolutionCost,
1847                     SmallVectorImpl<const Formula *> &Workspace,
1848                     const Cost &CurCost,
1849                     const SmallPtrSet<const SCEV *, 16> &CurRegs,
1850                     DenseSet<const SCEV *> &VisitedRegs) const;
1851   void Solve(SmallVectorImpl<const Formula *> &Solution) const;
1852 
1853   BasicBlock::iterator
1854     HoistInsertPosition(BasicBlock::iterator IP,
1855                         const SmallVectorImpl<Instruction *> &Inputs) const;
1856   BasicBlock::iterator
1857     AdjustInsertPositionForExpand(BasicBlock::iterator IP,
1858                                   const LSRFixup &LF,
1859                                   const LSRUse &LU,
1860                                   SCEVExpander &Rewriter) const;
1861 
1862   Value *Expand(const LSRUse &LU, const LSRFixup &LF,
1863                 const Formula &F,
1864                 BasicBlock::iterator IP,
1865                 SCEVExpander &Rewriter,
1866                 SmallVectorImpl<WeakVH> &DeadInsts) const;
1867   void RewriteForPHI(PHINode *PN, const LSRUse &LU, const LSRFixup &LF,
1868                      const Formula &F,
1869                      SCEVExpander &Rewriter,
1870                      SmallVectorImpl<WeakVH> &DeadInsts) const;
1871   void Rewrite(const LSRUse &LU, const LSRFixup &LF,
1872                const Formula &F,
1873                SCEVExpander &Rewriter,
1874                SmallVectorImpl<WeakVH> &DeadInsts) const;
1875   void ImplementSolution(const SmallVectorImpl<const Formula *> &Solution);
1876 
1877 public:
1878   LSRInstance(Loop *L, IVUsers &IU, ScalarEvolution &SE, DominatorTree &DT,
1879               LoopInfo &LI, const TargetTransformInfo &TTI);
1880 
1881   bool getChanged() const { return Changed; }
1882 
1883   void print_factors_and_types(raw_ostream &OS) const;
1884   void print_fixups(raw_ostream &OS) const;
1885   void print_uses(raw_ostream &OS) const;
1886   void print(raw_ostream &OS) const;
1887   void dump() const;
1888 };
1889 
1890 } // end anonymous namespace
1891 
1892 /// If IV is used in a int-to-float cast inside the loop then try to eliminate
1893 /// the cast operation.
1894 void LSRInstance::OptimizeShadowIV() {
1895   const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
1896   if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1897     return;
1898 
1899   for (IVUsers::const_iterator UI = IU.begin(), E = IU.end();
1900        UI != E; /* empty */) {
1901     IVUsers::const_iterator CandidateUI = UI;
1902     ++UI;
1903     Instruction *ShadowUse = CandidateUI->getUser();
1904     Type *DestTy = nullptr;
1905     bool IsSigned = false;
1906 
1907     /* If shadow use is a int->float cast then insert a second IV
1908        to eliminate this cast.
1909 
1910          for (unsigned i = 0; i < n; ++i)
1911            foo((double)i);
1912 
1913        is transformed into
1914 
1915          double d = 0.0;
1916          for (unsigned i = 0; i < n; ++i, ++d)
1917            foo(d);
1918     */
1919     if (UIToFPInst *UCast = dyn_cast<UIToFPInst>(CandidateUI->getUser())) {
1920       IsSigned = false;
1921       DestTy = UCast->getDestTy();
1922     }
1923     else if (SIToFPInst *SCast = dyn_cast<SIToFPInst>(CandidateUI->getUser())) {
1924       IsSigned = true;
1925       DestTy = SCast->getDestTy();
1926     }
1927     if (!DestTy) continue;
1928 
1929     // If target does not support DestTy natively then do not apply
1930     // this transformation.
1931     if (!TTI.isTypeLegal(DestTy)) continue;
1932 
1933     PHINode *PH = dyn_cast<PHINode>(ShadowUse->getOperand(0));
1934     if (!PH) continue;
1935     if (PH->getNumIncomingValues() != 2) continue;
1936 
1937     Type *SrcTy = PH->getType();
1938     int Mantissa = DestTy->getFPMantissaWidth();
1939     if (Mantissa == -1) continue;
1940     if ((int)SE.getTypeSizeInBits(SrcTy) > Mantissa)
1941       continue;
1942 
1943     unsigned Entry, Latch;
1944     if (PH->getIncomingBlock(0) == L->getLoopPreheader()) {
1945       Entry = 0;
1946       Latch = 1;
1947     } else {
1948       Entry = 1;
1949       Latch = 0;
1950     }
1951 
1952     ConstantInt *Init = dyn_cast<ConstantInt>(PH->getIncomingValue(Entry));
1953     if (!Init) continue;
1954     Constant *NewInit = ConstantFP::get(DestTy, IsSigned ?
1955                                         (double)Init->getSExtValue() :
1956                                         (double)Init->getZExtValue());
1957 
1958     BinaryOperator *Incr =
1959       dyn_cast<BinaryOperator>(PH->getIncomingValue(Latch));
1960     if (!Incr) continue;
1961     if (Incr->getOpcode() != Instruction::Add
1962         && Incr->getOpcode() != Instruction::Sub)
1963       continue;
1964 
1965     /* Initialize new IV, double d = 0.0 in above example. */
1966     ConstantInt *C = nullptr;
1967     if (Incr->getOperand(0) == PH)
1968       C = dyn_cast<ConstantInt>(Incr->getOperand(1));
1969     else if (Incr->getOperand(1) == PH)
1970       C = dyn_cast<ConstantInt>(Incr->getOperand(0));
1971     else
1972       continue;
1973 
1974     if (!C) continue;
1975 
1976     // Ignore negative constants, as the code below doesn't handle them
1977     // correctly. TODO: Remove this restriction.
1978     if (!C->getValue().isStrictlyPositive()) continue;
1979 
1980     /* Add new PHINode. */
1981     PHINode *NewPH = PHINode::Create(DestTy, 2, "IV.S.", PH);
1982 
1983     /* create new increment. '++d' in above example. */
1984     Constant *CFP = ConstantFP::get(DestTy, C->getZExtValue());
1985     BinaryOperator *NewIncr =
1986       BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
1987                                Instruction::FAdd : Instruction::FSub,
1988                              NewPH, CFP, "IV.S.next.", Incr);
1989 
1990     NewPH->addIncoming(NewInit, PH->getIncomingBlock(Entry));
1991     NewPH->addIncoming(NewIncr, PH->getIncomingBlock(Latch));
1992 
1993     /* Remove cast operation */
1994     ShadowUse->replaceAllUsesWith(NewPH);
1995     ShadowUse->eraseFromParent();
1996     Changed = true;
1997     break;
1998   }
1999 }
2000 
2001 /// If Cond has an operand that is an expression of an IV, set the IV user and
2002 /// stride information and return true, otherwise return false.
2003 bool LSRInstance::FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse) {
2004   for (IVStrideUse &U : IU)
2005     if (U.getUser() == Cond) {
2006       // NOTE: we could handle setcc instructions with multiple uses here, but
2007       // InstCombine does it as well for simple uses, it's not clear that it
2008       // occurs enough in real life to handle.
2009       CondUse = &U;
2010       return true;
2011     }
2012   return false;
2013 }
2014 
2015 /// Rewrite the loop's terminating condition if it uses a max computation.
2016 ///
2017 /// This is a narrow solution to a specific, but acute, problem. For loops
2018 /// like this:
2019 ///
2020 ///   i = 0;
2021 ///   do {
2022 ///     p[i] = 0.0;
2023 ///   } while (++i < n);
2024 ///
2025 /// the trip count isn't just 'n', because 'n' might not be positive. And
2026 /// unfortunately this can come up even for loops where the user didn't use
2027 /// a C do-while loop. For example, seemingly well-behaved top-test loops
2028 /// will commonly be lowered like this:
2029 //
2030 ///   if (n > 0) {
2031 ///     i = 0;
2032 ///     do {
2033 ///       p[i] = 0.0;
2034 ///     } while (++i < n);
2035 ///   }
2036 ///
2037 /// and then it's possible for subsequent optimization to obscure the if
2038 /// test in such a way that indvars can't find it.
2039 ///
2040 /// When indvars can't find the if test in loops like this, it creates a
2041 /// max expression, which allows it to give the loop a canonical
2042 /// induction variable:
2043 ///
2044 ///   i = 0;
2045 ///   max = n < 1 ? 1 : n;
2046 ///   do {
2047 ///     p[i] = 0.0;
2048 ///   } while (++i != max);
2049 ///
2050 /// Canonical induction variables are necessary because the loop passes
2051 /// are designed around them. The most obvious example of this is the
2052 /// LoopInfo analysis, which doesn't remember trip count values. It
2053 /// expects to be able to rediscover the trip count each time it is
2054 /// needed, and it does this using a simple analysis that only succeeds if
2055 /// the loop has a canonical induction variable.
2056 ///
2057 /// However, when it comes time to generate code, the maximum operation
2058 /// can be quite costly, especially if it's inside of an outer loop.
2059 ///
2060 /// This function solves this problem by detecting this type of loop and
2061 /// rewriting their conditions from ICMP_NE back to ICMP_SLT, and deleting
2062 /// the instructions for the maximum computation.
2063 ///
2064 ICmpInst *LSRInstance::OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse) {
2065   // Check that the loop matches the pattern we're looking for.
2066   if (Cond->getPredicate() != CmpInst::ICMP_EQ &&
2067       Cond->getPredicate() != CmpInst::ICMP_NE)
2068     return Cond;
2069 
2070   SelectInst *Sel = dyn_cast<SelectInst>(Cond->getOperand(1));
2071   if (!Sel || !Sel->hasOneUse()) return Cond;
2072 
2073   const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
2074   if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
2075     return Cond;
2076   const SCEV *One = SE.getConstant(BackedgeTakenCount->getType(), 1);
2077 
2078   // Add one to the backedge-taken count to get the trip count.
2079   const SCEV *IterationCount = SE.getAddExpr(One, BackedgeTakenCount);
2080   if (IterationCount != SE.getSCEV(Sel)) return Cond;
2081 
2082   // Check for a max calculation that matches the pattern. There's no check
2083   // for ICMP_ULE here because the comparison would be with zero, which
2084   // isn't interesting.
2085   CmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE;
2086   const SCEVNAryExpr *Max = nullptr;
2087   if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(BackedgeTakenCount)) {
2088     Pred = ICmpInst::ICMP_SLE;
2089     Max = S;
2090   } else if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(IterationCount)) {
2091     Pred = ICmpInst::ICMP_SLT;
2092     Max = S;
2093   } else if (const SCEVUMaxExpr *U = dyn_cast<SCEVUMaxExpr>(IterationCount)) {
2094     Pred = ICmpInst::ICMP_ULT;
2095     Max = U;
2096   } else {
2097     // No match; bail.
2098     return Cond;
2099   }
2100 
2101   // To handle a max with more than two operands, this optimization would
2102   // require additional checking and setup.
2103   if (Max->getNumOperands() != 2)
2104     return Cond;
2105 
2106   const SCEV *MaxLHS = Max->getOperand(0);
2107   const SCEV *MaxRHS = Max->getOperand(1);
2108 
2109   // ScalarEvolution canonicalizes constants to the left. For < and >, look
2110   // for a comparison with 1. For <= and >=, a comparison with zero.
2111   if (!MaxLHS ||
2112       (ICmpInst::isTrueWhenEqual(Pred) ? !MaxLHS->isZero() : (MaxLHS != One)))
2113     return Cond;
2114 
2115   // Check the relevant induction variable for conformance to
2116   // the pattern.
2117   const SCEV *IV = SE.getSCEV(Cond->getOperand(0));
2118   const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(IV);
2119   if (!AR || !AR->isAffine() ||
2120       AR->getStart() != One ||
2121       AR->getStepRecurrence(SE) != One)
2122     return Cond;
2123 
2124   assert(AR->getLoop() == L &&
2125          "Loop condition operand is an addrec in a different loop!");
2126 
2127   // Check the right operand of the select, and remember it, as it will
2128   // be used in the new comparison instruction.
2129   Value *NewRHS = nullptr;
2130   if (ICmpInst::isTrueWhenEqual(Pred)) {
2131     // Look for n+1, and grab n.
2132     if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(1)))
2133       if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1)))
2134          if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS)
2135            NewRHS = BO->getOperand(0);
2136     if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(2)))
2137       if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1)))
2138         if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS)
2139           NewRHS = BO->getOperand(0);
2140     if (!NewRHS)
2141       return Cond;
2142   } else if (SE.getSCEV(Sel->getOperand(1)) == MaxRHS)
2143     NewRHS = Sel->getOperand(1);
2144   else if (SE.getSCEV(Sel->getOperand(2)) == MaxRHS)
2145     NewRHS = Sel->getOperand(2);
2146   else if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(MaxRHS))
2147     NewRHS = SU->getValue();
2148   else
2149     // Max doesn't match expected pattern.
2150     return Cond;
2151 
2152   // Determine the new comparison opcode. It may be signed or unsigned,
2153   // and the original comparison may be either equality or inequality.
2154   if (Cond->getPredicate() == CmpInst::ICMP_EQ)
2155     Pred = CmpInst::getInversePredicate(Pred);
2156 
2157   // Ok, everything looks ok to change the condition into an SLT or SGE and
2158   // delete the max calculation.
2159   ICmpInst *NewCond =
2160     new ICmpInst(Cond, Pred, Cond->getOperand(0), NewRHS, "scmp");
2161 
2162   // Delete the max calculation instructions.
2163   Cond->replaceAllUsesWith(NewCond);
2164   CondUse->setUser(NewCond);
2165   Instruction *Cmp = cast<Instruction>(Sel->getOperand(0));
2166   Cond->eraseFromParent();
2167   Sel->eraseFromParent();
2168   if (Cmp->use_empty())
2169     Cmp->eraseFromParent();
2170   return NewCond;
2171 }
2172 
2173 /// Change loop terminating condition to use the postinc iv when possible.
2174 void
2175 LSRInstance::OptimizeLoopTermCond() {
2176   SmallPtrSet<Instruction *, 4> PostIncs;
2177 
2178   // We need a different set of heuristics for rotated and non-rotated loops.
2179   // If a loop is rotated then the latch is also the backedge, so inserting
2180   // post-inc expressions just before the latch is ideal. To reduce live ranges
2181   // it also makes sense to rewrite terminating conditions to use post-inc
2182   // expressions.
2183   //
2184   // If the loop is not rotated then the latch is not a backedge; the latch
2185   // check is done in the loop head. Adding post-inc expressions before the
2186   // latch will cause overlapping live-ranges of pre-inc and post-inc expressions
2187   // in the loop body. In this case we do *not* want to use post-inc expressions
2188   // in the latch check, and we want to insert post-inc expressions before
2189   // the backedge.
2190   BasicBlock *LatchBlock = L->getLoopLatch();
2191   SmallVector<BasicBlock*, 8> ExitingBlocks;
2192   L->getExitingBlocks(ExitingBlocks);
2193   if (llvm::all_of(ExitingBlocks, [&LatchBlock](const BasicBlock *BB) {
2194         return LatchBlock != BB;
2195       })) {
2196     // The backedge doesn't exit the loop; treat this as a head-tested loop.
2197     IVIncInsertPos = LatchBlock->getTerminator();
2198     return;
2199   }
2200 
2201   // Otherwise treat this as a rotated loop.
2202   for (BasicBlock *ExitingBlock : ExitingBlocks) {
2203 
2204     // Get the terminating condition for the loop if possible.  If we
2205     // can, we want to change it to use a post-incremented version of its
2206     // induction variable, to allow coalescing the live ranges for the IV into
2207     // one register value.
2208 
2209     BranchInst *TermBr = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
2210     if (!TermBr)
2211       continue;
2212     // FIXME: Overly conservative, termination condition could be an 'or' etc..
2213     if (TermBr->isUnconditional() || !isa<ICmpInst>(TermBr->getCondition()))
2214       continue;
2215 
2216     // Search IVUsesByStride to find Cond's IVUse if there is one.
2217     IVStrideUse *CondUse = nullptr;
2218     ICmpInst *Cond = cast<ICmpInst>(TermBr->getCondition());
2219     if (!FindIVUserForCond(Cond, CondUse))
2220       continue;
2221 
2222     // If the trip count is computed in terms of a max (due to ScalarEvolution
2223     // being unable to find a sufficient guard, for example), change the loop
2224     // comparison to use SLT or ULT instead of NE.
2225     // One consequence of doing this now is that it disrupts the count-down
2226     // optimization. That's not always a bad thing though, because in such
2227     // cases it may still be worthwhile to avoid a max.
2228     Cond = OptimizeMax(Cond, CondUse);
2229 
2230     // If this exiting block dominates the latch block, it may also use
2231     // the post-inc value if it won't be shared with other uses.
2232     // Check for dominance.
2233     if (!DT.dominates(ExitingBlock, LatchBlock))
2234       continue;
2235 
2236     // Conservatively avoid trying to use the post-inc value in non-latch
2237     // exits if there may be pre-inc users in intervening blocks.
2238     if (LatchBlock != ExitingBlock)
2239       for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
2240         // Test if the use is reachable from the exiting block. This dominator
2241         // query is a conservative approximation of reachability.
2242         if (&*UI != CondUse &&
2243             !DT.properlyDominates(UI->getUser()->getParent(), ExitingBlock)) {
2244           // Conservatively assume there may be reuse if the quotient of their
2245           // strides could be a legal scale.
2246           const SCEV *A = IU.getStride(*CondUse, L);
2247           const SCEV *B = IU.getStride(*UI, L);
2248           if (!A || !B) continue;
2249           if (SE.getTypeSizeInBits(A->getType()) !=
2250               SE.getTypeSizeInBits(B->getType())) {
2251             if (SE.getTypeSizeInBits(A->getType()) >
2252                 SE.getTypeSizeInBits(B->getType()))
2253               B = SE.getSignExtendExpr(B, A->getType());
2254             else
2255               A = SE.getSignExtendExpr(A, B->getType());
2256           }
2257           if (const SCEVConstant *D =
2258                 dyn_cast_or_null<SCEVConstant>(getExactSDiv(B, A, SE))) {
2259             const ConstantInt *C = D->getValue();
2260             // Stride of one or negative one can have reuse with non-addresses.
2261             if (C->isOne() || C->isAllOnesValue())
2262               goto decline_post_inc;
2263             // Avoid weird situations.
2264             if (C->getValue().getMinSignedBits() >= 64 ||
2265                 C->getValue().isMinSignedValue())
2266               goto decline_post_inc;
2267             // Check for possible scaled-address reuse.
2268             MemAccessTy AccessTy = getAccessType(UI->getUser());
2269             int64_t Scale = C->getSExtValue();
2270             if (TTI.isLegalAddressingMode(AccessTy.MemTy, /*BaseGV=*/nullptr,
2271                                           /*BaseOffset=*/0,
2272                                           /*HasBaseReg=*/false, Scale,
2273                                           AccessTy.AddrSpace))
2274               goto decline_post_inc;
2275             Scale = -Scale;
2276             if (TTI.isLegalAddressingMode(AccessTy.MemTy, /*BaseGV=*/nullptr,
2277                                           /*BaseOffset=*/0,
2278                                           /*HasBaseReg=*/false, Scale,
2279                                           AccessTy.AddrSpace))
2280               goto decline_post_inc;
2281           }
2282         }
2283 
2284     DEBUG(dbgs() << "  Change loop exiting icmp to use postinc iv: "
2285                  << *Cond << '\n');
2286 
2287     // It's possible for the setcc instruction to be anywhere in the loop, and
2288     // possible for it to have multiple users.  If it is not immediately before
2289     // the exiting block branch, move it.
2290     if (&*++BasicBlock::iterator(Cond) != TermBr) {
2291       if (Cond->hasOneUse()) {
2292         Cond->moveBefore(TermBr);
2293       } else {
2294         // Clone the terminating condition and insert into the loopend.
2295         ICmpInst *OldCond = Cond;
2296         Cond = cast<ICmpInst>(Cond->clone());
2297         Cond->setName(L->getHeader()->getName() + ".termcond");
2298         ExitingBlock->getInstList().insert(TermBr->getIterator(), Cond);
2299 
2300         // Clone the IVUse, as the old use still exists!
2301         CondUse = &IU.AddUser(Cond, CondUse->getOperandValToReplace());
2302         TermBr->replaceUsesOfWith(OldCond, Cond);
2303       }
2304     }
2305 
2306     // If we get to here, we know that we can transform the setcc instruction to
2307     // use the post-incremented version of the IV, allowing us to coalesce the
2308     // live ranges for the IV correctly.
2309     CondUse->transformToPostInc(L);
2310     Changed = true;
2311 
2312     PostIncs.insert(Cond);
2313   decline_post_inc:;
2314   }
2315 
2316   // Determine an insertion point for the loop induction variable increment. It
2317   // must dominate all the post-inc comparisons we just set up, and it must
2318   // dominate the loop latch edge.
2319   IVIncInsertPos = L->getLoopLatch()->getTerminator();
2320   for (Instruction *Inst : PostIncs) {
2321     BasicBlock *BB =
2322       DT.findNearestCommonDominator(IVIncInsertPos->getParent(),
2323                                     Inst->getParent());
2324     if (BB == Inst->getParent())
2325       IVIncInsertPos = Inst;
2326     else if (BB != IVIncInsertPos->getParent())
2327       IVIncInsertPos = BB->getTerminator();
2328   }
2329 }
2330 
2331 /// Determine if the given use can accommodate a fixup at the given offset and
2332 /// other details. If so, update the use and return true.
2333 bool LSRInstance::reconcileNewOffset(LSRUse &LU, int64_t NewOffset,
2334                                      bool HasBaseReg, LSRUse::KindType Kind,
2335                                      MemAccessTy AccessTy) {
2336   int64_t NewMinOffset = LU.MinOffset;
2337   int64_t NewMaxOffset = LU.MaxOffset;
2338   MemAccessTy NewAccessTy = AccessTy;
2339 
2340   // Check for a mismatched kind. It's tempting to collapse mismatched kinds to
2341   // something conservative, however this can pessimize in the case that one of
2342   // the uses will have all its uses outside the loop, for example.
2343   if (LU.Kind != Kind)
2344     return false;
2345 
2346   // Check for a mismatched access type, and fall back conservatively as needed.
2347   // TODO: Be less conservative when the type is similar and can use the same
2348   // addressing modes.
2349   if (Kind == LSRUse::Address) {
2350     if (AccessTy.MemTy != LU.AccessTy.MemTy) {
2351       NewAccessTy = MemAccessTy::getUnknown(AccessTy.MemTy->getContext(),
2352                                             AccessTy.AddrSpace);
2353     }
2354   }
2355 
2356   // Conservatively assume HasBaseReg is true for now.
2357   if (NewOffset < LU.MinOffset) {
2358     if (!isAlwaysFoldable(TTI, Kind, NewAccessTy, /*BaseGV=*/nullptr,
2359                           LU.MaxOffset - NewOffset, HasBaseReg))
2360       return false;
2361     NewMinOffset = NewOffset;
2362   } else if (NewOffset > LU.MaxOffset) {
2363     if (!isAlwaysFoldable(TTI, Kind, NewAccessTy, /*BaseGV=*/nullptr,
2364                           NewOffset - LU.MinOffset, HasBaseReg))
2365       return false;
2366     NewMaxOffset = NewOffset;
2367   }
2368 
2369   // Update the use.
2370   LU.MinOffset = NewMinOffset;
2371   LU.MaxOffset = NewMaxOffset;
2372   LU.AccessTy = NewAccessTy;
2373   return true;
2374 }
2375 
2376 /// Return an LSRUse index and an offset value for a fixup which needs the given
2377 /// expression, with the given kind and optional access type.  Either reuse an
2378 /// existing use or create a new one, as needed.
2379 std::pair<size_t, int64_t> LSRInstance::getUse(const SCEV *&Expr,
2380                                                LSRUse::KindType Kind,
2381                                                MemAccessTy AccessTy) {
2382   const SCEV *Copy = Expr;
2383   int64_t Offset = ExtractImmediate(Expr, SE);
2384 
2385   // Basic uses can't accept any offset, for example.
2386   if (!isAlwaysFoldable(TTI, Kind, AccessTy, /*BaseGV=*/ nullptr,
2387                         Offset, /*HasBaseReg=*/ true)) {
2388     Expr = Copy;
2389     Offset = 0;
2390   }
2391 
2392   std::pair<UseMapTy::iterator, bool> P =
2393     UseMap.insert(std::make_pair(LSRUse::SCEVUseKindPair(Expr, Kind), 0));
2394   if (!P.second) {
2395     // A use already existed with this base.
2396     size_t LUIdx = P.first->second;
2397     LSRUse &LU = Uses[LUIdx];
2398     if (reconcileNewOffset(LU, Offset, /*HasBaseReg=*/true, Kind, AccessTy))
2399       // Reuse this use.
2400       return std::make_pair(LUIdx, Offset);
2401   }
2402 
2403   // Create a new use.
2404   size_t LUIdx = Uses.size();
2405   P.first->second = LUIdx;
2406   Uses.push_back(LSRUse(Kind, AccessTy));
2407   LSRUse &LU = Uses[LUIdx];
2408 
2409   LU.MinOffset = Offset;
2410   LU.MaxOffset = Offset;
2411   return std::make_pair(LUIdx, Offset);
2412 }
2413 
2414 /// Delete the given use from the Uses list.
2415 void LSRInstance::DeleteUse(LSRUse &LU, size_t LUIdx) {
2416   if (&LU != &Uses.back())
2417     std::swap(LU, Uses.back());
2418   Uses.pop_back();
2419 
2420   // Update RegUses.
2421   RegUses.swapAndDropUse(LUIdx, Uses.size());
2422 }
2423 
2424 /// Look for a use distinct from OrigLU which is has a formula that has the same
2425 /// registers as the given formula.
2426 LSRUse *
2427 LSRInstance::FindUseWithSimilarFormula(const Formula &OrigF,
2428                                        const LSRUse &OrigLU) {
2429   // Search all uses for the formula. This could be more clever.
2430   for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2431     LSRUse &LU = Uses[LUIdx];
2432     // Check whether this use is close enough to OrigLU, to see whether it's
2433     // worthwhile looking through its formulae.
2434     // Ignore ICmpZero uses because they may contain formulae generated by
2435     // GenerateICmpZeroScales, in which case adding fixup offsets may
2436     // be invalid.
2437     if (&LU != &OrigLU &&
2438         LU.Kind != LSRUse::ICmpZero &&
2439         LU.Kind == OrigLU.Kind && OrigLU.AccessTy == LU.AccessTy &&
2440         LU.WidestFixupType == OrigLU.WidestFixupType &&
2441         LU.HasFormulaWithSameRegs(OrigF)) {
2442       // Scan through this use's formulae.
2443       for (const Formula &F : LU.Formulae) {
2444         // Check to see if this formula has the same registers and symbols
2445         // as OrigF.
2446         if (F.BaseRegs == OrigF.BaseRegs &&
2447             F.ScaledReg == OrigF.ScaledReg &&
2448             F.BaseGV == OrigF.BaseGV &&
2449             F.Scale == OrigF.Scale &&
2450             F.UnfoldedOffset == OrigF.UnfoldedOffset) {
2451           if (F.BaseOffset == 0)
2452             return &LU;
2453           // This is the formula where all the registers and symbols matched;
2454           // there aren't going to be any others. Since we declined it, we
2455           // can skip the rest of the formulae and proceed to the next LSRUse.
2456           break;
2457         }
2458       }
2459     }
2460   }
2461 
2462   // Nothing looked good.
2463   return nullptr;
2464 }
2465 
2466 void LSRInstance::CollectInterestingTypesAndFactors() {
2467   SmallSetVector<const SCEV *, 4> Strides;
2468 
2469   // Collect interesting types and strides.
2470   SmallVector<const SCEV *, 4> Worklist;
2471   for (const IVStrideUse &U : IU) {
2472     const SCEV *Expr = IU.getExpr(U);
2473 
2474     // Collect interesting types.
2475     Types.insert(SE.getEffectiveSCEVType(Expr->getType()));
2476 
2477     // Add strides for mentioned loops.
2478     Worklist.push_back(Expr);
2479     do {
2480       const SCEV *S = Worklist.pop_back_val();
2481       if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
2482         if (AR->getLoop() == L)
2483           Strides.insert(AR->getStepRecurrence(SE));
2484         Worklist.push_back(AR->getStart());
2485       } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
2486         Worklist.append(Add->op_begin(), Add->op_end());
2487       }
2488     } while (!Worklist.empty());
2489   }
2490 
2491   // Compute interesting factors from the set of interesting strides.
2492   for (SmallSetVector<const SCEV *, 4>::const_iterator
2493        I = Strides.begin(), E = Strides.end(); I != E; ++I)
2494     for (SmallSetVector<const SCEV *, 4>::const_iterator NewStrideIter =
2495          std::next(I); NewStrideIter != E; ++NewStrideIter) {
2496       const SCEV *OldStride = *I;
2497       const SCEV *NewStride = *NewStrideIter;
2498 
2499       if (SE.getTypeSizeInBits(OldStride->getType()) !=
2500           SE.getTypeSizeInBits(NewStride->getType())) {
2501         if (SE.getTypeSizeInBits(OldStride->getType()) >
2502             SE.getTypeSizeInBits(NewStride->getType()))
2503           NewStride = SE.getSignExtendExpr(NewStride, OldStride->getType());
2504         else
2505           OldStride = SE.getSignExtendExpr(OldStride, NewStride->getType());
2506       }
2507       if (const SCEVConstant *Factor =
2508             dyn_cast_or_null<SCEVConstant>(getExactSDiv(NewStride, OldStride,
2509                                                         SE, true))) {
2510         if (Factor->getAPInt().getMinSignedBits() <= 64)
2511           Factors.insert(Factor->getAPInt().getSExtValue());
2512       } else if (const SCEVConstant *Factor =
2513                    dyn_cast_or_null<SCEVConstant>(getExactSDiv(OldStride,
2514                                                                NewStride,
2515                                                                SE, true))) {
2516         if (Factor->getAPInt().getMinSignedBits() <= 64)
2517           Factors.insert(Factor->getAPInt().getSExtValue());
2518       }
2519     }
2520 
2521   // If all uses use the same type, don't bother looking for truncation-based
2522   // reuse.
2523   if (Types.size() == 1)
2524     Types.clear();
2525 
2526   DEBUG(print_factors_and_types(dbgs()));
2527 }
2528 
2529 /// Helper for CollectChains that finds an IV operand (computed by an AddRec in
2530 /// this loop) within [OI,OE) or returns OE. If IVUsers mapped Instructions to
2531 /// IVStrideUses, we could partially skip this.
2532 static User::op_iterator
2533 findIVOperand(User::op_iterator OI, User::op_iterator OE,
2534               Loop *L, ScalarEvolution &SE) {
2535   for(; OI != OE; ++OI) {
2536     if (Instruction *Oper = dyn_cast<Instruction>(*OI)) {
2537       if (!SE.isSCEVable(Oper->getType()))
2538         continue;
2539 
2540       if (const SCEVAddRecExpr *AR =
2541           dyn_cast<SCEVAddRecExpr>(SE.getSCEV(Oper))) {
2542         if (AR->getLoop() == L)
2543           break;
2544       }
2545     }
2546   }
2547   return OI;
2548 }
2549 
2550 /// IVChain logic must consistenctly peek base TruncInst operands, so wrap it in
2551 /// a convenient helper.
2552 static Value *getWideOperand(Value *Oper) {
2553   if (TruncInst *Trunc = dyn_cast<TruncInst>(Oper))
2554     return Trunc->getOperand(0);
2555   return Oper;
2556 }
2557 
2558 /// Return true if we allow an IV chain to include both types.
2559 static bool isCompatibleIVType(Value *LVal, Value *RVal) {
2560   Type *LType = LVal->getType();
2561   Type *RType = RVal->getType();
2562   return (LType == RType) || (LType->isPointerTy() && RType->isPointerTy());
2563 }
2564 
2565 /// Return an approximation of this SCEV expression's "base", or NULL for any
2566 /// constant. Returning the expression itself is conservative. Returning a
2567 /// deeper subexpression is more precise and valid as long as it isn't less
2568 /// complex than another subexpression. For expressions involving multiple
2569 /// unscaled values, we need to return the pointer-type SCEVUnknown. This avoids
2570 /// forming chains across objects, such as: PrevOper==a[i], IVOper==b[i],
2571 /// IVInc==b-a.
2572 ///
2573 /// Since SCEVUnknown is the rightmost type, and pointers are the rightmost
2574 /// SCEVUnknown, we simply return the rightmost SCEV operand.
2575 static const SCEV *getExprBase(const SCEV *S) {
2576   switch (S->getSCEVType()) {
2577   default: // uncluding scUnknown.
2578     return S;
2579   case scConstant:
2580     return nullptr;
2581   case scTruncate:
2582     return getExprBase(cast<SCEVTruncateExpr>(S)->getOperand());
2583   case scZeroExtend:
2584     return getExprBase(cast<SCEVZeroExtendExpr>(S)->getOperand());
2585   case scSignExtend:
2586     return getExprBase(cast<SCEVSignExtendExpr>(S)->getOperand());
2587   case scAddExpr: {
2588     // Skip over scaled operands (scMulExpr) to follow add operands as long as
2589     // there's nothing more complex.
2590     // FIXME: not sure if we want to recognize negation.
2591     const SCEVAddExpr *Add = cast<SCEVAddExpr>(S);
2592     for (std::reverse_iterator<SCEVAddExpr::op_iterator> I(Add->op_end()),
2593            E(Add->op_begin()); I != E; ++I) {
2594       const SCEV *SubExpr = *I;
2595       if (SubExpr->getSCEVType() == scAddExpr)
2596         return getExprBase(SubExpr);
2597 
2598       if (SubExpr->getSCEVType() != scMulExpr)
2599         return SubExpr;
2600     }
2601     return S; // all operands are scaled, be conservative.
2602   }
2603   case scAddRecExpr:
2604     return getExprBase(cast<SCEVAddRecExpr>(S)->getStart());
2605   }
2606 }
2607 
2608 /// Return true if the chain increment is profitable to expand into a loop
2609 /// invariant value, which may require its own register. A profitable chain
2610 /// increment will be an offset relative to the same base. We allow such offsets
2611 /// to potentially be used as chain increment as long as it's not obviously
2612 /// expensive to expand using real instructions.
2613 bool IVChain::isProfitableIncrement(const SCEV *OperExpr,
2614                                     const SCEV *IncExpr,
2615                                     ScalarEvolution &SE) {
2616   // Aggressively form chains when -stress-ivchain.
2617   if (StressIVChain)
2618     return true;
2619 
2620   // Do not replace a constant offset from IV head with a nonconstant IV
2621   // increment.
2622   if (!isa<SCEVConstant>(IncExpr)) {
2623     const SCEV *HeadExpr = SE.getSCEV(getWideOperand(Incs[0].IVOperand));
2624     if (isa<SCEVConstant>(SE.getMinusSCEV(OperExpr, HeadExpr)))
2625       return false;
2626   }
2627 
2628   SmallPtrSet<const SCEV*, 8> Processed;
2629   return !isHighCostExpansion(IncExpr, Processed, SE);
2630 }
2631 
2632 /// Return true if the number of registers needed for the chain is estimated to
2633 /// be less than the number required for the individual IV users. First prohibit
2634 /// any IV users that keep the IV live across increments (the Users set should
2635 /// be empty). Next count the number and type of increments in the chain.
2636 ///
2637 /// Chaining IVs can lead to considerable code bloat if ISEL doesn't
2638 /// effectively use postinc addressing modes. Only consider it profitable it the
2639 /// increments can be computed in fewer registers when chained.
2640 ///
2641 /// TODO: Consider IVInc free if it's already used in another chains.
2642 static bool
2643 isProfitableChain(IVChain &Chain, SmallPtrSetImpl<Instruction*> &Users,
2644                   ScalarEvolution &SE, const TargetTransformInfo &TTI) {
2645   if (StressIVChain)
2646     return true;
2647 
2648   if (!Chain.hasIncs())
2649     return false;
2650 
2651   if (!Users.empty()) {
2652     DEBUG(dbgs() << "Chain: " << *Chain.Incs[0].UserInst << " users:\n";
2653           for (Instruction *Inst : Users) {
2654             dbgs() << "  " << *Inst << "\n";
2655           });
2656     return false;
2657   }
2658   assert(!Chain.Incs.empty() && "empty IV chains are not allowed");
2659 
2660   // The chain itself may require a register, so intialize cost to 1.
2661   int cost = 1;
2662 
2663   // A complete chain likely eliminates the need for keeping the original IV in
2664   // a register. LSR does not currently know how to form a complete chain unless
2665   // the header phi already exists.
2666   if (isa<PHINode>(Chain.tailUserInst())
2667       && SE.getSCEV(Chain.tailUserInst()) == Chain.Incs[0].IncExpr) {
2668     --cost;
2669   }
2670   const SCEV *LastIncExpr = nullptr;
2671   unsigned NumConstIncrements = 0;
2672   unsigned NumVarIncrements = 0;
2673   unsigned NumReusedIncrements = 0;
2674   for (const IVInc &Inc : Chain) {
2675     if (Inc.IncExpr->isZero())
2676       continue;
2677 
2678     // Incrementing by zero or some constant is neutral. We assume constants can
2679     // be folded into an addressing mode or an add's immediate operand.
2680     if (isa<SCEVConstant>(Inc.IncExpr)) {
2681       ++NumConstIncrements;
2682       continue;
2683     }
2684 
2685     if (Inc.IncExpr == LastIncExpr)
2686       ++NumReusedIncrements;
2687     else
2688       ++NumVarIncrements;
2689 
2690     LastIncExpr = Inc.IncExpr;
2691   }
2692   // An IV chain with a single increment is handled by LSR's postinc
2693   // uses. However, a chain with multiple increments requires keeping the IV's
2694   // value live longer than it needs to be if chained.
2695   if (NumConstIncrements > 1)
2696     --cost;
2697 
2698   // Materializing increment expressions in the preheader that didn't exist in
2699   // the original code may cost a register. For example, sign-extended array
2700   // indices can produce ridiculous increments like this:
2701   // IV + ((sext i32 (2 * %s) to i64) + (-1 * (sext i32 %s to i64)))
2702   cost += NumVarIncrements;
2703 
2704   // Reusing variable increments likely saves a register to hold the multiple of
2705   // the stride.
2706   cost -= NumReusedIncrements;
2707 
2708   DEBUG(dbgs() << "Chain: " << *Chain.Incs[0].UserInst << " Cost: " << cost
2709                << "\n");
2710 
2711   return cost < 0;
2712 }
2713 
2714 /// Add this IV user to an existing chain or make it the head of a new chain.
2715 void LSRInstance::ChainInstruction(Instruction *UserInst, Instruction *IVOper,
2716                                    SmallVectorImpl<ChainUsers> &ChainUsersVec) {
2717   // When IVs are used as types of varying widths, they are generally converted
2718   // to a wider type with some uses remaining narrow under a (free) trunc.
2719   Value *const NextIV = getWideOperand(IVOper);
2720   const SCEV *const OperExpr = SE.getSCEV(NextIV);
2721   const SCEV *const OperExprBase = getExprBase(OperExpr);
2722 
2723   // Visit all existing chains. Check if its IVOper can be computed as a
2724   // profitable loop invariant increment from the last link in the Chain.
2725   unsigned ChainIdx = 0, NChains = IVChainVec.size();
2726   const SCEV *LastIncExpr = nullptr;
2727   for (; ChainIdx < NChains; ++ChainIdx) {
2728     IVChain &Chain = IVChainVec[ChainIdx];
2729 
2730     // Prune the solution space aggressively by checking that both IV operands
2731     // are expressions that operate on the same unscaled SCEVUnknown. This
2732     // "base" will be canceled by the subsequent getMinusSCEV call. Checking
2733     // first avoids creating extra SCEV expressions.
2734     if (!StressIVChain && Chain.ExprBase != OperExprBase)
2735       continue;
2736 
2737     Value *PrevIV = getWideOperand(Chain.Incs.back().IVOperand);
2738     if (!isCompatibleIVType(PrevIV, NextIV))
2739       continue;
2740 
2741     // A phi node terminates a chain.
2742     if (isa<PHINode>(UserInst) && isa<PHINode>(Chain.tailUserInst()))
2743       continue;
2744 
2745     // The increment must be loop-invariant so it can be kept in a register.
2746     const SCEV *PrevExpr = SE.getSCEV(PrevIV);
2747     const SCEV *IncExpr = SE.getMinusSCEV(OperExpr, PrevExpr);
2748     if (!SE.isLoopInvariant(IncExpr, L))
2749       continue;
2750 
2751     if (Chain.isProfitableIncrement(OperExpr, IncExpr, SE)) {
2752       LastIncExpr = IncExpr;
2753       break;
2754     }
2755   }
2756   // If we haven't found a chain, create a new one, unless we hit the max. Don't
2757   // bother for phi nodes, because they must be last in the chain.
2758   if (ChainIdx == NChains) {
2759     if (isa<PHINode>(UserInst))
2760       return;
2761     if (NChains >= MaxChains && !StressIVChain) {
2762       DEBUG(dbgs() << "IV Chain Limit\n");
2763       return;
2764     }
2765     LastIncExpr = OperExpr;
2766     // IVUsers may have skipped over sign/zero extensions. We don't currently
2767     // attempt to form chains involving extensions unless they can be hoisted
2768     // into this loop's AddRec.
2769     if (!isa<SCEVAddRecExpr>(LastIncExpr))
2770       return;
2771     ++NChains;
2772     IVChainVec.push_back(IVChain(IVInc(UserInst, IVOper, LastIncExpr),
2773                                  OperExprBase));
2774     ChainUsersVec.resize(NChains);
2775     DEBUG(dbgs() << "IV Chain#" << ChainIdx << " Head: (" << *UserInst
2776                  << ") IV=" << *LastIncExpr << "\n");
2777   } else {
2778     DEBUG(dbgs() << "IV Chain#" << ChainIdx << "  Inc: (" << *UserInst
2779                  << ") IV+" << *LastIncExpr << "\n");
2780     // Add this IV user to the end of the chain.
2781     IVChainVec[ChainIdx].add(IVInc(UserInst, IVOper, LastIncExpr));
2782   }
2783   IVChain &Chain = IVChainVec[ChainIdx];
2784 
2785   SmallPtrSet<Instruction*,4> &NearUsers = ChainUsersVec[ChainIdx].NearUsers;
2786   // This chain's NearUsers become FarUsers.
2787   if (!LastIncExpr->isZero()) {
2788     ChainUsersVec[ChainIdx].FarUsers.insert(NearUsers.begin(),
2789                                             NearUsers.end());
2790     NearUsers.clear();
2791   }
2792 
2793   // All other uses of IVOperand become near uses of the chain.
2794   // We currently ignore intermediate values within SCEV expressions, assuming
2795   // they will eventually be used be the current chain, or can be computed
2796   // from one of the chain increments. To be more precise we could
2797   // transitively follow its user and only add leaf IV users to the set.
2798   for (User *U : IVOper->users()) {
2799     Instruction *OtherUse = dyn_cast<Instruction>(U);
2800     if (!OtherUse)
2801       continue;
2802     // Uses in the chain will no longer be uses if the chain is formed.
2803     // Include the head of the chain in this iteration (not Chain.begin()).
2804     IVChain::const_iterator IncIter = Chain.Incs.begin();
2805     IVChain::const_iterator IncEnd = Chain.Incs.end();
2806     for( ; IncIter != IncEnd; ++IncIter) {
2807       if (IncIter->UserInst == OtherUse)
2808         break;
2809     }
2810     if (IncIter != IncEnd)
2811       continue;
2812 
2813     if (SE.isSCEVable(OtherUse->getType())
2814         && !isa<SCEVUnknown>(SE.getSCEV(OtherUse))
2815         && IU.isIVUserOrOperand(OtherUse)) {
2816       continue;
2817     }
2818     NearUsers.insert(OtherUse);
2819   }
2820 
2821   // Since this user is part of the chain, it's no longer considered a use
2822   // of the chain.
2823   ChainUsersVec[ChainIdx].FarUsers.erase(UserInst);
2824 }
2825 
2826 /// Populate the vector of Chains.
2827 ///
2828 /// This decreases ILP at the architecture level. Targets with ample registers,
2829 /// multiple memory ports, and no register renaming probably don't want
2830 /// this. However, such targets should probably disable LSR altogether.
2831 ///
2832 /// The job of LSR is to make a reasonable choice of induction variables across
2833 /// the loop. Subsequent passes can easily "unchain" computation exposing more
2834 /// ILP *within the loop* if the target wants it.
2835 ///
2836 /// Finding the best IV chain is potentially a scheduling problem. Since LSR
2837 /// will not reorder memory operations, it will recognize this as a chain, but
2838 /// will generate redundant IV increments. Ideally this would be corrected later
2839 /// by a smart scheduler:
2840 ///        = A[i]
2841 ///        = A[i+x]
2842 /// A[i]   =
2843 /// A[i+x] =
2844 ///
2845 /// TODO: Walk the entire domtree within this loop, not just the path to the
2846 /// loop latch. This will discover chains on side paths, but requires
2847 /// maintaining multiple copies of the Chains state.
2848 void LSRInstance::CollectChains() {
2849   DEBUG(dbgs() << "Collecting IV Chains.\n");
2850   SmallVector<ChainUsers, 8> ChainUsersVec;
2851 
2852   SmallVector<BasicBlock *,8> LatchPath;
2853   BasicBlock *LoopHeader = L->getHeader();
2854   for (DomTreeNode *Rung = DT.getNode(L->getLoopLatch());
2855        Rung->getBlock() != LoopHeader; Rung = Rung->getIDom()) {
2856     LatchPath.push_back(Rung->getBlock());
2857   }
2858   LatchPath.push_back(LoopHeader);
2859 
2860   // Walk the instruction stream from the loop header to the loop latch.
2861   for (BasicBlock *BB : reverse(LatchPath)) {
2862     for (Instruction &I : *BB) {
2863       // Skip instructions that weren't seen by IVUsers analysis.
2864       if (isa<PHINode>(I) || !IU.isIVUserOrOperand(&I))
2865         continue;
2866 
2867       // Ignore users that are part of a SCEV expression. This way we only
2868       // consider leaf IV Users. This effectively rediscovers a portion of
2869       // IVUsers analysis but in program order this time.
2870       if (SE.isSCEVable(I.getType()) && !isa<SCEVUnknown>(SE.getSCEV(&I)))
2871         continue;
2872 
2873       // Remove this instruction from any NearUsers set it may be in.
2874       for (unsigned ChainIdx = 0, NChains = IVChainVec.size();
2875            ChainIdx < NChains; ++ChainIdx) {
2876         ChainUsersVec[ChainIdx].NearUsers.erase(&I);
2877       }
2878       // Search for operands that can be chained.
2879       SmallPtrSet<Instruction*, 4> UniqueOperands;
2880       User::op_iterator IVOpEnd = I.op_end();
2881       User::op_iterator IVOpIter = findIVOperand(I.op_begin(), IVOpEnd, L, SE);
2882       while (IVOpIter != IVOpEnd) {
2883         Instruction *IVOpInst = cast<Instruction>(*IVOpIter);
2884         if (UniqueOperands.insert(IVOpInst).second)
2885           ChainInstruction(&I, IVOpInst, ChainUsersVec);
2886         IVOpIter = findIVOperand(std::next(IVOpIter), IVOpEnd, L, SE);
2887       }
2888     } // Continue walking down the instructions.
2889   } // Continue walking down the domtree.
2890   // Visit phi backedges to determine if the chain can generate the IV postinc.
2891   for (BasicBlock::iterator I = L->getHeader()->begin();
2892        PHINode *PN = dyn_cast<PHINode>(I); ++I) {
2893     if (!SE.isSCEVable(PN->getType()))
2894       continue;
2895 
2896     Instruction *IncV =
2897       dyn_cast<Instruction>(PN->getIncomingValueForBlock(L->getLoopLatch()));
2898     if (IncV)
2899       ChainInstruction(PN, IncV, ChainUsersVec);
2900   }
2901   // Remove any unprofitable chains.
2902   unsigned ChainIdx = 0;
2903   for (unsigned UsersIdx = 0, NChains = IVChainVec.size();
2904        UsersIdx < NChains; ++UsersIdx) {
2905     if (!isProfitableChain(IVChainVec[UsersIdx],
2906                            ChainUsersVec[UsersIdx].FarUsers, SE, TTI))
2907       continue;
2908     // Preserve the chain at UsesIdx.
2909     if (ChainIdx != UsersIdx)
2910       IVChainVec[ChainIdx] = IVChainVec[UsersIdx];
2911     FinalizeChain(IVChainVec[ChainIdx]);
2912     ++ChainIdx;
2913   }
2914   IVChainVec.resize(ChainIdx);
2915 }
2916 
2917 void LSRInstance::FinalizeChain(IVChain &Chain) {
2918   assert(!Chain.Incs.empty() && "empty IV chains are not allowed");
2919   DEBUG(dbgs() << "Final Chain: " << *Chain.Incs[0].UserInst << "\n");
2920 
2921   for (const IVInc &Inc : Chain) {
2922     DEBUG(dbgs() << "        Inc: " << *Inc.UserInst << "\n");
2923     auto UseI = find(Inc.UserInst->operands(), Inc.IVOperand);
2924     assert(UseI != Inc.UserInst->op_end() && "cannot find IV operand");
2925     IVIncSet.insert(UseI);
2926   }
2927 }
2928 
2929 /// Return true if the IVInc can be folded into an addressing mode.
2930 static bool canFoldIVIncExpr(const SCEV *IncExpr, Instruction *UserInst,
2931                              Value *Operand, const TargetTransformInfo &TTI) {
2932   const SCEVConstant *IncConst = dyn_cast<SCEVConstant>(IncExpr);
2933   if (!IncConst || !isAddressUse(UserInst, Operand))
2934     return false;
2935 
2936   if (IncConst->getAPInt().getMinSignedBits() > 64)
2937     return false;
2938 
2939   MemAccessTy AccessTy = getAccessType(UserInst);
2940   int64_t IncOffset = IncConst->getValue()->getSExtValue();
2941   if (!isAlwaysFoldable(TTI, LSRUse::Address, AccessTy, /*BaseGV=*/nullptr,
2942                         IncOffset, /*HaseBaseReg=*/false))
2943     return false;
2944 
2945   return true;
2946 }
2947 
2948 /// Generate an add or subtract for each IVInc in a chain to materialize the IV
2949 /// user's operand from the previous IV user's operand.
2950 void LSRInstance::GenerateIVChain(const IVChain &Chain, SCEVExpander &Rewriter,
2951                                   SmallVectorImpl<WeakVH> &DeadInsts) {
2952   // Find the new IVOperand for the head of the chain. It may have been replaced
2953   // by LSR.
2954   const IVInc &Head = Chain.Incs[0];
2955   User::op_iterator IVOpEnd = Head.UserInst->op_end();
2956   // findIVOperand returns IVOpEnd if it can no longer find a valid IV user.
2957   User::op_iterator IVOpIter = findIVOperand(Head.UserInst->op_begin(),
2958                                              IVOpEnd, L, SE);
2959   Value *IVSrc = nullptr;
2960   while (IVOpIter != IVOpEnd) {
2961     IVSrc = getWideOperand(*IVOpIter);
2962 
2963     // If this operand computes the expression that the chain needs, we may use
2964     // it. (Check this after setting IVSrc which is used below.)
2965     //
2966     // Note that if Head.IncExpr is wider than IVSrc, then this phi is too
2967     // narrow for the chain, so we can no longer use it. We do allow using a
2968     // wider phi, assuming the LSR checked for free truncation. In that case we
2969     // should already have a truncate on this operand such that
2970     // getSCEV(IVSrc) == IncExpr.
2971     if (SE.getSCEV(*IVOpIter) == Head.IncExpr
2972         || SE.getSCEV(IVSrc) == Head.IncExpr) {
2973       break;
2974     }
2975     IVOpIter = findIVOperand(std::next(IVOpIter), IVOpEnd, L, SE);
2976   }
2977   if (IVOpIter == IVOpEnd) {
2978     // Gracefully give up on this chain.
2979     DEBUG(dbgs() << "Concealed chain head: " << *Head.UserInst << "\n");
2980     return;
2981   }
2982 
2983   DEBUG(dbgs() << "Generate chain at: " << *IVSrc << "\n");
2984   Type *IVTy = IVSrc->getType();
2985   Type *IntTy = SE.getEffectiveSCEVType(IVTy);
2986   const SCEV *LeftOverExpr = nullptr;
2987   for (const IVInc &Inc : Chain) {
2988     Instruction *InsertPt = Inc.UserInst;
2989     if (isa<PHINode>(InsertPt))
2990       InsertPt = L->getLoopLatch()->getTerminator();
2991 
2992     // IVOper will replace the current IV User's operand. IVSrc is the IV
2993     // value currently held in a register.
2994     Value *IVOper = IVSrc;
2995     if (!Inc.IncExpr->isZero()) {
2996       // IncExpr was the result of subtraction of two narrow values, so must
2997       // be signed.
2998       const SCEV *IncExpr = SE.getNoopOrSignExtend(Inc.IncExpr, IntTy);
2999       LeftOverExpr = LeftOverExpr ?
3000         SE.getAddExpr(LeftOverExpr, IncExpr) : IncExpr;
3001     }
3002     if (LeftOverExpr && !LeftOverExpr->isZero()) {
3003       // Expand the IV increment.
3004       Rewriter.clearPostInc();
3005       Value *IncV = Rewriter.expandCodeFor(LeftOverExpr, IntTy, InsertPt);
3006       const SCEV *IVOperExpr = SE.getAddExpr(SE.getUnknown(IVSrc),
3007                                              SE.getUnknown(IncV));
3008       IVOper = Rewriter.expandCodeFor(IVOperExpr, IVTy, InsertPt);
3009 
3010       // If an IV increment can't be folded, use it as the next IV value.
3011       if (!canFoldIVIncExpr(LeftOverExpr, Inc.UserInst, Inc.IVOperand, TTI)) {
3012         assert(IVTy == IVOper->getType() && "inconsistent IV increment type");
3013         IVSrc = IVOper;
3014         LeftOverExpr = nullptr;
3015       }
3016     }
3017     Type *OperTy = Inc.IVOperand->getType();
3018     if (IVTy != OperTy) {
3019       assert(SE.getTypeSizeInBits(IVTy) >= SE.getTypeSizeInBits(OperTy) &&
3020              "cannot extend a chained IV");
3021       IRBuilder<> Builder(InsertPt);
3022       IVOper = Builder.CreateTruncOrBitCast(IVOper, OperTy, "lsr.chain");
3023     }
3024     Inc.UserInst->replaceUsesOfWith(Inc.IVOperand, IVOper);
3025     DeadInsts.emplace_back(Inc.IVOperand);
3026   }
3027   // If LSR created a new, wider phi, we may also replace its postinc. We only
3028   // do this if we also found a wide value for the head of the chain.
3029   if (isa<PHINode>(Chain.tailUserInst())) {
3030     for (BasicBlock::iterator I = L->getHeader()->begin();
3031          PHINode *Phi = dyn_cast<PHINode>(I); ++I) {
3032       if (!isCompatibleIVType(Phi, IVSrc))
3033         continue;
3034       Instruction *PostIncV = dyn_cast<Instruction>(
3035         Phi->getIncomingValueForBlock(L->getLoopLatch()));
3036       if (!PostIncV || (SE.getSCEV(PostIncV) != SE.getSCEV(IVSrc)))
3037         continue;
3038       Value *IVOper = IVSrc;
3039       Type *PostIncTy = PostIncV->getType();
3040       if (IVTy != PostIncTy) {
3041         assert(PostIncTy->isPointerTy() && "mixing int/ptr IV types");
3042         IRBuilder<> Builder(L->getLoopLatch()->getTerminator());
3043         Builder.SetCurrentDebugLocation(PostIncV->getDebugLoc());
3044         IVOper = Builder.CreatePointerCast(IVSrc, PostIncTy, "lsr.chain");
3045       }
3046       Phi->replaceUsesOfWith(PostIncV, IVOper);
3047       DeadInsts.emplace_back(PostIncV);
3048     }
3049   }
3050 }
3051 
3052 void LSRInstance::CollectFixupsAndInitialFormulae() {
3053   for (const IVStrideUse &U : IU) {
3054     Instruction *UserInst = U.getUser();
3055     // Skip IV users that are part of profitable IV Chains.
3056     User::op_iterator UseI =
3057         find(UserInst->operands(), U.getOperandValToReplace());
3058     assert(UseI != UserInst->op_end() && "cannot find IV operand");
3059     if (IVIncSet.count(UseI)) {
3060       DEBUG(dbgs() << "Use is in profitable chain: " << **UseI << '\n');
3061       continue;
3062     }
3063 
3064     LSRUse::KindType Kind = LSRUse::Basic;
3065     MemAccessTy AccessTy;
3066     if (isAddressUse(UserInst, U.getOperandValToReplace())) {
3067       Kind = LSRUse::Address;
3068       AccessTy = getAccessType(UserInst);
3069     }
3070 
3071     const SCEV *S = IU.getExpr(U);
3072     PostIncLoopSet TmpPostIncLoops = U.getPostIncLoops();
3073 
3074     // Equality (== and !=) ICmps are special. We can rewrite (i == N) as
3075     // (N - i == 0), and this allows (N - i) to be the expression that we work
3076     // with rather than just N or i, so we can consider the register
3077     // requirements for both N and i at the same time. Limiting this code to
3078     // equality icmps is not a problem because all interesting loops use
3079     // equality icmps, thanks to IndVarSimplify.
3080     if (ICmpInst *CI = dyn_cast<ICmpInst>(UserInst))
3081       if (CI->isEquality()) {
3082         // Swap the operands if needed to put the OperandValToReplace on the
3083         // left, for consistency.
3084         Value *NV = CI->getOperand(1);
3085         if (NV == U.getOperandValToReplace()) {
3086           CI->setOperand(1, CI->getOperand(0));
3087           CI->setOperand(0, NV);
3088           NV = CI->getOperand(1);
3089           Changed = true;
3090         }
3091 
3092         // x == y  -->  x - y == 0
3093         const SCEV *N = SE.getSCEV(NV);
3094         if (SE.isLoopInvariant(N, L) && isSafeToExpand(N, SE)) {
3095           // S is normalized, so normalize N before folding it into S
3096           // to keep the result normalized.
3097           N = TransformForPostIncUse(Normalize, N, CI, nullptr,
3098                                      TmpPostIncLoops, SE, DT);
3099           Kind = LSRUse::ICmpZero;
3100           S = SE.getMinusSCEV(N, S);
3101         }
3102 
3103         // -1 and the negations of all interesting strides (except the negation
3104         // of -1) are now also interesting.
3105         for (size_t i = 0, e = Factors.size(); i != e; ++i)
3106           if (Factors[i] != -1)
3107             Factors.insert(-(uint64_t)Factors[i]);
3108         Factors.insert(-1);
3109       }
3110 
3111     // Get or create an LSRUse.
3112     std::pair<size_t, int64_t> P = getUse(S, Kind, AccessTy);
3113     size_t LUIdx = P.first;
3114     int64_t Offset = P.second;
3115     LSRUse &LU = Uses[LUIdx];
3116 
3117     // Record the fixup.
3118     LSRFixup &LF = LU.getNewFixup();
3119     LF.UserInst = UserInst;
3120     LF.OperandValToReplace = U.getOperandValToReplace();
3121     LF.PostIncLoops = TmpPostIncLoops;
3122     LF.Offset = Offset;
3123     LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
3124 
3125     if (!LU.WidestFixupType ||
3126         SE.getTypeSizeInBits(LU.WidestFixupType) <
3127         SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
3128       LU.WidestFixupType = LF.OperandValToReplace->getType();
3129 
3130     // If this is the first use of this LSRUse, give it a formula.
3131     if (LU.Formulae.empty()) {
3132       InsertInitialFormula(S, LU, LUIdx);
3133       CountRegisters(LU.Formulae.back(), LUIdx);
3134     }
3135   }
3136 
3137   DEBUG(print_fixups(dbgs()));
3138 }
3139 
3140 /// Insert a formula for the given expression into the given use, separating out
3141 /// loop-variant portions from loop-invariant and loop-computable portions.
3142 void
3143 LSRInstance::InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx) {
3144   // Mark uses whose expressions cannot be expanded.
3145   if (!isSafeToExpand(S, SE))
3146     LU.RigidFormula = true;
3147 
3148   Formula F;
3149   F.initialMatch(S, L, SE);
3150   bool Inserted = InsertFormula(LU, LUIdx, F);
3151   assert(Inserted && "Initial formula already exists!"); (void)Inserted;
3152 }
3153 
3154 /// Insert a simple single-register formula for the given expression into the
3155 /// given use.
3156 void
3157 LSRInstance::InsertSupplementalFormula(const SCEV *S,
3158                                        LSRUse &LU, size_t LUIdx) {
3159   Formula F;
3160   F.BaseRegs.push_back(S);
3161   F.HasBaseReg = true;
3162   bool Inserted = InsertFormula(LU, LUIdx, F);
3163   assert(Inserted && "Supplemental formula already exists!"); (void)Inserted;
3164 }
3165 
3166 /// Note which registers are used by the given formula, updating RegUses.
3167 void LSRInstance::CountRegisters(const Formula &F, size_t LUIdx) {
3168   if (F.ScaledReg)
3169     RegUses.countRegister(F.ScaledReg, LUIdx);
3170   for (const SCEV *BaseReg : F.BaseRegs)
3171     RegUses.countRegister(BaseReg, LUIdx);
3172 }
3173 
3174 /// If the given formula has not yet been inserted, add it to the list, and
3175 /// return true. Return false otherwise.
3176 bool LSRInstance::InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F) {
3177   // Do not insert formula that we will not be able to expand.
3178   assert(isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F) &&
3179          "Formula is illegal");
3180   if (!LU.InsertFormula(F))
3181     return false;
3182 
3183   CountRegisters(F, LUIdx);
3184   return true;
3185 }
3186 
3187 /// Check for other uses of loop-invariant values which we're tracking. These
3188 /// other uses will pin these values in registers, making them less profitable
3189 /// for elimination.
3190 /// TODO: This currently misses non-constant addrec step registers.
3191 /// TODO: Should this give more weight to users inside the loop?
3192 void
3193 LSRInstance::CollectLoopInvariantFixupsAndFormulae() {
3194   SmallVector<const SCEV *, 8> Worklist(RegUses.begin(), RegUses.end());
3195   SmallPtrSet<const SCEV *, 32> Visited;
3196 
3197   while (!Worklist.empty()) {
3198     const SCEV *S = Worklist.pop_back_val();
3199 
3200     // Don't process the same SCEV twice
3201     if (!Visited.insert(S).second)
3202       continue;
3203 
3204     if (const SCEVNAryExpr *N = dyn_cast<SCEVNAryExpr>(S))
3205       Worklist.append(N->op_begin(), N->op_end());
3206     else if (const SCEVCastExpr *C = dyn_cast<SCEVCastExpr>(S))
3207       Worklist.push_back(C->getOperand());
3208     else if (const SCEVUDivExpr *D = dyn_cast<SCEVUDivExpr>(S)) {
3209       Worklist.push_back(D->getLHS());
3210       Worklist.push_back(D->getRHS());
3211     } else if (const SCEVUnknown *US = dyn_cast<SCEVUnknown>(S)) {
3212       const Value *V = US->getValue();
3213       if (const Instruction *Inst = dyn_cast<Instruction>(V)) {
3214         // Look for instructions defined outside the loop.
3215         if (L->contains(Inst)) continue;
3216       } else if (isa<UndefValue>(V))
3217         // Undef doesn't have a live range, so it doesn't matter.
3218         continue;
3219       for (const Use &U : V->uses()) {
3220         const Instruction *UserInst = dyn_cast<Instruction>(U.getUser());
3221         // Ignore non-instructions.
3222         if (!UserInst)
3223           continue;
3224         // Ignore instructions in other functions (as can happen with
3225         // Constants).
3226         if (UserInst->getParent()->getParent() != L->getHeader()->getParent())
3227           continue;
3228         // Ignore instructions not dominated by the loop.
3229         const BasicBlock *UseBB = !isa<PHINode>(UserInst) ?
3230           UserInst->getParent() :
3231           cast<PHINode>(UserInst)->getIncomingBlock(
3232             PHINode::getIncomingValueNumForOperand(U.getOperandNo()));
3233         if (!DT.dominates(L->getHeader(), UseBB))
3234           continue;
3235         // Don't bother if the instruction is in a BB which ends in an EHPad.
3236         if (UseBB->getTerminator()->isEHPad())
3237           continue;
3238         // Don't bother rewriting PHIs in catchswitch blocks.
3239         if (isa<CatchSwitchInst>(UserInst->getParent()->getTerminator()))
3240           continue;
3241         // Ignore uses which are part of other SCEV expressions, to avoid
3242         // analyzing them multiple times.
3243         if (SE.isSCEVable(UserInst->getType())) {
3244           const SCEV *UserS = SE.getSCEV(const_cast<Instruction *>(UserInst));
3245           // If the user is a no-op, look through to its uses.
3246           if (!isa<SCEVUnknown>(UserS))
3247             continue;
3248           if (UserS == US) {
3249             Worklist.push_back(
3250               SE.getUnknown(const_cast<Instruction *>(UserInst)));
3251             continue;
3252           }
3253         }
3254         // Ignore icmp instructions which are already being analyzed.
3255         if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UserInst)) {
3256           unsigned OtherIdx = !U.getOperandNo();
3257           Value *OtherOp = const_cast<Value *>(ICI->getOperand(OtherIdx));
3258           if (SE.hasComputableLoopEvolution(SE.getSCEV(OtherOp), L))
3259             continue;
3260         }
3261 
3262         std::pair<size_t, int64_t> P = getUse(
3263             S, LSRUse::Basic, MemAccessTy());
3264         size_t LUIdx = P.first;
3265         int64_t Offset = P.second;
3266         LSRUse &LU = Uses[LUIdx];
3267         LSRFixup &LF = LU.getNewFixup();
3268         LF.UserInst = const_cast<Instruction *>(UserInst);
3269         LF.OperandValToReplace = U;
3270         LF.Offset = Offset;
3271         LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
3272         if (!LU.WidestFixupType ||
3273             SE.getTypeSizeInBits(LU.WidestFixupType) <
3274             SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
3275           LU.WidestFixupType = LF.OperandValToReplace->getType();
3276         InsertSupplementalFormula(US, LU, LUIdx);
3277         CountRegisters(LU.Formulae.back(), Uses.size() - 1);
3278         break;
3279       }
3280     }
3281   }
3282 }
3283 
3284 /// Split S into subexpressions which can be pulled out into separate
3285 /// registers. If C is non-null, multiply each subexpression by C.
3286 ///
3287 /// Return remainder expression after factoring the subexpressions captured by
3288 /// Ops. If Ops is complete, return NULL.
3289 static const SCEV *CollectSubexprs(const SCEV *S, const SCEVConstant *C,
3290                                    SmallVectorImpl<const SCEV *> &Ops,
3291                                    const Loop *L,
3292                                    ScalarEvolution &SE,
3293                                    unsigned Depth = 0) {
3294   // Arbitrarily cap recursion to protect compile time.
3295   if (Depth >= 3)
3296     return S;
3297 
3298   if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
3299     // Break out add operands.
3300     for (const SCEV *S : Add->operands()) {
3301       const SCEV *Remainder = CollectSubexprs(S, C, Ops, L, SE, Depth+1);
3302       if (Remainder)
3303         Ops.push_back(C ? SE.getMulExpr(C, Remainder) : Remainder);
3304     }
3305     return nullptr;
3306   } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
3307     // Split a non-zero base out of an addrec.
3308     if (AR->getStart()->isZero() || !AR->isAffine())
3309       return S;
3310 
3311     const SCEV *Remainder = CollectSubexprs(AR->getStart(),
3312                                             C, Ops, L, SE, Depth+1);
3313     // Split the non-zero AddRec unless it is part of a nested recurrence that
3314     // does not pertain to this loop.
3315     if (Remainder && (AR->getLoop() == L || !isa<SCEVAddRecExpr>(Remainder))) {
3316       Ops.push_back(C ? SE.getMulExpr(C, Remainder) : Remainder);
3317       Remainder = nullptr;
3318     }
3319     if (Remainder != AR->getStart()) {
3320       if (!Remainder)
3321         Remainder = SE.getConstant(AR->getType(), 0);
3322       return SE.getAddRecExpr(Remainder,
3323                               AR->getStepRecurrence(SE),
3324                               AR->getLoop(),
3325                               //FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
3326                               SCEV::FlagAnyWrap);
3327     }
3328   } else if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
3329     // Break (C * (a + b + c)) into C*a + C*b + C*c.
3330     if (Mul->getNumOperands() != 2)
3331       return S;
3332     if (const SCEVConstant *Op0 =
3333         dyn_cast<SCEVConstant>(Mul->getOperand(0))) {
3334       C = C ? cast<SCEVConstant>(SE.getMulExpr(C, Op0)) : Op0;
3335       const SCEV *Remainder =
3336         CollectSubexprs(Mul->getOperand(1), C, Ops, L, SE, Depth+1);
3337       if (Remainder)
3338         Ops.push_back(SE.getMulExpr(C, Remainder));
3339       return nullptr;
3340     }
3341   }
3342   return S;
3343 }
3344 
3345 /// \brief Helper function for LSRInstance::GenerateReassociations.
3346 void LSRInstance::GenerateReassociationsImpl(LSRUse &LU, unsigned LUIdx,
3347                                              const Formula &Base,
3348                                              unsigned Depth, size_t Idx,
3349                                              bool IsScaledReg) {
3350   const SCEV *BaseReg = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx];
3351   SmallVector<const SCEV *, 8> AddOps;
3352   const SCEV *Remainder = CollectSubexprs(BaseReg, nullptr, AddOps, L, SE);
3353   if (Remainder)
3354     AddOps.push_back(Remainder);
3355 
3356   if (AddOps.size() == 1)
3357     return;
3358 
3359   for (SmallVectorImpl<const SCEV *>::const_iterator J = AddOps.begin(),
3360                                                      JE = AddOps.end();
3361        J != JE; ++J) {
3362 
3363     // Loop-variant "unknown" values are uninteresting; we won't be able to
3364     // do anything meaningful with them.
3365     if (isa<SCEVUnknown>(*J) && !SE.isLoopInvariant(*J, L))
3366       continue;
3367 
3368     // Don't pull a constant into a register if the constant could be folded
3369     // into an immediate field.
3370     if (isAlwaysFoldable(TTI, SE, LU.MinOffset, LU.MaxOffset, LU.Kind,
3371                          LU.AccessTy, *J, Base.getNumRegs() > 1))
3372       continue;
3373 
3374     // Collect all operands except *J.
3375     SmallVector<const SCEV *, 8> InnerAddOps(
3376         ((const SmallVector<const SCEV *, 8> &)AddOps).begin(), J);
3377     InnerAddOps.append(std::next(J),
3378                        ((const SmallVector<const SCEV *, 8> &)AddOps).end());
3379 
3380     // Don't leave just a constant behind in a register if the constant could
3381     // be folded into an immediate field.
3382     if (InnerAddOps.size() == 1 &&
3383         isAlwaysFoldable(TTI, SE, LU.MinOffset, LU.MaxOffset, LU.Kind,
3384                          LU.AccessTy, InnerAddOps[0], Base.getNumRegs() > 1))
3385       continue;
3386 
3387     const SCEV *InnerSum = SE.getAddExpr(InnerAddOps);
3388     if (InnerSum->isZero())
3389       continue;
3390     Formula F = Base;
3391 
3392     // Add the remaining pieces of the add back into the new formula.
3393     const SCEVConstant *InnerSumSC = dyn_cast<SCEVConstant>(InnerSum);
3394     if (InnerSumSC && SE.getTypeSizeInBits(InnerSumSC->getType()) <= 64 &&
3395         TTI.isLegalAddImmediate((uint64_t)F.UnfoldedOffset +
3396                                 InnerSumSC->getValue()->getZExtValue())) {
3397       F.UnfoldedOffset =
3398           (uint64_t)F.UnfoldedOffset + InnerSumSC->getValue()->getZExtValue();
3399       if (IsScaledReg)
3400         F.ScaledReg = nullptr;
3401       else
3402         F.BaseRegs.erase(F.BaseRegs.begin() + Idx);
3403     } else if (IsScaledReg)
3404       F.ScaledReg = InnerSum;
3405     else
3406       F.BaseRegs[Idx] = InnerSum;
3407 
3408     // Add J as its own register, or an unfolded immediate.
3409     const SCEVConstant *SC = dyn_cast<SCEVConstant>(*J);
3410     if (SC && SE.getTypeSizeInBits(SC->getType()) <= 64 &&
3411         TTI.isLegalAddImmediate((uint64_t)F.UnfoldedOffset +
3412                                 SC->getValue()->getZExtValue()))
3413       F.UnfoldedOffset =
3414           (uint64_t)F.UnfoldedOffset + SC->getValue()->getZExtValue();
3415     else
3416       F.BaseRegs.push_back(*J);
3417     // We may have changed the number of register in base regs, adjust the
3418     // formula accordingly.
3419     F.canonicalize();
3420 
3421     if (InsertFormula(LU, LUIdx, F))
3422       // If that formula hadn't been seen before, recurse to find more like
3423       // it.
3424       GenerateReassociations(LU, LUIdx, LU.Formulae.back(), Depth + 1);
3425   }
3426 }
3427 
3428 /// Split out subexpressions from adds and the bases of addrecs.
3429 void LSRInstance::GenerateReassociations(LSRUse &LU, unsigned LUIdx,
3430                                          Formula Base, unsigned Depth) {
3431   assert(Base.isCanonical() && "Input must be in the canonical form");
3432   // Arbitrarily cap recursion to protect compile time.
3433   if (Depth >= 3)
3434     return;
3435 
3436   for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3437     GenerateReassociationsImpl(LU, LUIdx, Base, Depth, i);
3438 
3439   if (Base.Scale == 1)
3440     GenerateReassociationsImpl(LU, LUIdx, Base, Depth,
3441                                /* Idx */ -1, /* IsScaledReg */ true);
3442 }
3443 
3444 ///  Generate a formula consisting of all of the loop-dominating registers added
3445 /// into a single register.
3446 void LSRInstance::GenerateCombinations(LSRUse &LU, unsigned LUIdx,
3447                                        Formula Base) {
3448   // This method is only interesting on a plurality of registers.
3449   if (Base.BaseRegs.size() + (Base.Scale == 1) <= 1)
3450     return;
3451 
3452   // Flatten the representation, i.e., reg1 + 1*reg2 => reg1 + reg2, before
3453   // processing the formula.
3454   Base.unscale();
3455   Formula F = Base;
3456   F.BaseRegs.clear();
3457   SmallVector<const SCEV *, 4> Ops;
3458   for (const SCEV *BaseReg : Base.BaseRegs) {
3459     if (SE.properlyDominates(BaseReg, L->getHeader()) &&
3460         !SE.hasComputableLoopEvolution(BaseReg, L))
3461       Ops.push_back(BaseReg);
3462     else
3463       F.BaseRegs.push_back(BaseReg);
3464   }
3465   if (Ops.size() > 1) {
3466     const SCEV *Sum = SE.getAddExpr(Ops);
3467     // TODO: If Sum is zero, it probably means ScalarEvolution missed an
3468     // opportunity to fold something. For now, just ignore such cases
3469     // rather than proceed with zero in a register.
3470     if (!Sum->isZero()) {
3471       F.BaseRegs.push_back(Sum);
3472       F.canonicalize();
3473       (void)InsertFormula(LU, LUIdx, F);
3474     }
3475   }
3476 }
3477 
3478 /// \brief Helper function for LSRInstance::GenerateSymbolicOffsets.
3479 void LSRInstance::GenerateSymbolicOffsetsImpl(LSRUse &LU, unsigned LUIdx,
3480                                               const Formula &Base, size_t Idx,
3481                                               bool IsScaledReg) {
3482   const SCEV *G = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx];
3483   GlobalValue *GV = ExtractSymbol(G, SE);
3484   if (G->isZero() || !GV)
3485     return;
3486   Formula F = Base;
3487   F.BaseGV = GV;
3488   if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F))
3489     return;
3490   if (IsScaledReg)
3491     F.ScaledReg = G;
3492   else
3493     F.BaseRegs[Idx] = G;
3494   (void)InsertFormula(LU, LUIdx, F);
3495 }
3496 
3497 /// Generate reuse formulae using symbolic offsets.
3498 void LSRInstance::GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx,
3499                                           Formula Base) {
3500   // We can't add a symbolic offset if the address already contains one.
3501   if (Base.BaseGV) return;
3502 
3503   for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3504     GenerateSymbolicOffsetsImpl(LU, LUIdx, Base, i);
3505   if (Base.Scale == 1)
3506     GenerateSymbolicOffsetsImpl(LU, LUIdx, Base, /* Idx */ -1,
3507                                 /* IsScaledReg */ true);
3508 }
3509 
3510 /// \brief Helper function for LSRInstance::GenerateConstantOffsets.
3511 void LSRInstance::GenerateConstantOffsetsImpl(
3512     LSRUse &LU, unsigned LUIdx, const Formula &Base,
3513     const SmallVectorImpl<int64_t> &Worklist, size_t Idx, bool IsScaledReg) {
3514   const SCEV *G = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx];
3515   for (int64_t Offset : Worklist) {
3516     Formula F = Base;
3517     F.BaseOffset = (uint64_t)Base.BaseOffset - Offset;
3518     if (isLegalUse(TTI, LU.MinOffset - Offset, LU.MaxOffset - Offset, LU.Kind,
3519                    LU.AccessTy, F)) {
3520       // Add the offset to the base register.
3521       const SCEV *NewG = SE.getAddExpr(SE.getConstant(G->getType(), Offset), G);
3522       // If it cancelled out, drop the base register, otherwise update it.
3523       if (NewG->isZero()) {
3524         if (IsScaledReg) {
3525           F.Scale = 0;
3526           F.ScaledReg = nullptr;
3527         } else
3528           F.deleteBaseReg(F.BaseRegs[Idx]);
3529         F.canonicalize();
3530       } else if (IsScaledReg)
3531         F.ScaledReg = NewG;
3532       else
3533         F.BaseRegs[Idx] = NewG;
3534 
3535       (void)InsertFormula(LU, LUIdx, F);
3536     }
3537   }
3538 
3539   int64_t Imm = ExtractImmediate(G, SE);
3540   if (G->isZero() || Imm == 0)
3541     return;
3542   Formula F = Base;
3543   F.BaseOffset = (uint64_t)F.BaseOffset + Imm;
3544   if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F))
3545     return;
3546   if (IsScaledReg)
3547     F.ScaledReg = G;
3548   else
3549     F.BaseRegs[Idx] = G;
3550   (void)InsertFormula(LU, LUIdx, F);
3551 }
3552 
3553 /// GenerateConstantOffsets - Generate reuse formulae using symbolic offsets.
3554 void LSRInstance::GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx,
3555                                           Formula Base) {
3556   // TODO: For now, just add the min and max offset, because it usually isn't
3557   // worthwhile looking at everything inbetween.
3558   SmallVector<int64_t, 2> Worklist;
3559   Worklist.push_back(LU.MinOffset);
3560   if (LU.MaxOffset != LU.MinOffset)
3561     Worklist.push_back(LU.MaxOffset);
3562 
3563   for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3564     GenerateConstantOffsetsImpl(LU, LUIdx, Base, Worklist, i);
3565   if (Base.Scale == 1)
3566     GenerateConstantOffsetsImpl(LU, LUIdx, Base, Worklist, /* Idx */ -1,
3567                                 /* IsScaledReg */ true);
3568 }
3569 
3570 /// For ICmpZero, check to see if we can scale up the comparison. For example, x
3571 /// == y -> x*c == y*c.
3572 void LSRInstance::GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx,
3573                                          Formula Base) {
3574   if (LU.Kind != LSRUse::ICmpZero) return;
3575 
3576   // Determine the integer type for the base formula.
3577   Type *IntTy = Base.getType();
3578   if (!IntTy) return;
3579   if (SE.getTypeSizeInBits(IntTy) > 64) return;
3580 
3581   // Don't do this if there is more than one offset.
3582   if (LU.MinOffset != LU.MaxOffset) return;
3583 
3584   assert(!Base.BaseGV && "ICmpZero use is not legal!");
3585 
3586   // Check each interesting stride.
3587   for (int64_t Factor : Factors) {
3588     // Check that the multiplication doesn't overflow.
3589     if (Base.BaseOffset == INT64_MIN && Factor == -1)
3590       continue;
3591     int64_t NewBaseOffset = (uint64_t)Base.BaseOffset * Factor;
3592     if (NewBaseOffset / Factor != Base.BaseOffset)
3593       continue;
3594     // If the offset will be truncated at this use, check that it is in bounds.
3595     if (!IntTy->isPointerTy() &&
3596         !ConstantInt::isValueValidForType(IntTy, NewBaseOffset))
3597       continue;
3598 
3599     // Check that multiplying with the use offset doesn't overflow.
3600     int64_t Offset = LU.MinOffset;
3601     if (Offset == INT64_MIN && Factor == -1)
3602       continue;
3603     Offset = (uint64_t)Offset * Factor;
3604     if (Offset / Factor != LU.MinOffset)
3605       continue;
3606     // If the offset will be truncated at this use, check that it is in bounds.
3607     if (!IntTy->isPointerTy() &&
3608         !ConstantInt::isValueValidForType(IntTy, Offset))
3609       continue;
3610 
3611     Formula F = Base;
3612     F.BaseOffset = NewBaseOffset;
3613 
3614     // Check that this scale is legal.
3615     if (!isLegalUse(TTI, Offset, Offset, LU.Kind, LU.AccessTy, F))
3616       continue;
3617 
3618     // Compensate for the use having MinOffset built into it.
3619     F.BaseOffset = (uint64_t)F.BaseOffset + Offset - LU.MinOffset;
3620 
3621     const SCEV *FactorS = SE.getConstant(IntTy, Factor);
3622 
3623     // Check that multiplying with each base register doesn't overflow.
3624     for (size_t i = 0, e = F.BaseRegs.size(); i != e; ++i) {
3625       F.BaseRegs[i] = SE.getMulExpr(F.BaseRegs[i], FactorS);
3626       if (getExactSDiv(F.BaseRegs[i], FactorS, SE) != Base.BaseRegs[i])
3627         goto next;
3628     }
3629 
3630     // Check that multiplying with the scaled register doesn't overflow.
3631     if (F.ScaledReg) {
3632       F.ScaledReg = SE.getMulExpr(F.ScaledReg, FactorS);
3633       if (getExactSDiv(F.ScaledReg, FactorS, SE) != Base.ScaledReg)
3634         continue;
3635     }
3636 
3637     // Check that multiplying with the unfolded offset doesn't overflow.
3638     if (F.UnfoldedOffset != 0) {
3639       if (F.UnfoldedOffset == INT64_MIN && Factor == -1)
3640         continue;
3641       F.UnfoldedOffset = (uint64_t)F.UnfoldedOffset * Factor;
3642       if (F.UnfoldedOffset / Factor != Base.UnfoldedOffset)
3643         continue;
3644       // If the offset will be truncated, check that it is in bounds.
3645       if (!IntTy->isPointerTy() &&
3646           !ConstantInt::isValueValidForType(IntTy, F.UnfoldedOffset))
3647         continue;
3648     }
3649 
3650     // If we make it here and it's legal, add it.
3651     (void)InsertFormula(LU, LUIdx, F);
3652   next:;
3653   }
3654 }
3655 
3656 /// Generate stride factor reuse formulae by making use of scaled-offset address
3657 /// modes, for example.
3658 void LSRInstance::GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base) {
3659   // Determine the integer type for the base formula.
3660   Type *IntTy = Base.getType();
3661   if (!IntTy) return;
3662 
3663   // If this Formula already has a scaled register, we can't add another one.
3664   // Try to unscale the formula to generate a better scale.
3665   if (Base.Scale != 0 && !Base.unscale())
3666     return;
3667 
3668   assert(Base.Scale == 0 && "unscale did not did its job!");
3669 
3670   // Check each interesting stride.
3671   for (int64_t Factor : Factors) {
3672     Base.Scale = Factor;
3673     Base.HasBaseReg = Base.BaseRegs.size() > 1;
3674     // Check whether this scale is going to be legal.
3675     if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
3676                     Base)) {
3677       // As a special-case, handle special out-of-loop Basic users specially.
3678       // TODO: Reconsider this special case.
3679       if (LU.Kind == LSRUse::Basic &&
3680           isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LSRUse::Special,
3681                      LU.AccessTy, Base) &&
3682           LU.AllFixupsOutsideLoop)
3683         LU.Kind = LSRUse::Special;
3684       else
3685         continue;
3686     }
3687     // For an ICmpZero, negating a solitary base register won't lead to
3688     // new solutions.
3689     if (LU.Kind == LSRUse::ICmpZero &&
3690         !Base.HasBaseReg && Base.BaseOffset == 0 && !Base.BaseGV)
3691       continue;
3692     // For each addrec base reg, apply the scale, if possible.
3693     for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3694       if (const SCEVAddRecExpr *AR =
3695             dyn_cast<SCEVAddRecExpr>(Base.BaseRegs[i])) {
3696         const SCEV *FactorS = SE.getConstant(IntTy, Factor);
3697         if (FactorS->isZero())
3698           continue;
3699         // Divide out the factor, ignoring high bits, since we'll be
3700         // scaling the value back up in the end.
3701         if (const SCEV *Quotient = getExactSDiv(AR, FactorS, SE, true)) {
3702           // TODO: This could be optimized to avoid all the copying.
3703           Formula F = Base;
3704           F.ScaledReg = Quotient;
3705           F.deleteBaseReg(F.BaseRegs[i]);
3706           // The canonical representation of 1*reg is reg, which is already in
3707           // Base. In that case, do not try to insert the formula, it will be
3708           // rejected anyway.
3709           if (F.Scale == 1 && F.BaseRegs.empty())
3710             continue;
3711           (void)InsertFormula(LU, LUIdx, F);
3712         }
3713       }
3714   }
3715 }
3716 
3717 /// Generate reuse formulae from different IV types.
3718 void LSRInstance::GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base) {
3719   // Don't bother truncating symbolic values.
3720   if (Base.BaseGV) return;
3721 
3722   // Determine the integer type for the base formula.
3723   Type *DstTy = Base.getType();
3724   if (!DstTy) return;
3725   DstTy = SE.getEffectiveSCEVType(DstTy);
3726 
3727   for (Type *SrcTy : Types) {
3728     if (SrcTy != DstTy && TTI.isTruncateFree(SrcTy, DstTy)) {
3729       Formula F = Base;
3730 
3731       if (F.ScaledReg) F.ScaledReg = SE.getAnyExtendExpr(F.ScaledReg, SrcTy);
3732       for (const SCEV *&BaseReg : F.BaseRegs)
3733         BaseReg = SE.getAnyExtendExpr(BaseReg, SrcTy);
3734 
3735       // TODO: This assumes we've done basic processing on all uses and
3736       // have an idea what the register usage is.
3737       if (!F.hasRegsUsedByUsesOtherThan(LUIdx, RegUses))
3738         continue;
3739 
3740       (void)InsertFormula(LU, LUIdx, F);
3741     }
3742   }
3743 }
3744 
3745 namespace {
3746 
3747 /// Helper class for GenerateCrossUseConstantOffsets. It's used to defer
3748 /// modifications so that the search phase doesn't have to worry about the data
3749 /// structures moving underneath it.
3750 struct WorkItem {
3751   size_t LUIdx;
3752   int64_t Imm;
3753   const SCEV *OrigReg;
3754 
3755   WorkItem(size_t LI, int64_t I, const SCEV *R)
3756     : LUIdx(LI), Imm(I), OrigReg(R) {}
3757 
3758   void print(raw_ostream &OS) const;
3759   void dump() const;
3760 };
3761 
3762 } // end anonymous namespace
3763 
3764 void WorkItem::print(raw_ostream &OS) const {
3765   OS << "in formulae referencing " << *OrigReg << " in use " << LUIdx
3766      << " , add offset " << Imm;
3767 }
3768 
3769 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3770 LLVM_DUMP_METHOD void WorkItem::dump() const {
3771   print(errs()); errs() << '\n';
3772 }
3773 #endif
3774 
3775 /// Look for registers which are a constant distance apart and try to form reuse
3776 /// opportunities between them.
3777 void LSRInstance::GenerateCrossUseConstantOffsets() {
3778   // Group the registers by their value without any added constant offset.
3779   typedef std::map<int64_t, const SCEV *> ImmMapTy;
3780   DenseMap<const SCEV *, ImmMapTy> Map;
3781   DenseMap<const SCEV *, SmallBitVector> UsedByIndicesMap;
3782   SmallVector<const SCEV *, 8> Sequence;
3783   for (const SCEV *Use : RegUses) {
3784     const SCEV *Reg = Use; // Make a copy for ExtractImmediate to modify.
3785     int64_t Imm = ExtractImmediate(Reg, SE);
3786     auto Pair = Map.insert(std::make_pair(Reg, ImmMapTy()));
3787     if (Pair.second)
3788       Sequence.push_back(Reg);
3789     Pair.first->second.insert(std::make_pair(Imm, Use));
3790     UsedByIndicesMap[Reg] |= RegUses.getUsedByIndices(Use);
3791   }
3792 
3793   // Now examine each set of registers with the same base value. Build up
3794   // a list of work to do and do the work in a separate step so that we're
3795   // not adding formulae and register counts while we're searching.
3796   SmallVector<WorkItem, 32> WorkItems;
3797   SmallSet<std::pair<size_t, int64_t>, 32> UniqueItems;
3798   for (const SCEV *Reg : Sequence) {
3799     const ImmMapTy &Imms = Map.find(Reg)->second;
3800 
3801     // It's not worthwhile looking for reuse if there's only one offset.
3802     if (Imms.size() == 1)
3803       continue;
3804 
3805     DEBUG(dbgs() << "Generating cross-use offsets for " << *Reg << ':';
3806           for (const auto &Entry : Imms)
3807             dbgs() << ' ' << Entry.first;
3808           dbgs() << '\n');
3809 
3810     // Examine each offset.
3811     for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
3812          J != JE; ++J) {
3813       const SCEV *OrigReg = J->second;
3814 
3815       int64_t JImm = J->first;
3816       const SmallBitVector &UsedByIndices = RegUses.getUsedByIndices(OrigReg);
3817 
3818       if (!isa<SCEVConstant>(OrigReg) &&
3819           UsedByIndicesMap[Reg].count() == 1) {
3820         DEBUG(dbgs() << "Skipping cross-use reuse for " << *OrigReg << '\n');
3821         continue;
3822       }
3823 
3824       // Conservatively examine offsets between this orig reg a few selected
3825       // other orig regs.
3826       ImmMapTy::const_iterator OtherImms[] = {
3827         Imms.begin(), std::prev(Imms.end()),
3828         Imms.lower_bound((Imms.begin()->first + std::prev(Imms.end())->first) /
3829                          2)
3830       };
3831       for (size_t i = 0, e = array_lengthof(OtherImms); i != e; ++i) {
3832         ImmMapTy::const_iterator M = OtherImms[i];
3833         if (M == J || M == JE) continue;
3834 
3835         // Compute the difference between the two.
3836         int64_t Imm = (uint64_t)JImm - M->first;
3837         for (int LUIdx = UsedByIndices.find_first(); LUIdx != -1;
3838              LUIdx = UsedByIndices.find_next(LUIdx))
3839           // Make a memo of this use, offset, and register tuple.
3840           if (UniqueItems.insert(std::make_pair(LUIdx, Imm)).second)
3841             WorkItems.push_back(WorkItem(LUIdx, Imm, OrigReg));
3842       }
3843     }
3844   }
3845 
3846   Map.clear();
3847   Sequence.clear();
3848   UsedByIndicesMap.clear();
3849   UniqueItems.clear();
3850 
3851   // Now iterate through the worklist and add new formulae.
3852   for (const WorkItem &WI : WorkItems) {
3853     size_t LUIdx = WI.LUIdx;
3854     LSRUse &LU = Uses[LUIdx];
3855     int64_t Imm = WI.Imm;
3856     const SCEV *OrigReg = WI.OrigReg;
3857 
3858     Type *IntTy = SE.getEffectiveSCEVType(OrigReg->getType());
3859     const SCEV *NegImmS = SE.getSCEV(ConstantInt::get(IntTy, -(uint64_t)Imm));
3860     unsigned BitWidth = SE.getTypeSizeInBits(IntTy);
3861 
3862     // TODO: Use a more targeted data structure.
3863     for (size_t L = 0, LE = LU.Formulae.size(); L != LE; ++L) {
3864       Formula F = LU.Formulae[L];
3865       // FIXME: The code for the scaled and unscaled registers looks
3866       // very similar but slightly different. Investigate if they
3867       // could be merged. That way, we would not have to unscale the
3868       // Formula.
3869       F.unscale();
3870       // Use the immediate in the scaled register.
3871       if (F.ScaledReg == OrigReg) {
3872         int64_t Offset = (uint64_t)F.BaseOffset + Imm * (uint64_t)F.Scale;
3873         // Don't create 50 + reg(-50).
3874         if (F.referencesReg(SE.getSCEV(
3875                    ConstantInt::get(IntTy, -(uint64_t)Offset))))
3876           continue;
3877         Formula NewF = F;
3878         NewF.BaseOffset = Offset;
3879         if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
3880                         NewF))
3881           continue;
3882         NewF.ScaledReg = SE.getAddExpr(NegImmS, NewF.ScaledReg);
3883 
3884         // If the new scale is a constant in a register, and adding the constant
3885         // value to the immediate would produce a value closer to zero than the
3886         // immediate itself, then the formula isn't worthwhile.
3887         if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewF.ScaledReg))
3888           if (C->getValue()->isNegative() != (NewF.BaseOffset < 0) &&
3889               (C->getAPInt().abs() * APInt(BitWidth, F.Scale))
3890                   .ule(std::abs(NewF.BaseOffset)))
3891             continue;
3892 
3893         // OK, looks good.
3894         NewF.canonicalize();
3895         (void)InsertFormula(LU, LUIdx, NewF);
3896       } else {
3897         // Use the immediate in a base register.
3898         for (size_t N = 0, NE = F.BaseRegs.size(); N != NE; ++N) {
3899           const SCEV *BaseReg = F.BaseRegs[N];
3900           if (BaseReg != OrigReg)
3901             continue;
3902           Formula NewF = F;
3903           NewF.BaseOffset = (uint64_t)NewF.BaseOffset + Imm;
3904           if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset,
3905                           LU.Kind, LU.AccessTy, NewF)) {
3906             if (!TTI.isLegalAddImmediate((uint64_t)NewF.UnfoldedOffset + Imm))
3907               continue;
3908             NewF = F;
3909             NewF.UnfoldedOffset = (uint64_t)NewF.UnfoldedOffset + Imm;
3910           }
3911           NewF.BaseRegs[N] = SE.getAddExpr(NegImmS, BaseReg);
3912 
3913           // If the new formula has a constant in a register, and adding the
3914           // constant value to the immediate would produce a value closer to
3915           // zero than the immediate itself, then the formula isn't worthwhile.
3916           for (const SCEV *NewReg : NewF.BaseRegs)
3917             if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewReg))
3918               if ((C->getAPInt() + NewF.BaseOffset)
3919                       .abs()
3920                       .slt(std::abs(NewF.BaseOffset)) &&
3921                   (C->getAPInt() + NewF.BaseOffset).countTrailingZeros() >=
3922                       countTrailingZeros<uint64_t>(NewF.BaseOffset))
3923                 goto skip_formula;
3924 
3925           // Ok, looks good.
3926           NewF.canonicalize();
3927           (void)InsertFormula(LU, LUIdx, NewF);
3928           break;
3929         skip_formula:;
3930         }
3931       }
3932     }
3933   }
3934 }
3935 
3936 /// Generate formulae for each use.
3937 void
3938 LSRInstance::GenerateAllReuseFormulae() {
3939   // This is split into multiple loops so that hasRegsUsedByUsesOtherThan
3940   // queries are more precise.
3941   for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3942     LSRUse &LU = Uses[LUIdx];
3943     for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3944       GenerateReassociations(LU, LUIdx, LU.Formulae[i]);
3945     for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3946       GenerateCombinations(LU, LUIdx, LU.Formulae[i]);
3947   }
3948   for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3949     LSRUse &LU = Uses[LUIdx];
3950     for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3951       GenerateSymbolicOffsets(LU, LUIdx, LU.Formulae[i]);
3952     for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3953       GenerateConstantOffsets(LU, LUIdx, LU.Formulae[i]);
3954     for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3955       GenerateICmpZeroScales(LU, LUIdx, LU.Formulae[i]);
3956     for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3957       GenerateScales(LU, LUIdx, LU.Formulae[i]);
3958   }
3959   for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3960     LSRUse &LU = Uses[LUIdx];
3961     for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3962       GenerateTruncates(LU, LUIdx, LU.Formulae[i]);
3963   }
3964 
3965   GenerateCrossUseConstantOffsets();
3966 
3967   DEBUG(dbgs() << "\n"
3968                   "After generating reuse formulae:\n";
3969         print_uses(dbgs()));
3970 }
3971 
3972 /// If there are multiple formulae with the same set of registers used
3973 /// by other uses, pick the best one and delete the others.
3974 void LSRInstance::FilterOutUndesirableDedicatedRegisters() {
3975   DenseSet<const SCEV *> VisitedRegs;
3976   SmallPtrSet<const SCEV *, 16> Regs;
3977   SmallPtrSet<const SCEV *, 16> LoserRegs;
3978 #ifndef NDEBUG
3979   bool ChangedFormulae = false;
3980 #endif
3981 
3982   // Collect the best formula for each unique set of shared registers. This
3983   // is reset for each use.
3984   typedef DenseMap<SmallVector<const SCEV *, 4>, size_t, UniquifierDenseMapInfo>
3985     BestFormulaeTy;
3986   BestFormulaeTy BestFormulae;
3987 
3988   for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3989     LSRUse &LU = Uses[LUIdx];
3990     DEBUG(dbgs() << "Filtering for use "; LU.print(dbgs()); dbgs() << '\n');
3991 
3992     bool Any = false;
3993     for (size_t FIdx = 0, NumForms = LU.Formulae.size();
3994          FIdx != NumForms; ++FIdx) {
3995       Formula &F = LU.Formulae[FIdx];
3996 
3997       // Some formulas are instant losers. For example, they may depend on
3998       // nonexistent AddRecs from other loops. These need to be filtered
3999       // immediately, otherwise heuristics could choose them over others leading
4000       // to an unsatisfactory solution. Passing LoserRegs into RateFormula here
4001       // avoids the need to recompute this information across formulae using the
4002       // same bad AddRec. Passing LoserRegs is also essential unless we remove
4003       // the corresponding bad register from the Regs set.
4004       Cost CostF;
4005       Regs.clear();
4006       CostF.RateFormula(TTI, F, Regs, VisitedRegs, L, SE, DT, LU, &LoserRegs);
4007       if (CostF.isLoser()) {
4008         // During initial formula generation, undesirable formulae are generated
4009         // by uses within other loops that have some non-trivial address mode or
4010         // use the postinc form of the IV. LSR needs to provide these formulae
4011         // as the basis of rediscovering the desired formula that uses an AddRec
4012         // corresponding to the existing phi. Once all formulae have been
4013         // generated, these initial losers may be pruned.
4014         DEBUG(dbgs() << "  Filtering loser "; F.print(dbgs());
4015               dbgs() << "\n");
4016       }
4017       else {
4018         SmallVector<const SCEV *, 4> Key;
4019         for (const SCEV *Reg : F.BaseRegs) {
4020           if (RegUses.isRegUsedByUsesOtherThan(Reg, LUIdx))
4021             Key.push_back(Reg);
4022         }
4023         if (F.ScaledReg &&
4024             RegUses.isRegUsedByUsesOtherThan(F.ScaledReg, LUIdx))
4025           Key.push_back(F.ScaledReg);
4026         // Unstable sort by host order ok, because this is only used for
4027         // uniquifying.
4028         std::sort(Key.begin(), Key.end());
4029 
4030         std::pair<BestFormulaeTy::const_iterator, bool> P =
4031           BestFormulae.insert(std::make_pair(Key, FIdx));
4032         if (P.second)
4033           continue;
4034 
4035         Formula &Best = LU.Formulae[P.first->second];
4036 
4037         Cost CostBest;
4038         Regs.clear();
4039         CostBest.RateFormula(TTI, Best, Regs, VisitedRegs, L, SE, DT, LU);
4040         if (CostF < CostBest)
4041           std::swap(F, Best);
4042         DEBUG(dbgs() << "  Filtering out formula "; F.print(dbgs());
4043               dbgs() << "\n"
4044                         "    in favor of formula "; Best.print(dbgs());
4045               dbgs() << '\n');
4046       }
4047 #ifndef NDEBUG
4048       ChangedFormulae = true;
4049 #endif
4050       LU.DeleteFormula(F);
4051       --FIdx;
4052       --NumForms;
4053       Any = true;
4054     }
4055 
4056     // Now that we've filtered out some formulae, recompute the Regs set.
4057     if (Any)
4058       LU.RecomputeRegs(LUIdx, RegUses);
4059 
4060     // Reset this to prepare for the next use.
4061     BestFormulae.clear();
4062   }
4063 
4064   DEBUG(if (ChangedFormulae) {
4065           dbgs() << "\n"
4066                     "After filtering out undesirable candidates:\n";
4067           print_uses(dbgs());
4068         });
4069 }
4070 
4071 // This is a rough guess that seems to work fairly well.
4072 static const size_t ComplexityLimit = UINT16_MAX;
4073 
4074 /// Estimate the worst-case number of solutions the solver might have to
4075 /// consider. It almost never considers this many solutions because it prune the
4076 /// search space, but the pruning isn't always sufficient.
4077 size_t LSRInstance::EstimateSearchSpaceComplexity() const {
4078   size_t Power = 1;
4079   for (const LSRUse &LU : Uses) {
4080     size_t FSize = LU.Formulae.size();
4081     if (FSize >= ComplexityLimit) {
4082       Power = ComplexityLimit;
4083       break;
4084     }
4085     Power *= FSize;
4086     if (Power >= ComplexityLimit)
4087       break;
4088   }
4089   return Power;
4090 }
4091 
4092 /// When one formula uses a superset of the registers of another formula, it
4093 /// won't help reduce register pressure (though it may not necessarily hurt
4094 /// register pressure); remove it to simplify the system.
4095 void LSRInstance::NarrowSearchSpaceByDetectingSupersets() {
4096   if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
4097     DEBUG(dbgs() << "The search space is too complex.\n");
4098 
4099     DEBUG(dbgs() << "Narrowing the search space by eliminating formulae "
4100                     "which use a superset of registers used by other "
4101                     "formulae.\n");
4102 
4103     for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4104       LSRUse &LU = Uses[LUIdx];
4105       bool Any = false;
4106       for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
4107         Formula &F = LU.Formulae[i];
4108         // Look for a formula with a constant or GV in a register. If the use
4109         // also has a formula with that same value in an immediate field,
4110         // delete the one that uses a register.
4111         for (SmallVectorImpl<const SCEV *>::const_iterator
4112              I = F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I) {
4113           if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*I)) {
4114             Formula NewF = F;
4115             NewF.BaseOffset += C->getValue()->getSExtValue();
4116             NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
4117                                 (I - F.BaseRegs.begin()));
4118             if (LU.HasFormulaWithSameRegs(NewF)) {
4119               DEBUG(dbgs() << "  Deleting "; F.print(dbgs()); dbgs() << '\n');
4120               LU.DeleteFormula(F);
4121               --i;
4122               --e;
4123               Any = true;
4124               break;
4125             }
4126           } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(*I)) {
4127             if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue()))
4128               if (!F.BaseGV) {
4129                 Formula NewF = F;
4130                 NewF.BaseGV = GV;
4131                 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
4132                                     (I - F.BaseRegs.begin()));
4133                 if (LU.HasFormulaWithSameRegs(NewF)) {
4134                   DEBUG(dbgs() << "  Deleting "; F.print(dbgs());
4135                         dbgs() << '\n');
4136                   LU.DeleteFormula(F);
4137                   --i;
4138                   --e;
4139                   Any = true;
4140                   break;
4141                 }
4142               }
4143           }
4144         }
4145       }
4146       if (Any)
4147         LU.RecomputeRegs(LUIdx, RegUses);
4148     }
4149 
4150     DEBUG(dbgs() << "After pre-selection:\n";
4151           print_uses(dbgs()));
4152   }
4153 }
4154 
4155 /// When there are many registers for expressions like A, A+1, A+2, etc.,
4156 /// allocate a single register for them.
4157 void LSRInstance::NarrowSearchSpaceByCollapsingUnrolledCode() {
4158   if (EstimateSearchSpaceComplexity() < ComplexityLimit)
4159     return;
4160 
4161   DEBUG(dbgs() << "The search space is too complex.\n"
4162                   "Narrowing the search space by assuming that uses separated "
4163                   "by a constant offset will use the same registers.\n");
4164 
4165   // This is especially useful for unrolled loops.
4166 
4167   for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4168     LSRUse &LU = Uses[LUIdx];
4169     for (const Formula &F : LU.Formulae) {
4170       if (F.BaseOffset == 0 || (F.Scale != 0 && F.Scale != 1))
4171         continue;
4172 
4173       LSRUse *LUThatHas = FindUseWithSimilarFormula(F, LU);
4174       if (!LUThatHas)
4175         continue;
4176 
4177       if (!reconcileNewOffset(*LUThatHas, F.BaseOffset, /*HasBaseReg=*/ false,
4178                               LU.Kind, LU.AccessTy))
4179         continue;
4180 
4181       DEBUG(dbgs() << "  Deleting use "; LU.print(dbgs()); dbgs() << '\n');
4182 
4183       LUThatHas->AllFixupsOutsideLoop &= LU.AllFixupsOutsideLoop;
4184 
4185       // Transfer the fixups of LU to LUThatHas.
4186       for (LSRFixup &Fixup : LU.Fixups) {
4187         Fixup.Offset += F.BaseOffset;
4188         LUThatHas->pushFixup(Fixup);
4189         DEBUG(dbgs() << "New fixup has offset " << Fixup.Offset << '\n');
4190       }
4191 
4192       // Delete formulae from the new use which are no longer legal.
4193       bool Any = false;
4194       for (size_t i = 0, e = LUThatHas->Formulae.size(); i != e; ++i) {
4195         Formula &F = LUThatHas->Formulae[i];
4196         if (!isLegalUse(TTI, LUThatHas->MinOffset, LUThatHas->MaxOffset,
4197                         LUThatHas->Kind, LUThatHas->AccessTy, F)) {
4198           DEBUG(dbgs() << "  Deleting "; F.print(dbgs());
4199                 dbgs() << '\n');
4200           LUThatHas->DeleteFormula(F);
4201           --i;
4202           --e;
4203           Any = true;
4204         }
4205       }
4206 
4207       if (Any)
4208         LUThatHas->RecomputeRegs(LUThatHas - &Uses.front(), RegUses);
4209 
4210       // Delete the old use.
4211       DeleteUse(LU, LUIdx);
4212       --LUIdx;
4213       --NumUses;
4214       break;
4215     }
4216   }
4217 
4218   DEBUG(dbgs() << "After pre-selection:\n"; print_uses(dbgs()));
4219 }
4220 
4221 /// Call FilterOutUndesirableDedicatedRegisters again, if necessary, now that
4222 /// we've done more filtering, as it may be able to find more formulae to
4223 /// eliminate.
4224 void LSRInstance::NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters(){
4225   if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
4226     DEBUG(dbgs() << "The search space is too complex.\n");
4227 
4228     DEBUG(dbgs() << "Narrowing the search space by re-filtering out "
4229                     "undesirable dedicated registers.\n");
4230 
4231     FilterOutUndesirableDedicatedRegisters();
4232 
4233     DEBUG(dbgs() << "After pre-selection:\n";
4234           print_uses(dbgs()));
4235   }
4236 }
4237 
4238 /// Pick a register which seems likely to be profitable, and then in any use
4239 /// which has any reference to that register, delete all formulae which do not
4240 /// reference that register.
4241 void LSRInstance::NarrowSearchSpaceByPickingWinnerRegs() {
4242   // With all other options exhausted, loop until the system is simple
4243   // enough to handle.
4244   SmallPtrSet<const SCEV *, 4> Taken;
4245   while (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
4246     // Ok, we have too many of formulae on our hands to conveniently handle.
4247     // Use a rough heuristic to thin out the list.
4248     DEBUG(dbgs() << "The search space is too complex.\n");
4249 
4250     // Pick the register which is used by the most LSRUses, which is likely
4251     // to be a good reuse register candidate.
4252     const SCEV *Best = nullptr;
4253     unsigned BestNum = 0;
4254     for (const SCEV *Reg : RegUses) {
4255       if (Taken.count(Reg))
4256         continue;
4257       if (!Best) {
4258         Best = Reg;
4259         BestNum = RegUses.getUsedByIndices(Reg).count();
4260       } else {
4261         unsigned Count = RegUses.getUsedByIndices(Reg).count();
4262         if (Count > BestNum) {
4263           Best = Reg;
4264           BestNum = Count;
4265         }
4266       }
4267     }
4268 
4269     DEBUG(dbgs() << "Narrowing the search space by assuming " << *Best
4270                  << " will yield profitable reuse.\n");
4271     Taken.insert(Best);
4272 
4273     // In any use with formulae which references this register, delete formulae
4274     // which don't reference it.
4275     for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4276       LSRUse &LU = Uses[LUIdx];
4277       if (!LU.Regs.count(Best)) continue;
4278 
4279       bool Any = false;
4280       for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
4281         Formula &F = LU.Formulae[i];
4282         if (!F.referencesReg(Best)) {
4283           DEBUG(dbgs() << "  Deleting "; F.print(dbgs()); dbgs() << '\n');
4284           LU.DeleteFormula(F);
4285           --e;
4286           --i;
4287           Any = true;
4288           assert(e != 0 && "Use has no formulae left! Is Regs inconsistent?");
4289           continue;
4290         }
4291       }
4292 
4293       if (Any)
4294         LU.RecomputeRegs(LUIdx, RegUses);
4295     }
4296 
4297     DEBUG(dbgs() << "After pre-selection:\n";
4298           print_uses(dbgs()));
4299   }
4300 }
4301 
4302 /// If there are an extraordinary number of formulae to choose from, use some
4303 /// rough heuristics to prune down the number of formulae. This keeps the main
4304 /// solver from taking an extraordinary amount of time in some worst-case
4305 /// scenarios.
4306 void LSRInstance::NarrowSearchSpaceUsingHeuristics() {
4307   NarrowSearchSpaceByDetectingSupersets();
4308   NarrowSearchSpaceByCollapsingUnrolledCode();
4309   NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
4310   NarrowSearchSpaceByPickingWinnerRegs();
4311 }
4312 
4313 /// This is the recursive solver.
4314 void LSRInstance::SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
4315                                Cost &SolutionCost,
4316                                SmallVectorImpl<const Formula *> &Workspace,
4317                                const Cost &CurCost,
4318                                const SmallPtrSet<const SCEV *, 16> &CurRegs,
4319                                DenseSet<const SCEV *> &VisitedRegs) const {
4320   // Some ideas:
4321   //  - prune more:
4322   //    - use more aggressive filtering
4323   //    - sort the formula so that the most profitable solutions are found first
4324   //    - sort the uses too
4325   //  - search faster:
4326   //    - don't compute a cost, and then compare. compare while computing a cost
4327   //      and bail early.
4328   //    - track register sets with SmallBitVector
4329 
4330   const LSRUse &LU = Uses[Workspace.size()];
4331 
4332   // If this use references any register that's already a part of the
4333   // in-progress solution, consider it a requirement that a formula must
4334   // reference that register in order to be considered. This prunes out
4335   // unprofitable searching.
4336   SmallSetVector<const SCEV *, 4> ReqRegs;
4337   for (const SCEV *S : CurRegs)
4338     if (LU.Regs.count(S))
4339       ReqRegs.insert(S);
4340 
4341   SmallPtrSet<const SCEV *, 16> NewRegs;
4342   Cost NewCost;
4343   for (const Formula &F : LU.Formulae) {
4344     // Ignore formulae which may not be ideal in terms of register reuse of
4345     // ReqRegs.  The formula should use all required registers before
4346     // introducing new ones.
4347     int NumReqRegsToFind = std::min(F.getNumRegs(), ReqRegs.size());
4348     for (const SCEV *Reg : ReqRegs) {
4349       if ((F.ScaledReg && F.ScaledReg == Reg) ||
4350           is_contained(F.BaseRegs, Reg)) {
4351         --NumReqRegsToFind;
4352         if (NumReqRegsToFind == 0)
4353           break;
4354       }
4355     }
4356     if (NumReqRegsToFind != 0) {
4357       // If none of the formulae satisfied the required registers, then we could
4358       // clear ReqRegs and try again. Currently, we simply give up in this case.
4359       continue;
4360     }
4361 
4362     // Evaluate the cost of the current formula. If it's already worse than
4363     // the current best, prune the search at that point.
4364     NewCost = CurCost;
4365     NewRegs = CurRegs;
4366     NewCost.RateFormula(TTI, F, NewRegs, VisitedRegs, L, SE, DT, LU);
4367     if (NewCost < SolutionCost) {
4368       Workspace.push_back(&F);
4369       if (Workspace.size() != Uses.size()) {
4370         SolveRecurse(Solution, SolutionCost, Workspace, NewCost,
4371                      NewRegs, VisitedRegs);
4372         if (F.getNumRegs() == 1 && Workspace.size() == 1)
4373           VisitedRegs.insert(F.ScaledReg ? F.ScaledReg : F.BaseRegs[0]);
4374       } else {
4375         DEBUG(dbgs() << "New best at "; NewCost.print(dbgs());
4376               dbgs() << ".\n Regs:";
4377               for (const SCEV *S : NewRegs)
4378                 dbgs() << ' ' << *S;
4379               dbgs() << '\n');
4380 
4381         SolutionCost = NewCost;
4382         Solution = Workspace;
4383       }
4384       Workspace.pop_back();
4385     }
4386   }
4387 }
4388 
4389 /// Choose one formula from each use. Return the results in the given Solution
4390 /// vector.
4391 void LSRInstance::Solve(SmallVectorImpl<const Formula *> &Solution) const {
4392   SmallVector<const Formula *, 8> Workspace;
4393   Cost SolutionCost;
4394   SolutionCost.Lose();
4395   Cost CurCost;
4396   SmallPtrSet<const SCEV *, 16> CurRegs;
4397   DenseSet<const SCEV *> VisitedRegs;
4398   Workspace.reserve(Uses.size());
4399 
4400   // SolveRecurse does all the work.
4401   SolveRecurse(Solution, SolutionCost, Workspace, CurCost,
4402                CurRegs, VisitedRegs);
4403   if (Solution.empty()) {
4404     DEBUG(dbgs() << "\nNo Satisfactory Solution\n");
4405     return;
4406   }
4407 
4408   // Ok, we've now made all our decisions.
4409   DEBUG(dbgs() << "\n"
4410                   "The chosen solution requires "; SolutionCost.print(dbgs());
4411         dbgs() << ":\n";
4412         for (size_t i = 0, e = Uses.size(); i != e; ++i) {
4413           dbgs() << "  ";
4414           Uses[i].print(dbgs());
4415           dbgs() << "\n"
4416                     "    ";
4417           Solution[i]->print(dbgs());
4418           dbgs() << '\n';
4419         });
4420 
4421   assert(Solution.size() == Uses.size() && "Malformed solution!");
4422 }
4423 
4424 /// Helper for AdjustInsertPositionForExpand. Climb up the dominator tree far as
4425 /// we can go while still being dominated by the input positions. This helps
4426 /// canonicalize the insert position, which encourages sharing.
4427 BasicBlock::iterator
4428 LSRInstance::HoistInsertPosition(BasicBlock::iterator IP,
4429                                  const SmallVectorImpl<Instruction *> &Inputs)
4430                                                                          const {
4431   Instruction *Tentative = &*IP;
4432   while (true) {
4433     bool AllDominate = true;
4434     Instruction *BetterPos = nullptr;
4435     // Don't bother attempting to insert before a catchswitch, their basic block
4436     // cannot have other non-PHI instructions.
4437     if (isa<CatchSwitchInst>(Tentative))
4438       return IP;
4439 
4440     for (Instruction *Inst : Inputs) {
4441       if (Inst == Tentative || !DT.dominates(Inst, Tentative)) {
4442         AllDominate = false;
4443         break;
4444       }
4445       // Attempt to find an insert position in the middle of the block,
4446       // instead of at the end, so that it can be used for other expansions.
4447       if (Tentative->getParent() == Inst->getParent() &&
4448           (!BetterPos || !DT.dominates(Inst, BetterPos)))
4449         BetterPos = &*std::next(BasicBlock::iterator(Inst));
4450     }
4451     if (!AllDominate)
4452       break;
4453     if (BetterPos)
4454       IP = BetterPos->getIterator();
4455     else
4456       IP = Tentative->getIterator();
4457 
4458     const Loop *IPLoop = LI.getLoopFor(IP->getParent());
4459     unsigned IPLoopDepth = IPLoop ? IPLoop->getLoopDepth() : 0;
4460 
4461     BasicBlock *IDom;
4462     for (DomTreeNode *Rung = DT.getNode(IP->getParent()); ; ) {
4463       if (!Rung) return IP;
4464       Rung = Rung->getIDom();
4465       if (!Rung) return IP;
4466       IDom = Rung->getBlock();
4467 
4468       // Don't climb into a loop though.
4469       const Loop *IDomLoop = LI.getLoopFor(IDom);
4470       unsigned IDomDepth = IDomLoop ? IDomLoop->getLoopDepth() : 0;
4471       if (IDomDepth <= IPLoopDepth &&
4472           (IDomDepth != IPLoopDepth || IDomLoop == IPLoop))
4473         break;
4474     }
4475 
4476     Tentative = IDom->getTerminator();
4477   }
4478 
4479   return IP;
4480 }
4481 
4482 /// Determine an input position which will be dominated by the operands and
4483 /// which will dominate the result.
4484 BasicBlock::iterator
4485 LSRInstance::AdjustInsertPositionForExpand(BasicBlock::iterator LowestIP,
4486                                            const LSRFixup &LF,
4487                                            const LSRUse &LU,
4488                                            SCEVExpander &Rewriter) const {
4489   // Collect some instructions which must be dominated by the
4490   // expanding replacement. These must be dominated by any operands that
4491   // will be required in the expansion.
4492   SmallVector<Instruction *, 4> Inputs;
4493   if (Instruction *I = dyn_cast<Instruction>(LF.OperandValToReplace))
4494     Inputs.push_back(I);
4495   if (LU.Kind == LSRUse::ICmpZero)
4496     if (Instruction *I =
4497           dyn_cast<Instruction>(cast<ICmpInst>(LF.UserInst)->getOperand(1)))
4498       Inputs.push_back(I);
4499   if (LF.PostIncLoops.count(L)) {
4500     if (LF.isUseFullyOutsideLoop(L))
4501       Inputs.push_back(L->getLoopLatch()->getTerminator());
4502     else
4503       Inputs.push_back(IVIncInsertPos);
4504   }
4505   // The expansion must also be dominated by the increment positions of any
4506   // loops it for which it is using post-inc mode.
4507   for (const Loop *PIL : LF.PostIncLoops) {
4508     if (PIL == L) continue;
4509 
4510     // Be dominated by the loop exit.
4511     SmallVector<BasicBlock *, 4> ExitingBlocks;
4512     PIL->getExitingBlocks(ExitingBlocks);
4513     if (!ExitingBlocks.empty()) {
4514       BasicBlock *BB = ExitingBlocks[0];
4515       for (unsigned i = 1, e = ExitingBlocks.size(); i != e; ++i)
4516         BB = DT.findNearestCommonDominator(BB, ExitingBlocks[i]);
4517       Inputs.push_back(BB->getTerminator());
4518     }
4519   }
4520 
4521   assert(!isa<PHINode>(LowestIP) && !LowestIP->isEHPad()
4522          && !isa<DbgInfoIntrinsic>(LowestIP) &&
4523          "Insertion point must be a normal instruction");
4524 
4525   // Then, climb up the immediate dominator tree as far as we can go while
4526   // still being dominated by the input positions.
4527   BasicBlock::iterator IP = HoistInsertPosition(LowestIP, Inputs);
4528 
4529   // Don't insert instructions before PHI nodes.
4530   while (isa<PHINode>(IP)) ++IP;
4531 
4532   // Ignore landingpad instructions.
4533   while (IP->isEHPad()) ++IP;
4534 
4535   // Ignore debug intrinsics.
4536   while (isa<DbgInfoIntrinsic>(IP)) ++IP;
4537 
4538   // Set IP below instructions recently inserted by SCEVExpander. This keeps the
4539   // IP consistent across expansions and allows the previously inserted
4540   // instructions to be reused by subsequent expansion.
4541   while (Rewriter.isInsertedInstruction(&*IP) && IP != LowestIP)
4542     ++IP;
4543 
4544   return IP;
4545 }
4546 
4547 /// Emit instructions for the leading candidate expression for this LSRUse (this
4548 /// is called "expanding").
4549 Value *LSRInstance::Expand(const LSRUse &LU,
4550                            const LSRFixup &LF,
4551                            const Formula &F,
4552                            BasicBlock::iterator IP,
4553                            SCEVExpander &Rewriter,
4554                            SmallVectorImpl<WeakVH> &DeadInsts) const {
4555   if (LU.RigidFormula)
4556     return LF.OperandValToReplace;
4557 
4558   // Determine an input position which will be dominated by the operands and
4559   // which will dominate the result.
4560   IP = AdjustInsertPositionForExpand(IP, LF, LU, Rewriter);
4561   Rewriter.setInsertPoint(&*IP);
4562 
4563   // Inform the Rewriter if we have a post-increment use, so that it can
4564   // perform an advantageous expansion.
4565   Rewriter.setPostInc(LF.PostIncLoops);
4566 
4567   // This is the type that the user actually needs.
4568   Type *OpTy = LF.OperandValToReplace->getType();
4569   // This will be the type that we'll initially expand to.
4570   Type *Ty = F.getType();
4571   if (!Ty)
4572     // No type known; just expand directly to the ultimate type.
4573     Ty = OpTy;
4574   else if (SE.getEffectiveSCEVType(Ty) == SE.getEffectiveSCEVType(OpTy))
4575     // Expand directly to the ultimate type if it's the right size.
4576     Ty = OpTy;
4577   // This is the type to do integer arithmetic in.
4578   Type *IntTy = SE.getEffectiveSCEVType(Ty);
4579 
4580   // Build up a list of operands to add together to form the full base.
4581   SmallVector<const SCEV *, 8> Ops;
4582 
4583   // Expand the BaseRegs portion.
4584   for (const SCEV *Reg : F.BaseRegs) {
4585     assert(!Reg->isZero() && "Zero allocated in a base register!");
4586 
4587     // If we're expanding for a post-inc user, make the post-inc adjustment.
4588     PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
4589     Reg = TransformForPostIncUse(Denormalize, Reg,
4590                                  LF.UserInst, LF.OperandValToReplace,
4591                                  Loops, SE, DT);
4592 
4593     Ops.push_back(SE.getUnknown(Rewriter.expandCodeFor(Reg, nullptr)));
4594   }
4595 
4596   // Expand the ScaledReg portion.
4597   Value *ICmpScaledV = nullptr;
4598   if (F.Scale != 0) {
4599     const SCEV *ScaledS = F.ScaledReg;
4600 
4601     // If we're expanding for a post-inc user, make the post-inc adjustment.
4602     PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
4603     ScaledS = TransformForPostIncUse(Denormalize, ScaledS,
4604                                      LF.UserInst, LF.OperandValToReplace,
4605                                      Loops, SE, DT);
4606 
4607     if (LU.Kind == LSRUse::ICmpZero) {
4608       // Expand ScaleReg as if it was part of the base regs.
4609       if (F.Scale == 1)
4610         Ops.push_back(
4611             SE.getUnknown(Rewriter.expandCodeFor(ScaledS, nullptr)));
4612       else {
4613         // An interesting way of "folding" with an icmp is to use a negated
4614         // scale, which we'll implement by inserting it into the other operand
4615         // of the icmp.
4616         assert(F.Scale == -1 &&
4617                "The only scale supported by ICmpZero uses is -1!");
4618         ICmpScaledV = Rewriter.expandCodeFor(ScaledS, nullptr);
4619       }
4620     } else {
4621       // Otherwise just expand the scaled register and an explicit scale,
4622       // which is expected to be matched as part of the address.
4623 
4624       // Flush the operand list to suppress SCEVExpander hoisting address modes.
4625       // Unless the addressing mode will not be folded.
4626       if (!Ops.empty() && LU.Kind == LSRUse::Address &&
4627           isAMCompletelyFolded(TTI, LU, F)) {
4628         Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty);
4629         Ops.clear();
4630         Ops.push_back(SE.getUnknown(FullV));
4631       }
4632       ScaledS = SE.getUnknown(Rewriter.expandCodeFor(ScaledS, nullptr));
4633       if (F.Scale != 1)
4634         ScaledS =
4635             SE.getMulExpr(ScaledS, SE.getConstant(ScaledS->getType(), F.Scale));
4636       Ops.push_back(ScaledS);
4637     }
4638   }
4639 
4640   // Expand the GV portion.
4641   if (F.BaseGV) {
4642     // Flush the operand list to suppress SCEVExpander hoisting.
4643     if (!Ops.empty()) {
4644       Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty);
4645       Ops.clear();
4646       Ops.push_back(SE.getUnknown(FullV));
4647     }
4648     Ops.push_back(SE.getUnknown(F.BaseGV));
4649   }
4650 
4651   // Flush the operand list to suppress SCEVExpander hoisting of both folded and
4652   // unfolded offsets. LSR assumes they both live next to their uses.
4653   if (!Ops.empty()) {
4654     Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty);
4655     Ops.clear();
4656     Ops.push_back(SE.getUnknown(FullV));
4657   }
4658 
4659   // Expand the immediate portion.
4660   int64_t Offset = (uint64_t)F.BaseOffset + LF.Offset;
4661   if (Offset != 0) {
4662     if (LU.Kind == LSRUse::ICmpZero) {
4663       // The other interesting way of "folding" with an ICmpZero is to use a
4664       // negated immediate.
4665       if (!ICmpScaledV)
4666         ICmpScaledV = ConstantInt::get(IntTy, -(uint64_t)Offset);
4667       else {
4668         Ops.push_back(SE.getUnknown(ICmpScaledV));
4669         ICmpScaledV = ConstantInt::get(IntTy, Offset);
4670       }
4671     } else {
4672       // Just add the immediate values. These again are expected to be matched
4673       // as part of the address.
4674       Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy, Offset)));
4675     }
4676   }
4677 
4678   // Expand the unfolded offset portion.
4679   int64_t UnfoldedOffset = F.UnfoldedOffset;
4680   if (UnfoldedOffset != 0) {
4681     // Just add the immediate values.
4682     Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy,
4683                                                        UnfoldedOffset)));
4684   }
4685 
4686   // Emit instructions summing all the operands.
4687   const SCEV *FullS = Ops.empty() ?
4688                       SE.getConstant(IntTy, 0) :
4689                       SE.getAddExpr(Ops);
4690   Value *FullV = Rewriter.expandCodeFor(FullS, Ty);
4691 
4692   // We're done expanding now, so reset the rewriter.
4693   Rewriter.clearPostInc();
4694 
4695   // An ICmpZero Formula represents an ICmp which we're handling as a
4696   // comparison against zero. Now that we've expanded an expression for that
4697   // form, update the ICmp's other operand.
4698   if (LU.Kind == LSRUse::ICmpZero) {
4699     ICmpInst *CI = cast<ICmpInst>(LF.UserInst);
4700     DeadInsts.emplace_back(CI->getOperand(1));
4701     assert(!F.BaseGV && "ICmp does not support folding a global value and "
4702                            "a scale at the same time!");
4703     if (F.Scale == -1) {
4704       if (ICmpScaledV->getType() != OpTy) {
4705         Instruction *Cast =
4706           CastInst::Create(CastInst::getCastOpcode(ICmpScaledV, false,
4707                                                    OpTy, false),
4708                            ICmpScaledV, OpTy, "tmp", CI);
4709         ICmpScaledV = Cast;
4710       }
4711       CI->setOperand(1, ICmpScaledV);
4712     } else {
4713       // A scale of 1 means that the scale has been expanded as part of the
4714       // base regs.
4715       assert((F.Scale == 0 || F.Scale == 1) &&
4716              "ICmp does not support folding a global value and "
4717              "a scale at the same time!");
4718       Constant *C = ConstantInt::getSigned(SE.getEffectiveSCEVType(OpTy),
4719                                            -(uint64_t)Offset);
4720       if (C->getType() != OpTy)
4721         C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
4722                                                           OpTy, false),
4723                                   C, OpTy);
4724 
4725       CI->setOperand(1, C);
4726     }
4727   }
4728 
4729   return FullV;
4730 }
4731 
4732 /// Helper for Rewrite. PHI nodes are special because the use of their operands
4733 /// effectively happens in their predecessor blocks, so the expression may need
4734 /// to be expanded in multiple places.
4735 void LSRInstance::RewriteForPHI(PHINode *PN,
4736                                 const LSRUse &LU,
4737                                 const LSRFixup &LF,
4738                                 const Formula &F,
4739                                 SCEVExpander &Rewriter,
4740                                 SmallVectorImpl<WeakVH> &DeadInsts) const {
4741   DenseMap<BasicBlock *, Value *> Inserted;
4742   for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
4743     if (PN->getIncomingValue(i) == LF.OperandValToReplace) {
4744       BasicBlock *BB = PN->getIncomingBlock(i);
4745 
4746       // If this is a critical edge, split the edge so that we do not insert
4747       // the code on all predecessor/successor paths.  We do this unless this
4748       // is the canonical backedge for this loop, which complicates post-inc
4749       // users.
4750       if (e != 1 && BB->getTerminator()->getNumSuccessors() > 1 &&
4751           !isa<IndirectBrInst>(BB->getTerminator()) &&
4752           !isa<CatchSwitchInst>(BB->getTerminator())) {
4753         BasicBlock *Parent = PN->getParent();
4754         Loop *PNLoop = LI.getLoopFor(Parent);
4755         if (!PNLoop || Parent != PNLoop->getHeader()) {
4756           // Split the critical edge.
4757           BasicBlock *NewBB = nullptr;
4758           if (!Parent->isLandingPad()) {
4759             NewBB = SplitCriticalEdge(BB, Parent,
4760                                       CriticalEdgeSplittingOptions(&DT, &LI)
4761                                           .setMergeIdenticalEdges()
4762                                           .setDontDeleteUselessPHIs());
4763           } else {
4764             SmallVector<BasicBlock*, 2> NewBBs;
4765             SplitLandingPadPredecessors(Parent, BB, "", "", NewBBs, &DT, &LI);
4766             NewBB = NewBBs[0];
4767           }
4768           // If NewBB==NULL, then SplitCriticalEdge refused to split because all
4769           // phi predecessors are identical. The simple thing to do is skip
4770           // splitting in this case rather than complicate the API.
4771           if (NewBB) {
4772             // If PN is outside of the loop and BB is in the loop, we want to
4773             // move the block to be immediately before the PHI block, not
4774             // immediately after BB.
4775             if (L->contains(BB) && !L->contains(PN))
4776               NewBB->moveBefore(PN->getParent());
4777 
4778             // Splitting the edge can reduce the number of PHI entries we have.
4779             e = PN->getNumIncomingValues();
4780             BB = NewBB;
4781             i = PN->getBasicBlockIndex(BB);
4782           }
4783         }
4784       }
4785 
4786       std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> Pair =
4787         Inserted.insert(std::make_pair(BB, static_cast<Value *>(nullptr)));
4788       if (!Pair.second)
4789         PN->setIncomingValue(i, Pair.first->second);
4790       else {
4791         Value *FullV = Expand(LU, LF, F, BB->getTerminator()->getIterator(),
4792                               Rewriter, DeadInsts);
4793 
4794         // If this is reuse-by-noop-cast, insert the noop cast.
4795         Type *OpTy = LF.OperandValToReplace->getType();
4796         if (FullV->getType() != OpTy)
4797           FullV =
4798             CastInst::Create(CastInst::getCastOpcode(FullV, false,
4799                                                      OpTy, false),
4800                              FullV, LF.OperandValToReplace->getType(),
4801                              "tmp", BB->getTerminator());
4802 
4803         PN->setIncomingValue(i, FullV);
4804         Pair.first->second = FullV;
4805       }
4806     }
4807 }
4808 
4809 /// Emit instructions for the leading candidate expression for this LSRUse (this
4810 /// is called "expanding"), and update the UserInst to reference the newly
4811 /// expanded value.
4812 void LSRInstance::Rewrite(const LSRUse &LU,
4813                           const LSRFixup &LF,
4814                           const Formula &F,
4815                           SCEVExpander &Rewriter,
4816                           SmallVectorImpl<WeakVH> &DeadInsts) const {
4817   // First, find an insertion point that dominates UserInst. For PHI nodes,
4818   // find the nearest block which dominates all the relevant uses.
4819   if (PHINode *PN = dyn_cast<PHINode>(LF.UserInst)) {
4820     RewriteForPHI(PN, LU, LF, F, Rewriter, DeadInsts);
4821   } else {
4822     Value *FullV =
4823       Expand(LU, LF, F, LF.UserInst->getIterator(), Rewriter, DeadInsts);
4824 
4825     // If this is reuse-by-noop-cast, insert the noop cast.
4826     Type *OpTy = LF.OperandValToReplace->getType();
4827     if (FullV->getType() != OpTy) {
4828       Instruction *Cast =
4829         CastInst::Create(CastInst::getCastOpcode(FullV, false, OpTy, false),
4830                          FullV, OpTy, "tmp", LF.UserInst);
4831       FullV = Cast;
4832     }
4833 
4834     // Update the user. ICmpZero is handled specially here (for now) because
4835     // Expand may have updated one of the operands of the icmp already, and
4836     // its new value may happen to be equal to LF.OperandValToReplace, in
4837     // which case doing replaceUsesOfWith leads to replacing both operands
4838     // with the same value. TODO: Reorganize this.
4839     if (LU.Kind == LSRUse::ICmpZero)
4840       LF.UserInst->setOperand(0, FullV);
4841     else
4842       LF.UserInst->replaceUsesOfWith(LF.OperandValToReplace, FullV);
4843   }
4844 
4845   DeadInsts.emplace_back(LF.OperandValToReplace);
4846 }
4847 
4848 /// Rewrite all the fixup locations with new values, following the chosen
4849 /// solution.
4850 void LSRInstance::ImplementSolution(
4851     const SmallVectorImpl<const Formula *> &Solution) {
4852   // Keep track of instructions we may have made dead, so that
4853   // we can remove them after we are done working.
4854   SmallVector<WeakVH, 16> DeadInsts;
4855 
4856   SCEVExpander Rewriter(SE, L->getHeader()->getModule()->getDataLayout(),
4857                         "lsr");
4858 #ifndef NDEBUG
4859   Rewriter.setDebugType(DEBUG_TYPE);
4860 #endif
4861   Rewriter.disableCanonicalMode();
4862   Rewriter.enableLSRMode();
4863   Rewriter.setIVIncInsertPos(L, IVIncInsertPos);
4864 
4865   // Mark phi nodes that terminate chains so the expander tries to reuse them.
4866   for (const IVChain &Chain : IVChainVec) {
4867     if (PHINode *PN = dyn_cast<PHINode>(Chain.tailUserInst()))
4868       Rewriter.setChainedPhi(PN);
4869   }
4870 
4871   // Expand the new value definitions and update the users.
4872   for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx)
4873     for (const LSRFixup &Fixup : Uses[LUIdx].Fixups) {
4874       Rewrite(Uses[LUIdx], Fixup, *Solution[LUIdx], Rewriter, DeadInsts);
4875       Changed = true;
4876     }
4877 
4878   for (const IVChain &Chain : IVChainVec) {
4879     GenerateIVChain(Chain, Rewriter, DeadInsts);
4880     Changed = true;
4881   }
4882   // Clean up after ourselves. This must be done before deleting any
4883   // instructions.
4884   Rewriter.clear();
4885 
4886   Changed |= DeleteTriviallyDeadInstructions(DeadInsts);
4887 }
4888 
4889 LSRInstance::LSRInstance(Loop *L, IVUsers &IU, ScalarEvolution &SE,
4890                          DominatorTree &DT, LoopInfo &LI,
4891                          const TargetTransformInfo &TTI)
4892     : IU(IU), SE(SE), DT(DT), LI(LI), TTI(TTI), L(L), Changed(false),
4893       IVIncInsertPos(nullptr) {
4894   // If LoopSimplify form is not available, stay out of trouble.
4895   if (!L->isLoopSimplifyForm())
4896     return;
4897 
4898   // If there's no interesting work to be done, bail early.
4899   if (IU.empty()) return;
4900 
4901   // If there's too much analysis to be done, bail early. We won't be able to
4902   // model the problem anyway.
4903   unsigned NumUsers = 0;
4904   for (const IVStrideUse &U : IU) {
4905     if (++NumUsers > MaxIVUsers) {
4906       (void)U;
4907       DEBUG(dbgs() << "LSR skipping loop, too many IV Users in " << U << "\n");
4908       return;
4909     }
4910     // Bail out if we have a PHI on an EHPad that gets a value from a
4911     // CatchSwitchInst.  Because the CatchSwitchInst cannot be split, there is
4912     // no good place to stick any instructions.
4913     if (auto *PN = dyn_cast<PHINode>(U.getUser())) {
4914        auto *FirstNonPHI = PN->getParent()->getFirstNonPHI();
4915        if (isa<FuncletPadInst>(FirstNonPHI) ||
4916            isa<CatchSwitchInst>(FirstNonPHI))
4917          for (BasicBlock *PredBB : PN->blocks())
4918            if (isa<CatchSwitchInst>(PredBB->getFirstNonPHI()))
4919              return;
4920     }
4921   }
4922 
4923 #ifndef NDEBUG
4924   // All dominating loops must have preheaders, or SCEVExpander may not be able
4925   // to materialize an AddRecExpr whose Start is an outer AddRecExpr.
4926   //
4927   // IVUsers analysis should only create users that are dominated by simple loop
4928   // headers. Since this loop should dominate all of its users, its user list
4929   // should be empty if this loop itself is not within a simple loop nest.
4930   for (DomTreeNode *Rung = DT.getNode(L->getLoopPreheader());
4931        Rung; Rung = Rung->getIDom()) {
4932     BasicBlock *BB = Rung->getBlock();
4933     const Loop *DomLoop = LI.getLoopFor(BB);
4934     if (DomLoop && DomLoop->getHeader() == BB) {
4935       assert(DomLoop->getLoopPreheader() && "LSR needs a simplified loop nest");
4936     }
4937   }
4938 #endif // DEBUG
4939 
4940   DEBUG(dbgs() << "\nLSR on loop ";
4941         L->getHeader()->printAsOperand(dbgs(), /*PrintType=*/false);
4942         dbgs() << ":\n");
4943 
4944   // First, perform some low-level loop optimizations.
4945   OptimizeShadowIV();
4946   OptimizeLoopTermCond();
4947 
4948   // If loop preparation eliminates all interesting IV users, bail.
4949   if (IU.empty()) return;
4950 
4951   // Skip nested loops until we can model them better with formulae.
4952   if (!L->empty()) {
4953     DEBUG(dbgs() << "LSR skipping outer loop " << *L << "\n");
4954     return;
4955   }
4956 
4957   // Start collecting data and preparing for the solver.
4958   CollectChains();
4959   CollectInterestingTypesAndFactors();
4960   CollectFixupsAndInitialFormulae();
4961   CollectLoopInvariantFixupsAndFormulae();
4962 
4963   assert(!Uses.empty() && "IVUsers reported at least one use");
4964   DEBUG(dbgs() << "LSR found " << Uses.size() << " uses:\n";
4965         print_uses(dbgs()));
4966 
4967   // Now use the reuse data to generate a bunch of interesting ways
4968   // to formulate the values needed for the uses.
4969   GenerateAllReuseFormulae();
4970 
4971   FilterOutUndesirableDedicatedRegisters();
4972   NarrowSearchSpaceUsingHeuristics();
4973 
4974   SmallVector<const Formula *, 8> Solution;
4975   Solve(Solution);
4976 
4977   // Release memory that is no longer needed.
4978   Factors.clear();
4979   Types.clear();
4980   RegUses.clear();
4981 
4982   if (Solution.empty())
4983     return;
4984 
4985 #ifndef NDEBUG
4986   // Formulae should be legal.
4987   for (const LSRUse &LU : Uses) {
4988     for (const Formula &F : LU.Formulae)
4989       assert(isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
4990                         F) && "Illegal formula generated!");
4991   };
4992 #endif
4993 
4994   // Now that we've decided what we want, make it so.
4995   ImplementSolution(Solution);
4996 }
4997 
4998 void LSRInstance::print_factors_and_types(raw_ostream &OS) const {
4999   if (Factors.empty() && Types.empty()) return;
5000 
5001   OS << "LSR has identified the following interesting factors and types: ";
5002   bool First = true;
5003 
5004   for (int64_t Factor : Factors) {
5005     if (!First) OS << ", ";
5006     First = false;
5007     OS << '*' << Factor;
5008   }
5009 
5010   for (Type *Ty : Types) {
5011     if (!First) OS << ", ";
5012     First = false;
5013     OS << '(' << *Ty << ')';
5014   }
5015   OS << '\n';
5016 }
5017 
5018 void LSRInstance::print_fixups(raw_ostream &OS) const {
5019   OS << "LSR is examining the following fixup sites:\n";
5020   for (const LSRUse &LU : Uses)
5021     for (const LSRFixup &LF : LU.Fixups) {
5022       dbgs() << "  ";
5023       LF.print(OS);
5024       OS << '\n';
5025     }
5026 }
5027 
5028 void LSRInstance::print_uses(raw_ostream &OS) const {
5029   OS << "LSR is examining the following uses:\n";
5030   for (const LSRUse &LU : Uses) {
5031     dbgs() << "  ";
5032     LU.print(OS);
5033     OS << '\n';
5034     for (const Formula &F : LU.Formulae) {
5035       OS << "    ";
5036       F.print(OS);
5037       OS << '\n';
5038     }
5039   }
5040 }
5041 
5042 void LSRInstance::print(raw_ostream &OS) const {
5043   print_factors_and_types(OS);
5044   print_fixups(OS);
5045   print_uses(OS);
5046 }
5047 
5048 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
5049 LLVM_DUMP_METHOD void LSRInstance::dump() const {
5050   print(errs()); errs() << '\n';
5051 }
5052 #endif
5053 
5054 namespace {
5055 
5056 class LoopStrengthReduce : public LoopPass {
5057 public:
5058   static char ID; // Pass ID, replacement for typeid
5059 
5060   LoopStrengthReduce();
5061 
5062 private:
5063   bool runOnLoop(Loop *L, LPPassManager &LPM) override;
5064   void getAnalysisUsage(AnalysisUsage &AU) const override;
5065 };
5066 
5067 } // end anonymous namespace
5068 
5069 LoopStrengthReduce::LoopStrengthReduce() : LoopPass(ID) {
5070   initializeLoopStrengthReducePass(*PassRegistry::getPassRegistry());
5071 }
5072 
5073 void LoopStrengthReduce::getAnalysisUsage(AnalysisUsage &AU) const {
5074   // We split critical edges, so we change the CFG.  However, we do update
5075   // many analyses if they are around.
5076   AU.addPreservedID(LoopSimplifyID);
5077 
5078   AU.addRequired<LoopInfoWrapperPass>();
5079   AU.addPreserved<LoopInfoWrapperPass>();
5080   AU.addRequiredID(LoopSimplifyID);
5081   AU.addRequired<DominatorTreeWrapperPass>();
5082   AU.addPreserved<DominatorTreeWrapperPass>();
5083   AU.addRequired<ScalarEvolutionWrapperPass>();
5084   AU.addPreserved<ScalarEvolutionWrapperPass>();
5085   // Requiring LoopSimplify a second time here prevents IVUsers from running
5086   // twice, since LoopSimplify was invalidated by running ScalarEvolution.
5087   AU.addRequiredID(LoopSimplifyID);
5088   AU.addRequired<IVUsersWrapperPass>();
5089   AU.addPreserved<IVUsersWrapperPass>();
5090   AU.addRequired<TargetTransformInfoWrapperPass>();
5091 }
5092 
5093 static bool ReduceLoopStrength(Loop *L, IVUsers &IU, ScalarEvolution &SE,
5094                                DominatorTree &DT, LoopInfo &LI,
5095                                const TargetTransformInfo &TTI) {
5096   bool Changed = false;
5097 
5098   // Run the main LSR transformation.
5099   Changed |= LSRInstance(L, IU, SE, DT, LI, TTI).getChanged();
5100 
5101   // Remove any extra phis created by processing inner loops.
5102   Changed |= DeleteDeadPHIs(L->getHeader());
5103   if (EnablePhiElim && L->isLoopSimplifyForm()) {
5104     SmallVector<WeakVH, 16> DeadInsts;
5105     const DataLayout &DL = L->getHeader()->getModule()->getDataLayout();
5106     SCEVExpander Rewriter(SE, DL, "lsr");
5107 #ifndef NDEBUG
5108     Rewriter.setDebugType(DEBUG_TYPE);
5109 #endif
5110     unsigned numFolded = Rewriter.replaceCongruentIVs(L, &DT, DeadInsts, &TTI);
5111     if (numFolded) {
5112       Changed = true;
5113       DeleteTriviallyDeadInstructions(DeadInsts);
5114       DeleteDeadPHIs(L->getHeader());
5115     }
5116   }
5117   return Changed;
5118 }
5119 
5120 bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager & /*LPM*/) {
5121   if (skipLoop(L))
5122     return false;
5123 
5124   auto &IU = getAnalysis<IVUsersWrapperPass>().getIU();
5125   auto &SE = getAnalysis<ScalarEvolutionWrapperPass>().getSE();
5126   auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
5127   auto &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
5128   const auto &TTI = getAnalysis<TargetTransformInfoWrapperPass>().getTTI(
5129       *L->getHeader()->getParent());
5130   return ReduceLoopStrength(L, IU, SE, DT, LI, TTI);
5131 }
5132 
5133 PreservedAnalyses LoopStrengthReducePass::run(Loop &L, LoopAnalysisManager &AM,
5134                                               LoopStandardAnalysisResults &AR,
5135                                               LPMUpdater &) {
5136   if (!ReduceLoopStrength(&L, AM.getResult<IVUsersAnalysis>(L, AR), AR.SE,
5137                           AR.DT, AR.LI, AR.TTI))
5138     return PreservedAnalyses::all();
5139 
5140   return getLoopPassPreservedAnalyses();
5141 }
5142 
5143 char LoopStrengthReduce::ID = 0;
5144 INITIALIZE_PASS_BEGIN(LoopStrengthReduce, "loop-reduce",
5145                       "Loop Strength Reduction", false, false)
5146 INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
5147 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
5148 INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass)
5149 INITIALIZE_PASS_DEPENDENCY(IVUsersWrapperPass)
5150 INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
5151 INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
5152 INITIALIZE_PASS_END(LoopStrengthReduce, "loop-reduce",
5153                     "Loop Strength Reduction", false, false)
5154 
5155 Pass *llvm::createLoopStrengthReducePass() { return new LoopStrengthReduce(); }
5156