xref: /llvm-project/llvm/lib/Analysis/ScalarEvolution.cpp (revision 1fc49627e498eeaedcc79ae301df1adf47592583)
1 //===- ScalarEvolution.cpp - Scalar Evolution Analysis --------------------===//
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 file contains the implementation of the scalar evolution analysis
11 // engine, which is used primarily to analyze expressions involving induction
12 // variables in loops.
13 //
14 // There are several aspects to this library.  First is the representation of
15 // scalar expressions, which are represented as subclasses of the SCEV class.
16 // These classes are used to represent certain types of subexpressions that we
17 // can handle. We only create one SCEV of a particular shape, so
18 // pointer-comparisons for equality are legal.
19 //
20 // One important aspect of the SCEV objects is that they are never cyclic, even
21 // if there is a cycle in the dataflow for an expression (ie, a PHI node).  If
22 // the PHI node is one of the idioms that we can represent (e.g., a polynomial
23 // recurrence) then we represent it directly as a recurrence node, otherwise we
24 // represent it as a SCEVUnknown node.
25 //
26 // In addition to being able to represent expressions of various types, we also
27 // have folders that are used to build the *canonical* representation for a
28 // particular expression.  These folders are capable of using a variety of
29 // rewrite rules to simplify the expressions.
30 //
31 // Once the folders are defined, we can implement the more interesting
32 // higher-level code, such as the code that recognizes PHI nodes of various
33 // types, computes the execution count of a loop, etc.
34 //
35 // TODO: We should use these routines and value representations to implement
36 // dependence analysis!
37 //
38 //===----------------------------------------------------------------------===//
39 //
40 // There are several good references for the techniques used in this analysis.
41 //
42 //  Chains of recurrences -- a method to expedite the evaluation
43 //  of closed-form functions
44 //  Olaf Bachmann, Paul S. Wang, Eugene V. Zima
45 //
46 //  On computational properties of chains of recurrences
47 //  Eugene V. Zima
48 //
49 //  Symbolic Evaluation of Chains of Recurrences for Loop Optimization
50 //  Robert A. van Engelen
51 //
52 //  Efficient Symbolic Analysis for Optimizing Compilers
53 //  Robert A. van Engelen
54 //
55 //  Using the chains of recurrences algebra for data dependence testing and
56 //  induction variable substitution
57 //  MS Thesis, Johnie Birch
58 //
59 //===----------------------------------------------------------------------===//
60 
61 #include "llvm/Analysis/ScalarEvolution.h"
62 #include "llvm/ADT/APInt.h"
63 #include "llvm/ADT/ArrayRef.h"
64 #include "llvm/ADT/DenseMap.h"
65 #include "llvm/ADT/DepthFirstIterator.h"
66 #include "llvm/ADT/FoldingSet.h"
67 #include "llvm/ADT/None.h"
68 #include "llvm/ADT/Optional.h"
69 #include "llvm/ADT/STLExtras.h"
70 #include "llvm/ADT/ScopeExit.h"
71 #include "llvm/ADT/Sequence.h"
72 #include "llvm/ADT/SetVector.h"
73 #include "llvm/ADT/SmallPtrSet.h"
74 #include "llvm/ADT/SmallSet.h"
75 #include "llvm/ADT/SmallVector.h"
76 #include "llvm/ADT/Statistic.h"
77 #include "llvm/ADT/StringRef.h"
78 #include "llvm/Analysis/AssumptionCache.h"
79 #include "llvm/Analysis/ConstantFolding.h"
80 #include "llvm/Analysis/InstructionSimplify.h"
81 #include "llvm/Analysis/LoopInfo.h"
82 #include "llvm/Analysis/ScalarEvolutionExpressions.h"
83 #include "llvm/Analysis/TargetLibraryInfo.h"
84 #include "llvm/Analysis/ValueTracking.h"
85 #include "llvm/IR/Argument.h"
86 #include "llvm/IR/BasicBlock.h"
87 #include "llvm/IR/CFG.h"
88 #include "llvm/IR/CallSite.h"
89 #include "llvm/IR/Constant.h"
90 #include "llvm/IR/ConstantRange.h"
91 #include "llvm/IR/Constants.h"
92 #include "llvm/IR/DataLayout.h"
93 #include "llvm/IR/DerivedTypes.h"
94 #include "llvm/IR/Dominators.h"
95 #include "llvm/IR/Function.h"
96 #include "llvm/IR/GlobalAlias.h"
97 #include "llvm/IR/GlobalValue.h"
98 #include "llvm/IR/GlobalVariable.h"
99 #include "llvm/IR/InstIterator.h"
100 #include "llvm/IR/InstrTypes.h"
101 #include "llvm/IR/Instruction.h"
102 #include "llvm/IR/Instructions.h"
103 #include "llvm/IR/IntrinsicInst.h"
104 #include "llvm/IR/Intrinsics.h"
105 #include "llvm/IR/LLVMContext.h"
106 #include "llvm/IR/Metadata.h"
107 #include "llvm/IR/Operator.h"
108 #include "llvm/IR/PatternMatch.h"
109 #include "llvm/IR/Type.h"
110 #include "llvm/IR/Use.h"
111 #include "llvm/IR/User.h"
112 #include "llvm/IR/Value.h"
113 #include "llvm/Pass.h"
114 #include "llvm/Support/Casting.h"
115 #include "llvm/Support/CommandLine.h"
116 #include "llvm/Support/Compiler.h"
117 #include "llvm/Support/Debug.h"
118 #include "llvm/Support/ErrorHandling.h"
119 #include "llvm/Support/KnownBits.h"
120 #include "llvm/Support/SaveAndRestore.h"
121 #include "llvm/Support/raw_ostream.h"
122 #include <algorithm>
123 #include <cassert>
124 #include <climits>
125 #include <cstddef>
126 #include <cstdint>
127 #include <cstdlib>
128 #include <map>
129 #include <memory>
130 #include <tuple>
131 #include <utility>
132 #include <vector>
133 
134 using namespace llvm;
135 
136 #define DEBUG_TYPE "scalar-evolution"
137 
138 STATISTIC(NumArrayLenItCounts,
139           "Number of trip counts computed with array length");
140 STATISTIC(NumTripCountsComputed,
141           "Number of loops with predictable loop counts");
142 STATISTIC(NumTripCountsNotComputed,
143           "Number of loops without predictable loop counts");
144 STATISTIC(NumBruteForceTripCountsComputed,
145           "Number of loops with trip counts computed by force");
146 
147 static cl::opt<unsigned>
148 MaxBruteForceIterations("scalar-evolution-max-iterations", cl::ReallyHidden,
149                         cl::desc("Maximum number of iterations SCEV will "
150                                  "symbolically execute a constant "
151                                  "derived loop"),
152                         cl::init(100));
153 
154 // FIXME: Enable this with EXPENSIVE_CHECKS when the test suite is clean.
155 static cl::opt<bool>
156 VerifySCEV("verify-scev",
157            cl::desc("Verify ScalarEvolution's backedge taken counts (slow)"));
158 static cl::opt<bool>
159     VerifySCEVMap("verify-scev-maps",
160                   cl::desc("Verify no dangling value in ScalarEvolution's "
161                            "ExprValueMap (slow)"));
162 
163 static cl::opt<unsigned> MulOpsInlineThreshold(
164     "scev-mulops-inline-threshold", cl::Hidden,
165     cl::desc("Threshold for inlining multiplication operands into a SCEV"),
166     cl::init(32));
167 
168 static cl::opt<unsigned> AddOpsInlineThreshold(
169     "scev-addops-inline-threshold", cl::Hidden,
170     cl::desc("Threshold for inlining addition operands into a SCEV"),
171     cl::init(500));
172 
173 static cl::opt<unsigned> MaxSCEVCompareDepth(
174     "scalar-evolution-max-scev-compare-depth", cl::Hidden,
175     cl::desc("Maximum depth of recursive SCEV complexity comparisons"),
176     cl::init(32));
177 
178 static cl::opt<unsigned> MaxSCEVOperationsImplicationDepth(
179     "scalar-evolution-max-scev-operations-implication-depth", cl::Hidden,
180     cl::desc("Maximum depth of recursive SCEV operations implication analysis"),
181     cl::init(2));
182 
183 static cl::opt<unsigned> MaxValueCompareDepth(
184     "scalar-evolution-max-value-compare-depth", cl::Hidden,
185     cl::desc("Maximum depth of recursive value complexity comparisons"),
186     cl::init(2));
187 
188 static cl::opt<unsigned>
189     MaxArithDepth("scalar-evolution-max-arith-depth", cl::Hidden,
190                   cl::desc("Maximum depth of recursive arithmetics"),
191                   cl::init(32));
192 
193 static cl::opt<unsigned> MaxConstantEvolvingDepth(
194     "scalar-evolution-max-constant-evolving-depth", cl::Hidden,
195     cl::desc("Maximum depth of recursive constant evolving"), cl::init(32));
196 
197 static cl::opt<unsigned>
198     MaxExtDepth("scalar-evolution-max-ext-depth", cl::Hidden,
199                 cl::desc("Maximum depth of recursive SExt/ZExt"),
200                 cl::init(8));
201 
202 static cl::opt<unsigned>
203     MaxAddRecSize("scalar-evolution-max-add-rec-size", cl::Hidden,
204                   cl::desc("Max coefficients in AddRec during evolving"),
205                   cl::init(16));
206 
207 //===----------------------------------------------------------------------===//
208 //                           SCEV class definitions
209 //===----------------------------------------------------------------------===//
210 
211 //===----------------------------------------------------------------------===//
212 // Implementation of the SCEV class.
213 //
214 
215 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
216 LLVM_DUMP_METHOD void SCEV::dump() const {
217   print(dbgs());
218   dbgs() << '\n';
219 }
220 #endif
221 
222 void SCEV::print(raw_ostream &OS) const {
223   switch (static_cast<SCEVTypes>(getSCEVType())) {
224   case scConstant:
225     cast<SCEVConstant>(this)->getValue()->printAsOperand(OS, false);
226     return;
227   case scTruncate: {
228     const SCEVTruncateExpr *Trunc = cast<SCEVTruncateExpr>(this);
229     const SCEV *Op = Trunc->getOperand();
230     OS << "(trunc " << *Op->getType() << " " << *Op << " to "
231        << *Trunc->getType() << ")";
232     return;
233   }
234   case scZeroExtend: {
235     const SCEVZeroExtendExpr *ZExt = cast<SCEVZeroExtendExpr>(this);
236     const SCEV *Op = ZExt->getOperand();
237     OS << "(zext " << *Op->getType() << " " << *Op << " to "
238        << *ZExt->getType() << ")";
239     return;
240   }
241   case scSignExtend: {
242     const SCEVSignExtendExpr *SExt = cast<SCEVSignExtendExpr>(this);
243     const SCEV *Op = SExt->getOperand();
244     OS << "(sext " << *Op->getType() << " " << *Op << " to "
245        << *SExt->getType() << ")";
246     return;
247   }
248   case scAddRecExpr: {
249     const SCEVAddRecExpr *AR = cast<SCEVAddRecExpr>(this);
250     OS << "{" << *AR->getOperand(0);
251     for (unsigned i = 1, e = AR->getNumOperands(); i != e; ++i)
252       OS << ",+," << *AR->getOperand(i);
253     OS << "}<";
254     if (AR->hasNoUnsignedWrap())
255       OS << "nuw><";
256     if (AR->hasNoSignedWrap())
257       OS << "nsw><";
258     if (AR->hasNoSelfWrap() &&
259         !AR->getNoWrapFlags((NoWrapFlags)(FlagNUW | FlagNSW)))
260       OS << "nw><";
261     AR->getLoop()->getHeader()->printAsOperand(OS, /*PrintType=*/false);
262     OS << ">";
263     return;
264   }
265   case scAddExpr:
266   case scMulExpr:
267   case scUMaxExpr:
268   case scSMaxExpr: {
269     const SCEVNAryExpr *NAry = cast<SCEVNAryExpr>(this);
270     const char *OpStr = nullptr;
271     switch (NAry->getSCEVType()) {
272     case scAddExpr: OpStr = " + "; break;
273     case scMulExpr: OpStr = " * "; break;
274     case scUMaxExpr: OpStr = " umax "; break;
275     case scSMaxExpr: OpStr = " smax "; break;
276     }
277     OS << "(";
278     for (SCEVNAryExpr::op_iterator I = NAry->op_begin(), E = NAry->op_end();
279          I != E; ++I) {
280       OS << **I;
281       if (std::next(I) != E)
282         OS << OpStr;
283     }
284     OS << ")";
285     switch (NAry->getSCEVType()) {
286     case scAddExpr:
287     case scMulExpr:
288       if (NAry->hasNoUnsignedWrap())
289         OS << "<nuw>";
290       if (NAry->hasNoSignedWrap())
291         OS << "<nsw>";
292     }
293     return;
294   }
295   case scUDivExpr: {
296     const SCEVUDivExpr *UDiv = cast<SCEVUDivExpr>(this);
297     OS << "(" << *UDiv->getLHS() << " /u " << *UDiv->getRHS() << ")";
298     return;
299   }
300   case scUnknown: {
301     const SCEVUnknown *U = cast<SCEVUnknown>(this);
302     Type *AllocTy;
303     if (U->isSizeOf(AllocTy)) {
304       OS << "sizeof(" << *AllocTy << ")";
305       return;
306     }
307     if (U->isAlignOf(AllocTy)) {
308       OS << "alignof(" << *AllocTy << ")";
309       return;
310     }
311 
312     Type *CTy;
313     Constant *FieldNo;
314     if (U->isOffsetOf(CTy, FieldNo)) {
315       OS << "offsetof(" << *CTy << ", ";
316       FieldNo->printAsOperand(OS, false);
317       OS << ")";
318       return;
319     }
320 
321     // Otherwise just print it normally.
322     U->getValue()->printAsOperand(OS, false);
323     return;
324   }
325   case scCouldNotCompute:
326     OS << "***COULDNOTCOMPUTE***";
327     return;
328   }
329   llvm_unreachable("Unknown SCEV kind!");
330 }
331 
332 Type *SCEV::getType() const {
333   switch (static_cast<SCEVTypes>(getSCEVType())) {
334   case scConstant:
335     return cast<SCEVConstant>(this)->getType();
336   case scTruncate:
337   case scZeroExtend:
338   case scSignExtend:
339     return cast<SCEVCastExpr>(this)->getType();
340   case scAddRecExpr:
341   case scMulExpr:
342   case scUMaxExpr:
343   case scSMaxExpr:
344     return cast<SCEVNAryExpr>(this)->getType();
345   case scAddExpr:
346     return cast<SCEVAddExpr>(this)->getType();
347   case scUDivExpr:
348     return cast<SCEVUDivExpr>(this)->getType();
349   case scUnknown:
350     return cast<SCEVUnknown>(this)->getType();
351   case scCouldNotCompute:
352     llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
353   }
354   llvm_unreachable("Unknown SCEV kind!");
355 }
356 
357 bool SCEV::isZero() const {
358   if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(this))
359     return SC->getValue()->isZero();
360   return false;
361 }
362 
363 bool SCEV::isOne() const {
364   if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(this))
365     return SC->getValue()->isOne();
366   return false;
367 }
368 
369 bool SCEV::isAllOnesValue() const {
370   if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(this))
371     return SC->getValue()->isMinusOne();
372   return false;
373 }
374 
375 bool SCEV::isNonConstantNegative() const {
376   const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(this);
377   if (!Mul) return false;
378 
379   // If there is a constant factor, it will be first.
380   const SCEVConstant *SC = dyn_cast<SCEVConstant>(Mul->getOperand(0));
381   if (!SC) return false;
382 
383   // Return true if the value is negative, this matches things like (-42 * V).
384   return SC->getAPInt().isNegative();
385 }
386 
387 SCEVCouldNotCompute::SCEVCouldNotCompute() :
388   SCEV(FoldingSetNodeIDRef(), scCouldNotCompute) {}
389 
390 bool SCEVCouldNotCompute::classof(const SCEV *S) {
391   return S->getSCEVType() == scCouldNotCompute;
392 }
393 
394 const SCEV *ScalarEvolution::getConstant(ConstantInt *V) {
395   FoldingSetNodeID ID;
396   ID.AddInteger(scConstant);
397   ID.AddPointer(V);
398   void *IP = nullptr;
399   if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
400   SCEV *S = new (SCEVAllocator) SCEVConstant(ID.Intern(SCEVAllocator), V);
401   UniqueSCEVs.InsertNode(S, IP);
402   return S;
403 }
404 
405 const SCEV *ScalarEvolution::getConstant(const APInt &Val) {
406   return getConstant(ConstantInt::get(getContext(), Val));
407 }
408 
409 const SCEV *
410 ScalarEvolution::getConstant(Type *Ty, uint64_t V, bool isSigned) {
411   IntegerType *ITy = cast<IntegerType>(getEffectiveSCEVType(Ty));
412   return getConstant(ConstantInt::get(ITy, V, isSigned));
413 }
414 
415 SCEVCastExpr::SCEVCastExpr(const FoldingSetNodeIDRef ID,
416                            unsigned SCEVTy, const SCEV *op, Type *ty)
417   : SCEV(ID, SCEVTy), Op(op), Ty(ty) {}
418 
419 SCEVTruncateExpr::SCEVTruncateExpr(const FoldingSetNodeIDRef ID,
420                                    const SCEV *op, Type *ty)
421   : SCEVCastExpr(ID, scTruncate, op, ty) {
422   assert((Op->getType()->isIntegerTy() || Op->getType()->isPointerTy()) &&
423          (Ty->isIntegerTy() || Ty->isPointerTy()) &&
424          "Cannot truncate non-integer value!");
425 }
426 
427 SCEVZeroExtendExpr::SCEVZeroExtendExpr(const FoldingSetNodeIDRef ID,
428                                        const SCEV *op, Type *ty)
429   : SCEVCastExpr(ID, scZeroExtend, op, ty) {
430   assert((Op->getType()->isIntegerTy() || Op->getType()->isPointerTy()) &&
431          (Ty->isIntegerTy() || Ty->isPointerTy()) &&
432          "Cannot zero extend non-integer value!");
433 }
434 
435 SCEVSignExtendExpr::SCEVSignExtendExpr(const FoldingSetNodeIDRef ID,
436                                        const SCEV *op, Type *ty)
437   : SCEVCastExpr(ID, scSignExtend, op, ty) {
438   assert((Op->getType()->isIntegerTy() || Op->getType()->isPointerTy()) &&
439          (Ty->isIntegerTy() || Ty->isPointerTy()) &&
440          "Cannot sign extend non-integer value!");
441 }
442 
443 void SCEVUnknown::deleted() {
444   // Clear this SCEVUnknown from various maps.
445   SE->forgetMemoizedResults(this);
446 
447   // Remove this SCEVUnknown from the uniquing map.
448   SE->UniqueSCEVs.RemoveNode(this);
449 
450   // Release the value.
451   setValPtr(nullptr);
452 }
453 
454 void SCEVUnknown::allUsesReplacedWith(Value *New) {
455   // Remove this SCEVUnknown from the uniquing map.
456   SE->UniqueSCEVs.RemoveNode(this);
457 
458   // Update this SCEVUnknown to point to the new value. This is needed
459   // because there may still be outstanding SCEVs which still point to
460   // this SCEVUnknown.
461   setValPtr(New);
462 }
463 
464 bool SCEVUnknown::isSizeOf(Type *&AllocTy) const {
465   if (ConstantExpr *VCE = dyn_cast<ConstantExpr>(getValue()))
466     if (VCE->getOpcode() == Instruction::PtrToInt)
467       if (ConstantExpr *CE = dyn_cast<ConstantExpr>(VCE->getOperand(0)))
468         if (CE->getOpcode() == Instruction::GetElementPtr &&
469             CE->getOperand(0)->isNullValue() &&
470             CE->getNumOperands() == 2)
471           if (ConstantInt *CI = dyn_cast<ConstantInt>(CE->getOperand(1)))
472             if (CI->isOne()) {
473               AllocTy = cast<PointerType>(CE->getOperand(0)->getType())
474                                  ->getElementType();
475               return true;
476             }
477 
478   return false;
479 }
480 
481 bool SCEVUnknown::isAlignOf(Type *&AllocTy) const {
482   if (ConstantExpr *VCE = dyn_cast<ConstantExpr>(getValue()))
483     if (VCE->getOpcode() == Instruction::PtrToInt)
484       if (ConstantExpr *CE = dyn_cast<ConstantExpr>(VCE->getOperand(0)))
485         if (CE->getOpcode() == Instruction::GetElementPtr &&
486             CE->getOperand(0)->isNullValue()) {
487           Type *Ty =
488             cast<PointerType>(CE->getOperand(0)->getType())->getElementType();
489           if (StructType *STy = dyn_cast<StructType>(Ty))
490             if (!STy->isPacked() &&
491                 CE->getNumOperands() == 3 &&
492                 CE->getOperand(1)->isNullValue()) {
493               if (ConstantInt *CI = dyn_cast<ConstantInt>(CE->getOperand(2)))
494                 if (CI->isOne() &&
495                     STy->getNumElements() == 2 &&
496                     STy->getElementType(0)->isIntegerTy(1)) {
497                   AllocTy = STy->getElementType(1);
498                   return true;
499                 }
500             }
501         }
502 
503   return false;
504 }
505 
506 bool SCEVUnknown::isOffsetOf(Type *&CTy, Constant *&FieldNo) const {
507   if (ConstantExpr *VCE = dyn_cast<ConstantExpr>(getValue()))
508     if (VCE->getOpcode() == Instruction::PtrToInt)
509       if (ConstantExpr *CE = dyn_cast<ConstantExpr>(VCE->getOperand(0)))
510         if (CE->getOpcode() == Instruction::GetElementPtr &&
511             CE->getNumOperands() == 3 &&
512             CE->getOperand(0)->isNullValue() &&
513             CE->getOperand(1)->isNullValue()) {
514           Type *Ty =
515             cast<PointerType>(CE->getOperand(0)->getType())->getElementType();
516           // Ignore vector types here so that ScalarEvolutionExpander doesn't
517           // emit getelementptrs that index into vectors.
518           if (Ty->isStructTy() || Ty->isArrayTy()) {
519             CTy = Ty;
520             FieldNo = CE->getOperand(2);
521             return true;
522           }
523         }
524 
525   return false;
526 }
527 
528 //===----------------------------------------------------------------------===//
529 //                               SCEV Utilities
530 //===----------------------------------------------------------------------===//
531 
532 /// Compare the two values \p LV and \p RV in terms of their "complexity" where
533 /// "complexity" is a partial (and somewhat ad-hoc) relation used to order
534 /// operands in SCEV expressions.  \p EqCache is a set of pairs of values that
535 /// have been previously deemed to be "equally complex" by this routine.  It is
536 /// intended to avoid exponential time complexity in cases like:
537 ///
538 ///   %a = f(%x, %y)
539 ///   %b = f(%a, %a)
540 ///   %c = f(%b, %b)
541 ///
542 ///   %d = f(%x, %y)
543 ///   %e = f(%d, %d)
544 ///   %f = f(%e, %e)
545 ///
546 ///   CompareValueComplexity(%f, %c)
547 ///
548 /// Since we do not continue running this routine on expression trees once we
549 /// have seen unequal values, there is no need to track them in the cache.
550 static int
551 CompareValueComplexity(SmallSet<std::pair<Value *, Value *>, 8> &EqCache,
552                        const LoopInfo *const LI, Value *LV, Value *RV,
553                        unsigned Depth) {
554   if (Depth > MaxValueCompareDepth || EqCache.count({LV, RV}))
555     return 0;
556 
557   // Order pointer values after integer values. This helps SCEVExpander form
558   // GEPs.
559   bool LIsPointer = LV->getType()->isPointerTy(),
560        RIsPointer = RV->getType()->isPointerTy();
561   if (LIsPointer != RIsPointer)
562     return (int)LIsPointer - (int)RIsPointer;
563 
564   // Compare getValueID values.
565   unsigned LID = LV->getValueID(), RID = RV->getValueID();
566   if (LID != RID)
567     return (int)LID - (int)RID;
568 
569   // Sort arguments by their position.
570   if (const auto *LA = dyn_cast<Argument>(LV)) {
571     const auto *RA = cast<Argument>(RV);
572     unsigned LArgNo = LA->getArgNo(), RArgNo = RA->getArgNo();
573     return (int)LArgNo - (int)RArgNo;
574   }
575 
576   if (const auto *LGV = dyn_cast<GlobalValue>(LV)) {
577     const auto *RGV = cast<GlobalValue>(RV);
578 
579     const auto IsGVNameSemantic = [&](const GlobalValue *GV) {
580       auto LT = GV->getLinkage();
581       return !(GlobalValue::isPrivateLinkage(LT) ||
582                GlobalValue::isInternalLinkage(LT));
583     };
584 
585     // Use the names to distinguish the two values, but only if the
586     // names are semantically important.
587     if (IsGVNameSemantic(LGV) && IsGVNameSemantic(RGV))
588       return LGV->getName().compare(RGV->getName());
589   }
590 
591   // For instructions, compare their loop depth, and their operand count.  This
592   // is pretty loose.
593   if (const auto *LInst = dyn_cast<Instruction>(LV)) {
594     const auto *RInst = cast<Instruction>(RV);
595 
596     // Compare loop depths.
597     const BasicBlock *LParent = LInst->getParent(),
598                      *RParent = RInst->getParent();
599     if (LParent != RParent) {
600       unsigned LDepth = LI->getLoopDepth(LParent),
601                RDepth = LI->getLoopDepth(RParent);
602       if (LDepth != RDepth)
603         return (int)LDepth - (int)RDepth;
604     }
605 
606     // Compare the number of operands.
607     unsigned LNumOps = LInst->getNumOperands(),
608              RNumOps = RInst->getNumOperands();
609     if (LNumOps != RNumOps)
610       return (int)LNumOps - (int)RNumOps;
611 
612     for (unsigned Idx : seq(0u, LNumOps)) {
613       int Result =
614           CompareValueComplexity(EqCache, LI, LInst->getOperand(Idx),
615                                  RInst->getOperand(Idx), Depth + 1);
616       if (Result != 0)
617         return Result;
618     }
619   }
620 
621   EqCache.insert({LV, RV});
622   return 0;
623 }
624 
625 // Return negative, zero, or positive, if LHS is less than, equal to, or greater
626 // than RHS, respectively. A three-way result allows recursive comparisons to be
627 // more efficient.
628 static int CompareSCEVComplexity(
629     SmallSet<std::pair<const SCEV *, const SCEV *>, 8> &EqCacheSCEV,
630     const LoopInfo *const LI, const SCEV *LHS, const SCEV *RHS,
631     DominatorTree &DT, unsigned Depth = 0) {
632   // Fast-path: SCEVs are uniqued so we can do a quick equality check.
633   if (LHS == RHS)
634     return 0;
635 
636   // Primarily, sort the SCEVs by their getSCEVType().
637   unsigned LType = LHS->getSCEVType(), RType = RHS->getSCEVType();
638   if (LType != RType)
639     return (int)LType - (int)RType;
640 
641   if (Depth > MaxSCEVCompareDepth || EqCacheSCEV.count({LHS, RHS}))
642     return 0;
643   // Aside from the getSCEVType() ordering, the particular ordering
644   // isn't very important except that it's beneficial to be consistent,
645   // so that (a + b) and (b + a) don't end up as different expressions.
646   switch (static_cast<SCEVTypes>(LType)) {
647   case scUnknown: {
648     const SCEVUnknown *LU = cast<SCEVUnknown>(LHS);
649     const SCEVUnknown *RU = cast<SCEVUnknown>(RHS);
650 
651     SmallSet<std::pair<Value *, Value *>, 8> EqCache;
652     int X = CompareValueComplexity(EqCache, LI, LU->getValue(), RU->getValue(),
653                                    Depth + 1);
654     if (X == 0)
655       EqCacheSCEV.insert({LHS, RHS});
656     return X;
657   }
658 
659   case scConstant: {
660     const SCEVConstant *LC = cast<SCEVConstant>(LHS);
661     const SCEVConstant *RC = cast<SCEVConstant>(RHS);
662 
663     // Compare constant values.
664     const APInt &LA = LC->getAPInt();
665     const APInt &RA = RC->getAPInt();
666     unsigned LBitWidth = LA.getBitWidth(), RBitWidth = RA.getBitWidth();
667     if (LBitWidth != RBitWidth)
668       return (int)LBitWidth - (int)RBitWidth;
669     return LA.ult(RA) ? -1 : 1;
670   }
671 
672   case scAddRecExpr: {
673     const SCEVAddRecExpr *LA = cast<SCEVAddRecExpr>(LHS);
674     const SCEVAddRecExpr *RA = cast<SCEVAddRecExpr>(RHS);
675 
676     // There is always a dominance between two recs that are used by one SCEV,
677     // so we can safely sort recs by loop header dominance. We require such
678     // order in getAddExpr.
679     const Loop *LLoop = LA->getLoop(), *RLoop = RA->getLoop();
680     if (LLoop != RLoop) {
681       const BasicBlock *LHead = LLoop->getHeader(), *RHead = RLoop->getHeader();
682       assert(LHead != RHead && "Two loops share the same header?");
683       if (DT.dominates(LHead, RHead))
684         return 1;
685       else
686         assert(DT.dominates(RHead, LHead) &&
687                "No dominance between recurrences used by one SCEV?");
688       return -1;
689     }
690 
691     // Addrec complexity grows with operand count.
692     unsigned LNumOps = LA->getNumOperands(), RNumOps = RA->getNumOperands();
693     if (LNumOps != RNumOps)
694       return (int)LNumOps - (int)RNumOps;
695 
696     // Lexicographically compare.
697     for (unsigned i = 0; i != LNumOps; ++i) {
698       int X = CompareSCEVComplexity(EqCacheSCEV, LI, LA->getOperand(i),
699                                     RA->getOperand(i), DT,  Depth + 1);
700       if (X != 0)
701         return X;
702     }
703     EqCacheSCEV.insert({LHS, RHS});
704     return 0;
705   }
706 
707   case scAddExpr:
708   case scMulExpr:
709   case scSMaxExpr:
710   case scUMaxExpr: {
711     const SCEVNAryExpr *LC = cast<SCEVNAryExpr>(LHS);
712     const SCEVNAryExpr *RC = cast<SCEVNAryExpr>(RHS);
713 
714     // Lexicographically compare n-ary expressions.
715     unsigned LNumOps = LC->getNumOperands(), RNumOps = RC->getNumOperands();
716     if (LNumOps != RNumOps)
717       return (int)LNumOps - (int)RNumOps;
718 
719     for (unsigned i = 0; i != LNumOps; ++i) {
720       if (i >= RNumOps)
721         return 1;
722       int X = CompareSCEVComplexity(EqCacheSCEV, LI, LC->getOperand(i),
723                                     RC->getOperand(i), DT, Depth + 1);
724       if (X != 0)
725         return X;
726     }
727     EqCacheSCEV.insert({LHS, RHS});
728     return 0;
729   }
730 
731   case scUDivExpr: {
732     const SCEVUDivExpr *LC = cast<SCEVUDivExpr>(LHS);
733     const SCEVUDivExpr *RC = cast<SCEVUDivExpr>(RHS);
734 
735     // Lexicographically compare udiv expressions.
736     int X = CompareSCEVComplexity(EqCacheSCEV, LI, LC->getLHS(), RC->getLHS(),
737                                   DT, Depth + 1);
738     if (X != 0)
739       return X;
740     X = CompareSCEVComplexity(EqCacheSCEV, LI, LC->getRHS(), RC->getRHS(), DT,
741                               Depth + 1);
742     if (X == 0)
743       EqCacheSCEV.insert({LHS, RHS});
744     return X;
745   }
746 
747   case scTruncate:
748   case scZeroExtend:
749   case scSignExtend: {
750     const SCEVCastExpr *LC = cast<SCEVCastExpr>(LHS);
751     const SCEVCastExpr *RC = cast<SCEVCastExpr>(RHS);
752 
753     // Compare cast expressions by operand.
754     int X = CompareSCEVComplexity(EqCacheSCEV, LI, LC->getOperand(),
755                                   RC->getOperand(), DT, Depth + 1);
756     if (X == 0)
757       EqCacheSCEV.insert({LHS, RHS});
758     return X;
759   }
760 
761   case scCouldNotCompute:
762     llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
763   }
764   llvm_unreachable("Unknown SCEV kind!");
765 }
766 
767 /// Given a list of SCEV objects, order them by their complexity, and group
768 /// objects of the same complexity together by value.  When this routine is
769 /// finished, we know that any duplicates in the vector are consecutive and that
770 /// complexity is monotonically increasing.
771 ///
772 /// Note that we go take special precautions to ensure that we get deterministic
773 /// results from this routine.  In other words, we don't want the results of
774 /// this to depend on where the addresses of various SCEV objects happened to
775 /// land in memory.
776 static void GroupByComplexity(SmallVectorImpl<const SCEV *> &Ops,
777                               LoopInfo *LI, DominatorTree &DT) {
778   if (Ops.size() < 2) return;  // Noop
779 
780   SmallSet<std::pair<const SCEV *, const SCEV *>, 8> EqCache;
781   if (Ops.size() == 2) {
782     // This is the common case, which also happens to be trivially simple.
783     // Special case it.
784     const SCEV *&LHS = Ops[0], *&RHS = Ops[1];
785     if (CompareSCEVComplexity(EqCache, LI, RHS, LHS, DT) < 0)
786       std::swap(LHS, RHS);
787     return;
788   }
789 
790   // Do the rough sort by complexity.
791   std::stable_sort(Ops.begin(), Ops.end(),
792                    [&EqCache, LI, &DT](const SCEV *LHS, const SCEV *RHS) {
793                      return
794                          CompareSCEVComplexity(EqCache, LI, LHS, RHS, DT) < 0;
795                    });
796 
797   // Now that we are sorted by complexity, group elements of the same
798   // complexity.  Note that this is, at worst, N^2, but the vector is likely to
799   // be extremely short in practice.  Note that we take this approach because we
800   // do not want to depend on the addresses of the objects we are grouping.
801   for (unsigned i = 0, e = Ops.size(); i != e-2; ++i) {
802     const SCEV *S = Ops[i];
803     unsigned Complexity = S->getSCEVType();
804 
805     // If there are any objects of the same complexity and same value as this
806     // one, group them.
807     for (unsigned j = i+1; j != e && Ops[j]->getSCEVType() == Complexity; ++j) {
808       if (Ops[j] == S) { // Found a duplicate.
809         // Move it to immediately after i'th element.
810         std::swap(Ops[i+1], Ops[j]);
811         ++i;   // no need to rescan it.
812         if (i == e-2) return;  // Done!
813       }
814     }
815   }
816 }
817 
818 // Returns the size of the SCEV S.
819 static inline int sizeOfSCEV(const SCEV *S) {
820   struct FindSCEVSize {
821     int Size = 0;
822 
823     FindSCEVSize() = default;
824 
825     bool follow(const SCEV *S) {
826       ++Size;
827       // Keep looking at all operands of S.
828       return true;
829     }
830 
831     bool isDone() const {
832       return false;
833     }
834   };
835 
836   FindSCEVSize F;
837   SCEVTraversal<FindSCEVSize> ST(F);
838   ST.visitAll(S);
839   return F.Size;
840 }
841 
842 namespace {
843 
844 struct SCEVDivision : public SCEVVisitor<SCEVDivision, void> {
845 public:
846   // Computes the Quotient and Remainder of the division of Numerator by
847   // Denominator.
848   static void divide(ScalarEvolution &SE, const SCEV *Numerator,
849                      const SCEV *Denominator, const SCEV **Quotient,
850                      const SCEV **Remainder) {
851     assert(Numerator && Denominator && "Uninitialized SCEV");
852 
853     SCEVDivision D(SE, Numerator, Denominator);
854 
855     // Check for the trivial case here to avoid having to check for it in the
856     // rest of the code.
857     if (Numerator == Denominator) {
858       *Quotient = D.One;
859       *Remainder = D.Zero;
860       return;
861     }
862 
863     if (Numerator->isZero()) {
864       *Quotient = D.Zero;
865       *Remainder = D.Zero;
866       return;
867     }
868 
869     // A simple case when N/1. The quotient is N.
870     if (Denominator->isOne()) {
871       *Quotient = Numerator;
872       *Remainder = D.Zero;
873       return;
874     }
875 
876     // Split the Denominator when it is a product.
877     if (const SCEVMulExpr *T = dyn_cast<SCEVMulExpr>(Denominator)) {
878       const SCEV *Q, *R;
879       *Quotient = Numerator;
880       for (const SCEV *Op : T->operands()) {
881         divide(SE, *Quotient, Op, &Q, &R);
882         *Quotient = Q;
883 
884         // Bail out when the Numerator is not divisible by one of the terms of
885         // the Denominator.
886         if (!R->isZero()) {
887           *Quotient = D.Zero;
888           *Remainder = Numerator;
889           return;
890         }
891       }
892       *Remainder = D.Zero;
893       return;
894     }
895 
896     D.visit(Numerator);
897     *Quotient = D.Quotient;
898     *Remainder = D.Remainder;
899   }
900 
901   // Except in the trivial case described above, we do not know how to divide
902   // Expr by Denominator for the following functions with empty implementation.
903   void visitTruncateExpr(const SCEVTruncateExpr *Numerator) {}
904   void visitZeroExtendExpr(const SCEVZeroExtendExpr *Numerator) {}
905   void visitSignExtendExpr(const SCEVSignExtendExpr *Numerator) {}
906   void visitUDivExpr(const SCEVUDivExpr *Numerator) {}
907   void visitSMaxExpr(const SCEVSMaxExpr *Numerator) {}
908   void visitUMaxExpr(const SCEVUMaxExpr *Numerator) {}
909   void visitUnknown(const SCEVUnknown *Numerator) {}
910   void visitCouldNotCompute(const SCEVCouldNotCompute *Numerator) {}
911 
912   void visitConstant(const SCEVConstant *Numerator) {
913     if (const SCEVConstant *D = dyn_cast<SCEVConstant>(Denominator)) {
914       APInt NumeratorVal = Numerator->getAPInt();
915       APInt DenominatorVal = D->getAPInt();
916       uint32_t NumeratorBW = NumeratorVal.getBitWidth();
917       uint32_t DenominatorBW = DenominatorVal.getBitWidth();
918 
919       if (NumeratorBW > DenominatorBW)
920         DenominatorVal = DenominatorVal.sext(NumeratorBW);
921       else if (NumeratorBW < DenominatorBW)
922         NumeratorVal = NumeratorVal.sext(DenominatorBW);
923 
924       APInt QuotientVal(NumeratorVal.getBitWidth(), 0);
925       APInt RemainderVal(NumeratorVal.getBitWidth(), 0);
926       APInt::sdivrem(NumeratorVal, DenominatorVal, QuotientVal, RemainderVal);
927       Quotient = SE.getConstant(QuotientVal);
928       Remainder = SE.getConstant(RemainderVal);
929       return;
930     }
931   }
932 
933   void visitAddRecExpr(const SCEVAddRecExpr *Numerator) {
934     const SCEV *StartQ, *StartR, *StepQ, *StepR;
935     if (!Numerator->isAffine())
936       return cannotDivide(Numerator);
937     divide(SE, Numerator->getStart(), Denominator, &StartQ, &StartR);
938     divide(SE, Numerator->getStepRecurrence(SE), Denominator, &StepQ, &StepR);
939     // Bail out if the types do not match.
940     Type *Ty = Denominator->getType();
941     if (Ty != StartQ->getType() || Ty != StartR->getType() ||
942         Ty != StepQ->getType() || Ty != StepR->getType())
943       return cannotDivide(Numerator);
944     Quotient = SE.getAddRecExpr(StartQ, StepQ, Numerator->getLoop(),
945                                 Numerator->getNoWrapFlags());
946     Remainder = SE.getAddRecExpr(StartR, StepR, Numerator->getLoop(),
947                                  Numerator->getNoWrapFlags());
948   }
949 
950   void visitAddExpr(const SCEVAddExpr *Numerator) {
951     SmallVector<const SCEV *, 2> Qs, Rs;
952     Type *Ty = Denominator->getType();
953 
954     for (const SCEV *Op : Numerator->operands()) {
955       const SCEV *Q, *R;
956       divide(SE, Op, Denominator, &Q, &R);
957 
958       // Bail out if types do not match.
959       if (Ty != Q->getType() || Ty != R->getType())
960         return cannotDivide(Numerator);
961 
962       Qs.push_back(Q);
963       Rs.push_back(R);
964     }
965 
966     if (Qs.size() == 1) {
967       Quotient = Qs[0];
968       Remainder = Rs[0];
969       return;
970     }
971 
972     Quotient = SE.getAddExpr(Qs);
973     Remainder = SE.getAddExpr(Rs);
974   }
975 
976   void visitMulExpr(const SCEVMulExpr *Numerator) {
977     SmallVector<const SCEV *, 2> Qs;
978     Type *Ty = Denominator->getType();
979 
980     bool FoundDenominatorTerm = false;
981     for (const SCEV *Op : Numerator->operands()) {
982       // Bail out if types do not match.
983       if (Ty != Op->getType())
984         return cannotDivide(Numerator);
985 
986       if (FoundDenominatorTerm) {
987         Qs.push_back(Op);
988         continue;
989       }
990 
991       // Check whether Denominator divides one of the product operands.
992       const SCEV *Q, *R;
993       divide(SE, Op, Denominator, &Q, &R);
994       if (!R->isZero()) {
995         Qs.push_back(Op);
996         continue;
997       }
998 
999       // Bail out if types do not match.
1000       if (Ty != Q->getType())
1001         return cannotDivide(Numerator);
1002 
1003       FoundDenominatorTerm = true;
1004       Qs.push_back(Q);
1005     }
1006 
1007     if (FoundDenominatorTerm) {
1008       Remainder = Zero;
1009       if (Qs.size() == 1)
1010         Quotient = Qs[0];
1011       else
1012         Quotient = SE.getMulExpr(Qs);
1013       return;
1014     }
1015 
1016     if (!isa<SCEVUnknown>(Denominator))
1017       return cannotDivide(Numerator);
1018 
1019     // The Remainder is obtained by replacing Denominator by 0 in Numerator.
1020     ValueToValueMap RewriteMap;
1021     RewriteMap[cast<SCEVUnknown>(Denominator)->getValue()] =
1022         cast<SCEVConstant>(Zero)->getValue();
1023     Remainder = SCEVParameterRewriter::rewrite(Numerator, SE, RewriteMap, true);
1024 
1025     if (Remainder->isZero()) {
1026       // The Quotient is obtained by replacing Denominator by 1 in Numerator.
1027       RewriteMap[cast<SCEVUnknown>(Denominator)->getValue()] =
1028           cast<SCEVConstant>(One)->getValue();
1029       Quotient =
1030           SCEVParameterRewriter::rewrite(Numerator, SE, RewriteMap, true);
1031       return;
1032     }
1033 
1034     // Quotient is (Numerator - Remainder) divided by Denominator.
1035     const SCEV *Q, *R;
1036     const SCEV *Diff = SE.getMinusSCEV(Numerator, Remainder);
1037     // This SCEV does not seem to simplify: fail the division here.
1038     if (sizeOfSCEV(Diff) > sizeOfSCEV(Numerator))
1039       return cannotDivide(Numerator);
1040     divide(SE, Diff, Denominator, &Q, &R);
1041     if (R != Zero)
1042       return cannotDivide(Numerator);
1043     Quotient = Q;
1044   }
1045 
1046 private:
1047   SCEVDivision(ScalarEvolution &S, const SCEV *Numerator,
1048                const SCEV *Denominator)
1049       : SE(S), Denominator(Denominator) {
1050     Zero = SE.getZero(Denominator->getType());
1051     One = SE.getOne(Denominator->getType());
1052 
1053     // We generally do not know how to divide Expr by Denominator. We
1054     // initialize the division to a "cannot divide" state to simplify the rest
1055     // of the code.
1056     cannotDivide(Numerator);
1057   }
1058 
1059   // Convenience function for giving up on the division. We set the quotient to
1060   // be equal to zero and the remainder to be equal to the numerator.
1061   void cannotDivide(const SCEV *Numerator) {
1062     Quotient = Zero;
1063     Remainder = Numerator;
1064   }
1065 
1066   ScalarEvolution &SE;
1067   const SCEV *Denominator, *Quotient, *Remainder, *Zero, *One;
1068 };
1069 
1070 } // end anonymous namespace
1071 
1072 //===----------------------------------------------------------------------===//
1073 //                      Simple SCEV method implementations
1074 //===----------------------------------------------------------------------===//
1075 
1076 /// Compute BC(It, K).  The result has width W.  Assume, K > 0.
1077 static const SCEV *BinomialCoefficient(const SCEV *It, unsigned K,
1078                                        ScalarEvolution &SE,
1079                                        Type *ResultTy) {
1080   // Handle the simplest case efficiently.
1081   if (K == 1)
1082     return SE.getTruncateOrZeroExtend(It, ResultTy);
1083 
1084   // We are using the following formula for BC(It, K):
1085   //
1086   //   BC(It, K) = (It * (It - 1) * ... * (It - K + 1)) / K!
1087   //
1088   // Suppose, W is the bitwidth of the return value.  We must be prepared for
1089   // overflow.  Hence, we must assure that the result of our computation is
1090   // equal to the accurate one modulo 2^W.  Unfortunately, division isn't
1091   // safe in modular arithmetic.
1092   //
1093   // However, this code doesn't use exactly that formula; the formula it uses
1094   // is something like the following, where T is the number of factors of 2 in
1095   // K! (i.e. trailing zeros in the binary representation of K!), and ^ is
1096   // exponentiation:
1097   //
1098   //   BC(It, K) = (It * (It - 1) * ... * (It - K + 1)) / 2^T / (K! / 2^T)
1099   //
1100   // This formula is trivially equivalent to the previous formula.  However,
1101   // this formula can be implemented much more efficiently.  The trick is that
1102   // K! / 2^T is odd, and exact division by an odd number *is* safe in modular
1103   // arithmetic.  To do exact division in modular arithmetic, all we have
1104   // to do is multiply by the inverse.  Therefore, this step can be done at
1105   // width W.
1106   //
1107   // The next issue is how to safely do the division by 2^T.  The way this
1108   // is done is by doing the multiplication step at a width of at least W + T
1109   // bits.  This way, the bottom W+T bits of the product are accurate. Then,
1110   // when we perform the division by 2^T (which is equivalent to a right shift
1111   // by T), the bottom W bits are accurate.  Extra bits are okay; they'll get
1112   // truncated out after the division by 2^T.
1113   //
1114   // In comparison to just directly using the first formula, this technique
1115   // is much more efficient; using the first formula requires W * K bits,
1116   // but this formula less than W + K bits. Also, the first formula requires
1117   // a division step, whereas this formula only requires multiplies and shifts.
1118   //
1119   // It doesn't matter whether the subtraction step is done in the calculation
1120   // width or the input iteration count's width; if the subtraction overflows,
1121   // the result must be zero anyway.  We prefer here to do it in the width of
1122   // the induction variable because it helps a lot for certain cases; CodeGen
1123   // isn't smart enough to ignore the overflow, which leads to much less
1124   // efficient code if the width of the subtraction is wider than the native
1125   // register width.
1126   //
1127   // (It's possible to not widen at all by pulling out factors of 2 before
1128   // the multiplication; for example, K=2 can be calculated as
1129   // It/2*(It+(It*INT_MIN/INT_MIN)+-1). However, it requires
1130   // extra arithmetic, so it's not an obvious win, and it gets
1131   // much more complicated for K > 3.)
1132 
1133   // Protection from insane SCEVs; this bound is conservative,
1134   // but it probably doesn't matter.
1135   if (K > 1000)
1136     return SE.getCouldNotCompute();
1137 
1138   unsigned W = SE.getTypeSizeInBits(ResultTy);
1139 
1140   // Calculate K! / 2^T and T; we divide out the factors of two before
1141   // multiplying for calculating K! / 2^T to avoid overflow.
1142   // Other overflow doesn't matter because we only care about the bottom
1143   // W bits of the result.
1144   APInt OddFactorial(W, 1);
1145   unsigned T = 1;
1146   for (unsigned i = 3; i <= K; ++i) {
1147     APInt Mult(W, i);
1148     unsigned TwoFactors = Mult.countTrailingZeros();
1149     T += TwoFactors;
1150     Mult.lshrInPlace(TwoFactors);
1151     OddFactorial *= Mult;
1152   }
1153 
1154   // We need at least W + T bits for the multiplication step
1155   unsigned CalculationBits = W + T;
1156 
1157   // Calculate 2^T, at width T+W.
1158   APInt DivFactor = APInt::getOneBitSet(CalculationBits, T);
1159 
1160   // Calculate the multiplicative inverse of K! / 2^T;
1161   // this multiplication factor will perform the exact division by
1162   // K! / 2^T.
1163   APInt Mod = APInt::getSignedMinValue(W+1);
1164   APInt MultiplyFactor = OddFactorial.zext(W+1);
1165   MultiplyFactor = MultiplyFactor.multiplicativeInverse(Mod);
1166   MultiplyFactor = MultiplyFactor.trunc(W);
1167 
1168   // Calculate the product, at width T+W
1169   IntegerType *CalculationTy = IntegerType::get(SE.getContext(),
1170                                                       CalculationBits);
1171   const SCEV *Dividend = SE.getTruncateOrZeroExtend(It, CalculationTy);
1172   for (unsigned i = 1; i != K; ++i) {
1173     const SCEV *S = SE.getMinusSCEV(It, SE.getConstant(It->getType(), i));
1174     Dividend = SE.getMulExpr(Dividend,
1175                              SE.getTruncateOrZeroExtend(S, CalculationTy));
1176   }
1177 
1178   // Divide by 2^T
1179   const SCEV *DivResult = SE.getUDivExpr(Dividend, SE.getConstant(DivFactor));
1180 
1181   // Truncate the result, and divide by K! / 2^T.
1182 
1183   return SE.getMulExpr(SE.getConstant(MultiplyFactor),
1184                        SE.getTruncateOrZeroExtend(DivResult, ResultTy));
1185 }
1186 
1187 /// Return the value of this chain of recurrences at the specified iteration
1188 /// number.  We can evaluate this recurrence by multiplying each element in the
1189 /// chain by the binomial coefficient corresponding to it.  In other words, we
1190 /// can evaluate {A,+,B,+,C,+,D} as:
1191 ///
1192 ///   A*BC(It, 0) + B*BC(It, 1) + C*BC(It, 2) + D*BC(It, 3)
1193 ///
1194 /// where BC(It, k) stands for binomial coefficient.
1195 const SCEV *SCEVAddRecExpr::evaluateAtIteration(const SCEV *It,
1196                                                 ScalarEvolution &SE) const {
1197   const SCEV *Result = getStart();
1198   for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1199     // The computation is correct in the face of overflow provided that the
1200     // multiplication is performed _after_ the evaluation of the binomial
1201     // coefficient.
1202     const SCEV *Coeff = BinomialCoefficient(It, i, SE, getType());
1203     if (isa<SCEVCouldNotCompute>(Coeff))
1204       return Coeff;
1205 
1206     Result = SE.getAddExpr(Result, SE.getMulExpr(getOperand(i), Coeff));
1207   }
1208   return Result;
1209 }
1210 
1211 //===----------------------------------------------------------------------===//
1212 //                    SCEV Expression folder implementations
1213 //===----------------------------------------------------------------------===//
1214 
1215 const SCEV *ScalarEvolution::getTruncateExpr(const SCEV *Op,
1216                                              Type *Ty) {
1217   assert(getTypeSizeInBits(Op->getType()) > getTypeSizeInBits(Ty) &&
1218          "This is not a truncating conversion!");
1219   assert(isSCEVable(Ty) &&
1220          "This is not a conversion to a SCEVable type!");
1221   Ty = getEffectiveSCEVType(Ty);
1222 
1223   FoldingSetNodeID ID;
1224   ID.AddInteger(scTruncate);
1225   ID.AddPointer(Op);
1226   ID.AddPointer(Ty);
1227   void *IP = nullptr;
1228   if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
1229 
1230   // Fold if the operand is constant.
1231   if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(Op))
1232     return getConstant(
1233       cast<ConstantInt>(ConstantExpr::getTrunc(SC->getValue(), Ty)));
1234 
1235   // trunc(trunc(x)) --> trunc(x)
1236   if (const SCEVTruncateExpr *ST = dyn_cast<SCEVTruncateExpr>(Op))
1237     return getTruncateExpr(ST->getOperand(), Ty);
1238 
1239   // trunc(sext(x)) --> sext(x) if widening or trunc(x) if narrowing
1240   if (const SCEVSignExtendExpr *SS = dyn_cast<SCEVSignExtendExpr>(Op))
1241     return getTruncateOrSignExtend(SS->getOperand(), Ty);
1242 
1243   // trunc(zext(x)) --> zext(x) if widening or trunc(x) if narrowing
1244   if (const SCEVZeroExtendExpr *SZ = dyn_cast<SCEVZeroExtendExpr>(Op))
1245     return getTruncateOrZeroExtend(SZ->getOperand(), Ty);
1246 
1247   // trunc(x1+x2+...+xN) --> trunc(x1)+trunc(x2)+...+trunc(xN) if we can
1248   // eliminate all the truncates, or we replace other casts with truncates.
1249   if (const SCEVAddExpr *SA = dyn_cast<SCEVAddExpr>(Op)) {
1250     SmallVector<const SCEV *, 4> Operands;
1251     bool hasTrunc = false;
1252     for (unsigned i = 0, e = SA->getNumOperands(); i != e && !hasTrunc; ++i) {
1253       const SCEV *S = getTruncateExpr(SA->getOperand(i), Ty);
1254       if (!isa<SCEVCastExpr>(SA->getOperand(i)))
1255         hasTrunc = isa<SCEVTruncateExpr>(S);
1256       Operands.push_back(S);
1257     }
1258     if (!hasTrunc)
1259       return getAddExpr(Operands);
1260     UniqueSCEVs.FindNodeOrInsertPos(ID, IP);  // Mutates IP, returns NULL.
1261   }
1262 
1263   // trunc(x1*x2*...*xN) --> trunc(x1)*trunc(x2)*...*trunc(xN) if we can
1264   // eliminate all the truncates, or we replace other casts with truncates.
1265   if (const SCEVMulExpr *SM = dyn_cast<SCEVMulExpr>(Op)) {
1266     SmallVector<const SCEV *, 4> Operands;
1267     bool hasTrunc = false;
1268     for (unsigned i = 0, e = SM->getNumOperands(); i != e && !hasTrunc; ++i) {
1269       const SCEV *S = getTruncateExpr(SM->getOperand(i), Ty);
1270       if (!isa<SCEVCastExpr>(SM->getOperand(i)))
1271         hasTrunc = isa<SCEVTruncateExpr>(S);
1272       Operands.push_back(S);
1273     }
1274     if (!hasTrunc)
1275       return getMulExpr(Operands);
1276     UniqueSCEVs.FindNodeOrInsertPos(ID, IP);  // Mutates IP, returns NULL.
1277   }
1278 
1279   // If the input value is a chrec scev, truncate the chrec's operands.
1280   if (const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(Op)) {
1281     SmallVector<const SCEV *, 4> Operands;
1282     for (const SCEV *Op : AddRec->operands())
1283       Operands.push_back(getTruncateExpr(Op, Ty));
1284     return getAddRecExpr(Operands, AddRec->getLoop(), SCEV::FlagAnyWrap);
1285   }
1286 
1287   // The cast wasn't folded; create an explicit cast node. We can reuse
1288   // the existing insert position since if we get here, we won't have
1289   // made any changes which would invalidate it.
1290   SCEV *S = new (SCEVAllocator) SCEVTruncateExpr(ID.Intern(SCEVAllocator),
1291                                                  Op, Ty);
1292   UniqueSCEVs.InsertNode(S, IP);
1293   addToLoopUseLists(S);
1294   return S;
1295 }
1296 
1297 // Get the limit of a recurrence such that incrementing by Step cannot cause
1298 // signed overflow as long as the value of the recurrence within the
1299 // loop does not exceed this limit before incrementing.
1300 static const SCEV *getSignedOverflowLimitForStep(const SCEV *Step,
1301                                                  ICmpInst::Predicate *Pred,
1302                                                  ScalarEvolution *SE) {
1303   unsigned BitWidth = SE->getTypeSizeInBits(Step->getType());
1304   if (SE->isKnownPositive(Step)) {
1305     *Pred = ICmpInst::ICMP_SLT;
1306     return SE->getConstant(APInt::getSignedMinValue(BitWidth) -
1307                            SE->getSignedRangeMax(Step));
1308   }
1309   if (SE->isKnownNegative(Step)) {
1310     *Pred = ICmpInst::ICMP_SGT;
1311     return SE->getConstant(APInt::getSignedMaxValue(BitWidth) -
1312                            SE->getSignedRangeMin(Step));
1313   }
1314   return nullptr;
1315 }
1316 
1317 // Get the limit of a recurrence such that incrementing by Step cannot cause
1318 // unsigned overflow as long as the value of the recurrence within the loop does
1319 // not exceed this limit before incrementing.
1320 static const SCEV *getUnsignedOverflowLimitForStep(const SCEV *Step,
1321                                                    ICmpInst::Predicate *Pred,
1322                                                    ScalarEvolution *SE) {
1323   unsigned BitWidth = SE->getTypeSizeInBits(Step->getType());
1324   *Pred = ICmpInst::ICMP_ULT;
1325 
1326   return SE->getConstant(APInt::getMinValue(BitWidth) -
1327                          SE->getUnsignedRangeMax(Step));
1328 }
1329 
1330 namespace {
1331 
1332 struct ExtendOpTraitsBase {
1333   typedef const SCEV *(ScalarEvolution::*GetExtendExprTy)(const SCEV *, Type *,
1334                                                           unsigned);
1335 };
1336 
1337 // Used to make code generic over signed and unsigned overflow.
1338 template <typename ExtendOp> struct ExtendOpTraits {
1339   // Members present:
1340   //
1341   // static const SCEV::NoWrapFlags WrapType;
1342   //
1343   // static const ExtendOpTraitsBase::GetExtendExprTy GetExtendExpr;
1344   //
1345   // static const SCEV *getOverflowLimitForStep(const SCEV *Step,
1346   //                                           ICmpInst::Predicate *Pred,
1347   //                                           ScalarEvolution *SE);
1348 };
1349 
1350 template <>
1351 struct ExtendOpTraits<SCEVSignExtendExpr> : public ExtendOpTraitsBase {
1352   static const SCEV::NoWrapFlags WrapType = SCEV::FlagNSW;
1353 
1354   static const GetExtendExprTy GetExtendExpr;
1355 
1356   static const SCEV *getOverflowLimitForStep(const SCEV *Step,
1357                                              ICmpInst::Predicate *Pred,
1358                                              ScalarEvolution *SE) {
1359     return getSignedOverflowLimitForStep(Step, Pred, SE);
1360   }
1361 };
1362 
1363 const ExtendOpTraitsBase::GetExtendExprTy ExtendOpTraits<
1364     SCEVSignExtendExpr>::GetExtendExpr = &ScalarEvolution::getSignExtendExpr;
1365 
1366 template <>
1367 struct ExtendOpTraits<SCEVZeroExtendExpr> : public ExtendOpTraitsBase {
1368   static const SCEV::NoWrapFlags WrapType = SCEV::FlagNUW;
1369 
1370   static const GetExtendExprTy GetExtendExpr;
1371 
1372   static const SCEV *getOverflowLimitForStep(const SCEV *Step,
1373                                              ICmpInst::Predicate *Pred,
1374                                              ScalarEvolution *SE) {
1375     return getUnsignedOverflowLimitForStep(Step, Pred, SE);
1376   }
1377 };
1378 
1379 const ExtendOpTraitsBase::GetExtendExprTy ExtendOpTraits<
1380     SCEVZeroExtendExpr>::GetExtendExpr = &ScalarEvolution::getZeroExtendExpr;
1381 
1382 } // end anonymous namespace
1383 
1384 // The recurrence AR has been shown to have no signed/unsigned wrap or something
1385 // close to it. Typically, if we can prove NSW/NUW for AR, then we can just as
1386 // easily prove NSW/NUW for its preincrement or postincrement sibling. This
1387 // allows normalizing a sign/zero extended AddRec as such: {sext/zext(Step +
1388 // Start),+,Step} => {(Step + sext/zext(Start),+,Step} As a result, the
1389 // expression "Step + sext/zext(PreIncAR)" is congruent with
1390 // "sext/zext(PostIncAR)"
1391 template <typename ExtendOpTy>
1392 static const SCEV *getPreStartForExtend(const SCEVAddRecExpr *AR, Type *Ty,
1393                                         ScalarEvolution *SE, unsigned Depth) {
1394   auto WrapType = ExtendOpTraits<ExtendOpTy>::WrapType;
1395   auto GetExtendExpr = ExtendOpTraits<ExtendOpTy>::GetExtendExpr;
1396 
1397   const Loop *L = AR->getLoop();
1398   const SCEV *Start = AR->getStart();
1399   const SCEV *Step = AR->getStepRecurrence(*SE);
1400 
1401   // Check for a simple looking step prior to loop entry.
1402   const SCEVAddExpr *SA = dyn_cast<SCEVAddExpr>(Start);
1403   if (!SA)
1404     return nullptr;
1405 
1406   // Create an AddExpr for "PreStart" after subtracting Step. Full SCEV
1407   // subtraction is expensive. For this purpose, perform a quick and dirty
1408   // difference, by checking for Step in the operand list.
1409   SmallVector<const SCEV *, 4> DiffOps;
1410   for (const SCEV *Op : SA->operands())
1411     if (Op != Step)
1412       DiffOps.push_back(Op);
1413 
1414   if (DiffOps.size() == SA->getNumOperands())
1415     return nullptr;
1416 
1417   // Try to prove `WrapType` (SCEV::FlagNSW or SCEV::FlagNUW) on `PreStart` +
1418   // `Step`:
1419 
1420   // 1. NSW/NUW flags on the step increment.
1421   auto PreStartFlags =
1422     ScalarEvolution::maskFlags(SA->getNoWrapFlags(), SCEV::FlagNUW);
1423   const SCEV *PreStart = SE->getAddExpr(DiffOps, PreStartFlags);
1424   const SCEVAddRecExpr *PreAR = dyn_cast<SCEVAddRecExpr>(
1425       SE->getAddRecExpr(PreStart, Step, L, SCEV::FlagAnyWrap));
1426 
1427   // "{S,+,X} is <nsw>/<nuw>" and "the backedge is taken at least once" implies
1428   // "S+X does not sign/unsign-overflow".
1429   //
1430 
1431   const SCEV *BECount = SE->getBackedgeTakenCount(L);
1432   if (PreAR && PreAR->getNoWrapFlags(WrapType) &&
1433       !isa<SCEVCouldNotCompute>(BECount) && SE->isKnownPositive(BECount))
1434     return PreStart;
1435 
1436   // 2. Direct overflow check on the step operation's expression.
1437   unsigned BitWidth = SE->getTypeSizeInBits(AR->getType());
1438   Type *WideTy = IntegerType::get(SE->getContext(), BitWidth * 2);
1439   const SCEV *OperandExtendedStart =
1440       SE->getAddExpr((SE->*GetExtendExpr)(PreStart, WideTy, Depth),
1441                      (SE->*GetExtendExpr)(Step, WideTy, Depth));
1442   if ((SE->*GetExtendExpr)(Start, WideTy, Depth) == OperandExtendedStart) {
1443     if (PreAR && AR->getNoWrapFlags(WrapType)) {
1444       // If we know `AR` == {`PreStart`+`Step`,+,`Step`} is `WrapType` (FlagNSW
1445       // or FlagNUW) and that `PreStart` + `Step` is `WrapType` too, then
1446       // `PreAR` == {`PreStart`,+,`Step`} is also `WrapType`.  Cache this fact.
1447       const_cast<SCEVAddRecExpr *>(PreAR)->setNoWrapFlags(WrapType);
1448     }
1449     return PreStart;
1450   }
1451 
1452   // 3. Loop precondition.
1453   ICmpInst::Predicate Pred;
1454   const SCEV *OverflowLimit =
1455       ExtendOpTraits<ExtendOpTy>::getOverflowLimitForStep(Step, &Pred, SE);
1456 
1457   if (OverflowLimit &&
1458       SE->isLoopEntryGuardedByCond(L, Pred, PreStart, OverflowLimit))
1459     return PreStart;
1460 
1461   return nullptr;
1462 }
1463 
1464 // Get the normalized zero or sign extended expression for this AddRec's Start.
1465 template <typename ExtendOpTy>
1466 static const SCEV *getExtendAddRecStart(const SCEVAddRecExpr *AR, Type *Ty,
1467                                         ScalarEvolution *SE,
1468                                         unsigned Depth) {
1469   auto GetExtendExpr = ExtendOpTraits<ExtendOpTy>::GetExtendExpr;
1470 
1471   const SCEV *PreStart = getPreStartForExtend<ExtendOpTy>(AR, Ty, SE, Depth);
1472   if (!PreStart)
1473     return (SE->*GetExtendExpr)(AR->getStart(), Ty, Depth);
1474 
1475   return SE->getAddExpr((SE->*GetExtendExpr)(AR->getStepRecurrence(*SE), Ty,
1476                                              Depth),
1477                         (SE->*GetExtendExpr)(PreStart, Ty, Depth));
1478 }
1479 
1480 // Try to prove away overflow by looking at "nearby" add recurrences.  A
1481 // motivating example for this rule: if we know `{0,+,4}` is `ult` `-1` and it
1482 // does not itself wrap then we can conclude that `{1,+,4}` is `nuw`.
1483 //
1484 // Formally:
1485 //
1486 //     {S,+,X} == {S-T,+,X} + T
1487 //  => Ext({S,+,X}) == Ext({S-T,+,X} + T)
1488 //
1489 // If ({S-T,+,X} + T) does not overflow  ... (1)
1490 //
1491 //  RHS == Ext({S-T,+,X} + T) == Ext({S-T,+,X}) + Ext(T)
1492 //
1493 // If {S-T,+,X} does not overflow  ... (2)
1494 //
1495 //  RHS == Ext({S-T,+,X}) + Ext(T) == {Ext(S-T),+,Ext(X)} + Ext(T)
1496 //      == {Ext(S-T)+Ext(T),+,Ext(X)}
1497 //
1498 // If (S-T)+T does not overflow  ... (3)
1499 //
1500 //  RHS == {Ext(S-T)+Ext(T),+,Ext(X)} == {Ext(S-T+T),+,Ext(X)}
1501 //      == {Ext(S),+,Ext(X)} == LHS
1502 //
1503 // Thus, if (1), (2) and (3) are true for some T, then
1504 //   Ext({S,+,X}) == {Ext(S),+,Ext(X)}
1505 //
1506 // (3) is implied by (1) -- "(S-T)+T does not overflow" is simply "({S-T,+,X}+T)
1507 // does not overflow" restricted to the 0th iteration.  Therefore we only need
1508 // to check for (1) and (2).
1509 //
1510 // In the current context, S is `Start`, X is `Step`, Ext is `ExtendOpTy` and T
1511 // is `Delta` (defined below).
1512 template <typename ExtendOpTy>
1513 bool ScalarEvolution::proveNoWrapByVaryingStart(const SCEV *Start,
1514                                                 const SCEV *Step,
1515                                                 const Loop *L) {
1516   auto WrapType = ExtendOpTraits<ExtendOpTy>::WrapType;
1517 
1518   // We restrict `Start` to a constant to prevent SCEV from spending too much
1519   // time here.  It is correct (but more expensive) to continue with a
1520   // non-constant `Start` and do a general SCEV subtraction to compute
1521   // `PreStart` below.
1522   const SCEVConstant *StartC = dyn_cast<SCEVConstant>(Start);
1523   if (!StartC)
1524     return false;
1525 
1526   APInt StartAI = StartC->getAPInt();
1527 
1528   for (unsigned Delta : {-2, -1, 1, 2}) {
1529     const SCEV *PreStart = getConstant(StartAI - Delta);
1530 
1531     FoldingSetNodeID ID;
1532     ID.AddInteger(scAddRecExpr);
1533     ID.AddPointer(PreStart);
1534     ID.AddPointer(Step);
1535     ID.AddPointer(L);
1536     void *IP = nullptr;
1537     const auto *PreAR =
1538       static_cast<SCEVAddRecExpr *>(UniqueSCEVs.FindNodeOrInsertPos(ID, IP));
1539 
1540     // Give up if we don't already have the add recurrence we need because
1541     // actually constructing an add recurrence is relatively expensive.
1542     if (PreAR && PreAR->getNoWrapFlags(WrapType)) {  // proves (2)
1543       const SCEV *DeltaS = getConstant(StartC->getType(), Delta);
1544       ICmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE;
1545       const SCEV *Limit = ExtendOpTraits<ExtendOpTy>::getOverflowLimitForStep(
1546           DeltaS, &Pred, this);
1547       if (Limit && isKnownPredicate(Pred, PreAR, Limit))  // proves (1)
1548         return true;
1549     }
1550   }
1551 
1552   return false;
1553 }
1554 
1555 const SCEV *
1556 ScalarEvolution::getZeroExtendExpr(const SCEV *Op, Type *Ty, unsigned Depth) {
1557   assert(getTypeSizeInBits(Op->getType()) < getTypeSizeInBits(Ty) &&
1558          "This is not an extending conversion!");
1559   assert(isSCEVable(Ty) &&
1560          "This is not a conversion to a SCEVable type!");
1561   Ty = getEffectiveSCEVType(Ty);
1562 
1563   // Fold if the operand is constant.
1564   if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(Op))
1565     return getConstant(
1566       cast<ConstantInt>(ConstantExpr::getZExt(SC->getValue(), Ty)));
1567 
1568   // zext(zext(x)) --> zext(x)
1569   if (const SCEVZeroExtendExpr *SZ = dyn_cast<SCEVZeroExtendExpr>(Op))
1570     return getZeroExtendExpr(SZ->getOperand(), Ty, Depth + 1);
1571 
1572   // Before doing any expensive analysis, check to see if we've already
1573   // computed a SCEV for this Op and Ty.
1574   FoldingSetNodeID ID;
1575   ID.AddInteger(scZeroExtend);
1576   ID.AddPointer(Op);
1577   ID.AddPointer(Ty);
1578   void *IP = nullptr;
1579   if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
1580   if (Depth > MaxExtDepth) {
1581     SCEV *S = new (SCEVAllocator) SCEVZeroExtendExpr(ID.Intern(SCEVAllocator),
1582                                                      Op, Ty);
1583     UniqueSCEVs.InsertNode(S, IP);
1584     addToLoopUseLists(S);
1585     return S;
1586   }
1587 
1588   // zext(trunc(x)) --> zext(x) or x or trunc(x)
1589   if (const SCEVTruncateExpr *ST = dyn_cast<SCEVTruncateExpr>(Op)) {
1590     // It's possible the bits taken off by the truncate were all zero bits. If
1591     // so, we should be able to simplify this further.
1592     const SCEV *X = ST->getOperand();
1593     ConstantRange CR = getUnsignedRange(X);
1594     unsigned TruncBits = getTypeSizeInBits(ST->getType());
1595     unsigned NewBits = getTypeSizeInBits(Ty);
1596     if (CR.truncate(TruncBits).zeroExtend(NewBits).contains(
1597             CR.zextOrTrunc(NewBits)))
1598       return getTruncateOrZeroExtend(X, Ty);
1599   }
1600 
1601   // If the input value is a chrec scev, and we can prove that the value
1602   // did not overflow the old, smaller, value, we can zero extend all of the
1603   // operands (often constants).  This allows analysis of something like
1604   // this:  for (unsigned char X = 0; X < 100; ++X) { int Y = X; }
1605   if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Op))
1606     if (AR->isAffine()) {
1607       const SCEV *Start = AR->getStart();
1608       const SCEV *Step = AR->getStepRecurrence(*this);
1609       unsigned BitWidth = getTypeSizeInBits(AR->getType());
1610       const Loop *L = AR->getLoop();
1611 
1612       if (!AR->hasNoUnsignedWrap()) {
1613         auto NewFlags = proveNoWrapViaConstantRanges(AR);
1614         const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(NewFlags);
1615       }
1616 
1617       // If we have special knowledge that this addrec won't overflow,
1618       // we don't need to do any further analysis.
1619       if (AR->hasNoUnsignedWrap())
1620         return getAddRecExpr(
1621             getExtendAddRecStart<SCEVZeroExtendExpr>(AR, Ty, this, Depth + 1),
1622             getZeroExtendExpr(Step, Ty, Depth + 1), L, AR->getNoWrapFlags());
1623 
1624       // Check whether the backedge-taken count is SCEVCouldNotCompute.
1625       // Note that this serves two purposes: It filters out loops that are
1626       // simply not analyzable, and it covers the case where this code is
1627       // being called from within backedge-taken count analysis, such that
1628       // attempting to ask for the backedge-taken count would likely result
1629       // in infinite recursion. In the later case, the analysis code will
1630       // cope with a conservative value, and it will take care to purge
1631       // that value once it has finished.
1632       const SCEV *MaxBECount = getMaxBackedgeTakenCount(L);
1633       if (!isa<SCEVCouldNotCompute>(MaxBECount)) {
1634         // Manually compute the final value for AR, checking for
1635         // overflow.
1636 
1637         // Check whether the backedge-taken count can be losslessly casted to
1638         // the addrec's type. The count is always unsigned.
1639         const SCEV *CastedMaxBECount =
1640           getTruncateOrZeroExtend(MaxBECount, Start->getType());
1641         const SCEV *RecastedMaxBECount =
1642           getTruncateOrZeroExtend(CastedMaxBECount, MaxBECount->getType());
1643         if (MaxBECount == RecastedMaxBECount) {
1644           Type *WideTy = IntegerType::get(getContext(), BitWidth * 2);
1645           // Check whether Start+Step*MaxBECount has no unsigned overflow.
1646           const SCEV *ZMul = getMulExpr(CastedMaxBECount, Step,
1647                                         SCEV::FlagAnyWrap, Depth + 1);
1648           const SCEV *ZAdd = getZeroExtendExpr(getAddExpr(Start, ZMul,
1649                                                           SCEV::FlagAnyWrap,
1650                                                           Depth + 1),
1651                                                WideTy, Depth + 1);
1652           const SCEV *WideStart = getZeroExtendExpr(Start, WideTy, Depth + 1);
1653           const SCEV *WideMaxBECount =
1654             getZeroExtendExpr(CastedMaxBECount, WideTy, Depth + 1);
1655           const SCEV *OperandExtendedAdd =
1656             getAddExpr(WideStart,
1657                        getMulExpr(WideMaxBECount,
1658                                   getZeroExtendExpr(Step, WideTy, Depth + 1),
1659                                   SCEV::FlagAnyWrap, Depth + 1),
1660                        SCEV::FlagAnyWrap, Depth + 1);
1661           if (ZAdd == OperandExtendedAdd) {
1662             // Cache knowledge of AR NUW, which is propagated to this AddRec.
1663             const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNUW);
1664             // Return the expression with the addrec on the outside.
1665             return getAddRecExpr(
1666                 getExtendAddRecStart<SCEVZeroExtendExpr>(AR, Ty, this,
1667                                                          Depth + 1),
1668                 getZeroExtendExpr(Step, Ty, Depth + 1), L,
1669                 AR->getNoWrapFlags());
1670           }
1671           // Similar to above, only this time treat the step value as signed.
1672           // This covers loops that count down.
1673           OperandExtendedAdd =
1674             getAddExpr(WideStart,
1675                        getMulExpr(WideMaxBECount,
1676                                   getSignExtendExpr(Step, WideTy, Depth + 1),
1677                                   SCEV::FlagAnyWrap, Depth + 1),
1678                        SCEV::FlagAnyWrap, Depth + 1);
1679           if (ZAdd == OperandExtendedAdd) {
1680             // Cache knowledge of AR NW, which is propagated to this AddRec.
1681             // Negative step causes unsigned wrap, but it still can't self-wrap.
1682             const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNW);
1683             // Return the expression with the addrec on the outside.
1684             return getAddRecExpr(
1685                 getExtendAddRecStart<SCEVZeroExtendExpr>(AR, Ty, this,
1686                                                          Depth + 1),
1687                 getSignExtendExpr(Step, Ty, Depth + 1), L,
1688                 AR->getNoWrapFlags());
1689           }
1690         }
1691       }
1692 
1693       // Normally, in the cases we can prove no-overflow via a
1694       // backedge guarding condition, we can also compute a backedge
1695       // taken count for the loop.  The exceptions are assumptions and
1696       // guards present in the loop -- SCEV is not great at exploiting
1697       // these to compute max backedge taken counts, but can still use
1698       // these to prove lack of overflow.  Use this fact to avoid
1699       // doing extra work that may not pay off.
1700       if (!isa<SCEVCouldNotCompute>(MaxBECount) || HasGuards ||
1701           !AC.assumptions().empty()) {
1702         // If the backedge is guarded by a comparison with the pre-inc
1703         // value the addrec is safe. Also, if the entry is guarded by
1704         // a comparison with the start value and the backedge is
1705         // guarded by a comparison with the post-inc value, the addrec
1706         // is safe.
1707         if (isKnownPositive(Step)) {
1708           const SCEV *N = getConstant(APInt::getMinValue(BitWidth) -
1709                                       getUnsignedRangeMax(Step));
1710           if (isLoopBackedgeGuardedByCond(L, ICmpInst::ICMP_ULT, AR, N) ||
1711               (isLoopEntryGuardedByCond(L, ICmpInst::ICMP_ULT, Start, N) &&
1712                isLoopBackedgeGuardedByCond(L, ICmpInst::ICMP_ULT,
1713                                            AR->getPostIncExpr(*this), N))) {
1714             // Cache knowledge of AR NUW, which is propagated to this
1715             // AddRec.
1716             const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNUW);
1717             // Return the expression with the addrec on the outside.
1718             return getAddRecExpr(
1719                 getExtendAddRecStart<SCEVZeroExtendExpr>(AR, Ty, this,
1720                                                          Depth + 1),
1721                 getZeroExtendExpr(Step, Ty, Depth + 1), L,
1722                 AR->getNoWrapFlags());
1723           }
1724         } else if (isKnownNegative(Step)) {
1725           const SCEV *N = getConstant(APInt::getMaxValue(BitWidth) -
1726                                       getSignedRangeMin(Step));
1727           if (isLoopBackedgeGuardedByCond(L, ICmpInst::ICMP_UGT, AR, N) ||
1728               (isLoopEntryGuardedByCond(L, ICmpInst::ICMP_UGT, Start, N) &&
1729                isLoopBackedgeGuardedByCond(L, ICmpInst::ICMP_UGT,
1730                                            AR->getPostIncExpr(*this), N))) {
1731             // Cache knowledge of AR NW, which is propagated to this
1732             // AddRec.  Negative step causes unsigned wrap, but it
1733             // still can't self-wrap.
1734             const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNW);
1735             // Return the expression with the addrec on the outside.
1736             return getAddRecExpr(
1737                 getExtendAddRecStart<SCEVZeroExtendExpr>(AR, Ty, this,
1738                                                          Depth + 1),
1739                 getSignExtendExpr(Step, Ty, Depth + 1), L,
1740                 AR->getNoWrapFlags());
1741           }
1742         }
1743       }
1744 
1745       if (proveNoWrapByVaryingStart<SCEVZeroExtendExpr>(Start, Step, L)) {
1746         const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNUW);
1747         return getAddRecExpr(
1748             getExtendAddRecStart<SCEVZeroExtendExpr>(AR, Ty, this, Depth + 1),
1749             getZeroExtendExpr(Step, Ty, Depth + 1), L, AR->getNoWrapFlags());
1750       }
1751     }
1752 
1753   if (auto *SA = dyn_cast<SCEVAddExpr>(Op)) {
1754     // zext((A + B + ...)<nuw>) --> (zext(A) + zext(B) + ...)<nuw>
1755     if (SA->hasNoUnsignedWrap()) {
1756       // If the addition does not unsign overflow then we can, by definition,
1757       // commute the zero extension with the addition operation.
1758       SmallVector<const SCEV *, 4> Ops;
1759       for (const auto *Op : SA->operands())
1760         Ops.push_back(getZeroExtendExpr(Op, Ty, Depth + 1));
1761       return getAddExpr(Ops, SCEV::FlagNUW, Depth + 1);
1762     }
1763   }
1764 
1765   // The cast wasn't folded; create an explicit cast node.
1766   // Recompute the insert position, as it may have been invalidated.
1767   if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
1768   SCEV *S = new (SCEVAllocator) SCEVZeroExtendExpr(ID.Intern(SCEVAllocator),
1769                                                    Op, Ty);
1770   UniqueSCEVs.InsertNode(S, IP);
1771   addToLoopUseLists(S);
1772   return S;
1773 }
1774 
1775 const SCEV *
1776 ScalarEvolution::getSignExtendExpr(const SCEV *Op, Type *Ty, unsigned Depth) {
1777   assert(getTypeSizeInBits(Op->getType()) < getTypeSizeInBits(Ty) &&
1778          "This is not an extending conversion!");
1779   assert(isSCEVable(Ty) &&
1780          "This is not a conversion to a SCEVable type!");
1781   Ty = getEffectiveSCEVType(Ty);
1782 
1783   // Fold if the operand is constant.
1784   if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(Op))
1785     return getConstant(
1786       cast<ConstantInt>(ConstantExpr::getSExt(SC->getValue(), Ty)));
1787 
1788   // sext(sext(x)) --> sext(x)
1789   if (const SCEVSignExtendExpr *SS = dyn_cast<SCEVSignExtendExpr>(Op))
1790     return getSignExtendExpr(SS->getOperand(), Ty, Depth + 1);
1791 
1792   // sext(zext(x)) --> zext(x)
1793   if (const SCEVZeroExtendExpr *SZ = dyn_cast<SCEVZeroExtendExpr>(Op))
1794     return getZeroExtendExpr(SZ->getOperand(), Ty, Depth + 1);
1795 
1796   // Before doing any expensive analysis, check to see if we've already
1797   // computed a SCEV for this Op and Ty.
1798   FoldingSetNodeID ID;
1799   ID.AddInteger(scSignExtend);
1800   ID.AddPointer(Op);
1801   ID.AddPointer(Ty);
1802   void *IP = nullptr;
1803   if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
1804   // Limit recursion depth.
1805   if (Depth > MaxExtDepth) {
1806     SCEV *S = new (SCEVAllocator) SCEVSignExtendExpr(ID.Intern(SCEVAllocator),
1807                                                      Op, Ty);
1808     UniqueSCEVs.InsertNode(S, IP);
1809     addToLoopUseLists(S);
1810     return S;
1811   }
1812 
1813   // sext(trunc(x)) --> sext(x) or x or trunc(x)
1814   if (const SCEVTruncateExpr *ST = dyn_cast<SCEVTruncateExpr>(Op)) {
1815     // It's possible the bits taken off by the truncate were all sign bits. If
1816     // so, we should be able to simplify this further.
1817     const SCEV *X = ST->getOperand();
1818     ConstantRange CR = getSignedRange(X);
1819     unsigned TruncBits = getTypeSizeInBits(ST->getType());
1820     unsigned NewBits = getTypeSizeInBits(Ty);
1821     if (CR.truncate(TruncBits).signExtend(NewBits).contains(
1822             CR.sextOrTrunc(NewBits)))
1823       return getTruncateOrSignExtend(X, Ty);
1824   }
1825 
1826   // sext(C1 + (C2 * x)) --> C1 + sext(C2 * x) if C1 < C2
1827   if (auto *SA = dyn_cast<SCEVAddExpr>(Op)) {
1828     if (SA->getNumOperands() == 2) {
1829       auto *SC1 = dyn_cast<SCEVConstant>(SA->getOperand(0));
1830       auto *SMul = dyn_cast<SCEVMulExpr>(SA->getOperand(1));
1831       if (SMul && SC1) {
1832         if (auto *SC2 = dyn_cast<SCEVConstant>(SMul->getOperand(0))) {
1833           const APInt &C1 = SC1->getAPInt();
1834           const APInt &C2 = SC2->getAPInt();
1835           if (C1.isStrictlyPositive() && C2.isStrictlyPositive() &&
1836               C2.ugt(C1) && C2.isPowerOf2())
1837             return getAddExpr(getSignExtendExpr(SC1, Ty, Depth + 1),
1838                               getSignExtendExpr(SMul, Ty, Depth + 1),
1839                               SCEV::FlagAnyWrap, Depth + 1);
1840         }
1841       }
1842     }
1843 
1844     // sext((A + B + ...)<nsw>) --> (sext(A) + sext(B) + ...)<nsw>
1845     if (SA->hasNoSignedWrap()) {
1846       // If the addition does not sign overflow then we can, by definition,
1847       // commute the sign extension with the addition operation.
1848       SmallVector<const SCEV *, 4> Ops;
1849       for (const auto *Op : SA->operands())
1850         Ops.push_back(getSignExtendExpr(Op, Ty, Depth + 1));
1851       return getAddExpr(Ops, SCEV::FlagNSW, Depth + 1);
1852     }
1853   }
1854   // If the input value is a chrec scev, and we can prove that the value
1855   // did not overflow the old, smaller, value, we can sign extend all of the
1856   // operands (often constants).  This allows analysis of something like
1857   // this:  for (signed char X = 0; X < 100; ++X) { int Y = X; }
1858   if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Op))
1859     if (AR->isAffine()) {
1860       const SCEV *Start = AR->getStart();
1861       const SCEV *Step = AR->getStepRecurrence(*this);
1862       unsigned BitWidth = getTypeSizeInBits(AR->getType());
1863       const Loop *L = AR->getLoop();
1864 
1865       if (!AR->hasNoSignedWrap()) {
1866         auto NewFlags = proveNoWrapViaConstantRanges(AR);
1867         const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(NewFlags);
1868       }
1869 
1870       // If we have special knowledge that this addrec won't overflow,
1871       // we don't need to do any further analysis.
1872       if (AR->hasNoSignedWrap())
1873         return getAddRecExpr(
1874             getExtendAddRecStart<SCEVSignExtendExpr>(AR, Ty, this, Depth + 1),
1875             getSignExtendExpr(Step, Ty, Depth + 1), L, SCEV::FlagNSW);
1876 
1877       // Check whether the backedge-taken count is SCEVCouldNotCompute.
1878       // Note that this serves two purposes: It filters out loops that are
1879       // simply not analyzable, and it covers the case where this code is
1880       // being called from within backedge-taken count analysis, such that
1881       // attempting to ask for the backedge-taken count would likely result
1882       // in infinite recursion. In the later case, the analysis code will
1883       // cope with a conservative value, and it will take care to purge
1884       // that value once it has finished.
1885       const SCEV *MaxBECount = getMaxBackedgeTakenCount(L);
1886       if (!isa<SCEVCouldNotCompute>(MaxBECount)) {
1887         // Manually compute the final value for AR, checking for
1888         // overflow.
1889 
1890         // Check whether the backedge-taken count can be losslessly casted to
1891         // the addrec's type. The count is always unsigned.
1892         const SCEV *CastedMaxBECount =
1893           getTruncateOrZeroExtend(MaxBECount, Start->getType());
1894         const SCEV *RecastedMaxBECount =
1895           getTruncateOrZeroExtend(CastedMaxBECount, MaxBECount->getType());
1896         if (MaxBECount == RecastedMaxBECount) {
1897           Type *WideTy = IntegerType::get(getContext(), BitWidth * 2);
1898           // Check whether Start+Step*MaxBECount has no signed overflow.
1899           const SCEV *SMul = getMulExpr(CastedMaxBECount, Step,
1900                                         SCEV::FlagAnyWrap, Depth + 1);
1901           const SCEV *SAdd = getSignExtendExpr(getAddExpr(Start, SMul,
1902                                                           SCEV::FlagAnyWrap,
1903                                                           Depth + 1),
1904                                                WideTy, Depth + 1);
1905           const SCEV *WideStart = getSignExtendExpr(Start, WideTy, Depth + 1);
1906           const SCEV *WideMaxBECount =
1907             getZeroExtendExpr(CastedMaxBECount, WideTy, Depth + 1);
1908           const SCEV *OperandExtendedAdd =
1909             getAddExpr(WideStart,
1910                        getMulExpr(WideMaxBECount,
1911                                   getSignExtendExpr(Step, WideTy, Depth + 1),
1912                                   SCEV::FlagAnyWrap, Depth + 1),
1913                        SCEV::FlagAnyWrap, Depth + 1);
1914           if (SAdd == OperandExtendedAdd) {
1915             // Cache knowledge of AR NSW, which is propagated to this AddRec.
1916             const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNSW);
1917             // Return the expression with the addrec on the outside.
1918             return getAddRecExpr(
1919                 getExtendAddRecStart<SCEVSignExtendExpr>(AR, Ty, this,
1920                                                          Depth + 1),
1921                 getSignExtendExpr(Step, Ty, Depth + 1), L,
1922                 AR->getNoWrapFlags());
1923           }
1924           // Similar to above, only this time treat the step value as unsigned.
1925           // This covers loops that count up with an unsigned step.
1926           OperandExtendedAdd =
1927             getAddExpr(WideStart,
1928                        getMulExpr(WideMaxBECount,
1929                                   getZeroExtendExpr(Step, WideTy, Depth + 1),
1930                                   SCEV::FlagAnyWrap, Depth + 1),
1931                        SCEV::FlagAnyWrap, Depth + 1);
1932           if (SAdd == OperandExtendedAdd) {
1933             // If AR wraps around then
1934             //
1935             //    abs(Step) * MaxBECount > unsigned-max(AR->getType())
1936             // => SAdd != OperandExtendedAdd
1937             //
1938             // Thus (AR is not NW => SAdd != OperandExtendedAdd) <=>
1939             // (SAdd == OperandExtendedAdd => AR is NW)
1940 
1941             const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNW);
1942 
1943             // Return the expression with the addrec on the outside.
1944             return getAddRecExpr(
1945                 getExtendAddRecStart<SCEVSignExtendExpr>(AR, Ty, this,
1946                                                          Depth + 1),
1947                 getZeroExtendExpr(Step, Ty, Depth + 1), L,
1948                 AR->getNoWrapFlags());
1949           }
1950         }
1951       }
1952 
1953       // Normally, in the cases we can prove no-overflow via a
1954       // backedge guarding condition, we can also compute a backedge
1955       // taken count for the loop.  The exceptions are assumptions and
1956       // guards present in the loop -- SCEV is not great at exploiting
1957       // these to compute max backedge taken counts, but can still use
1958       // these to prove lack of overflow.  Use this fact to avoid
1959       // doing extra work that may not pay off.
1960 
1961       if (!isa<SCEVCouldNotCompute>(MaxBECount) || HasGuards ||
1962           !AC.assumptions().empty()) {
1963         // If the backedge is guarded by a comparison with the pre-inc
1964         // value the addrec is safe. Also, if the entry is guarded by
1965         // a comparison with the start value and the backedge is
1966         // guarded by a comparison with the post-inc value, the addrec
1967         // is safe.
1968         ICmpInst::Predicate Pred;
1969         const SCEV *OverflowLimit =
1970             getSignedOverflowLimitForStep(Step, &Pred, this);
1971         if (OverflowLimit &&
1972             (isLoopBackedgeGuardedByCond(L, Pred, AR, OverflowLimit) ||
1973              (isLoopEntryGuardedByCond(L, Pred, Start, OverflowLimit) &&
1974               isLoopBackedgeGuardedByCond(L, Pred, AR->getPostIncExpr(*this),
1975                                           OverflowLimit)))) {
1976           // Cache knowledge of AR NSW, then propagate NSW to the wide AddRec.
1977           const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNSW);
1978           return getAddRecExpr(
1979               getExtendAddRecStart<SCEVSignExtendExpr>(AR, Ty, this, Depth + 1),
1980               getSignExtendExpr(Step, Ty, Depth + 1), L, AR->getNoWrapFlags());
1981         }
1982       }
1983 
1984       // If Start and Step are constants, check if we can apply this
1985       // transformation:
1986       // sext{C1,+,C2} --> C1 + sext{0,+,C2} if C1 < C2
1987       auto *SC1 = dyn_cast<SCEVConstant>(Start);
1988       auto *SC2 = dyn_cast<SCEVConstant>(Step);
1989       if (SC1 && SC2) {
1990         const APInt &C1 = SC1->getAPInt();
1991         const APInt &C2 = SC2->getAPInt();
1992         if (C1.isStrictlyPositive() && C2.isStrictlyPositive() && C2.ugt(C1) &&
1993             C2.isPowerOf2()) {
1994           Start = getSignExtendExpr(Start, Ty, Depth + 1);
1995           const SCEV *NewAR = getAddRecExpr(getZero(AR->getType()), Step, L,
1996                                             AR->getNoWrapFlags());
1997           return getAddExpr(Start, getSignExtendExpr(NewAR, Ty, Depth + 1),
1998                             SCEV::FlagAnyWrap, Depth + 1);
1999         }
2000       }
2001 
2002       if (proveNoWrapByVaryingStart<SCEVSignExtendExpr>(Start, Step, L)) {
2003         const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNSW);
2004         return getAddRecExpr(
2005             getExtendAddRecStart<SCEVSignExtendExpr>(AR, Ty, this, Depth + 1),
2006             getSignExtendExpr(Step, Ty, Depth + 1), L, AR->getNoWrapFlags());
2007       }
2008     }
2009 
2010   // If the input value is provably positive and we could not simplify
2011   // away the sext build a zext instead.
2012   if (isKnownNonNegative(Op))
2013     return getZeroExtendExpr(Op, Ty, Depth + 1);
2014 
2015   // The cast wasn't folded; create an explicit cast node.
2016   // Recompute the insert position, as it may have been invalidated.
2017   if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
2018   SCEV *S = new (SCEVAllocator) SCEVSignExtendExpr(ID.Intern(SCEVAllocator),
2019                                                    Op, Ty);
2020   UniqueSCEVs.InsertNode(S, IP);
2021   addToLoopUseLists(S);
2022   return S;
2023 }
2024 
2025 /// getAnyExtendExpr - Return a SCEV for the given operand extended with
2026 /// unspecified bits out to the given type.
2027 const SCEV *ScalarEvolution::getAnyExtendExpr(const SCEV *Op,
2028                                               Type *Ty) {
2029   assert(getTypeSizeInBits(Op->getType()) < getTypeSizeInBits(Ty) &&
2030          "This is not an extending conversion!");
2031   assert(isSCEVable(Ty) &&
2032          "This is not a conversion to a SCEVable type!");
2033   Ty = getEffectiveSCEVType(Ty);
2034 
2035   // Sign-extend negative constants.
2036   if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(Op))
2037     if (SC->getAPInt().isNegative())
2038       return getSignExtendExpr(Op, Ty);
2039 
2040   // Peel off a truncate cast.
2041   if (const SCEVTruncateExpr *T = dyn_cast<SCEVTruncateExpr>(Op)) {
2042     const SCEV *NewOp = T->getOperand();
2043     if (getTypeSizeInBits(NewOp->getType()) < getTypeSizeInBits(Ty))
2044       return getAnyExtendExpr(NewOp, Ty);
2045     return getTruncateOrNoop(NewOp, Ty);
2046   }
2047 
2048   // Next try a zext cast. If the cast is folded, use it.
2049   const SCEV *ZExt = getZeroExtendExpr(Op, Ty);
2050   if (!isa<SCEVZeroExtendExpr>(ZExt))
2051     return ZExt;
2052 
2053   // Next try a sext cast. If the cast is folded, use it.
2054   const SCEV *SExt = getSignExtendExpr(Op, Ty);
2055   if (!isa<SCEVSignExtendExpr>(SExt))
2056     return SExt;
2057 
2058   // Force the cast to be folded into the operands of an addrec.
2059   if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Op)) {
2060     SmallVector<const SCEV *, 4> Ops;
2061     for (const SCEV *Op : AR->operands())
2062       Ops.push_back(getAnyExtendExpr(Op, Ty));
2063     return getAddRecExpr(Ops, AR->getLoop(), SCEV::FlagNW);
2064   }
2065 
2066   // If the expression is obviously signed, use the sext cast value.
2067   if (isa<SCEVSMaxExpr>(Op))
2068     return SExt;
2069 
2070   // Absent any other information, use the zext cast value.
2071   return ZExt;
2072 }
2073 
2074 /// Process the given Ops list, which is a list of operands to be added under
2075 /// the given scale, update the given map. This is a helper function for
2076 /// getAddRecExpr. As an example of what it does, given a sequence of operands
2077 /// that would form an add expression like this:
2078 ///
2079 ///    m + n + 13 + (A * (o + p + (B * (q + m + 29)))) + r + (-1 * r)
2080 ///
2081 /// where A and B are constants, update the map with these values:
2082 ///
2083 ///    (m, 1+A*B), (n, 1), (o, A), (p, A), (q, A*B), (r, 0)
2084 ///
2085 /// and add 13 + A*B*29 to AccumulatedConstant.
2086 /// This will allow getAddRecExpr to produce this:
2087 ///
2088 ///    13+A*B*29 + n + (m * (1+A*B)) + ((o + p) * A) + (q * A*B)
2089 ///
2090 /// This form often exposes folding opportunities that are hidden in
2091 /// the original operand list.
2092 ///
2093 /// Return true iff it appears that any interesting folding opportunities
2094 /// may be exposed. This helps getAddRecExpr short-circuit extra work in
2095 /// the common case where no interesting opportunities are present, and
2096 /// is also used as a check to avoid infinite recursion.
2097 static bool
2098 CollectAddOperandsWithScales(DenseMap<const SCEV *, APInt> &M,
2099                              SmallVectorImpl<const SCEV *> &NewOps,
2100                              APInt &AccumulatedConstant,
2101                              const SCEV *const *Ops, size_t NumOperands,
2102                              const APInt &Scale,
2103                              ScalarEvolution &SE) {
2104   bool Interesting = false;
2105 
2106   // Iterate over the add operands. They are sorted, with constants first.
2107   unsigned i = 0;
2108   while (const SCEVConstant *C = dyn_cast<SCEVConstant>(Ops[i])) {
2109     ++i;
2110     // Pull a buried constant out to the outside.
2111     if (Scale != 1 || AccumulatedConstant != 0 || C->getValue()->isZero())
2112       Interesting = true;
2113     AccumulatedConstant += Scale * C->getAPInt();
2114   }
2115 
2116   // Next comes everything else. We're especially interested in multiplies
2117   // here, but they're in the middle, so just visit the rest with one loop.
2118   for (; i != NumOperands; ++i) {
2119     const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(Ops[i]);
2120     if (Mul && isa<SCEVConstant>(Mul->getOperand(0))) {
2121       APInt NewScale =
2122           Scale * cast<SCEVConstant>(Mul->getOperand(0))->getAPInt();
2123       if (Mul->getNumOperands() == 2 && isa<SCEVAddExpr>(Mul->getOperand(1))) {
2124         // A multiplication of a constant with another add; recurse.
2125         const SCEVAddExpr *Add = cast<SCEVAddExpr>(Mul->getOperand(1));
2126         Interesting |=
2127           CollectAddOperandsWithScales(M, NewOps, AccumulatedConstant,
2128                                        Add->op_begin(), Add->getNumOperands(),
2129                                        NewScale, SE);
2130       } else {
2131         // A multiplication of a constant with some other value. Update
2132         // the map.
2133         SmallVector<const SCEV *, 4> MulOps(Mul->op_begin()+1, Mul->op_end());
2134         const SCEV *Key = SE.getMulExpr(MulOps);
2135         auto Pair = M.insert({Key, NewScale});
2136         if (Pair.second) {
2137           NewOps.push_back(Pair.first->first);
2138         } else {
2139           Pair.first->second += NewScale;
2140           // The map already had an entry for this value, which may indicate
2141           // a folding opportunity.
2142           Interesting = true;
2143         }
2144       }
2145     } else {
2146       // An ordinary operand. Update the map.
2147       std::pair<DenseMap<const SCEV *, APInt>::iterator, bool> Pair =
2148           M.insert({Ops[i], Scale});
2149       if (Pair.second) {
2150         NewOps.push_back(Pair.first->first);
2151       } else {
2152         Pair.first->second += Scale;
2153         // The map already had an entry for this value, which may indicate
2154         // a folding opportunity.
2155         Interesting = true;
2156       }
2157     }
2158   }
2159 
2160   return Interesting;
2161 }
2162 
2163 // We're trying to construct a SCEV of type `Type' with `Ops' as operands and
2164 // `OldFlags' as can't-wrap behavior.  Infer a more aggressive set of
2165 // can't-overflow flags for the operation if possible.
2166 static SCEV::NoWrapFlags
2167 StrengthenNoWrapFlags(ScalarEvolution *SE, SCEVTypes Type,
2168                       const SmallVectorImpl<const SCEV *> &Ops,
2169                       SCEV::NoWrapFlags Flags) {
2170   using namespace std::placeholders;
2171 
2172   using OBO = OverflowingBinaryOperator;
2173 
2174   bool CanAnalyze =
2175       Type == scAddExpr || Type == scAddRecExpr || Type == scMulExpr;
2176   (void)CanAnalyze;
2177   assert(CanAnalyze && "don't call from other places!");
2178 
2179   int SignOrUnsignMask = SCEV::FlagNUW | SCEV::FlagNSW;
2180   SCEV::NoWrapFlags SignOrUnsignWrap =
2181       ScalarEvolution::maskFlags(Flags, SignOrUnsignMask);
2182 
2183   // If FlagNSW is true and all the operands are non-negative, infer FlagNUW.
2184   auto IsKnownNonNegative = [&](const SCEV *S) {
2185     return SE->isKnownNonNegative(S);
2186   };
2187 
2188   if (SignOrUnsignWrap == SCEV::FlagNSW && all_of(Ops, IsKnownNonNegative))
2189     Flags =
2190         ScalarEvolution::setFlags(Flags, (SCEV::NoWrapFlags)SignOrUnsignMask);
2191 
2192   SignOrUnsignWrap = ScalarEvolution::maskFlags(Flags, SignOrUnsignMask);
2193 
2194   if (SignOrUnsignWrap != SignOrUnsignMask && Type == scAddExpr &&
2195       Ops.size() == 2 && isa<SCEVConstant>(Ops[0])) {
2196 
2197     // (A + C) --> (A + C)<nsw> if the addition does not sign overflow
2198     // (A + C) --> (A + C)<nuw> if the addition does not unsign overflow
2199 
2200     const APInt &C = cast<SCEVConstant>(Ops[0])->getAPInt();
2201     if (!(SignOrUnsignWrap & SCEV::FlagNSW)) {
2202       auto NSWRegion = ConstantRange::makeGuaranteedNoWrapRegion(
2203           Instruction::Add, C, OBO::NoSignedWrap);
2204       if (NSWRegion.contains(SE->getSignedRange(Ops[1])))
2205         Flags = ScalarEvolution::setFlags(Flags, SCEV::FlagNSW);
2206     }
2207     if (!(SignOrUnsignWrap & SCEV::FlagNUW)) {
2208       auto NUWRegion = ConstantRange::makeGuaranteedNoWrapRegion(
2209           Instruction::Add, C, OBO::NoUnsignedWrap);
2210       if (NUWRegion.contains(SE->getUnsignedRange(Ops[1])))
2211         Flags = ScalarEvolution::setFlags(Flags, SCEV::FlagNUW);
2212     }
2213   }
2214 
2215   return Flags;
2216 }
2217 
2218 bool ScalarEvolution::isAvailableAtLoopEntry(const SCEV *S, const Loop *L) {
2219   if (!isLoopInvariant(S, L))
2220     return false;
2221   // If a value depends on a SCEVUnknown which is defined after the loop, we
2222   // conservatively assume that we cannot calculate it at the loop's entry.
2223   struct FindDominatedSCEVUnknown {
2224     bool Found = false;
2225     const Loop *L;
2226     DominatorTree &DT;
2227     LoopInfo &LI;
2228 
2229     FindDominatedSCEVUnknown(const Loop *L, DominatorTree &DT, LoopInfo &LI)
2230         : L(L), DT(DT), LI(LI) {}
2231 
2232     bool checkSCEVUnknown(const SCEVUnknown *SU) {
2233       if (auto *I = dyn_cast<Instruction>(SU->getValue())) {
2234         if (DT.dominates(L->getHeader(), I->getParent()))
2235           Found = true;
2236         else
2237           assert(DT.dominates(I->getParent(), L->getHeader()) &&
2238                  "No dominance relationship between SCEV and loop?");
2239       }
2240       return false;
2241     }
2242 
2243     bool follow(const SCEV *S) {
2244       switch (static_cast<SCEVTypes>(S->getSCEVType())) {
2245       case scConstant:
2246         return false;
2247       case scAddRecExpr:
2248       case scTruncate:
2249       case scZeroExtend:
2250       case scSignExtend:
2251       case scAddExpr:
2252       case scMulExpr:
2253       case scUMaxExpr:
2254       case scSMaxExpr:
2255       case scUDivExpr:
2256         return true;
2257       case scUnknown:
2258         return checkSCEVUnknown(cast<SCEVUnknown>(S));
2259       case scCouldNotCompute:
2260         llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
2261       }
2262       return false;
2263     }
2264 
2265     bool isDone() { return Found; }
2266   };
2267 
2268   FindDominatedSCEVUnknown FSU(L, DT, LI);
2269   SCEVTraversal<FindDominatedSCEVUnknown> ST(FSU);
2270   ST.visitAll(S);
2271   return !FSU.Found;
2272 }
2273 
2274 /// Get a canonical add expression, or something simpler if possible.
2275 const SCEV *ScalarEvolution::getAddExpr(SmallVectorImpl<const SCEV *> &Ops,
2276                                         SCEV::NoWrapFlags Flags,
2277                                         unsigned Depth) {
2278   assert(!(Flags & ~(SCEV::FlagNUW | SCEV::FlagNSW)) &&
2279          "only nuw or nsw allowed");
2280   assert(!Ops.empty() && "Cannot get empty add!");
2281   if (Ops.size() == 1) return Ops[0];
2282 #ifndef NDEBUG
2283   Type *ETy = getEffectiveSCEVType(Ops[0]->getType());
2284   for (unsigned i = 1, e = Ops.size(); i != e; ++i)
2285     assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy &&
2286            "SCEVAddExpr operand types don't match!");
2287 #endif
2288 
2289   // Sort by complexity, this groups all similar expression types together.
2290   GroupByComplexity(Ops, &LI, DT);
2291 
2292   Flags = StrengthenNoWrapFlags(this, scAddExpr, Ops, Flags);
2293 
2294   // If there are any constants, fold them together.
2295   unsigned Idx = 0;
2296   if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(Ops[0])) {
2297     ++Idx;
2298     assert(Idx < Ops.size());
2299     while (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(Ops[Idx])) {
2300       // We found two constants, fold them together!
2301       Ops[0] = getConstant(LHSC->getAPInt() + RHSC->getAPInt());
2302       if (Ops.size() == 2) return Ops[0];
2303       Ops.erase(Ops.begin()+1);  // Erase the folded element
2304       LHSC = cast<SCEVConstant>(Ops[0]);
2305     }
2306 
2307     // If we are left with a constant zero being added, strip it off.
2308     if (LHSC->getValue()->isZero()) {
2309       Ops.erase(Ops.begin());
2310       --Idx;
2311     }
2312 
2313     if (Ops.size() == 1) return Ops[0];
2314   }
2315 
2316   // Limit recursion calls depth.
2317   if (Depth > MaxArithDepth)
2318     return getOrCreateAddExpr(Ops, Flags);
2319 
2320   // Okay, check to see if the same value occurs in the operand list more than
2321   // once.  If so, merge them together into an multiply expression.  Since we
2322   // sorted the list, these values are required to be adjacent.
2323   Type *Ty = Ops[0]->getType();
2324   bool FoundMatch = false;
2325   for (unsigned i = 0, e = Ops.size(); i != e-1; ++i)
2326     if (Ops[i] == Ops[i+1]) {      //  X + Y + Y  -->  X + Y*2
2327       // Scan ahead to count how many equal operands there are.
2328       unsigned Count = 2;
2329       while (i+Count != e && Ops[i+Count] == Ops[i])
2330         ++Count;
2331       // Merge the values into a multiply.
2332       const SCEV *Scale = getConstant(Ty, Count);
2333       const SCEV *Mul = getMulExpr(Scale, Ops[i], SCEV::FlagAnyWrap, Depth + 1);
2334       if (Ops.size() == Count)
2335         return Mul;
2336       Ops[i] = Mul;
2337       Ops.erase(Ops.begin()+i+1, Ops.begin()+i+Count);
2338       --i; e -= Count - 1;
2339       FoundMatch = true;
2340     }
2341   if (FoundMatch)
2342     return getAddExpr(Ops, Flags);
2343 
2344   // Check for truncates. If all the operands are truncated from the same
2345   // type, see if factoring out the truncate would permit the result to be
2346   // folded. eg., n*trunc(x) + m*trunc(y) --> trunc(trunc(m)*x + trunc(n)*y)
2347   // if the contents of the resulting outer trunc fold to something simple.
2348   auto FindTruncSrcType = [&]() -> Type * {
2349     // We're ultimately looking to fold an addrec of truncs and muls of only
2350     // constants and truncs, so if we find any other types of SCEV
2351     // as operands of the addrec then we bail and return nullptr here.
2352     // Otherwise, we return the type of the operand of a trunc that we find.
2353     if (auto *T = dyn_cast<SCEVTruncateExpr>(Ops[Idx]))
2354       return T->getOperand()->getType();
2355     if (const auto *Mul = dyn_cast<SCEVMulExpr>(Ops[Idx])) {
2356       const auto *LastOp = Mul->getOperand(Mul->getNumOperands() - 1);
2357       if (const auto *T = dyn_cast<SCEVTruncateExpr>(LastOp))
2358         return T->getOperand()->getType();
2359     }
2360     return nullptr;
2361   };
2362   if (auto *SrcType = FindTruncSrcType()) {
2363     SmallVector<const SCEV *, 8> LargeOps;
2364     bool Ok = true;
2365     // Check all the operands to see if they can be represented in the
2366     // source type of the truncate.
2367     for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
2368       if (const SCEVTruncateExpr *T = dyn_cast<SCEVTruncateExpr>(Ops[i])) {
2369         if (T->getOperand()->getType() != SrcType) {
2370           Ok = false;
2371           break;
2372         }
2373         LargeOps.push_back(T->getOperand());
2374       } else if (const SCEVConstant *C = dyn_cast<SCEVConstant>(Ops[i])) {
2375         LargeOps.push_back(getAnyExtendExpr(C, SrcType));
2376       } else if (const SCEVMulExpr *M = dyn_cast<SCEVMulExpr>(Ops[i])) {
2377         SmallVector<const SCEV *, 8> LargeMulOps;
2378         for (unsigned j = 0, f = M->getNumOperands(); j != f && Ok; ++j) {
2379           if (const SCEVTruncateExpr *T =
2380                 dyn_cast<SCEVTruncateExpr>(M->getOperand(j))) {
2381             if (T->getOperand()->getType() != SrcType) {
2382               Ok = false;
2383               break;
2384             }
2385             LargeMulOps.push_back(T->getOperand());
2386           } else if (const auto *C = dyn_cast<SCEVConstant>(M->getOperand(j))) {
2387             LargeMulOps.push_back(getAnyExtendExpr(C, SrcType));
2388           } else {
2389             Ok = false;
2390             break;
2391           }
2392         }
2393         if (Ok)
2394           LargeOps.push_back(getMulExpr(LargeMulOps, SCEV::FlagAnyWrap, Depth + 1));
2395       } else {
2396         Ok = false;
2397         break;
2398       }
2399     }
2400     if (Ok) {
2401       // Evaluate the expression in the larger type.
2402       const SCEV *Fold = getAddExpr(LargeOps, Flags, Depth + 1);
2403       // If it folds to something simple, use it. Otherwise, don't.
2404       if (isa<SCEVConstant>(Fold) || isa<SCEVUnknown>(Fold))
2405         return getTruncateExpr(Fold, Ty);
2406     }
2407   }
2408 
2409   // Skip past any other cast SCEVs.
2410   while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scAddExpr)
2411     ++Idx;
2412 
2413   // If there are add operands they would be next.
2414   if (Idx < Ops.size()) {
2415     bool DeletedAdd = false;
2416     while (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Ops[Idx])) {
2417       if (Ops.size() > AddOpsInlineThreshold ||
2418           Add->getNumOperands() > AddOpsInlineThreshold)
2419         break;
2420       // If we have an add, expand the add operands onto the end of the operands
2421       // list.
2422       Ops.erase(Ops.begin()+Idx);
2423       Ops.append(Add->op_begin(), Add->op_end());
2424       DeletedAdd = true;
2425     }
2426 
2427     // If we deleted at least one add, we added operands to the end of the list,
2428     // and they are not necessarily sorted.  Recurse to resort and resimplify
2429     // any operands we just acquired.
2430     if (DeletedAdd)
2431       return getAddExpr(Ops, SCEV::FlagAnyWrap, Depth + 1);
2432   }
2433 
2434   // Skip over the add expression until we get to a multiply.
2435   while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scMulExpr)
2436     ++Idx;
2437 
2438   // Check to see if there are any folding opportunities present with
2439   // operands multiplied by constant values.
2440   if (Idx < Ops.size() && isa<SCEVMulExpr>(Ops[Idx])) {
2441     uint64_t BitWidth = getTypeSizeInBits(Ty);
2442     DenseMap<const SCEV *, APInt> M;
2443     SmallVector<const SCEV *, 8> NewOps;
2444     APInt AccumulatedConstant(BitWidth, 0);
2445     if (CollectAddOperandsWithScales(M, NewOps, AccumulatedConstant,
2446                                      Ops.data(), Ops.size(),
2447                                      APInt(BitWidth, 1), *this)) {
2448       struct APIntCompare {
2449         bool operator()(const APInt &LHS, const APInt &RHS) const {
2450           return LHS.ult(RHS);
2451         }
2452       };
2453 
2454       // Some interesting folding opportunity is present, so its worthwhile to
2455       // re-generate the operands list. Group the operands by constant scale,
2456       // to avoid multiplying by the same constant scale multiple times.
2457       std::map<APInt, SmallVector<const SCEV *, 4>, APIntCompare> MulOpLists;
2458       for (const SCEV *NewOp : NewOps)
2459         MulOpLists[M.find(NewOp)->second].push_back(NewOp);
2460       // Re-generate the operands list.
2461       Ops.clear();
2462       if (AccumulatedConstant != 0)
2463         Ops.push_back(getConstant(AccumulatedConstant));
2464       for (auto &MulOp : MulOpLists)
2465         if (MulOp.first != 0)
2466           Ops.push_back(getMulExpr(
2467               getConstant(MulOp.first),
2468               getAddExpr(MulOp.second, SCEV::FlagAnyWrap, Depth + 1),
2469               SCEV::FlagAnyWrap, Depth + 1));
2470       if (Ops.empty())
2471         return getZero(Ty);
2472       if (Ops.size() == 1)
2473         return Ops[0];
2474       return getAddExpr(Ops, SCEV::FlagAnyWrap, Depth + 1);
2475     }
2476   }
2477 
2478   // If we are adding something to a multiply expression, make sure the
2479   // something is not already an operand of the multiply.  If so, merge it into
2480   // the multiply.
2481   for (; Idx < Ops.size() && isa<SCEVMulExpr>(Ops[Idx]); ++Idx) {
2482     const SCEVMulExpr *Mul = cast<SCEVMulExpr>(Ops[Idx]);
2483     for (unsigned MulOp = 0, e = Mul->getNumOperands(); MulOp != e; ++MulOp) {
2484       const SCEV *MulOpSCEV = Mul->getOperand(MulOp);
2485       if (isa<SCEVConstant>(MulOpSCEV))
2486         continue;
2487       for (unsigned AddOp = 0, e = Ops.size(); AddOp != e; ++AddOp)
2488         if (MulOpSCEV == Ops[AddOp]) {
2489           // Fold W + X + (X * Y * Z)  -->  W + (X * ((Y*Z)+1))
2490           const SCEV *InnerMul = Mul->getOperand(MulOp == 0);
2491           if (Mul->getNumOperands() != 2) {
2492             // If the multiply has more than two operands, we must get the
2493             // Y*Z term.
2494             SmallVector<const SCEV *, 4> MulOps(Mul->op_begin(),
2495                                                 Mul->op_begin()+MulOp);
2496             MulOps.append(Mul->op_begin()+MulOp+1, Mul->op_end());
2497             InnerMul = getMulExpr(MulOps, SCEV::FlagAnyWrap, Depth + 1);
2498           }
2499           SmallVector<const SCEV *, 2> TwoOps = {getOne(Ty), InnerMul};
2500           const SCEV *AddOne = getAddExpr(TwoOps, SCEV::FlagAnyWrap, Depth + 1);
2501           const SCEV *OuterMul = getMulExpr(AddOne, MulOpSCEV,
2502                                             SCEV::FlagAnyWrap, Depth + 1);
2503           if (Ops.size() == 2) return OuterMul;
2504           if (AddOp < Idx) {
2505             Ops.erase(Ops.begin()+AddOp);
2506             Ops.erase(Ops.begin()+Idx-1);
2507           } else {
2508             Ops.erase(Ops.begin()+Idx);
2509             Ops.erase(Ops.begin()+AddOp-1);
2510           }
2511           Ops.push_back(OuterMul);
2512           return getAddExpr(Ops, SCEV::FlagAnyWrap, Depth + 1);
2513         }
2514 
2515       // Check this multiply against other multiplies being added together.
2516       for (unsigned OtherMulIdx = Idx+1;
2517            OtherMulIdx < Ops.size() && isa<SCEVMulExpr>(Ops[OtherMulIdx]);
2518            ++OtherMulIdx) {
2519         const SCEVMulExpr *OtherMul = cast<SCEVMulExpr>(Ops[OtherMulIdx]);
2520         // If MulOp occurs in OtherMul, we can fold the two multiplies
2521         // together.
2522         for (unsigned OMulOp = 0, e = OtherMul->getNumOperands();
2523              OMulOp != e; ++OMulOp)
2524           if (OtherMul->getOperand(OMulOp) == MulOpSCEV) {
2525             // Fold X + (A*B*C) + (A*D*E) --> X + (A*(B*C+D*E))
2526             const SCEV *InnerMul1 = Mul->getOperand(MulOp == 0);
2527             if (Mul->getNumOperands() != 2) {
2528               SmallVector<const SCEV *, 4> MulOps(Mul->op_begin(),
2529                                                   Mul->op_begin()+MulOp);
2530               MulOps.append(Mul->op_begin()+MulOp+1, Mul->op_end());
2531               InnerMul1 = getMulExpr(MulOps, SCEV::FlagAnyWrap, Depth + 1);
2532             }
2533             const SCEV *InnerMul2 = OtherMul->getOperand(OMulOp == 0);
2534             if (OtherMul->getNumOperands() != 2) {
2535               SmallVector<const SCEV *, 4> MulOps(OtherMul->op_begin(),
2536                                                   OtherMul->op_begin()+OMulOp);
2537               MulOps.append(OtherMul->op_begin()+OMulOp+1, OtherMul->op_end());
2538               InnerMul2 = getMulExpr(MulOps, SCEV::FlagAnyWrap, Depth + 1);
2539             }
2540             SmallVector<const SCEV *, 2> TwoOps = {InnerMul1, InnerMul2};
2541             const SCEV *InnerMulSum =
2542                 getAddExpr(TwoOps, SCEV::FlagAnyWrap, Depth + 1);
2543             const SCEV *OuterMul = getMulExpr(MulOpSCEV, InnerMulSum,
2544                                               SCEV::FlagAnyWrap, Depth + 1);
2545             if (Ops.size() == 2) return OuterMul;
2546             Ops.erase(Ops.begin()+Idx);
2547             Ops.erase(Ops.begin()+OtherMulIdx-1);
2548             Ops.push_back(OuterMul);
2549             return getAddExpr(Ops, SCEV::FlagAnyWrap, Depth + 1);
2550           }
2551       }
2552     }
2553   }
2554 
2555   // If there are any add recurrences in the operands list, see if any other
2556   // added values are loop invariant.  If so, we can fold them into the
2557   // recurrence.
2558   while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scAddRecExpr)
2559     ++Idx;
2560 
2561   // Scan over all recurrences, trying to fold loop invariants into them.
2562   for (; Idx < Ops.size() && isa<SCEVAddRecExpr>(Ops[Idx]); ++Idx) {
2563     // Scan all of the other operands to this add and add them to the vector if
2564     // they are loop invariant w.r.t. the recurrence.
2565     SmallVector<const SCEV *, 8> LIOps;
2566     const SCEVAddRecExpr *AddRec = cast<SCEVAddRecExpr>(Ops[Idx]);
2567     const Loop *AddRecLoop = AddRec->getLoop();
2568     for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2569       if (isAvailableAtLoopEntry(Ops[i], AddRecLoop)) {
2570         LIOps.push_back(Ops[i]);
2571         Ops.erase(Ops.begin()+i);
2572         --i; --e;
2573       }
2574 
2575     // If we found some loop invariants, fold them into the recurrence.
2576     if (!LIOps.empty()) {
2577       //  NLI + LI + {Start,+,Step}  -->  NLI + {LI+Start,+,Step}
2578       LIOps.push_back(AddRec->getStart());
2579 
2580       SmallVector<const SCEV *, 4> AddRecOps(AddRec->op_begin(),
2581                                              AddRec->op_end());
2582       // This follows from the fact that the no-wrap flags on the outer add
2583       // expression are applicable on the 0th iteration, when the add recurrence
2584       // will be equal to its start value.
2585       AddRecOps[0] = getAddExpr(LIOps, Flags, Depth + 1);
2586 
2587       // Build the new addrec. Propagate the NUW and NSW flags if both the
2588       // outer add and the inner addrec are guaranteed to have no overflow.
2589       // Always propagate NW.
2590       Flags = AddRec->getNoWrapFlags(setFlags(Flags, SCEV::FlagNW));
2591       const SCEV *NewRec = getAddRecExpr(AddRecOps, AddRecLoop, Flags);
2592 
2593       // If all of the other operands were loop invariant, we are done.
2594       if (Ops.size() == 1) return NewRec;
2595 
2596       // Otherwise, add the folded AddRec by the non-invariant parts.
2597       for (unsigned i = 0;; ++i)
2598         if (Ops[i] == AddRec) {
2599           Ops[i] = NewRec;
2600           break;
2601         }
2602       return getAddExpr(Ops, SCEV::FlagAnyWrap, Depth + 1);
2603     }
2604 
2605     // Okay, if there weren't any loop invariants to be folded, check to see if
2606     // there are multiple AddRec's with the same loop induction variable being
2607     // added together.  If so, we can fold them.
2608     for (unsigned OtherIdx = Idx+1;
2609          OtherIdx < Ops.size() && isa<SCEVAddRecExpr>(Ops[OtherIdx]);
2610          ++OtherIdx) {
2611       // We expect the AddRecExpr's to be sorted in reverse dominance order,
2612       // so that the 1st found AddRecExpr is dominated by all others.
2613       assert(DT.dominates(
2614            cast<SCEVAddRecExpr>(Ops[OtherIdx])->getLoop()->getHeader(),
2615            AddRec->getLoop()->getHeader()) &&
2616         "AddRecExprs are not sorted in reverse dominance order?");
2617       if (AddRecLoop == cast<SCEVAddRecExpr>(Ops[OtherIdx])->getLoop()) {
2618         // Other + {A,+,B}<L> + {C,+,D}<L>  -->  Other + {A+C,+,B+D}<L>
2619         SmallVector<const SCEV *, 4> AddRecOps(AddRec->op_begin(),
2620                                                AddRec->op_end());
2621         for (; OtherIdx != Ops.size() && isa<SCEVAddRecExpr>(Ops[OtherIdx]);
2622              ++OtherIdx) {
2623           const auto *OtherAddRec = cast<SCEVAddRecExpr>(Ops[OtherIdx]);
2624           if (OtherAddRec->getLoop() == AddRecLoop) {
2625             for (unsigned i = 0, e = OtherAddRec->getNumOperands();
2626                  i != e; ++i) {
2627               if (i >= AddRecOps.size()) {
2628                 AddRecOps.append(OtherAddRec->op_begin()+i,
2629                                  OtherAddRec->op_end());
2630                 break;
2631               }
2632               SmallVector<const SCEV *, 2> TwoOps = {
2633                   AddRecOps[i], OtherAddRec->getOperand(i)};
2634               AddRecOps[i] = getAddExpr(TwoOps, SCEV::FlagAnyWrap, Depth + 1);
2635             }
2636             Ops.erase(Ops.begin() + OtherIdx); --OtherIdx;
2637           }
2638         }
2639         // Step size has changed, so we cannot guarantee no self-wraparound.
2640         Ops[Idx] = getAddRecExpr(AddRecOps, AddRecLoop, SCEV::FlagAnyWrap);
2641         return getAddExpr(Ops, SCEV::FlagAnyWrap, Depth + 1);
2642       }
2643     }
2644 
2645     // Otherwise couldn't fold anything into this recurrence.  Move onto the
2646     // next one.
2647   }
2648 
2649   // Okay, it looks like we really DO need an add expr.  Check to see if we
2650   // already have one, otherwise create a new one.
2651   return getOrCreateAddExpr(Ops, Flags);
2652 }
2653 
2654 const SCEV *
2655 ScalarEvolution::getOrCreateAddExpr(SmallVectorImpl<const SCEV *> &Ops,
2656                                     SCEV::NoWrapFlags Flags) {
2657   FoldingSetNodeID ID;
2658   ID.AddInteger(scAddExpr);
2659   for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2660     ID.AddPointer(Ops[i]);
2661   void *IP = nullptr;
2662   SCEVAddExpr *S =
2663       static_cast<SCEVAddExpr *>(UniqueSCEVs.FindNodeOrInsertPos(ID, IP));
2664   if (!S) {
2665     const SCEV **O = SCEVAllocator.Allocate<const SCEV *>(Ops.size());
2666     std::uninitialized_copy(Ops.begin(), Ops.end(), O);
2667     S = new (SCEVAllocator)
2668         SCEVAddExpr(ID.Intern(SCEVAllocator), O, Ops.size());
2669     UniqueSCEVs.InsertNode(S, IP);
2670     addToLoopUseLists(S);
2671   }
2672   S->setNoWrapFlags(Flags);
2673   return S;
2674 }
2675 
2676 const SCEV *
2677 ScalarEvolution::getOrCreateMulExpr(SmallVectorImpl<const SCEV *> &Ops,
2678                                     SCEV::NoWrapFlags Flags) {
2679   FoldingSetNodeID ID;
2680   ID.AddInteger(scMulExpr);
2681   for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2682     ID.AddPointer(Ops[i]);
2683   void *IP = nullptr;
2684   SCEVMulExpr *S =
2685     static_cast<SCEVMulExpr *>(UniqueSCEVs.FindNodeOrInsertPos(ID, IP));
2686   if (!S) {
2687     const SCEV **O = SCEVAllocator.Allocate<const SCEV *>(Ops.size());
2688     std::uninitialized_copy(Ops.begin(), Ops.end(), O);
2689     S = new (SCEVAllocator) SCEVMulExpr(ID.Intern(SCEVAllocator),
2690                                         O, Ops.size());
2691     UniqueSCEVs.InsertNode(S, IP);
2692     addToLoopUseLists(S);
2693   }
2694   S->setNoWrapFlags(Flags);
2695   return S;
2696 }
2697 
2698 static uint64_t umul_ov(uint64_t i, uint64_t j, bool &Overflow) {
2699   uint64_t k = i*j;
2700   if (j > 1 && k / j != i) Overflow = true;
2701   return k;
2702 }
2703 
2704 /// Compute the result of "n choose k", the binomial coefficient.  If an
2705 /// intermediate computation overflows, Overflow will be set and the return will
2706 /// be garbage. Overflow is not cleared on absence of overflow.
2707 static uint64_t Choose(uint64_t n, uint64_t k, bool &Overflow) {
2708   // We use the multiplicative formula:
2709   //     n(n-1)(n-2)...(n-(k-1)) / k(k-1)(k-2)...1 .
2710   // At each iteration, we take the n-th term of the numeral and divide by the
2711   // (k-n)th term of the denominator.  This division will always produce an
2712   // integral result, and helps reduce the chance of overflow in the
2713   // intermediate computations. However, we can still overflow even when the
2714   // final result would fit.
2715 
2716   if (n == 0 || n == k) return 1;
2717   if (k > n) return 0;
2718 
2719   if (k > n/2)
2720     k = n-k;
2721 
2722   uint64_t r = 1;
2723   for (uint64_t i = 1; i <= k; ++i) {
2724     r = umul_ov(r, n-(i-1), Overflow);
2725     r /= i;
2726   }
2727   return r;
2728 }
2729 
2730 /// Determine if any of the operands in this SCEV are a constant or if
2731 /// any of the add or multiply expressions in this SCEV contain a constant.
2732 static bool containsConstantInAddMulChain(const SCEV *StartExpr) {
2733   struct FindConstantInAddMulChain {
2734     bool FoundConstant = false;
2735 
2736     bool follow(const SCEV *S) {
2737       FoundConstant |= isa<SCEVConstant>(S);
2738       return isa<SCEVAddExpr>(S) || isa<SCEVMulExpr>(S);
2739     }
2740 
2741     bool isDone() const {
2742       return FoundConstant;
2743     }
2744   };
2745 
2746   FindConstantInAddMulChain F;
2747   SCEVTraversal<FindConstantInAddMulChain> ST(F);
2748   ST.visitAll(StartExpr);
2749   return F.FoundConstant;
2750 }
2751 
2752 /// Get a canonical multiply expression, or something simpler if possible.
2753 const SCEV *ScalarEvolution::getMulExpr(SmallVectorImpl<const SCEV *> &Ops,
2754                                         SCEV::NoWrapFlags Flags,
2755                                         unsigned Depth) {
2756   assert(Flags == maskFlags(Flags, SCEV::FlagNUW | SCEV::FlagNSW) &&
2757          "only nuw or nsw allowed");
2758   assert(!Ops.empty() && "Cannot get empty mul!");
2759   if (Ops.size() == 1) return Ops[0];
2760 #ifndef NDEBUG
2761   Type *ETy = getEffectiveSCEVType(Ops[0]->getType());
2762   for (unsigned i = 1, e = Ops.size(); i != e; ++i)
2763     assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy &&
2764            "SCEVMulExpr operand types don't match!");
2765 #endif
2766 
2767   // Sort by complexity, this groups all similar expression types together.
2768   GroupByComplexity(Ops, &LI, DT);
2769 
2770   Flags = StrengthenNoWrapFlags(this, scMulExpr, Ops, Flags);
2771 
2772   // Limit recursion calls depth.
2773   if (Depth > MaxArithDepth)
2774     return getOrCreateMulExpr(Ops, Flags);
2775 
2776   // If there are any constants, fold them together.
2777   unsigned Idx = 0;
2778   if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(Ops[0])) {
2779 
2780     // C1*(C2+V) -> C1*C2 + C1*V
2781     if (Ops.size() == 2)
2782         if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Ops[1]))
2783           // If any of Add's ops are Adds or Muls with a constant,
2784           // apply this transformation as well.
2785           if (Add->getNumOperands() == 2)
2786             // TODO: There are some cases where this transformation is not
2787             // profitable, for example:
2788             // Add = (C0 + X) * Y + Z.
2789             // Maybe the scope of this transformation should be narrowed down.
2790             if (containsConstantInAddMulChain(Add))
2791               return getAddExpr(getMulExpr(LHSC, Add->getOperand(0),
2792                                            SCEV::FlagAnyWrap, Depth + 1),
2793                                 getMulExpr(LHSC, Add->getOperand(1),
2794                                            SCEV::FlagAnyWrap, Depth + 1),
2795                                 SCEV::FlagAnyWrap, Depth + 1);
2796 
2797     ++Idx;
2798     while (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(Ops[Idx])) {
2799       // We found two constants, fold them together!
2800       ConstantInt *Fold =
2801           ConstantInt::get(getContext(), LHSC->getAPInt() * RHSC->getAPInt());
2802       Ops[0] = getConstant(Fold);
2803       Ops.erase(Ops.begin()+1);  // Erase the folded element
2804       if (Ops.size() == 1) return Ops[0];
2805       LHSC = cast<SCEVConstant>(Ops[0]);
2806     }
2807 
2808     // If we are left with a constant one being multiplied, strip it off.
2809     if (cast<SCEVConstant>(Ops[0])->getValue()->isOne()) {
2810       Ops.erase(Ops.begin());
2811       --Idx;
2812     } else if (cast<SCEVConstant>(Ops[0])->getValue()->isZero()) {
2813       // If we have a multiply of zero, it will always be zero.
2814       return Ops[0];
2815     } else if (Ops[0]->isAllOnesValue()) {
2816       // If we have a mul by -1 of an add, try distributing the -1 among the
2817       // add operands.
2818       if (Ops.size() == 2) {
2819         if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Ops[1])) {
2820           SmallVector<const SCEV *, 4> NewOps;
2821           bool AnyFolded = false;
2822           for (const SCEV *AddOp : Add->operands()) {
2823             const SCEV *Mul = getMulExpr(Ops[0], AddOp, SCEV::FlagAnyWrap,
2824                                          Depth + 1);
2825             if (!isa<SCEVMulExpr>(Mul)) AnyFolded = true;
2826             NewOps.push_back(Mul);
2827           }
2828           if (AnyFolded)
2829             return getAddExpr(NewOps, SCEV::FlagAnyWrap, Depth + 1);
2830         } else if (const auto *AddRec = dyn_cast<SCEVAddRecExpr>(Ops[1])) {
2831           // Negation preserves a recurrence's no self-wrap property.
2832           SmallVector<const SCEV *, 4> Operands;
2833           for (const SCEV *AddRecOp : AddRec->operands())
2834             Operands.push_back(getMulExpr(Ops[0], AddRecOp, SCEV::FlagAnyWrap,
2835                                           Depth + 1));
2836 
2837           return getAddRecExpr(Operands, AddRec->getLoop(),
2838                                AddRec->getNoWrapFlags(SCEV::FlagNW));
2839         }
2840       }
2841     }
2842 
2843     if (Ops.size() == 1)
2844       return Ops[0];
2845   }
2846 
2847   // Skip over the add expression until we get to a multiply.
2848   while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scMulExpr)
2849     ++Idx;
2850 
2851   // If there are mul operands inline them all into this expression.
2852   if (Idx < Ops.size()) {
2853     bool DeletedMul = false;
2854     while (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(Ops[Idx])) {
2855       if (Ops.size() > MulOpsInlineThreshold)
2856         break;
2857       // If we have an mul, expand the mul operands onto the end of the
2858       // operands list.
2859       Ops.erase(Ops.begin()+Idx);
2860       Ops.append(Mul->op_begin(), Mul->op_end());
2861       DeletedMul = true;
2862     }
2863 
2864     // If we deleted at least one mul, we added operands to the end of the
2865     // list, and they are not necessarily sorted.  Recurse to resort and
2866     // resimplify any operands we just acquired.
2867     if (DeletedMul)
2868       return getMulExpr(Ops, SCEV::FlagAnyWrap, Depth + 1);
2869   }
2870 
2871   // If there are any add recurrences in the operands list, see if any other
2872   // added values are loop invariant.  If so, we can fold them into the
2873   // recurrence.
2874   while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scAddRecExpr)
2875     ++Idx;
2876 
2877   // Scan over all recurrences, trying to fold loop invariants into them.
2878   for (; Idx < Ops.size() && isa<SCEVAddRecExpr>(Ops[Idx]); ++Idx) {
2879     // Scan all of the other operands to this mul and add them to the vector
2880     // if they are loop invariant w.r.t. the recurrence.
2881     SmallVector<const SCEV *, 8> LIOps;
2882     const SCEVAddRecExpr *AddRec = cast<SCEVAddRecExpr>(Ops[Idx]);
2883     const Loop *AddRecLoop = AddRec->getLoop();
2884     for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2885       if (isAvailableAtLoopEntry(Ops[i], AddRecLoop)) {
2886         LIOps.push_back(Ops[i]);
2887         Ops.erase(Ops.begin()+i);
2888         --i; --e;
2889       }
2890 
2891     // If we found some loop invariants, fold them into the recurrence.
2892     if (!LIOps.empty()) {
2893       //  NLI * LI * {Start,+,Step}  -->  NLI * {LI*Start,+,LI*Step}
2894       SmallVector<const SCEV *, 4> NewOps;
2895       NewOps.reserve(AddRec->getNumOperands());
2896       const SCEV *Scale = getMulExpr(LIOps, SCEV::FlagAnyWrap, Depth + 1);
2897       for (unsigned i = 0, e = AddRec->getNumOperands(); i != e; ++i)
2898         NewOps.push_back(getMulExpr(Scale, AddRec->getOperand(i),
2899                                     SCEV::FlagAnyWrap, Depth + 1));
2900 
2901       // Build the new addrec. Propagate the NUW and NSW flags if both the
2902       // outer mul and the inner addrec are guaranteed to have no overflow.
2903       //
2904       // No self-wrap cannot be guaranteed after changing the step size, but
2905       // will be inferred if either NUW or NSW is true.
2906       Flags = AddRec->getNoWrapFlags(clearFlags(Flags, SCEV::FlagNW));
2907       const SCEV *NewRec = getAddRecExpr(NewOps, AddRecLoop, Flags);
2908 
2909       // If all of the other operands were loop invariant, we are done.
2910       if (Ops.size() == 1) return NewRec;
2911 
2912       // Otherwise, multiply the folded AddRec by the non-invariant parts.
2913       for (unsigned i = 0;; ++i)
2914         if (Ops[i] == AddRec) {
2915           Ops[i] = NewRec;
2916           break;
2917         }
2918       return getMulExpr(Ops, SCEV::FlagAnyWrap, Depth + 1);
2919     }
2920 
2921     // Okay, if there weren't any loop invariants to be folded, check to see
2922     // if there are multiple AddRec's with the same loop induction variable
2923     // being multiplied together.  If so, we can fold them.
2924 
2925     // {A1,+,A2,+,...,+,An}<L> * {B1,+,B2,+,...,+,Bn}<L>
2926     // = {x=1 in [ sum y=x..2x [ sum z=max(y-x, y-n)..min(x,n) [
2927     //       choose(x, 2x)*choose(2x-y, x-z)*A_{y-z}*B_z
2928     //   ]]],+,...up to x=2n}.
2929     // Note that the arguments to choose() are always integers with values
2930     // known at compile time, never SCEV objects.
2931     //
2932     // The implementation avoids pointless extra computations when the two
2933     // addrec's are of different length (mathematically, it's equivalent to
2934     // an infinite stream of zeros on the right).
2935     bool OpsModified = false;
2936     for (unsigned OtherIdx = Idx+1;
2937          OtherIdx != Ops.size() && isa<SCEVAddRecExpr>(Ops[OtherIdx]);
2938          ++OtherIdx) {
2939       const SCEVAddRecExpr *OtherAddRec =
2940         dyn_cast<SCEVAddRecExpr>(Ops[OtherIdx]);
2941       if (!OtherAddRec || OtherAddRec->getLoop() != AddRecLoop)
2942         continue;
2943 
2944       // Limit max number of arguments to avoid creation of unreasonably big
2945       // SCEVAddRecs with very complex operands.
2946       if (AddRec->getNumOperands() + OtherAddRec->getNumOperands() - 1 >
2947           MaxAddRecSize)
2948         continue;
2949 
2950       bool Overflow = false;
2951       Type *Ty = AddRec->getType();
2952       bool LargerThan64Bits = getTypeSizeInBits(Ty) > 64;
2953       SmallVector<const SCEV*, 7> AddRecOps;
2954       for (int x = 0, xe = AddRec->getNumOperands() +
2955              OtherAddRec->getNumOperands() - 1; x != xe && !Overflow; ++x) {
2956         const SCEV *Term = getZero(Ty);
2957         for (int y = x, ye = 2*x+1; y != ye && !Overflow; ++y) {
2958           uint64_t Coeff1 = Choose(x, 2*x - y, Overflow);
2959           for (int z = std::max(y-x, y-(int)AddRec->getNumOperands()+1),
2960                  ze = std::min(x+1, (int)OtherAddRec->getNumOperands());
2961                z < ze && !Overflow; ++z) {
2962             uint64_t Coeff2 = Choose(2*x - y, x-z, Overflow);
2963             uint64_t Coeff;
2964             if (LargerThan64Bits)
2965               Coeff = umul_ov(Coeff1, Coeff2, Overflow);
2966             else
2967               Coeff = Coeff1*Coeff2;
2968             const SCEV *CoeffTerm = getConstant(Ty, Coeff);
2969             const SCEV *Term1 = AddRec->getOperand(y-z);
2970             const SCEV *Term2 = OtherAddRec->getOperand(z);
2971             Term = getAddExpr(Term, getMulExpr(CoeffTerm, Term1, Term2,
2972                                                SCEV::FlagAnyWrap, Depth + 1),
2973                               SCEV::FlagAnyWrap, Depth + 1);
2974           }
2975         }
2976         AddRecOps.push_back(Term);
2977       }
2978       if (!Overflow) {
2979         const SCEV *NewAddRec = getAddRecExpr(AddRecOps, AddRec->getLoop(),
2980                                               SCEV::FlagAnyWrap);
2981         if (Ops.size() == 2) return NewAddRec;
2982         Ops[Idx] = NewAddRec;
2983         Ops.erase(Ops.begin() + OtherIdx); --OtherIdx;
2984         OpsModified = true;
2985         AddRec = dyn_cast<SCEVAddRecExpr>(NewAddRec);
2986         if (!AddRec)
2987           break;
2988       }
2989     }
2990     if (OpsModified)
2991       return getMulExpr(Ops, SCEV::FlagAnyWrap, Depth + 1);
2992 
2993     // Otherwise couldn't fold anything into this recurrence.  Move onto the
2994     // next one.
2995   }
2996 
2997   // Okay, it looks like we really DO need an mul expr.  Check to see if we
2998   // already have one, otherwise create a new one.
2999   return getOrCreateMulExpr(Ops, Flags);
3000 }
3001 
3002 /// Represents an unsigned remainder expression based on unsigned division.
3003 const SCEV *ScalarEvolution::getURemExpr(const SCEV *LHS,
3004                                          const SCEV *RHS) {
3005   assert(getEffectiveSCEVType(LHS->getType()) ==
3006          getEffectiveSCEVType(RHS->getType()) &&
3007          "SCEVURemExpr operand types don't match!");
3008 
3009   // Short-circuit easy cases
3010   if (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(RHS)) {
3011     // If constant is one, the result is trivial
3012     if (RHSC->getValue()->isOne())
3013       return getZero(LHS->getType()); // X urem 1 --> 0
3014 
3015     // If constant is a power of two, fold into a zext(trunc(LHS)).
3016     if (RHSC->getAPInt().isPowerOf2()) {
3017       Type *FullTy = LHS->getType();
3018       Type *TruncTy =
3019           IntegerType::get(getContext(), RHSC->getAPInt().logBase2());
3020       return getZeroExtendExpr(getTruncateExpr(LHS, TruncTy), FullTy);
3021     }
3022   }
3023 
3024   // Fallback to %a == %x urem %y == %x -<nuw> ((%x udiv %y) *<nuw> %y)
3025   const SCEV *UDiv = getUDivExpr(LHS, RHS);
3026   const SCEV *Mult = getMulExpr(UDiv, RHS, SCEV::FlagNUW);
3027   return getMinusSCEV(LHS, Mult, SCEV::FlagNUW);
3028 }
3029 
3030 /// Get a canonical unsigned division expression, or something simpler if
3031 /// possible.
3032 const SCEV *ScalarEvolution::getUDivExpr(const SCEV *LHS,
3033                                          const SCEV *RHS) {
3034   assert(getEffectiveSCEVType(LHS->getType()) ==
3035          getEffectiveSCEVType(RHS->getType()) &&
3036          "SCEVUDivExpr operand types don't match!");
3037 
3038   if (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(RHS)) {
3039     if (RHSC->getValue()->isOne())
3040       return LHS;                               // X udiv 1 --> x
3041     // If the denominator is zero, the result of the udiv is undefined. Don't
3042     // try to analyze it, because the resolution chosen here may differ from
3043     // the resolution chosen in other parts of the compiler.
3044     if (!RHSC->getValue()->isZero()) {
3045       // Determine if the division can be folded into the operands of
3046       // its operands.
3047       // TODO: Generalize this to non-constants by using known-bits information.
3048       Type *Ty = LHS->getType();
3049       unsigned LZ = RHSC->getAPInt().countLeadingZeros();
3050       unsigned MaxShiftAmt = getTypeSizeInBits(Ty) - LZ - 1;
3051       // For non-power-of-two values, effectively round the value up to the
3052       // nearest power of two.
3053       if (!RHSC->getAPInt().isPowerOf2())
3054         ++MaxShiftAmt;
3055       IntegerType *ExtTy =
3056         IntegerType::get(getContext(), getTypeSizeInBits(Ty) + MaxShiftAmt);
3057       if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS))
3058         if (const SCEVConstant *Step =
3059             dyn_cast<SCEVConstant>(AR->getStepRecurrence(*this))) {
3060           // {X,+,N}/C --> {X/C,+,N/C} if safe and N/C can be folded.
3061           const APInt &StepInt = Step->getAPInt();
3062           const APInt &DivInt = RHSC->getAPInt();
3063           if (!StepInt.urem(DivInt) &&
3064               getZeroExtendExpr(AR, ExtTy) ==
3065               getAddRecExpr(getZeroExtendExpr(AR->getStart(), ExtTy),
3066                             getZeroExtendExpr(Step, ExtTy),
3067                             AR->getLoop(), SCEV::FlagAnyWrap)) {
3068             SmallVector<const SCEV *, 4> Operands;
3069             for (const SCEV *Op : AR->operands())
3070               Operands.push_back(getUDivExpr(Op, RHS));
3071             return getAddRecExpr(Operands, AR->getLoop(), SCEV::FlagNW);
3072           }
3073           /// Get a canonical UDivExpr for a recurrence.
3074           /// {X,+,N}/C => {Y,+,N}/C where Y=X-(X%N). Safe when C%N=0.
3075           // We can currently only fold X%N if X is constant.
3076           const SCEVConstant *StartC = dyn_cast<SCEVConstant>(AR->getStart());
3077           if (StartC && !DivInt.urem(StepInt) &&
3078               getZeroExtendExpr(AR, ExtTy) ==
3079               getAddRecExpr(getZeroExtendExpr(AR->getStart(), ExtTy),
3080                             getZeroExtendExpr(Step, ExtTy),
3081                             AR->getLoop(), SCEV::FlagAnyWrap)) {
3082             const APInt &StartInt = StartC->getAPInt();
3083             const APInt &StartRem = StartInt.urem(StepInt);
3084             if (StartRem != 0)
3085               LHS = getAddRecExpr(getConstant(StartInt - StartRem), Step,
3086                                   AR->getLoop(), SCEV::FlagNW);
3087           }
3088         }
3089       // (A*B)/C --> A*(B/C) if safe and B/C can be folded.
3090       if (const SCEVMulExpr *M = dyn_cast<SCEVMulExpr>(LHS)) {
3091         SmallVector<const SCEV *, 4> Operands;
3092         for (const SCEV *Op : M->operands())
3093           Operands.push_back(getZeroExtendExpr(Op, ExtTy));
3094         if (getZeroExtendExpr(M, ExtTy) == getMulExpr(Operands))
3095           // Find an operand that's safely divisible.
3096           for (unsigned i = 0, e = M->getNumOperands(); i != e; ++i) {
3097             const SCEV *Op = M->getOperand(i);
3098             const SCEV *Div = getUDivExpr(Op, RHSC);
3099             if (!isa<SCEVUDivExpr>(Div) && getMulExpr(Div, RHSC) == Op) {
3100               Operands = SmallVector<const SCEV *, 4>(M->op_begin(),
3101                                                       M->op_end());
3102               Operands[i] = Div;
3103               return getMulExpr(Operands);
3104             }
3105           }
3106       }
3107       // (A+B)/C --> (A/C + B/C) if safe and A/C and B/C can be folded.
3108       if (const SCEVAddExpr *A = dyn_cast<SCEVAddExpr>(LHS)) {
3109         SmallVector<const SCEV *, 4> Operands;
3110         for (const SCEV *Op : A->operands())
3111           Operands.push_back(getZeroExtendExpr(Op, ExtTy));
3112         if (getZeroExtendExpr(A, ExtTy) == getAddExpr(Operands)) {
3113           Operands.clear();
3114           for (unsigned i = 0, e = A->getNumOperands(); i != e; ++i) {
3115             const SCEV *Op = getUDivExpr(A->getOperand(i), RHS);
3116             if (isa<SCEVUDivExpr>(Op) ||
3117                 getMulExpr(Op, RHS) != A->getOperand(i))
3118               break;
3119             Operands.push_back(Op);
3120           }
3121           if (Operands.size() == A->getNumOperands())
3122             return getAddExpr(Operands);
3123         }
3124       }
3125 
3126       // Fold if both operands are constant.
3127       if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(LHS)) {
3128         Constant *LHSCV = LHSC->getValue();
3129         Constant *RHSCV = RHSC->getValue();
3130         return getConstant(cast<ConstantInt>(ConstantExpr::getUDiv(LHSCV,
3131                                                                    RHSCV)));
3132       }
3133     }
3134   }
3135 
3136   FoldingSetNodeID ID;
3137   ID.AddInteger(scUDivExpr);
3138   ID.AddPointer(LHS);
3139   ID.AddPointer(RHS);
3140   void *IP = nullptr;
3141   if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
3142   SCEV *S = new (SCEVAllocator) SCEVUDivExpr(ID.Intern(SCEVAllocator),
3143                                              LHS, RHS);
3144   UniqueSCEVs.InsertNode(S, IP);
3145   addToLoopUseLists(S);
3146   return S;
3147 }
3148 
3149 static const APInt gcd(const SCEVConstant *C1, const SCEVConstant *C2) {
3150   APInt A = C1->getAPInt().abs();
3151   APInt B = C2->getAPInt().abs();
3152   uint32_t ABW = A.getBitWidth();
3153   uint32_t BBW = B.getBitWidth();
3154 
3155   if (ABW > BBW)
3156     B = B.zext(ABW);
3157   else if (ABW < BBW)
3158     A = A.zext(BBW);
3159 
3160   return APIntOps::GreatestCommonDivisor(std::move(A), std::move(B));
3161 }
3162 
3163 /// Get a canonical unsigned division expression, or something simpler if
3164 /// possible. There is no representation for an exact udiv in SCEV IR, but we
3165 /// can attempt to remove factors from the LHS and RHS.  We can't do this when
3166 /// it's not exact because the udiv may be clearing bits.
3167 const SCEV *ScalarEvolution::getUDivExactExpr(const SCEV *LHS,
3168                                               const SCEV *RHS) {
3169   // TODO: we could try to find factors in all sorts of things, but for now we
3170   // just deal with u/exact (multiply, constant). See SCEVDivision towards the
3171   // end of this file for inspiration.
3172 
3173   const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(LHS);
3174   if (!Mul || !Mul->hasNoUnsignedWrap())
3175     return getUDivExpr(LHS, RHS);
3176 
3177   if (const SCEVConstant *RHSCst = dyn_cast<SCEVConstant>(RHS)) {
3178     // If the mulexpr multiplies by a constant, then that constant must be the
3179     // first element of the mulexpr.
3180     if (const auto *LHSCst = dyn_cast<SCEVConstant>(Mul->getOperand(0))) {
3181       if (LHSCst == RHSCst) {
3182         SmallVector<const SCEV *, 2> Operands;
3183         Operands.append(Mul->op_begin() + 1, Mul->op_end());
3184         return getMulExpr(Operands);
3185       }
3186 
3187       // We can't just assume that LHSCst divides RHSCst cleanly, it could be
3188       // that there's a factor provided by one of the other terms. We need to
3189       // check.
3190       APInt Factor = gcd(LHSCst, RHSCst);
3191       if (!Factor.isIntN(1)) {
3192         LHSCst =
3193             cast<SCEVConstant>(getConstant(LHSCst->getAPInt().udiv(Factor)));
3194         RHSCst =
3195             cast<SCEVConstant>(getConstant(RHSCst->getAPInt().udiv(Factor)));
3196         SmallVector<const SCEV *, 2> Operands;
3197         Operands.push_back(LHSCst);
3198         Operands.append(Mul->op_begin() + 1, Mul->op_end());
3199         LHS = getMulExpr(Operands);
3200         RHS = RHSCst;
3201         Mul = dyn_cast<SCEVMulExpr>(LHS);
3202         if (!Mul)
3203           return getUDivExactExpr(LHS, RHS);
3204       }
3205     }
3206   }
3207 
3208   for (int i = 0, e = Mul->getNumOperands(); i != e; ++i) {
3209     if (Mul->getOperand(i) == RHS) {
3210       SmallVector<const SCEV *, 2> Operands;
3211       Operands.append(Mul->op_begin(), Mul->op_begin() + i);
3212       Operands.append(Mul->op_begin() + i + 1, Mul->op_end());
3213       return getMulExpr(Operands);
3214     }
3215   }
3216 
3217   return getUDivExpr(LHS, RHS);
3218 }
3219 
3220 /// Get an add recurrence expression for the specified loop.  Simplify the
3221 /// expression as much as possible.
3222 const SCEV *ScalarEvolution::getAddRecExpr(const SCEV *Start, const SCEV *Step,
3223                                            const Loop *L,
3224                                            SCEV::NoWrapFlags Flags) {
3225   SmallVector<const SCEV *, 4> Operands;
3226   Operands.push_back(Start);
3227   if (const SCEVAddRecExpr *StepChrec = dyn_cast<SCEVAddRecExpr>(Step))
3228     if (StepChrec->getLoop() == L) {
3229       Operands.append(StepChrec->op_begin(), StepChrec->op_end());
3230       return getAddRecExpr(Operands, L, maskFlags(Flags, SCEV::FlagNW));
3231     }
3232 
3233   Operands.push_back(Step);
3234   return getAddRecExpr(Operands, L, Flags);
3235 }
3236 
3237 /// Get an add recurrence expression for the specified loop.  Simplify the
3238 /// expression as much as possible.
3239 const SCEV *
3240 ScalarEvolution::getAddRecExpr(SmallVectorImpl<const SCEV *> &Operands,
3241                                const Loop *L, SCEV::NoWrapFlags Flags) {
3242   if (Operands.size() == 1) return Operands[0];
3243 #ifndef NDEBUG
3244   Type *ETy = getEffectiveSCEVType(Operands[0]->getType());
3245   for (unsigned i = 1, e = Operands.size(); i != e; ++i)
3246     assert(getEffectiveSCEVType(Operands[i]->getType()) == ETy &&
3247            "SCEVAddRecExpr operand types don't match!");
3248   for (unsigned i = 0, e = Operands.size(); i != e; ++i)
3249     assert(isLoopInvariant(Operands[i], L) &&
3250            "SCEVAddRecExpr operand is not loop-invariant!");
3251 #endif
3252 
3253   if (Operands.back()->isZero()) {
3254     Operands.pop_back();
3255     return getAddRecExpr(Operands, L, SCEV::FlagAnyWrap); // {X,+,0}  -->  X
3256   }
3257 
3258   // It's tempting to want to call getMaxBackedgeTakenCount count here and
3259   // use that information to infer NUW and NSW flags. However, computing a
3260   // BE count requires calling getAddRecExpr, so we may not yet have a
3261   // meaningful BE count at this point (and if we don't, we'd be stuck
3262   // with a SCEVCouldNotCompute as the cached BE count).
3263 
3264   Flags = StrengthenNoWrapFlags(this, scAddRecExpr, Operands, Flags);
3265 
3266   // Canonicalize nested AddRecs in by nesting them in order of loop depth.
3267   if (const SCEVAddRecExpr *NestedAR = dyn_cast<SCEVAddRecExpr>(Operands[0])) {
3268     const Loop *NestedLoop = NestedAR->getLoop();
3269     if (L->contains(NestedLoop)
3270             ? (L->getLoopDepth() < NestedLoop->getLoopDepth())
3271             : (!NestedLoop->contains(L) &&
3272                DT.dominates(L->getHeader(), NestedLoop->getHeader()))) {
3273       SmallVector<const SCEV *, 4> NestedOperands(NestedAR->op_begin(),
3274                                                   NestedAR->op_end());
3275       Operands[0] = NestedAR->getStart();
3276       // AddRecs require their operands be loop-invariant with respect to their
3277       // loops. Don't perform this transformation if it would break this
3278       // requirement.
3279       bool AllInvariant = all_of(
3280           Operands, [&](const SCEV *Op) { return isLoopInvariant(Op, L); });
3281 
3282       if (AllInvariant) {
3283         // Create a recurrence for the outer loop with the same step size.
3284         //
3285         // The outer recurrence keeps its NW flag but only keeps NUW/NSW if the
3286         // inner recurrence has the same property.
3287         SCEV::NoWrapFlags OuterFlags =
3288           maskFlags(Flags, SCEV::FlagNW | NestedAR->getNoWrapFlags());
3289 
3290         NestedOperands[0] = getAddRecExpr(Operands, L, OuterFlags);
3291         AllInvariant = all_of(NestedOperands, [&](const SCEV *Op) {
3292           return isLoopInvariant(Op, NestedLoop);
3293         });
3294 
3295         if (AllInvariant) {
3296           // Ok, both add recurrences are valid after the transformation.
3297           //
3298           // The inner recurrence keeps its NW flag but only keeps NUW/NSW if
3299           // the outer recurrence has the same property.
3300           SCEV::NoWrapFlags InnerFlags =
3301             maskFlags(NestedAR->getNoWrapFlags(), SCEV::FlagNW | Flags);
3302           return getAddRecExpr(NestedOperands, NestedLoop, InnerFlags);
3303         }
3304       }
3305       // Reset Operands to its original state.
3306       Operands[0] = NestedAR;
3307     }
3308   }
3309 
3310   // Okay, it looks like we really DO need an addrec expr.  Check to see if we
3311   // already have one, otherwise create a new one.
3312   FoldingSetNodeID ID;
3313   ID.AddInteger(scAddRecExpr);
3314   for (unsigned i = 0, e = Operands.size(); i != e; ++i)
3315     ID.AddPointer(Operands[i]);
3316   ID.AddPointer(L);
3317   void *IP = nullptr;
3318   SCEVAddRecExpr *S =
3319     static_cast<SCEVAddRecExpr *>(UniqueSCEVs.FindNodeOrInsertPos(ID, IP));
3320   if (!S) {
3321     const SCEV **O = SCEVAllocator.Allocate<const SCEV *>(Operands.size());
3322     std::uninitialized_copy(Operands.begin(), Operands.end(), O);
3323     S = new (SCEVAllocator) SCEVAddRecExpr(ID.Intern(SCEVAllocator),
3324                                            O, Operands.size(), L);
3325     UniqueSCEVs.InsertNode(S, IP);
3326     addToLoopUseLists(S);
3327   }
3328   S->setNoWrapFlags(Flags);
3329   return S;
3330 }
3331 
3332 const SCEV *
3333 ScalarEvolution::getGEPExpr(GEPOperator *GEP,
3334                             const SmallVectorImpl<const SCEV *> &IndexExprs) {
3335   const SCEV *BaseExpr = getSCEV(GEP->getPointerOperand());
3336   // getSCEV(Base)->getType() has the same address space as Base->getType()
3337   // because SCEV::getType() preserves the address space.
3338   Type *IntPtrTy = getEffectiveSCEVType(BaseExpr->getType());
3339   // FIXME(PR23527): Don't blindly transfer the inbounds flag from the GEP
3340   // instruction to its SCEV, because the Instruction may be guarded by control
3341   // flow and the no-overflow bits may not be valid for the expression in any
3342   // context. This can be fixed similarly to how these flags are handled for
3343   // adds.
3344   SCEV::NoWrapFlags Wrap = GEP->isInBounds() ? SCEV::FlagNSW
3345                                              : SCEV::FlagAnyWrap;
3346 
3347   const SCEV *TotalOffset = getZero(IntPtrTy);
3348   // The array size is unimportant. The first thing we do on CurTy is getting
3349   // its element type.
3350   Type *CurTy = ArrayType::get(GEP->getSourceElementType(), 0);
3351   for (const SCEV *IndexExpr : IndexExprs) {
3352     // Compute the (potentially symbolic) offset in bytes for this index.
3353     if (StructType *STy = dyn_cast<StructType>(CurTy)) {
3354       // For a struct, add the member offset.
3355       ConstantInt *Index = cast<SCEVConstant>(IndexExpr)->getValue();
3356       unsigned FieldNo = Index->getZExtValue();
3357       const SCEV *FieldOffset = getOffsetOfExpr(IntPtrTy, STy, FieldNo);
3358 
3359       // Add the field offset to the running total offset.
3360       TotalOffset = getAddExpr(TotalOffset, FieldOffset);
3361 
3362       // Update CurTy to the type of the field at Index.
3363       CurTy = STy->getTypeAtIndex(Index);
3364     } else {
3365       // Update CurTy to its element type.
3366       CurTy = cast<SequentialType>(CurTy)->getElementType();
3367       // For an array, add the element offset, explicitly scaled.
3368       const SCEV *ElementSize = getSizeOfExpr(IntPtrTy, CurTy);
3369       // Getelementptr indices are signed.
3370       IndexExpr = getTruncateOrSignExtend(IndexExpr, IntPtrTy);
3371 
3372       // Multiply the index by the element size to compute the element offset.
3373       const SCEV *LocalOffset = getMulExpr(IndexExpr, ElementSize, Wrap);
3374 
3375       // Add the element offset to the running total offset.
3376       TotalOffset = getAddExpr(TotalOffset, LocalOffset);
3377     }
3378   }
3379 
3380   // Add the total offset from all the GEP indices to the base.
3381   return getAddExpr(BaseExpr, TotalOffset, Wrap);
3382 }
3383 
3384 const SCEV *ScalarEvolution::getSMaxExpr(const SCEV *LHS,
3385                                          const SCEV *RHS) {
3386   SmallVector<const SCEV *, 2> Ops = {LHS, RHS};
3387   return getSMaxExpr(Ops);
3388 }
3389 
3390 const SCEV *
3391 ScalarEvolution::getSMaxExpr(SmallVectorImpl<const SCEV *> &Ops) {
3392   assert(!Ops.empty() && "Cannot get empty smax!");
3393   if (Ops.size() == 1) return Ops[0];
3394 #ifndef NDEBUG
3395   Type *ETy = getEffectiveSCEVType(Ops[0]->getType());
3396   for (unsigned i = 1, e = Ops.size(); i != e; ++i)
3397     assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy &&
3398            "SCEVSMaxExpr operand types don't match!");
3399 #endif
3400 
3401   // Sort by complexity, this groups all similar expression types together.
3402   GroupByComplexity(Ops, &LI, DT);
3403 
3404   // If there are any constants, fold them together.
3405   unsigned Idx = 0;
3406   if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(Ops[0])) {
3407     ++Idx;
3408     assert(Idx < Ops.size());
3409     while (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(Ops[Idx])) {
3410       // We found two constants, fold them together!
3411       ConstantInt *Fold = ConstantInt::get(
3412           getContext(), APIntOps::smax(LHSC->getAPInt(), RHSC->getAPInt()));
3413       Ops[0] = getConstant(Fold);
3414       Ops.erase(Ops.begin()+1);  // Erase the folded element
3415       if (Ops.size() == 1) return Ops[0];
3416       LHSC = cast<SCEVConstant>(Ops[0]);
3417     }
3418 
3419     // If we are left with a constant minimum-int, strip it off.
3420     if (cast<SCEVConstant>(Ops[0])->getValue()->isMinValue(true)) {
3421       Ops.erase(Ops.begin());
3422       --Idx;
3423     } else if (cast<SCEVConstant>(Ops[0])->getValue()->isMaxValue(true)) {
3424       // If we have an smax with a constant maximum-int, it will always be
3425       // maximum-int.
3426       return Ops[0];
3427     }
3428 
3429     if (Ops.size() == 1) return Ops[0];
3430   }
3431 
3432   // Find the first SMax
3433   while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scSMaxExpr)
3434     ++Idx;
3435 
3436   // Check to see if one of the operands is an SMax. If so, expand its operands
3437   // onto our operand list, and recurse to simplify.
3438   if (Idx < Ops.size()) {
3439     bool DeletedSMax = false;
3440     while (const SCEVSMaxExpr *SMax = dyn_cast<SCEVSMaxExpr>(Ops[Idx])) {
3441       Ops.erase(Ops.begin()+Idx);
3442       Ops.append(SMax->op_begin(), SMax->op_end());
3443       DeletedSMax = true;
3444     }
3445 
3446     if (DeletedSMax)
3447       return getSMaxExpr(Ops);
3448   }
3449 
3450   // Okay, check to see if the same value occurs in the operand list twice.  If
3451   // so, delete one.  Since we sorted the list, these values are required to
3452   // be adjacent.
3453   for (unsigned i = 0, e = Ops.size()-1; i != e; ++i)
3454     //  X smax Y smax Y  -->  X smax Y
3455     //  X smax Y         -->  X, if X is always greater than Y
3456     if (Ops[i] == Ops[i+1] ||
3457         isKnownPredicate(ICmpInst::ICMP_SGE, Ops[i], Ops[i+1])) {
3458       Ops.erase(Ops.begin()+i+1, Ops.begin()+i+2);
3459       --i; --e;
3460     } else if (isKnownPredicate(ICmpInst::ICMP_SLE, Ops[i], Ops[i+1])) {
3461       Ops.erase(Ops.begin()+i, Ops.begin()+i+1);
3462       --i; --e;
3463     }
3464 
3465   if (Ops.size() == 1) return Ops[0];
3466 
3467   assert(!Ops.empty() && "Reduced smax down to nothing!");
3468 
3469   // Okay, it looks like we really DO need an smax expr.  Check to see if we
3470   // already have one, otherwise create a new one.
3471   FoldingSetNodeID ID;
3472   ID.AddInteger(scSMaxExpr);
3473   for (unsigned i = 0, e = Ops.size(); i != e; ++i)
3474     ID.AddPointer(Ops[i]);
3475   void *IP = nullptr;
3476   if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
3477   const SCEV **O = SCEVAllocator.Allocate<const SCEV *>(Ops.size());
3478   std::uninitialized_copy(Ops.begin(), Ops.end(), O);
3479   SCEV *S = new (SCEVAllocator) SCEVSMaxExpr(ID.Intern(SCEVAllocator),
3480                                              O, Ops.size());
3481   UniqueSCEVs.InsertNode(S, IP);
3482   addToLoopUseLists(S);
3483   return S;
3484 }
3485 
3486 const SCEV *ScalarEvolution::getUMaxExpr(const SCEV *LHS,
3487                                          const SCEV *RHS) {
3488   SmallVector<const SCEV *, 2> Ops = {LHS, RHS};
3489   return getUMaxExpr(Ops);
3490 }
3491 
3492 const SCEV *
3493 ScalarEvolution::getUMaxExpr(SmallVectorImpl<const SCEV *> &Ops) {
3494   assert(!Ops.empty() && "Cannot get empty umax!");
3495   if (Ops.size() == 1) return Ops[0];
3496 #ifndef NDEBUG
3497   Type *ETy = getEffectiveSCEVType(Ops[0]->getType());
3498   for (unsigned i = 1, e = Ops.size(); i != e; ++i)
3499     assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy &&
3500            "SCEVUMaxExpr operand types don't match!");
3501 #endif
3502 
3503   // Sort by complexity, this groups all similar expression types together.
3504   GroupByComplexity(Ops, &LI, DT);
3505 
3506   // If there are any constants, fold them together.
3507   unsigned Idx = 0;
3508   if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(Ops[0])) {
3509     ++Idx;
3510     assert(Idx < Ops.size());
3511     while (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(Ops[Idx])) {
3512       // We found two constants, fold them together!
3513       ConstantInt *Fold = ConstantInt::get(
3514           getContext(), APIntOps::umax(LHSC->getAPInt(), RHSC->getAPInt()));
3515       Ops[0] = getConstant(Fold);
3516       Ops.erase(Ops.begin()+1);  // Erase the folded element
3517       if (Ops.size() == 1) return Ops[0];
3518       LHSC = cast<SCEVConstant>(Ops[0]);
3519     }
3520 
3521     // If we are left with a constant minimum-int, strip it off.
3522     if (cast<SCEVConstant>(Ops[0])->getValue()->isMinValue(false)) {
3523       Ops.erase(Ops.begin());
3524       --Idx;
3525     } else if (cast<SCEVConstant>(Ops[0])->getValue()->isMaxValue(false)) {
3526       // If we have an umax with a constant maximum-int, it will always be
3527       // maximum-int.
3528       return Ops[0];
3529     }
3530 
3531     if (Ops.size() == 1) return Ops[0];
3532   }
3533 
3534   // Find the first UMax
3535   while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scUMaxExpr)
3536     ++Idx;
3537 
3538   // Check to see if one of the operands is a UMax. If so, expand its operands
3539   // onto our operand list, and recurse to simplify.
3540   if (Idx < Ops.size()) {
3541     bool DeletedUMax = false;
3542     while (const SCEVUMaxExpr *UMax = dyn_cast<SCEVUMaxExpr>(Ops[Idx])) {
3543       Ops.erase(Ops.begin()+Idx);
3544       Ops.append(UMax->op_begin(), UMax->op_end());
3545       DeletedUMax = true;
3546     }
3547 
3548     if (DeletedUMax)
3549       return getUMaxExpr(Ops);
3550   }
3551 
3552   // Okay, check to see if the same value occurs in the operand list twice.  If
3553   // so, delete one.  Since we sorted the list, these values are required to
3554   // be adjacent.
3555   for (unsigned i = 0, e = Ops.size()-1; i != e; ++i)
3556     //  X umax Y umax Y  -->  X umax Y
3557     //  X umax Y         -->  X, if X is always greater than Y
3558     if (Ops[i] == Ops[i+1] ||
3559         isKnownPredicate(ICmpInst::ICMP_UGE, Ops[i], Ops[i+1])) {
3560       Ops.erase(Ops.begin()+i+1, Ops.begin()+i+2);
3561       --i; --e;
3562     } else if (isKnownPredicate(ICmpInst::ICMP_ULE, Ops[i], Ops[i+1])) {
3563       Ops.erase(Ops.begin()+i, Ops.begin()+i+1);
3564       --i; --e;
3565     }
3566 
3567   if (Ops.size() == 1) return Ops[0];
3568 
3569   assert(!Ops.empty() && "Reduced umax down to nothing!");
3570 
3571   // Okay, it looks like we really DO need a umax expr.  Check to see if we
3572   // already have one, otherwise create a new one.
3573   FoldingSetNodeID ID;
3574   ID.AddInteger(scUMaxExpr);
3575   for (unsigned i = 0, e = Ops.size(); i != e; ++i)
3576     ID.AddPointer(Ops[i]);
3577   void *IP = nullptr;
3578   if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
3579   const SCEV **O = SCEVAllocator.Allocate<const SCEV *>(Ops.size());
3580   std::uninitialized_copy(Ops.begin(), Ops.end(), O);
3581   SCEV *S = new (SCEVAllocator) SCEVUMaxExpr(ID.Intern(SCEVAllocator),
3582                                              O, Ops.size());
3583   UniqueSCEVs.InsertNode(S, IP);
3584   addToLoopUseLists(S);
3585   return S;
3586 }
3587 
3588 const SCEV *ScalarEvolution::getSMinExpr(const SCEV *LHS,
3589                                          const SCEV *RHS) {
3590   // ~smax(~x, ~y) == smin(x, y).
3591   return getNotSCEV(getSMaxExpr(getNotSCEV(LHS), getNotSCEV(RHS)));
3592 }
3593 
3594 const SCEV *ScalarEvolution::getUMinExpr(const SCEV *LHS,
3595                                          const SCEV *RHS) {
3596   // ~umax(~x, ~y) == umin(x, y)
3597   return getNotSCEV(getUMaxExpr(getNotSCEV(LHS), getNotSCEV(RHS)));
3598 }
3599 
3600 const SCEV *ScalarEvolution::getSizeOfExpr(Type *IntTy, Type *AllocTy) {
3601   // We can bypass creating a target-independent
3602   // constant expression and then folding it back into a ConstantInt.
3603   // This is just a compile-time optimization.
3604   return getConstant(IntTy, getDataLayout().getTypeAllocSize(AllocTy));
3605 }
3606 
3607 const SCEV *ScalarEvolution::getOffsetOfExpr(Type *IntTy,
3608                                              StructType *STy,
3609                                              unsigned FieldNo) {
3610   // We can bypass creating a target-independent
3611   // constant expression and then folding it back into a ConstantInt.
3612   // This is just a compile-time optimization.
3613   return getConstant(
3614       IntTy, getDataLayout().getStructLayout(STy)->getElementOffset(FieldNo));
3615 }
3616 
3617 const SCEV *ScalarEvolution::getUnknown(Value *V) {
3618   // Don't attempt to do anything other than create a SCEVUnknown object
3619   // here.  createSCEV only calls getUnknown after checking for all other
3620   // interesting possibilities, and any other code that calls getUnknown
3621   // is doing so in order to hide a value from SCEV canonicalization.
3622 
3623   FoldingSetNodeID ID;
3624   ID.AddInteger(scUnknown);
3625   ID.AddPointer(V);
3626   void *IP = nullptr;
3627   if (SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) {
3628     assert(cast<SCEVUnknown>(S)->getValue() == V &&
3629            "Stale SCEVUnknown in uniquing map!");
3630     return S;
3631   }
3632   SCEV *S = new (SCEVAllocator) SCEVUnknown(ID.Intern(SCEVAllocator), V, this,
3633                                             FirstUnknown);
3634   FirstUnknown = cast<SCEVUnknown>(S);
3635   UniqueSCEVs.InsertNode(S, IP);
3636   return S;
3637 }
3638 
3639 //===----------------------------------------------------------------------===//
3640 //            Basic SCEV Analysis and PHI Idiom Recognition Code
3641 //
3642 
3643 /// Test if values of the given type are analyzable within the SCEV
3644 /// framework. This primarily includes integer types, and it can optionally
3645 /// include pointer types if the ScalarEvolution class has access to
3646 /// target-specific information.
3647 bool ScalarEvolution::isSCEVable(Type *Ty) const {
3648   // Integers and pointers are always SCEVable.
3649   return Ty->isIntegerTy() || Ty->isPointerTy();
3650 }
3651 
3652 /// Return the size in bits of the specified type, for which isSCEVable must
3653 /// return true.
3654 uint64_t ScalarEvolution::getTypeSizeInBits(Type *Ty) const {
3655   assert(isSCEVable(Ty) && "Type is not SCEVable!");
3656   return getDataLayout().getTypeSizeInBits(Ty);
3657 }
3658 
3659 /// Return a type with the same bitwidth as the given type and which represents
3660 /// how SCEV will treat the given type, for which isSCEVable must return
3661 /// true. For pointer types, this is the pointer-sized integer type.
3662 Type *ScalarEvolution::getEffectiveSCEVType(Type *Ty) const {
3663   assert(isSCEVable(Ty) && "Type is not SCEVable!");
3664 
3665   if (Ty->isIntegerTy())
3666     return Ty;
3667 
3668   // The only other support type is pointer.
3669   assert(Ty->isPointerTy() && "Unexpected non-pointer non-integer type!");
3670   return getDataLayout().getIntPtrType(Ty);
3671 }
3672 
3673 Type *ScalarEvolution::getWiderType(Type *T1, Type *T2) const {
3674   return  getTypeSizeInBits(T1) >= getTypeSizeInBits(T2) ? T1 : T2;
3675 }
3676 
3677 const SCEV *ScalarEvolution::getCouldNotCompute() {
3678   return CouldNotCompute.get();
3679 }
3680 
3681 bool ScalarEvolution::checkValidity(const SCEV *S) const {
3682   bool ContainsNulls = SCEVExprContains(S, [](const SCEV *S) {
3683     auto *SU = dyn_cast<SCEVUnknown>(S);
3684     return SU && SU->getValue() == nullptr;
3685   });
3686 
3687   return !ContainsNulls;
3688 }
3689 
3690 bool ScalarEvolution::containsAddRecurrence(const SCEV *S) {
3691   HasRecMapType::iterator I = HasRecMap.find(S);
3692   if (I != HasRecMap.end())
3693     return I->second;
3694 
3695   bool FoundAddRec = SCEVExprContains(S, isa<SCEVAddRecExpr, const SCEV *>);
3696   HasRecMap.insert({S, FoundAddRec});
3697   return FoundAddRec;
3698 }
3699 
3700 /// Try to split a SCEVAddExpr into a pair of {SCEV, ConstantInt}.
3701 /// If \p S is a SCEVAddExpr and is composed of a sub SCEV S' and an
3702 /// offset I, then return {S', I}, else return {\p S, nullptr}.
3703 static std::pair<const SCEV *, ConstantInt *> splitAddExpr(const SCEV *S) {
3704   const auto *Add = dyn_cast<SCEVAddExpr>(S);
3705   if (!Add)
3706     return {S, nullptr};
3707 
3708   if (Add->getNumOperands() != 2)
3709     return {S, nullptr};
3710 
3711   auto *ConstOp = dyn_cast<SCEVConstant>(Add->getOperand(0));
3712   if (!ConstOp)
3713     return {S, nullptr};
3714 
3715   return {Add->getOperand(1), ConstOp->getValue()};
3716 }
3717 
3718 /// Return the ValueOffsetPair set for \p S. \p S can be represented
3719 /// by the value and offset from any ValueOffsetPair in the set.
3720 SetVector<ScalarEvolution::ValueOffsetPair> *
3721 ScalarEvolution::getSCEVValues(const SCEV *S) {
3722   ExprValueMapType::iterator SI = ExprValueMap.find_as(S);
3723   if (SI == ExprValueMap.end())
3724     return nullptr;
3725 #ifndef NDEBUG
3726   if (VerifySCEVMap) {
3727     // Check there is no dangling Value in the set returned.
3728     for (const auto &VE : SI->second)
3729       assert(ValueExprMap.count(VE.first));
3730   }
3731 #endif
3732   return &SI->second;
3733 }
3734 
3735 /// Erase Value from ValueExprMap and ExprValueMap. ValueExprMap.erase(V)
3736 /// cannot be used separately. eraseValueFromMap should be used to remove
3737 /// V from ValueExprMap and ExprValueMap at the same time.
3738 void ScalarEvolution::eraseValueFromMap(Value *V) {
3739   ValueExprMapType::iterator I = ValueExprMap.find_as(V);
3740   if (I != ValueExprMap.end()) {
3741     const SCEV *S = I->second;
3742     // Remove {V, 0} from the set of ExprValueMap[S]
3743     if (SetVector<ValueOffsetPair> *SV = getSCEVValues(S))
3744       SV->remove({V, nullptr});
3745 
3746     // Remove {V, Offset} from the set of ExprValueMap[Stripped]
3747     const SCEV *Stripped;
3748     ConstantInt *Offset;
3749     std::tie(Stripped, Offset) = splitAddExpr(S);
3750     if (Offset != nullptr) {
3751       if (SetVector<ValueOffsetPair> *SV = getSCEVValues(Stripped))
3752         SV->remove({V, Offset});
3753     }
3754     ValueExprMap.erase(V);
3755   }
3756 }
3757 
3758 /// Return an existing SCEV if it exists, otherwise analyze the expression and
3759 /// create a new one.
3760 const SCEV *ScalarEvolution::getSCEV(Value *V) {
3761   assert(isSCEVable(V->getType()) && "Value is not SCEVable!");
3762 
3763   const SCEV *S = getExistingSCEV(V);
3764   if (S == nullptr) {
3765     S = createSCEV(V);
3766     // During PHI resolution, it is possible to create two SCEVs for the same
3767     // V, so it is needed to double check whether V->S is inserted into
3768     // ValueExprMap before insert S->{V, 0} into ExprValueMap.
3769     std::pair<ValueExprMapType::iterator, bool> Pair =
3770         ValueExprMap.insert({SCEVCallbackVH(V, this), S});
3771     if (Pair.second) {
3772       ExprValueMap[S].insert({V, nullptr});
3773 
3774       // If S == Stripped + Offset, add Stripped -> {V, Offset} into
3775       // ExprValueMap.
3776       const SCEV *Stripped = S;
3777       ConstantInt *Offset = nullptr;
3778       std::tie(Stripped, Offset) = splitAddExpr(S);
3779       // If stripped is SCEVUnknown, don't bother to save
3780       // Stripped -> {V, offset}. It doesn't simplify and sometimes even
3781       // increase the complexity of the expansion code.
3782       // If V is GetElementPtrInst, don't save Stripped -> {V, offset}
3783       // because it may generate add/sub instead of GEP in SCEV expansion.
3784       if (Offset != nullptr && !isa<SCEVUnknown>(Stripped) &&
3785           !isa<GetElementPtrInst>(V))
3786         ExprValueMap[Stripped].insert({V, Offset});
3787     }
3788   }
3789   return S;
3790 }
3791 
3792 const SCEV *ScalarEvolution::getExistingSCEV(Value *V) {
3793   assert(isSCEVable(V->getType()) && "Value is not SCEVable!");
3794 
3795   ValueExprMapType::iterator I = ValueExprMap.find_as(V);
3796   if (I != ValueExprMap.end()) {
3797     const SCEV *S = I->second;
3798     if (checkValidity(S))
3799       return S;
3800     eraseValueFromMap(V);
3801     forgetMemoizedResults(S);
3802   }
3803   return nullptr;
3804 }
3805 
3806 /// Return a SCEV corresponding to -V = -1*V
3807 const SCEV *ScalarEvolution::getNegativeSCEV(const SCEV *V,
3808                                              SCEV::NoWrapFlags Flags) {
3809   if (const SCEVConstant *VC = dyn_cast<SCEVConstant>(V))
3810     return getConstant(
3811                cast<ConstantInt>(ConstantExpr::getNeg(VC->getValue())));
3812 
3813   Type *Ty = V->getType();
3814   Ty = getEffectiveSCEVType(Ty);
3815   return getMulExpr(
3816       V, getConstant(cast<ConstantInt>(Constant::getAllOnesValue(Ty))), Flags);
3817 }
3818 
3819 /// Return a SCEV corresponding to ~V = -1-V
3820 const SCEV *ScalarEvolution::getNotSCEV(const SCEV *V) {
3821   if (const SCEVConstant *VC = dyn_cast<SCEVConstant>(V))
3822     return getConstant(
3823                 cast<ConstantInt>(ConstantExpr::getNot(VC->getValue())));
3824 
3825   Type *Ty = V->getType();
3826   Ty = getEffectiveSCEVType(Ty);
3827   const SCEV *AllOnes =
3828                    getConstant(cast<ConstantInt>(Constant::getAllOnesValue(Ty)));
3829   return getMinusSCEV(AllOnes, V);
3830 }
3831 
3832 const SCEV *ScalarEvolution::getMinusSCEV(const SCEV *LHS, const SCEV *RHS,
3833                                           SCEV::NoWrapFlags Flags,
3834                                           unsigned Depth) {
3835   // Fast path: X - X --> 0.
3836   if (LHS == RHS)
3837     return getZero(LHS->getType());
3838 
3839   // We represent LHS - RHS as LHS + (-1)*RHS. This transformation
3840   // makes it so that we cannot make much use of NUW.
3841   auto AddFlags = SCEV::FlagAnyWrap;
3842   const bool RHSIsNotMinSigned =
3843       !getSignedRangeMin(RHS).isMinSignedValue();
3844   if (maskFlags(Flags, SCEV::FlagNSW) == SCEV::FlagNSW) {
3845     // Let M be the minimum representable signed value. Then (-1)*RHS
3846     // signed-wraps if and only if RHS is M. That can happen even for
3847     // a NSW subtraction because e.g. (-1)*M signed-wraps even though
3848     // -1 - M does not. So to transfer NSW from LHS - RHS to LHS +
3849     // (-1)*RHS, we need to prove that RHS != M.
3850     //
3851     // If LHS is non-negative and we know that LHS - RHS does not
3852     // signed-wrap, then RHS cannot be M. So we can rule out signed-wrap
3853     // either by proving that RHS > M or that LHS >= 0.
3854     if (RHSIsNotMinSigned || isKnownNonNegative(LHS)) {
3855       AddFlags = SCEV::FlagNSW;
3856     }
3857   }
3858 
3859   // FIXME: Find a correct way to transfer NSW to (-1)*M when LHS -
3860   // RHS is NSW and LHS >= 0.
3861   //
3862   // The difficulty here is that the NSW flag may have been proven
3863   // relative to a loop that is to be found in a recurrence in LHS and
3864   // not in RHS. Applying NSW to (-1)*M may then let the NSW have a
3865   // larger scope than intended.
3866   auto NegFlags = RHSIsNotMinSigned ? SCEV::FlagNSW : SCEV::FlagAnyWrap;
3867 
3868   return getAddExpr(LHS, getNegativeSCEV(RHS, NegFlags), AddFlags, Depth);
3869 }
3870 
3871 const SCEV *
3872 ScalarEvolution::getTruncateOrZeroExtend(const SCEV *V, Type *Ty) {
3873   Type *SrcTy = V->getType();
3874   assert((SrcTy->isIntegerTy() || SrcTy->isPointerTy()) &&
3875          (Ty->isIntegerTy() || Ty->isPointerTy()) &&
3876          "Cannot truncate or zero extend with non-integer arguments!");
3877   if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty))
3878     return V;  // No conversion
3879   if (getTypeSizeInBits(SrcTy) > getTypeSizeInBits(Ty))
3880     return getTruncateExpr(V, Ty);
3881   return getZeroExtendExpr(V, Ty);
3882 }
3883 
3884 const SCEV *
3885 ScalarEvolution::getTruncateOrSignExtend(const SCEV *V,
3886                                          Type *Ty) {
3887   Type *SrcTy = V->getType();
3888   assert((SrcTy->isIntegerTy() || SrcTy->isPointerTy()) &&
3889          (Ty->isIntegerTy() || Ty->isPointerTy()) &&
3890          "Cannot truncate or zero extend with non-integer arguments!");
3891   if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty))
3892     return V;  // No conversion
3893   if (getTypeSizeInBits(SrcTy) > getTypeSizeInBits(Ty))
3894     return getTruncateExpr(V, Ty);
3895   return getSignExtendExpr(V, Ty);
3896 }
3897 
3898 const SCEV *
3899 ScalarEvolution::getNoopOrZeroExtend(const SCEV *V, Type *Ty) {
3900   Type *SrcTy = V->getType();
3901   assert((SrcTy->isIntegerTy() || SrcTy->isPointerTy()) &&
3902          (Ty->isIntegerTy() || Ty->isPointerTy()) &&
3903          "Cannot noop or zero extend with non-integer arguments!");
3904   assert(getTypeSizeInBits(SrcTy) <= getTypeSizeInBits(Ty) &&
3905          "getNoopOrZeroExtend cannot truncate!");
3906   if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty))
3907     return V;  // No conversion
3908   return getZeroExtendExpr(V, Ty);
3909 }
3910 
3911 const SCEV *
3912 ScalarEvolution::getNoopOrSignExtend(const SCEV *V, Type *Ty) {
3913   Type *SrcTy = V->getType();
3914   assert((SrcTy->isIntegerTy() || SrcTy->isPointerTy()) &&
3915          (Ty->isIntegerTy() || Ty->isPointerTy()) &&
3916          "Cannot noop or sign extend with non-integer arguments!");
3917   assert(getTypeSizeInBits(SrcTy) <= getTypeSizeInBits(Ty) &&
3918          "getNoopOrSignExtend cannot truncate!");
3919   if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty))
3920     return V;  // No conversion
3921   return getSignExtendExpr(V, Ty);
3922 }
3923 
3924 const SCEV *
3925 ScalarEvolution::getNoopOrAnyExtend(const SCEV *V, Type *Ty) {
3926   Type *SrcTy = V->getType();
3927   assert((SrcTy->isIntegerTy() || SrcTy->isPointerTy()) &&
3928          (Ty->isIntegerTy() || Ty->isPointerTy()) &&
3929          "Cannot noop or any extend with non-integer arguments!");
3930   assert(getTypeSizeInBits(SrcTy) <= getTypeSizeInBits(Ty) &&
3931          "getNoopOrAnyExtend cannot truncate!");
3932   if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty))
3933     return V;  // No conversion
3934   return getAnyExtendExpr(V, Ty);
3935 }
3936 
3937 const SCEV *
3938 ScalarEvolution::getTruncateOrNoop(const SCEV *V, Type *Ty) {
3939   Type *SrcTy = V->getType();
3940   assert((SrcTy->isIntegerTy() || SrcTy->isPointerTy()) &&
3941          (Ty->isIntegerTy() || Ty->isPointerTy()) &&
3942          "Cannot truncate or noop with non-integer arguments!");
3943   assert(getTypeSizeInBits(SrcTy) >= getTypeSizeInBits(Ty) &&
3944          "getTruncateOrNoop cannot extend!");
3945   if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty))
3946     return V;  // No conversion
3947   return getTruncateExpr(V, Ty);
3948 }
3949 
3950 const SCEV *ScalarEvolution::getUMaxFromMismatchedTypes(const SCEV *LHS,
3951                                                         const SCEV *RHS) {
3952   const SCEV *PromotedLHS = LHS;
3953   const SCEV *PromotedRHS = RHS;
3954 
3955   if (getTypeSizeInBits(LHS->getType()) > getTypeSizeInBits(RHS->getType()))
3956     PromotedRHS = getZeroExtendExpr(RHS, LHS->getType());
3957   else
3958     PromotedLHS = getNoopOrZeroExtend(LHS, RHS->getType());
3959 
3960   return getUMaxExpr(PromotedLHS, PromotedRHS);
3961 }
3962 
3963 const SCEV *ScalarEvolution::getUMinFromMismatchedTypes(const SCEV *LHS,
3964                                                         const SCEV *RHS) {
3965   const SCEV *PromotedLHS = LHS;
3966   const SCEV *PromotedRHS = RHS;
3967 
3968   if (getTypeSizeInBits(LHS->getType()) > getTypeSizeInBits(RHS->getType()))
3969     PromotedRHS = getZeroExtendExpr(RHS, LHS->getType());
3970   else
3971     PromotedLHS = getNoopOrZeroExtend(LHS, RHS->getType());
3972 
3973   return getUMinExpr(PromotedLHS, PromotedRHS);
3974 }
3975 
3976 const SCEV *ScalarEvolution::getPointerBase(const SCEV *V) {
3977   // A pointer operand may evaluate to a nonpointer expression, such as null.
3978   if (!V->getType()->isPointerTy())
3979     return V;
3980 
3981   if (const SCEVCastExpr *Cast = dyn_cast<SCEVCastExpr>(V)) {
3982     return getPointerBase(Cast->getOperand());
3983   } else if (const SCEVNAryExpr *NAry = dyn_cast<SCEVNAryExpr>(V)) {
3984     const SCEV *PtrOp = nullptr;
3985     for (const SCEV *NAryOp : NAry->operands()) {
3986       if (NAryOp->getType()->isPointerTy()) {
3987         // Cannot find the base of an expression with multiple pointer operands.
3988         if (PtrOp)
3989           return V;
3990         PtrOp = NAryOp;
3991       }
3992     }
3993     if (!PtrOp)
3994       return V;
3995     return getPointerBase(PtrOp);
3996   }
3997   return V;
3998 }
3999 
4000 /// Push users of the given Instruction onto the given Worklist.
4001 static void
4002 PushDefUseChildren(Instruction *I,
4003                    SmallVectorImpl<Instruction *> &Worklist) {
4004   // Push the def-use children onto the Worklist stack.
4005   for (User *U : I->users())
4006     Worklist.push_back(cast<Instruction>(U));
4007 }
4008 
4009 void ScalarEvolution::forgetSymbolicName(Instruction *PN, const SCEV *SymName) {
4010   SmallVector<Instruction *, 16> Worklist;
4011   PushDefUseChildren(PN, Worklist);
4012 
4013   SmallPtrSet<Instruction *, 8> Visited;
4014   Visited.insert(PN);
4015   while (!Worklist.empty()) {
4016     Instruction *I = Worklist.pop_back_val();
4017     if (!Visited.insert(I).second)
4018       continue;
4019 
4020     auto It = ValueExprMap.find_as(static_cast<Value *>(I));
4021     if (It != ValueExprMap.end()) {
4022       const SCEV *Old = It->second;
4023 
4024       // Short-circuit the def-use traversal if the symbolic name
4025       // ceases to appear in expressions.
4026       if (Old != SymName && !hasOperand(Old, SymName))
4027         continue;
4028 
4029       // SCEVUnknown for a PHI either means that it has an unrecognized
4030       // structure, it's a PHI that's in the progress of being computed
4031       // by createNodeForPHI, or it's a single-value PHI. In the first case,
4032       // additional loop trip count information isn't going to change anything.
4033       // In the second case, createNodeForPHI will perform the necessary
4034       // updates on its own when it gets to that point. In the third, we do
4035       // want to forget the SCEVUnknown.
4036       if (!isa<PHINode>(I) ||
4037           !isa<SCEVUnknown>(Old) ||
4038           (I != PN && Old == SymName)) {
4039         eraseValueFromMap(It->first);
4040         forgetMemoizedResults(Old);
4041       }
4042     }
4043 
4044     PushDefUseChildren(I, Worklist);
4045   }
4046 }
4047 
4048 namespace {
4049 
4050 class SCEVInitRewriter : public SCEVRewriteVisitor<SCEVInitRewriter> {
4051 public:
4052   SCEVInitRewriter(const Loop *L, ScalarEvolution &SE)
4053       : SCEVRewriteVisitor(SE), L(L) {}
4054 
4055   static const SCEV *rewrite(const SCEV *S, const Loop *L,
4056                              ScalarEvolution &SE) {
4057     SCEVInitRewriter Rewriter(L, SE);
4058     const SCEV *Result = Rewriter.visit(S);
4059     return Rewriter.isValid() ? Result : SE.getCouldNotCompute();
4060   }
4061 
4062   const SCEV *visitUnknown(const SCEVUnknown *Expr) {
4063     if (!SE.isLoopInvariant(Expr, L))
4064       Valid = false;
4065     return Expr;
4066   }
4067 
4068   const SCEV *visitAddRecExpr(const SCEVAddRecExpr *Expr) {
4069     // Only allow AddRecExprs for this loop.
4070     if (Expr->getLoop() == L)
4071       return Expr->getStart();
4072     Valid = false;
4073     return Expr;
4074   }
4075 
4076   bool isValid() { return Valid; }
4077 
4078 private:
4079   const Loop *L;
4080   bool Valid = true;
4081 };
4082 
4083 class SCEVShiftRewriter : public SCEVRewriteVisitor<SCEVShiftRewriter> {
4084 public:
4085   SCEVShiftRewriter(const Loop *L, ScalarEvolution &SE)
4086       : SCEVRewriteVisitor(SE), L(L) {}
4087 
4088   static const SCEV *rewrite(const SCEV *S, const Loop *L,
4089                              ScalarEvolution &SE) {
4090     SCEVShiftRewriter Rewriter(L, SE);
4091     const SCEV *Result = Rewriter.visit(S);
4092     return Rewriter.isValid() ? Result : SE.getCouldNotCompute();
4093   }
4094 
4095   const SCEV *visitUnknown(const SCEVUnknown *Expr) {
4096     // Only allow AddRecExprs for this loop.
4097     if (!SE.isLoopInvariant(Expr, L))
4098       Valid = false;
4099     return Expr;
4100   }
4101 
4102   const SCEV *visitAddRecExpr(const SCEVAddRecExpr *Expr) {
4103     if (Expr->getLoop() == L && Expr->isAffine())
4104       return SE.getMinusSCEV(Expr, Expr->getStepRecurrence(SE));
4105     Valid = false;
4106     return Expr;
4107   }
4108 
4109   bool isValid() { return Valid; }
4110 
4111 private:
4112   const Loop *L;
4113   bool Valid = true;
4114 };
4115 
4116 } // end anonymous namespace
4117 
4118 SCEV::NoWrapFlags
4119 ScalarEvolution::proveNoWrapViaConstantRanges(const SCEVAddRecExpr *AR) {
4120   if (!AR->isAffine())
4121     return SCEV::FlagAnyWrap;
4122 
4123   using OBO = OverflowingBinaryOperator;
4124 
4125   SCEV::NoWrapFlags Result = SCEV::FlagAnyWrap;
4126 
4127   if (!AR->hasNoSignedWrap()) {
4128     ConstantRange AddRecRange = getSignedRange(AR);
4129     ConstantRange IncRange = getSignedRange(AR->getStepRecurrence(*this));
4130 
4131     auto NSWRegion = ConstantRange::makeGuaranteedNoWrapRegion(
4132         Instruction::Add, IncRange, OBO::NoSignedWrap);
4133     if (NSWRegion.contains(AddRecRange))
4134       Result = ScalarEvolution::setFlags(Result, SCEV::FlagNSW);
4135   }
4136 
4137   if (!AR->hasNoUnsignedWrap()) {
4138     ConstantRange AddRecRange = getUnsignedRange(AR);
4139     ConstantRange IncRange = getUnsignedRange(AR->getStepRecurrence(*this));
4140 
4141     auto NUWRegion = ConstantRange::makeGuaranteedNoWrapRegion(
4142         Instruction::Add, IncRange, OBO::NoUnsignedWrap);
4143     if (NUWRegion.contains(AddRecRange))
4144       Result = ScalarEvolution::setFlags(Result, SCEV::FlagNUW);
4145   }
4146 
4147   return Result;
4148 }
4149 
4150 namespace {
4151 
4152 /// Represents an abstract binary operation.  This may exist as a
4153 /// normal instruction or constant expression, or may have been
4154 /// derived from an expression tree.
4155 struct BinaryOp {
4156   unsigned Opcode;
4157   Value *LHS;
4158   Value *RHS;
4159   bool IsNSW = false;
4160   bool IsNUW = false;
4161 
4162   /// Op is set if this BinaryOp corresponds to a concrete LLVM instruction or
4163   /// constant expression.
4164   Operator *Op = nullptr;
4165 
4166   explicit BinaryOp(Operator *Op)
4167       : Opcode(Op->getOpcode()), LHS(Op->getOperand(0)), RHS(Op->getOperand(1)),
4168         Op(Op) {
4169     if (auto *OBO = dyn_cast<OverflowingBinaryOperator>(Op)) {
4170       IsNSW = OBO->hasNoSignedWrap();
4171       IsNUW = OBO->hasNoUnsignedWrap();
4172     }
4173   }
4174 
4175   explicit BinaryOp(unsigned Opcode, Value *LHS, Value *RHS, bool IsNSW = false,
4176                     bool IsNUW = false)
4177       : Opcode(Opcode), LHS(LHS), RHS(RHS), IsNSW(IsNSW), IsNUW(IsNUW) {}
4178 };
4179 
4180 } // end anonymous namespace
4181 
4182 /// Try to map \p V into a BinaryOp, and return \c None on failure.
4183 static Optional<BinaryOp> MatchBinaryOp(Value *V, DominatorTree &DT) {
4184   auto *Op = dyn_cast<Operator>(V);
4185   if (!Op)
4186     return None;
4187 
4188   // Implementation detail: all the cleverness here should happen without
4189   // creating new SCEV expressions -- our caller knowns tricks to avoid creating
4190   // SCEV expressions when possible, and we should not break that.
4191 
4192   switch (Op->getOpcode()) {
4193   case Instruction::Add:
4194   case Instruction::Sub:
4195   case Instruction::Mul:
4196   case Instruction::UDiv:
4197   case Instruction::URem:
4198   case Instruction::And:
4199   case Instruction::Or:
4200   case Instruction::AShr:
4201   case Instruction::Shl:
4202     return BinaryOp(Op);
4203 
4204   case Instruction::Xor:
4205     if (auto *RHSC = dyn_cast<ConstantInt>(Op->getOperand(1)))
4206       // If the RHS of the xor is a signmask, then this is just an add.
4207       // Instcombine turns add of signmask into xor as a strength reduction step.
4208       if (RHSC->getValue().isSignMask())
4209         return BinaryOp(Instruction::Add, Op->getOperand(0), Op->getOperand(1));
4210     return BinaryOp(Op);
4211 
4212   case Instruction::LShr:
4213     // Turn logical shift right of a constant into a unsigned divide.
4214     if (ConstantInt *SA = dyn_cast<ConstantInt>(Op->getOperand(1))) {
4215       uint32_t BitWidth = cast<IntegerType>(Op->getType())->getBitWidth();
4216 
4217       // If the shift count is not less than the bitwidth, the result of
4218       // the shift is undefined. Don't try to analyze it, because the
4219       // resolution chosen here may differ from the resolution chosen in
4220       // other parts of the compiler.
4221       if (SA->getValue().ult(BitWidth)) {
4222         Constant *X =
4223             ConstantInt::get(SA->getContext(),
4224                              APInt::getOneBitSet(BitWidth, SA->getZExtValue()));
4225         return BinaryOp(Instruction::UDiv, Op->getOperand(0), X);
4226       }
4227     }
4228     return BinaryOp(Op);
4229 
4230   case Instruction::ExtractValue: {
4231     auto *EVI = cast<ExtractValueInst>(Op);
4232     if (EVI->getNumIndices() != 1 || EVI->getIndices()[0] != 0)
4233       break;
4234 
4235     auto *CI = dyn_cast<CallInst>(EVI->getAggregateOperand());
4236     if (!CI)
4237       break;
4238 
4239     if (auto *F = CI->getCalledFunction())
4240       switch (F->getIntrinsicID()) {
4241       case Intrinsic::sadd_with_overflow:
4242       case Intrinsic::uadd_with_overflow:
4243         if (!isOverflowIntrinsicNoWrap(cast<IntrinsicInst>(CI), DT))
4244           return BinaryOp(Instruction::Add, CI->getArgOperand(0),
4245                           CI->getArgOperand(1));
4246 
4247         // Now that we know that all uses of the arithmetic-result component of
4248         // CI are guarded by the overflow check, we can go ahead and pretend
4249         // that the arithmetic is non-overflowing.
4250         if (F->getIntrinsicID() == Intrinsic::sadd_with_overflow)
4251           return BinaryOp(Instruction::Add, CI->getArgOperand(0),
4252                           CI->getArgOperand(1), /* IsNSW = */ true,
4253                           /* IsNUW = */ false);
4254         else
4255           return BinaryOp(Instruction::Add, CI->getArgOperand(0),
4256                           CI->getArgOperand(1), /* IsNSW = */ false,
4257                           /* IsNUW*/ true);
4258       case Intrinsic::ssub_with_overflow:
4259       case Intrinsic::usub_with_overflow:
4260         if (!isOverflowIntrinsicNoWrap(cast<IntrinsicInst>(CI), DT))
4261           return BinaryOp(Instruction::Sub, CI->getArgOperand(0),
4262                           CI->getArgOperand(1));
4263 
4264         // The same reasoning as sadd/uadd above.
4265         if (F->getIntrinsicID() == Intrinsic::ssub_with_overflow)
4266           return BinaryOp(Instruction::Sub, CI->getArgOperand(0),
4267                           CI->getArgOperand(1), /* IsNSW = */ true,
4268                           /* IsNUW = */ false);
4269         else
4270           return BinaryOp(Instruction::Sub, CI->getArgOperand(0),
4271                           CI->getArgOperand(1), /* IsNSW = */ false,
4272                           /* IsNUW = */ true);
4273       case Intrinsic::smul_with_overflow:
4274       case Intrinsic::umul_with_overflow:
4275         return BinaryOp(Instruction::Mul, CI->getArgOperand(0),
4276                         CI->getArgOperand(1));
4277       default:
4278         break;
4279       }
4280   }
4281 
4282   default:
4283     break;
4284   }
4285 
4286   return None;
4287 }
4288 
4289 /// Helper function to createAddRecFromPHIWithCasts. We have a phi
4290 /// node whose symbolic (unknown) SCEV is \p SymbolicPHI, which is updated via
4291 /// the loop backedge by a SCEVAddExpr, possibly also with a few casts on the
4292 /// way. This function checks if \p Op, an operand of this SCEVAddExpr,
4293 /// follows one of the following patterns:
4294 /// Op == (SExt ix (Trunc iy (%SymbolicPHI) to ix) to iy)
4295 /// Op == (ZExt ix (Trunc iy (%SymbolicPHI) to ix) to iy)
4296 /// If the SCEV expression of \p Op conforms with one of the expected patterns
4297 /// we return the type of the truncation operation, and indicate whether the
4298 /// truncated type should be treated as signed/unsigned by setting
4299 /// \p Signed to true/false, respectively.
4300 static Type *isSimpleCastedPHI(const SCEV *Op, const SCEVUnknown *SymbolicPHI,
4301                                bool &Signed, ScalarEvolution &SE) {
4302   // The case where Op == SymbolicPHI (that is, with no type conversions on
4303   // the way) is handled by the regular add recurrence creating logic and
4304   // would have already been triggered in createAddRecForPHI. Reaching it here
4305   // means that createAddRecFromPHI had failed for this PHI before (e.g.,
4306   // because one of the other operands of the SCEVAddExpr updating this PHI is
4307   // not invariant).
4308   //
4309   // Here we look for the case where Op = (ext(trunc(SymbolicPHI))), and in
4310   // this case predicates that allow us to prove that Op == SymbolicPHI will
4311   // be added.
4312   if (Op == SymbolicPHI)
4313     return nullptr;
4314 
4315   unsigned SourceBits = SE.getTypeSizeInBits(SymbolicPHI->getType());
4316   unsigned NewBits = SE.getTypeSizeInBits(Op->getType());
4317   if (SourceBits != NewBits)
4318     return nullptr;
4319 
4320   const SCEVSignExtendExpr *SExt = dyn_cast<SCEVSignExtendExpr>(Op);
4321   const SCEVZeroExtendExpr *ZExt = dyn_cast<SCEVZeroExtendExpr>(Op);
4322   if (!SExt && !ZExt)
4323     return nullptr;
4324   const SCEVTruncateExpr *Trunc =
4325       SExt ? dyn_cast<SCEVTruncateExpr>(SExt->getOperand())
4326            : dyn_cast<SCEVTruncateExpr>(ZExt->getOperand());
4327   if (!Trunc)
4328     return nullptr;
4329   const SCEV *X = Trunc->getOperand();
4330   if (X != SymbolicPHI)
4331     return nullptr;
4332   Signed = SExt != nullptr;
4333   return Trunc->getType();
4334 }
4335 
4336 static const Loop *isIntegerLoopHeaderPHI(const PHINode *PN, LoopInfo &LI) {
4337   if (!PN->getType()->isIntegerTy())
4338     return nullptr;
4339   const Loop *L = LI.getLoopFor(PN->getParent());
4340   if (!L || L->getHeader() != PN->getParent())
4341     return nullptr;
4342   return L;
4343 }
4344 
4345 // Analyze \p SymbolicPHI, a SCEV expression of a phi node, and check if the
4346 // computation that updates the phi follows the following pattern:
4347 //   (SExt/ZExt ix (Trunc iy (%SymbolicPHI) to ix) to iy) + InvariantAccum
4348 // which correspond to a phi->trunc->sext/zext->add->phi update chain.
4349 // If so, try to see if it can be rewritten as an AddRecExpr under some
4350 // Predicates. If successful, return them as a pair. Also cache the results
4351 // of the analysis.
4352 //
4353 // Example usage scenario:
4354 //    Say the Rewriter is called for the following SCEV:
4355 //         8 * ((sext i32 (trunc i64 %X to i32) to i64) + %Step)
4356 //    where:
4357 //         %X = phi i64 (%Start, %BEValue)
4358 //    It will visitMul->visitAdd->visitSExt->visitTrunc->visitUnknown(%X),
4359 //    and call this function with %SymbolicPHI = %X.
4360 //
4361 //    The analysis will find that the value coming around the backedge has
4362 //    the following SCEV:
4363 //         BEValue = ((sext i32 (trunc i64 %X to i32) to i64) + %Step)
4364 //    Upon concluding that this matches the desired pattern, the function
4365 //    will return the pair {NewAddRec, SmallPredsVec} where:
4366 //         NewAddRec = {%Start,+,%Step}
4367 //         SmallPredsVec = {P1, P2, P3} as follows:
4368 //           P1(WrapPred): AR: {trunc(%Start),+,(trunc %Step)}<nsw> Flags: <nssw>
4369 //           P2(EqualPred): %Start == (sext i32 (trunc i64 %Start to i32) to i64)
4370 //           P3(EqualPred): %Step == (sext i32 (trunc i64 %Step to i32) to i64)
4371 //    The returned pair means that SymbolicPHI can be rewritten into NewAddRec
4372 //    under the predicates {P1,P2,P3}.
4373 //    This predicated rewrite will be cached in PredicatedSCEVRewrites:
4374 //         PredicatedSCEVRewrites[{%X,L}] = {NewAddRec, {P1,P2,P3)}
4375 //
4376 // TODO's:
4377 //
4378 // 1) Extend the Induction descriptor to also support inductions that involve
4379 //    casts: When needed (namely, when we are called in the context of the
4380 //    vectorizer induction analysis), a Set of cast instructions will be
4381 //    populated by this method, and provided back to isInductionPHI. This is
4382 //    needed to allow the vectorizer to properly record them to be ignored by
4383 //    the cost model and to avoid vectorizing them (otherwise these casts,
4384 //    which are redundant under the runtime overflow checks, will be
4385 //    vectorized, which can be costly).
4386 //
4387 // 2) Support additional induction/PHISCEV patterns: We also want to support
4388 //    inductions where the sext-trunc / zext-trunc operations (partly) occur
4389 //    after the induction update operation (the induction increment):
4390 //
4391 //      (Trunc iy (SExt/ZExt ix (%SymbolicPHI + InvariantAccum) to iy) to ix)
4392 //    which correspond to a phi->add->trunc->sext/zext->phi update chain.
4393 //
4394 //      (Trunc iy ((SExt/ZExt ix (%SymbolicPhi) to iy) + InvariantAccum) to ix)
4395 //    which correspond to a phi->trunc->add->sext/zext->phi update chain.
4396 //
4397 // 3) Outline common code with createAddRecFromPHI to avoid duplication.
4398 Optional<std::pair<const SCEV *, SmallVector<const SCEVPredicate *, 3>>>
4399 ScalarEvolution::createAddRecFromPHIWithCastsImpl(const SCEVUnknown *SymbolicPHI) {
4400   SmallVector<const SCEVPredicate *, 3> Predicates;
4401 
4402   // *** Part1: Analyze if we have a phi-with-cast pattern for which we can
4403   // return an AddRec expression under some predicate.
4404 
4405   auto *PN = cast<PHINode>(SymbolicPHI->getValue());
4406   const Loop *L = isIntegerLoopHeaderPHI(PN, LI);
4407   assert(L && "Expecting an integer loop header phi");
4408 
4409   // The loop may have multiple entrances or multiple exits; we can analyze
4410   // this phi as an addrec if it has a unique entry value and a unique
4411   // backedge value.
4412   Value *BEValueV = nullptr, *StartValueV = nullptr;
4413   for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
4414     Value *V = PN->getIncomingValue(i);
4415     if (L->contains(PN->getIncomingBlock(i))) {
4416       if (!BEValueV) {
4417         BEValueV = V;
4418       } else if (BEValueV != V) {
4419         BEValueV = nullptr;
4420         break;
4421       }
4422     } else if (!StartValueV) {
4423       StartValueV = V;
4424     } else if (StartValueV != V) {
4425       StartValueV = nullptr;
4426       break;
4427     }
4428   }
4429   if (!BEValueV || !StartValueV)
4430     return None;
4431 
4432   const SCEV *BEValue = getSCEV(BEValueV);
4433 
4434   // If the value coming around the backedge is an add with the symbolic
4435   // value we just inserted, possibly with casts that we can ignore under
4436   // an appropriate runtime guard, then we found a simple induction variable!
4437   const auto *Add = dyn_cast<SCEVAddExpr>(BEValue);
4438   if (!Add)
4439     return None;
4440 
4441   // If there is a single occurrence of the symbolic value, possibly
4442   // casted, replace it with a recurrence.
4443   unsigned FoundIndex = Add->getNumOperands();
4444   Type *TruncTy = nullptr;
4445   bool Signed;
4446   for (unsigned i = 0, e = Add->getNumOperands(); i != e; ++i)
4447     if ((TruncTy =
4448              isSimpleCastedPHI(Add->getOperand(i), SymbolicPHI, Signed, *this)))
4449       if (FoundIndex == e) {
4450         FoundIndex = i;
4451         break;
4452       }
4453 
4454   if (FoundIndex == Add->getNumOperands())
4455     return None;
4456 
4457   // Create an add with everything but the specified operand.
4458   SmallVector<const SCEV *, 8> Ops;
4459   for (unsigned i = 0, e = Add->getNumOperands(); i != e; ++i)
4460     if (i != FoundIndex)
4461       Ops.push_back(Add->getOperand(i));
4462   const SCEV *Accum = getAddExpr(Ops);
4463 
4464   // The runtime checks will not be valid if the step amount is
4465   // varying inside the loop.
4466   if (!isLoopInvariant(Accum, L))
4467     return None;
4468 
4469   // *** Part2: Create the predicates
4470 
4471   // Analysis was successful: we have a phi-with-cast pattern for which we
4472   // can return an AddRec expression under the following predicates:
4473   //
4474   // P1: A Wrap predicate that guarantees that Trunc(Start) + i*Trunc(Accum)
4475   //     fits within the truncated type (does not overflow) for i = 0 to n-1.
4476   // P2: An Equal predicate that guarantees that
4477   //     Start = (Ext ix (Trunc iy (Start) to ix) to iy)
4478   // P3: An Equal predicate that guarantees that
4479   //     Accum = (Ext ix (Trunc iy (Accum) to ix) to iy)
4480   //
4481   // As we next prove, the above predicates guarantee that:
4482   //     Start + i*Accum = (Ext ix (Trunc iy ( Start + i*Accum ) to ix) to iy)
4483   //
4484   //
4485   // More formally, we want to prove that:
4486   //     Expr(i+1) = Start + (i+1) * Accum
4487   //               = (Ext ix (Trunc iy (Expr(i)) to ix) to iy) + Accum
4488   //
4489   // Given that:
4490   // 1) Expr(0) = Start
4491   // 2) Expr(1) = Start + Accum
4492   //            = (Ext ix (Trunc iy (Start) to ix) to iy) + Accum :: from P2
4493   // 3) Induction hypothesis (step i):
4494   //    Expr(i) = (Ext ix (Trunc iy (Expr(i-1)) to ix) to iy) + Accum
4495   //
4496   // Proof:
4497   //  Expr(i+1) =
4498   //   = Start + (i+1)*Accum
4499   //   = (Start + i*Accum) + Accum
4500   //   = Expr(i) + Accum
4501   //   = (Ext ix (Trunc iy (Expr(i-1)) to ix) to iy) + Accum + Accum
4502   //                                                             :: from step i
4503   //
4504   //   = (Ext ix (Trunc iy (Start + (i-1)*Accum) to ix) to iy) + Accum + Accum
4505   //
4506   //   = (Ext ix (Trunc iy (Start + (i-1)*Accum) to ix) to iy)
4507   //     + (Ext ix (Trunc iy (Accum) to ix) to iy)
4508   //     + Accum                                                     :: from P3
4509   //
4510   //   = (Ext ix (Trunc iy ((Start + (i-1)*Accum) + Accum) to ix) to iy)
4511   //     + Accum                            :: from P1: Ext(x)+Ext(y)=>Ext(x+y)
4512   //
4513   //   = (Ext ix (Trunc iy (Start + i*Accum) to ix) to iy) + Accum
4514   //   = (Ext ix (Trunc iy (Expr(i)) to ix) to iy) + Accum
4515   //
4516   // By induction, the same applies to all iterations 1<=i<n:
4517   //
4518 
4519   // Create a truncated addrec for which we will add a no overflow check (P1).
4520   const SCEV *StartVal = getSCEV(StartValueV);
4521   const SCEV *PHISCEV =
4522       getAddRecExpr(getTruncateExpr(StartVal, TruncTy),
4523                     getTruncateExpr(Accum, TruncTy), L, SCEV::FlagAnyWrap);
4524 
4525   // PHISCEV can be either a SCEVConstant or a SCEVAddRecExpr.
4526   // ex: If truncated Accum is 0 and StartVal is a constant, then PHISCEV
4527   // will be constant.
4528   //
4529   //  If PHISCEV is a constant, then P1 degenerates into P2 or P3, so we don't
4530   // add P1.
4531   if (const auto *AR = dyn_cast<SCEVAddRecExpr>(PHISCEV)) {
4532     SCEVWrapPredicate::IncrementWrapFlags AddedFlags =
4533         Signed ? SCEVWrapPredicate::IncrementNSSW
4534                : SCEVWrapPredicate::IncrementNUSW;
4535     const SCEVPredicate *AddRecPred = getWrapPredicate(AR, AddedFlags);
4536     Predicates.push_back(AddRecPred);
4537   }
4538 
4539   // Create the Equal Predicates P2,P3:
4540 
4541   // It is possible that the predicates P2 and/or P3 are computable at
4542   // compile time due to StartVal and/or Accum being constants.
4543   // If either one is, then we can check that now and escape if either P2
4544   // or P3 is false.
4545 
4546   // Construct the extended SCEV: (Ext ix (Trunc iy (Expr) to ix) to iy)
4547   // for each of StartVal and Accum
4548   auto GetExtendedExpr = [&](const SCEV *Expr) -> const SCEV * {
4549     assert(isLoopInvariant(Expr, L) && "Expr is expected to be invariant");
4550     const SCEV *TruncatedExpr = getTruncateExpr(Expr, TruncTy);
4551     const SCEV *ExtendedExpr =
4552         Signed ? getSignExtendExpr(TruncatedExpr, Expr->getType())
4553                : getZeroExtendExpr(TruncatedExpr, Expr->getType());
4554     return ExtendedExpr;
4555   };
4556 
4557   // Given:
4558   //  ExtendedExpr = (Ext ix (Trunc iy (Expr) to ix) to iy
4559   //               = GetExtendedExpr(Expr)
4560   // Determine whether the predicate P: Expr == ExtendedExpr
4561   // is known to be false at compile time
4562   auto PredIsKnownFalse = [&](const SCEV *Expr,
4563                               const SCEV *ExtendedExpr) -> bool {
4564     return Expr != ExtendedExpr &&
4565            isKnownPredicate(ICmpInst::ICMP_NE, Expr, ExtendedExpr);
4566   };
4567 
4568   const SCEV *StartExtended = GetExtendedExpr(StartVal);
4569   if (PredIsKnownFalse(StartVal, StartExtended)) {
4570     DEBUG(dbgs() << "P2 is compile-time false\n";);
4571     return None;
4572   }
4573 
4574   const SCEV *AccumExtended = GetExtendedExpr(Accum);
4575   if (PredIsKnownFalse(Accum, AccumExtended)) {
4576     DEBUG(dbgs() << "P3 is compile-time false\n";);
4577     return None;
4578   }
4579 
4580   auto AppendPredicate = [&](const SCEV *Expr,
4581                              const SCEV *ExtendedExpr) -> void {
4582     if (Expr != ExtendedExpr &&
4583         !isKnownPredicate(ICmpInst::ICMP_EQ, Expr, ExtendedExpr)) {
4584       const SCEVPredicate *Pred = getEqualPredicate(Expr, ExtendedExpr);
4585       DEBUG (dbgs() << "Added Predicate: " << *Pred);
4586       Predicates.push_back(Pred);
4587     }
4588   };
4589 
4590   AppendPredicate(StartVal, StartExtended);
4591   AppendPredicate(Accum, AccumExtended);
4592 
4593   // *** Part3: Predicates are ready. Now go ahead and create the new addrec in
4594   // which the casts had been folded away. The caller can rewrite SymbolicPHI
4595   // into NewAR if it will also add the runtime overflow checks specified in
4596   // Predicates.
4597   auto *NewAR = getAddRecExpr(StartVal, Accum, L, SCEV::FlagAnyWrap);
4598 
4599   std::pair<const SCEV *, SmallVector<const SCEVPredicate *, 3>> PredRewrite =
4600       std::make_pair(NewAR, Predicates);
4601   // Remember the result of the analysis for this SCEV at this locayyytion.
4602   PredicatedSCEVRewrites[{SymbolicPHI, L}] = PredRewrite;
4603   return PredRewrite;
4604 }
4605 
4606 Optional<std::pair<const SCEV *, SmallVector<const SCEVPredicate *, 3>>>
4607 ScalarEvolution::createAddRecFromPHIWithCasts(const SCEVUnknown *SymbolicPHI) {
4608   auto *PN = cast<PHINode>(SymbolicPHI->getValue());
4609   const Loop *L = isIntegerLoopHeaderPHI(PN, LI);
4610   if (!L)
4611     return None;
4612 
4613   // Check to see if we already analyzed this PHI.
4614   auto I = PredicatedSCEVRewrites.find({SymbolicPHI, L});
4615   if (I != PredicatedSCEVRewrites.end()) {
4616     std::pair<const SCEV *, SmallVector<const SCEVPredicate *, 3>> Rewrite =
4617         I->second;
4618     // Analysis was done before and failed to create an AddRec:
4619     if (Rewrite.first == SymbolicPHI)
4620       return None;
4621     // Analysis was done before and succeeded to create an AddRec under
4622     // a predicate:
4623     assert(isa<SCEVAddRecExpr>(Rewrite.first) && "Expected an AddRec");
4624     assert(!(Rewrite.second).empty() && "Expected to find Predicates");
4625     return Rewrite;
4626   }
4627 
4628   Optional<std::pair<const SCEV *, SmallVector<const SCEVPredicate *, 3>>>
4629     Rewrite = createAddRecFromPHIWithCastsImpl(SymbolicPHI);
4630 
4631   // Record in the cache that the analysis failed
4632   if (!Rewrite) {
4633     SmallVector<const SCEVPredicate *, 3> Predicates;
4634     PredicatedSCEVRewrites[{SymbolicPHI, L}] = {SymbolicPHI, Predicates};
4635     return None;
4636   }
4637 
4638   return Rewrite;
4639 }
4640 
4641 /// A helper function for createAddRecFromPHI to handle simple cases.
4642 ///
4643 /// This function tries to find an AddRec expression for the simplest (yet most
4644 /// common) cases: PN = PHI(Start, OP(Self, LoopInvariant)).
4645 /// If it fails, createAddRecFromPHI will use a more general, but slow,
4646 /// technique for finding the AddRec expression.
4647 const SCEV *ScalarEvolution::createSimpleAffineAddRec(PHINode *PN,
4648                                                       Value *BEValueV,
4649                                                       Value *StartValueV) {
4650   const Loop *L = LI.getLoopFor(PN->getParent());
4651   assert(L && L->getHeader() == PN->getParent());
4652   assert(BEValueV && StartValueV);
4653 
4654   auto BO = MatchBinaryOp(BEValueV, DT);
4655   if (!BO)
4656     return nullptr;
4657 
4658   if (BO->Opcode != Instruction::Add)
4659     return nullptr;
4660 
4661   const SCEV *Accum = nullptr;
4662   if (BO->LHS == PN && L->isLoopInvariant(BO->RHS))
4663     Accum = getSCEV(BO->RHS);
4664   else if (BO->RHS == PN && L->isLoopInvariant(BO->LHS))
4665     Accum = getSCEV(BO->LHS);
4666 
4667   if (!Accum)
4668     return nullptr;
4669 
4670   SCEV::NoWrapFlags Flags = SCEV::FlagAnyWrap;
4671   if (BO->IsNUW)
4672     Flags = setFlags(Flags, SCEV::FlagNUW);
4673   if (BO->IsNSW)
4674     Flags = setFlags(Flags, SCEV::FlagNSW);
4675 
4676   const SCEV *StartVal = getSCEV(StartValueV);
4677   const SCEV *PHISCEV = getAddRecExpr(StartVal, Accum, L, Flags);
4678 
4679   ValueExprMap[SCEVCallbackVH(PN, this)] = PHISCEV;
4680 
4681   // We can add Flags to the post-inc expression only if we
4682   // know that it is *undefined behavior* for BEValueV to
4683   // overflow.
4684   if (auto *BEInst = dyn_cast<Instruction>(BEValueV))
4685     if (isLoopInvariant(Accum, L) && isAddRecNeverPoison(BEInst, L))
4686       (void)getAddRecExpr(getAddExpr(StartVal, Accum), Accum, L, Flags);
4687 
4688   return PHISCEV;
4689 }
4690 
4691 const SCEV *ScalarEvolution::createAddRecFromPHI(PHINode *PN) {
4692   const Loop *L = LI.getLoopFor(PN->getParent());
4693   if (!L || L->getHeader() != PN->getParent())
4694     return nullptr;
4695 
4696   // The loop may have multiple entrances or multiple exits; we can analyze
4697   // this phi as an addrec if it has a unique entry value and a unique
4698   // backedge value.
4699   Value *BEValueV = nullptr, *StartValueV = nullptr;
4700   for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
4701     Value *V = PN->getIncomingValue(i);
4702     if (L->contains(PN->getIncomingBlock(i))) {
4703       if (!BEValueV) {
4704         BEValueV = V;
4705       } else if (BEValueV != V) {
4706         BEValueV = nullptr;
4707         break;
4708       }
4709     } else if (!StartValueV) {
4710       StartValueV = V;
4711     } else if (StartValueV != V) {
4712       StartValueV = nullptr;
4713       break;
4714     }
4715   }
4716   if (!BEValueV || !StartValueV)
4717     return nullptr;
4718 
4719   assert(ValueExprMap.find_as(PN) == ValueExprMap.end() &&
4720          "PHI node already processed?");
4721 
4722   // First, try to find AddRec expression without creating a fictituos symbolic
4723   // value for PN.
4724   if (auto *S = createSimpleAffineAddRec(PN, BEValueV, StartValueV))
4725     return S;
4726 
4727   // Handle PHI node value symbolically.
4728   const SCEV *SymbolicName = getUnknown(PN);
4729   ValueExprMap.insert({SCEVCallbackVH(PN, this), SymbolicName});
4730 
4731   // Using this symbolic name for the PHI, analyze the value coming around
4732   // the back-edge.
4733   const SCEV *BEValue = getSCEV(BEValueV);
4734 
4735   // NOTE: If BEValue is loop invariant, we know that the PHI node just
4736   // has a special value for the first iteration of the loop.
4737 
4738   // If the value coming around the backedge is an add with the symbolic
4739   // value we just inserted, then we found a simple induction variable!
4740   if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(BEValue)) {
4741     // If there is a single occurrence of the symbolic value, replace it
4742     // with a recurrence.
4743     unsigned FoundIndex = Add->getNumOperands();
4744     for (unsigned i = 0, e = Add->getNumOperands(); i != e; ++i)
4745       if (Add->getOperand(i) == SymbolicName)
4746         if (FoundIndex == e) {
4747           FoundIndex = i;
4748           break;
4749         }
4750 
4751     if (FoundIndex != Add->getNumOperands()) {
4752       // Create an add with everything but the specified operand.
4753       SmallVector<const SCEV *, 8> Ops;
4754       for (unsigned i = 0, e = Add->getNumOperands(); i != e; ++i)
4755         if (i != FoundIndex)
4756           Ops.push_back(Add->getOperand(i));
4757       const SCEV *Accum = getAddExpr(Ops);
4758 
4759       bool InvariantF = isLoopInvariant(Accum, L);
4760 
4761       if (!InvariantF && Accum->getSCEVType() == scZeroExtend) {
4762         const SCEV *Op = dyn_cast<SCEVZeroExtendExpr>(Accum)->getOperand();
4763         const SCEVUnknown *Un = dyn_cast<SCEVUnknown>(Op);
4764         if (Un && Un->getValue() && isa<Instruction>(Un->getValue()) &&
4765             dyn_cast<Instruction>(Un->getValue())->getOpcode() ==
4766                 Instruction::ICmp) {
4767           const SCEV *ICmpSC = evaluateForICmp(cast<ICmpInst>(Un->getValue()));
4768           bool IsConstSC = ICmpSC->getSCEVType() == scConstant;
4769           Accum =
4770               IsConstSC ? getZeroExtendExpr(ICmpSC, Accum->getType()) : Accum;
4771           InvariantF = IsConstSC ? true : false;
4772         }
4773       }
4774 
4775       // This is not a valid addrec if the step amount is varying each
4776       // loop iteration, but is not itself an addrec in this loop.
4777       if (InvariantF || (isa<SCEVAddRecExpr>(Accum) &&
4778                          cast<SCEVAddRecExpr>(Accum)->getLoop() == L)) {
4779         SCEV::NoWrapFlags Flags = SCEV::FlagAnyWrap;
4780 
4781         if (auto BO = MatchBinaryOp(BEValueV, DT)) {
4782           if (BO->Opcode == Instruction::Add && BO->LHS == PN) {
4783             if (BO->IsNUW)
4784               Flags = setFlags(Flags, SCEV::FlagNUW);
4785             if (BO->IsNSW)
4786               Flags = setFlags(Flags, SCEV::FlagNSW);
4787           }
4788         } else if (GEPOperator *GEP = dyn_cast<GEPOperator>(BEValueV)) {
4789           // If the increment is an inbounds GEP, then we know the address
4790           // space cannot be wrapped around. We cannot make any guarantee
4791           // about signed or unsigned overflow because pointers are
4792           // unsigned but we may have a negative index from the base
4793           // pointer. We can guarantee that no unsigned wrap occurs if the
4794           // indices form a positive value.
4795           if (GEP->isInBounds() && GEP->getOperand(0) == PN) {
4796             Flags = setFlags(Flags, SCEV::FlagNW);
4797 
4798             const SCEV *Ptr = getSCEV(GEP->getPointerOperand());
4799             if (isKnownPositive(getMinusSCEV(getSCEV(GEP), Ptr)))
4800               Flags = setFlags(Flags, SCEV::FlagNUW);
4801           }
4802 
4803           // We cannot transfer nuw and nsw flags from subtraction
4804           // operations -- sub nuw X, Y is not the same as add nuw X, -Y
4805           // for instance.
4806         }
4807 
4808         const SCEV *StartVal = getSCEV(StartValueV);
4809         const SCEV *PHISCEV = getAddRecExpr(StartVal, Accum, L, Flags);
4810 
4811         // Okay, for the entire analysis of this edge we assumed the PHI
4812         // to be symbolic.  We now need to go back and purge all of the
4813         // entries for the scalars that use the symbolic expression.
4814         forgetSymbolicName(PN, SymbolicName);
4815         ValueExprMap[SCEVCallbackVH(PN, this)] = PHISCEV;
4816 
4817         // We can add Flags to the post-inc expression only if we
4818         // know that it is *undefined behavior* for BEValueV to
4819         // overflow.
4820         if (auto *BEInst = dyn_cast<Instruction>(BEValueV))
4821           if (isLoopInvariant(Accum, L) && isAddRecNeverPoison(BEInst, L))
4822             (void)getAddRecExpr(getAddExpr(StartVal, Accum), Accum, L, Flags);
4823 
4824         return PHISCEV;
4825       }
4826     }
4827   } else {
4828     // Otherwise, this could be a loop like this:
4829     //     i = 0;  for (j = 1; ..; ++j) { ....  i = j; }
4830     // In this case, j = {1,+,1}  and BEValue is j.
4831     // Because the other in-value of i (0) fits the evolution of BEValue
4832     // i really is an addrec evolution.
4833     //
4834     // We can generalize this saying that i is the shifted value of BEValue
4835     // by one iteration:
4836     //   PHI(f(0), f({1,+,1})) --> f({0,+,1})
4837     const SCEV *Shifted = SCEVShiftRewriter::rewrite(BEValue, L, *this);
4838     const SCEV *Start = SCEVInitRewriter::rewrite(Shifted, L, *this);
4839     if (Shifted != getCouldNotCompute() &&
4840         Start != getCouldNotCompute()) {
4841       const SCEV *StartVal = getSCEV(StartValueV);
4842       if (Start == StartVal) {
4843         // Okay, for the entire analysis of this edge we assumed the PHI
4844         // to be symbolic.  We now need to go back and purge all of the
4845         // entries for the scalars that use the symbolic expression.
4846         forgetSymbolicName(PN, SymbolicName);
4847         ValueExprMap[SCEVCallbackVH(PN, this)] = Shifted;
4848         return Shifted;
4849       }
4850     }
4851   }
4852 
4853   // Remove the temporary PHI node SCEV that has been inserted while intending
4854   // to create an AddRecExpr for this PHI node. We can not keep this temporary
4855   // as it will prevent later (possibly simpler) SCEV expressions to be added
4856   // to the ValueExprMap.
4857   eraseValueFromMap(PN);
4858 
4859   return nullptr;
4860 }
4861 
4862 // Checks if the SCEV S is available at BB.  S is considered available at BB
4863 // if S can be materialized at BB without introducing a fault.
4864 static bool IsAvailableOnEntry(const Loop *L, DominatorTree &DT, const SCEV *S,
4865                                BasicBlock *BB) {
4866   struct CheckAvailable {
4867     bool TraversalDone = false;
4868     bool Available = true;
4869 
4870     const Loop *L = nullptr;  // The loop BB is in (can be nullptr)
4871     BasicBlock *BB = nullptr;
4872     DominatorTree &DT;
4873 
4874     CheckAvailable(const Loop *L, BasicBlock *BB, DominatorTree &DT)
4875       : L(L), BB(BB), DT(DT) {}
4876 
4877     bool setUnavailable() {
4878       TraversalDone = true;
4879       Available = false;
4880       return false;
4881     }
4882 
4883     bool follow(const SCEV *S) {
4884       switch (S->getSCEVType()) {
4885       case scConstant: case scTruncate: case scZeroExtend: case scSignExtend:
4886       case scAddExpr: case scMulExpr: case scUMaxExpr: case scSMaxExpr:
4887         // These expressions are available if their operand(s) is/are.
4888         return true;
4889 
4890       case scAddRecExpr: {
4891         // We allow add recurrences that are on the loop BB is in, or some
4892         // outer loop.  This guarantees availability because the value of the
4893         // add recurrence at BB is simply the "current" value of the induction
4894         // variable.  We can relax this in the future; for instance an add
4895         // recurrence on a sibling dominating loop is also available at BB.
4896         const auto *ARLoop = cast<SCEVAddRecExpr>(S)->getLoop();
4897         if (L && (ARLoop == L || ARLoop->contains(L)))
4898           return true;
4899 
4900         return setUnavailable();
4901       }
4902 
4903       case scUnknown: {
4904         // For SCEVUnknown, we check for simple dominance.
4905         const auto *SU = cast<SCEVUnknown>(S);
4906         Value *V = SU->getValue();
4907 
4908         if (isa<Argument>(V))
4909           return false;
4910 
4911         if (isa<Instruction>(V) && DT.dominates(cast<Instruction>(V), BB))
4912           return false;
4913 
4914         return setUnavailable();
4915       }
4916 
4917       case scUDivExpr:
4918       case scCouldNotCompute:
4919         // We do not try to smart about these at all.
4920         return setUnavailable();
4921       }
4922       llvm_unreachable("switch should be fully covered!");
4923     }
4924 
4925     bool isDone() { return TraversalDone; }
4926   };
4927 
4928   CheckAvailable CA(L, BB, DT);
4929   SCEVTraversal<CheckAvailable> ST(CA);
4930 
4931   ST.visitAll(S);
4932   return CA.Available;
4933 }
4934 
4935 // Try to match a control flow sequence that branches out at BI and merges back
4936 // at Merge into a "C ? LHS : RHS" select pattern.  Return true on a successful
4937 // match.
4938 static bool BrPHIToSelect(DominatorTree &DT, BranchInst *BI, PHINode *Merge,
4939                           Value *&C, Value *&LHS, Value *&RHS) {
4940   C = BI->getCondition();
4941 
4942   BasicBlockEdge LeftEdge(BI->getParent(), BI->getSuccessor(0));
4943   BasicBlockEdge RightEdge(BI->getParent(), BI->getSuccessor(1));
4944 
4945   if (!LeftEdge.isSingleEdge())
4946     return false;
4947 
4948   assert(RightEdge.isSingleEdge() && "Follows from LeftEdge.isSingleEdge()");
4949 
4950   Use &LeftUse = Merge->getOperandUse(0);
4951   Use &RightUse = Merge->getOperandUse(1);
4952 
4953   if (DT.dominates(LeftEdge, LeftUse) && DT.dominates(RightEdge, RightUse)) {
4954     LHS = LeftUse;
4955     RHS = RightUse;
4956     return true;
4957   }
4958 
4959   if (DT.dominates(LeftEdge, RightUse) && DT.dominates(RightEdge, LeftUse)) {
4960     LHS = RightUse;
4961     RHS = LeftUse;
4962     return true;
4963   }
4964 
4965   return false;
4966 }
4967 
4968 const SCEV *ScalarEvolution::createNodeFromSelectLikePHI(PHINode *PN) {
4969   auto IsReachable =
4970       [&](BasicBlock *BB) { return DT.isReachableFromEntry(BB); };
4971   if (PN->getNumIncomingValues() == 2 && all_of(PN->blocks(), IsReachable)) {
4972     const Loop *L = LI.getLoopFor(PN->getParent());
4973 
4974     // We don't want to break LCSSA, even in a SCEV expression tree.
4975     for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
4976       if (LI.getLoopFor(PN->getIncomingBlock(i)) != L)
4977         return nullptr;
4978 
4979     // Try to match
4980     //
4981     //  br %cond, label %left, label %right
4982     // left:
4983     //  br label %merge
4984     // right:
4985     //  br label %merge
4986     // merge:
4987     //  V = phi [ %x, %left ], [ %y, %right ]
4988     //
4989     // as "select %cond, %x, %y"
4990 
4991     BasicBlock *IDom = DT[PN->getParent()]->getIDom()->getBlock();
4992     assert(IDom && "At least the entry block should dominate PN");
4993 
4994     auto *BI = dyn_cast<BranchInst>(IDom->getTerminator());
4995     Value *Cond = nullptr, *LHS = nullptr, *RHS = nullptr;
4996 
4997     if (BI && BI->isConditional() &&
4998         BrPHIToSelect(DT, BI, PN, Cond, LHS, RHS) &&
4999         IsAvailableOnEntry(L, DT, getSCEV(LHS), PN->getParent()) &&
5000         IsAvailableOnEntry(L, DT, getSCEV(RHS), PN->getParent()))
5001       return createNodeForSelectOrPHI(PN, Cond, LHS, RHS);
5002   }
5003 
5004   return nullptr;
5005 }
5006 
5007 const SCEV *ScalarEvolution::createNodeForPHI(PHINode *PN) {
5008   if (const SCEV *S = createAddRecFromPHI(PN))
5009     return S;
5010 
5011   if (const SCEV *S = createNodeFromSelectLikePHI(PN))
5012     return S;
5013 
5014   // If the PHI has a single incoming value, follow that value, unless the
5015   // PHI's incoming blocks are in a different loop, in which case doing so
5016   // risks breaking LCSSA form. Instcombine would normally zap these, but
5017   // it doesn't have DominatorTree information, so it may miss cases.
5018   if (Value *V = SimplifyInstruction(PN, {getDataLayout(), &TLI, &DT, &AC}))
5019     if (LI.replacementPreservesLCSSAForm(PN, V))
5020       return getSCEV(V);
5021 
5022   // If it's not a loop phi, we can't handle it yet.
5023   return getUnknown(PN);
5024 }
5025 
5026 const SCEV *ScalarEvolution::createNodeForSelectOrPHI(Instruction *I,
5027                                                       Value *Cond,
5028                                                       Value *TrueVal,
5029                                                       Value *FalseVal) {
5030   // Handle "constant" branch or select. This can occur for instance when a
5031   // loop pass transforms an inner loop and moves on to process the outer loop.
5032   if (auto *CI = dyn_cast<ConstantInt>(Cond))
5033     return getSCEV(CI->isOne() ? TrueVal : FalseVal);
5034 
5035   // Try to match some simple smax or umax patterns.
5036   auto *ICI = dyn_cast<ICmpInst>(Cond);
5037   if (!ICI)
5038     return getUnknown(I);
5039 
5040   Value *LHS = ICI->getOperand(0);
5041   Value *RHS = ICI->getOperand(1);
5042 
5043   switch (ICI->getPredicate()) {
5044   case ICmpInst::ICMP_SLT:
5045   case ICmpInst::ICMP_SLE:
5046     std::swap(LHS, RHS);
5047     LLVM_FALLTHROUGH;
5048   case ICmpInst::ICMP_SGT:
5049   case ICmpInst::ICMP_SGE:
5050     // a >s b ? a+x : b+x  ->  smax(a, b)+x
5051     // a >s b ? b+x : a+x  ->  smin(a, b)+x
5052     if (getTypeSizeInBits(LHS->getType()) <= getTypeSizeInBits(I->getType())) {
5053       const SCEV *LS = getNoopOrSignExtend(getSCEV(LHS), I->getType());
5054       const SCEV *RS = getNoopOrSignExtend(getSCEV(RHS), I->getType());
5055       const SCEV *LA = getSCEV(TrueVal);
5056       const SCEV *RA = getSCEV(FalseVal);
5057       const SCEV *LDiff = getMinusSCEV(LA, LS);
5058       const SCEV *RDiff = getMinusSCEV(RA, RS);
5059       if (LDiff == RDiff)
5060         return getAddExpr(getSMaxExpr(LS, RS), LDiff);
5061       LDiff = getMinusSCEV(LA, RS);
5062       RDiff = getMinusSCEV(RA, LS);
5063       if (LDiff == RDiff)
5064         return getAddExpr(getSMinExpr(LS, RS), LDiff);
5065     }
5066     break;
5067   case ICmpInst::ICMP_ULT:
5068   case ICmpInst::ICMP_ULE:
5069     std::swap(LHS, RHS);
5070     LLVM_FALLTHROUGH;
5071   case ICmpInst::ICMP_UGT:
5072   case ICmpInst::ICMP_UGE:
5073     // a >u b ? a+x : b+x  ->  umax(a, b)+x
5074     // a >u b ? b+x : a+x  ->  umin(a, b)+x
5075     if (getTypeSizeInBits(LHS->getType()) <= getTypeSizeInBits(I->getType())) {
5076       const SCEV *LS = getNoopOrZeroExtend(getSCEV(LHS), I->getType());
5077       const SCEV *RS = getNoopOrZeroExtend(getSCEV(RHS), I->getType());
5078       const SCEV *LA = getSCEV(TrueVal);
5079       const SCEV *RA = getSCEV(FalseVal);
5080       const SCEV *LDiff = getMinusSCEV(LA, LS);
5081       const SCEV *RDiff = getMinusSCEV(RA, RS);
5082       if (LDiff == RDiff)
5083         return getAddExpr(getUMaxExpr(LS, RS), LDiff);
5084       LDiff = getMinusSCEV(LA, RS);
5085       RDiff = getMinusSCEV(RA, LS);
5086       if (LDiff == RDiff)
5087         return getAddExpr(getUMinExpr(LS, RS), LDiff);
5088     }
5089     break;
5090   case ICmpInst::ICMP_NE:
5091     // n != 0 ? n+x : 1+x  ->  umax(n, 1)+x
5092     if (getTypeSizeInBits(LHS->getType()) <= getTypeSizeInBits(I->getType()) &&
5093         isa<ConstantInt>(RHS) && cast<ConstantInt>(RHS)->isZero()) {
5094       const SCEV *One = getOne(I->getType());
5095       const SCEV *LS = getNoopOrZeroExtend(getSCEV(LHS), I->getType());
5096       const SCEV *LA = getSCEV(TrueVal);
5097       const SCEV *RA = getSCEV(FalseVal);
5098       const SCEV *LDiff = getMinusSCEV(LA, LS);
5099       const SCEV *RDiff = getMinusSCEV(RA, One);
5100       if (LDiff == RDiff)
5101         return getAddExpr(getUMaxExpr(One, LS), LDiff);
5102     }
5103     break;
5104   case ICmpInst::ICMP_EQ:
5105     // n == 0 ? 1+x : n+x  ->  umax(n, 1)+x
5106     if (getTypeSizeInBits(LHS->getType()) <= getTypeSizeInBits(I->getType()) &&
5107         isa<ConstantInt>(RHS) && cast<ConstantInt>(RHS)->isZero()) {
5108       const SCEV *One = getOne(I->getType());
5109       const SCEV *LS = getNoopOrZeroExtend(getSCEV(LHS), I->getType());
5110       const SCEV *LA = getSCEV(TrueVal);
5111       const SCEV *RA = getSCEV(FalseVal);
5112       const SCEV *LDiff = getMinusSCEV(LA, One);
5113       const SCEV *RDiff = getMinusSCEV(RA, LS);
5114       if (LDiff == RDiff)
5115         return getAddExpr(getUMaxExpr(One, LS), LDiff);
5116     }
5117     break;
5118   default:
5119     break;
5120   }
5121 
5122   return getUnknown(I);
5123 }
5124 
5125 /// Expand GEP instructions into add and multiply operations. This allows them
5126 /// to be analyzed by regular SCEV code.
5127 const SCEV *ScalarEvolution::createNodeForGEP(GEPOperator *GEP) {
5128   // Don't attempt to analyze GEPs over unsized objects.
5129   if (!GEP->getSourceElementType()->isSized())
5130     return getUnknown(GEP);
5131 
5132   SmallVector<const SCEV *, 4> IndexExprs;
5133   for (auto Index = GEP->idx_begin(); Index != GEP->idx_end(); ++Index)
5134     IndexExprs.push_back(getSCEV(*Index));
5135   return getGEPExpr(GEP, IndexExprs);
5136 }
5137 
5138 uint32_t ScalarEvolution::GetMinTrailingZerosImpl(const SCEV *S) {
5139   if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S))
5140     return C->getAPInt().countTrailingZeros();
5141 
5142   if (const SCEVTruncateExpr *T = dyn_cast<SCEVTruncateExpr>(S))
5143     return std::min(GetMinTrailingZeros(T->getOperand()),
5144                     (uint32_t)getTypeSizeInBits(T->getType()));
5145 
5146   if (const SCEVZeroExtendExpr *E = dyn_cast<SCEVZeroExtendExpr>(S)) {
5147     uint32_t OpRes = GetMinTrailingZeros(E->getOperand());
5148     return OpRes == getTypeSizeInBits(E->getOperand()->getType())
5149                ? getTypeSizeInBits(E->getType())
5150                : OpRes;
5151   }
5152 
5153   if (const SCEVSignExtendExpr *E = dyn_cast<SCEVSignExtendExpr>(S)) {
5154     uint32_t OpRes = GetMinTrailingZeros(E->getOperand());
5155     return OpRes == getTypeSizeInBits(E->getOperand()->getType())
5156                ? getTypeSizeInBits(E->getType())
5157                : OpRes;
5158   }
5159 
5160   if (const SCEVAddExpr *A = dyn_cast<SCEVAddExpr>(S)) {
5161     // The result is the min of all operands results.
5162     uint32_t MinOpRes = GetMinTrailingZeros(A->getOperand(0));
5163     for (unsigned i = 1, e = A->getNumOperands(); MinOpRes && i != e; ++i)
5164       MinOpRes = std::min(MinOpRes, GetMinTrailingZeros(A->getOperand(i)));
5165     return MinOpRes;
5166   }
5167 
5168   if (const SCEVMulExpr *M = dyn_cast<SCEVMulExpr>(S)) {
5169     // The result is the sum of all operands results.
5170     uint32_t SumOpRes = GetMinTrailingZeros(M->getOperand(0));
5171     uint32_t BitWidth = getTypeSizeInBits(M->getType());
5172     for (unsigned i = 1, e = M->getNumOperands();
5173          SumOpRes != BitWidth && i != e; ++i)
5174       SumOpRes =
5175           std::min(SumOpRes + GetMinTrailingZeros(M->getOperand(i)), BitWidth);
5176     return SumOpRes;
5177   }
5178 
5179   if (const SCEVAddRecExpr *A = dyn_cast<SCEVAddRecExpr>(S)) {
5180     // The result is the min of all operands results.
5181     uint32_t MinOpRes = GetMinTrailingZeros(A->getOperand(0));
5182     for (unsigned i = 1, e = A->getNumOperands(); MinOpRes && i != e; ++i)
5183       MinOpRes = std::min(MinOpRes, GetMinTrailingZeros(A->getOperand(i)));
5184     return MinOpRes;
5185   }
5186 
5187   if (const SCEVSMaxExpr *M = dyn_cast<SCEVSMaxExpr>(S)) {
5188     // The result is the min of all operands results.
5189     uint32_t MinOpRes = GetMinTrailingZeros(M->getOperand(0));
5190     for (unsigned i = 1, e = M->getNumOperands(); MinOpRes && i != e; ++i)
5191       MinOpRes = std::min(MinOpRes, GetMinTrailingZeros(M->getOperand(i)));
5192     return MinOpRes;
5193   }
5194 
5195   if (const SCEVUMaxExpr *M = dyn_cast<SCEVUMaxExpr>(S)) {
5196     // The result is the min of all operands results.
5197     uint32_t MinOpRes = GetMinTrailingZeros(M->getOperand(0));
5198     for (unsigned i = 1, e = M->getNumOperands(); MinOpRes && i != e; ++i)
5199       MinOpRes = std::min(MinOpRes, GetMinTrailingZeros(M->getOperand(i)));
5200     return MinOpRes;
5201   }
5202 
5203   if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
5204     // For a SCEVUnknown, ask ValueTracking.
5205     KnownBits Known = computeKnownBits(U->getValue(), getDataLayout(), 0, &AC, nullptr, &DT);
5206     return Known.countMinTrailingZeros();
5207   }
5208 
5209   // SCEVUDivExpr
5210   return 0;
5211 }
5212 
5213 uint32_t ScalarEvolution::GetMinTrailingZeros(const SCEV *S) {
5214   auto I = MinTrailingZerosCache.find(S);
5215   if (I != MinTrailingZerosCache.end())
5216     return I->second;
5217 
5218   uint32_t Result = GetMinTrailingZerosImpl(S);
5219   auto InsertPair = MinTrailingZerosCache.insert({S, Result});
5220   assert(InsertPair.second && "Should insert a new key");
5221   return InsertPair.first->second;
5222 }
5223 
5224 /// Helper method to assign a range to V from metadata present in the IR.
5225 static Optional<ConstantRange> GetRangeFromMetadata(Value *V) {
5226   if (Instruction *I = dyn_cast<Instruction>(V))
5227     if (MDNode *MD = I->getMetadata(LLVMContext::MD_range))
5228       return getConstantRangeFromMetadata(*MD);
5229 
5230   return None;
5231 }
5232 
5233 /// Determine the range for a particular SCEV.  If SignHint is
5234 /// HINT_RANGE_UNSIGNED (resp. HINT_RANGE_SIGNED) then getRange prefers ranges
5235 /// with a "cleaner" unsigned (resp. signed) representation.
5236 const ConstantRange &
5237 ScalarEvolution::getRangeRef(const SCEV *S,
5238                              ScalarEvolution::RangeSignHint SignHint) {
5239   DenseMap<const SCEV *, ConstantRange> &Cache =
5240       SignHint == ScalarEvolution::HINT_RANGE_UNSIGNED ? UnsignedRanges
5241                                                        : SignedRanges;
5242 
5243   // See if we've computed this range already.
5244   DenseMap<const SCEV *, ConstantRange>::iterator I = Cache.find(S);
5245   if (I != Cache.end())
5246     return I->second;
5247 
5248   if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S))
5249     return setRange(C, SignHint, ConstantRange(C->getAPInt()));
5250 
5251   unsigned BitWidth = getTypeSizeInBits(S->getType());
5252   ConstantRange ConservativeResult(BitWidth, /*isFullSet=*/true);
5253 
5254   // If the value has known zeros, the maximum value will have those known zeros
5255   // as well.
5256   uint32_t TZ = GetMinTrailingZeros(S);
5257   if (TZ != 0) {
5258     if (SignHint == ScalarEvolution::HINT_RANGE_UNSIGNED)
5259       ConservativeResult =
5260           ConstantRange(APInt::getMinValue(BitWidth),
5261                         APInt::getMaxValue(BitWidth).lshr(TZ).shl(TZ) + 1);
5262     else
5263       ConservativeResult = ConstantRange(
5264           APInt::getSignedMinValue(BitWidth),
5265           APInt::getSignedMaxValue(BitWidth).ashr(TZ).shl(TZ) + 1);
5266   }
5267 
5268   if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
5269     ConstantRange X = getRangeRef(Add->getOperand(0), SignHint);
5270     for (unsigned i = 1, e = Add->getNumOperands(); i != e; ++i)
5271       X = X.add(getRangeRef(Add->getOperand(i), SignHint));
5272     return setRange(Add, SignHint, ConservativeResult.intersectWith(X));
5273   }
5274 
5275   if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
5276     ConstantRange X = getRangeRef(Mul->getOperand(0), SignHint);
5277     for (unsigned i = 1, e = Mul->getNumOperands(); i != e; ++i)
5278       X = X.multiply(getRangeRef(Mul->getOperand(i), SignHint));
5279     return setRange(Mul, SignHint, ConservativeResult.intersectWith(X));
5280   }
5281 
5282   if (const SCEVSMaxExpr *SMax = dyn_cast<SCEVSMaxExpr>(S)) {
5283     ConstantRange X = getRangeRef(SMax->getOperand(0), SignHint);
5284     for (unsigned i = 1, e = SMax->getNumOperands(); i != e; ++i)
5285       X = X.smax(getRangeRef(SMax->getOperand(i), SignHint));
5286     return setRange(SMax, SignHint, ConservativeResult.intersectWith(X));
5287   }
5288 
5289   if (const SCEVUMaxExpr *UMax = dyn_cast<SCEVUMaxExpr>(S)) {
5290     ConstantRange X = getRangeRef(UMax->getOperand(0), SignHint);
5291     for (unsigned i = 1, e = UMax->getNumOperands(); i != e; ++i)
5292       X = X.umax(getRangeRef(UMax->getOperand(i), SignHint));
5293     return setRange(UMax, SignHint, ConservativeResult.intersectWith(X));
5294   }
5295 
5296   if (const SCEVUDivExpr *UDiv = dyn_cast<SCEVUDivExpr>(S)) {
5297     ConstantRange X = getRangeRef(UDiv->getLHS(), SignHint);
5298     ConstantRange Y = getRangeRef(UDiv->getRHS(), SignHint);
5299     return setRange(UDiv, SignHint,
5300                     ConservativeResult.intersectWith(X.udiv(Y)));
5301   }
5302 
5303   if (const SCEVZeroExtendExpr *ZExt = dyn_cast<SCEVZeroExtendExpr>(S)) {
5304     ConstantRange X = getRangeRef(ZExt->getOperand(), SignHint);
5305     return setRange(ZExt, SignHint,
5306                     ConservativeResult.intersectWith(X.zeroExtend(BitWidth)));
5307   }
5308 
5309   if (const SCEVSignExtendExpr *SExt = dyn_cast<SCEVSignExtendExpr>(S)) {
5310     ConstantRange X = getRangeRef(SExt->getOperand(), SignHint);
5311     return setRange(SExt, SignHint,
5312                     ConservativeResult.intersectWith(X.signExtend(BitWidth)));
5313   }
5314 
5315   if (const SCEVTruncateExpr *Trunc = dyn_cast<SCEVTruncateExpr>(S)) {
5316     ConstantRange X = getRangeRef(Trunc->getOperand(), SignHint);
5317     return setRange(Trunc, SignHint,
5318                     ConservativeResult.intersectWith(X.truncate(BitWidth)));
5319   }
5320 
5321   if (const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(S)) {
5322     // If there's no unsigned wrap, the value will never be less than its
5323     // initial value.
5324     if (AddRec->hasNoUnsignedWrap())
5325       if (const SCEVConstant *C = dyn_cast<SCEVConstant>(AddRec->getStart()))
5326         if (!C->getValue()->isZero())
5327           ConservativeResult = ConservativeResult.intersectWith(
5328               ConstantRange(C->getAPInt(), APInt(BitWidth, 0)));
5329 
5330     // If there's no signed wrap, and all the operands have the same sign or
5331     // zero, the value won't ever change sign.
5332     if (AddRec->hasNoSignedWrap()) {
5333       bool AllNonNeg = true;
5334       bool AllNonPos = true;
5335       for (unsigned i = 0, e = AddRec->getNumOperands(); i != e; ++i) {
5336         if (!isKnownNonNegative(AddRec->getOperand(i))) AllNonNeg = false;
5337         if (!isKnownNonPositive(AddRec->getOperand(i))) AllNonPos = false;
5338       }
5339       if (AllNonNeg)
5340         ConservativeResult = ConservativeResult.intersectWith(
5341           ConstantRange(APInt(BitWidth, 0),
5342                         APInt::getSignedMinValue(BitWidth)));
5343       else if (AllNonPos)
5344         ConservativeResult = ConservativeResult.intersectWith(
5345           ConstantRange(APInt::getSignedMinValue(BitWidth),
5346                         APInt(BitWidth, 1)));
5347     }
5348 
5349     // TODO: non-affine addrec
5350     if (AddRec->isAffine()) {
5351       const SCEV *MaxBECount = getMaxBackedgeTakenCount(AddRec->getLoop());
5352       if (!isa<SCEVCouldNotCompute>(MaxBECount) &&
5353           getTypeSizeInBits(MaxBECount->getType()) <= BitWidth) {
5354         auto RangeFromAffine = getRangeForAffineAR(
5355             AddRec->getStart(), AddRec->getStepRecurrence(*this), MaxBECount,
5356             BitWidth);
5357         if (!RangeFromAffine.isFullSet())
5358           ConservativeResult =
5359               ConservativeResult.intersectWith(RangeFromAffine);
5360 
5361         auto RangeFromFactoring = getRangeViaFactoring(
5362             AddRec->getStart(), AddRec->getStepRecurrence(*this), MaxBECount,
5363             BitWidth);
5364         if (!RangeFromFactoring.isFullSet())
5365           ConservativeResult =
5366               ConservativeResult.intersectWith(RangeFromFactoring);
5367       }
5368     }
5369 
5370     return setRange(AddRec, SignHint, std::move(ConservativeResult));
5371   }
5372 
5373   if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
5374     // Check if the IR explicitly contains !range metadata.
5375     Optional<ConstantRange> MDRange = GetRangeFromMetadata(U->getValue());
5376     if (MDRange.hasValue())
5377       ConservativeResult = ConservativeResult.intersectWith(MDRange.getValue());
5378 
5379     // Split here to avoid paying the compile-time cost of calling both
5380     // computeKnownBits and ComputeNumSignBits.  This restriction can be lifted
5381     // if needed.
5382     const DataLayout &DL = getDataLayout();
5383     if (SignHint == ScalarEvolution::HINT_RANGE_UNSIGNED) {
5384       // For a SCEVUnknown, ask ValueTracking.
5385       KnownBits Known = computeKnownBits(U->getValue(), DL, 0, &AC, nullptr, &DT);
5386       if (Known.One != ~Known.Zero + 1)
5387         ConservativeResult =
5388             ConservativeResult.intersectWith(ConstantRange(Known.One,
5389                                                            ~Known.Zero + 1));
5390     } else {
5391       assert(SignHint == ScalarEvolution::HINT_RANGE_SIGNED &&
5392              "generalize as needed!");
5393       unsigned NS = ComputeNumSignBits(U->getValue(), DL, 0, &AC, nullptr, &DT);
5394       if (NS > 1)
5395         ConservativeResult = ConservativeResult.intersectWith(
5396             ConstantRange(APInt::getSignedMinValue(BitWidth).ashr(NS - 1),
5397                           APInt::getSignedMaxValue(BitWidth).ashr(NS - 1) + 1));
5398     }
5399 
5400     return setRange(U, SignHint, std::move(ConservativeResult));
5401   }
5402 
5403   return setRange(S, SignHint, std::move(ConservativeResult));
5404 }
5405 
5406 // Given a StartRange, Step and MaxBECount for an expression compute a range of
5407 // values that the expression can take. Initially, the expression has a value
5408 // from StartRange and then is changed by Step up to MaxBECount times. Signed
5409 // argument defines if we treat Step as signed or unsigned.
5410 static ConstantRange getRangeForAffineARHelper(APInt Step,
5411                                                const ConstantRange &StartRange,
5412                                                const APInt &MaxBECount,
5413                                                unsigned BitWidth, bool Signed) {
5414   // If either Step or MaxBECount is 0, then the expression won't change, and we
5415   // just need to return the initial range.
5416   if (Step == 0 || MaxBECount == 0)
5417     return StartRange;
5418 
5419   // If we don't know anything about the initial value (i.e. StartRange is
5420   // FullRange), then we don't know anything about the final range either.
5421   // Return FullRange.
5422   if (StartRange.isFullSet())
5423     return ConstantRange(BitWidth, /* isFullSet = */ true);
5424 
5425   // If Step is signed and negative, then we use its absolute value, but we also
5426   // note that we're moving in the opposite direction.
5427   bool Descending = Signed && Step.isNegative();
5428 
5429   if (Signed)
5430     // This is correct even for INT_SMIN. Let's look at i8 to illustrate this:
5431     // abs(INT_SMIN) = abs(-128) = abs(0x80) = -0x80 = 0x80 = 128.
5432     // This equations hold true due to the well-defined wrap-around behavior of
5433     // APInt.
5434     Step = Step.abs();
5435 
5436   // Check if Offset is more than full span of BitWidth. If it is, the
5437   // expression is guaranteed to overflow.
5438   if (APInt::getMaxValue(StartRange.getBitWidth()).udiv(Step).ult(MaxBECount))
5439     return ConstantRange(BitWidth, /* isFullSet = */ true);
5440 
5441   // Offset is by how much the expression can change. Checks above guarantee no
5442   // overflow here.
5443   APInt Offset = Step * MaxBECount;
5444 
5445   // Minimum value of the final range will match the minimal value of StartRange
5446   // if the expression is increasing and will be decreased by Offset otherwise.
5447   // Maximum value of the final range will match the maximal value of StartRange
5448   // if the expression is decreasing and will be increased by Offset otherwise.
5449   APInt StartLower = StartRange.getLower();
5450   APInt StartUpper = StartRange.getUpper() - 1;
5451   APInt MovedBoundary = Descending ? (StartLower - std::move(Offset))
5452                                    : (StartUpper + std::move(Offset));
5453 
5454   // It's possible that the new minimum/maximum value will fall into the initial
5455   // range (due to wrap around). This means that the expression can take any
5456   // value in this bitwidth, and we have to return full range.
5457   if (StartRange.contains(MovedBoundary))
5458     return ConstantRange(BitWidth, /* isFullSet = */ true);
5459 
5460   APInt NewLower =
5461       Descending ? std::move(MovedBoundary) : std::move(StartLower);
5462   APInt NewUpper =
5463       Descending ? std::move(StartUpper) : std::move(MovedBoundary);
5464   NewUpper += 1;
5465 
5466   // If we end up with full range, return a proper full range.
5467   if (NewLower == NewUpper)
5468     return ConstantRange(BitWidth, /* isFullSet = */ true);
5469 
5470   // No overflow detected, return [StartLower, StartUpper + Offset + 1) range.
5471   return ConstantRange(std::move(NewLower), std::move(NewUpper));
5472 }
5473 
5474 ConstantRange ScalarEvolution::getRangeForAffineAR(const SCEV *Start,
5475                                                    const SCEV *Step,
5476                                                    const SCEV *MaxBECount,
5477                                                    unsigned BitWidth) {
5478   assert(!isa<SCEVCouldNotCompute>(MaxBECount) &&
5479          getTypeSizeInBits(MaxBECount->getType()) <= BitWidth &&
5480          "Precondition!");
5481 
5482   MaxBECount = getNoopOrZeroExtend(MaxBECount, Start->getType());
5483   APInt MaxBECountValue = getUnsignedRangeMax(MaxBECount);
5484 
5485   // First, consider step signed.
5486   ConstantRange StartSRange = getSignedRange(Start);
5487   ConstantRange StepSRange = getSignedRange(Step);
5488 
5489   // If Step can be both positive and negative, we need to find ranges for the
5490   // maximum absolute step values in both directions and union them.
5491   ConstantRange SR =
5492       getRangeForAffineARHelper(StepSRange.getSignedMin(), StartSRange,
5493                                 MaxBECountValue, BitWidth, /* Signed = */ true);
5494   SR = SR.unionWith(getRangeForAffineARHelper(StepSRange.getSignedMax(),
5495                                               StartSRange, MaxBECountValue,
5496                                               BitWidth, /* Signed = */ true));
5497 
5498   // Next, consider step unsigned.
5499   ConstantRange UR = getRangeForAffineARHelper(
5500       getUnsignedRangeMax(Step), getUnsignedRange(Start),
5501       MaxBECountValue, BitWidth, /* Signed = */ false);
5502 
5503   // Finally, intersect signed and unsigned ranges.
5504   return SR.intersectWith(UR);
5505 }
5506 
5507 ConstantRange ScalarEvolution::getRangeViaFactoring(const SCEV *Start,
5508                                                     const SCEV *Step,
5509                                                     const SCEV *MaxBECount,
5510                                                     unsigned BitWidth) {
5511   //    RangeOf({C?A:B,+,C?P:Q}) == RangeOf(C?{A,+,P}:{B,+,Q})
5512   // == RangeOf({A,+,P}) union RangeOf({B,+,Q})
5513 
5514   struct SelectPattern {
5515     Value *Condition = nullptr;
5516     APInt TrueValue;
5517     APInt FalseValue;
5518 
5519     explicit SelectPattern(ScalarEvolution &SE, unsigned BitWidth,
5520                            const SCEV *S) {
5521       Optional<unsigned> CastOp;
5522       APInt Offset(BitWidth, 0);
5523 
5524       assert(SE.getTypeSizeInBits(S->getType()) == BitWidth &&
5525              "Should be!");
5526 
5527       // Peel off a constant offset:
5528       if (auto *SA = dyn_cast<SCEVAddExpr>(S)) {
5529         // In the future we could consider being smarter here and handle
5530         // {Start+Step,+,Step} too.
5531         if (SA->getNumOperands() != 2 || !isa<SCEVConstant>(SA->getOperand(0)))
5532           return;
5533 
5534         Offset = cast<SCEVConstant>(SA->getOperand(0))->getAPInt();
5535         S = SA->getOperand(1);
5536       }
5537 
5538       // Peel off a cast operation
5539       if (auto *SCast = dyn_cast<SCEVCastExpr>(S)) {
5540         CastOp = SCast->getSCEVType();
5541         S = SCast->getOperand();
5542       }
5543 
5544       using namespace llvm::PatternMatch;
5545 
5546       auto *SU = dyn_cast<SCEVUnknown>(S);
5547       const APInt *TrueVal, *FalseVal;
5548       if (!SU ||
5549           !match(SU->getValue(), m_Select(m_Value(Condition), m_APInt(TrueVal),
5550                                           m_APInt(FalseVal)))) {
5551         Condition = nullptr;
5552         return;
5553       }
5554 
5555       TrueValue = *TrueVal;
5556       FalseValue = *FalseVal;
5557 
5558       // Re-apply the cast we peeled off earlier
5559       if (CastOp.hasValue())
5560         switch (*CastOp) {
5561         default:
5562           llvm_unreachable("Unknown SCEV cast type!");
5563 
5564         case scTruncate:
5565           TrueValue = TrueValue.trunc(BitWidth);
5566           FalseValue = FalseValue.trunc(BitWidth);
5567           break;
5568         case scZeroExtend:
5569           TrueValue = TrueValue.zext(BitWidth);
5570           FalseValue = FalseValue.zext(BitWidth);
5571           break;
5572         case scSignExtend:
5573           TrueValue = TrueValue.sext(BitWidth);
5574           FalseValue = FalseValue.sext(BitWidth);
5575           break;
5576         }
5577 
5578       // Re-apply the constant offset we peeled off earlier
5579       TrueValue += Offset;
5580       FalseValue += Offset;
5581     }
5582 
5583     bool isRecognized() { return Condition != nullptr; }
5584   };
5585 
5586   SelectPattern StartPattern(*this, BitWidth, Start);
5587   if (!StartPattern.isRecognized())
5588     return ConstantRange(BitWidth, /* isFullSet = */ true);
5589 
5590   SelectPattern StepPattern(*this, BitWidth, Step);
5591   if (!StepPattern.isRecognized())
5592     return ConstantRange(BitWidth, /* isFullSet = */ true);
5593 
5594   if (StartPattern.Condition != StepPattern.Condition) {
5595     // We don't handle this case today; but we could, by considering four
5596     // possibilities below instead of two. I'm not sure if there are cases where
5597     // that will help over what getRange already does, though.
5598     return ConstantRange(BitWidth, /* isFullSet = */ true);
5599   }
5600 
5601   // NB! Calling ScalarEvolution::getConstant is fine, but we should not try to
5602   // construct arbitrary general SCEV expressions here.  This function is called
5603   // from deep in the call stack, and calling getSCEV (on a sext instruction,
5604   // say) can end up caching a suboptimal value.
5605 
5606   // FIXME: without the explicit `this` receiver below, MSVC errors out with
5607   // C2352 and C2512 (otherwise it isn't needed).
5608 
5609   const SCEV *TrueStart = this->getConstant(StartPattern.TrueValue);
5610   const SCEV *TrueStep = this->getConstant(StepPattern.TrueValue);
5611   const SCEV *FalseStart = this->getConstant(StartPattern.FalseValue);
5612   const SCEV *FalseStep = this->getConstant(StepPattern.FalseValue);
5613 
5614   ConstantRange TrueRange =
5615       this->getRangeForAffineAR(TrueStart, TrueStep, MaxBECount, BitWidth);
5616   ConstantRange FalseRange =
5617       this->getRangeForAffineAR(FalseStart, FalseStep, MaxBECount, BitWidth);
5618 
5619   return TrueRange.unionWith(FalseRange);
5620 }
5621 
5622 SCEV::NoWrapFlags ScalarEvolution::getNoWrapFlagsFromUB(const Value *V) {
5623   if (isa<ConstantExpr>(V)) return SCEV::FlagAnyWrap;
5624   const BinaryOperator *BinOp = cast<BinaryOperator>(V);
5625 
5626   // Return early if there are no flags to propagate to the SCEV.
5627   SCEV::NoWrapFlags Flags = SCEV::FlagAnyWrap;
5628   if (BinOp->hasNoUnsignedWrap())
5629     Flags = ScalarEvolution::setFlags(Flags, SCEV::FlagNUW);
5630   if (BinOp->hasNoSignedWrap())
5631     Flags = ScalarEvolution::setFlags(Flags, SCEV::FlagNSW);
5632   if (Flags == SCEV::FlagAnyWrap)
5633     return SCEV::FlagAnyWrap;
5634 
5635   return isSCEVExprNeverPoison(BinOp) ? Flags : SCEV::FlagAnyWrap;
5636 }
5637 
5638 bool ScalarEvolution::isSCEVExprNeverPoison(const Instruction *I) {
5639   // Here we check that I is in the header of the innermost loop containing I,
5640   // since we only deal with instructions in the loop header. The actual loop we
5641   // need to check later will come from an add recurrence, but getting that
5642   // requires computing the SCEV of the operands, which can be expensive. This
5643   // check we can do cheaply to rule out some cases early.
5644   Loop *InnermostContainingLoop = LI.getLoopFor(I->getParent());
5645   if (InnermostContainingLoop == nullptr ||
5646       InnermostContainingLoop->getHeader() != I->getParent())
5647     return false;
5648 
5649   // Only proceed if we can prove that I does not yield poison.
5650   if (!programUndefinedIfFullPoison(I))
5651     return false;
5652 
5653   // At this point we know that if I is executed, then it does not wrap
5654   // according to at least one of NSW or NUW. If I is not executed, then we do
5655   // not know if the calculation that I represents would wrap. Multiple
5656   // instructions can map to the same SCEV. If we apply NSW or NUW from I to
5657   // the SCEV, we must guarantee no wrapping for that SCEV also when it is
5658   // derived from other instructions that map to the same SCEV. We cannot make
5659   // that guarantee for cases where I is not executed. So we need to find the
5660   // loop that I is considered in relation to and prove that I is executed for
5661   // every iteration of that loop. That implies that the value that I
5662   // calculates does not wrap anywhere in the loop, so then we can apply the
5663   // flags to the SCEV.
5664   //
5665   // We check isLoopInvariant to disambiguate in case we are adding recurrences
5666   // from different loops, so that we know which loop to prove that I is
5667   // executed in.
5668   for (unsigned OpIndex = 0; OpIndex < I->getNumOperands(); ++OpIndex) {
5669     // I could be an extractvalue from a call to an overflow intrinsic.
5670     // TODO: We can do better here in some cases.
5671     if (!isSCEVable(I->getOperand(OpIndex)->getType()))
5672       return false;
5673     const SCEV *Op = getSCEV(I->getOperand(OpIndex));
5674     if (auto *AddRec = dyn_cast<SCEVAddRecExpr>(Op)) {
5675       bool AllOtherOpsLoopInvariant = true;
5676       for (unsigned OtherOpIndex = 0; OtherOpIndex < I->getNumOperands();
5677            ++OtherOpIndex) {
5678         if (OtherOpIndex != OpIndex) {
5679           const SCEV *OtherOp = getSCEV(I->getOperand(OtherOpIndex));
5680           if (!isLoopInvariant(OtherOp, AddRec->getLoop())) {
5681             AllOtherOpsLoopInvariant = false;
5682             break;
5683           }
5684         }
5685       }
5686       if (AllOtherOpsLoopInvariant &&
5687           isGuaranteedToExecuteForEveryIteration(I, AddRec->getLoop()))
5688         return true;
5689     }
5690   }
5691   return false;
5692 }
5693 
5694 bool ScalarEvolution::isAddRecNeverPoison(const Instruction *I, const Loop *L) {
5695   // If we know that \c I can never be poison period, then that's enough.
5696   if (isSCEVExprNeverPoison(I))
5697     return true;
5698 
5699   // For an add recurrence specifically, we assume that infinite loops without
5700   // side effects are undefined behavior, and then reason as follows:
5701   //
5702   // If the add recurrence is poison in any iteration, it is poison on all
5703   // future iterations (since incrementing poison yields poison). If the result
5704   // of the add recurrence is fed into the loop latch condition and the loop
5705   // does not contain any throws or exiting blocks other than the latch, we now
5706   // have the ability to "choose" whether the backedge is taken or not (by
5707   // choosing a sufficiently evil value for the poison feeding into the branch)
5708   // for every iteration including and after the one in which \p I first became
5709   // poison.  There are two possibilities (let's call the iteration in which \p
5710   // I first became poison as K):
5711   //
5712   //  1. In the set of iterations including and after K, the loop body executes
5713   //     no side effects.  In this case executing the backege an infinte number
5714   //     of times will yield undefined behavior.
5715   //
5716   //  2. In the set of iterations including and after K, the loop body executes
5717   //     at least one side effect.  In this case, that specific instance of side
5718   //     effect is control dependent on poison, which also yields undefined
5719   //     behavior.
5720 
5721   auto *ExitingBB = L->getExitingBlock();
5722   auto *LatchBB = L->getLoopLatch();
5723   if (!ExitingBB || !LatchBB || ExitingBB != LatchBB)
5724     return false;
5725 
5726   SmallPtrSet<const Instruction *, 16> Pushed;
5727   SmallVector<const Instruction *, 8> PoisonStack;
5728 
5729   // We start by assuming \c I, the post-inc add recurrence, is poison.  Only
5730   // things that are known to be fully poison under that assumption go on the
5731   // PoisonStack.
5732   Pushed.insert(I);
5733   PoisonStack.push_back(I);
5734 
5735   bool LatchControlDependentOnPoison = false;
5736   while (!PoisonStack.empty() && !LatchControlDependentOnPoison) {
5737     const Instruction *Poison = PoisonStack.pop_back_val();
5738 
5739     for (auto *PoisonUser : Poison->users()) {
5740       if (propagatesFullPoison(cast<Instruction>(PoisonUser))) {
5741         if (Pushed.insert(cast<Instruction>(PoisonUser)).second)
5742           PoisonStack.push_back(cast<Instruction>(PoisonUser));
5743       } else if (auto *BI = dyn_cast<BranchInst>(PoisonUser)) {
5744         assert(BI->isConditional() && "Only possibility!");
5745         if (BI->getParent() == LatchBB) {
5746           LatchControlDependentOnPoison = true;
5747           break;
5748         }
5749       }
5750     }
5751   }
5752 
5753   return LatchControlDependentOnPoison && loopHasNoAbnormalExits(L);
5754 }
5755 
5756 ScalarEvolution::LoopProperties
5757 ScalarEvolution::getLoopProperties(const Loop *L) {
5758   using LoopProperties = ScalarEvolution::LoopProperties;
5759 
5760   auto Itr = LoopPropertiesCache.find(L);
5761   if (Itr == LoopPropertiesCache.end()) {
5762     auto HasSideEffects = [](Instruction *I) {
5763       if (auto *SI = dyn_cast<StoreInst>(I))
5764         return !SI->isSimple();
5765 
5766       return I->mayHaveSideEffects();
5767     };
5768 
5769     LoopProperties LP = {/* HasNoAbnormalExits */ true,
5770                          /*HasNoSideEffects*/ true};
5771 
5772     for (auto *BB : L->getBlocks())
5773       for (auto &I : *BB) {
5774         if (!isGuaranteedToTransferExecutionToSuccessor(&I))
5775           LP.HasNoAbnormalExits = false;
5776         if (HasSideEffects(&I))
5777           LP.HasNoSideEffects = false;
5778         if (!LP.HasNoAbnormalExits && !LP.HasNoSideEffects)
5779           break; // We're already as pessimistic as we can get.
5780       }
5781 
5782     auto InsertPair = LoopPropertiesCache.insert({L, LP});
5783     assert(InsertPair.second && "We just checked!");
5784     Itr = InsertPair.first;
5785   }
5786 
5787   return Itr->second;
5788 }
5789 
5790 const SCEV *ScalarEvolution::createSCEV(Value *V) {
5791   if (!isSCEVable(V->getType()))
5792     return getUnknown(V);
5793 
5794   if (Instruction *I = dyn_cast<Instruction>(V)) {
5795     // Don't attempt to analyze instructions in blocks that aren't
5796     // reachable. Such instructions don't matter, and they aren't required
5797     // to obey basic rules for definitions dominating uses which this
5798     // analysis depends on.
5799     if (!DT.isReachableFromEntry(I->getParent()))
5800       return getUnknown(V);
5801   } else if (ConstantInt *CI = dyn_cast<ConstantInt>(V))
5802     return getConstant(CI);
5803   else if (isa<ConstantPointerNull>(V))
5804     return getZero(V->getType());
5805   else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V))
5806     return GA->isInterposable() ? getUnknown(V) : getSCEV(GA->getAliasee());
5807   else if (!isa<ConstantExpr>(V))
5808     return getUnknown(V);
5809 
5810   Operator *U = cast<Operator>(V);
5811   if (auto BO = MatchBinaryOp(U, DT)) {
5812     switch (BO->Opcode) {
5813     case Instruction::Add: {
5814       // The simple thing to do would be to just call getSCEV on both operands
5815       // and call getAddExpr with the result. However if we're looking at a
5816       // bunch of things all added together, this can be quite inefficient,
5817       // because it leads to N-1 getAddExpr calls for N ultimate operands.
5818       // Instead, gather up all the operands and make a single getAddExpr call.
5819       // LLVM IR canonical form means we need only traverse the left operands.
5820       SmallVector<const SCEV *, 4> AddOps;
5821       do {
5822         if (BO->Op) {
5823           if (auto *OpSCEV = getExistingSCEV(BO->Op)) {
5824             AddOps.push_back(OpSCEV);
5825             break;
5826           }
5827 
5828           // If a NUW or NSW flag can be applied to the SCEV for this
5829           // addition, then compute the SCEV for this addition by itself
5830           // with a separate call to getAddExpr. We need to do that
5831           // instead of pushing the operands of the addition onto AddOps,
5832           // since the flags are only known to apply to this particular
5833           // addition - they may not apply to other additions that can be
5834           // formed with operands from AddOps.
5835           const SCEV *RHS = getSCEV(BO->RHS);
5836           SCEV::NoWrapFlags Flags = getNoWrapFlagsFromUB(BO->Op);
5837           if (Flags != SCEV::FlagAnyWrap) {
5838             const SCEV *LHS = getSCEV(BO->LHS);
5839             if (BO->Opcode == Instruction::Sub)
5840               AddOps.push_back(getMinusSCEV(LHS, RHS, Flags));
5841             else
5842               AddOps.push_back(getAddExpr(LHS, RHS, Flags));
5843             break;
5844           }
5845         }
5846 
5847         if (BO->Opcode == Instruction::Sub)
5848           AddOps.push_back(getNegativeSCEV(getSCEV(BO->RHS)));
5849         else
5850           AddOps.push_back(getSCEV(BO->RHS));
5851 
5852         auto NewBO = MatchBinaryOp(BO->LHS, DT);
5853         if (!NewBO || (NewBO->Opcode != Instruction::Add &&
5854                        NewBO->Opcode != Instruction::Sub)) {
5855           AddOps.push_back(getSCEV(BO->LHS));
5856           break;
5857         }
5858         BO = NewBO;
5859       } while (true);
5860 
5861       return getAddExpr(AddOps);
5862     }
5863 
5864     case Instruction::Mul: {
5865       SmallVector<const SCEV *, 4> MulOps;
5866       do {
5867         if (BO->Op) {
5868           if (auto *OpSCEV = getExistingSCEV(BO->Op)) {
5869             MulOps.push_back(OpSCEV);
5870             break;
5871           }
5872 
5873           SCEV::NoWrapFlags Flags = getNoWrapFlagsFromUB(BO->Op);
5874           if (Flags != SCEV::FlagAnyWrap) {
5875             MulOps.push_back(
5876                 getMulExpr(getSCEV(BO->LHS), getSCEV(BO->RHS), Flags));
5877             break;
5878           }
5879         }
5880 
5881         MulOps.push_back(getSCEV(BO->RHS));
5882         auto NewBO = MatchBinaryOp(BO->LHS, DT);
5883         if (!NewBO || NewBO->Opcode != Instruction::Mul) {
5884           MulOps.push_back(getSCEV(BO->LHS));
5885           break;
5886         }
5887         BO = NewBO;
5888       } while (true);
5889 
5890       return getMulExpr(MulOps);
5891     }
5892     case Instruction::UDiv:
5893       return getUDivExpr(getSCEV(BO->LHS), getSCEV(BO->RHS));
5894     case Instruction::URem:
5895       return getURemExpr(getSCEV(BO->LHS), getSCEV(BO->RHS));
5896     case Instruction::Sub: {
5897       SCEV::NoWrapFlags Flags = SCEV::FlagAnyWrap;
5898       if (BO->Op)
5899         Flags = getNoWrapFlagsFromUB(BO->Op);
5900       return getMinusSCEV(getSCEV(BO->LHS), getSCEV(BO->RHS), Flags);
5901     }
5902     case Instruction::And:
5903       // For an expression like x&255 that merely masks off the high bits,
5904       // use zext(trunc(x)) as the SCEV expression.
5905       if (ConstantInt *CI = dyn_cast<ConstantInt>(BO->RHS)) {
5906         if (CI->isZero())
5907           return getSCEV(BO->RHS);
5908         if (CI->isMinusOne())
5909           return getSCEV(BO->LHS);
5910         const APInt &A = CI->getValue();
5911 
5912         // Instcombine's ShrinkDemandedConstant may strip bits out of
5913         // constants, obscuring what would otherwise be a low-bits mask.
5914         // Use computeKnownBits to compute what ShrinkDemandedConstant
5915         // knew about to reconstruct a low-bits mask value.
5916         unsigned LZ = A.countLeadingZeros();
5917         unsigned TZ = A.countTrailingZeros();
5918         unsigned BitWidth = A.getBitWidth();
5919         KnownBits Known(BitWidth);
5920         computeKnownBits(BO->LHS, Known, getDataLayout(),
5921                          0, &AC, nullptr, &DT);
5922 
5923         APInt EffectiveMask =
5924             APInt::getLowBitsSet(BitWidth, BitWidth - LZ - TZ).shl(TZ);
5925         if ((LZ != 0 || TZ != 0) && !((~A & ~Known.Zero) & EffectiveMask)) {
5926           const SCEV *MulCount = getConstant(APInt::getOneBitSet(BitWidth, TZ));
5927           const SCEV *LHS = getSCEV(BO->LHS);
5928           const SCEV *ShiftedLHS = nullptr;
5929           if (auto *LHSMul = dyn_cast<SCEVMulExpr>(LHS)) {
5930             if (auto *OpC = dyn_cast<SCEVConstant>(LHSMul->getOperand(0))) {
5931               // For an expression like (x * 8) & 8, simplify the multiply.
5932               unsigned MulZeros = OpC->getAPInt().countTrailingZeros();
5933               unsigned GCD = std::min(MulZeros, TZ);
5934               APInt DivAmt = APInt::getOneBitSet(BitWidth, TZ - GCD);
5935               SmallVector<const SCEV*, 4> MulOps;
5936               MulOps.push_back(getConstant(OpC->getAPInt().lshr(GCD)));
5937               MulOps.append(LHSMul->op_begin() + 1, LHSMul->op_end());
5938               auto *NewMul = getMulExpr(MulOps, LHSMul->getNoWrapFlags());
5939               ShiftedLHS = getUDivExpr(NewMul, getConstant(DivAmt));
5940             }
5941           }
5942           if (!ShiftedLHS)
5943             ShiftedLHS = getUDivExpr(LHS, MulCount);
5944           return getMulExpr(
5945               getZeroExtendExpr(
5946                   getTruncateExpr(ShiftedLHS,
5947                       IntegerType::get(getContext(), BitWidth - LZ - TZ)),
5948                   BO->LHS->getType()),
5949               MulCount);
5950         }
5951       }
5952       break;
5953 
5954     case Instruction::Or:
5955       // If the RHS of the Or is a constant, we may have something like:
5956       // X*4+1 which got turned into X*4|1.  Handle this as an Add so loop
5957       // optimizations will transparently handle this case.
5958       //
5959       // In order for this transformation to be safe, the LHS must be of the
5960       // form X*(2^n) and the Or constant must be less than 2^n.
5961       if (ConstantInt *CI = dyn_cast<ConstantInt>(BO->RHS)) {
5962         const SCEV *LHS = getSCEV(BO->LHS);
5963         const APInt &CIVal = CI->getValue();
5964         if (GetMinTrailingZeros(LHS) >=
5965             (CIVal.getBitWidth() - CIVal.countLeadingZeros())) {
5966           // Build a plain add SCEV.
5967           const SCEV *S = getAddExpr(LHS, getSCEV(CI));
5968           // If the LHS of the add was an addrec and it has no-wrap flags,
5969           // transfer the no-wrap flags, since an or won't introduce a wrap.
5970           if (const SCEVAddRecExpr *NewAR = dyn_cast<SCEVAddRecExpr>(S)) {
5971             const SCEVAddRecExpr *OldAR = cast<SCEVAddRecExpr>(LHS);
5972             const_cast<SCEVAddRecExpr *>(NewAR)->setNoWrapFlags(
5973                 OldAR->getNoWrapFlags());
5974           }
5975           return S;
5976         }
5977       }
5978       break;
5979 
5980     case Instruction::Xor:
5981       if (ConstantInt *CI = dyn_cast<ConstantInt>(BO->RHS)) {
5982         // If the RHS of xor is -1, then this is a not operation.
5983         if (CI->isMinusOne())
5984           return getNotSCEV(getSCEV(BO->LHS));
5985 
5986         // Model xor(and(x, C), C) as and(~x, C), if C is a low-bits mask.
5987         // This is a variant of the check for xor with -1, and it handles
5988         // the case where instcombine has trimmed non-demanded bits out
5989         // of an xor with -1.
5990         if (auto *LBO = dyn_cast<BinaryOperator>(BO->LHS))
5991           if (ConstantInt *LCI = dyn_cast<ConstantInt>(LBO->getOperand(1)))
5992             if (LBO->getOpcode() == Instruction::And &&
5993                 LCI->getValue() == CI->getValue())
5994               if (const SCEVZeroExtendExpr *Z =
5995                       dyn_cast<SCEVZeroExtendExpr>(getSCEV(BO->LHS))) {
5996                 Type *UTy = BO->LHS->getType();
5997                 const SCEV *Z0 = Z->getOperand();
5998                 Type *Z0Ty = Z0->getType();
5999                 unsigned Z0TySize = getTypeSizeInBits(Z0Ty);
6000 
6001                 // If C is a low-bits mask, the zero extend is serving to
6002                 // mask off the high bits. Complement the operand and
6003                 // re-apply the zext.
6004                 if (CI->getValue().isMask(Z0TySize))
6005                   return getZeroExtendExpr(getNotSCEV(Z0), UTy);
6006 
6007                 // If C is a single bit, it may be in the sign-bit position
6008                 // before the zero-extend. In this case, represent the xor
6009                 // using an add, which is equivalent, and re-apply the zext.
6010                 APInt Trunc = CI->getValue().trunc(Z0TySize);
6011                 if (Trunc.zext(getTypeSizeInBits(UTy)) == CI->getValue() &&
6012                     Trunc.isSignMask())
6013                   return getZeroExtendExpr(getAddExpr(Z0, getConstant(Trunc)),
6014                                            UTy);
6015               }
6016       }
6017       break;
6018 
6019   case Instruction::Shl:
6020     // Turn shift left of a constant amount into a multiply.
6021     if (ConstantInt *SA = dyn_cast<ConstantInt>(BO->RHS)) {
6022       uint32_t BitWidth = cast<IntegerType>(SA->getType())->getBitWidth();
6023 
6024       // If the shift count is not less than the bitwidth, the result of
6025       // the shift is undefined. Don't try to analyze it, because the
6026       // resolution chosen here may differ from the resolution chosen in
6027       // other parts of the compiler.
6028       if (SA->getValue().uge(BitWidth))
6029         break;
6030 
6031       // It is currently not resolved how to interpret NSW for left
6032       // shift by BitWidth - 1, so we avoid applying flags in that
6033       // case. Remove this check (or this comment) once the situation
6034       // is resolved. See
6035       // http://lists.llvm.org/pipermail/llvm-dev/2015-April/084195.html
6036       // and http://reviews.llvm.org/D8890 .
6037       auto Flags = SCEV::FlagAnyWrap;
6038       if (BO->Op && SA->getValue().ult(BitWidth - 1))
6039         Flags = getNoWrapFlagsFromUB(BO->Op);
6040 
6041       Constant *X = ConstantInt::get(getContext(),
6042         APInt::getOneBitSet(BitWidth, SA->getZExtValue()));
6043       return getMulExpr(getSCEV(BO->LHS), getSCEV(X), Flags);
6044     }
6045     break;
6046 
6047     case Instruction::AShr: {
6048       // AShr X, C, where C is a constant.
6049       ConstantInt *CI = dyn_cast<ConstantInt>(BO->RHS);
6050       if (!CI)
6051         break;
6052 
6053       Type *OuterTy = BO->LHS->getType();
6054       uint64_t BitWidth = getTypeSizeInBits(OuterTy);
6055       // If the shift count is not less than the bitwidth, the result of
6056       // the shift is undefined. Don't try to analyze it, because the
6057       // resolution chosen here may differ from the resolution chosen in
6058       // other parts of the compiler.
6059       if (CI->getValue().uge(BitWidth))
6060         break;
6061 
6062       if (CI->isZero())
6063         return getSCEV(BO->LHS); // shift by zero --> noop
6064 
6065       uint64_t AShrAmt = CI->getZExtValue();
6066       Type *TruncTy = IntegerType::get(getContext(), BitWidth - AShrAmt);
6067 
6068       Operator *L = dyn_cast<Operator>(BO->LHS);
6069       if (L && L->getOpcode() == Instruction::Shl) {
6070         // X = Shl A, n
6071         // Y = AShr X, m
6072         // Both n and m are constant.
6073 
6074         const SCEV *ShlOp0SCEV = getSCEV(L->getOperand(0));
6075         if (L->getOperand(1) == BO->RHS)
6076           // For a two-shift sext-inreg, i.e. n = m,
6077           // use sext(trunc(x)) as the SCEV expression.
6078           return getSignExtendExpr(
6079               getTruncateExpr(ShlOp0SCEV, TruncTy), OuterTy);
6080 
6081         ConstantInt *ShlAmtCI = dyn_cast<ConstantInt>(L->getOperand(1));
6082         if (ShlAmtCI && ShlAmtCI->getValue().ult(BitWidth)) {
6083           uint64_t ShlAmt = ShlAmtCI->getZExtValue();
6084           if (ShlAmt > AShrAmt) {
6085             // When n > m, use sext(mul(trunc(x), 2^(n-m)))) as the SCEV
6086             // expression. We already checked that ShlAmt < BitWidth, so
6087             // the multiplier, 1 << (ShlAmt - AShrAmt), fits into TruncTy as
6088             // ShlAmt - AShrAmt < Amt.
6089             APInt Mul = APInt::getOneBitSet(BitWidth - AShrAmt,
6090                                             ShlAmt - AShrAmt);
6091             return getSignExtendExpr(
6092                 getMulExpr(getTruncateExpr(ShlOp0SCEV, TruncTy),
6093                 getConstant(Mul)), OuterTy);
6094           }
6095         }
6096       }
6097       break;
6098     }
6099     }
6100   }
6101 
6102   switch (U->getOpcode()) {
6103   case Instruction::Trunc:
6104     return getTruncateExpr(getSCEV(U->getOperand(0)), U->getType());
6105 
6106   case Instruction::ZExt:
6107     return getZeroExtendExpr(getSCEV(U->getOperand(0)), U->getType());
6108 
6109   case Instruction::SExt:
6110     if (auto BO = MatchBinaryOp(U->getOperand(0), DT)) {
6111       // The NSW flag of a subtract does not always survive the conversion to
6112       // A + (-1)*B.  By pushing sign extension onto its operands we are much
6113       // more likely to preserve NSW and allow later AddRec optimisations.
6114       //
6115       // NOTE: This is effectively duplicating this logic from getSignExtend:
6116       //   sext((A + B + ...)<nsw>) --> (sext(A) + sext(B) + ...)<nsw>
6117       // but by that point the NSW information has potentially been lost.
6118       if (BO->Opcode == Instruction::Sub && BO->IsNSW) {
6119         Type *Ty = U->getType();
6120         auto *V1 = getSignExtendExpr(getSCEV(BO->LHS), Ty);
6121         auto *V2 = getSignExtendExpr(getSCEV(BO->RHS), Ty);
6122         return getMinusSCEV(V1, V2, SCEV::FlagNSW);
6123       }
6124     }
6125     return getSignExtendExpr(getSCEV(U->getOperand(0)), U->getType());
6126 
6127   case Instruction::BitCast:
6128     // BitCasts are no-op casts so we just eliminate the cast.
6129     if (isSCEVable(U->getType()) && isSCEVable(U->getOperand(0)->getType()))
6130       return getSCEV(U->getOperand(0));
6131     break;
6132 
6133   // It's tempting to handle inttoptr and ptrtoint as no-ops, however this can
6134   // lead to pointer expressions which cannot safely be expanded to GEPs,
6135   // because ScalarEvolution doesn't respect the GEP aliasing rules when
6136   // simplifying integer expressions.
6137 
6138   case Instruction::GetElementPtr:
6139     return createNodeForGEP(cast<GEPOperator>(U));
6140 
6141   case Instruction::PHI:
6142     return createNodeForPHI(cast<PHINode>(U));
6143 
6144   case Instruction::Select:
6145     // U can also be a select constant expr, which let fall through.  Since
6146     // createNodeForSelect only works for a condition that is an `ICmpInst`, and
6147     // constant expressions cannot have instructions as operands, we'd have
6148     // returned getUnknown for a select constant expressions anyway.
6149     if (isa<Instruction>(U))
6150       return createNodeForSelectOrPHI(cast<Instruction>(U), U->getOperand(0),
6151                                       U->getOperand(1), U->getOperand(2));
6152     break;
6153 
6154   case Instruction::Call:
6155   case Instruction::Invoke:
6156     if (Value *RV = CallSite(U).getReturnedArgOperand())
6157       return getSCEV(RV);
6158     break;
6159   }
6160 
6161   return getUnknown(V);
6162 }
6163 
6164 //===----------------------------------------------------------------------===//
6165 //                   Iteration Count Computation Code
6166 //
6167 
6168 static unsigned getConstantTripCount(const SCEVConstant *ExitCount) {
6169   if (!ExitCount)
6170     return 0;
6171 
6172   ConstantInt *ExitConst = ExitCount->getValue();
6173 
6174   // Guard against huge trip counts.
6175   if (ExitConst->getValue().getActiveBits() > 32)
6176     return 0;
6177 
6178   // In case of integer overflow, this returns 0, which is correct.
6179   return ((unsigned)ExitConst->getZExtValue()) + 1;
6180 }
6181 
6182 unsigned ScalarEvolution::getSmallConstantTripCount(const Loop *L) {
6183   if (BasicBlock *ExitingBB = L->getExitingBlock())
6184     return getSmallConstantTripCount(L, ExitingBB);
6185 
6186   // No trip count information for multiple exits.
6187   return 0;
6188 }
6189 
6190 unsigned ScalarEvolution::getSmallConstantTripCount(const Loop *L,
6191                                                     BasicBlock *ExitingBlock) {
6192   assert(ExitingBlock && "Must pass a non-null exiting block!");
6193   assert(L->isLoopExiting(ExitingBlock) &&
6194          "Exiting block must actually branch out of the loop!");
6195   const SCEVConstant *ExitCount =
6196       dyn_cast<SCEVConstant>(getExitCount(L, ExitingBlock));
6197   return getConstantTripCount(ExitCount);
6198 }
6199 
6200 unsigned ScalarEvolution::getSmallConstantMaxTripCount(const Loop *L) {
6201   const auto *MaxExitCount =
6202       dyn_cast<SCEVConstant>(getMaxBackedgeTakenCount(L));
6203   return getConstantTripCount(MaxExitCount);
6204 }
6205 
6206 unsigned ScalarEvolution::getSmallConstantTripMultiple(const Loop *L) {
6207   if (BasicBlock *ExitingBB = L->getExitingBlock())
6208     return getSmallConstantTripMultiple(L, ExitingBB);
6209 
6210   // No trip multiple information for multiple exits.
6211   return 0;
6212 }
6213 
6214 /// Returns the largest constant divisor of the trip count of this loop as a
6215 /// normal unsigned value, if possible. This means that the actual trip count is
6216 /// always a multiple of the returned value (don't forget the trip count could
6217 /// very well be zero as well!).
6218 ///
6219 /// Returns 1 if the trip count is unknown or not guaranteed to be the
6220 /// multiple of a constant (which is also the case if the trip count is simply
6221 /// constant, use getSmallConstantTripCount for that case), Will also return 1
6222 /// if the trip count is very large (>= 2^32).
6223 ///
6224 /// As explained in the comments for getSmallConstantTripCount, this assumes
6225 /// that control exits the loop via ExitingBlock.
6226 unsigned
6227 ScalarEvolution::getSmallConstantTripMultiple(const Loop *L,
6228                                               BasicBlock *ExitingBlock) {
6229   assert(ExitingBlock && "Must pass a non-null exiting block!");
6230   assert(L->isLoopExiting(ExitingBlock) &&
6231          "Exiting block must actually branch out of the loop!");
6232   const SCEV *ExitCount = getExitCount(L, ExitingBlock);
6233   if (ExitCount == getCouldNotCompute())
6234     return 1;
6235 
6236   // Get the trip count from the BE count by adding 1.
6237   const SCEV *TCExpr = getAddExpr(ExitCount, getOne(ExitCount->getType()));
6238 
6239   const SCEVConstant *TC = dyn_cast<SCEVConstant>(TCExpr);
6240   if (!TC)
6241     // Attempt to factor more general cases. Returns the greatest power of
6242     // two divisor. If overflow happens, the trip count expression is still
6243     // divisible by the greatest power of 2 divisor returned.
6244     return 1U << std::min((uint32_t)31, GetMinTrailingZeros(TCExpr));
6245 
6246   ConstantInt *Result = TC->getValue();
6247 
6248   // Guard against huge trip counts (this requires checking
6249   // for zero to handle the case where the trip count == -1 and the
6250   // addition wraps).
6251   if (!Result || Result->getValue().getActiveBits() > 32 ||
6252       Result->getValue().getActiveBits() == 0)
6253     return 1;
6254 
6255   return (unsigned)Result->getZExtValue();
6256 }
6257 
6258 /// Get the expression for the number of loop iterations for which this loop is
6259 /// guaranteed not to exit via ExitingBlock. Otherwise return
6260 /// SCEVCouldNotCompute.
6261 const SCEV *ScalarEvolution::getExitCount(const Loop *L,
6262                                           BasicBlock *ExitingBlock) {
6263   return getBackedgeTakenInfo(L).getExact(ExitingBlock, this);
6264 }
6265 
6266 const SCEV *
6267 ScalarEvolution::getPredicatedBackedgeTakenCount(const Loop *L,
6268                                                  SCEVUnionPredicate &Preds) {
6269   return getPredicatedBackedgeTakenInfo(L).getExact(this, &Preds);
6270 }
6271 
6272 const SCEV *ScalarEvolution::getBackedgeTakenCount(const Loop *L) {
6273   return getBackedgeTakenInfo(L).getExact(this);
6274 }
6275 
6276 /// Similar to getBackedgeTakenCount, except return the least SCEV value that is
6277 /// known never to be less than the actual backedge taken count.
6278 const SCEV *ScalarEvolution::getMaxBackedgeTakenCount(const Loop *L) {
6279   return getBackedgeTakenInfo(L).getMax(this);
6280 }
6281 
6282 bool ScalarEvolution::isBackedgeTakenCountMaxOrZero(const Loop *L) {
6283   return getBackedgeTakenInfo(L).isMaxOrZero(this);
6284 }
6285 
6286 /// Push PHI nodes in the header of the given loop onto the given Worklist.
6287 static void
6288 PushLoopPHIs(const Loop *L, SmallVectorImpl<Instruction *> &Worklist) {
6289   BasicBlock *Header = L->getHeader();
6290 
6291   // Push all Loop-header PHIs onto the Worklist stack.
6292   for (BasicBlock::iterator I = Header->begin();
6293        PHINode *PN = dyn_cast<PHINode>(I); ++I)
6294     Worklist.push_back(PN);
6295 }
6296 
6297 const ScalarEvolution::BackedgeTakenInfo &
6298 ScalarEvolution::getPredicatedBackedgeTakenInfo(const Loop *L) {
6299   auto &BTI = getBackedgeTakenInfo(L);
6300   if (BTI.hasFullInfo())
6301     return BTI;
6302 
6303   auto Pair = PredicatedBackedgeTakenCounts.insert({L, BackedgeTakenInfo()});
6304 
6305   if (!Pair.second)
6306     return Pair.first->second;
6307 
6308   BackedgeTakenInfo Result =
6309       computeBackedgeTakenCount(L, /*AllowPredicates=*/true);
6310 
6311   return PredicatedBackedgeTakenCounts.find(L)->second = std::move(Result);
6312 }
6313 
6314 const ScalarEvolution::BackedgeTakenInfo &
6315 ScalarEvolution::getBackedgeTakenInfo(const Loop *L) {
6316   // Initially insert an invalid entry for this loop. If the insertion
6317   // succeeds, proceed to actually compute a backedge-taken count and
6318   // update the value. The temporary CouldNotCompute value tells SCEV
6319   // code elsewhere that it shouldn't attempt to request a new
6320   // backedge-taken count, which could result in infinite recursion.
6321   std::pair<DenseMap<const Loop *, BackedgeTakenInfo>::iterator, bool> Pair =
6322       BackedgeTakenCounts.insert({L, BackedgeTakenInfo()});
6323   if (!Pair.second)
6324     return Pair.first->second;
6325 
6326   // computeBackedgeTakenCount may allocate memory for its result. Inserting it
6327   // into the BackedgeTakenCounts map transfers ownership. Otherwise, the result
6328   // must be cleared in this scope.
6329   BackedgeTakenInfo Result = computeBackedgeTakenCount(L);
6330 
6331   if (Result.getExact(this) != getCouldNotCompute()) {
6332     assert(isLoopInvariant(Result.getExact(this), L) &&
6333            isLoopInvariant(Result.getMax(this), L) &&
6334            "Computed backedge-taken count isn't loop invariant for loop!");
6335     ++NumTripCountsComputed;
6336   }
6337   else if (Result.getMax(this) == getCouldNotCompute() &&
6338            isa<PHINode>(L->getHeader()->begin())) {
6339     // Only count loops that have phi nodes as not being computable.
6340     ++NumTripCountsNotComputed;
6341   }
6342 
6343   // Now that we know more about the trip count for this loop, forget any
6344   // existing SCEV values for PHI nodes in this loop since they are only
6345   // conservative estimates made without the benefit of trip count
6346   // information. This is similar to the code in forgetLoop, except that
6347   // it handles SCEVUnknown PHI nodes specially.
6348   if (Result.hasAnyInfo()) {
6349     SmallVector<Instruction *, 16> Worklist;
6350     PushLoopPHIs(L, Worklist);
6351 
6352     SmallPtrSet<Instruction *, 8> Visited;
6353     while (!Worklist.empty()) {
6354       Instruction *I = Worklist.pop_back_val();
6355       if (!Visited.insert(I).second)
6356         continue;
6357 
6358       ValueExprMapType::iterator It =
6359         ValueExprMap.find_as(static_cast<Value *>(I));
6360       if (It != ValueExprMap.end()) {
6361         const SCEV *Old = It->second;
6362 
6363         // SCEVUnknown for a PHI either means that it has an unrecognized
6364         // structure, or it's a PHI that's in the progress of being computed
6365         // by createNodeForPHI.  In the former case, additional loop trip
6366         // count information isn't going to change anything. In the later
6367         // case, createNodeForPHI will perform the necessary updates on its
6368         // own when it gets to that point.
6369         if (!isa<PHINode>(I) || !isa<SCEVUnknown>(Old)) {
6370           eraseValueFromMap(It->first);
6371           forgetMemoizedResults(Old, false);
6372         }
6373         if (PHINode *PN = dyn_cast<PHINode>(I))
6374           ConstantEvolutionLoopExitValue.erase(PN);
6375       }
6376 
6377       PushDefUseChildren(I, Worklist);
6378     }
6379   }
6380 
6381   // Re-lookup the insert position, since the call to
6382   // computeBackedgeTakenCount above could result in a
6383   // recusive call to getBackedgeTakenInfo (on a different
6384   // loop), which would invalidate the iterator computed
6385   // earlier.
6386   return BackedgeTakenCounts.find(L)->second = std::move(Result);
6387 }
6388 
6389 void ScalarEvolution::forgetLoop(const Loop *L) {
6390   // Drop any stored trip count value.
6391   auto RemoveLoopFromBackedgeMap =
6392       [](DenseMap<const Loop *, BackedgeTakenInfo> &Map, const Loop *L) {
6393         auto BTCPos = Map.find(L);
6394         if (BTCPos != Map.end()) {
6395           BTCPos->second.clear();
6396           Map.erase(BTCPos);
6397         }
6398       };
6399 
6400   SmallVector<const Loop *, 16> LoopWorklist(1, L);
6401   SmallVector<Instruction *, 32> Worklist;
6402   SmallPtrSet<Instruction *, 16> Visited;
6403 
6404   // Iterate over all the loops and sub-loops to drop SCEV information.
6405   while (!LoopWorklist.empty()) {
6406     auto *CurrL = LoopWorklist.pop_back_val();
6407 
6408     RemoveLoopFromBackedgeMap(BackedgeTakenCounts, CurrL);
6409     RemoveLoopFromBackedgeMap(PredicatedBackedgeTakenCounts, CurrL);
6410 
6411     // Drop information about predicated SCEV rewrites for this loop.
6412     for (auto I = PredicatedSCEVRewrites.begin();
6413          I != PredicatedSCEVRewrites.end();) {
6414       std::pair<const SCEV *, const Loop *> Entry = I->first;
6415       if (Entry.second == CurrL)
6416         PredicatedSCEVRewrites.erase(I++);
6417       else
6418         ++I;
6419     }
6420 
6421     auto LoopUsersItr = LoopUsers.find(CurrL);
6422     if (LoopUsersItr != LoopUsers.end()) {
6423       for (auto *S : LoopUsersItr->second)
6424         forgetMemoizedResults(S);
6425       LoopUsers.erase(LoopUsersItr);
6426     }
6427 
6428     // Drop information about expressions based on loop-header PHIs.
6429     PushLoopPHIs(CurrL, Worklist);
6430 
6431     while (!Worklist.empty()) {
6432       Instruction *I = Worklist.pop_back_val();
6433       if (!Visited.insert(I).second)
6434         continue;
6435 
6436       ValueExprMapType::iterator It =
6437           ValueExprMap.find_as(static_cast<Value *>(I));
6438       if (It != ValueExprMap.end()) {
6439         eraseValueFromMap(It->first);
6440         forgetMemoizedResults(It->second);
6441         if (PHINode *PN = dyn_cast<PHINode>(I))
6442           ConstantEvolutionLoopExitValue.erase(PN);
6443       }
6444 
6445       PushDefUseChildren(I, Worklist);
6446     }
6447 
6448     for (auto I = ExitLimits.begin(); I != ExitLimits.end(); ++I) {
6449       auto &Query = I->first;
6450       if (Query.L == CurrL)
6451         ExitLimits.erase(I);
6452     }
6453 
6454     LoopPropertiesCache.erase(CurrL);
6455     // Forget all contained loops too, to avoid dangling entries in the
6456     // ValuesAtScopes map.
6457     LoopWorklist.append(CurrL->begin(), CurrL->end());
6458   }
6459 }
6460 
6461 
6462 const SCEV *ScalarEvolution::evaluateForICmp(ICmpInst *IC) {
6463   BasicBlock *Latch = nullptr;
6464   const Loop *L = LI.getLoopFor(IC->getParent());
6465 
6466   // If compare instruction is same or inverse of the compare in the
6467   // branch of the loop latch, then return a constant evolution
6468   // node. This shall facilitate computations of loop exit counts
6469   // in cases where compare appears in the evolution chain of induction
6470   // variables.
6471   if (L && (Latch = L->getLoopLatch())) {
6472     BranchInst *BI = dyn_cast<BranchInst>(Latch->getTerminator());
6473     if (BI && BI->isConditional() && BI->getCondition() == IC) {
6474       if (BI->getSuccessor(0) != L->getHeader())
6475         return getZero(Type::getInt1Ty(getContext()));
6476       else
6477         return getOne(Type::getInt1Ty(getContext()));
6478     }
6479   }
6480 
6481   return getUnknown(IC);
6482 }
6483 
6484 
6485 void ScalarEvolution::forgetValue(Value *V) {
6486   Instruction *I = dyn_cast<Instruction>(V);
6487   if (!I) return;
6488 
6489   // Drop information about expressions based on loop-header PHIs.
6490   SmallVector<Instruction *, 16> Worklist;
6491   Worklist.push_back(I);
6492 
6493   SmallPtrSet<Instruction *, 8> Visited;
6494   while (!Worklist.empty()) {
6495     I = Worklist.pop_back_val();
6496     if (!Visited.insert(I).second)
6497       continue;
6498 
6499     ValueExprMapType::iterator It =
6500       ValueExprMap.find_as(static_cast<Value *>(I));
6501     if (It != ValueExprMap.end()) {
6502       eraseValueFromMap(It->first);
6503       forgetMemoizedResults(It->second);
6504       if (PHINode *PN = dyn_cast<PHINode>(I))
6505         ConstantEvolutionLoopExitValue.erase(PN);
6506     }
6507 
6508     PushDefUseChildren(I, Worklist);
6509   }
6510 }
6511 
6512 /// Get the exact loop backedge taken count considering all loop exits. A
6513 /// computable result can only be returned for loops with a single exit.
6514 /// Returning the minimum taken count among all exits is incorrect because one
6515 /// of the loop's exit limit's may have been skipped. howFarToZero assumes that
6516 /// the limit of each loop test is never skipped. This is a valid assumption as
6517 /// long as the loop exits via that test. For precise results, it is the
6518 /// caller's responsibility to specify the relevant loop exit using
6519 /// getExact(ExitingBlock, SE).
6520 const SCEV *
6521 ScalarEvolution::BackedgeTakenInfo::getExact(ScalarEvolution *SE,
6522                                              SCEVUnionPredicate *Preds) const {
6523   // If any exits were not computable, the loop is not computable.
6524   if (!isComplete() || ExitNotTaken.empty())
6525     return SE->getCouldNotCompute();
6526 
6527   const SCEV *BECount = nullptr;
6528   for (auto &ENT : ExitNotTaken) {
6529     assert(ENT.ExactNotTaken != SE->getCouldNotCompute() && "bad exit SCEV");
6530 
6531     if (!BECount)
6532       BECount = ENT.ExactNotTaken;
6533     else if (BECount != ENT.ExactNotTaken)
6534       return SE->getCouldNotCompute();
6535     if (Preds && !ENT.hasAlwaysTruePredicate())
6536       Preds->add(ENT.Predicate.get());
6537 
6538     assert((Preds || ENT.hasAlwaysTruePredicate()) &&
6539            "Predicate should be always true!");
6540   }
6541 
6542   assert(BECount && "Invalid not taken count for loop exit");
6543   return BECount;
6544 }
6545 
6546 /// Get the exact not taken count for this loop exit.
6547 const SCEV *
6548 ScalarEvolution::BackedgeTakenInfo::getExact(BasicBlock *ExitingBlock,
6549                                              ScalarEvolution *SE) const {
6550   for (auto &ENT : ExitNotTaken)
6551     if (ENT.ExitingBlock == ExitingBlock && ENT.hasAlwaysTruePredicate())
6552       return ENT.ExactNotTaken;
6553 
6554   return SE->getCouldNotCompute();
6555 }
6556 
6557 /// getMax - Get the max backedge taken count for the loop.
6558 const SCEV *
6559 ScalarEvolution::BackedgeTakenInfo::getMax(ScalarEvolution *SE) const {
6560   auto PredicateNotAlwaysTrue = [](const ExitNotTakenInfo &ENT) {
6561     return !ENT.hasAlwaysTruePredicate();
6562   };
6563 
6564   if (any_of(ExitNotTaken, PredicateNotAlwaysTrue) || !getMax())
6565     return SE->getCouldNotCompute();
6566 
6567   assert((isa<SCEVCouldNotCompute>(getMax()) || isa<SCEVConstant>(getMax())) &&
6568          "No point in having a non-constant max backedge taken count!");
6569   return getMax();
6570 }
6571 
6572 bool ScalarEvolution::BackedgeTakenInfo::isMaxOrZero(ScalarEvolution *SE) const {
6573   auto PredicateNotAlwaysTrue = [](const ExitNotTakenInfo &ENT) {
6574     return !ENT.hasAlwaysTruePredicate();
6575   };
6576   return MaxOrZero && !any_of(ExitNotTaken, PredicateNotAlwaysTrue);
6577 }
6578 
6579 bool ScalarEvolution::BackedgeTakenInfo::hasOperand(const SCEV *S,
6580                                                     ScalarEvolution *SE) const {
6581   if (getMax() && getMax() != SE->getCouldNotCompute() &&
6582       SE->hasOperand(getMax(), S))
6583     return true;
6584 
6585   for (auto &ENT : ExitNotTaken)
6586     if (ENT.ExactNotTaken != SE->getCouldNotCompute() &&
6587         SE->hasOperand(ENT.ExactNotTaken, S))
6588       return true;
6589 
6590   return false;
6591 }
6592 
6593 ScalarEvolution::ExitLimit::ExitLimit(const SCEV *E)
6594     : ExactNotTaken(E), MaxNotTaken(E) {
6595   assert((isa<SCEVCouldNotCompute>(MaxNotTaken) ||
6596           isa<SCEVConstant>(MaxNotTaken)) &&
6597          "No point in having a non-constant max backedge taken count!");
6598 }
6599 
6600 ScalarEvolution::ExitLimit::ExitLimit(
6601     const SCEV *E, const SCEV *M, bool MaxOrZero,
6602     ArrayRef<const SmallPtrSetImpl<const SCEVPredicate *> *> PredSetList)
6603     : ExactNotTaken(E), MaxNotTaken(M), MaxOrZero(MaxOrZero) {
6604   assert((isa<SCEVCouldNotCompute>(ExactNotTaken) ||
6605           !isa<SCEVCouldNotCompute>(MaxNotTaken)) &&
6606          "Exact is not allowed to be less precise than Max");
6607   assert((isa<SCEVCouldNotCompute>(MaxNotTaken) ||
6608           isa<SCEVConstant>(MaxNotTaken)) &&
6609          "No point in having a non-constant max backedge taken count!");
6610   for (auto *PredSet : PredSetList)
6611     for (auto *P : *PredSet)
6612       addPredicate(P);
6613 }
6614 
6615 ScalarEvolution::ExitLimit::ExitLimit(
6616     const SCEV *E, const SCEV *M, bool MaxOrZero,
6617     const SmallPtrSetImpl<const SCEVPredicate *> &PredSet)
6618     : ExitLimit(E, M, MaxOrZero, {&PredSet}) {
6619   assert((isa<SCEVCouldNotCompute>(MaxNotTaken) ||
6620           isa<SCEVConstant>(MaxNotTaken)) &&
6621          "No point in having a non-constant max backedge taken count!");
6622 }
6623 
6624 ScalarEvolution::ExitLimit::ExitLimit(const SCEV *E, const SCEV *M,
6625                                       bool MaxOrZero)
6626     : ExitLimit(E, M, MaxOrZero, None) {
6627   assert((isa<SCEVCouldNotCompute>(MaxNotTaken) ||
6628           isa<SCEVConstant>(MaxNotTaken)) &&
6629          "No point in having a non-constant max backedge taken count!");
6630 }
6631 
6632 /// Allocate memory for BackedgeTakenInfo and copy the not-taken count of each
6633 /// computable exit into a persistent ExitNotTakenInfo array.
6634 ScalarEvolution::BackedgeTakenInfo::BackedgeTakenInfo(
6635     SmallVectorImpl<ScalarEvolution::BackedgeTakenInfo::EdgeExitInfo>
6636         &&ExitCounts,
6637     bool Complete, const SCEV *MaxCount, bool MaxOrZero)
6638     : MaxAndComplete(MaxCount, Complete), MaxOrZero(MaxOrZero) {
6639   using EdgeExitInfo = ScalarEvolution::BackedgeTakenInfo::EdgeExitInfo;
6640 
6641   ExitNotTaken.reserve(ExitCounts.size());
6642   std::transform(
6643       ExitCounts.begin(), ExitCounts.end(), std::back_inserter(ExitNotTaken),
6644       [&](const EdgeExitInfo &EEI) {
6645         BasicBlock *ExitBB = EEI.first;
6646         const ExitLimit &EL = EEI.second;
6647         if (EL.Predicates.empty())
6648           return ExitNotTakenInfo(ExitBB, EL.ExactNotTaken, nullptr);
6649 
6650         std::unique_ptr<SCEVUnionPredicate> Predicate(new SCEVUnionPredicate);
6651         for (auto *Pred : EL.Predicates)
6652           Predicate->add(Pred);
6653 
6654         return ExitNotTakenInfo(ExitBB, EL.ExactNotTaken, std::move(Predicate));
6655       });
6656   assert((isa<SCEVCouldNotCompute>(MaxCount) || isa<SCEVConstant>(MaxCount)) &&
6657          "No point in having a non-constant max backedge taken count!");
6658 }
6659 
6660 /// Invalidate this result and free the ExitNotTakenInfo array.
6661 void ScalarEvolution::BackedgeTakenInfo::clear() {
6662   ExitNotTaken.clear();
6663 }
6664 
6665 /// Compute the number of times the backedge of the specified loop will execute.
6666 ScalarEvolution::BackedgeTakenInfo
6667 ScalarEvolution::computeBackedgeTakenCount(const Loop *L,
6668                                            bool AllowPredicates) {
6669   SmallVector<BasicBlock *, 8> ExitingBlocks;
6670   L->getExitingBlocks(ExitingBlocks);
6671 
6672   using EdgeExitInfo = ScalarEvolution::BackedgeTakenInfo::EdgeExitInfo;
6673 
6674   SmallVector<EdgeExitInfo, 4> ExitCounts;
6675   bool CouldComputeBECount = true;
6676   BasicBlock *Latch = L->getLoopLatch(); // may be NULL.
6677   const SCEV *MustExitMaxBECount = nullptr;
6678   const SCEV *MayExitMaxBECount = nullptr;
6679   bool MustExitMaxOrZero = false;
6680 
6681   // Compute the ExitLimit for each loop exit. Use this to populate ExitCounts
6682   // and compute maxBECount.
6683   // Do a union of all the predicates here.
6684   for (unsigned i = 0, e = ExitingBlocks.size(); i != e; ++i) {
6685     BasicBlock *ExitBB = ExitingBlocks[i];
6686     ExitLimit EL = computeExitLimit(L, ExitBB, AllowPredicates);
6687 
6688     assert((AllowPredicates || EL.Predicates.empty()) &&
6689            "Predicated exit limit when predicates are not allowed!");
6690 
6691     // 1. For each exit that can be computed, add an entry to ExitCounts.
6692     // CouldComputeBECount is true only if all exits can be computed.
6693     if (EL.ExactNotTaken == getCouldNotCompute())
6694       // We couldn't compute an exact value for this exit, so
6695       // we won't be able to compute an exact value for the loop.
6696       CouldComputeBECount = false;
6697     else
6698       ExitCounts.emplace_back(ExitBB, EL);
6699 
6700     // 2. Derive the loop's MaxBECount from each exit's max number of
6701     // non-exiting iterations. Partition the loop exits into two kinds:
6702     // LoopMustExits and LoopMayExits.
6703     //
6704     // If the exit dominates the loop latch, it is a LoopMustExit otherwise it
6705     // is a LoopMayExit.  If any computable LoopMustExit is found, then
6706     // MaxBECount is the minimum EL.MaxNotTaken of computable
6707     // LoopMustExits. Otherwise, MaxBECount is conservatively the maximum
6708     // EL.MaxNotTaken, where CouldNotCompute is considered greater than any
6709     // computable EL.MaxNotTaken.
6710     if (EL.MaxNotTaken != getCouldNotCompute() && Latch &&
6711         DT.dominates(ExitBB, Latch)) {
6712       if (!MustExitMaxBECount) {
6713         MustExitMaxBECount = EL.MaxNotTaken;
6714         MustExitMaxOrZero = EL.MaxOrZero;
6715       } else {
6716         MustExitMaxBECount =
6717             getUMinFromMismatchedTypes(MustExitMaxBECount, EL.MaxNotTaken);
6718       }
6719     } else if (MayExitMaxBECount != getCouldNotCompute()) {
6720       if (!MayExitMaxBECount || EL.MaxNotTaken == getCouldNotCompute())
6721         MayExitMaxBECount = EL.MaxNotTaken;
6722       else {
6723         MayExitMaxBECount =
6724             getUMaxFromMismatchedTypes(MayExitMaxBECount, EL.MaxNotTaken);
6725       }
6726     }
6727   }
6728   const SCEV *MaxBECount = MustExitMaxBECount ? MustExitMaxBECount :
6729     (MayExitMaxBECount ? MayExitMaxBECount : getCouldNotCompute());
6730   // The loop backedge will be taken the maximum or zero times if there's
6731   // a single exit that must be taken the maximum or zero times.
6732   bool MaxOrZero = (MustExitMaxOrZero && ExitingBlocks.size() == 1);
6733   return BackedgeTakenInfo(std::move(ExitCounts), CouldComputeBECount,
6734                            MaxBECount, MaxOrZero);
6735 }
6736 
6737 ScalarEvolution::ExitLimit
6738 ScalarEvolution::computeExitLimit(const Loop *L, BasicBlock *ExitingBlock,
6739                                   bool AllowPredicates) {
6740   ExitLimitQuery Query(L, ExitingBlock, AllowPredicates);
6741   auto MaybeEL = ExitLimits.find(Query);
6742   if (MaybeEL != ExitLimits.end())
6743     return MaybeEL->second;
6744   ExitLimit EL = computeExitLimitImpl(L, ExitingBlock, AllowPredicates);
6745   ExitLimits.insert({Query, EL});
6746   return EL;
6747 }
6748 
6749 ScalarEvolution::ExitLimit
6750 ScalarEvolution::computeExitLimitImpl(const Loop *L, BasicBlock *ExitingBlock,
6751                                       bool AllowPredicates) {
6752   // Okay, we've chosen an exiting block.  See what condition causes us to exit
6753   // at this block and remember the exit block and whether all other targets
6754   // lead to the loop header.
6755   bool MustExecuteLoopHeader = true;
6756   BasicBlock *Exit = nullptr;
6757   for (auto *SBB : successors(ExitingBlock))
6758     if (!L->contains(SBB)) {
6759       if (Exit) // Multiple exit successors.
6760         return getCouldNotCompute();
6761       Exit = SBB;
6762     } else if (SBB != L->getHeader()) {
6763       MustExecuteLoopHeader = false;
6764     }
6765 
6766   // At this point, we know we have a conditional branch that determines whether
6767   // the loop is exited.  However, we don't know if the branch is executed each
6768   // time through the loop.  If not, then the execution count of the branch will
6769   // not be equal to the trip count of the loop.
6770   //
6771   // Currently we check for this by checking to see if the Exit branch goes to
6772   // the loop header.  If so, we know it will always execute the same number of
6773   // times as the loop.  We also handle the case where the exit block *is* the
6774   // loop header.  This is common for un-rotated loops.
6775   //
6776   // If both of those tests fail, walk up the unique predecessor chain to the
6777   // header, stopping if there is an edge that doesn't exit the loop. If the
6778   // header is reached, the execution count of the branch will be equal to the
6779   // trip count of the loop.
6780   //
6781   //  More extensive analysis could be done to handle more cases here.
6782   //
6783   if (!MustExecuteLoopHeader && ExitingBlock != L->getHeader()) {
6784     // The simple checks failed, try climbing the unique predecessor chain
6785     // up to the header.
6786     bool Ok = false;
6787     for (BasicBlock *BB = ExitingBlock; BB; ) {
6788       BasicBlock *Pred = BB->getUniquePredecessor();
6789       if (!Pred)
6790         return getCouldNotCompute();
6791       TerminatorInst *PredTerm = Pred->getTerminator();
6792       for (const BasicBlock *PredSucc : PredTerm->successors()) {
6793         if (PredSucc == BB)
6794           continue;
6795         // If the predecessor has a successor that isn't BB and isn't
6796         // outside the loop, assume the worst.
6797         if (L->contains(PredSucc))
6798           return getCouldNotCompute();
6799       }
6800       if (Pred == L->getHeader()) {
6801         Ok = true;
6802         break;
6803       }
6804       BB = Pred;
6805     }
6806     if (!Ok)
6807       return getCouldNotCompute();
6808   }
6809 
6810   bool IsOnlyExit = (L->getExitingBlock() != nullptr);
6811   TerminatorInst *Term = ExitingBlock->getTerminator();
6812   if (BranchInst *BI = dyn_cast<BranchInst>(Term)) {
6813     assert(BI->isConditional() && "If unconditional, it can't be in loop!");
6814     // Proceed to the next level to examine the exit condition expression.
6815     return computeExitLimitFromCond(
6816         L, BI->getCondition(), BI->getSuccessor(0), BI->getSuccessor(1),
6817         /*ControlsExit=*/IsOnlyExit, AllowPredicates);
6818   }
6819 
6820   if (SwitchInst *SI = dyn_cast<SwitchInst>(Term))
6821     return computeExitLimitFromSingleExitSwitch(L, SI, Exit,
6822                                                 /*ControlsExit=*/IsOnlyExit);
6823 
6824   return getCouldNotCompute();
6825 }
6826 
6827 ScalarEvolution::ExitLimit ScalarEvolution::computeExitLimitFromCond(
6828     const Loop *L, Value *ExitCond, BasicBlock *TBB, BasicBlock *FBB,
6829     bool ControlsExit, bool AllowPredicates) {
6830   ScalarEvolution::ExitLimitCacheTy Cache(L, TBB, FBB, AllowPredicates);
6831   return computeExitLimitFromCondCached(Cache, L, ExitCond, TBB, FBB,
6832                                         ControlsExit, AllowPredicates);
6833 }
6834 
6835 Optional<ScalarEvolution::ExitLimit>
6836 ScalarEvolution::ExitLimitCache::find(const Loop *L, Value *ExitCond,
6837                                       BasicBlock *TBB, BasicBlock *FBB,
6838                                       bool ControlsExit, bool AllowPredicates) {
6839   (void)this->L;
6840   (void)this->TBB;
6841   (void)this->FBB;
6842   (void)this->AllowPredicates;
6843 
6844   assert(this->L == L && this->TBB == TBB && this->FBB == FBB &&
6845          this->AllowPredicates == AllowPredicates &&
6846          "Variance in assumed invariant key components!");
6847   auto Itr = TripCountMap.find({ExitCond, ControlsExit});
6848   if (Itr == TripCountMap.end())
6849     return None;
6850   return Itr->second;
6851 }
6852 
6853 void ScalarEvolution::ExitLimitCache::insert(const Loop *L, Value *ExitCond,
6854                                              BasicBlock *TBB, BasicBlock *FBB,
6855                                              bool ControlsExit,
6856                                              bool AllowPredicates,
6857                                              const ExitLimit &EL) {
6858   assert(this->L == L && this->TBB == TBB && this->FBB == FBB &&
6859          this->AllowPredicates == AllowPredicates &&
6860          "Variance in assumed invariant key components!");
6861 
6862   auto InsertResult = TripCountMap.insert({{ExitCond, ControlsExit}, EL});
6863   assert(InsertResult.second && "Expected successful insertion!");
6864   (void)InsertResult;
6865 }
6866 
6867 ScalarEvolution::ExitLimit ScalarEvolution::computeExitLimitFromCondCached(
6868     ExitLimitCacheTy &Cache, const Loop *L, Value *ExitCond, BasicBlock *TBB,
6869     BasicBlock *FBB, bool ControlsExit, bool AllowPredicates) {
6870 
6871   if (auto MaybeEL =
6872           Cache.find(L, ExitCond, TBB, FBB, ControlsExit, AllowPredicates))
6873     return *MaybeEL;
6874 
6875   ExitLimit EL = computeExitLimitFromCondImpl(Cache, L, ExitCond, TBB, FBB,
6876                                               ControlsExit, AllowPredicates);
6877   Cache.insert(L, ExitCond, TBB, FBB, ControlsExit, AllowPredicates, EL);
6878   return EL;
6879 }
6880 
6881 ScalarEvolution::ExitLimit ScalarEvolution::computeExitLimitFromCondImpl(
6882     ExitLimitCacheTy &Cache, const Loop *L, Value *ExitCond, BasicBlock *TBB,
6883     BasicBlock *FBB, bool ControlsExit, bool AllowPredicates) {
6884   // Check if the controlling expression for this loop is an And or Or.
6885   if (BinaryOperator *BO = dyn_cast<BinaryOperator>(ExitCond)) {
6886     if (BO->getOpcode() == Instruction::And) {
6887       // Recurse on the operands of the and.
6888       bool EitherMayExit = L->contains(TBB);
6889       ExitLimit EL0 = computeExitLimitFromCondCached(
6890           Cache, L, BO->getOperand(0), TBB, FBB, ControlsExit && !EitherMayExit,
6891           AllowPredicates);
6892       ExitLimit EL1 = computeExitLimitFromCondCached(
6893           Cache, L, BO->getOperand(1), TBB, FBB, ControlsExit && !EitherMayExit,
6894           AllowPredicates);
6895       const SCEV *BECount = getCouldNotCompute();
6896       const SCEV *MaxBECount = getCouldNotCompute();
6897       if (EitherMayExit) {
6898         // Both conditions must be true for the loop to continue executing.
6899         // Choose the less conservative count.
6900         if (EL0.ExactNotTaken == getCouldNotCompute() ||
6901             EL1.ExactNotTaken == getCouldNotCompute())
6902           BECount = getCouldNotCompute();
6903         else
6904           BECount =
6905               getUMinFromMismatchedTypes(EL0.ExactNotTaken, EL1.ExactNotTaken);
6906         if (EL0.MaxNotTaken == getCouldNotCompute())
6907           MaxBECount = EL1.MaxNotTaken;
6908         else if (EL1.MaxNotTaken == getCouldNotCompute())
6909           MaxBECount = EL0.MaxNotTaken;
6910         else
6911           MaxBECount =
6912               getUMinFromMismatchedTypes(EL0.MaxNotTaken, EL1.MaxNotTaken);
6913       } else {
6914         // Both conditions must be true at the same time for the loop to exit.
6915         // For now, be conservative.
6916         assert(L->contains(FBB) && "Loop block has no successor in loop!");
6917         if (EL0.MaxNotTaken == EL1.MaxNotTaken)
6918           MaxBECount = EL0.MaxNotTaken;
6919         if (EL0.ExactNotTaken == EL1.ExactNotTaken)
6920           BECount = EL0.ExactNotTaken;
6921       }
6922 
6923       // There are cases (e.g. PR26207) where computeExitLimitFromCond is able
6924       // to be more aggressive when computing BECount than when computing
6925       // MaxBECount.  In these cases it is possible for EL0.ExactNotTaken and
6926       // EL1.ExactNotTaken to match, but for EL0.MaxNotTaken and EL1.MaxNotTaken
6927       // to not.
6928       if (isa<SCEVCouldNotCompute>(MaxBECount) &&
6929           !isa<SCEVCouldNotCompute>(BECount))
6930         MaxBECount = getConstant(getUnsignedRangeMax(BECount));
6931 
6932       return ExitLimit(BECount, MaxBECount, false,
6933                        {&EL0.Predicates, &EL1.Predicates});
6934     }
6935     if (BO->getOpcode() == Instruction::Or) {
6936       // Recurse on the operands of the or.
6937       bool EitherMayExit = L->contains(FBB);
6938       ExitLimit EL0 = computeExitLimitFromCondCached(
6939           Cache, L, BO->getOperand(0), TBB, FBB, ControlsExit && !EitherMayExit,
6940           AllowPredicates);
6941       ExitLimit EL1 = computeExitLimitFromCondCached(
6942           Cache, L, BO->getOperand(1), TBB, FBB, ControlsExit && !EitherMayExit,
6943           AllowPredicates);
6944       const SCEV *BECount = getCouldNotCompute();
6945       const SCEV *MaxBECount = getCouldNotCompute();
6946       if (EitherMayExit) {
6947         // Both conditions must be false for the loop to continue executing.
6948         // Choose the less conservative count.
6949         if (EL0.ExactNotTaken == getCouldNotCompute() ||
6950             EL1.ExactNotTaken == getCouldNotCompute())
6951           BECount = getCouldNotCompute();
6952         else
6953           BECount =
6954               getUMinFromMismatchedTypes(EL0.ExactNotTaken, EL1.ExactNotTaken);
6955         if (EL0.MaxNotTaken == getCouldNotCompute())
6956           MaxBECount = EL1.MaxNotTaken;
6957         else if (EL1.MaxNotTaken == getCouldNotCompute())
6958           MaxBECount = EL0.MaxNotTaken;
6959         else
6960           MaxBECount =
6961               getUMinFromMismatchedTypes(EL0.MaxNotTaken, EL1.MaxNotTaken);
6962       } else {
6963         // Both conditions must be false at the same time for the loop to exit.
6964         // For now, be conservative.
6965         assert(L->contains(TBB) && "Loop block has no successor in loop!");
6966         if (EL0.MaxNotTaken == EL1.MaxNotTaken)
6967           MaxBECount = EL0.MaxNotTaken;
6968         if (EL0.ExactNotTaken == EL1.ExactNotTaken)
6969           BECount = EL0.ExactNotTaken;
6970       }
6971 
6972       return ExitLimit(BECount, MaxBECount, false,
6973                        {&EL0.Predicates, &EL1.Predicates});
6974     }
6975   }
6976 
6977   // With an icmp, it may be feasible to compute an exact backedge-taken count.
6978   // Proceed to the next level to examine the icmp.
6979   if (ICmpInst *ExitCondICmp = dyn_cast<ICmpInst>(ExitCond)) {
6980     ExitLimit EL =
6981         computeExitLimitFromICmp(L, ExitCondICmp, TBB, FBB, ControlsExit);
6982     if (EL.hasFullInfo() || !AllowPredicates)
6983       return EL;
6984 
6985     // Try again, but use SCEV predicates this time.
6986     return computeExitLimitFromICmp(L, ExitCondICmp, TBB, FBB, ControlsExit,
6987                                     /*AllowPredicates=*/true);
6988   }
6989 
6990   // Check for a constant condition. These are normally stripped out by
6991   // SimplifyCFG, but ScalarEvolution may be used by a pass which wishes to
6992   // preserve the CFG and is temporarily leaving constant conditions
6993   // in place.
6994   if (ConstantInt *CI = dyn_cast<ConstantInt>(ExitCond)) {
6995     if (L->contains(FBB) == !CI->getZExtValue())
6996       // The backedge is always taken.
6997       return getCouldNotCompute();
6998     else
6999       // The backedge is never taken.
7000       return getZero(CI->getType());
7001   }
7002 
7003   // If it's not an integer or pointer comparison then compute it the hard way.
7004   return computeExitCountExhaustively(L, ExitCond, !L->contains(TBB));
7005 }
7006 
7007 ScalarEvolution::ExitLimit
7008 ScalarEvolution::computeExitLimitFromICmp(const Loop *L,
7009                                           ICmpInst *ExitCond,
7010                                           BasicBlock *TBB,
7011                                           BasicBlock *FBB,
7012                                           bool ControlsExit,
7013                                           bool AllowPredicates) {
7014   // If the condition was exit on true, convert the condition to exit on false
7015   ICmpInst::Predicate Cond;
7016   if (!L->contains(FBB))
7017     Cond = ExitCond->getPredicate();
7018   else
7019     Cond = ExitCond->getInversePredicate();
7020 
7021   // Handle common loops like: for (X = "string"; *X; ++X)
7022   if (LoadInst *LI = dyn_cast<LoadInst>(ExitCond->getOperand(0)))
7023     if (Constant *RHS = dyn_cast<Constant>(ExitCond->getOperand(1))) {
7024       ExitLimit ItCnt =
7025         computeLoadConstantCompareExitLimit(LI, RHS, L, Cond);
7026       if (ItCnt.hasAnyInfo())
7027         return ItCnt;
7028     }
7029 
7030   const SCEV *LHS = getSCEV(ExitCond->getOperand(0));
7031   const SCEV *RHS = getSCEV(ExitCond->getOperand(1));
7032 
7033   // Try to evaluate any dependencies out of the loop.
7034   LHS = getSCEVAtScope(LHS, L);
7035   RHS = getSCEVAtScope(RHS, L);
7036 
7037   // At this point, we would like to compute how many iterations of the
7038   // loop the predicate will return true for these inputs.
7039   if (isLoopInvariant(LHS, L) && !isLoopInvariant(RHS, L)) {
7040     // If there is a loop-invariant, force it into the RHS.
7041     std::swap(LHS, RHS);
7042     Cond = ICmpInst::getSwappedPredicate(Cond);
7043   }
7044 
7045   // Simplify the operands before analyzing them.
7046   (void)SimplifyICmpOperands(Cond, LHS, RHS);
7047 
7048   // If we have a comparison of a chrec against a constant, try to use value
7049   // ranges to answer this query.
7050   if (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(RHS))
7051     if (const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(LHS))
7052       if (AddRec->getLoop() == L) {
7053         // Form the constant range.
7054         ConstantRange CompRange =
7055             ConstantRange::makeExactICmpRegion(Cond, RHSC->getAPInt());
7056 
7057         const SCEV *Ret = AddRec->getNumIterationsInRange(CompRange, *this);
7058         if (!isa<SCEVCouldNotCompute>(Ret)) return Ret;
7059       }
7060 
7061   switch (Cond) {
7062   case ICmpInst::ICMP_NE: {                     // while (X != Y)
7063     // Convert to: while (X-Y != 0)
7064     ExitLimit EL = howFarToZero(getMinusSCEV(LHS, RHS), L, ControlsExit,
7065                                 AllowPredicates);
7066     if (EL.hasAnyInfo()) return EL;
7067     break;
7068   }
7069   case ICmpInst::ICMP_EQ: {                     // while (X == Y)
7070     // Convert to: while (X-Y == 0)
7071     ExitLimit EL = howFarToNonZero(getMinusSCEV(LHS, RHS), L);
7072     if (EL.hasAnyInfo()) return EL;
7073     break;
7074   }
7075   case ICmpInst::ICMP_SLT:
7076   case ICmpInst::ICMP_ULT: {                    // while (X < Y)
7077     bool IsSigned = Cond == ICmpInst::ICMP_SLT;
7078     ExitLimit EL = howManyLessThans(LHS, RHS, L, IsSigned, ControlsExit,
7079                                     AllowPredicates);
7080     if (EL.hasAnyInfo()) return EL;
7081     break;
7082   }
7083   case ICmpInst::ICMP_SGT:
7084   case ICmpInst::ICMP_UGT: {                    // while (X > Y)
7085     bool IsSigned = Cond == ICmpInst::ICMP_SGT;
7086     ExitLimit EL =
7087         howManyGreaterThans(LHS, RHS, L, IsSigned, ControlsExit,
7088                             AllowPredicates);
7089     if (EL.hasAnyInfo()) return EL;
7090     break;
7091   }
7092   default:
7093     break;
7094   }
7095 
7096   auto *ExhaustiveCount =
7097       computeExitCountExhaustively(L, ExitCond, !L->contains(TBB));
7098 
7099   if (!isa<SCEVCouldNotCompute>(ExhaustiveCount))
7100     return ExhaustiveCount;
7101 
7102   return computeShiftCompareExitLimit(ExitCond->getOperand(0),
7103                                       ExitCond->getOperand(1), L, Cond);
7104 }
7105 
7106 ScalarEvolution::ExitLimit
7107 ScalarEvolution::computeExitLimitFromSingleExitSwitch(const Loop *L,
7108                                                       SwitchInst *Switch,
7109                                                       BasicBlock *ExitingBlock,
7110                                                       bool ControlsExit) {
7111   assert(!L->contains(ExitingBlock) && "Not an exiting block!");
7112 
7113   // Give up if the exit is the default dest of a switch.
7114   if (Switch->getDefaultDest() == ExitingBlock)
7115     return getCouldNotCompute();
7116 
7117   assert(L->contains(Switch->getDefaultDest()) &&
7118          "Default case must not exit the loop!");
7119   const SCEV *LHS = getSCEVAtScope(Switch->getCondition(), L);
7120   const SCEV *RHS = getConstant(Switch->findCaseDest(ExitingBlock));
7121 
7122   // while (X != Y) --> while (X-Y != 0)
7123   ExitLimit EL = howFarToZero(getMinusSCEV(LHS, RHS), L, ControlsExit);
7124   if (EL.hasAnyInfo())
7125     return EL;
7126 
7127   return getCouldNotCompute();
7128 }
7129 
7130 static ConstantInt *
7131 EvaluateConstantChrecAtConstant(const SCEVAddRecExpr *AddRec, ConstantInt *C,
7132                                 ScalarEvolution &SE) {
7133   const SCEV *InVal = SE.getConstant(C);
7134   const SCEV *Val = AddRec->evaluateAtIteration(InVal, SE);
7135   assert(isa<SCEVConstant>(Val) &&
7136          "Evaluation of SCEV at constant didn't fold correctly?");
7137   return cast<SCEVConstant>(Val)->getValue();
7138 }
7139 
7140 /// Given an exit condition of 'icmp op load X, cst', try to see if we can
7141 /// compute the backedge execution count.
7142 ScalarEvolution::ExitLimit
7143 ScalarEvolution::computeLoadConstantCompareExitLimit(
7144   LoadInst *LI,
7145   Constant *RHS,
7146   const Loop *L,
7147   ICmpInst::Predicate predicate) {
7148   if (LI->isVolatile()) return getCouldNotCompute();
7149 
7150   // Check to see if the loaded pointer is a getelementptr of a global.
7151   // TODO: Use SCEV instead of manually grubbing with GEPs.
7152   GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(LI->getOperand(0));
7153   if (!GEP) return getCouldNotCompute();
7154 
7155   // Make sure that it is really a constant global we are gepping, with an
7156   // initializer, and make sure the first IDX is really 0.
7157   GlobalVariable *GV = dyn_cast<GlobalVariable>(GEP->getOperand(0));
7158   if (!GV || !GV->isConstant() || !GV->hasDefinitiveInitializer() ||
7159       GEP->getNumOperands() < 3 || !isa<Constant>(GEP->getOperand(1)) ||
7160       !cast<Constant>(GEP->getOperand(1))->isNullValue())
7161     return getCouldNotCompute();
7162 
7163   // Okay, we allow one non-constant index into the GEP instruction.
7164   Value *VarIdx = nullptr;
7165   std::vector<Constant*> Indexes;
7166   unsigned VarIdxNum = 0;
7167   for (unsigned i = 2, e = GEP->getNumOperands(); i != e; ++i)
7168     if (ConstantInt *CI = dyn_cast<ConstantInt>(GEP->getOperand(i))) {
7169       Indexes.push_back(CI);
7170     } else if (!isa<ConstantInt>(GEP->getOperand(i))) {
7171       if (VarIdx) return getCouldNotCompute();  // Multiple non-constant idx's.
7172       VarIdx = GEP->getOperand(i);
7173       VarIdxNum = i-2;
7174       Indexes.push_back(nullptr);
7175     }
7176 
7177   // Loop-invariant loads may be a byproduct of loop optimization. Skip them.
7178   if (!VarIdx)
7179     return getCouldNotCompute();
7180 
7181   // Okay, we know we have a (load (gep GV, 0, X)) comparison with a constant.
7182   // Check to see if X is a loop variant variable value now.
7183   const SCEV *Idx = getSCEV(VarIdx);
7184   Idx = getSCEVAtScope(Idx, L);
7185 
7186   // We can only recognize very limited forms of loop index expressions, in
7187   // particular, only affine AddRec's like {C1,+,C2}.
7188   const SCEVAddRecExpr *IdxExpr = dyn_cast<SCEVAddRecExpr>(Idx);
7189   if (!IdxExpr || !IdxExpr->isAffine() || isLoopInvariant(IdxExpr, L) ||
7190       !isa<SCEVConstant>(IdxExpr->getOperand(0)) ||
7191       !isa<SCEVConstant>(IdxExpr->getOperand(1)))
7192     return getCouldNotCompute();
7193 
7194   unsigned MaxSteps = MaxBruteForceIterations;
7195   for (unsigned IterationNum = 0; IterationNum != MaxSteps; ++IterationNum) {
7196     ConstantInt *ItCst = ConstantInt::get(
7197                            cast<IntegerType>(IdxExpr->getType()), IterationNum);
7198     ConstantInt *Val = EvaluateConstantChrecAtConstant(IdxExpr, ItCst, *this);
7199 
7200     // Form the GEP offset.
7201     Indexes[VarIdxNum] = Val;
7202 
7203     Constant *Result = ConstantFoldLoadThroughGEPIndices(GV->getInitializer(),
7204                                                          Indexes);
7205     if (!Result) break;  // Cannot compute!
7206 
7207     // Evaluate the condition for this iteration.
7208     Result = ConstantExpr::getICmp(predicate, Result, RHS);
7209     if (!isa<ConstantInt>(Result)) break;  // Couldn't decide for sure
7210     if (cast<ConstantInt>(Result)->getValue().isMinValue()) {
7211       ++NumArrayLenItCounts;
7212       return getConstant(ItCst);   // Found terminating iteration!
7213     }
7214   }
7215   return getCouldNotCompute();
7216 }
7217 
7218 ScalarEvolution::ExitLimit ScalarEvolution::computeShiftCompareExitLimit(
7219     Value *LHS, Value *RHSV, const Loop *L, ICmpInst::Predicate Pred) {
7220   ConstantInt *RHS = dyn_cast<ConstantInt>(RHSV);
7221   if (!RHS)
7222     return getCouldNotCompute();
7223 
7224   const BasicBlock *Latch = L->getLoopLatch();
7225   if (!Latch)
7226     return getCouldNotCompute();
7227 
7228   const BasicBlock *Predecessor = L->getLoopPredecessor();
7229   if (!Predecessor)
7230     return getCouldNotCompute();
7231 
7232   // Return true if V is of the form "LHS `shift_op` <positive constant>".
7233   // Return LHS in OutLHS and shift_opt in OutOpCode.
7234   auto MatchPositiveShift =
7235       [](Value *V, Value *&OutLHS, Instruction::BinaryOps &OutOpCode) {
7236 
7237     using namespace PatternMatch;
7238 
7239     ConstantInt *ShiftAmt;
7240     if (match(V, m_LShr(m_Value(OutLHS), m_ConstantInt(ShiftAmt))))
7241       OutOpCode = Instruction::LShr;
7242     else if (match(V, m_AShr(m_Value(OutLHS), m_ConstantInt(ShiftAmt))))
7243       OutOpCode = Instruction::AShr;
7244     else if (match(V, m_Shl(m_Value(OutLHS), m_ConstantInt(ShiftAmt))))
7245       OutOpCode = Instruction::Shl;
7246     else
7247       return false;
7248 
7249     return ShiftAmt->getValue().isStrictlyPositive();
7250   };
7251 
7252   // Recognize a "shift recurrence" either of the form %iv or of %iv.shifted in
7253   //
7254   // loop:
7255   //   %iv = phi i32 [ %iv.shifted, %loop ], [ %val, %preheader ]
7256   //   %iv.shifted = lshr i32 %iv, <positive constant>
7257   //
7258   // Return true on a successful match.  Return the corresponding PHI node (%iv
7259   // above) in PNOut and the opcode of the shift operation in OpCodeOut.
7260   auto MatchShiftRecurrence =
7261       [&](Value *V, PHINode *&PNOut, Instruction::BinaryOps &OpCodeOut) {
7262     Optional<Instruction::BinaryOps> PostShiftOpCode;
7263 
7264     {
7265       Instruction::BinaryOps OpC;
7266       Value *V;
7267 
7268       // If we encounter a shift instruction, "peel off" the shift operation,
7269       // and remember that we did so.  Later when we inspect %iv's backedge
7270       // value, we will make sure that the backedge value uses the same
7271       // operation.
7272       //
7273       // Note: the peeled shift operation does not have to be the same
7274       // instruction as the one feeding into the PHI's backedge value.  We only
7275       // really care about it being the same *kind* of shift instruction --
7276       // that's all that is required for our later inferences to hold.
7277       if (MatchPositiveShift(LHS, V, OpC)) {
7278         PostShiftOpCode = OpC;
7279         LHS = V;
7280       }
7281     }
7282 
7283     PNOut = dyn_cast<PHINode>(LHS);
7284     if (!PNOut || PNOut->getParent() != L->getHeader())
7285       return false;
7286 
7287     Value *BEValue = PNOut->getIncomingValueForBlock(Latch);
7288     Value *OpLHS;
7289 
7290     return
7291         // The backedge value for the PHI node must be a shift by a positive
7292         // amount
7293         MatchPositiveShift(BEValue, OpLHS, OpCodeOut) &&
7294 
7295         // of the PHI node itself
7296         OpLHS == PNOut &&
7297 
7298         // and the kind of shift should be match the kind of shift we peeled
7299         // off, if any.
7300         (!PostShiftOpCode.hasValue() || *PostShiftOpCode == OpCodeOut);
7301   };
7302 
7303   PHINode *PN;
7304   Instruction::BinaryOps OpCode;
7305   if (!MatchShiftRecurrence(LHS, PN, OpCode))
7306     return getCouldNotCompute();
7307 
7308   const DataLayout &DL = getDataLayout();
7309 
7310   // The key rationale for this optimization is that for some kinds of shift
7311   // recurrences, the value of the recurrence "stabilizes" to either 0 or -1
7312   // within a finite number of iterations.  If the condition guarding the
7313   // backedge (in the sense that the backedge is taken if the condition is true)
7314   // is false for the value the shift recurrence stabilizes to, then we know
7315   // that the backedge is taken only a finite number of times.
7316 
7317   ConstantInt *StableValue = nullptr;
7318   switch (OpCode) {
7319   default:
7320     llvm_unreachable("Impossible case!");
7321 
7322   case Instruction::AShr: {
7323     // {K,ashr,<positive-constant>} stabilizes to signum(K) in at most
7324     // bitwidth(K) iterations.
7325     Value *FirstValue = PN->getIncomingValueForBlock(Predecessor);
7326     KnownBits Known = computeKnownBits(FirstValue, DL, 0, nullptr,
7327                                        Predecessor->getTerminator(), &DT);
7328     auto *Ty = cast<IntegerType>(RHS->getType());
7329     if (Known.isNonNegative())
7330       StableValue = ConstantInt::get(Ty, 0);
7331     else if (Known.isNegative())
7332       StableValue = ConstantInt::get(Ty, -1, true);
7333     else
7334       return getCouldNotCompute();
7335 
7336     break;
7337   }
7338   case Instruction::LShr:
7339   case Instruction::Shl:
7340     // Both {K,lshr,<positive-constant>} and {K,shl,<positive-constant>}
7341     // stabilize to 0 in at most bitwidth(K) iterations.
7342     StableValue = ConstantInt::get(cast<IntegerType>(RHS->getType()), 0);
7343     break;
7344   }
7345 
7346   auto *Result =
7347       ConstantFoldCompareInstOperands(Pred, StableValue, RHS, DL, &TLI);
7348   assert(Result->getType()->isIntegerTy(1) &&
7349          "Otherwise cannot be an operand to a branch instruction");
7350 
7351   if (Result->isZeroValue()) {
7352     unsigned BitWidth = getTypeSizeInBits(RHS->getType());
7353     const SCEV *UpperBound =
7354         getConstant(getEffectiveSCEVType(RHS->getType()), BitWidth);
7355     return ExitLimit(getCouldNotCompute(), UpperBound, false);
7356   }
7357 
7358   return getCouldNotCompute();
7359 }
7360 
7361 /// Return true if we can constant fold an instruction of the specified type,
7362 /// assuming that all operands were constants.
7363 static bool CanConstantFold(const Instruction *I) {
7364   if (isa<BinaryOperator>(I) || isa<CmpInst>(I) ||
7365       isa<SelectInst>(I) || isa<CastInst>(I) || isa<GetElementPtrInst>(I) ||
7366       isa<LoadInst>(I))
7367     return true;
7368 
7369   if (const CallInst *CI = dyn_cast<CallInst>(I))
7370     if (const Function *F = CI->getCalledFunction())
7371       return canConstantFoldCallTo(CI, F);
7372   return false;
7373 }
7374 
7375 /// Determine whether this instruction can constant evolve within this loop
7376 /// assuming its operands can all constant evolve.
7377 static bool canConstantEvolve(Instruction *I, const Loop *L) {
7378   // An instruction outside of the loop can't be derived from a loop PHI.
7379   if (!L->contains(I)) return false;
7380 
7381   if (isa<PHINode>(I)) {
7382     // We don't currently keep track of the control flow needed to evaluate
7383     // PHIs, so we cannot handle PHIs inside of loops.
7384     return L->getHeader() == I->getParent();
7385   }
7386 
7387   // If we won't be able to constant fold this expression even if the operands
7388   // are constants, bail early.
7389   return CanConstantFold(I);
7390 }
7391 
7392 /// getConstantEvolvingPHIOperands - Implement getConstantEvolvingPHI by
7393 /// recursing through each instruction operand until reaching a loop header phi.
7394 static PHINode *
7395 getConstantEvolvingPHIOperands(Instruction *UseInst, const Loop *L,
7396                                DenseMap<Instruction *, PHINode *> &PHIMap,
7397                                unsigned Depth) {
7398   if (Depth > MaxConstantEvolvingDepth)
7399     return nullptr;
7400 
7401   // Otherwise, we can evaluate this instruction if all of its operands are
7402   // constant or derived from a PHI node themselves.
7403   PHINode *PHI = nullptr;
7404   for (Value *Op : UseInst->operands()) {
7405     if (isa<Constant>(Op)) continue;
7406 
7407     Instruction *OpInst = dyn_cast<Instruction>(Op);
7408     if (!OpInst || !canConstantEvolve(OpInst, L)) return nullptr;
7409 
7410     PHINode *P = dyn_cast<PHINode>(OpInst);
7411     if (!P)
7412       // If this operand is already visited, reuse the prior result.
7413       // We may have P != PHI if this is the deepest point at which the
7414       // inconsistent paths meet.
7415       P = PHIMap.lookup(OpInst);
7416     if (!P) {
7417       // Recurse and memoize the results, whether a phi is found or not.
7418       // This recursive call invalidates pointers into PHIMap.
7419       P = getConstantEvolvingPHIOperands(OpInst, L, PHIMap, Depth + 1);
7420       PHIMap[OpInst] = P;
7421     }
7422     if (!P)
7423       return nullptr;  // Not evolving from PHI
7424     if (PHI && PHI != P)
7425       return nullptr;  // Evolving from multiple different PHIs.
7426     PHI = P;
7427   }
7428   // This is a expression evolving from a constant PHI!
7429   return PHI;
7430 }
7431 
7432 /// getConstantEvolvingPHI - Given an LLVM value and a loop, return a PHI node
7433 /// in the loop that V is derived from.  We allow arbitrary operations along the
7434 /// way, but the operands of an operation must either be constants or a value
7435 /// derived from a constant PHI.  If this expression does not fit with these
7436 /// constraints, return null.
7437 static PHINode *getConstantEvolvingPHI(Value *V, const Loop *L) {
7438   Instruction *I = dyn_cast<Instruction>(V);
7439   if (!I || !canConstantEvolve(I, L)) return nullptr;
7440 
7441   if (PHINode *PN = dyn_cast<PHINode>(I))
7442     return PN;
7443 
7444   // Record non-constant instructions contained by the loop.
7445   DenseMap<Instruction *, PHINode *> PHIMap;
7446   return getConstantEvolvingPHIOperands(I, L, PHIMap, 0);
7447 }
7448 
7449 /// EvaluateExpression - Given an expression that passes the
7450 /// getConstantEvolvingPHI predicate, evaluate its value assuming the PHI node
7451 /// in the loop has the value PHIVal.  If we can't fold this expression for some
7452 /// reason, return null.
7453 static Constant *EvaluateExpression(Value *V, const Loop *L,
7454                                     DenseMap<Instruction *, Constant *> &Vals,
7455                                     const DataLayout &DL,
7456                                     const TargetLibraryInfo *TLI) {
7457   // Convenient constant check, but redundant for recursive calls.
7458   if (Constant *C = dyn_cast<Constant>(V)) return C;
7459   Instruction *I = dyn_cast<Instruction>(V);
7460   if (!I) return nullptr;
7461 
7462   if (Constant *C = Vals.lookup(I)) return C;
7463 
7464   // An instruction inside the loop depends on a value outside the loop that we
7465   // weren't given a mapping for, or a value such as a call inside the loop.
7466   if (!canConstantEvolve(I, L)) return nullptr;
7467 
7468   // An unmapped PHI can be due to a branch or another loop inside this loop,
7469   // or due to this not being the initial iteration through a loop where we
7470   // couldn't compute the evolution of this particular PHI last time.
7471   if (isa<PHINode>(I)) return nullptr;
7472 
7473   std::vector<Constant*> Operands(I->getNumOperands());
7474 
7475   for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
7476     Instruction *Operand = dyn_cast<Instruction>(I->getOperand(i));
7477     if (!Operand) {
7478       Operands[i] = dyn_cast<Constant>(I->getOperand(i));
7479       if (!Operands[i]) return nullptr;
7480       continue;
7481     }
7482     Constant *C = EvaluateExpression(Operand, L, Vals, DL, TLI);
7483     Vals[Operand] = C;
7484     if (!C) return nullptr;
7485     Operands[i] = C;
7486   }
7487 
7488   if (CmpInst *CI = dyn_cast<CmpInst>(I))
7489     return ConstantFoldCompareInstOperands(CI->getPredicate(), Operands[0],
7490                                            Operands[1], DL, TLI);
7491   if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
7492     if (!LI->isVolatile())
7493       return ConstantFoldLoadFromConstPtr(Operands[0], LI->getType(), DL);
7494   }
7495   return ConstantFoldInstOperands(I, Operands, DL, TLI);
7496 }
7497 
7498 
7499 // If every incoming value to PN except the one for BB is a specific Constant,
7500 // return that, else return nullptr.
7501 static Constant *getOtherIncomingValue(PHINode *PN, BasicBlock *BB) {
7502   Constant *IncomingVal = nullptr;
7503 
7504   for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
7505     if (PN->getIncomingBlock(i) == BB)
7506       continue;
7507 
7508     auto *CurrentVal = dyn_cast<Constant>(PN->getIncomingValue(i));
7509     if (!CurrentVal)
7510       return nullptr;
7511 
7512     if (IncomingVal != CurrentVal) {
7513       if (IncomingVal)
7514         return nullptr;
7515       IncomingVal = CurrentVal;
7516     }
7517   }
7518 
7519   return IncomingVal;
7520 }
7521 
7522 /// getConstantEvolutionLoopExitValue - If we know that the specified Phi is
7523 /// in the header of its containing loop, we know the loop executes a
7524 /// constant number of times, and the PHI node is just a recurrence
7525 /// involving constants, fold it.
7526 Constant *
7527 ScalarEvolution::getConstantEvolutionLoopExitValue(PHINode *PN,
7528                                                    const APInt &BEs,
7529                                                    const Loop *L) {
7530   auto I = ConstantEvolutionLoopExitValue.find(PN);
7531   if (I != ConstantEvolutionLoopExitValue.end())
7532     return I->second;
7533 
7534   if (BEs.ugt(MaxBruteForceIterations))
7535     return ConstantEvolutionLoopExitValue[PN] = nullptr;  // Not going to evaluate it.
7536 
7537   Constant *&RetVal = ConstantEvolutionLoopExitValue[PN];
7538 
7539   DenseMap<Instruction *, Constant *> CurrentIterVals;
7540   BasicBlock *Header = L->getHeader();
7541   assert(PN->getParent() == Header && "Can't evaluate PHI not in loop header!");
7542 
7543   BasicBlock *Latch = L->getLoopLatch();
7544   if (!Latch)
7545     return nullptr;
7546 
7547   for (auto &I : *Header) {
7548     PHINode *PHI = dyn_cast<PHINode>(&I);
7549     if (!PHI) break;
7550     auto *StartCST = getOtherIncomingValue(PHI, Latch);
7551     if (!StartCST) continue;
7552     CurrentIterVals[PHI] = StartCST;
7553   }
7554   if (!CurrentIterVals.count(PN))
7555     return RetVal = nullptr;
7556 
7557   Value *BEValue = PN->getIncomingValueForBlock(Latch);
7558 
7559   // Execute the loop symbolically to determine the exit value.
7560   assert(BEs.getActiveBits() < CHAR_BIT * sizeof(unsigned) &&
7561          "BEs is <= MaxBruteForceIterations which is an 'unsigned'!");
7562 
7563   unsigned NumIterations = BEs.getZExtValue(); // must be in range
7564   unsigned IterationNum = 0;
7565   const DataLayout &DL = getDataLayout();
7566   for (; ; ++IterationNum) {
7567     if (IterationNum == NumIterations)
7568       return RetVal = CurrentIterVals[PN];  // Got exit value!
7569 
7570     // Compute the value of the PHIs for the next iteration.
7571     // EvaluateExpression adds non-phi values to the CurrentIterVals map.
7572     DenseMap<Instruction *, Constant *> NextIterVals;
7573     Constant *NextPHI =
7574         EvaluateExpression(BEValue, L, CurrentIterVals, DL, &TLI);
7575     if (!NextPHI)
7576       return nullptr;        // Couldn't evaluate!
7577     NextIterVals[PN] = NextPHI;
7578 
7579     bool StoppedEvolving = NextPHI == CurrentIterVals[PN];
7580 
7581     // Also evaluate the other PHI nodes.  However, we don't get to stop if we
7582     // cease to be able to evaluate one of them or if they stop evolving,
7583     // because that doesn't necessarily prevent us from computing PN.
7584     SmallVector<std::pair<PHINode *, Constant *>, 8> PHIsToCompute;
7585     for (const auto &I : CurrentIterVals) {
7586       PHINode *PHI = dyn_cast<PHINode>(I.first);
7587       if (!PHI || PHI == PN || PHI->getParent() != Header) continue;
7588       PHIsToCompute.emplace_back(PHI, I.second);
7589     }
7590     // We use two distinct loops because EvaluateExpression may invalidate any
7591     // iterators into CurrentIterVals.
7592     for (const auto &I : PHIsToCompute) {
7593       PHINode *PHI = I.first;
7594       Constant *&NextPHI = NextIterVals[PHI];
7595       if (!NextPHI) {   // Not already computed.
7596         Value *BEValue = PHI->getIncomingValueForBlock(Latch);
7597         NextPHI = EvaluateExpression(BEValue, L, CurrentIterVals, DL, &TLI);
7598       }
7599       if (NextPHI != I.second)
7600         StoppedEvolving = false;
7601     }
7602 
7603     // If all entries in CurrentIterVals == NextIterVals then we can stop
7604     // iterating, the loop can't continue to change.
7605     if (StoppedEvolving)
7606       return RetVal = CurrentIterVals[PN];
7607 
7608     CurrentIterVals.swap(NextIterVals);
7609   }
7610 }
7611 
7612 const SCEV *ScalarEvolution::computeExitCountExhaustively(const Loop *L,
7613                                                           Value *Cond,
7614                                                           bool ExitWhen) {
7615   PHINode *PN = getConstantEvolvingPHI(Cond, L);
7616   if (!PN) return getCouldNotCompute();
7617 
7618   // If the loop is canonicalized, the PHI will have exactly two entries.
7619   // That's the only form we support here.
7620   if (PN->getNumIncomingValues() != 2) return getCouldNotCompute();
7621 
7622   DenseMap<Instruction *, Constant *> CurrentIterVals;
7623   BasicBlock *Header = L->getHeader();
7624   assert(PN->getParent() == Header && "Can't evaluate PHI not in loop header!");
7625 
7626   BasicBlock *Latch = L->getLoopLatch();
7627   assert(Latch && "Should follow from NumIncomingValues == 2!");
7628 
7629   for (auto &I : *Header) {
7630     PHINode *PHI = dyn_cast<PHINode>(&I);
7631     if (!PHI)
7632       break;
7633     auto *StartCST = getOtherIncomingValue(PHI, Latch);
7634     if (!StartCST) continue;
7635     CurrentIterVals[PHI] = StartCST;
7636   }
7637   if (!CurrentIterVals.count(PN))
7638     return getCouldNotCompute();
7639 
7640   // Okay, we find a PHI node that defines the trip count of this loop.  Execute
7641   // the loop symbolically to determine when the condition gets a value of
7642   // "ExitWhen".
7643   unsigned MaxIterations = MaxBruteForceIterations;   // Limit analysis.
7644   const DataLayout &DL = getDataLayout();
7645   for (unsigned IterationNum = 0; IterationNum != MaxIterations;++IterationNum){
7646     auto *CondVal = dyn_cast_or_null<ConstantInt>(
7647         EvaluateExpression(Cond, L, CurrentIterVals, DL, &TLI));
7648 
7649     // Couldn't symbolically evaluate.
7650     if (!CondVal) return getCouldNotCompute();
7651 
7652     if (CondVal->getValue() == uint64_t(ExitWhen)) {
7653       ++NumBruteForceTripCountsComputed;
7654       return getConstant(Type::getInt32Ty(getContext()), IterationNum);
7655     }
7656 
7657     // Update all the PHI nodes for the next iteration.
7658     DenseMap<Instruction *, Constant *> NextIterVals;
7659 
7660     // Create a list of which PHIs we need to compute. We want to do this before
7661     // calling EvaluateExpression on them because that may invalidate iterators
7662     // into CurrentIterVals.
7663     SmallVector<PHINode *, 8> PHIsToCompute;
7664     for (const auto &I : CurrentIterVals) {
7665       PHINode *PHI = dyn_cast<PHINode>(I.first);
7666       if (!PHI || PHI->getParent() != Header) continue;
7667       PHIsToCompute.push_back(PHI);
7668     }
7669     for (PHINode *PHI : PHIsToCompute) {
7670       Constant *&NextPHI = NextIterVals[PHI];
7671       if (NextPHI) continue;    // Already computed!
7672 
7673       Value *BEValue = PHI->getIncomingValueForBlock(Latch);
7674       NextPHI = EvaluateExpression(BEValue, L, CurrentIterVals, DL, &TLI);
7675     }
7676     CurrentIterVals.swap(NextIterVals);
7677   }
7678 
7679   // Too many iterations were needed to evaluate.
7680   return getCouldNotCompute();
7681 }
7682 
7683 const SCEV *ScalarEvolution::getSCEVAtScope(const SCEV *V, const Loop *L) {
7684   SmallVector<std::pair<const Loop *, const SCEV *>, 2> &Values =
7685       ValuesAtScopes[V];
7686   // Check to see if we've folded this expression at this loop before.
7687   for (auto &LS : Values)
7688     if (LS.first == L)
7689       return LS.second ? LS.second : V;
7690 
7691   Values.emplace_back(L, nullptr);
7692 
7693   // Otherwise compute it.
7694   const SCEV *C = computeSCEVAtScope(V, L);
7695   for (auto &LS : reverse(ValuesAtScopes[V]))
7696     if (LS.first == L) {
7697       LS.second = C;
7698       break;
7699     }
7700   return C;
7701 }
7702 
7703 /// This builds up a Constant using the ConstantExpr interface.  That way, we
7704 /// will return Constants for objects which aren't represented by a
7705 /// SCEVConstant, because SCEVConstant is restricted to ConstantInt.
7706 /// Returns NULL if the SCEV isn't representable as a Constant.
7707 static Constant *BuildConstantFromSCEV(const SCEV *V) {
7708   switch (static_cast<SCEVTypes>(V->getSCEVType())) {
7709     case scCouldNotCompute:
7710     case scAddRecExpr:
7711       break;
7712     case scConstant:
7713       return cast<SCEVConstant>(V)->getValue();
7714     case scUnknown:
7715       return dyn_cast<Constant>(cast<SCEVUnknown>(V)->getValue());
7716     case scSignExtend: {
7717       const SCEVSignExtendExpr *SS = cast<SCEVSignExtendExpr>(V);
7718       if (Constant *CastOp = BuildConstantFromSCEV(SS->getOperand()))
7719         return ConstantExpr::getSExt(CastOp, SS->getType());
7720       break;
7721     }
7722     case scZeroExtend: {
7723       const SCEVZeroExtendExpr *SZ = cast<SCEVZeroExtendExpr>(V);
7724       if (Constant *CastOp = BuildConstantFromSCEV(SZ->getOperand()))
7725         return ConstantExpr::getZExt(CastOp, SZ->getType());
7726       break;
7727     }
7728     case scTruncate: {
7729       const SCEVTruncateExpr *ST = cast<SCEVTruncateExpr>(V);
7730       if (Constant *CastOp = BuildConstantFromSCEV(ST->getOperand()))
7731         return ConstantExpr::getTrunc(CastOp, ST->getType());
7732       break;
7733     }
7734     case scAddExpr: {
7735       const SCEVAddExpr *SA = cast<SCEVAddExpr>(V);
7736       if (Constant *C = BuildConstantFromSCEV(SA->getOperand(0))) {
7737         if (PointerType *PTy = dyn_cast<PointerType>(C->getType())) {
7738           unsigned AS = PTy->getAddressSpace();
7739           Type *DestPtrTy = Type::getInt8PtrTy(C->getContext(), AS);
7740           C = ConstantExpr::getBitCast(C, DestPtrTy);
7741         }
7742         for (unsigned i = 1, e = SA->getNumOperands(); i != e; ++i) {
7743           Constant *C2 = BuildConstantFromSCEV(SA->getOperand(i));
7744           if (!C2) return nullptr;
7745 
7746           // First pointer!
7747           if (!C->getType()->isPointerTy() && C2->getType()->isPointerTy()) {
7748             unsigned AS = C2->getType()->getPointerAddressSpace();
7749             std::swap(C, C2);
7750             Type *DestPtrTy = Type::getInt8PtrTy(C->getContext(), AS);
7751             // The offsets have been converted to bytes.  We can add bytes to an
7752             // i8* by GEP with the byte count in the first index.
7753             C = ConstantExpr::getBitCast(C, DestPtrTy);
7754           }
7755 
7756           // Don't bother trying to sum two pointers. We probably can't
7757           // statically compute a load that results from it anyway.
7758           if (C2->getType()->isPointerTy())
7759             return nullptr;
7760 
7761           if (PointerType *PTy = dyn_cast<PointerType>(C->getType())) {
7762             if (PTy->getElementType()->isStructTy())
7763               C2 = ConstantExpr::getIntegerCast(
7764                   C2, Type::getInt32Ty(C->getContext()), true);
7765             C = ConstantExpr::getGetElementPtr(PTy->getElementType(), C, C2);
7766           } else
7767             C = ConstantExpr::getAdd(C, C2);
7768         }
7769         return C;
7770       }
7771       break;
7772     }
7773     case scMulExpr: {
7774       const SCEVMulExpr *SM = cast<SCEVMulExpr>(V);
7775       if (Constant *C = BuildConstantFromSCEV(SM->getOperand(0))) {
7776         // Don't bother with pointers at all.
7777         if (C->getType()->isPointerTy()) return nullptr;
7778         for (unsigned i = 1, e = SM->getNumOperands(); i != e; ++i) {
7779           Constant *C2 = BuildConstantFromSCEV(SM->getOperand(i));
7780           if (!C2 || C2->getType()->isPointerTy()) return nullptr;
7781           C = ConstantExpr::getMul(C, C2);
7782         }
7783         return C;
7784       }
7785       break;
7786     }
7787     case scUDivExpr: {
7788       const SCEVUDivExpr *SU = cast<SCEVUDivExpr>(V);
7789       if (Constant *LHS = BuildConstantFromSCEV(SU->getLHS()))
7790         if (Constant *RHS = BuildConstantFromSCEV(SU->getRHS()))
7791           if (LHS->getType() == RHS->getType())
7792             return ConstantExpr::getUDiv(LHS, RHS);
7793       break;
7794     }
7795     case scSMaxExpr:
7796     case scUMaxExpr:
7797       break; // TODO: smax, umax.
7798   }
7799   return nullptr;
7800 }
7801 
7802 const SCEV *ScalarEvolution::computeSCEVAtScope(const SCEV *V, const Loop *L) {
7803   if (isa<SCEVConstant>(V)) return V;
7804 
7805   // If this instruction is evolved from a constant-evolving PHI, compute the
7806   // exit value from the loop without using SCEVs.
7807   if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(V)) {
7808     if (Instruction *I = dyn_cast<Instruction>(SU->getValue())) {
7809       const Loop *LI = this->LI[I->getParent()];
7810       if (LI && LI->getParentLoop() == L)  // Looking for loop exit value.
7811         if (PHINode *PN = dyn_cast<PHINode>(I))
7812           if (PN->getParent() == LI->getHeader()) {
7813             // Okay, there is no closed form solution for the PHI node.  Check
7814             // to see if the loop that contains it has a known backedge-taken
7815             // count.  If so, we may be able to force computation of the exit
7816             // value.
7817             const SCEV *BackedgeTakenCount = getBackedgeTakenCount(LI);
7818             if (const SCEVConstant *BTCC =
7819                   dyn_cast<SCEVConstant>(BackedgeTakenCount)) {
7820 
7821               // This trivial case can show up in some degenerate cases where
7822               // the incoming IR has not yet been fully simplified.
7823               if (BTCC->getValue()->isZero()) {
7824                 Value *InitValue = nullptr;
7825                 bool MultipleInitValues = false;
7826                 for (unsigned i = 0; i < PN->getNumIncomingValues(); i++) {
7827                   if (!LI->contains(PN->getIncomingBlock(i))) {
7828                     if (!InitValue)
7829                       InitValue = PN->getIncomingValue(i);
7830                     else if (InitValue != PN->getIncomingValue(i)) {
7831                       MultipleInitValues = true;
7832                       break;
7833                     }
7834                   }
7835                   if (!MultipleInitValues && InitValue)
7836                     return getSCEV(InitValue);
7837                 }
7838               }
7839               // Okay, we know how many times the containing loop executes.  If
7840               // this is a constant evolving PHI node, get the final value at
7841               // the specified iteration number.
7842               Constant *RV =
7843                   getConstantEvolutionLoopExitValue(PN, BTCC->getAPInt(), LI);
7844               if (RV) return getSCEV(RV);
7845             }
7846           }
7847 
7848       // Okay, this is an expression that we cannot symbolically evaluate
7849       // into a SCEV.  Check to see if it's possible to symbolically evaluate
7850       // the arguments into constants, and if so, try to constant propagate the
7851       // result.  This is particularly useful for computing loop exit values.
7852       if (CanConstantFold(I)) {
7853         SmallVector<Constant *, 4> Operands;
7854         bool MadeImprovement = false;
7855         for (Value *Op : I->operands()) {
7856           if (Constant *C = dyn_cast<Constant>(Op)) {
7857             Operands.push_back(C);
7858             continue;
7859           }
7860 
7861           // If any of the operands is non-constant and if they are
7862           // non-integer and non-pointer, don't even try to analyze them
7863           // with scev techniques.
7864           if (!isSCEVable(Op->getType()))
7865             return V;
7866 
7867           const SCEV *OrigV = getSCEV(Op);
7868           const SCEV *OpV = getSCEVAtScope(OrigV, L);
7869           MadeImprovement |= OrigV != OpV;
7870 
7871           Constant *C = BuildConstantFromSCEV(OpV);
7872           if (!C) return V;
7873           if (C->getType() != Op->getType())
7874             C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
7875                                                               Op->getType(),
7876                                                               false),
7877                                       C, Op->getType());
7878           Operands.push_back(C);
7879         }
7880 
7881         // Check to see if getSCEVAtScope actually made an improvement.
7882         if (MadeImprovement) {
7883           Constant *C = nullptr;
7884           const DataLayout &DL = getDataLayout();
7885           if (const CmpInst *CI = dyn_cast<CmpInst>(I))
7886             C = ConstantFoldCompareInstOperands(CI->getPredicate(), Operands[0],
7887                                                 Operands[1], DL, &TLI);
7888           else if (const LoadInst *LI = dyn_cast<LoadInst>(I)) {
7889             if (!LI->isVolatile())
7890               C = ConstantFoldLoadFromConstPtr(Operands[0], LI->getType(), DL);
7891           } else
7892             C = ConstantFoldInstOperands(I, Operands, DL, &TLI);
7893           if (!C) return V;
7894           return getSCEV(C);
7895         }
7896       }
7897     }
7898 
7899     // This is some other type of SCEVUnknown, just return it.
7900     return V;
7901   }
7902 
7903   if (const SCEVCommutativeExpr *Comm = dyn_cast<SCEVCommutativeExpr>(V)) {
7904     // Avoid performing the look-up in the common case where the specified
7905     // expression has no loop-variant portions.
7906     for (unsigned i = 0, e = Comm->getNumOperands(); i != e; ++i) {
7907       const SCEV *OpAtScope = getSCEVAtScope(Comm->getOperand(i), L);
7908       if (OpAtScope != Comm->getOperand(i)) {
7909         // Okay, at least one of these operands is loop variant but might be
7910         // foldable.  Build a new instance of the folded commutative expression.
7911         SmallVector<const SCEV *, 8> NewOps(Comm->op_begin(),
7912                                             Comm->op_begin()+i);
7913         NewOps.push_back(OpAtScope);
7914 
7915         for (++i; i != e; ++i) {
7916           OpAtScope = getSCEVAtScope(Comm->getOperand(i), L);
7917           NewOps.push_back(OpAtScope);
7918         }
7919         if (isa<SCEVAddExpr>(Comm))
7920           return getAddExpr(NewOps);
7921         if (isa<SCEVMulExpr>(Comm))
7922           return getMulExpr(NewOps);
7923         if (isa<SCEVSMaxExpr>(Comm))
7924           return getSMaxExpr(NewOps);
7925         if (isa<SCEVUMaxExpr>(Comm))
7926           return getUMaxExpr(NewOps);
7927         llvm_unreachable("Unknown commutative SCEV type!");
7928       }
7929     }
7930     // If we got here, all operands are loop invariant.
7931     return Comm;
7932   }
7933 
7934   if (const SCEVUDivExpr *Div = dyn_cast<SCEVUDivExpr>(V)) {
7935     const SCEV *LHS = getSCEVAtScope(Div->getLHS(), L);
7936     const SCEV *RHS = getSCEVAtScope(Div->getRHS(), L);
7937     if (LHS == Div->getLHS() && RHS == Div->getRHS())
7938       return Div;   // must be loop invariant
7939     return getUDivExpr(LHS, RHS);
7940   }
7941 
7942   // If this is a loop recurrence for a loop that does not contain L, then we
7943   // are dealing with the final value computed by the loop.
7944   if (const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(V)) {
7945     // First, attempt to evaluate each operand.
7946     // Avoid performing the look-up in the common case where the specified
7947     // expression has no loop-variant portions.
7948     for (unsigned i = 0, e = AddRec->getNumOperands(); i != e; ++i) {
7949       const SCEV *OpAtScope = getSCEVAtScope(AddRec->getOperand(i), L);
7950       if (OpAtScope == AddRec->getOperand(i))
7951         continue;
7952 
7953       // Okay, at least one of these operands is loop variant but might be
7954       // foldable.  Build a new instance of the folded commutative expression.
7955       SmallVector<const SCEV *, 8> NewOps(AddRec->op_begin(),
7956                                           AddRec->op_begin()+i);
7957       NewOps.push_back(OpAtScope);
7958       for (++i; i != e; ++i)
7959         NewOps.push_back(getSCEVAtScope(AddRec->getOperand(i), L));
7960 
7961       const SCEV *FoldedRec =
7962         getAddRecExpr(NewOps, AddRec->getLoop(),
7963                       AddRec->getNoWrapFlags(SCEV::FlagNW));
7964       AddRec = dyn_cast<SCEVAddRecExpr>(FoldedRec);
7965       // The addrec may be folded to a nonrecurrence, for example, if the
7966       // induction variable is multiplied by zero after constant folding. Go
7967       // ahead and return the folded value.
7968       if (!AddRec)
7969         return FoldedRec;
7970       break;
7971     }
7972 
7973     // If the scope is outside the addrec's loop, evaluate it by using the
7974     // loop exit value of the addrec.
7975     if (!AddRec->getLoop()->contains(L)) {
7976       // To evaluate this recurrence, we need to know how many times the AddRec
7977       // loop iterates.  Compute this now.
7978       const SCEV *BackedgeTakenCount = getBackedgeTakenCount(AddRec->getLoop());
7979       if (BackedgeTakenCount == getCouldNotCompute()) return AddRec;
7980 
7981       // Then, evaluate the AddRec.
7982       return AddRec->evaluateAtIteration(BackedgeTakenCount, *this);
7983     }
7984 
7985     return AddRec;
7986   }
7987 
7988   if (const SCEVZeroExtendExpr *Cast = dyn_cast<SCEVZeroExtendExpr>(V)) {
7989     const SCEV *Op = getSCEVAtScope(Cast->getOperand(), L);
7990     if (Op == Cast->getOperand())
7991       return Cast;  // must be loop invariant
7992     return getZeroExtendExpr(Op, Cast->getType());
7993   }
7994 
7995   if (const SCEVSignExtendExpr *Cast = dyn_cast<SCEVSignExtendExpr>(V)) {
7996     const SCEV *Op = getSCEVAtScope(Cast->getOperand(), L);
7997     if (Op == Cast->getOperand())
7998       return Cast;  // must be loop invariant
7999     return getSignExtendExpr(Op, Cast->getType());
8000   }
8001 
8002   if (const SCEVTruncateExpr *Cast = dyn_cast<SCEVTruncateExpr>(V)) {
8003     const SCEV *Op = getSCEVAtScope(Cast->getOperand(), L);
8004     if (Op == Cast->getOperand())
8005       return Cast;  // must be loop invariant
8006     return getTruncateExpr(Op, Cast->getType());
8007   }
8008 
8009   llvm_unreachable("Unknown SCEV type!");
8010 }
8011 
8012 const SCEV *ScalarEvolution::getSCEVAtScope(Value *V, const Loop *L) {
8013   return getSCEVAtScope(getSCEV(V), L);
8014 }
8015 
8016 /// Finds the minimum unsigned root of the following equation:
8017 ///
8018 ///     A * X = B (mod N)
8019 ///
8020 /// where N = 2^BW and BW is the common bit width of A and B. The signedness of
8021 /// A and B isn't important.
8022 ///
8023 /// If the equation does not have a solution, SCEVCouldNotCompute is returned.
8024 static const SCEV *SolveLinEquationWithOverflow(const APInt &A, const SCEV *B,
8025                                                ScalarEvolution &SE) {
8026   uint32_t BW = A.getBitWidth();
8027   assert(BW == SE.getTypeSizeInBits(B->getType()));
8028   assert(A != 0 && "A must be non-zero.");
8029 
8030   // 1. D = gcd(A, N)
8031   //
8032   // The gcd of A and N may have only one prime factor: 2. The number of
8033   // trailing zeros in A is its multiplicity
8034   uint32_t Mult2 = A.countTrailingZeros();
8035   // D = 2^Mult2
8036 
8037   // 2. Check if B is divisible by D.
8038   //
8039   // B is divisible by D if and only if the multiplicity of prime factor 2 for B
8040   // is not less than multiplicity of this prime factor for D.
8041   if (SE.GetMinTrailingZeros(B) < Mult2)
8042     return SE.getCouldNotCompute();
8043 
8044   // 3. Compute I: the multiplicative inverse of (A / D) in arithmetic
8045   // modulo (N / D).
8046   //
8047   // If D == 1, (N / D) == N == 2^BW, so we need one extra bit to represent
8048   // (N / D) in general. The inverse itself always fits into BW bits, though,
8049   // so we immediately truncate it.
8050   APInt AD = A.lshr(Mult2).zext(BW + 1);  // AD = A / D
8051   APInt Mod(BW + 1, 0);
8052   Mod.setBit(BW - Mult2);  // Mod = N / D
8053   APInt I = AD.multiplicativeInverse(Mod).trunc(BW);
8054 
8055   // 4. Compute the minimum unsigned root of the equation:
8056   // I * (B / D) mod (N / D)
8057   // To simplify the computation, we factor out the divide by D:
8058   // (I * B mod N) / D
8059   const SCEV *D = SE.getConstant(APInt::getOneBitSet(BW, Mult2));
8060   return SE.getUDivExactExpr(SE.getMulExpr(B, SE.getConstant(I)), D);
8061 }
8062 
8063 /// Find the roots of the quadratic equation for the given quadratic chrec
8064 /// {L,+,M,+,N}.  This returns either the two roots (which might be the same) or
8065 /// two SCEVCouldNotCompute objects.
8066 static Optional<std::pair<const SCEVConstant *,const SCEVConstant *>>
8067 SolveQuadraticEquation(const SCEVAddRecExpr *AddRec, ScalarEvolution &SE) {
8068   assert(AddRec->getNumOperands() == 3 && "This is not a quadratic chrec!");
8069   const SCEVConstant *LC = dyn_cast<SCEVConstant>(AddRec->getOperand(0));
8070   const SCEVConstant *MC = dyn_cast<SCEVConstant>(AddRec->getOperand(1));
8071   const SCEVConstant *NC = dyn_cast<SCEVConstant>(AddRec->getOperand(2));
8072 
8073   // We currently can only solve this if the coefficients are constants.
8074   if (!LC || !MC || !NC)
8075     return None;
8076 
8077   uint32_t BitWidth = LC->getAPInt().getBitWidth();
8078   const APInt &L = LC->getAPInt();
8079   const APInt &M = MC->getAPInt();
8080   const APInt &N = NC->getAPInt();
8081   APInt Two(BitWidth, 2);
8082 
8083   // Convert from chrec coefficients to polynomial coefficients AX^2+BX+C
8084 
8085   // The A coefficient is N/2
8086   APInt A = N.sdiv(Two);
8087 
8088   // The B coefficient is M-N/2
8089   APInt B = M;
8090   B -= A; // A is the same as N/2.
8091 
8092   // The C coefficient is L.
8093   const APInt& C = L;
8094 
8095   // Compute the B^2-4ac term.
8096   APInt SqrtTerm = B;
8097   SqrtTerm *= B;
8098   SqrtTerm -= 4 * (A * C);
8099 
8100   if (SqrtTerm.isNegative()) {
8101     // The loop is provably infinite.
8102     return None;
8103   }
8104 
8105   // Compute sqrt(B^2-4ac). This is guaranteed to be the nearest
8106   // integer value or else APInt::sqrt() will assert.
8107   APInt SqrtVal = SqrtTerm.sqrt();
8108 
8109   // Compute the two solutions for the quadratic formula.
8110   // The divisions must be performed as signed divisions.
8111   APInt NegB = -std::move(B);
8112   APInt TwoA = std::move(A);
8113   TwoA <<= 1;
8114   if (TwoA.isNullValue())
8115     return None;
8116 
8117   LLVMContext &Context = SE.getContext();
8118 
8119   ConstantInt *Solution1 =
8120     ConstantInt::get(Context, (NegB + SqrtVal).sdiv(TwoA));
8121   ConstantInt *Solution2 =
8122     ConstantInt::get(Context, (NegB - SqrtVal).sdiv(TwoA));
8123 
8124   return std::make_pair(cast<SCEVConstant>(SE.getConstant(Solution1)),
8125                         cast<SCEVConstant>(SE.getConstant(Solution2)));
8126 }
8127 
8128 ScalarEvolution::ExitLimit
8129 ScalarEvolution::howFarToZero(const SCEV *V, const Loop *L, bool ControlsExit,
8130                               bool AllowPredicates) {
8131 
8132   // This is only used for loops with a "x != y" exit test. The exit condition
8133   // is now expressed as a single expression, V = x-y. So the exit test is
8134   // effectively V != 0.  We know and take advantage of the fact that this
8135   // expression only being used in a comparison by zero context.
8136 
8137   SmallPtrSet<const SCEVPredicate *, 4> Predicates;
8138   // If the value is a constant
8139   if (const SCEVConstant *C = dyn_cast<SCEVConstant>(V)) {
8140     // If the value is already zero, the branch will execute zero times.
8141     if (C->getValue()->isZero()) return C;
8142     return getCouldNotCompute();  // Otherwise it will loop infinitely.
8143   }
8144 
8145   const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(V);
8146   if (!AddRec && AllowPredicates)
8147     // Try to make this an AddRec using runtime tests, in the first X
8148     // iterations of this loop, where X is the SCEV expression found by the
8149     // algorithm below.
8150     AddRec = convertSCEVToAddRecWithPredicates(V, L, Predicates);
8151 
8152   if (!AddRec || AddRec->getLoop() != L)
8153     return getCouldNotCompute();
8154 
8155   // If this is a quadratic (3-term) AddRec {L,+,M,+,N}, find the roots of
8156   // the quadratic equation to solve it.
8157   if (AddRec->isQuadratic() && AddRec->getType()->isIntegerTy()) {
8158     if (auto Roots = SolveQuadraticEquation(AddRec, *this)) {
8159       const SCEVConstant *R1 = Roots->first;
8160       const SCEVConstant *R2 = Roots->second;
8161       // Pick the smallest positive root value.
8162       if (ConstantInt *CB = dyn_cast<ConstantInt>(ConstantExpr::getICmp(
8163               CmpInst::ICMP_ULT, R1->getValue(), R2->getValue()))) {
8164         if (!CB->getZExtValue())
8165           std::swap(R1, R2); // R1 is the minimum root now.
8166 
8167         // We can only use this value if the chrec ends up with an exact zero
8168         // value at this index.  When solving for "X*X != 5", for example, we
8169         // should not accept a root of 2.
8170         const SCEV *Val = AddRec->evaluateAtIteration(R1, *this);
8171         if (Val->isZero())
8172           // We found a quadratic root!
8173           return ExitLimit(R1, R1, false, Predicates);
8174       }
8175     }
8176     return getCouldNotCompute();
8177   }
8178 
8179   // Otherwise we can only handle this if it is affine.
8180   if (!AddRec->isAffine())
8181     return getCouldNotCompute();
8182 
8183   // If this is an affine expression, the execution count of this branch is
8184   // the minimum unsigned root of the following equation:
8185   //
8186   //     Start + Step*N = 0 (mod 2^BW)
8187   //
8188   // equivalent to:
8189   //
8190   //             Step*N = -Start (mod 2^BW)
8191   //
8192   // where BW is the common bit width of Start and Step.
8193 
8194   // Get the initial value for the loop.
8195   const SCEV *Start = getSCEVAtScope(AddRec->getStart(), L->getParentLoop());
8196   const SCEV *Step = getSCEVAtScope(AddRec->getOperand(1), L->getParentLoop());
8197 
8198   // For now we handle only constant steps.
8199   //
8200   // TODO: Handle a nonconstant Step given AddRec<NUW>. If the
8201   // AddRec is NUW, then (in an unsigned sense) it cannot be counting up to wrap
8202   // to 0, it must be counting down to equal 0. Consequently, N = Start / -Step.
8203   // We have not yet seen any such cases.
8204   const SCEVConstant *StepC = dyn_cast<SCEVConstant>(Step);
8205   if (!StepC || StepC->getValue()->isZero())
8206     return getCouldNotCompute();
8207 
8208   // For positive steps (counting up until unsigned overflow):
8209   //   N = -Start/Step (as unsigned)
8210   // For negative steps (counting down to zero):
8211   //   N = Start/-Step
8212   // First compute the unsigned distance from zero in the direction of Step.
8213   bool CountDown = StepC->getAPInt().isNegative();
8214   const SCEV *Distance = CountDown ? Start : getNegativeSCEV(Start);
8215 
8216   // Handle unitary steps, which cannot wraparound.
8217   // 1*N = -Start; -1*N = Start (mod 2^BW), so:
8218   //   N = Distance (as unsigned)
8219   if (StepC->getValue()->isOne() || StepC->getValue()->isMinusOne()) {
8220     APInt MaxBECount = getUnsignedRangeMax(Distance);
8221 
8222     // When a loop like "for (int i = 0; i != n; ++i) { /* body */ }" is rotated,
8223     // we end up with a loop whose backedge-taken count is n - 1.  Detect this
8224     // case, and see if we can improve the bound.
8225     //
8226     // Explicitly handling this here is necessary because getUnsignedRange
8227     // isn't context-sensitive; it doesn't know that we only care about the
8228     // range inside the loop.
8229     const SCEV *Zero = getZero(Distance->getType());
8230     const SCEV *One = getOne(Distance->getType());
8231     const SCEV *DistancePlusOne = getAddExpr(Distance, One);
8232     if (isLoopEntryGuardedByCond(L, ICmpInst::ICMP_NE, DistancePlusOne, Zero)) {
8233       // If Distance + 1 doesn't overflow, we can compute the maximum distance
8234       // as "unsigned_max(Distance + 1) - 1".
8235       ConstantRange CR = getUnsignedRange(DistancePlusOne);
8236       MaxBECount = APIntOps::umin(MaxBECount, CR.getUnsignedMax() - 1);
8237     }
8238     return ExitLimit(Distance, getConstant(MaxBECount), false, Predicates);
8239   }
8240 
8241   // If the condition controls loop exit (the loop exits only if the expression
8242   // is true) and the addition is no-wrap we can use unsigned divide to
8243   // compute the backedge count.  In this case, the step may not divide the
8244   // distance, but we don't care because if the condition is "missed" the loop
8245   // will have undefined behavior due to wrapping.
8246   if (ControlsExit && AddRec->hasNoSelfWrap() &&
8247       loopHasNoAbnormalExits(AddRec->getLoop())) {
8248     const SCEV *Exact =
8249         getUDivExpr(Distance, CountDown ? getNegativeSCEV(Step) : Step);
8250     const SCEV *Max =
8251         Exact == getCouldNotCompute()
8252             ? Exact
8253             : getConstant(getUnsignedRangeMax(Exact));
8254     return ExitLimit(Exact, Max, false, Predicates);
8255   }
8256 
8257   // Solve the general equation.
8258   const SCEV *E = SolveLinEquationWithOverflow(StepC->getAPInt(),
8259                                                getNegativeSCEV(Start), *this);
8260   const SCEV *M = E == getCouldNotCompute()
8261                       ? E
8262                       : getConstant(getUnsignedRangeMax(E));
8263   return ExitLimit(E, M, false, Predicates);
8264 }
8265 
8266 ScalarEvolution::ExitLimit
8267 ScalarEvolution::howFarToNonZero(const SCEV *V, const Loop *L) {
8268   // Loops that look like: while (X == 0) are very strange indeed.  We don't
8269   // handle them yet except for the trivial case.  This could be expanded in the
8270   // future as needed.
8271 
8272   // If the value is a constant, check to see if it is known to be non-zero
8273   // already.  If so, the backedge will execute zero times.
8274   if (const SCEVConstant *C = dyn_cast<SCEVConstant>(V)) {
8275     if (!C->getValue()->isZero())
8276       return getZero(C->getType());
8277     return getCouldNotCompute();  // Otherwise it will loop infinitely.
8278   }
8279 
8280   // We could implement others, but I really doubt anyone writes loops like
8281   // this, and if they did, they would already be constant folded.
8282   return getCouldNotCompute();
8283 }
8284 
8285 std::pair<BasicBlock *, BasicBlock *>
8286 ScalarEvolution::getPredecessorWithUniqueSuccessorForBB(BasicBlock *BB) {
8287   // If the block has a unique predecessor, then there is no path from the
8288   // predecessor to the block that does not go through the direct edge
8289   // from the predecessor to the block.
8290   if (BasicBlock *Pred = BB->getSinglePredecessor())
8291     return {Pred, BB};
8292 
8293   // A loop's header is defined to be a block that dominates the loop.
8294   // If the header has a unique predecessor outside the loop, it must be
8295   // a block that has exactly one successor that can reach the loop.
8296   if (Loop *L = LI.getLoopFor(BB))
8297     return {L->getLoopPredecessor(), L->getHeader()};
8298 
8299   return {nullptr, nullptr};
8300 }
8301 
8302 /// SCEV structural equivalence is usually sufficient for testing whether two
8303 /// expressions are equal, however for the purposes of looking for a condition
8304 /// guarding a loop, it can be useful to be a little more general, since a
8305 /// front-end may have replicated the controlling expression.
8306 static bool HasSameValue(const SCEV *A, const SCEV *B) {
8307   // Quick check to see if they are the same SCEV.
8308   if (A == B) return true;
8309 
8310   auto ComputesEqualValues = [](const Instruction *A, const Instruction *B) {
8311     // Not all instructions that are "identical" compute the same value.  For
8312     // instance, two distinct alloca instructions allocating the same type are
8313     // identical and do not read memory; but compute distinct values.
8314     return A->isIdenticalTo(B) && (isa<BinaryOperator>(A) || isa<GetElementPtrInst>(A));
8315   };
8316 
8317   // Otherwise, if they're both SCEVUnknown, it's possible that they hold
8318   // two different instructions with the same value. Check for this case.
8319   if (const SCEVUnknown *AU = dyn_cast<SCEVUnknown>(A))
8320     if (const SCEVUnknown *BU = dyn_cast<SCEVUnknown>(B))
8321       if (const Instruction *AI = dyn_cast<Instruction>(AU->getValue()))
8322         if (const Instruction *BI = dyn_cast<Instruction>(BU->getValue()))
8323           if (ComputesEqualValues(AI, BI))
8324             return true;
8325 
8326   // Otherwise assume they may have a different value.
8327   return false;
8328 }
8329 
8330 bool ScalarEvolution::SimplifyICmpOperands(ICmpInst::Predicate &Pred,
8331                                            const SCEV *&LHS, const SCEV *&RHS,
8332                                            unsigned Depth) {
8333   bool Changed = false;
8334 
8335   // If we hit the max recursion limit bail out.
8336   if (Depth >= 3)
8337     return false;
8338 
8339   // Canonicalize a constant to the right side.
8340   if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(LHS)) {
8341     // Check for both operands constant.
8342     if (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(RHS)) {
8343       if (ConstantExpr::getICmp(Pred,
8344                                 LHSC->getValue(),
8345                                 RHSC->getValue())->isNullValue())
8346         goto trivially_false;
8347       else
8348         goto trivially_true;
8349     }
8350     // Otherwise swap the operands to put the constant on the right.
8351     std::swap(LHS, RHS);
8352     Pred = ICmpInst::getSwappedPredicate(Pred);
8353     Changed = true;
8354   }
8355 
8356   // If we're comparing an addrec with a value which is loop-invariant in the
8357   // addrec's loop, put the addrec on the left. Also make a dominance check,
8358   // as both operands could be addrecs loop-invariant in each other's loop.
8359   if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(RHS)) {
8360     const Loop *L = AR->getLoop();
8361     if (isLoopInvariant(LHS, L) && properlyDominates(LHS, L->getHeader())) {
8362       std::swap(LHS, RHS);
8363       Pred = ICmpInst::getSwappedPredicate(Pred);
8364       Changed = true;
8365     }
8366   }
8367 
8368   // If there's a constant operand, canonicalize comparisons with boundary
8369   // cases, and canonicalize *-or-equal comparisons to regular comparisons.
8370   if (const SCEVConstant *RC = dyn_cast<SCEVConstant>(RHS)) {
8371     const APInt &RA = RC->getAPInt();
8372 
8373     bool SimplifiedByConstantRange = false;
8374 
8375     if (!ICmpInst::isEquality(Pred)) {
8376       ConstantRange ExactCR = ConstantRange::makeExactICmpRegion(Pred, RA);
8377       if (ExactCR.isFullSet())
8378         goto trivially_true;
8379       else if (ExactCR.isEmptySet())
8380         goto trivially_false;
8381 
8382       APInt NewRHS;
8383       CmpInst::Predicate NewPred;
8384       if (ExactCR.getEquivalentICmp(NewPred, NewRHS) &&
8385           ICmpInst::isEquality(NewPred)) {
8386         // We were able to convert an inequality to an equality.
8387         Pred = NewPred;
8388         RHS = getConstant(NewRHS);
8389         Changed = SimplifiedByConstantRange = true;
8390       }
8391     }
8392 
8393     if (!SimplifiedByConstantRange) {
8394       switch (Pred) {
8395       default:
8396         break;
8397       case ICmpInst::ICMP_EQ:
8398       case ICmpInst::ICMP_NE:
8399         // Fold ((-1) * %a) + %b == 0 (equivalent to %b-%a == 0) into %a == %b.
8400         if (!RA)
8401           if (const SCEVAddExpr *AE = dyn_cast<SCEVAddExpr>(LHS))
8402             if (const SCEVMulExpr *ME =
8403                     dyn_cast<SCEVMulExpr>(AE->getOperand(0)))
8404               if (AE->getNumOperands() == 2 && ME->getNumOperands() == 2 &&
8405                   ME->getOperand(0)->isAllOnesValue()) {
8406                 RHS = AE->getOperand(1);
8407                 LHS = ME->getOperand(1);
8408                 Changed = true;
8409               }
8410         break;
8411 
8412 
8413         // The "Should have been caught earlier!" messages refer to the fact
8414         // that the ExactCR.isFullSet() or ExactCR.isEmptySet() check above
8415         // should have fired on the corresponding cases, and canonicalized the
8416         // check to trivially_true or trivially_false.
8417 
8418       case ICmpInst::ICMP_UGE:
8419         assert(!RA.isMinValue() && "Should have been caught earlier!");
8420         Pred = ICmpInst::ICMP_UGT;
8421         RHS = getConstant(RA - 1);
8422         Changed = true;
8423         break;
8424       case ICmpInst::ICMP_ULE:
8425         assert(!RA.isMaxValue() && "Should have been caught earlier!");
8426         Pred = ICmpInst::ICMP_ULT;
8427         RHS = getConstant(RA + 1);
8428         Changed = true;
8429         break;
8430       case ICmpInst::ICMP_SGE:
8431         assert(!RA.isMinSignedValue() && "Should have been caught earlier!");
8432         Pred = ICmpInst::ICMP_SGT;
8433         RHS = getConstant(RA - 1);
8434         Changed = true;
8435         break;
8436       case ICmpInst::ICMP_SLE:
8437         assert(!RA.isMaxSignedValue() && "Should have been caught earlier!");
8438         Pred = ICmpInst::ICMP_SLT;
8439         RHS = getConstant(RA + 1);
8440         Changed = true;
8441         break;
8442       }
8443     }
8444   }
8445 
8446   // Check for obvious equality.
8447   if (HasSameValue(LHS, RHS)) {
8448     if (ICmpInst::isTrueWhenEqual(Pred))
8449       goto trivially_true;
8450     if (ICmpInst::isFalseWhenEqual(Pred))
8451       goto trivially_false;
8452   }
8453 
8454   // If possible, canonicalize GE/LE comparisons to GT/LT comparisons, by
8455   // adding or subtracting 1 from one of the operands.
8456   switch (Pred) {
8457   case ICmpInst::ICMP_SLE:
8458     if (!getSignedRangeMax(RHS).isMaxSignedValue()) {
8459       RHS = getAddExpr(getConstant(RHS->getType(), 1, true), RHS,
8460                        SCEV::FlagNSW);
8461       Pred = ICmpInst::ICMP_SLT;
8462       Changed = true;
8463     } else if (!getSignedRangeMin(LHS).isMinSignedValue()) {
8464       LHS = getAddExpr(getConstant(RHS->getType(), (uint64_t)-1, true), LHS,
8465                        SCEV::FlagNSW);
8466       Pred = ICmpInst::ICMP_SLT;
8467       Changed = true;
8468     }
8469     break;
8470   case ICmpInst::ICMP_SGE:
8471     if (!getSignedRangeMin(RHS).isMinSignedValue()) {
8472       RHS = getAddExpr(getConstant(RHS->getType(), (uint64_t)-1, true), RHS,
8473                        SCEV::FlagNSW);
8474       Pred = ICmpInst::ICMP_SGT;
8475       Changed = true;
8476     } else if (!getSignedRangeMax(LHS).isMaxSignedValue()) {
8477       LHS = getAddExpr(getConstant(RHS->getType(), 1, true), LHS,
8478                        SCEV::FlagNSW);
8479       Pred = ICmpInst::ICMP_SGT;
8480       Changed = true;
8481     }
8482     break;
8483   case ICmpInst::ICMP_ULE:
8484     if (!getUnsignedRangeMax(RHS).isMaxValue()) {
8485       RHS = getAddExpr(getConstant(RHS->getType(), 1, true), RHS,
8486                        SCEV::FlagNUW);
8487       Pred = ICmpInst::ICMP_ULT;
8488       Changed = true;
8489     } else if (!getUnsignedRangeMin(LHS).isMinValue()) {
8490       LHS = getAddExpr(getConstant(RHS->getType(), (uint64_t)-1, true), LHS);
8491       Pred = ICmpInst::ICMP_ULT;
8492       Changed = true;
8493     }
8494     break;
8495   case ICmpInst::ICMP_UGE:
8496     if (!getUnsignedRangeMin(RHS).isMinValue()) {
8497       RHS = getAddExpr(getConstant(RHS->getType(), (uint64_t)-1, true), RHS);
8498       Pred = ICmpInst::ICMP_UGT;
8499       Changed = true;
8500     } else if (!getUnsignedRangeMax(LHS).isMaxValue()) {
8501       LHS = getAddExpr(getConstant(RHS->getType(), 1, true), LHS,
8502                        SCEV::FlagNUW);
8503       Pred = ICmpInst::ICMP_UGT;
8504       Changed = true;
8505     }
8506     break;
8507   default:
8508     break;
8509   }
8510 
8511   // TODO: More simplifications are possible here.
8512 
8513   // Recursively simplify until we either hit a recursion limit or nothing
8514   // changes.
8515   if (Changed)
8516     return SimplifyICmpOperands(Pred, LHS, RHS, Depth+1);
8517 
8518   return Changed;
8519 
8520 trivially_true:
8521   // Return 0 == 0.
8522   LHS = RHS = getConstant(ConstantInt::getFalse(getContext()));
8523   Pred = ICmpInst::ICMP_EQ;
8524   return true;
8525 
8526 trivially_false:
8527   // Return 0 != 0.
8528   LHS = RHS = getConstant(ConstantInt::getFalse(getContext()));
8529   Pred = ICmpInst::ICMP_NE;
8530   return true;
8531 }
8532 
8533 bool ScalarEvolution::isKnownNegative(const SCEV *S) {
8534   return getSignedRangeMax(S).isNegative();
8535 }
8536 
8537 bool ScalarEvolution::isKnownPositive(const SCEV *S) {
8538   return getSignedRangeMin(S).isStrictlyPositive();
8539 }
8540 
8541 bool ScalarEvolution::isKnownNonNegative(const SCEV *S) {
8542   return !getSignedRangeMin(S).isNegative();
8543 }
8544 
8545 bool ScalarEvolution::isKnownNonPositive(const SCEV *S) {
8546   return !getSignedRangeMax(S).isStrictlyPositive();
8547 }
8548 
8549 bool ScalarEvolution::isKnownNonZero(const SCEV *S) {
8550   return isKnownNegative(S) || isKnownPositive(S);
8551 }
8552 
8553 bool ScalarEvolution::isKnownPredicate(ICmpInst::Predicate Pred,
8554                                        const SCEV *LHS, const SCEV *RHS) {
8555   // Canonicalize the inputs first.
8556   (void)SimplifyICmpOperands(Pred, LHS, RHS);
8557 
8558   // If LHS or RHS is an addrec, check to see if the condition is true in
8559   // every iteration of the loop.
8560   // If LHS and RHS are both addrec, both conditions must be true in
8561   // every iteration of the loop.
8562   const SCEVAddRecExpr *LAR = dyn_cast<SCEVAddRecExpr>(LHS);
8563   const SCEVAddRecExpr *RAR = dyn_cast<SCEVAddRecExpr>(RHS);
8564   bool LeftGuarded = false;
8565   bool RightGuarded = false;
8566   if (LAR) {
8567     const Loop *L = LAR->getLoop();
8568     if (isLoopEntryGuardedByCond(L, Pred, LAR->getStart(), RHS) &&
8569         isLoopBackedgeGuardedByCond(L, Pred, LAR->getPostIncExpr(*this), RHS)) {
8570       if (!RAR) return true;
8571       LeftGuarded = true;
8572     }
8573   }
8574   if (RAR) {
8575     const Loop *L = RAR->getLoop();
8576     if (isLoopEntryGuardedByCond(L, Pred, LHS, RAR->getStart()) &&
8577         isLoopBackedgeGuardedByCond(L, Pred, LHS, RAR->getPostIncExpr(*this))) {
8578       if (!LAR) return true;
8579       RightGuarded = true;
8580     }
8581   }
8582   if (LeftGuarded && RightGuarded)
8583     return true;
8584 
8585   if (isKnownPredicateViaSplitting(Pred, LHS, RHS))
8586     return true;
8587 
8588   // Otherwise see what can be done with known constant ranges.
8589   return isKnownPredicateViaConstantRanges(Pred, LHS, RHS);
8590 }
8591 
8592 bool ScalarEvolution::isMonotonicPredicate(const SCEVAddRecExpr *LHS,
8593                                            ICmpInst::Predicate Pred,
8594                                            bool &Increasing) {
8595   bool Result = isMonotonicPredicateImpl(LHS, Pred, Increasing);
8596 
8597 #ifndef NDEBUG
8598   // Verify an invariant: inverting the predicate should turn a monotonically
8599   // increasing change to a monotonically decreasing one, and vice versa.
8600   bool IncreasingSwapped;
8601   bool ResultSwapped = isMonotonicPredicateImpl(
8602       LHS, ICmpInst::getSwappedPredicate(Pred), IncreasingSwapped);
8603 
8604   assert(Result == ResultSwapped && "should be able to analyze both!");
8605   if (ResultSwapped)
8606     assert(Increasing == !IncreasingSwapped &&
8607            "monotonicity should flip as we flip the predicate");
8608 #endif
8609 
8610   return Result;
8611 }
8612 
8613 bool ScalarEvolution::isMonotonicPredicateImpl(const SCEVAddRecExpr *LHS,
8614                                                ICmpInst::Predicate Pred,
8615                                                bool &Increasing) {
8616 
8617   // A zero step value for LHS means the induction variable is essentially a
8618   // loop invariant value. We don't really depend on the predicate actually
8619   // flipping from false to true (for increasing predicates, and the other way
8620   // around for decreasing predicates), all we care about is that *if* the
8621   // predicate changes then it only changes from false to true.
8622   //
8623   // A zero step value in itself is not very useful, but there may be places
8624   // where SCEV can prove X >= 0 but not prove X > 0, so it is helpful to be
8625   // as general as possible.
8626 
8627   switch (Pred) {
8628   default:
8629     return false; // Conservative answer
8630 
8631   case ICmpInst::ICMP_UGT:
8632   case ICmpInst::ICMP_UGE:
8633   case ICmpInst::ICMP_ULT:
8634   case ICmpInst::ICMP_ULE:
8635     if (!LHS->hasNoUnsignedWrap())
8636       return false;
8637 
8638     Increasing = Pred == ICmpInst::ICMP_UGT || Pred == ICmpInst::ICMP_UGE;
8639     return true;
8640 
8641   case ICmpInst::ICMP_SGT:
8642   case ICmpInst::ICMP_SGE:
8643   case ICmpInst::ICMP_SLT:
8644   case ICmpInst::ICMP_SLE: {
8645     if (!LHS->hasNoSignedWrap())
8646       return false;
8647 
8648     const SCEV *Step = LHS->getStepRecurrence(*this);
8649 
8650     if (isKnownNonNegative(Step)) {
8651       Increasing = Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_SGE;
8652       return true;
8653     }
8654 
8655     if (isKnownNonPositive(Step)) {
8656       Increasing = Pred == ICmpInst::ICMP_SLT || Pred == ICmpInst::ICMP_SLE;
8657       return true;
8658     }
8659 
8660     return false;
8661   }
8662 
8663   }
8664 
8665   llvm_unreachable("switch has default clause!");
8666 }
8667 
8668 bool ScalarEvolution::isLoopInvariantPredicate(
8669     ICmpInst::Predicate Pred, const SCEV *LHS, const SCEV *RHS, const Loop *L,
8670     ICmpInst::Predicate &InvariantPred, const SCEV *&InvariantLHS,
8671     const SCEV *&InvariantRHS) {
8672 
8673   // If there is a loop-invariant, force it into the RHS, otherwise bail out.
8674   if (!isLoopInvariant(RHS, L)) {
8675     if (!isLoopInvariant(LHS, L))
8676       return false;
8677 
8678     std::swap(LHS, RHS);
8679     Pred = ICmpInst::getSwappedPredicate(Pred);
8680   }
8681 
8682   const SCEVAddRecExpr *ArLHS = dyn_cast<SCEVAddRecExpr>(LHS);
8683   if (!ArLHS || ArLHS->getLoop() != L)
8684     return false;
8685 
8686   bool Increasing;
8687   if (!isMonotonicPredicate(ArLHS, Pred, Increasing))
8688     return false;
8689 
8690   // If the predicate "ArLHS `Pred` RHS" monotonically increases from false to
8691   // true as the loop iterates, and the backedge is control dependent on
8692   // "ArLHS `Pred` RHS" == true then we can reason as follows:
8693   //
8694   //   * if the predicate was false in the first iteration then the predicate
8695   //     is never evaluated again, since the loop exits without taking the
8696   //     backedge.
8697   //   * if the predicate was true in the first iteration then it will
8698   //     continue to be true for all future iterations since it is
8699   //     monotonically increasing.
8700   //
8701   // For both the above possibilities, we can replace the loop varying
8702   // predicate with its value on the first iteration of the loop (which is
8703   // loop invariant).
8704   //
8705   // A similar reasoning applies for a monotonically decreasing predicate, by
8706   // replacing true with false and false with true in the above two bullets.
8707 
8708   auto P = Increasing ? Pred : ICmpInst::getInversePredicate(Pred);
8709 
8710   if (!isLoopBackedgeGuardedByCond(L, P, LHS, RHS))
8711     return false;
8712 
8713   InvariantPred = Pred;
8714   InvariantLHS = ArLHS->getStart();
8715   InvariantRHS = RHS;
8716   return true;
8717 }
8718 
8719 bool ScalarEvolution::isKnownPredicateViaConstantRanges(
8720     ICmpInst::Predicate Pred, const SCEV *LHS, const SCEV *RHS) {
8721   if (HasSameValue(LHS, RHS))
8722     return ICmpInst::isTrueWhenEqual(Pred);
8723 
8724   // This code is split out from isKnownPredicate because it is called from
8725   // within isLoopEntryGuardedByCond.
8726 
8727   auto CheckRanges =
8728       [&](const ConstantRange &RangeLHS, const ConstantRange &RangeRHS) {
8729     return ConstantRange::makeSatisfyingICmpRegion(Pred, RangeRHS)
8730         .contains(RangeLHS);
8731   };
8732 
8733   // The check at the top of the function catches the case where the values are
8734   // known to be equal.
8735   if (Pred == CmpInst::ICMP_EQ)
8736     return false;
8737 
8738   if (Pred == CmpInst::ICMP_NE)
8739     return CheckRanges(getSignedRange(LHS), getSignedRange(RHS)) ||
8740            CheckRanges(getUnsignedRange(LHS), getUnsignedRange(RHS)) ||
8741            isKnownNonZero(getMinusSCEV(LHS, RHS));
8742 
8743   if (CmpInst::isSigned(Pred))
8744     return CheckRanges(getSignedRange(LHS), getSignedRange(RHS));
8745 
8746   return CheckRanges(getUnsignedRange(LHS), getUnsignedRange(RHS));
8747 }
8748 
8749 bool ScalarEvolution::isKnownPredicateViaNoOverflow(ICmpInst::Predicate Pred,
8750                                                     const SCEV *LHS,
8751                                                     const SCEV *RHS) {
8752   // Match Result to (X + Y)<ExpectedFlags> where Y is a constant integer.
8753   // Return Y via OutY.
8754   auto MatchBinaryAddToConst =
8755       [this](const SCEV *Result, const SCEV *X, APInt &OutY,
8756              SCEV::NoWrapFlags ExpectedFlags) {
8757     const SCEV *NonConstOp, *ConstOp;
8758     SCEV::NoWrapFlags FlagsPresent;
8759 
8760     if (!splitBinaryAdd(Result, ConstOp, NonConstOp, FlagsPresent) ||
8761         !isa<SCEVConstant>(ConstOp) || NonConstOp != X)
8762       return false;
8763 
8764     OutY = cast<SCEVConstant>(ConstOp)->getAPInt();
8765     return (FlagsPresent & ExpectedFlags) == ExpectedFlags;
8766   };
8767 
8768   APInt C;
8769 
8770   switch (Pred) {
8771   default:
8772     break;
8773 
8774   case ICmpInst::ICMP_SGE:
8775     std::swap(LHS, RHS);
8776     LLVM_FALLTHROUGH;
8777   case ICmpInst::ICMP_SLE:
8778     // X s<= (X + C)<nsw> if C >= 0
8779     if (MatchBinaryAddToConst(RHS, LHS, C, SCEV::FlagNSW) && C.isNonNegative())
8780       return true;
8781 
8782     // (X + C)<nsw> s<= X if C <= 0
8783     if (MatchBinaryAddToConst(LHS, RHS, C, SCEV::FlagNSW) &&
8784         !C.isStrictlyPositive())
8785       return true;
8786     break;
8787 
8788   case ICmpInst::ICMP_SGT:
8789     std::swap(LHS, RHS);
8790     LLVM_FALLTHROUGH;
8791   case ICmpInst::ICMP_SLT:
8792     // X s< (X + C)<nsw> if C > 0
8793     if (MatchBinaryAddToConst(RHS, LHS, C, SCEV::FlagNSW) &&
8794         C.isStrictlyPositive())
8795       return true;
8796 
8797     // (X + C)<nsw> s< X if C < 0
8798     if (MatchBinaryAddToConst(LHS, RHS, C, SCEV::FlagNSW) && C.isNegative())
8799       return true;
8800     break;
8801   }
8802 
8803   return false;
8804 }
8805 
8806 bool ScalarEvolution::isKnownPredicateViaSplitting(ICmpInst::Predicate Pred,
8807                                                    const SCEV *LHS,
8808                                                    const SCEV *RHS) {
8809   if (Pred != ICmpInst::ICMP_ULT || ProvingSplitPredicate)
8810     return false;
8811 
8812   // Allowing arbitrary number of activations of isKnownPredicateViaSplitting on
8813   // the stack can result in exponential time complexity.
8814   SaveAndRestore<bool> Restore(ProvingSplitPredicate, true);
8815 
8816   // If L >= 0 then I `ult` L <=> I >= 0 && I `slt` L
8817   //
8818   // To prove L >= 0 we use isKnownNonNegative whereas to prove I >= 0 we use
8819   // isKnownPredicate.  isKnownPredicate is more powerful, but also more
8820   // expensive; and using isKnownNonNegative(RHS) is sufficient for most of the
8821   // interesting cases seen in practice.  We can consider "upgrading" L >= 0 to
8822   // use isKnownPredicate later if needed.
8823   return isKnownNonNegative(RHS) &&
8824          isKnownPredicate(CmpInst::ICMP_SGE, LHS, getZero(LHS->getType())) &&
8825          isKnownPredicate(CmpInst::ICMP_SLT, LHS, RHS);
8826 }
8827 
8828 bool ScalarEvolution::isImpliedViaGuard(BasicBlock *BB,
8829                                         ICmpInst::Predicate Pred,
8830                                         const SCEV *LHS, const SCEV *RHS) {
8831   // No need to even try if we know the module has no guards.
8832   if (!HasGuards)
8833     return false;
8834 
8835   return any_of(*BB, [&](Instruction &I) {
8836     using namespace llvm::PatternMatch;
8837 
8838     Value *Condition;
8839     return match(&I, m_Intrinsic<Intrinsic::experimental_guard>(
8840                          m_Value(Condition))) &&
8841            isImpliedCond(Pred, LHS, RHS, Condition, false);
8842   });
8843 }
8844 
8845 /// isLoopBackedgeGuardedByCond - Test whether the backedge of the loop is
8846 /// protected by a conditional between LHS and RHS.  This is used to
8847 /// to eliminate casts.
8848 bool
8849 ScalarEvolution::isLoopBackedgeGuardedByCond(const Loop *L,
8850                                              ICmpInst::Predicate Pred,
8851                                              const SCEV *LHS, const SCEV *RHS) {
8852   // Interpret a null as meaning no loop, where there is obviously no guard
8853   // (interprocedural conditions notwithstanding).
8854   if (!L) return true;
8855 
8856   if (isKnownPredicateViaConstantRanges(Pred, LHS, RHS))
8857     return true;
8858 
8859   BasicBlock *Latch = L->getLoopLatch();
8860   if (!Latch)
8861     return false;
8862 
8863   BranchInst *LoopContinuePredicate =
8864     dyn_cast<BranchInst>(Latch->getTerminator());
8865   if (LoopContinuePredicate && LoopContinuePredicate->isConditional() &&
8866       isImpliedCond(Pred, LHS, RHS,
8867                     LoopContinuePredicate->getCondition(),
8868                     LoopContinuePredicate->getSuccessor(0) != L->getHeader()))
8869     return true;
8870 
8871   // We don't want more than one activation of the following loops on the stack
8872   // -- that can lead to O(n!) time complexity.
8873   if (WalkingBEDominatingConds)
8874     return false;
8875 
8876   SaveAndRestore<bool> ClearOnExit(WalkingBEDominatingConds, true);
8877 
8878   // See if we can exploit a trip count to prove the predicate.
8879   const auto &BETakenInfo = getBackedgeTakenInfo(L);
8880   const SCEV *LatchBECount = BETakenInfo.getExact(Latch, this);
8881   if (LatchBECount != getCouldNotCompute()) {
8882     // We know that Latch branches back to the loop header exactly
8883     // LatchBECount times.  This means the backdege condition at Latch is
8884     // equivalent to  "{0,+,1} u< LatchBECount".
8885     Type *Ty = LatchBECount->getType();
8886     auto NoWrapFlags = SCEV::NoWrapFlags(SCEV::FlagNUW | SCEV::FlagNW);
8887     const SCEV *LoopCounter =
8888       getAddRecExpr(getZero(Ty), getOne(Ty), L, NoWrapFlags);
8889     if (isImpliedCond(Pred, LHS, RHS, ICmpInst::ICMP_ULT, LoopCounter,
8890                       LatchBECount))
8891       return true;
8892   }
8893 
8894   // Check conditions due to any @llvm.assume intrinsics.
8895   for (auto &AssumeVH : AC.assumptions()) {
8896     if (!AssumeVH)
8897       continue;
8898     auto *CI = cast<CallInst>(AssumeVH);
8899     if (!DT.dominates(CI, Latch->getTerminator()))
8900       continue;
8901 
8902     if (isImpliedCond(Pred, LHS, RHS, CI->getArgOperand(0), false))
8903       return true;
8904   }
8905 
8906   // If the loop is not reachable from the entry block, we risk running into an
8907   // infinite loop as we walk up into the dom tree.  These loops do not matter
8908   // anyway, so we just return a conservative answer when we see them.
8909   if (!DT.isReachableFromEntry(L->getHeader()))
8910     return false;
8911 
8912   if (isImpliedViaGuard(Latch, Pred, LHS, RHS))
8913     return true;
8914 
8915   for (DomTreeNode *DTN = DT[Latch], *HeaderDTN = DT[L->getHeader()];
8916        DTN != HeaderDTN; DTN = DTN->getIDom()) {
8917     assert(DTN && "should reach the loop header before reaching the root!");
8918 
8919     BasicBlock *BB = DTN->getBlock();
8920     if (isImpliedViaGuard(BB, Pred, LHS, RHS))
8921       return true;
8922 
8923     BasicBlock *PBB = BB->getSinglePredecessor();
8924     if (!PBB)
8925       continue;
8926 
8927     BranchInst *ContinuePredicate = dyn_cast<BranchInst>(PBB->getTerminator());
8928     if (!ContinuePredicate || !ContinuePredicate->isConditional())
8929       continue;
8930 
8931     Value *Condition = ContinuePredicate->getCondition();
8932 
8933     // If we have an edge `E` within the loop body that dominates the only
8934     // latch, the condition guarding `E` also guards the backedge.  This
8935     // reasoning works only for loops with a single latch.
8936 
8937     BasicBlockEdge DominatingEdge(PBB, BB);
8938     if (DominatingEdge.isSingleEdge()) {
8939       // We're constructively (and conservatively) enumerating edges within the
8940       // loop body that dominate the latch.  The dominator tree better agree
8941       // with us on this:
8942       assert(DT.dominates(DominatingEdge, Latch) && "should be!");
8943 
8944       if (isImpliedCond(Pred, LHS, RHS, Condition,
8945                         BB != ContinuePredicate->getSuccessor(0)))
8946         return true;
8947     }
8948   }
8949 
8950   return false;
8951 }
8952 
8953 bool
8954 ScalarEvolution::isLoopEntryGuardedByCond(const Loop *L,
8955                                           ICmpInst::Predicate Pred,
8956                                           const SCEV *LHS, const SCEV *RHS) {
8957   // Interpret a null as meaning no loop, where there is obviously no guard
8958   // (interprocedural conditions notwithstanding).
8959   if (!L) return false;
8960 
8961   if (isKnownPredicateViaConstantRanges(Pred, LHS, RHS))
8962     return true;
8963 
8964   // Starting at the loop predecessor, climb up the predecessor chain, as long
8965   // as there are predecessors that can be found that have unique successors
8966   // leading to the original header.
8967   for (std::pair<BasicBlock *, BasicBlock *>
8968          Pair(L->getLoopPredecessor(), L->getHeader());
8969        Pair.first;
8970        Pair = getPredecessorWithUniqueSuccessorForBB(Pair.first)) {
8971 
8972     if (isImpliedViaGuard(Pair.first, Pred, LHS, RHS))
8973       return true;
8974 
8975     BranchInst *LoopEntryPredicate =
8976       dyn_cast<BranchInst>(Pair.first->getTerminator());
8977     if (!LoopEntryPredicate ||
8978         LoopEntryPredicate->isUnconditional())
8979       continue;
8980 
8981     if (isImpliedCond(Pred, LHS, RHS,
8982                       LoopEntryPredicate->getCondition(),
8983                       LoopEntryPredicate->getSuccessor(0) != Pair.second))
8984       return true;
8985   }
8986 
8987   // Check conditions due to any @llvm.assume intrinsics.
8988   for (auto &AssumeVH : AC.assumptions()) {
8989     if (!AssumeVH)
8990       continue;
8991     auto *CI = cast<CallInst>(AssumeVH);
8992     if (!DT.dominates(CI, L->getHeader()))
8993       continue;
8994 
8995     if (isImpliedCond(Pred, LHS, RHS, CI->getArgOperand(0), false))
8996       return true;
8997   }
8998 
8999   return false;
9000 }
9001 
9002 bool ScalarEvolution::isImpliedCond(ICmpInst::Predicate Pred,
9003                                     const SCEV *LHS, const SCEV *RHS,
9004                                     Value *FoundCondValue,
9005                                     bool Inverse) {
9006   if (!PendingLoopPredicates.insert(FoundCondValue).second)
9007     return false;
9008 
9009   auto ClearOnExit =
9010       make_scope_exit([&]() { PendingLoopPredicates.erase(FoundCondValue); });
9011 
9012   // Recursively handle And and Or conditions.
9013   if (BinaryOperator *BO = dyn_cast<BinaryOperator>(FoundCondValue)) {
9014     if (BO->getOpcode() == Instruction::And) {
9015       if (!Inverse)
9016         return isImpliedCond(Pred, LHS, RHS, BO->getOperand(0), Inverse) ||
9017                isImpliedCond(Pred, LHS, RHS, BO->getOperand(1), Inverse);
9018     } else if (BO->getOpcode() == Instruction::Or) {
9019       if (Inverse)
9020         return isImpliedCond(Pred, LHS, RHS, BO->getOperand(0), Inverse) ||
9021                isImpliedCond(Pred, LHS, RHS, BO->getOperand(1), Inverse);
9022     }
9023   }
9024 
9025   ICmpInst *ICI = dyn_cast<ICmpInst>(FoundCondValue);
9026   if (!ICI) return false;
9027 
9028   // Now that we found a conditional branch that dominates the loop or controls
9029   // the loop latch. Check to see if it is the comparison we are looking for.
9030   ICmpInst::Predicate FoundPred;
9031   if (Inverse)
9032     FoundPred = ICI->getInversePredicate();
9033   else
9034     FoundPred = ICI->getPredicate();
9035 
9036   const SCEV *FoundLHS = getSCEV(ICI->getOperand(0));
9037   const SCEV *FoundRHS = getSCEV(ICI->getOperand(1));
9038 
9039   return isImpliedCond(Pred, LHS, RHS, FoundPred, FoundLHS, FoundRHS);
9040 }
9041 
9042 bool ScalarEvolution::isImpliedCond(ICmpInst::Predicate Pred, const SCEV *LHS,
9043                                     const SCEV *RHS,
9044                                     ICmpInst::Predicate FoundPred,
9045                                     const SCEV *FoundLHS,
9046                                     const SCEV *FoundRHS) {
9047   // Balance the types.
9048   if (getTypeSizeInBits(LHS->getType()) <
9049       getTypeSizeInBits(FoundLHS->getType())) {
9050     if (CmpInst::isSigned(Pred)) {
9051       LHS = getSignExtendExpr(LHS, FoundLHS->getType());
9052       RHS = getSignExtendExpr(RHS, FoundLHS->getType());
9053     } else {
9054       LHS = getZeroExtendExpr(LHS, FoundLHS->getType());
9055       RHS = getZeroExtendExpr(RHS, FoundLHS->getType());
9056     }
9057   } else if (getTypeSizeInBits(LHS->getType()) >
9058       getTypeSizeInBits(FoundLHS->getType())) {
9059     if (CmpInst::isSigned(FoundPred)) {
9060       FoundLHS = getSignExtendExpr(FoundLHS, LHS->getType());
9061       FoundRHS = getSignExtendExpr(FoundRHS, LHS->getType());
9062     } else {
9063       FoundLHS = getZeroExtendExpr(FoundLHS, LHS->getType());
9064       FoundRHS = getZeroExtendExpr(FoundRHS, LHS->getType());
9065     }
9066   }
9067 
9068   // Canonicalize the query to match the way instcombine will have
9069   // canonicalized the comparison.
9070   if (SimplifyICmpOperands(Pred, LHS, RHS))
9071     if (LHS == RHS)
9072       return CmpInst::isTrueWhenEqual(Pred);
9073   if (SimplifyICmpOperands(FoundPred, FoundLHS, FoundRHS))
9074     if (FoundLHS == FoundRHS)
9075       return CmpInst::isFalseWhenEqual(FoundPred);
9076 
9077   // Check to see if we can make the LHS or RHS match.
9078   if (LHS == FoundRHS || RHS == FoundLHS) {
9079     if (isa<SCEVConstant>(RHS)) {
9080       std::swap(FoundLHS, FoundRHS);
9081       FoundPred = ICmpInst::getSwappedPredicate(FoundPred);
9082     } else {
9083       std::swap(LHS, RHS);
9084       Pred = ICmpInst::getSwappedPredicate(Pred);
9085     }
9086   }
9087 
9088   // Check whether the found predicate is the same as the desired predicate.
9089   if (FoundPred == Pred)
9090     return isImpliedCondOperands(Pred, LHS, RHS, FoundLHS, FoundRHS);
9091 
9092   // Check whether swapping the found predicate makes it the same as the
9093   // desired predicate.
9094   if (ICmpInst::getSwappedPredicate(FoundPred) == Pred) {
9095     if (isa<SCEVConstant>(RHS))
9096       return isImpliedCondOperands(Pred, LHS, RHS, FoundRHS, FoundLHS);
9097     else
9098       return isImpliedCondOperands(ICmpInst::getSwappedPredicate(Pred),
9099                                    RHS, LHS, FoundLHS, FoundRHS);
9100   }
9101 
9102   // Unsigned comparison is the same as signed comparison when both the operands
9103   // are non-negative.
9104   if (CmpInst::isUnsigned(FoundPred) &&
9105       CmpInst::getSignedPredicate(FoundPred) == Pred &&
9106       isKnownNonNegative(FoundLHS) && isKnownNonNegative(FoundRHS))
9107     return isImpliedCondOperands(Pred, LHS, RHS, FoundLHS, FoundRHS);
9108 
9109   // Check if we can make progress by sharpening ranges.
9110   if (FoundPred == ICmpInst::ICMP_NE &&
9111       (isa<SCEVConstant>(FoundLHS) || isa<SCEVConstant>(FoundRHS))) {
9112 
9113     const SCEVConstant *C = nullptr;
9114     const SCEV *V = nullptr;
9115 
9116     if (isa<SCEVConstant>(FoundLHS)) {
9117       C = cast<SCEVConstant>(FoundLHS);
9118       V = FoundRHS;
9119     } else {
9120       C = cast<SCEVConstant>(FoundRHS);
9121       V = FoundLHS;
9122     }
9123 
9124     // The guarding predicate tells us that C != V. If the known range
9125     // of V is [C, t), we can sharpen the range to [C + 1, t).  The
9126     // range we consider has to correspond to same signedness as the
9127     // predicate we're interested in folding.
9128 
9129     APInt Min = ICmpInst::isSigned(Pred) ?
9130         getSignedRangeMin(V) : getUnsignedRangeMin(V);
9131 
9132     if (Min == C->getAPInt()) {
9133       // Given (V >= Min && V != Min) we conclude V >= (Min + 1).
9134       // This is true even if (Min + 1) wraps around -- in case of
9135       // wraparound, (Min + 1) < Min, so (V >= Min => V >= (Min + 1)).
9136 
9137       APInt SharperMin = Min + 1;
9138 
9139       switch (Pred) {
9140         case ICmpInst::ICMP_SGE:
9141         case ICmpInst::ICMP_UGE:
9142           // We know V `Pred` SharperMin.  If this implies LHS `Pred`
9143           // RHS, we're done.
9144           if (isImpliedCondOperands(Pred, LHS, RHS, V,
9145                                     getConstant(SharperMin)))
9146             return true;
9147           LLVM_FALLTHROUGH;
9148 
9149         case ICmpInst::ICMP_SGT:
9150         case ICmpInst::ICMP_UGT:
9151           // We know from the range information that (V `Pred` Min ||
9152           // V == Min).  We know from the guarding condition that !(V
9153           // == Min).  This gives us
9154           //
9155           //       V `Pred` Min || V == Min && !(V == Min)
9156           //   =>  V `Pred` Min
9157           //
9158           // If V `Pred` Min implies LHS `Pred` RHS, we're done.
9159 
9160           if (isImpliedCondOperands(Pred, LHS, RHS, V, getConstant(Min)))
9161             return true;
9162           LLVM_FALLTHROUGH;
9163 
9164         default:
9165           // No change
9166           break;
9167       }
9168     }
9169   }
9170 
9171   // Check whether the actual condition is beyond sufficient.
9172   if (FoundPred == ICmpInst::ICMP_EQ)
9173     if (ICmpInst::isTrueWhenEqual(Pred))
9174       if (isImpliedCondOperands(Pred, LHS, RHS, FoundLHS, FoundRHS))
9175         return true;
9176   if (Pred == ICmpInst::ICMP_NE)
9177     if (!ICmpInst::isTrueWhenEqual(FoundPred))
9178       if (isImpliedCondOperands(FoundPred, LHS, RHS, FoundLHS, FoundRHS))
9179         return true;
9180 
9181   // Otherwise assume the worst.
9182   return false;
9183 }
9184 
9185 bool ScalarEvolution::splitBinaryAdd(const SCEV *Expr,
9186                                      const SCEV *&L, const SCEV *&R,
9187                                      SCEV::NoWrapFlags &Flags) {
9188   const auto *AE = dyn_cast<SCEVAddExpr>(Expr);
9189   if (!AE || AE->getNumOperands() != 2)
9190     return false;
9191 
9192   L = AE->getOperand(0);
9193   R = AE->getOperand(1);
9194   Flags = AE->getNoWrapFlags();
9195   return true;
9196 }
9197 
9198 Optional<APInt> ScalarEvolution::computeConstantDifference(const SCEV *More,
9199                                                            const SCEV *Less) {
9200   // We avoid subtracting expressions here because this function is usually
9201   // fairly deep in the call stack (i.e. is called many times).
9202 
9203   if (isa<SCEVAddRecExpr>(Less) && isa<SCEVAddRecExpr>(More)) {
9204     const auto *LAR = cast<SCEVAddRecExpr>(Less);
9205     const auto *MAR = cast<SCEVAddRecExpr>(More);
9206 
9207     if (LAR->getLoop() != MAR->getLoop())
9208       return None;
9209 
9210     // We look at affine expressions only; not for correctness but to keep
9211     // getStepRecurrence cheap.
9212     if (!LAR->isAffine() || !MAR->isAffine())
9213       return None;
9214 
9215     if (LAR->getStepRecurrence(*this) != MAR->getStepRecurrence(*this))
9216       return None;
9217 
9218     Less = LAR->getStart();
9219     More = MAR->getStart();
9220 
9221     // fall through
9222   }
9223 
9224   if (isa<SCEVConstant>(Less) && isa<SCEVConstant>(More)) {
9225     const auto &M = cast<SCEVConstant>(More)->getAPInt();
9226     const auto &L = cast<SCEVConstant>(Less)->getAPInt();
9227     return M - L;
9228   }
9229 
9230   const SCEV *L, *R;
9231   SCEV::NoWrapFlags Flags;
9232   if (splitBinaryAdd(Less, L, R, Flags))
9233     if (const auto *LC = dyn_cast<SCEVConstant>(L))
9234       if (R == More)
9235         return -(LC->getAPInt());
9236 
9237   if (splitBinaryAdd(More, L, R, Flags))
9238     if (const auto *LC = dyn_cast<SCEVConstant>(L))
9239       if (R == Less)
9240         return LC->getAPInt();
9241 
9242   return None;
9243 }
9244 
9245 bool ScalarEvolution::isImpliedCondOperandsViaNoOverflow(
9246     ICmpInst::Predicate Pred, const SCEV *LHS, const SCEV *RHS,
9247     const SCEV *FoundLHS, const SCEV *FoundRHS) {
9248   if (Pred != CmpInst::ICMP_SLT && Pred != CmpInst::ICMP_ULT)
9249     return false;
9250 
9251   const auto *AddRecLHS = dyn_cast<SCEVAddRecExpr>(LHS);
9252   if (!AddRecLHS)
9253     return false;
9254 
9255   const auto *AddRecFoundLHS = dyn_cast<SCEVAddRecExpr>(FoundLHS);
9256   if (!AddRecFoundLHS)
9257     return false;
9258 
9259   // We'd like to let SCEV reason about control dependencies, so we constrain
9260   // both the inequalities to be about add recurrences on the same loop.  This
9261   // way we can use isLoopEntryGuardedByCond later.
9262 
9263   const Loop *L = AddRecFoundLHS->getLoop();
9264   if (L != AddRecLHS->getLoop())
9265     return false;
9266 
9267   //  FoundLHS u< FoundRHS u< -C =>  (FoundLHS + C) u< (FoundRHS + C) ... (1)
9268   //
9269   //  FoundLHS s< FoundRHS s< INT_MIN - C => (FoundLHS + C) s< (FoundRHS + C)
9270   //                                                                  ... (2)
9271   //
9272   // Informal proof for (2), assuming (1) [*]:
9273   //
9274   // We'll also assume (A s< B) <=> ((A + INT_MIN) u< (B + INT_MIN)) ... (3)[**]
9275   //
9276   // Then
9277   //
9278   //       FoundLHS s< FoundRHS s< INT_MIN - C
9279   // <=>  (FoundLHS + INT_MIN) u< (FoundRHS + INT_MIN) u< -C   [ using (3) ]
9280   // <=>  (FoundLHS + INT_MIN + C) u< (FoundRHS + INT_MIN + C) [ using (1) ]
9281   // <=>  (FoundLHS + INT_MIN + C + INT_MIN) s<
9282   //                        (FoundRHS + INT_MIN + C + INT_MIN) [ using (3) ]
9283   // <=>  FoundLHS + C s< FoundRHS + C
9284   //
9285   // [*]: (1) can be proved by ruling out overflow.
9286   //
9287   // [**]: This can be proved by analyzing all the four possibilities:
9288   //    (A s< 0, B s< 0), (A s< 0, B s>= 0), (A s>= 0, B s< 0) and
9289   //    (A s>= 0, B s>= 0).
9290   //
9291   // Note:
9292   // Despite (2), "FoundRHS s< INT_MIN - C" does not mean that "FoundRHS + C"
9293   // will not sign underflow.  For instance, say FoundLHS = (i8 -128), FoundRHS
9294   // = (i8 -127) and C = (i8 -100).  Then INT_MIN - C = (i8 -28), and FoundRHS
9295   // s< (INT_MIN - C).  Lack of sign overflow / underflow in "FoundRHS + C" is
9296   // neither necessary nor sufficient to prove "(FoundLHS + C) s< (FoundRHS +
9297   // C)".
9298 
9299   Optional<APInt> LDiff = computeConstantDifference(LHS, FoundLHS);
9300   Optional<APInt> RDiff = computeConstantDifference(RHS, FoundRHS);
9301   if (!LDiff || !RDiff || *LDiff != *RDiff)
9302     return false;
9303 
9304   if (LDiff->isMinValue())
9305     return true;
9306 
9307   APInt FoundRHSLimit;
9308 
9309   if (Pred == CmpInst::ICMP_ULT) {
9310     FoundRHSLimit = -(*RDiff);
9311   } else {
9312     assert(Pred == CmpInst::ICMP_SLT && "Checked above!");
9313     FoundRHSLimit = APInt::getSignedMinValue(getTypeSizeInBits(RHS->getType())) - *RDiff;
9314   }
9315 
9316   // Try to prove (1) or (2), as needed.
9317   return isLoopEntryGuardedByCond(L, Pred, FoundRHS,
9318                                   getConstant(FoundRHSLimit));
9319 }
9320 
9321 bool ScalarEvolution::isImpliedCondOperands(ICmpInst::Predicate Pred,
9322                                             const SCEV *LHS, const SCEV *RHS,
9323                                             const SCEV *FoundLHS,
9324                                             const SCEV *FoundRHS) {
9325   if (isImpliedCondOperandsViaRanges(Pred, LHS, RHS, FoundLHS, FoundRHS))
9326     return true;
9327 
9328   if (isImpliedCondOperandsViaNoOverflow(Pred, LHS, RHS, FoundLHS, FoundRHS))
9329     return true;
9330 
9331   return isImpliedCondOperandsHelper(Pred, LHS, RHS,
9332                                      FoundLHS, FoundRHS) ||
9333          // ~x < ~y --> x > y
9334          isImpliedCondOperandsHelper(Pred, LHS, RHS,
9335                                      getNotSCEV(FoundRHS),
9336                                      getNotSCEV(FoundLHS));
9337 }
9338 
9339 /// If Expr computes ~A, return A else return nullptr
9340 static const SCEV *MatchNotExpr(const SCEV *Expr) {
9341   const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Expr);
9342   if (!Add || Add->getNumOperands() != 2 ||
9343       !Add->getOperand(0)->isAllOnesValue())
9344     return nullptr;
9345 
9346   const SCEVMulExpr *AddRHS = dyn_cast<SCEVMulExpr>(Add->getOperand(1));
9347   if (!AddRHS || AddRHS->getNumOperands() != 2 ||
9348       !AddRHS->getOperand(0)->isAllOnesValue())
9349     return nullptr;
9350 
9351   return AddRHS->getOperand(1);
9352 }
9353 
9354 /// Is MaybeMaxExpr an SMax or UMax of Candidate and some other values?
9355 template<typename MaxExprType>
9356 static bool IsMaxConsistingOf(const SCEV *MaybeMaxExpr,
9357                               const SCEV *Candidate) {
9358   const MaxExprType *MaxExpr = dyn_cast<MaxExprType>(MaybeMaxExpr);
9359   if (!MaxExpr) return false;
9360 
9361   return find(MaxExpr->operands(), Candidate) != MaxExpr->op_end();
9362 }
9363 
9364 /// Is MaybeMinExpr an SMin or UMin of Candidate and some other values?
9365 template<typename MaxExprType>
9366 static bool IsMinConsistingOf(ScalarEvolution &SE,
9367                               const SCEV *MaybeMinExpr,
9368                               const SCEV *Candidate) {
9369   const SCEV *MaybeMaxExpr = MatchNotExpr(MaybeMinExpr);
9370   if (!MaybeMaxExpr)
9371     return false;
9372 
9373   return IsMaxConsistingOf<MaxExprType>(MaybeMaxExpr, SE.getNotSCEV(Candidate));
9374 }
9375 
9376 static bool IsKnownPredicateViaAddRecStart(ScalarEvolution &SE,
9377                                            ICmpInst::Predicate Pred,
9378                                            const SCEV *LHS, const SCEV *RHS) {
9379   // If both sides are affine addrecs for the same loop, with equal
9380   // steps, and we know the recurrences don't wrap, then we only
9381   // need to check the predicate on the starting values.
9382 
9383   if (!ICmpInst::isRelational(Pred))
9384     return false;
9385 
9386   const SCEVAddRecExpr *LAR = dyn_cast<SCEVAddRecExpr>(LHS);
9387   if (!LAR)
9388     return false;
9389   const SCEVAddRecExpr *RAR = dyn_cast<SCEVAddRecExpr>(RHS);
9390   if (!RAR)
9391     return false;
9392   if (LAR->getLoop() != RAR->getLoop())
9393     return false;
9394   if (!LAR->isAffine() || !RAR->isAffine())
9395     return false;
9396 
9397   if (LAR->getStepRecurrence(SE) != RAR->getStepRecurrence(SE))
9398     return false;
9399 
9400   SCEV::NoWrapFlags NW = ICmpInst::isSigned(Pred) ?
9401                          SCEV::FlagNSW : SCEV::FlagNUW;
9402   if (!LAR->getNoWrapFlags(NW) || !RAR->getNoWrapFlags(NW))
9403     return false;
9404 
9405   return SE.isKnownPredicate(Pred, LAR->getStart(), RAR->getStart());
9406 }
9407 
9408 /// Is LHS `Pred` RHS true on the virtue of LHS or RHS being a Min or Max
9409 /// expression?
9410 static bool IsKnownPredicateViaMinOrMax(ScalarEvolution &SE,
9411                                         ICmpInst::Predicate Pred,
9412                                         const SCEV *LHS, const SCEV *RHS) {
9413   switch (Pred) {
9414   default:
9415     return false;
9416 
9417   case ICmpInst::ICMP_SGE:
9418     std::swap(LHS, RHS);
9419     LLVM_FALLTHROUGH;
9420   case ICmpInst::ICMP_SLE:
9421     return
9422       // min(A, ...) <= A
9423       IsMinConsistingOf<SCEVSMaxExpr>(SE, LHS, RHS) ||
9424       // A <= max(A, ...)
9425       IsMaxConsistingOf<SCEVSMaxExpr>(RHS, LHS);
9426 
9427   case ICmpInst::ICMP_UGE:
9428     std::swap(LHS, RHS);
9429     LLVM_FALLTHROUGH;
9430   case ICmpInst::ICMP_ULE:
9431     return
9432       // min(A, ...) <= A
9433       IsMinConsistingOf<SCEVUMaxExpr>(SE, LHS, RHS) ||
9434       // A <= max(A, ...)
9435       IsMaxConsistingOf<SCEVUMaxExpr>(RHS, LHS);
9436   }
9437 
9438   llvm_unreachable("covered switch fell through?!");
9439 }
9440 
9441 bool ScalarEvolution::isImpliedViaOperations(ICmpInst::Predicate Pred,
9442                                              const SCEV *LHS, const SCEV *RHS,
9443                                              const SCEV *FoundLHS,
9444                                              const SCEV *FoundRHS,
9445                                              unsigned Depth) {
9446   assert(getTypeSizeInBits(LHS->getType()) ==
9447              getTypeSizeInBits(RHS->getType()) &&
9448          "LHS and RHS have different sizes?");
9449   assert(getTypeSizeInBits(FoundLHS->getType()) ==
9450              getTypeSizeInBits(FoundRHS->getType()) &&
9451          "FoundLHS and FoundRHS have different sizes?");
9452   // We want to avoid hurting the compile time with analysis of too big trees.
9453   if (Depth > MaxSCEVOperationsImplicationDepth)
9454     return false;
9455   // We only want to work with ICMP_SGT comparison so far.
9456   // TODO: Extend to ICMP_UGT?
9457   if (Pred == ICmpInst::ICMP_SLT) {
9458     Pred = ICmpInst::ICMP_SGT;
9459     std::swap(LHS, RHS);
9460     std::swap(FoundLHS, FoundRHS);
9461   }
9462   if (Pred != ICmpInst::ICMP_SGT)
9463     return false;
9464 
9465   auto GetOpFromSExt = [&](const SCEV *S) {
9466     if (auto *Ext = dyn_cast<SCEVSignExtendExpr>(S))
9467       return Ext->getOperand();
9468     // TODO: If S is a SCEVConstant then you can cheaply "strip" the sext off
9469     // the constant in some cases.
9470     return S;
9471   };
9472 
9473   // Acquire values from extensions.
9474   auto *OrigFoundLHS = FoundLHS;
9475   LHS = GetOpFromSExt(LHS);
9476   FoundLHS = GetOpFromSExt(FoundLHS);
9477 
9478   // Is the SGT predicate can be proved trivially or using the found context.
9479   auto IsSGTViaContext = [&](const SCEV *S1, const SCEV *S2) {
9480     return isKnownViaSimpleReasoning(ICmpInst::ICMP_SGT, S1, S2) ||
9481            isImpliedViaOperations(ICmpInst::ICMP_SGT, S1, S2, OrigFoundLHS,
9482                                   FoundRHS, Depth + 1);
9483   };
9484 
9485   if (auto *LHSAddExpr = dyn_cast<SCEVAddExpr>(LHS)) {
9486     // We want to avoid creation of any new non-constant SCEV. Since we are
9487     // going to compare the operands to RHS, we should be certain that we don't
9488     // need any size extensions for this. So let's decline all cases when the
9489     // sizes of types of LHS and RHS do not match.
9490     // TODO: Maybe try to get RHS from sext to catch more cases?
9491     if (getTypeSizeInBits(LHS->getType()) != getTypeSizeInBits(RHS->getType()))
9492       return false;
9493 
9494     // Should not overflow.
9495     if (!LHSAddExpr->hasNoSignedWrap())
9496       return false;
9497 
9498     auto *LL = LHSAddExpr->getOperand(0);
9499     auto *LR = LHSAddExpr->getOperand(1);
9500     auto *MinusOne = getNegativeSCEV(getOne(RHS->getType()));
9501 
9502     // Checks that S1 >= 0 && S2 > RHS, trivially or using the found context.
9503     auto IsSumGreaterThanRHS = [&](const SCEV *S1, const SCEV *S2) {
9504       return IsSGTViaContext(S1, MinusOne) && IsSGTViaContext(S2, RHS);
9505     };
9506     // Try to prove the following rule:
9507     // (LHS = LL + LR) && (LL >= 0) && (LR > RHS) => (LHS > RHS).
9508     // (LHS = LL + LR) && (LR >= 0) && (LL > RHS) => (LHS > RHS).
9509     if (IsSumGreaterThanRHS(LL, LR) || IsSumGreaterThanRHS(LR, LL))
9510       return true;
9511   } else if (auto *LHSUnknownExpr = dyn_cast<SCEVUnknown>(LHS)) {
9512     Value *LL, *LR;
9513     // FIXME: Once we have SDiv implemented, we can get rid of this matching.
9514 
9515     using namespace llvm::PatternMatch;
9516 
9517     if (match(LHSUnknownExpr->getValue(), m_SDiv(m_Value(LL), m_Value(LR)))) {
9518       // Rules for division.
9519       // We are going to perform some comparisons with Denominator and its
9520       // derivative expressions. In general case, creating a SCEV for it may
9521       // lead to a complex analysis of the entire graph, and in particular it
9522       // can request trip count recalculation for the same loop. This would
9523       // cache as SCEVCouldNotCompute to avoid the infinite recursion. To avoid
9524       // this, we only want to create SCEVs that are constants in this section.
9525       // So we bail if Denominator is not a constant.
9526       if (!isa<ConstantInt>(LR))
9527         return false;
9528 
9529       auto *Denominator = cast<SCEVConstant>(getSCEV(LR));
9530 
9531       // We want to make sure that LHS = FoundLHS / Denominator. If it is so,
9532       // then a SCEV for the numerator already exists and matches with FoundLHS.
9533       auto *Numerator = getExistingSCEV(LL);
9534       if (!Numerator || Numerator->getType() != FoundLHS->getType())
9535         return false;
9536 
9537       // Make sure that the numerator matches with FoundLHS and the denominator
9538       // is positive.
9539       if (!HasSameValue(Numerator, FoundLHS) || !isKnownPositive(Denominator))
9540         return false;
9541 
9542       auto *DTy = Denominator->getType();
9543       auto *FRHSTy = FoundRHS->getType();
9544       if (DTy->isPointerTy() != FRHSTy->isPointerTy())
9545         // One of types is a pointer and another one is not. We cannot extend
9546         // them properly to a wider type, so let us just reject this case.
9547         // TODO: Usage of getEffectiveSCEVType for DTy, FRHSTy etc should help
9548         // to avoid this check.
9549         return false;
9550 
9551       // Given that:
9552       // FoundLHS > FoundRHS, LHS = FoundLHS / Denominator, Denominator > 0.
9553       auto *WTy = getWiderType(DTy, FRHSTy);
9554       auto *DenominatorExt = getNoopOrSignExtend(Denominator, WTy);
9555       auto *FoundRHSExt = getNoopOrSignExtend(FoundRHS, WTy);
9556 
9557       // Try to prove the following rule:
9558       // (FoundRHS > Denominator - 2) && (RHS <= 0) => (LHS > RHS).
9559       // For example, given that FoundLHS > 2. It means that FoundLHS is at
9560       // least 3. If we divide it by Denominator < 4, we will have at least 1.
9561       auto *DenomMinusTwo = getMinusSCEV(DenominatorExt, getConstant(WTy, 2));
9562       if (isKnownNonPositive(RHS) &&
9563           IsSGTViaContext(FoundRHSExt, DenomMinusTwo))
9564         return true;
9565 
9566       // Try to prove the following rule:
9567       // (FoundRHS > -1 - Denominator) && (RHS < 0) => (LHS > RHS).
9568       // For example, given that FoundLHS > -3. Then FoundLHS is at least -2.
9569       // If we divide it by Denominator > 2, then:
9570       // 1. If FoundLHS is negative, then the result is 0.
9571       // 2. If FoundLHS is non-negative, then the result is non-negative.
9572       // Anyways, the result is non-negative.
9573       auto *MinusOne = getNegativeSCEV(getOne(WTy));
9574       auto *NegDenomMinusOne = getMinusSCEV(MinusOne, DenominatorExt);
9575       if (isKnownNegative(RHS) &&
9576           IsSGTViaContext(FoundRHSExt, NegDenomMinusOne))
9577         return true;
9578     }
9579   }
9580 
9581   return false;
9582 }
9583 
9584 bool
9585 ScalarEvolution::isKnownViaSimpleReasoning(ICmpInst::Predicate Pred,
9586                                            const SCEV *LHS, const SCEV *RHS) {
9587   return isKnownPredicateViaConstantRanges(Pred, LHS, RHS) ||
9588          IsKnownPredicateViaMinOrMax(*this, Pred, LHS, RHS) ||
9589          IsKnownPredicateViaAddRecStart(*this, Pred, LHS, RHS) ||
9590          isKnownPredicateViaNoOverflow(Pred, LHS, RHS);
9591 }
9592 
9593 bool
9594 ScalarEvolution::isImpliedCondOperandsHelper(ICmpInst::Predicate Pred,
9595                                              const SCEV *LHS, const SCEV *RHS,
9596                                              const SCEV *FoundLHS,
9597                                              const SCEV *FoundRHS) {
9598   switch (Pred) {
9599   default: llvm_unreachable("Unexpected ICmpInst::Predicate value!");
9600   case ICmpInst::ICMP_EQ:
9601   case ICmpInst::ICMP_NE:
9602     if (HasSameValue(LHS, FoundLHS) && HasSameValue(RHS, FoundRHS))
9603       return true;
9604     break;
9605   case ICmpInst::ICMP_SLT:
9606   case ICmpInst::ICMP_SLE:
9607     if (isKnownViaSimpleReasoning(ICmpInst::ICMP_SLE, LHS, FoundLHS) &&
9608         isKnownViaSimpleReasoning(ICmpInst::ICMP_SGE, RHS, FoundRHS))
9609       return true;
9610     break;
9611   case ICmpInst::ICMP_SGT:
9612   case ICmpInst::ICMP_SGE:
9613     if (isKnownViaSimpleReasoning(ICmpInst::ICMP_SGE, LHS, FoundLHS) &&
9614         isKnownViaSimpleReasoning(ICmpInst::ICMP_SLE, RHS, FoundRHS))
9615       return true;
9616     break;
9617   case ICmpInst::ICMP_ULT:
9618   case ICmpInst::ICMP_ULE:
9619     if (isKnownViaSimpleReasoning(ICmpInst::ICMP_ULE, LHS, FoundLHS) &&
9620         isKnownViaSimpleReasoning(ICmpInst::ICMP_UGE, RHS, FoundRHS))
9621       return true;
9622     break;
9623   case ICmpInst::ICMP_UGT:
9624   case ICmpInst::ICMP_UGE:
9625     if (isKnownViaSimpleReasoning(ICmpInst::ICMP_UGE, LHS, FoundLHS) &&
9626         isKnownViaSimpleReasoning(ICmpInst::ICMP_ULE, RHS, FoundRHS))
9627       return true;
9628     break;
9629   }
9630 
9631   // Maybe it can be proved via operations?
9632   if (isImpliedViaOperations(Pred, LHS, RHS, FoundLHS, FoundRHS))
9633     return true;
9634 
9635   return false;
9636 }
9637 
9638 bool ScalarEvolution::isImpliedCondOperandsViaRanges(ICmpInst::Predicate Pred,
9639                                                      const SCEV *LHS,
9640                                                      const SCEV *RHS,
9641                                                      const SCEV *FoundLHS,
9642                                                      const SCEV *FoundRHS) {
9643   if (!isa<SCEVConstant>(RHS) || !isa<SCEVConstant>(FoundRHS))
9644     // The restriction on `FoundRHS` be lifted easily -- it exists only to
9645     // reduce the compile time impact of this optimization.
9646     return false;
9647 
9648   Optional<APInt> Addend = computeConstantDifference(LHS, FoundLHS);
9649   if (!Addend)
9650     return false;
9651 
9652   const APInt &ConstFoundRHS = cast<SCEVConstant>(FoundRHS)->getAPInt();
9653 
9654   // `FoundLHSRange` is the range we know `FoundLHS` to be in by virtue of the
9655   // antecedent "`FoundLHS` `Pred` `FoundRHS`".
9656   ConstantRange FoundLHSRange =
9657       ConstantRange::makeAllowedICmpRegion(Pred, ConstFoundRHS);
9658 
9659   // Since `LHS` is `FoundLHS` + `Addend`, we can compute a range for `LHS`:
9660   ConstantRange LHSRange = FoundLHSRange.add(ConstantRange(*Addend));
9661 
9662   // We can also compute the range of values for `LHS` that satisfy the
9663   // consequent, "`LHS` `Pred` `RHS`":
9664   const APInt &ConstRHS = cast<SCEVConstant>(RHS)->getAPInt();
9665   ConstantRange SatisfyingLHSRange =
9666       ConstantRange::makeSatisfyingICmpRegion(Pred, ConstRHS);
9667 
9668   // The antecedent implies the consequent if every value of `LHS` that
9669   // satisfies the antecedent also satisfies the consequent.
9670   return SatisfyingLHSRange.contains(LHSRange);
9671 }
9672 
9673 bool ScalarEvolution::doesIVOverflowOnLT(const SCEV *RHS, const SCEV *Stride,
9674                                          bool IsSigned, bool NoWrap) {
9675   assert(isKnownPositive(Stride) && "Positive stride expected!");
9676 
9677   if (NoWrap) return false;
9678 
9679   unsigned BitWidth = getTypeSizeInBits(RHS->getType());
9680   const SCEV *One = getOne(Stride->getType());
9681 
9682   if (IsSigned) {
9683     APInt MaxRHS = getSignedRangeMax(RHS);
9684     APInt MaxValue = APInt::getSignedMaxValue(BitWidth);
9685     APInt MaxStrideMinusOne = getSignedRangeMax(getMinusSCEV(Stride, One));
9686 
9687     // SMaxRHS + SMaxStrideMinusOne > SMaxValue => overflow!
9688     return (std::move(MaxValue) - MaxStrideMinusOne).slt(MaxRHS);
9689   }
9690 
9691   APInt MaxRHS = getUnsignedRangeMax(RHS);
9692   APInt MaxValue = APInt::getMaxValue(BitWidth);
9693   APInt MaxStrideMinusOne = getUnsignedRangeMax(getMinusSCEV(Stride, One));
9694 
9695   // UMaxRHS + UMaxStrideMinusOne > UMaxValue => overflow!
9696   return (std::move(MaxValue) - MaxStrideMinusOne).ult(MaxRHS);
9697 }
9698 
9699 bool ScalarEvolution::doesIVOverflowOnGT(const SCEV *RHS, const SCEV *Stride,
9700                                          bool IsSigned, bool NoWrap) {
9701   if (NoWrap) return false;
9702 
9703   unsigned BitWidth = getTypeSizeInBits(RHS->getType());
9704   const SCEV *One = getOne(Stride->getType());
9705 
9706   if (IsSigned) {
9707     APInt MinRHS = getSignedRangeMin(RHS);
9708     APInt MinValue = APInt::getSignedMinValue(BitWidth);
9709     APInt MaxStrideMinusOne = getSignedRangeMax(getMinusSCEV(Stride, One));
9710 
9711     // SMinRHS - SMaxStrideMinusOne < SMinValue => overflow!
9712     return (std::move(MinValue) + MaxStrideMinusOne).sgt(MinRHS);
9713   }
9714 
9715   APInt MinRHS = getUnsignedRangeMin(RHS);
9716   APInt MinValue = APInt::getMinValue(BitWidth);
9717   APInt MaxStrideMinusOne = getUnsignedRangeMax(getMinusSCEV(Stride, One));
9718 
9719   // UMinRHS - UMaxStrideMinusOne < UMinValue => overflow!
9720   return (std::move(MinValue) + MaxStrideMinusOne).ugt(MinRHS);
9721 }
9722 
9723 const SCEV *ScalarEvolution::computeBECount(const SCEV *Delta, const SCEV *Step,
9724                                             bool Equality) {
9725   const SCEV *One = getOne(Step->getType());
9726   Delta = Equality ? getAddExpr(Delta, Step)
9727                    : getAddExpr(Delta, getMinusSCEV(Step, One));
9728   return getUDivExpr(Delta, Step);
9729 }
9730 
9731 const SCEV *ScalarEvolution::computeMaxBECountForLT(const SCEV *Start,
9732                                                     const SCEV *Stride,
9733                                                     const SCEV *End,
9734                                                     unsigned BitWidth,
9735                                                     bool IsSigned) {
9736 
9737   assert(!isKnownNonPositive(Stride) &&
9738          "Stride is expected strictly positive!");
9739   // Calculate the maximum backedge count based on the range of values
9740   // permitted by Start, End, and Stride.
9741   const SCEV *MaxBECount;
9742   APInt MinStart =
9743       IsSigned ? getSignedRangeMin(Start) : getUnsignedRangeMin(Start);
9744 
9745   APInt StrideForMaxBECount;
9746 
9747   bool PositiveStride = isKnownPositive(Stride);
9748   if (PositiveStride)
9749     StrideForMaxBECount =
9750         IsSigned ? getSignedRangeMin(Stride) : getUnsignedRangeMin(Stride);
9751   else
9752     // Using a stride of 1 is safe when computing max backedge taken count for
9753     // a loop with unknown stride.
9754     StrideForMaxBECount = APInt(BitWidth, 1, IsSigned);
9755 
9756   APInt MaxValue = IsSigned ? APInt::getSignedMaxValue(BitWidth)
9757                             : APInt::getMaxValue(BitWidth);
9758   APInt Limit = MaxValue - (StrideForMaxBECount - 1);
9759 
9760   // Although End can be a MAX expression we estimate MaxEnd considering only
9761   // the case End = RHS of the loop termination condition. This is safe because
9762   // in the other case (End - Start) is zero, leading to a zero maximum backedge
9763   // taken count.
9764   APInt MaxEnd = IsSigned ? APIntOps::smin(getSignedRangeMax(End), Limit)
9765                           : APIntOps::umin(getUnsignedRangeMax(End), Limit);
9766 
9767   MaxBECount = computeBECount(getConstant(MaxEnd - MinStart) /* Delta */,
9768                               getConstant(StrideForMaxBECount) /* Step */,
9769                               false /* Equality */);
9770 
9771   return MaxBECount;
9772 }
9773 
9774 ScalarEvolution::ExitLimit
9775 ScalarEvolution::howManyLessThans(const SCEV *LHS, const SCEV *RHS,
9776                                   const Loop *L, bool IsSigned,
9777                                   bool ControlsExit, bool AllowPredicates) {
9778   SmallPtrSet<const SCEVPredicate *, 4> Predicates;
9779 
9780   const SCEVAddRecExpr *IV = dyn_cast<SCEVAddRecExpr>(LHS);
9781   bool PredicatedIV = false;
9782 
9783   if (!IV && AllowPredicates) {
9784     // Try to make this an AddRec using runtime tests, in the first X
9785     // iterations of this loop, where X is the SCEV expression found by the
9786     // algorithm below.
9787     IV = convertSCEVToAddRecWithPredicates(LHS, L, Predicates);
9788     PredicatedIV = true;
9789   }
9790 
9791   // Avoid weird loops
9792   if (!IV || IV->getLoop() != L || !IV->isAffine())
9793     return getCouldNotCompute();
9794 
9795   bool NoWrap = ControlsExit &&
9796                 IV->getNoWrapFlags(IsSigned ? SCEV::FlagNSW : SCEV::FlagNUW);
9797 
9798   const SCEV *Stride = IV->getStepRecurrence(*this);
9799 
9800   bool PositiveStride = isKnownPositive(Stride);
9801 
9802   // Avoid negative or zero stride values.
9803   if (!PositiveStride) {
9804     // We can compute the correct backedge taken count for loops with unknown
9805     // strides if we can prove that the loop is not an infinite loop with side
9806     // effects. Here's the loop structure we are trying to handle -
9807     //
9808     // i = start
9809     // do {
9810     //   A[i] = i;
9811     //   i += s;
9812     // } while (i < end);
9813     //
9814     // The backedge taken count for such loops is evaluated as -
9815     // (max(end, start + stride) - start - 1) /u stride
9816     //
9817     // The additional preconditions that we need to check to prove correctness
9818     // of the above formula is as follows -
9819     //
9820     // a) IV is either nuw or nsw depending upon signedness (indicated by the
9821     //    NoWrap flag).
9822     // b) loop is single exit with no side effects.
9823     //
9824     //
9825     // Precondition a) implies that if the stride is negative, this is a single
9826     // trip loop. The backedge taken count formula reduces to zero in this case.
9827     //
9828     // Precondition b) implies that the unknown stride cannot be zero otherwise
9829     // we have UB.
9830     //
9831     // The positive stride case is the same as isKnownPositive(Stride) returning
9832     // true (original behavior of the function).
9833     //
9834     // We want to make sure that the stride is truly unknown as there are edge
9835     // cases where ScalarEvolution propagates no wrap flags to the
9836     // post-increment/decrement IV even though the increment/decrement operation
9837     // itself is wrapping. The computed backedge taken count may be wrong in
9838     // such cases. This is prevented by checking that the stride is not known to
9839     // be either positive or non-positive. For example, no wrap flags are
9840     // propagated to the post-increment IV of this loop with a trip count of 2 -
9841     //
9842     // unsigned char i;
9843     // for(i=127; i<128; i+=129)
9844     //   A[i] = i;
9845     //
9846     if (PredicatedIV || !NoWrap || isKnownNonPositive(Stride) ||
9847         !loopHasNoSideEffects(L))
9848       return getCouldNotCompute();
9849   } else if (!Stride->isOne() &&
9850              doesIVOverflowOnLT(RHS, Stride, IsSigned, NoWrap))
9851     // Avoid proven overflow cases: this will ensure that the backedge taken
9852     // count will not generate any unsigned overflow. Relaxed no-overflow
9853     // conditions exploit NoWrapFlags, allowing to optimize in presence of
9854     // undefined behaviors like the case of C language.
9855     return getCouldNotCompute();
9856 
9857   ICmpInst::Predicate Cond = IsSigned ? ICmpInst::ICMP_SLT
9858                                       : ICmpInst::ICMP_ULT;
9859   const SCEV *Start = IV->getStart();
9860   const SCEV *End = RHS;
9861   // When the RHS is not invariant, we do not know the end bound of the loop and
9862   // cannot calculate the ExactBECount needed by ExitLimit. However, we can
9863   // calculate the MaxBECount, given the start, stride and max value for the end
9864   // bound of the loop (RHS), and the fact that IV does not overflow (which is
9865   // checked above).
9866   if (!isLoopInvariant(RHS, L)) {
9867     const SCEV *MaxBECount = computeMaxBECountForLT(
9868         Start, Stride, RHS, getTypeSizeInBits(LHS->getType()), IsSigned);
9869     return ExitLimit(getCouldNotCompute() /* ExactNotTaken */, MaxBECount,
9870                      false /*MaxOrZero*/, Predicates);
9871   }
9872   // If the backedge is taken at least once, then it will be taken
9873   // (End-Start)/Stride times (rounded up to a multiple of Stride), where Start
9874   // is the LHS value of the less-than comparison the first time it is evaluated
9875   // and End is the RHS.
9876   const SCEV *BECountIfBackedgeTaken =
9877     computeBECount(getMinusSCEV(End, Start), Stride, false);
9878   // If the loop entry is guarded by the result of the backedge test of the
9879   // first loop iteration, then we know the backedge will be taken at least
9880   // once and so the backedge taken count is as above. If not then we use the
9881   // expression (max(End,Start)-Start)/Stride to describe the backedge count,
9882   // as if the backedge is taken at least once max(End,Start) is End and so the
9883   // result is as above, and if not max(End,Start) is Start so we get a backedge
9884   // count of zero.
9885   const SCEV *BECount;
9886   if (isLoopEntryGuardedByCond(L, Cond, getMinusSCEV(Start, Stride), RHS))
9887     BECount = BECountIfBackedgeTaken;
9888   else {
9889     End = IsSigned ? getSMaxExpr(RHS, Start) : getUMaxExpr(RHS, Start);
9890     BECount = computeBECount(getMinusSCEV(End, Start), Stride, false);
9891   }
9892 
9893   const SCEV *MaxBECount;
9894   bool MaxOrZero = false;
9895   if (isa<SCEVConstant>(BECount))
9896     MaxBECount = BECount;
9897   else if (isa<SCEVConstant>(BECountIfBackedgeTaken)) {
9898     // If we know exactly how many times the backedge will be taken if it's
9899     // taken at least once, then the backedge count will either be that or
9900     // zero.
9901     MaxBECount = BECountIfBackedgeTaken;
9902     MaxOrZero = true;
9903   } else {
9904     MaxBECount = computeMaxBECountForLT(
9905         Start, Stride, RHS, getTypeSizeInBits(LHS->getType()), IsSigned);
9906   }
9907 
9908   if (isa<SCEVCouldNotCompute>(MaxBECount) &&
9909       !isa<SCEVCouldNotCompute>(BECount))
9910     MaxBECount = getConstant(getUnsignedRangeMax(BECount));
9911 
9912   return ExitLimit(BECount, MaxBECount, MaxOrZero, Predicates);
9913 }
9914 
9915 ScalarEvolution::ExitLimit
9916 ScalarEvolution::howManyGreaterThans(const SCEV *LHS, const SCEV *RHS,
9917                                      const Loop *L, bool IsSigned,
9918                                      bool ControlsExit, bool AllowPredicates) {
9919   SmallPtrSet<const SCEVPredicate *, 4> Predicates;
9920   // We handle only IV > Invariant
9921   if (!isLoopInvariant(RHS, L))
9922     return getCouldNotCompute();
9923 
9924   const SCEVAddRecExpr *IV = dyn_cast<SCEVAddRecExpr>(LHS);
9925   if (!IV && AllowPredicates)
9926     // Try to make this an AddRec using runtime tests, in the first X
9927     // iterations of this loop, where X is the SCEV expression found by the
9928     // algorithm below.
9929     IV = convertSCEVToAddRecWithPredicates(LHS, L, Predicates);
9930 
9931   // Avoid weird loops
9932   if (!IV || IV->getLoop() != L || !IV->isAffine())
9933     return getCouldNotCompute();
9934 
9935   bool NoWrap = ControlsExit &&
9936                 IV->getNoWrapFlags(IsSigned ? SCEV::FlagNSW : SCEV::FlagNUW);
9937 
9938   const SCEV *Stride = getNegativeSCEV(IV->getStepRecurrence(*this));
9939 
9940   // Avoid negative or zero stride values
9941   if (!isKnownPositive(Stride))
9942     return getCouldNotCompute();
9943 
9944   // Avoid proven overflow cases: this will ensure that the backedge taken count
9945   // will not generate any unsigned overflow. Relaxed no-overflow conditions
9946   // exploit NoWrapFlags, allowing to optimize in presence of undefined
9947   // behaviors like the case of C language.
9948   if (!Stride->isOne() && doesIVOverflowOnGT(RHS, Stride, IsSigned, NoWrap))
9949     return getCouldNotCompute();
9950 
9951   ICmpInst::Predicate Cond = IsSigned ? ICmpInst::ICMP_SGT
9952                                       : ICmpInst::ICMP_UGT;
9953 
9954   const SCEV *Start = IV->getStart();
9955   const SCEV *End = RHS;
9956   if (!isLoopEntryGuardedByCond(L, Cond, getAddExpr(Start, Stride), RHS))
9957     End = IsSigned ? getSMinExpr(RHS, Start) : getUMinExpr(RHS, Start);
9958 
9959   const SCEV *BECount = computeBECount(getMinusSCEV(Start, End), Stride, false);
9960 
9961   APInt MaxStart = IsSigned ? getSignedRangeMax(Start)
9962                             : getUnsignedRangeMax(Start);
9963 
9964   APInt MinStride = IsSigned ? getSignedRangeMin(Stride)
9965                              : getUnsignedRangeMin(Stride);
9966 
9967   unsigned BitWidth = getTypeSizeInBits(LHS->getType());
9968   APInt Limit = IsSigned ? APInt::getSignedMinValue(BitWidth) + (MinStride - 1)
9969                          : APInt::getMinValue(BitWidth) + (MinStride - 1);
9970 
9971   // Although End can be a MIN expression we estimate MinEnd considering only
9972   // the case End = RHS. This is safe because in the other case (Start - End)
9973   // is zero, leading to a zero maximum backedge taken count.
9974   APInt MinEnd =
9975     IsSigned ? APIntOps::smax(getSignedRangeMin(RHS), Limit)
9976              : APIntOps::umax(getUnsignedRangeMin(RHS), Limit);
9977 
9978 
9979   const SCEV *MaxBECount = getCouldNotCompute();
9980   if (isa<SCEVConstant>(BECount))
9981     MaxBECount = BECount;
9982   else
9983     MaxBECount = computeBECount(getConstant(MaxStart - MinEnd),
9984                                 getConstant(MinStride), false);
9985 
9986   if (isa<SCEVCouldNotCompute>(MaxBECount))
9987     MaxBECount = BECount;
9988 
9989   return ExitLimit(BECount, MaxBECount, false, Predicates);
9990 }
9991 
9992 const SCEV *SCEVAddRecExpr::getNumIterationsInRange(const ConstantRange &Range,
9993                                                     ScalarEvolution &SE) const {
9994   if (Range.isFullSet())  // Infinite loop.
9995     return SE.getCouldNotCompute();
9996 
9997   // If the start is a non-zero constant, shift the range to simplify things.
9998   if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(getStart()))
9999     if (!SC->getValue()->isZero()) {
10000       SmallVector<const SCEV *, 4> Operands(op_begin(), op_end());
10001       Operands[0] = SE.getZero(SC->getType());
10002       const SCEV *Shifted = SE.getAddRecExpr(Operands, getLoop(),
10003                                              getNoWrapFlags(FlagNW));
10004       if (const auto *ShiftedAddRec = dyn_cast<SCEVAddRecExpr>(Shifted))
10005         return ShiftedAddRec->getNumIterationsInRange(
10006             Range.subtract(SC->getAPInt()), SE);
10007       // This is strange and shouldn't happen.
10008       return SE.getCouldNotCompute();
10009     }
10010 
10011   // The only time we can solve this is when we have all constant indices.
10012   // Otherwise, we cannot determine the overflow conditions.
10013   if (any_of(operands(), [](const SCEV *Op) { return !isa<SCEVConstant>(Op); }))
10014     return SE.getCouldNotCompute();
10015 
10016   // Okay at this point we know that all elements of the chrec are constants and
10017   // that the start element is zero.
10018 
10019   // First check to see if the range contains zero.  If not, the first
10020   // iteration exits.
10021   unsigned BitWidth = SE.getTypeSizeInBits(getType());
10022   if (!Range.contains(APInt(BitWidth, 0)))
10023     return SE.getZero(getType());
10024 
10025   if (isAffine()) {
10026     // If this is an affine expression then we have this situation:
10027     //   Solve {0,+,A} in Range  ===  Ax in Range
10028 
10029     // We know that zero is in the range.  If A is positive then we know that
10030     // the upper value of the range must be the first possible exit value.
10031     // If A is negative then the lower of the range is the last possible loop
10032     // value.  Also note that we already checked for a full range.
10033     APInt A = cast<SCEVConstant>(getOperand(1))->getAPInt();
10034     APInt End = A.sge(1) ? (Range.getUpper() - 1) : Range.getLower();
10035 
10036     // The exit value should be (End+A)/A.
10037     APInt ExitVal = (End + A).udiv(A);
10038     ConstantInt *ExitValue = ConstantInt::get(SE.getContext(), ExitVal);
10039 
10040     // Evaluate at the exit value.  If we really did fall out of the valid
10041     // range, then we computed our trip count, otherwise wrap around or other
10042     // things must have happened.
10043     ConstantInt *Val = EvaluateConstantChrecAtConstant(this, ExitValue, SE);
10044     if (Range.contains(Val->getValue()))
10045       return SE.getCouldNotCompute();  // Something strange happened
10046 
10047     // Ensure that the previous value is in the range.  This is a sanity check.
10048     assert(Range.contains(
10049            EvaluateConstantChrecAtConstant(this,
10050            ConstantInt::get(SE.getContext(), ExitVal - 1), SE)->getValue()) &&
10051            "Linear scev computation is off in a bad way!");
10052     return SE.getConstant(ExitValue);
10053   } else if (isQuadratic()) {
10054     // If this is a quadratic (3-term) AddRec {L,+,M,+,N}, find the roots of the
10055     // quadratic equation to solve it.  To do this, we must frame our problem in
10056     // terms of figuring out when zero is crossed, instead of when
10057     // Range.getUpper() is crossed.
10058     SmallVector<const SCEV *, 4> NewOps(op_begin(), op_end());
10059     NewOps[0] = SE.getNegativeSCEV(SE.getConstant(Range.getUpper()));
10060     const SCEV *NewAddRec = SE.getAddRecExpr(NewOps, getLoop(), FlagAnyWrap);
10061 
10062     // Next, solve the constructed addrec
10063     if (auto Roots =
10064             SolveQuadraticEquation(cast<SCEVAddRecExpr>(NewAddRec), SE)) {
10065       const SCEVConstant *R1 = Roots->first;
10066       const SCEVConstant *R2 = Roots->second;
10067       // Pick the smallest positive root value.
10068       if (ConstantInt *CB = dyn_cast<ConstantInt>(ConstantExpr::getICmp(
10069               ICmpInst::ICMP_ULT, R1->getValue(), R2->getValue()))) {
10070         if (!CB->getZExtValue())
10071           std::swap(R1, R2); // R1 is the minimum root now.
10072 
10073         // Make sure the root is not off by one.  The returned iteration should
10074         // not be in the range, but the previous one should be.  When solving
10075         // for "X*X < 5", for example, we should not return a root of 2.
10076         ConstantInt *R1Val =
10077             EvaluateConstantChrecAtConstant(this, R1->getValue(), SE);
10078         if (Range.contains(R1Val->getValue())) {
10079           // The next iteration must be out of the range...
10080           ConstantInt *NextVal =
10081               ConstantInt::get(SE.getContext(), R1->getAPInt() + 1);
10082 
10083           R1Val = EvaluateConstantChrecAtConstant(this, NextVal, SE);
10084           if (!Range.contains(R1Val->getValue()))
10085             return SE.getConstant(NextVal);
10086           return SE.getCouldNotCompute(); // Something strange happened
10087         }
10088 
10089         // If R1 was not in the range, then it is a good return value.  Make
10090         // sure that R1-1 WAS in the range though, just in case.
10091         ConstantInt *NextVal =
10092             ConstantInt::get(SE.getContext(), R1->getAPInt() - 1);
10093         R1Val = EvaluateConstantChrecAtConstant(this, NextVal, SE);
10094         if (Range.contains(R1Val->getValue()))
10095           return R1;
10096         return SE.getCouldNotCompute(); // Something strange happened
10097       }
10098     }
10099   }
10100 
10101   return SE.getCouldNotCompute();
10102 }
10103 
10104 // Return true when S contains at least an undef value.
10105 static inline bool containsUndefs(const SCEV *S) {
10106   return SCEVExprContains(S, [](const SCEV *S) {
10107     if (const auto *SU = dyn_cast<SCEVUnknown>(S))
10108       return isa<UndefValue>(SU->getValue());
10109     else if (const auto *SC = dyn_cast<SCEVConstant>(S))
10110       return isa<UndefValue>(SC->getValue());
10111     return false;
10112   });
10113 }
10114 
10115 namespace {
10116 
10117 // Collect all steps of SCEV expressions.
10118 struct SCEVCollectStrides {
10119   ScalarEvolution &SE;
10120   SmallVectorImpl<const SCEV *> &Strides;
10121 
10122   SCEVCollectStrides(ScalarEvolution &SE, SmallVectorImpl<const SCEV *> &S)
10123       : SE(SE), Strides(S) {}
10124 
10125   bool follow(const SCEV *S) {
10126     if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S))
10127       Strides.push_back(AR->getStepRecurrence(SE));
10128     return true;
10129   }
10130 
10131   bool isDone() const { return false; }
10132 };
10133 
10134 // Collect all SCEVUnknown and SCEVMulExpr expressions.
10135 struct SCEVCollectTerms {
10136   SmallVectorImpl<const SCEV *> &Terms;
10137 
10138   SCEVCollectTerms(SmallVectorImpl<const SCEV *> &T) : Terms(T) {}
10139 
10140   bool follow(const SCEV *S) {
10141     if (isa<SCEVUnknown>(S) || isa<SCEVMulExpr>(S) ||
10142         isa<SCEVSignExtendExpr>(S)) {
10143       if (!containsUndefs(S))
10144         Terms.push_back(S);
10145 
10146       // Stop recursion: once we collected a term, do not walk its operands.
10147       return false;
10148     }
10149 
10150     // Keep looking.
10151     return true;
10152   }
10153 
10154   bool isDone() const { return false; }
10155 };
10156 
10157 // Check if a SCEV contains an AddRecExpr.
10158 struct SCEVHasAddRec {
10159   bool &ContainsAddRec;
10160 
10161   SCEVHasAddRec(bool &ContainsAddRec) : ContainsAddRec(ContainsAddRec) {
10162     ContainsAddRec = false;
10163   }
10164 
10165   bool follow(const SCEV *S) {
10166     if (isa<SCEVAddRecExpr>(S)) {
10167       ContainsAddRec = true;
10168 
10169       // Stop recursion: once we collected a term, do not walk its operands.
10170       return false;
10171     }
10172 
10173     // Keep looking.
10174     return true;
10175   }
10176 
10177   bool isDone() const { return false; }
10178 };
10179 
10180 // Find factors that are multiplied with an expression that (possibly as a
10181 // subexpression) contains an AddRecExpr. In the expression:
10182 //
10183 //  8 * (100 +  %p * %q * (%a + {0, +, 1}_loop))
10184 //
10185 // "%p * %q" are factors multiplied by the expression "(%a + {0, +, 1}_loop)"
10186 // that contains the AddRec {0, +, 1}_loop. %p * %q are likely to be array size
10187 // parameters as they form a product with an induction variable.
10188 //
10189 // This collector expects all array size parameters to be in the same MulExpr.
10190 // It might be necessary to later add support for collecting parameters that are
10191 // spread over different nested MulExpr.
10192 struct SCEVCollectAddRecMultiplies {
10193   SmallVectorImpl<const SCEV *> &Terms;
10194   ScalarEvolution &SE;
10195 
10196   SCEVCollectAddRecMultiplies(SmallVectorImpl<const SCEV *> &T, ScalarEvolution &SE)
10197       : Terms(T), SE(SE) {}
10198 
10199   bool follow(const SCEV *S) {
10200     if (auto *Mul = dyn_cast<SCEVMulExpr>(S)) {
10201       bool HasAddRec = false;
10202       SmallVector<const SCEV *, 0> Operands;
10203       for (auto Op : Mul->operands()) {
10204         const SCEVUnknown *Unknown = dyn_cast<SCEVUnknown>(Op);
10205         if (Unknown && !isa<CallInst>(Unknown->getValue())) {
10206           Operands.push_back(Op);
10207         } else if (Unknown) {
10208           HasAddRec = true;
10209         } else {
10210           bool ContainsAddRec;
10211           SCEVHasAddRec ContiansAddRec(ContainsAddRec);
10212           visitAll(Op, ContiansAddRec);
10213           HasAddRec |= ContainsAddRec;
10214         }
10215       }
10216       if (Operands.size() == 0)
10217         return true;
10218 
10219       if (!HasAddRec)
10220         return false;
10221 
10222       Terms.push_back(SE.getMulExpr(Operands));
10223       // Stop recursion: once we collected a term, do not walk its operands.
10224       return false;
10225     }
10226 
10227     // Keep looking.
10228     return true;
10229   }
10230 
10231   bool isDone() const { return false; }
10232 };
10233 
10234 } // end anonymous namespace
10235 
10236 /// Find parametric terms in this SCEVAddRecExpr. We first for parameters in
10237 /// two places:
10238 ///   1) The strides of AddRec expressions.
10239 ///   2) Unknowns that are multiplied with AddRec expressions.
10240 void ScalarEvolution::collectParametricTerms(const SCEV *Expr,
10241     SmallVectorImpl<const SCEV *> &Terms) {
10242   SmallVector<const SCEV *, 4> Strides;
10243   SCEVCollectStrides StrideCollector(*this, Strides);
10244   visitAll(Expr, StrideCollector);
10245 
10246   DEBUG({
10247       dbgs() << "Strides:\n";
10248       for (const SCEV *S : Strides)
10249         dbgs() << *S << "\n";
10250     });
10251 
10252   for (const SCEV *S : Strides) {
10253     SCEVCollectTerms TermCollector(Terms);
10254     visitAll(S, TermCollector);
10255   }
10256 
10257   DEBUG({
10258       dbgs() << "Terms:\n";
10259       for (const SCEV *T : Terms)
10260         dbgs() << *T << "\n";
10261     });
10262 
10263   SCEVCollectAddRecMultiplies MulCollector(Terms, *this);
10264   visitAll(Expr, MulCollector);
10265 }
10266 
10267 static bool findArrayDimensionsRec(ScalarEvolution &SE,
10268                                    SmallVectorImpl<const SCEV *> &Terms,
10269                                    SmallVectorImpl<const SCEV *> &Sizes) {
10270   int Last = Terms.size() - 1;
10271   const SCEV *Step = Terms[Last];
10272 
10273   // End of recursion.
10274   if (Last == 0) {
10275     if (const SCEVMulExpr *M = dyn_cast<SCEVMulExpr>(Step)) {
10276       SmallVector<const SCEV *, 2> Qs;
10277       for (const SCEV *Op : M->operands())
10278         if (!isa<SCEVConstant>(Op))
10279           Qs.push_back(Op);
10280 
10281       Step = SE.getMulExpr(Qs);
10282     }
10283 
10284     Sizes.push_back(Step);
10285     return true;
10286   }
10287 
10288   for (const SCEV *&Term : Terms) {
10289     // Normalize the terms before the next call to findArrayDimensionsRec.
10290     const SCEV *Q, *R;
10291     SCEVDivision::divide(SE, Term, Step, &Q, &R);
10292 
10293     // Bail out when GCD does not evenly divide one of the terms.
10294     if (!R->isZero())
10295       return false;
10296 
10297     Term = Q;
10298   }
10299 
10300   // Remove all SCEVConstants.
10301   Terms.erase(
10302       remove_if(Terms, [](const SCEV *E) { return isa<SCEVConstant>(E); }),
10303       Terms.end());
10304 
10305   if (Terms.size() > 0)
10306     if (!findArrayDimensionsRec(SE, Terms, Sizes))
10307       return false;
10308 
10309   Sizes.push_back(Step);
10310   return true;
10311 }
10312 
10313 // Returns true when one of the SCEVs of Terms contains a SCEVUnknown parameter.
10314 static inline bool containsParameters(SmallVectorImpl<const SCEV *> &Terms) {
10315   for (const SCEV *T : Terms)
10316     if (SCEVExprContains(T, isa<SCEVUnknown, const SCEV *>))
10317       return true;
10318   return false;
10319 }
10320 
10321 // Return the number of product terms in S.
10322 static inline int numberOfTerms(const SCEV *S) {
10323   if (const SCEVMulExpr *Expr = dyn_cast<SCEVMulExpr>(S))
10324     return Expr->getNumOperands();
10325   return 1;
10326 }
10327 
10328 static const SCEV *removeConstantFactors(ScalarEvolution &SE, const SCEV *T) {
10329   if (isa<SCEVConstant>(T))
10330     return nullptr;
10331 
10332   if (isa<SCEVUnknown>(T))
10333     return T;
10334 
10335   if (const SCEVMulExpr *M = dyn_cast<SCEVMulExpr>(T)) {
10336     SmallVector<const SCEV *, 2> Factors;
10337     for (const SCEV *Op : M->operands())
10338       if (!isa<SCEVConstant>(Op))
10339         Factors.push_back(Op);
10340 
10341     return SE.getMulExpr(Factors);
10342   }
10343 
10344   return T;
10345 }
10346 
10347 /// Return the size of an element read or written by Inst.
10348 const SCEV *ScalarEvolution::getElementSize(Instruction *Inst) {
10349   Type *Ty;
10350   if (StoreInst *Store = dyn_cast<StoreInst>(Inst))
10351     Ty = Store->getValueOperand()->getType();
10352   else if (LoadInst *Load = dyn_cast<LoadInst>(Inst))
10353     Ty = Load->getType();
10354   else
10355     return nullptr;
10356 
10357   Type *ETy = getEffectiveSCEVType(PointerType::getUnqual(Ty));
10358   return getSizeOfExpr(ETy, Ty);
10359 }
10360 
10361 void ScalarEvolution::findArrayDimensions(SmallVectorImpl<const SCEV *> &Terms,
10362                                           SmallVectorImpl<const SCEV *> &Sizes,
10363                                           const SCEV *ElementSize) {
10364   if (Terms.size() < 1 || !ElementSize)
10365     return;
10366 
10367   // Early return when Terms do not contain parameters: we do not delinearize
10368   // non parametric SCEVs.
10369   if (!containsParameters(Terms))
10370     return;
10371 
10372   DEBUG({
10373       dbgs() << "Terms:\n";
10374       for (const SCEV *T : Terms)
10375         dbgs() << *T << "\n";
10376     });
10377 
10378   // Remove duplicates.
10379   array_pod_sort(Terms.begin(), Terms.end());
10380   Terms.erase(std::unique(Terms.begin(), Terms.end()), Terms.end());
10381 
10382   // Put larger terms first.
10383   std::sort(Terms.begin(), Terms.end(), [](const SCEV *LHS, const SCEV *RHS) {
10384     return numberOfTerms(LHS) > numberOfTerms(RHS);
10385   });
10386 
10387   // Try to divide all terms by the element size. If term is not divisible by
10388   // element size, proceed with the original term.
10389   for (const SCEV *&Term : Terms) {
10390     const SCEV *Q, *R;
10391     SCEVDivision::divide(*this, Term, ElementSize, &Q, &R);
10392     if (!Q->isZero())
10393       Term = Q;
10394   }
10395 
10396   SmallVector<const SCEV *, 4> NewTerms;
10397 
10398   // Remove constant factors.
10399   for (const SCEV *T : Terms)
10400     if (const SCEV *NewT = removeConstantFactors(*this, T))
10401       NewTerms.push_back(NewT);
10402 
10403   DEBUG({
10404       dbgs() << "Terms after sorting:\n";
10405       for (const SCEV *T : NewTerms)
10406         dbgs() << *T << "\n";
10407     });
10408 
10409   if (NewTerms.empty() || !findArrayDimensionsRec(*this, NewTerms, Sizes)) {
10410     Sizes.clear();
10411     return;
10412   }
10413 
10414   // The last element to be pushed into Sizes is the size of an element.
10415   Sizes.push_back(ElementSize);
10416 
10417   DEBUG({
10418       dbgs() << "Sizes:\n";
10419       for (const SCEV *S : Sizes)
10420         dbgs() << *S << "\n";
10421     });
10422 }
10423 
10424 void ScalarEvolution::computeAccessFunctions(
10425     const SCEV *Expr, SmallVectorImpl<const SCEV *> &Subscripts,
10426     SmallVectorImpl<const SCEV *> &Sizes) {
10427   // Early exit in case this SCEV is not an affine multivariate function.
10428   if (Sizes.empty())
10429     return;
10430 
10431   if (auto *AR = dyn_cast<SCEVAddRecExpr>(Expr))
10432     if (!AR->isAffine())
10433       return;
10434 
10435   const SCEV *Res = Expr;
10436   int Last = Sizes.size() - 1;
10437   for (int i = Last; i >= 0; i--) {
10438     const SCEV *Q, *R;
10439     SCEVDivision::divide(*this, Res, Sizes[i], &Q, &R);
10440 
10441     DEBUG({
10442         dbgs() << "Res: " << *Res << "\n";
10443         dbgs() << "Sizes[i]: " << *Sizes[i] << "\n";
10444         dbgs() << "Res divided by Sizes[i]:\n";
10445         dbgs() << "Quotient: " << *Q << "\n";
10446         dbgs() << "Remainder: " << *R << "\n";
10447       });
10448 
10449     Res = Q;
10450 
10451     // Do not record the last subscript corresponding to the size of elements in
10452     // the array.
10453     if (i == Last) {
10454 
10455       // Bail out if the remainder is too complex.
10456       if (isa<SCEVAddRecExpr>(R)) {
10457         Subscripts.clear();
10458         Sizes.clear();
10459         return;
10460       }
10461 
10462       continue;
10463     }
10464 
10465     // Record the access function for the current subscript.
10466     Subscripts.push_back(R);
10467   }
10468 
10469   // Also push in last position the remainder of the last division: it will be
10470   // the access function of the innermost dimension.
10471   Subscripts.push_back(Res);
10472 
10473   std::reverse(Subscripts.begin(), Subscripts.end());
10474 
10475   DEBUG({
10476       dbgs() << "Subscripts:\n";
10477       for (const SCEV *S : Subscripts)
10478         dbgs() << *S << "\n";
10479     });
10480 }
10481 
10482 /// Splits the SCEV into two vectors of SCEVs representing the subscripts and
10483 /// sizes of an array access. Returns the remainder of the delinearization that
10484 /// is the offset start of the array.  The SCEV->delinearize algorithm computes
10485 /// the multiples of SCEV coefficients: that is a pattern matching of sub
10486 /// expressions in the stride and base of a SCEV corresponding to the
10487 /// computation of a GCD (greatest common divisor) of base and stride.  When
10488 /// SCEV->delinearize fails, it returns the SCEV unchanged.
10489 ///
10490 /// For example: when analyzing the memory access A[i][j][k] in this loop nest
10491 ///
10492 ///  void foo(long n, long m, long o, double A[n][m][o]) {
10493 ///
10494 ///    for (long i = 0; i < n; i++)
10495 ///      for (long j = 0; j < m; j++)
10496 ///        for (long k = 0; k < o; k++)
10497 ///          A[i][j][k] = 1.0;
10498 ///  }
10499 ///
10500 /// the delinearization input is the following AddRec SCEV:
10501 ///
10502 ///  AddRec: {{{%A,+,(8 * %m * %o)}<%for.i>,+,(8 * %o)}<%for.j>,+,8}<%for.k>
10503 ///
10504 /// From this SCEV, we are able to say that the base offset of the access is %A
10505 /// because it appears as an offset that does not divide any of the strides in
10506 /// the loops:
10507 ///
10508 ///  CHECK: Base offset: %A
10509 ///
10510 /// and then SCEV->delinearize determines the size of some of the dimensions of
10511 /// the array as these are the multiples by which the strides are happening:
10512 ///
10513 ///  CHECK: ArrayDecl[UnknownSize][%m][%o] with elements of sizeof(double) bytes.
10514 ///
10515 /// Note that the outermost dimension remains of UnknownSize because there are
10516 /// no strides that would help identifying the size of the last dimension: when
10517 /// the array has been statically allocated, one could compute the size of that
10518 /// dimension by dividing the overall size of the array by the size of the known
10519 /// dimensions: %m * %o * 8.
10520 ///
10521 /// Finally delinearize provides the access functions for the array reference
10522 /// that does correspond to A[i][j][k] of the above C testcase:
10523 ///
10524 ///  CHECK: ArrayRef[{0,+,1}<%for.i>][{0,+,1}<%for.j>][{0,+,1}<%for.k>]
10525 ///
10526 /// The testcases are checking the output of a function pass:
10527 /// DelinearizationPass that walks through all loads and stores of a function
10528 /// asking for the SCEV of the memory access with respect to all enclosing
10529 /// loops, calling SCEV->delinearize on that and printing the results.
10530 void ScalarEvolution::delinearize(const SCEV *Expr,
10531                                  SmallVectorImpl<const SCEV *> &Subscripts,
10532                                  SmallVectorImpl<const SCEV *> &Sizes,
10533                                  const SCEV *ElementSize) {
10534   // First step: collect parametric terms.
10535   SmallVector<const SCEV *, 4> Terms;
10536   collectParametricTerms(Expr, Terms);
10537 
10538   if (Terms.empty())
10539     return;
10540 
10541   // Second step: find subscript sizes.
10542   findArrayDimensions(Terms, Sizes, ElementSize);
10543 
10544   if (Sizes.empty())
10545     return;
10546 
10547   // Third step: compute the access functions for each subscript.
10548   computeAccessFunctions(Expr, Subscripts, Sizes);
10549 
10550   if (Subscripts.empty())
10551     return;
10552 
10553   DEBUG({
10554       dbgs() << "succeeded to delinearize " << *Expr << "\n";
10555       dbgs() << "ArrayDecl[UnknownSize]";
10556       for (const SCEV *S : Sizes)
10557         dbgs() << "[" << *S << "]";
10558 
10559       dbgs() << "\nArrayRef";
10560       for (const SCEV *S : Subscripts)
10561         dbgs() << "[" << *S << "]";
10562       dbgs() << "\n";
10563     });
10564 }
10565 
10566 //===----------------------------------------------------------------------===//
10567 //                   SCEVCallbackVH Class Implementation
10568 //===----------------------------------------------------------------------===//
10569 
10570 void ScalarEvolution::SCEVCallbackVH::deleted() {
10571   assert(SE && "SCEVCallbackVH called with a null ScalarEvolution!");
10572   if (PHINode *PN = dyn_cast<PHINode>(getValPtr()))
10573     SE->ConstantEvolutionLoopExitValue.erase(PN);
10574   SE->eraseValueFromMap(getValPtr());
10575   // this now dangles!
10576 }
10577 
10578 void ScalarEvolution::SCEVCallbackVH::allUsesReplacedWith(Value *V) {
10579   assert(SE && "SCEVCallbackVH called with a null ScalarEvolution!");
10580 
10581   // Forget all the expressions associated with users of the old value,
10582   // so that future queries will recompute the expressions using the new
10583   // value.
10584   Value *Old = getValPtr();
10585   SmallVector<User *, 16> Worklist(Old->user_begin(), Old->user_end());
10586   SmallPtrSet<User *, 8> Visited;
10587   while (!Worklist.empty()) {
10588     User *U = Worklist.pop_back_val();
10589     // Deleting the Old value will cause this to dangle. Postpone
10590     // that until everything else is done.
10591     if (U == Old)
10592       continue;
10593     if (!Visited.insert(U).second)
10594       continue;
10595     if (PHINode *PN = dyn_cast<PHINode>(U))
10596       SE->ConstantEvolutionLoopExitValue.erase(PN);
10597     SE->eraseValueFromMap(U);
10598     Worklist.insert(Worklist.end(), U->user_begin(), U->user_end());
10599   }
10600   // Delete the Old value.
10601   if (PHINode *PN = dyn_cast<PHINode>(Old))
10602     SE->ConstantEvolutionLoopExitValue.erase(PN);
10603   SE->eraseValueFromMap(Old);
10604   // this now dangles!
10605 }
10606 
10607 ScalarEvolution::SCEVCallbackVH::SCEVCallbackVH(Value *V, ScalarEvolution *se)
10608   : CallbackVH(V), SE(se) {}
10609 
10610 //===----------------------------------------------------------------------===//
10611 //                   ScalarEvolution Class Implementation
10612 //===----------------------------------------------------------------------===//
10613 
10614 ScalarEvolution::ScalarEvolution(Function &F, TargetLibraryInfo &TLI,
10615                                  AssumptionCache &AC, DominatorTree &DT,
10616                                  LoopInfo &LI)
10617     : F(F), TLI(TLI), AC(AC), DT(DT), LI(LI),
10618       CouldNotCompute(new SCEVCouldNotCompute()), ValuesAtScopes(64),
10619       LoopDispositions(64), BlockDispositions(64) {
10620   // To use guards for proving predicates, we need to scan every instruction in
10621   // relevant basic blocks, and not just terminators.  Doing this is a waste of
10622   // time if the IR does not actually contain any calls to
10623   // @llvm.experimental.guard, so do a quick check and remember this beforehand.
10624   //
10625   // This pessimizes the case where a pass that preserves ScalarEvolution wants
10626   // to _add_ guards to the module when there weren't any before, and wants
10627   // ScalarEvolution to optimize based on those guards.  For now we prefer to be
10628   // efficient in lieu of being smart in that rather obscure case.
10629 
10630   auto *GuardDecl = F.getParent()->getFunction(
10631       Intrinsic::getName(Intrinsic::experimental_guard));
10632   HasGuards = GuardDecl && !GuardDecl->use_empty();
10633 }
10634 
10635 ScalarEvolution::ScalarEvolution(ScalarEvolution &&Arg)
10636     : F(Arg.F), HasGuards(Arg.HasGuards), TLI(Arg.TLI), AC(Arg.AC), DT(Arg.DT),
10637       LI(Arg.LI), CouldNotCompute(std::move(Arg.CouldNotCompute)),
10638       ValueExprMap(std::move(Arg.ValueExprMap)),
10639       PendingLoopPredicates(std::move(Arg.PendingLoopPredicates)),
10640       MinTrailingZerosCache(std::move(Arg.MinTrailingZerosCache)),
10641       BackedgeTakenCounts(std::move(Arg.BackedgeTakenCounts)),
10642       PredicatedBackedgeTakenCounts(
10643           std::move(Arg.PredicatedBackedgeTakenCounts)),
10644       ExitLimits(std::move(Arg.ExitLimits)),
10645       ConstantEvolutionLoopExitValue(
10646           std::move(Arg.ConstantEvolutionLoopExitValue)),
10647       ValuesAtScopes(std::move(Arg.ValuesAtScopes)),
10648       LoopDispositions(std::move(Arg.LoopDispositions)),
10649       LoopPropertiesCache(std::move(Arg.LoopPropertiesCache)),
10650       BlockDispositions(std::move(Arg.BlockDispositions)),
10651       UnsignedRanges(std::move(Arg.UnsignedRanges)),
10652       SignedRanges(std::move(Arg.SignedRanges)),
10653       UniqueSCEVs(std::move(Arg.UniqueSCEVs)),
10654       UniquePreds(std::move(Arg.UniquePreds)),
10655       SCEVAllocator(std::move(Arg.SCEVAllocator)),
10656       LoopUsers(std::move(Arg.LoopUsers)),
10657       PredicatedSCEVRewrites(std::move(Arg.PredicatedSCEVRewrites)),
10658       FirstUnknown(Arg.FirstUnknown) {
10659   Arg.FirstUnknown = nullptr;
10660 }
10661 
10662 ScalarEvolution::~ScalarEvolution() {
10663   // Iterate through all the SCEVUnknown instances and call their
10664   // destructors, so that they release their references to their values.
10665   for (SCEVUnknown *U = FirstUnknown; U;) {
10666     SCEVUnknown *Tmp = U;
10667     U = U->Next;
10668     Tmp->~SCEVUnknown();
10669   }
10670   FirstUnknown = nullptr;
10671 
10672   ExprValueMap.clear();
10673   ValueExprMap.clear();
10674   HasRecMap.clear();
10675 
10676   // Free any extra memory created for ExitNotTakenInfo in the unlikely event
10677   // that a loop had multiple computable exits.
10678   for (auto &BTCI : BackedgeTakenCounts)
10679     BTCI.second.clear();
10680   for (auto &BTCI : PredicatedBackedgeTakenCounts)
10681     BTCI.second.clear();
10682 
10683   assert(PendingLoopPredicates.empty() && "isImpliedCond garbage");
10684   assert(!WalkingBEDominatingConds && "isLoopBackedgeGuardedByCond garbage!");
10685   assert(!ProvingSplitPredicate && "ProvingSplitPredicate garbage!");
10686 }
10687 
10688 bool ScalarEvolution::hasLoopInvariantBackedgeTakenCount(const Loop *L) {
10689   return !isa<SCEVCouldNotCompute>(getBackedgeTakenCount(L));
10690 }
10691 
10692 static void PrintLoopInfo(raw_ostream &OS, ScalarEvolution *SE,
10693                           const Loop *L) {
10694   // Print all inner loops first
10695   for (Loop *I : *L)
10696     PrintLoopInfo(OS, SE, I);
10697 
10698   OS << "Loop ";
10699   L->getHeader()->printAsOperand(OS, /*PrintType=*/false);
10700   OS << ": ";
10701 
10702   SmallVector<BasicBlock *, 8> ExitBlocks;
10703   L->getExitBlocks(ExitBlocks);
10704   if (ExitBlocks.size() != 1)
10705     OS << "<multiple exits> ";
10706 
10707   if (SE->hasLoopInvariantBackedgeTakenCount(L)) {
10708     OS << "backedge-taken count is " << *SE->getBackedgeTakenCount(L);
10709   } else {
10710     OS << "Unpredictable backedge-taken count. ";
10711   }
10712 
10713   OS << "\n"
10714         "Loop ";
10715   L->getHeader()->printAsOperand(OS, /*PrintType=*/false);
10716   OS << ": ";
10717 
10718   if (!isa<SCEVCouldNotCompute>(SE->getMaxBackedgeTakenCount(L))) {
10719     OS << "max backedge-taken count is " << *SE->getMaxBackedgeTakenCount(L);
10720     if (SE->isBackedgeTakenCountMaxOrZero(L))
10721       OS << ", actual taken count either this or zero.";
10722   } else {
10723     OS << "Unpredictable max backedge-taken count. ";
10724   }
10725 
10726   OS << "\n"
10727         "Loop ";
10728   L->getHeader()->printAsOperand(OS, /*PrintType=*/false);
10729   OS << ": ";
10730 
10731   SCEVUnionPredicate Pred;
10732   auto PBT = SE->getPredicatedBackedgeTakenCount(L, Pred);
10733   if (!isa<SCEVCouldNotCompute>(PBT)) {
10734     OS << "Predicated backedge-taken count is " << *PBT << "\n";
10735     OS << " Predicates:\n";
10736     Pred.print(OS, 4);
10737   } else {
10738     OS << "Unpredictable predicated backedge-taken count. ";
10739   }
10740   OS << "\n";
10741 
10742   if (SE->hasLoopInvariantBackedgeTakenCount(L)) {
10743     OS << "Loop ";
10744     L->getHeader()->printAsOperand(OS, /*PrintType=*/false);
10745     OS << ": ";
10746     OS << "Trip multiple is " << SE->getSmallConstantTripMultiple(L) << "\n";
10747   }
10748 }
10749 
10750 static StringRef loopDispositionToStr(ScalarEvolution::LoopDisposition LD) {
10751   switch (LD) {
10752   case ScalarEvolution::LoopVariant:
10753     return "Variant";
10754   case ScalarEvolution::LoopInvariant:
10755     return "Invariant";
10756   case ScalarEvolution::LoopComputable:
10757     return "Computable";
10758   }
10759   llvm_unreachable("Unknown ScalarEvolution::LoopDisposition kind!");
10760 }
10761 
10762 void ScalarEvolution::print(raw_ostream &OS) const {
10763   // ScalarEvolution's implementation of the print method is to print
10764   // out SCEV values of all instructions that are interesting. Doing
10765   // this potentially causes it to create new SCEV objects though,
10766   // which technically conflicts with the const qualifier. This isn't
10767   // observable from outside the class though, so casting away the
10768   // const isn't dangerous.
10769   ScalarEvolution &SE = *const_cast<ScalarEvolution *>(this);
10770 
10771   OS << "Classifying expressions for: ";
10772   F.printAsOperand(OS, /*PrintType=*/false);
10773   OS << "\n";
10774   for (Instruction &I : instructions(F))
10775     if (isSCEVable(I.getType()) && !isa<CmpInst>(I)) {
10776       OS << I << '\n';
10777       OS << "  -->  ";
10778       const SCEV *SV = SE.getSCEV(&I);
10779       SV->print(OS);
10780       if (!isa<SCEVCouldNotCompute>(SV)) {
10781         OS << " U: ";
10782         SE.getUnsignedRange(SV).print(OS);
10783         OS << " S: ";
10784         SE.getSignedRange(SV).print(OS);
10785       }
10786 
10787       const Loop *L = LI.getLoopFor(I.getParent());
10788 
10789       const SCEV *AtUse = SE.getSCEVAtScope(SV, L);
10790       if (AtUse != SV) {
10791         OS << "  -->  ";
10792         AtUse->print(OS);
10793         if (!isa<SCEVCouldNotCompute>(AtUse)) {
10794           OS << " U: ";
10795           SE.getUnsignedRange(AtUse).print(OS);
10796           OS << " S: ";
10797           SE.getSignedRange(AtUse).print(OS);
10798         }
10799       }
10800 
10801       if (L) {
10802         OS << "\t\t" "Exits: ";
10803         const SCEV *ExitValue = SE.getSCEVAtScope(SV, L->getParentLoop());
10804         if (!SE.isLoopInvariant(ExitValue, L)) {
10805           OS << "<<Unknown>>";
10806         } else {
10807           OS << *ExitValue;
10808         }
10809 
10810         bool First = true;
10811         for (auto *Iter = L; Iter; Iter = Iter->getParentLoop()) {
10812           if (First) {
10813             OS << "\t\t" "LoopDispositions: { ";
10814             First = false;
10815           } else {
10816             OS << ", ";
10817           }
10818 
10819           Iter->getHeader()->printAsOperand(OS, /*PrintType=*/false);
10820           OS << ": " << loopDispositionToStr(SE.getLoopDisposition(SV, Iter));
10821         }
10822 
10823         for (auto *InnerL : depth_first(L)) {
10824           if (InnerL == L)
10825             continue;
10826           if (First) {
10827             OS << "\t\t" "LoopDispositions: { ";
10828             First = false;
10829           } else {
10830             OS << ", ";
10831           }
10832 
10833           InnerL->getHeader()->printAsOperand(OS, /*PrintType=*/false);
10834           OS << ": " << loopDispositionToStr(SE.getLoopDisposition(SV, InnerL));
10835         }
10836 
10837         OS << " }";
10838       }
10839 
10840       OS << "\n";
10841     }
10842 
10843   OS << "Determining loop execution counts for: ";
10844   F.printAsOperand(OS, /*PrintType=*/false);
10845   OS << "\n";
10846   for (Loop *I : LI)
10847     PrintLoopInfo(OS, &SE, I);
10848 }
10849 
10850 ScalarEvolution::LoopDisposition
10851 ScalarEvolution::getLoopDisposition(const SCEV *S, const Loop *L) {
10852   auto &Values = LoopDispositions[S];
10853   for (auto &V : Values) {
10854     if (V.getPointer() == L)
10855       return V.getInt();
10856   }
10857   Values.emplace_back(L, LoopVariant);
10858   LoopDisposition D = computeLoopDisposition(S, L);
10859   auto &Values2 = LoopDispositions[S];
10860   for (auto &V : make_range(Values2.rbegin(), Values2.rend())) {
10861     if (V.getPointer() == L) {
10862       V.setInt(D);
10863       break;
10864     }
10865   }
10866   return D;
10867 }
10868 
10869 ScalarEvolution::LoopDisposition
10870 ScalarEvolution::computeLoopDisposition(const SCEV *S, const Loop *L) {
10871   switch (static_cast<SCEVTypes>(S->getSCEVType())) {
10872   case scConstant:
10873     return LoopInvariant;
10874   case scTruncate:
10875   case scZeroExtend:
10876   case scSignExtend:
10877     return getLoopDisposition(cast<SCEVCastExpr>(S)->getOperand(), L);
10878   case scAddRecExpr: {
10879     const SCEVAddRecExpr *AR = cast<SCEVAddRecExpr>(S);
10880 
10881     // If L is the addrec's loop, it's computable.
10882     if (AR->getLoop() == L)
10883       return LoopComputable;
10884 
10885     // Add recurrences are never invariant in the function-body (null loop).
10886     if (!L)
10887       return LoopVariant;
10888 
10889     // This recurrence is variant w.r.t. L if L contains AR's loop.
10890     if (L->contains(AR->getLoop()))
10891       return LoopVariant;
10892 
10893     // This recurrence is invariant w.r.t. L if AR's loop contains L.
10894     if (AR->getLoop()->contains(L))
10895       return LoopInvariant;
10896 
10897     // This recurrence is variant w.r.t. L if any of its operands
10898     // are variant.
10899     for (auto *Op : AR->operands())
10900       if (!isLoopInvariant(Op, L))
10901         return LoopVariant;
10902 
10903     // Otherwise it's loop-invariant.
10904     return LoopInvariant;
10905   }
10906   case scAddExpr:
10907   case scMulExpr:
10908   case scUMaxExpr:
10909   case scSMaxExpr: {
10910     bool HasVarying = false;
10911     for (auto *Op : cast<SCEVNAryExpr>(S)->operands()) {
10912       LoopDisposition D = getLoopDisposition(Op, L);
10913       if (D == LoopVariant)
10914         return LoopVariant;
10915       if (D == LoopComputable)
10916         HasVarying = true;
10917     }
10918     return HasVarying ? LoopComputable : LoopInvariant;
10919   }
10920   case scUDivExpr: {
10921     const SCEVUDivExpr *UDiv = cast<SCEVUDivExpr>(S);
10922     LoopDisposition LD = getLoopDisposition(UDiv->getLHS(), L);
10923     if (LD == LoopVariant)
10924       return LoopVariant;
10925     LoopDisposition RD = getLoopDisposition(UDiv->getRHS(), L);
10926     if (RD == LoopVariant)
10927       return LoopVariant;
10928     return (LD == LoopInvariant && RD == LoopInvariant) ?
10929            LoopInvariant : LoopComputable;
10930   }
10931   case scUnknown:
10932     // All non-instruction values are loop invariant.  All instructions are loop
10933     // invariant if they are not contained in the specified loop.
10934     // Instructions are never considered invariant in the function body
10935     // (null loop) because they are defined within the "loop".
10936     if (auto *I = dyn_cast<Instruction>(cast<SCEVUnknown>(S)->getValue()))
10937       return (L && !L->contains(I)) ? LoopInvariant : LoopVariant;
10938     return LoopInvariant;
10939   case scCouldNotCompute:
10940     llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
10941   }
10942   llvm_unreachable("Unknown SCEV kind!");
10943 }
10944 
10945 bool ScalarEvolution::isLoopInvariant(const SCEV *S, const Loop *L) {
10946   return getLoopDisposition(S, L) == LoopInvariant;
10947 }
10948 
10949 bool ScalarEvolution::hasComputableLoopEvolution(const SCEV *S, const Loop *L) {
10950   return getLoopDisposition(S, L) == LoopComputable;
10951 }
10952 
10953 ScalarEvolution::BlockDisposition
10954 ScalarEvolution::getBlockDisposition(const SCEV *S, const BasicBlock *BB) {
10955   auto &Values = BlockDispositions[S];
10956   for (auto &V : Values) {
10957     if (V.getPointer() == BB)
10958       return V.getInt();
10959   }
10960   Values.emplace_back(BB, DoesNotDominateBlock);
10961   BlockDisposition D = computeBlockDisposition(S, BB);
10962   auto &Values2 = BlockDispositions[S];
10963   for (auto &V : make_range(Values2.rbegin(), Values2.rend())) {
10964     if (V.getPointer() == BB) {
10965       V.setInt(D);
10966       break;
10967     }
10968   }
10969   return D;
10970 }
10971 
10972 ScalarEvolution::BlockDisposition
10973 ScalarEvolution::computeBlockDisposition(const SCEV *S, const BasicBlock *BB) {
10974   switch (static_cast<SCEVTypes>(S->getSCEVType())) {
10975   case scConstant:
10976     return ProperlyDominatesBlock;
10977   case scTruncate:
10978   case scZeroExtend:
10979   case scSignExtend:
10980     return getBlockDisposition(cast<SCEVCastExpr>(S)->getOperand(), BB);
10981   case scAddRecExpr: {
10982     // This uses a "dominates" query instead of "properly dominates" query
10983     // to test for proper dominance too, because the instruction which
10984     // produces the addrec's value is a PHI, and a PHI effectively properly
10985     // dominates its entire containing block.
10986     const SCEVAddRecExpr *AR = cast<SCEVAddRecExpr>(S);
10987     if (!DT.dominates(AR->getLoop()->getHeader(), BB))
10988       return DoesNotDominateBlock;
10989 
10990     // Fall through into SCEVNAryExpr handling.
10991     LLVM_FALLTHROUGH;
10992   }
10993   case scAddExpr:
10994   case scMulExpr:
10995   case scUMaxExpr:
10996   case scSMaxExpr: {
10997     const SCEVNAryExpr *NAry = cast<SCEVNAryExpr>(S);
10998     bool Proper = true;
10999     for (const SCEV *NAryOp : NAry->operands()) {
11000       BlockDisposition D = getBlockDisposition(NAryOp, BB);
11001       if (D == DoesNotDominateBlock)
11002         return DoesNotDominateBlock;
11003       if (D == DominatesBlock)
11004         Proper = false;
11005     }
11006     return Proper ? ProperlyDominatesBlock : DominatesBlock;
11007   }
11008   case scUDivExpr: {
11009     const SCEVUDivExpr *UDiv = cast<SCEVUDivExpr>(S);
11010     const SCEV *LHS = UDiv->getLHS(), *RHS = UDiv->getRHS();
11011     BlockDisposition LD = getBlockDisposition(LHS, BB);
11012     if (LD == DoesNotDominateBlock)
11013       return DoesNotDominateBlock;
11014     BlockDisposition RD = getBlockDisposition(RHS, BB);
11015     if (RD == DoesNotDominateBlock)
11016       return DoesNotDominateBlock;
11017     return (LD == ProperlyDominatesBlock && RD == ProperlyDominatesBlock) ?
11018       ProperlyDominatesBlock : DominatesBlock;
11019   }
11020   case scUnknown:
11021     if (Instruction *I =
11022           dyn_cast<Instruction>(cast<SCEVUnknown>(S)->getValue())) {
11023       if (I->getParent() == BB)
11024         return DominatesBlock;
11025       if (DT.properlyDominates(I->getParent(), BB))
11026         return ProperlyDominatesBlock;
11027       return DoesNotDominateBlock;
11028     }
11029     return ProperlyDominatesBlock;
11030   case scCouldNotCompute:
11031     llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
11032   }
11033   llvm_unreachable("Unknown SCEV kind!");
11034 }
11035 
11036 bool ScalarEvolution::dominates(const SCEV *S, const BasicBlock *BB) {
11037   return getBlockDisposition(S, BB) >= DominatesBlock;
11038 }
11039 
11040 bool ScalarEvolution::properlyDominates(const SCEV *S, const BasicBlock *BB) {
11041   return getBlockDisposition(S, BB) == ProperlyDominatesBlock;
11042 }
11043 
11044 bool ScalarEvolution::hasOperand(const SCEV *S, const SCEV *Op) const {
11045   return SCEVExprContains(S, [&](const SCEV *Expr) { return Expr == Op; });
11046 }
11047 
11048 bool ScalarEvolution::ExitLimit::hasOperand(const SCEV *S) const {
11049   auto IsS = [&](const SCEV *X) { return S == X; };
11050   auto ContainsS = [&](const SCEV *X) {
11051     return !isa<SCEVCouldNotCompute>(X) && SCEVExprContains(X, IsS);
11052   };
11053   return ContainsS(ExactNotTaken) || ContainsS(MaxNotTaken);
11054 }
11055 
11056 void
11057 ScalarEvolution::forgetMemoizedResults(const SCEV *S, bool EraseExitLimit) {
11058   ValuesAtScopes.erase(S);
11059   LoopDispositions.erase(S);
11060   BlockDispositions.erase(S);
11061   UnsignedRanges.erase(S);
11062   SignedRanges.erase(S);
11063   ExprValueMap.erase(S);
11064   HasRecMap.erase(S);
11065   MinTrailingZerosCache.erase(S);
11066 
11067   for (auto I = PredicatedSCEVRewrites.begin();
11068        I != PredicatedSCEVRewrites.end();) {
11069     std::pair<const SCEV *, const Loop *> Entry = I->first;
11070     if (Entry.first == S)
11071       PredicatedSCEVRewrites.erase(I++);
11072     else
11073       ++I;
11074   }
11075 
11076   auto RemoveSCEVFromBackedgeMap =
11077       [S, this](DenseMap<const Loop *, BackedgeTakenInfo> &Map) {
11078         for (auto I = Map.begin(), E = Map.end(); I != E;) {
11079           BackedgeTakenInfo &BEInfo = I->second;
11080           if (BEInfo.hasOperand(S, this)) {
11081             BEInfo.clear();
11082             Map.erase(I++);
11083           } else
11084             ++I;
11085         }
11086       };
11087 
11088   RemoveSCEVFromBackedgeMap(BackedgeTakenCounts);
11089   RemoveSCEVFromBackedgeMap(PredicatedBackedgeTakenCounts);
11090 
11091   // TODO: There is a suspicion that we only need to do it when there is a
11092   // SCEVUnknown somewhere inside S. Need to check this.
11093   if (EraseExitLimit)
11094     for (auto I = ExitLimits.begin(), E = ExitLimits.end(); I != E; ++I)
11095       if (I->second.hasOperand(S))
11096         ExitLimits.erase(I);
11097 }
11098 
11099 void ScalarEvolution::addToLoopUseLists(const SCEV *S) {
11100   struct FindUsedLoops {
11101     SmallPtrSet<const Loop *, 8> LoopsUsed;
11102     bool follow(const SCEV *S) {
11103       if (auto *AR = dyn_cast<SCEVAddRecExpr>(S))
11104         LoopsUsed.insert(AR->getLoop());
11105       return true;
11106     }
11107 
11108     bool isDone() const { return false; }
11109   };
11110 
11111   FindUsedLoops F;
11112   SCEVTraversal<FindUsedLoops>(F).visitAll(S);
11113 
11114   for (auto *L : F.LoopsUsed)
11115     LoopUsers[L].push_back(S);
11116 }
11117 
11118 void ScalarEvolution::verify() const {
11119   ScalarEvolution &SE = *const_cast<ScalarEvolution *>(this);
11120   ScalarEvolution SE2(F, TLI, AC, DT, LI);
11121 
11122   SmallVector<Loop *, 8> LoopStack(LI.begin(), LI.end());
11123 
11124   // Map's SCEV expressions from one ScalarEvolution "universe" to another.
11125   struct SCEVMapper : public SCEVRewriteVisitor<SCEVMapper> {
11126     SCEVMapper(ScalarEvolution &SE) : SCEVRewriteVisitor<SCEVMapper>(SE) {}
11127 
11128     const SCEV *visitConstant(const SCEVConstant *Constant) {
11129       return SE.getConstant(Constant->getAPInt());
11130     }
11131 
11132     const SCEV *visitUnknown(const SCEVUnknown *Expr) {
11133       return SE.getUnknown(Expr->getValue());
11134     }
11135 
11136     const SCEV *visitCouldNotCompute(const SCEVCouldNotCompute *Expr) {
11137       return SE.getCouldNotCompute();
11138     }
11139   };
11140 
11141   SCEVMapper SCM(SE2);
11142 
11143   while (!LoopStack.empty()) {
11144     auto *L = LoopStack.pop_back_val();
11145     LoopStack.insert(LoopStack.end(), L->begin(), L->end());
11146 
11147     auto *CurBECount = SCM.visit(
11148         const_cast<ScalarEvolution *>(this)->getBackedgeTakenCount(L));
11149     auto *NewBECount = SE2.getBackedgeTakenCount(L);
11150 
11151     if (CurBECount == SE2.getCouldNotCompute() ||
11152         NewBECount == SE2.getCouldNotCompute()) {
11153       // NB! This situation is legal, but is very suspicious -- whatever pass
11154       // change the loop to make a trip count go from could not compute to
11155       // computable or vice-versa *should have* invalidated SCEV.  However, we
11156       // choose not to assert here (for now) since we don't want false
11157       // positives.
11158       continue;
11159     }
11160 
11161     if (containsUndefs(CurBECount) || containsUndefs(NewBECount)) {
11162       // SCEV treats "undef" as an unknown but consistent value (i.e. it does
11163       // not propagate undef aggressively).  This means we can (and do) fail
11164       // verification in cases where a transform makes the trip count of a loop
11165       // go from "undef" to "undef+1" (say).  The transform is fine, since in
11166       // both cases the loop iterates "undef" times, but SCEV thinks we
11167       // increased the trip count of the loop by 1 incorrectly.
11168       continue;
11169     }
11170 
11171     if (SE.getTypeSizeInBits(CurBECount->getType()) >
11172         SE.getTypeSizeInBits(NewBECount->getType()))
11173       NewBECount = SE2.getZeroExtendExpr(NewBECount, CurBECount->getType());
11174     else if (SE.getTypeSizeInBits(CurBECount->getType()) <
11175              SE.getTypeSizeInBits(NewBECount->getType()))
11176       CurBECount = SE2.getZeroExtendExpr(CurBECount, NewBECount->getType());
11177 
11178     auto *ConstantDelta =
11179         dyn_cast<SCEVConstant>(SE2.getMinusSCEV(CurBECount, NewBECount));
11180 
11181     if (ConstantDelta && ConstantDelta->getAPInt() != 0) {
11182       dbgs() << "Trip Count Changed!\n";
11183       dbgs() << "Old: " << *CurBECount << "\n";
11184       dbgs() << "New: " << *NewBECount << "\n";
11185       dbgs() << "Delta: " << *ConstantDelta << "\n";
11186       std::abort();
11187     }
11188   }
11189 }
11190 
11191 bool ScalarEvolution::invalidate(
11192     Function &F, const PreservedAnalyses &PA,
11193     FunctionAnalysisManager::Invalidator &Inv) {
11194   // Invalidate the ScalarEvolution object whenever it isn't preserved or one
11195   // of its dependencies is invalidated.
11196   auto PAC = PA.getChecker<ScalarEvolutionAnalysis>();
11197   return !(PAC.preserved() || PAC.preservedSet<AllAnalysesOn<Function>>()) ||
11198          Inv.invalidate<AssumptionAnalysis>(F, PA) ||
11199          Inv.invalidate<DominatorTreeAnalysis>(F, PA) ||
11200          Inv.invalidate<LoopAnalysis>(F, PA);
11201 }
11202 
11203 AnalysisKey ScalarEvolutionAnalysis::Key;
11204 
11205 ScalarEvolution ScalarEvolutionAnalysis::run(Function &F,
11206                                              FunctionAnalysisManager &AM) {
11207   return ScalarEvolution(F, AM.getResult<TargetLibraryAnalysis>(F),
11208                          AM.getResult<AssumptionAnalysis>(F),
11209                          AM.getResult<DominatorTreeAnalysis>(F),
11210                          AM.getResult<LoopAnalysis>(F));
11211 }
11212 
11213 PreservedAnalyses
11214 ScalarEvolutionPrinterPass::run(Function &F, FunctionAnalysisManager &AM) {
11215   AM.getResult<ScalarEvolutionAnalysis>(F).print(OS);
11216   return PreservedAnalyses::all();
11217 }
11218 
11219 INITIALIZE_PASS_BEGIN(ScalarEvolutionWrapperPass, "scalar-evolution",
11220                       "Scalar Evolution Analysis", false, true)
11221 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
11222 INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
11223 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
11224 INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
11225 INITIALIZE_PASS_END(ScalarEvolutionWrapperPass, "scalar-evolution",
11226                     "Scalar Evolution Analysis", false, true)
11227 
11228 char ScalarEvolutionWrapperPass::ID = 0;
11229 
11230 ScalarEvolutionWrapperPass::ScalarEvolutionWrapperPass() : FunctionPass(ID) {
11231   initializeScalarEvolutionWrapperPassPass(*PassRegistry::getPassRegistry());
11232 }
11233 
11234 bool ScalarEvolutionWrapperPass::runOnFunction(Function &F) {
11235   SE.reset(new ScalarEvolution(
11236       F, getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(),
11237       getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F),
11238       getAnalysis<DominatorTreeWrapperPass>().getDomTree(),
11239       getAnalysis<LoopInfoWrapperPass>().getLoopInfo()));
11240   return false;
11241 }
11242 
11243 void ScalarEvolutionWrapperPass::releaseMemory() { SE.reset(); }
11244 
11245 void ScalarEvolutionWrapperPass::print(raw_ostream &OS, const Module *) const {
11246   SE->print(OS);
11247 }
11248 
11249 void ScalarEvolutionWrapperPass::verifyAnalysis() const {
11250   if (!VerifySCEV)
11251     return;
11252 
11253   SE->verify();
11254 }
11255 
11256 void ScalarEvolutionWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const {
11257   AU.setPreservesAll();
11258   AU.addRequiredTransitive<AssumptionCacheTracker>();
11259   AU.addRequiredTransitive<LoopInfoWrapperPass>();
11260   AU.addRequiredTransitive<DominatorTreeWrapperPass>();
11261   AU.addRequiredTransitive<TargetLibraryInfoWrapperPass>();
11262 }
11263 
11264 const SCEVPredicate *ScalarEvolution::getEqualPredicate(const SCEV *LHS,
11265                                                         const SCEV *RHS) {
11266   FoldingSetNodeID ID;
11267   assert(LHS->getType() == RHS->getType() &&
11268          "Type mismatch between LHS and RHS");
11269   // Unique this node based on the arguments
11270   ID.AddInteger(SCEVPredicate::P_Equal);
11271   ID.AddPointer(LHS);
11272   ID.AddPointer(RHS);
11273   void *IP = nullptr;
11274   if (const auto *S = UniquePreds.FindNodeOrInsertPos(ID, IP))
11275     return S;
11276   SCEVEqualPredicate *Eq = new (SCEVAllocator)
11277       SCEVEqualPredicate(ID.Intern(SCEVAllocator), LHS, RHS);
11278   UniquePreds.InsertNode(Eq, IP);
11279   return Eq;
11280 }
11281 
11282 const SCEVPredicate *ScalarEvolution::getWrapPredicate(
11283     const SCEVAddRecExpr *AR,
11284     SCEVWrapPredicate::IncrementWrapFlags AddedFlags) {
11285   FoldingSetNodeID ID;
11286   // Unique this node based on the arguments
11287   ID.AddInteger(SCEVPredicate::P_Wrap);
11288   ID.AddPointer(AR);
11289   ID.AddInteger(AddedFlags);
11290   void *IP = nullptr;
11291   if (const auto *S = UniquePreds.FindNodeOrInsertPos(ID, IP))
11292     return S;
11293   auto *OF = new (SCEVAllocator)
11294       SCEVWrapPredicate(ID.Intern(SCEVAllocator), AR, AddedFlags);
11295   UniquePreds.InsertNode(OF, IP);
11296   return OF;
11297 }
11298 
11299 namespace {
11300 
11301 class SCEVPredicateRewriter : public SCEVRewriteVisitor<SCEVPredicateRewriter> {
11302 public:
11303   SCEVPredicateRewriter(const Loop *L, ScalarEvolution &SE,
11304                         SmallPtrSetImpl<const SCEVPredicate *> *NewPreds,
11305                         SCEVUnionPredicate *Pred)
11306       : SCEVRewriteVisitor(SE), NewPreds(NewPreds), Pred(Pred), L(L) {}
11307 
11308   /// Rewrites \p S in the context of a loop L and the SCEV predication
11309   /// infrastructure.
11310   ///
11311   /// If \p Pred is non-null, the SCEV expression is rewritten to respect the
11312   /// equivalences present in \p Pred.
11313   ///
11314   /// If \p NewPreds is non-null, rewrite is free to add further predicates to
11315   /// \p NewPreds such that the result will be an AddRecExpr.
11316   static const SCEV *rewrite(const SCEV *S, const Loop *L, ScalarEvolution &SE,
11317                              SmallPtrSetImpl<const SCEVPredicate *> *NewPreds,
11318                              SCEVUnionPredicate *Pred) {
11319     SCEVPredicateRewriter Rewriter(L, SE, NewPreds, Pred);
11320     return Rewriter.visit(S);
11321   }
11322 
11323   const SCEV *visitUnknown(const SCEVUnknown *Expr) {
11324     if (Pred) {
11325       auto ExprPreds = Pred->getPredicatesForExpr(Expr);
11326       for (auto *Pred : ExprPreds)
11327         if (const auto *IPred = dyn_cast<SCEVEqualPredicate>(Pred))
11328           if (IPred->getLHS() == Expr)
11329             return IPred->getRHS();
11330     }
11331     return convertToAddRecWithPreds(Expr);
11332   }
11333 
11334   const SCEV *visitZeroExtendExpr(const SCEVZeroExtendExpr *Expr) {
11335     const SCEV *Operand = visit(Expr->getOperand());
11336     const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Operand);
11337     if (AR && AR->getLoop() == L && AR->isAffine()) {
11338       // This couldn't be folded because the operand didn't have the nuw
11339       // flag. Add the nusw flag as an assumption that we could make.
11340       const SCEV *Step = AR->getStepRecurrence(SE);
11341       Type *Ty = Expr->getType();
11342       if (addOverflowAssumption(AR, SCEVWrapPredicate::IncrementNUSW))
11343         return SE.getAddRecExpr(SE.getZeroExtendExpr(AR->getStart(), Ty),
11344                                 SE.getSignExtendExpr(Step, Ty), L,
11345                                 AR->getNoWrapFlags());
11346     }
11347     return SE.getZeroExtendExpr(Operand, Expr->getType());
11348   }
11349 
11350   const SCEV *visitSignExtendExpr(const SCEVSignExtendExpr *Expr) {
11351     const SCEV *Operand = visit(Expr->getOperand());
11352     const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Operand);
11353     if (AR && AR->getLoop() == L && AR->isAffine()) {
11354       // This couldn't be folded because the operand didn't have the nsw
11355       // flag. Add the nssw flag as an assumption that we could make.
11356       const SCEV *Step = AR->getStepRecurrence(SE);
11357       Type *Ty = Expr->getType();
11358       if (addOverflowAssumption(AR, SCEVWrapPredicate::IncrementNSSW))
11359         return SE.getAddRecExpr(SE.getSignExtendExpr(AR->getStart(), Ty),
11360                                 SE.getSignExtendExpr(Step, Ty), L,
11361                                 AR->getNoWrapFlags());
11362     }
11363     return SE.getSignExtendExpr(Operand, Expr->getType());
11364   }
11365 
11366 private:
11367   bool addOverflowAssumption(const SCEVPredicate *P) {
11368     if (!NewPreds) {
11369       // Check if we've already made this assumption.
11370       return Pred && Pred->implies(P);
11371     }
11372     NewPreds->insert(P);
11373     return true;
11374   }
11375 
11376   bool addOverflowAssumption(const SCEVAddRecExpr *AR,
11377                              SCEVWrapPredicate::IncrementWrapFlags AddedFlags) {
11378     auto *A = SE.getWrapPredicate(AR, AddedFlags);
11379     return addOverflowAssumption(A);
11380   }
11381 
11382   // If \p Expr represents a PHINode, we try to see if it can be represented
11383   // as an AddRec, possibly under a predicate (PHISCEVPred). If it is possible
11384   // to add this predicate as a runtime overflow check, we return the AddRec.
11385   // If \p Expr does not meet these conditions (is not a PHI node, or we
11386   // couldn't create an AddRec for it, or couldn't add the predicate), we just
11387   // return \p Expr.
11388   const SCEV *convertToAddRecWithPreds(const SCEVUnknown *Expr) {
11389     if (!isa<PHINode>(Expr->getValue()))
11390       return Expr;
11391     Optional<std::pair<const SCEV *, SmallVector<const SCEVPredicate *, 3>>>
11392     PredicatedRewrite = SE.createAddRecFromPHIWithCasts(Expr);
11393     if (!PredicatedRewrite)
11394       return Expr;
11395     for (auto *P : PredicatedRewrite->second){
11396       if (!addOverflowAssumption(P))
11397         return Expr;
11398     }
11399     return PredicatedRewrite->first;
11400   }
11401 
11402   SmallPtrSetImpl<const SCEVPredicate *> *NewPreds;
11403   SCEVUnionPredicate *Pred;
11404   const Loop *L;
11405 };
11406 
11407 } // end anonymous namespace
11408 
11409 const SCEV *ScalarEvolution::rewriteUsingPredicate(const SCEV *S, const Loop *L,
11410                                                    SCEVUnionPredicate &Preds) {
11411   return SCEVPredicateRewriter::rewrite(S, L, *this, nullptr, &Preds);
11412 }
11413 
11414 const SCEVAddRecExpr *ScalarEvolution::convertSCEVToAddRecWithPredicates(
11415     const SCEV *S, const Loop *L,
11416     SmallPtrSetImpl<const SCEVPredicate *> &Preds) {
11417   SmallPtrSet<const SCEVPredicate *, 4> TransformPreds;
11418   S = SCEVPredicateRewriter::rewrite(S, L, *this, &TransformPreds, nullptr);
11419   auto *AddRec = dyn_cast<SCEVAddRecExpr>(S);
11420 
11421   if (!AddRec)
11422     return nullptr;
11423 
11424   // Since the transformation was successful, we can now transfer the SCEV
11425   // predicates.
11426   for (auto *P : TransformPreds)
11427     Preds.insert(P);
11428 
11429   return AddRec;
11430 }
11431 
11432 /// SCEV predicates
11433 SCEVPredicate::SCEVPredicate(const FoldingSetNodeIDRef ID,
11434                              SCEVPredicateKind Kind)
11435     : FastID(ID), Kind(Kind) {}
11436 
11437 SCEVEqualPredicate::SCEVEqualPredicate(const FoldingSetNodeIDRef ID,
11438                                        const SCEV *LHS, const SCEV *RHS)
11439     : SCEVPredicate(ID, P_Equal), LHS(LHS), RHS(RHS) {
11440   assert(LHS->getType() == RHS->getType() && "LHS and RHS types don't match");
11441   assert(LHS != RHS && "LHS and RHS are the same SCEV");
11442 }
11443 
11444 bool SCEVEqualPredicate::implies(const SCEVPredicate *N) const {
11445   const auto *Op = dyn_cast<SCEVEqualPredicate>(N);
11446 
11447   if (!Op)
11448     return false;
11449 
11450   return Op->LHS == LHS && Op->RHS == RHS;
11451 }
11452 
11453 bool SCEVEqualPredicate::isAlwaysTrue() const { return false; }
11454 
11455 const SCEV *SCEVEqualPredicate::getExpr() const { return LHS; }
11456 
11457 void SCEVEqualPredicate::print(raw_ostream &OS, unsigned Depth) const {
11458   OS.indent(Depth) << "Equal predicate: " << *LHS << " == " << *RHS << "\n";
11459 }
11460 
11461 SCEVWrapPredicate::SCEVWrapPredicate(const FoldingSetNodeIDRef ID,
11462                                      const SCEVAddRecExpr *AR,
11463                                      IncrementWrapFlags Flags)
11464     : SCEVPredicate(ID, P_Wrap), AR(AR), Flags(Flags) {}
11465 
11466 const SCEV *SCEVWrapPredicate::getExpr() const { return AR; }
11467 
11468 bool SCEVWrapPredicate::implies(const SCEVPredicate *N) const {
11469   const auto *Op = dyn_cast<SCEVWrapPredicate>(N);
11470 
11471   return Op && Op->AR == AR && setFlags(Flags, Op->Flags) == Flags;
11472 }
11473 
11474 bool SCEVWrapPredicate::isAlwaysTrue() const {
11475   SCEV::NoWrapFlags ScevFlags = AR->getNoWrapFlags();
11476   IncrementWrapFlags IFlags = Flags;
11477 
11478   if (ScalarEvolution::setFlags(ScevFlags, SCEV::FlagNSW) == ScevFlags)
11479     IFlags = clearFlags(IFlags, IncrementNSSW);
11480 
11481   return IFlags == IncrementAnyWrap;
11482 }
11483 
11484 void SCEVWrapPredicate::print(raw_ostream &OS, unsigned Depth) const {
11485   OS.indent(Depth) << *getExpr() << " Added Flags: ";
11486   if (SCEVWrapPredicate::IncrementNUSW & getFlags())
11487     OS << "<nusw>";
11488   if (SCEVWrapPredicate::IncrementNSSW & getFlags())
11489     OS << "<nssw>";
11490   OS << "\n";
11491 }
11492 
11493 SCEVWrapPredicate::IncrementWrapFlags
11494 SCEVWrapPredicate::getImpliedFlags(const SCEVAddRecExpr *AR,
11495                                    ScalarEvolution &SE) {
11496   IncrementWrapFlags ImpliedFlags = IncrementAnyWrap;
11497   SCEV::NoWrapFlags StaticFlags = AR->getNoWrapFlags();
11498 
11499   // We can safely transfer the NSW flag as NSSW.
11500   if (ScalarEvolution::setFlags(StaticFlags, SCEV::FlagNSW) == StaticFlags)
11501     ImpliedFlags = IncrementNSSW;
11502 
11503   if (ScalarEvolution::setFlags(StaticFlags, SCEV::FlagNUW) == StaticFlags) {
11504     // If the increment is positive, the SCEV NUW flag will also imply the
11505     // WrapPredicate NUSW flag.
11506     if (const auto *Step = dyn_cast<SCEVConstant>(AR->getStepRecurrence(SE)))
11507       if (Step->getValue()->getValue().isNonNegative())
11508         ImpliedFlags = setFlags(ImpliedFlags, IncrementNUSW);
11509   }
11510 
11511   return ImpliedFlags;
11512 }
11513 
11514 /// Union predicates don't get cached so create a dummy set ID for it.
11515 SCEVUnionPredicate::SCEVUnionPredicate()
11516     : SCEVPredicate(FoldingSetNodeIDRef(nullptr, 0), P_Union) {}
11517 
11518 bool SCEVUnionPredicate::isAlwaysTrue() const {
11519   return all_of(Preds,
11520                 [](const SCEVPredicate *I) { return I->isAlwaysTrue(); });
11521 }
11522 
11523 ArrayRef<const SCEVPredicate *>
11524 SCEVUnionPredicate::getPredicatesForExpr(const SCEV *Expr) {
11525   auto I = SCEVToPreds.find(Expr);
11526   if (I == SCEVToPreds.end())
11527     return ArrayRef<const SCEVPredicate *>();
11528   return I->second;
11529 }
11530 
11531 bool SCEVUnionPredicate::implies(const SCEVPredicate *N) const {
11532   if (const auto *Set = dyn_cast<SCEVUnionPredicate>(N))
11533     return all_of(Set->Preds,
11534                   [this](const SCEVPredicate *I) { return this->implies(I); });
11535 
11536   auto ScevPredsIt = SCEVToPreds.find(N->getExpr());
11537   if (ScevPredsIt == SCEVToPreds.end())
11538     return false;
11539   auto &SCEVPreds = ScevPredsIt->second;
11540 
11541   return any_of(SCEVPreds,
11542                 [N](const SCEVPredicate *I) { return I->implies(N); });
11543 }
11544 
11545 const SCEV *SCEVUnionPredicate::getExpr() const { return nullptr; }
11546 
11547 void SCEVUnionPredicate::print(raw_ostream &OS, unsigned Depth) const {
11548   for (auto Pred : Preds)
11549     Pred->print(OS, Depth);
11550 }
11551 
11552 void SCEVUnionPredicate::add(const SCEVPredicate *N) {
11553   if (const auto *Set = dyn_cast<SCEVUnionPredicate>(N)) {
11554     for (auto Pred : Set->Preds)
11555       add(Pred);
11556     return;
11557   }
11558 
11559   if (implies(N))
11560     return;
11561 
11562   const SCEV *Key = N->getExpr();
11563   assert(Key && "Only SCEVUnionPredicate doesn't have an "
11564                 " associated expression!");
11565 
11566   SCEVToPreds[Key].push_back(N);
11567   Preds.push_back(N);
11568 }
11569 
11570 PredicatedScalarEvolution::PredicatedScalarEvolution(ScalarEvolution &SE,
11571                                                      Loop &L)
11572     : SE(SE), L(L) {}
11573 
11574 const SCEV *PredicatedScalarEvolution::getSCEV(Value *V) {
11575   const SCEV *Expr = SE.getSCEV(V);
11576   RewriteEntry &Entry = RewriteMap[Expr];
11577 
11578   // If we already have an entry and the version matches, return it.
11579   if (Entry.second && Generation == Entry.first)
11580     return Entry.second;
11581 
11582   // We found an entry but it's stale. Rewrite the stale entry
11583   // according to the current predicate.
11584   if (Entry.second)
11585     Expr = Entry.second;
11586 
11587   const SCEV *NewSCEV = SE.rewriteUsingPredicate(Expr, &L, Preds);
11588   Entry = {Generation, NewSCEV};
11589 
11590   return NewSCEV;
11591 }
11592 
11593 const SCEV *PredicatedScalarEvolution::getBackedgeTakenCount() {
11594   if (!BackedgeCount) {
11595     SCEVUnionPredicate BackedgePred;
11596     BackedgeCount = SE.getPredicatedBackedgeTakenCount(&L, BackedgePred);
11597     addPredicate(BackedgePred);
11598   }
11599   return BackedgeCount;
11600 }
11601 
11602 void PredicatedScalarEvolution::addPredicate(const SCEVPredicate &Pred) {
11603   if (Preds.implies(&Pred))
11604     return;
11605   Preds.add(&Pred);
11606   updateGeneration();
11607 }
11608 
11609 const SCEVUnionPredicate &PredicatedScalarEvolution::getUnionPredicate() const {
11610   return Preds;
11611 }
11612 
11613 void PredicatedScalarEvolution::updateGeneration() {
11614   // If the generation number wrapped recompute everything.
11615   if (++Generation == 0) {
11616     for (auto &II : RewriteMap) {
11617       const SCEV *Rewritten = II.second.second;
11618       II.second = {Generation, SE.rewriteUsingPredicate(Rewritten, &L, Preds)};
11619     }
11620   }
11621 }
11622 
11623 void PredicatedScalarEvolution::setNoOverflow(
11624     Value *V, SCEVWrapPredicate::IncrementWrapFlags Flags) {
11625   const SCEV *Expr = getSCEV(V);
11626   const auto *AR = cast<SCEVAddRecExpr>(Expr);
11627 
11628   auto ImpliedFlags = SCEVWrapPredicate::getImpliedFlags(AR, SE);
11629 
11630   // Clear the statically implied flags.
11631   Flags = SCEVWrapPredicate::clearFlags(Flags, ImpliedFlags);
11632   addPredicate(*SE.getWrapPredicate(AR, Flags));
11633 
11634   auto II = FlagsMap.insert({V, Flags});
11635   if (!II.second)
11636     II.first->second = SCEVWrapPredicate::setFlags(Flags, II.first->second);
11637 }
11638 
11639 bool PredicatedScalarEvolution::hasNoOverflow(
11640     Value *V, SCEVWrapPredicate::IncrementWrapFlags Flags) {
11641   const SCEV *Expr = getSCEV(V);
11642   const auto *AR = cast<SCEVAddRecExpr>(Expr);
11643 
11644   Flags = SCEVWrapPredicate::clearFlags(
11645       Flags, SCEVWrapPredicate::getImpliedFlags(AR, SE));
11646 
11647   auto II = FlagsMap.find(V);
11648 
11649   if (II != FlagsMap.end())
11650     Flags = SCEVWrapPredicate::clearFlags(Flags, II->second);
11651 
11652   return Flags == SCEVWrapPredicate::IncrementAnyWrap;
11653 }
11654 
11655 const SCEVAddRecExpr *PredicatedScalarEvolution::getAsAddRec(Value *V) {
11656   const SCEV *Expr = this->getSCEV(V);
11657   SmallPtrSet<const SCEVPredicate *, 4> NewPreds;
11658   auto *New = SE.convertSCEVToAddRecWithPredicates(Expr, &L, NewPreds);
11659 
11660   if (!New)
11661     return nullptr;
11662 
11663   for (auto *P : NewPreds)
11664     Preds.add(P);
11665 
11666   updateGeneration();
11667   RewriteMap[SE.getSCEV(V)] = {Generation, New};
11668   return New;
11669 }
11670 
11671 PredicatedScalarEvolution::PredicatedScalarEvolution(
11672     const PredicatedScalarEvolution &Init)
11673     : RewriteMap(Init.RewriteMap), SE(Init.SE), L(Init.L), Preds(Init.Preds),
11674       Generation(Init.Generation), BackedgeCount(Init.BackedgeCount) {
11675   for (const auto &I : Init.FlagsMap)
11676     FlagsMap.insert(I);
11677 }
11678 
11679 void PredicatedScalarEvolution::print(raw_ostream &OS, unsigned Depth) const {
11680   // For each block.
11681   for (auto *BB : L.getBlocks())
11682     for (auto &I : *BB) {
11683       if (!SE.isSCEVable(I.getType()))
11684         continue;
11685 
11686       auto *Expr = SE.getSCEV(&I);
11687       auto II = RewriteMap.find(Expr);
11688 
11689       if (II == RewriteMap.end())
11690         continue;
11691 
11692       // Don't print things that are not interesting.
11693       if (II->second.second == Expr)
11694         continue;
11695 
11696       OS.indent(Depth) << "[PSE]" << I << ":\n";
11697       OS.indent(Depth + 2) << *Expr << "\n";
11698       OS.indent(Depth + 2) << "--> " << *II->second.second << "\n";
11699     }
11700 }
11701