xref: /llvm-project/llvm/lib/Analysis/ScalarEvolution.cpp (revision bf730984726f8ac6bc2677824d99101286c84a05)
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/Optional.h"
63 #include "llvm/ADT/STLExtras.h"
64 #include "llvm/ADT/SmallPtrSet.h"
65 #include "llvm/ADT/Statistic.h"
66 #include "llvm/Analysis/AssumptionCache.h"
67 #include "llvm/Analysis/ConstantFolding.h"
68 #include "llvm/Analysis/InstructionSimplify.h"
69 #include "llvm/Analysis/LoopInfo.h"
70 #include "llvm/Analysis/ScalarEvolutionExpressions.h"
71 #include "llvm/Analysis/TargetLibraryInfo.h"
72 #include "llvm/Analysis/ValueTracking.h"
73 #include "llvm/IR/ConstantRange.h"
74 #include "llvm/IR/Constants.h"
75 #include "llvm/IR/DataLayout.h"
76 #include "llvm/IR/DerivedTypes.h"
77 #include "llvm/IR/Dominators.h"
78 #include "llvm/IR/GetElementPtrTypeIterator.h"
79 #include "llvm/IR/GlobalAlias.h"
80 #include "llvm/IR/GlobalVariable.h"
81 #include "llvm/IR/InstIterator.h"
82 #include "llvm/IR/Instructions.h"
83 #include "llvm/IR/LLVMContext.h"
84 #include "llvm/IR/Metadata.h"
85 #include "llvm/IR/Operator.h"
86 #include "llvm/IR/PatternMatch.h"
87 #include "llvm/Support/CommandLine.h"
88 #include "llvm/Support/Debug.h"
89 #include "llvm/Support/ErrorHandling.h"
90 #include "llvm/Support/MathExtras.h"
91 #include "llvm/Support/raw_ostream.h"
92 #include "llvm/Support/SaveAndRestore.h"
93 #include <algorithm>
94 using namespace llvm;
95 
96 #define DEBUG_TYPE "scalar-evolution"
97 
98 STATISTIC(NumArrayLenItCounts,
99           "Number of trip counts computed with array length");
100 STATISTIC(NumTripCountsComputed,
101           "Number of loops with predictable loop counts");
102 STATISTIC(NumTripCountsNotComputed,
103           "Number of loops without predictable loop counts");
104 STATISTIC(NumBruteForceTripCountsComputed,
105           "Number of loops with trip counts computed by force");
106 
107 static cl::opt<unsigned>
108 MaxBruteForceIterations("scalar-evolution-max-iterations", cl::ReallyHidden,
109                         cl::desc("Maximum number of iterations SCEV will "
110                                  "symbolically execute a constant "
111                                  "derived loop"),
112                         cl::init(100));
113 
114 // FIXME: Enable this with XDEBUG when the test suite is clean.
115 static cl::opt<bool>
116 VerifySCEV("verify-scev",
117            cl::desc("Verify ScalarEvolution's backedge taken counts (slow)"));
118 static cl::opt<bool>
119     VerifySCEVMap("verify-scev-maps",
120                   cl::desc("Verify no dangling value in ScalarEvolution's"
121                            "ExprValueMap (slow)"));
122 
123 //===----------------------------------------------------------------------===//
124 //                           SCEV class definitions
125 //===----------------------------------------------------------------------===//
126 
127 //===----------------------------------------------------------------------===//
128 // Implementation of the SCEV class.
129 //
130 
131 LLVM_DUMP_METHOD
132 void SCEV::dump() const {
133   print(dbgs());
134   dbgs() << '\n';
135 }
136 
137 void SCEV::print(raw_ostream &OS) const {
138   switch (static_cast<SCEVTypes>(getSCEVType())) {
139   case scConstant:
140     cast<SCEVConstant>(this)->getValue()->printAsOperand(OS, false);
141     return;
142   case scTruncate: {
143     const SCEVTruncateExpr *Trunc = cast<SCEVTruncateExpr>(this);
144     const SCEV *Op = Trunc->getOperand();
145     OS << "(trunc " << *Op->getType() << " " << *Op << " to "
146        << *Trunc->getType() << ")";
147     return;
148   }
149   case scZeroExtend: {
150     const SCEVZeroExtendExpr *ZExt = cast<SCEVZeroExtendExpr>(this);
151     const SCEV *Op = ZExt->getOperand();
152     OS << "(zext " << *Op->getType() << " " << *Op << " to "
153        << *ZExt->getType() << ")";
154     return;
155   }
156   case scSignExtend: {
157     const SCEVSignExtendExpr *SExt = cast<SCEVSignExtendExpr>(this);
158     const SCEV *Op = SExt->getOperand();
159     OS << "(sext " << *Op->getType() << " " << *Op << " to "
160        << *SExt->getType() << ")";
161     return;
162   }
163   case scAddRecExpr: {
164     const SCEVAddRecExpr *AR = cast<SCEVAddRecExpr>(this);
165     OS << "{" << *AR->getOperand(0);
166     for (unsigned i = 1, e = AR->getNumOperands(); i != e; ++i)
167       OS << ",+," << *AR->getOperand(i);
168     OS << "}<";
169     if (AR->hasNoUnsignedWrap())
170       OS << "nuw><";
171     if (AR->hasNoSignedWrap())
172       OS << "nsw><";
173     if (AR->hasNoSelfWrap() &&
174         !AR->getNoWrapFlags((NoWrapFlags)(FlagNUW | FlagNSW)))
175       OS << "nw><";
176     AR->getLoop()->getHeader()->printAsOperand(OS, /*PrintType=*/false);
177     OS << ">";
178     return;
179   }
180   case scAddExpr:
181   case scMulExpr:
182   case scUMaxExpr:
183   case scSMaxExpr: {
184     const SCEVNAryExpr *NAry = cast<SCEVNAryExpr>(this);
185     const char *OpStr = nullptr;
186     switch (NAry->getSCEVType()) {
187     case scAddExpr: OpStr = " + "; break;
188     case scMulExpr: OpStr = " * "; break;
189     case scUMaxExpr: OpStr = " umax "; break;
190     case scSMaxExpr: OpStr = " smax "; break;
191     }
192     OS << "(";
193     for (SCEVNAryExpr::op_iterator I = NAry->op_begin(), E = NAry->op_end();
194          I != E; ++I) {
195       OS << **I;
196       if (std::next(I) != E)
197         OS << OpStr;
198     }
199     OS << ")";
200     switch (NAry->getSCEVType()) {
201     case scAddExpr:
202     case scMulExpr:
203       if (NAry->hasNoUnsignedWrap())
204         OS << "<nuw>";
205       if (NAry->hasNoSignedWrap())
206         OS << "<nsw>";
207     }
208     return;
209   }
210   case scUDivExpr: {
211     const SCEVUDivExpr *UDiv = cast<SCEVUDivExpr>(this);
212     OS << "(" << *UDiv->getLHS() << " /u " << *UDiv->getRHS() << ")";
213     return;
214   }
215   case scUnknown: {
216     const SCEVUnknown *U = cast<SCEVUnknown>(this);
217     Type *AllocTy;
218     if (U->isSizeOf(AllocTy)) {
219       OS << "sizeof(" << *AllocTy << ")";
220       return;
221     }
222     if (U->isAlignOf(AllocTy)) {
223       OS << "alignof(" << *AllocTy << ")";
224       return;
225     }
226 
227     Type *CTy;
228     Constant *FieldNo;
229     if (U->isOffsetOf(CTy, FieldNo)) {
230       OS << "offsetof(" << *CTy << ", ";
231       FieldNo->printAsOperand(OS, false);
232       OS << ")";
233       return;
234     }
235 
236     // Otherwise just print it normally.
237     U->getValue()->printAsOperand(OS, false);
238     return;
239   }
240   case scCouldNotCompute:
241     OS << "***COULDNOTCOMPUTE***";
242     return;
243   }
244   llvm_unreachable("Unknown SCEV kind!");
245 }
246 
247 Type *SCEV::getType() const {
248   switch (static_cast<SCEVTypes>(getSCEVType())) {
249   case scConstant:
250     return cast<SCEVConstant>(this)->getType();
251   case scTruncate:
252   case scZeroExtend:
253   case scSignExtend:
254     return cast<SCEVCastExpr>(this)->getType();
255   case scAddRecExpr:
256   case scMulExpr:
257   case scUMaxExpr:
258   case scSMaxExpr:
259     return cast<SCEVNAryExpr>(this)->getType();
260   case scAddExpr:
261     return cast<SCEVAddExpr>(this)->getType();
262   case scUDivExpr:
263     return cast<SCEVUDivExpr>(this)->getType();
264   case scUnknown:
265     return cast<SCEVUnknown>(this)->getType();
266   case scCouldNotCompute:
267     llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
268   }
269   llvm_unreachable("Unknown SCEV kind!");
270 }
271 
272 bool SCEV::isZero() const {
273   if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(this))
274     return SC->getValue()->isZero();
275   return false;
276 }
277 
278 bool SCEV::isOne() const {
279   if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(this))
280     return SC->getValue()->isOne();
281   return false;
282 }
283 
284 bool SCEV::isAllOnesValue() const {
285   if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(this))
286     return SC->getValue()->isAllOnesValue();
287   return false;
288 }
289 
290 /// isNonConstantNegative - Return true if the specified scev is negated, but
291 /// not a constant.
292 bool SCEV::isNonConstantNegative() const {
293   const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(this);
294   if (!Mul) return false;
295 
296   // If there is a constant factor, it will be first.
297   const SCEVConstant *SC = dyn_cast<SCEVConstant>(Mul->getOperand(0));
298   if (!SC) return false;
299 
300   // Return true if the value is negative, this matches things like (-42 * V).
301   return SC->getAPInt().isNegative();
302 }
303 
304 SCEVCouldNotCompute::SCEVCouldNotCompute() :
305   SCEV(FoldingSetNodeIDRef(), scCouldNotCompute) {}
306 
307 bool SCEVCouldNotCompute::classof(const SCEV *S) {
308   return S->getSCEVType() == scCouldNotCompute;
309 }
310 
311 const SCEV *ScalarEvolution::getConstant(ConstantInt *V) {
312   FoldingSetNodeID ID;
313   ID.AddInteger(scConstant);
314   ID.AddPointer(V);
315   void *IP = nullptr;
316   if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
317   SCEV *S = new (SCEVAllocator) SCEVConstant(ID.Intern(SCEVAllocator), V);
318   UniqueSCEVs.InsertNode(S, IP);
319   return S;
320 }
321 
322 const SCEV *ScalarEvolution::getConstant(const APInt &Val) {
323   return getConstant(ConstantInt::get(getContext(), Val));
324 }
325 
326 const SCEV *
327 ScalarEvolution::getConstant(Type *Ty, uint64_t V, bool isSigned) {
328   IntegerType *ITy = cast<IntegerType>(getEffectiveSCEVType(Ty));
329   return getConstant(ConstantInt::get(ITy, V, isSigned));
330 }
331 
332 SCEVCastExpr::SCEVCastExpr(const FoldingSetNodeIDRef ID,
333                            unsigned SCEVTy, const SCEV *op, Type *ty)
334   : SCEV(ID, SCEVTy), Op(op), Ty(ty) {}
335 
336 SCEVTruncateExpr::SCEVTruncateExpr(const FoldingSetNodeIDRef ID,
337                                    const SCEV *op, Type *ty)
338   : SCEVCastExpr(ID, scTruncate, op, ty) {
339   assert((Op->getType()->isIntegerTy() || Op->getType()->isPointerTy()) &&
340          (Ty->isIntegerTy() || Ty->isPointerTy()) &&
341          "Cannot truncate non-integer value!");
342 }
343 
344 SCEVZeroExtendExpr::SCEVZeroExtendExpr(const FoldingSetNodeIDRef ID,
345                                        const SCEV *op, Type *ty)
346   : SCEVCastExpr(ID, scZeroExtend, op, ty) {
347   assert((Op->getType()->isIntegerTy() || Op->getType()->isPointerTy()) &&
348          (Ty->isIntegerTy() || Ty->isPointerTy()) &&
349          "Cannot zero extend non-integer value!");
350 }
351 
352 SCEVSignExtendExpr::SCEVSignExtendExpr(const FoldingSetNodeIDRef ID,
353                                        const SCEV *op, Type *ty)
354   : SCEVCastExpr(ID, scSignExtend, op, ty) {
355   assert((Op->getType()->isIntegerTy() || Op->getType()->isPointerTy()) &&
356          (Ty->isIntegerTy() || Ty->isPointerTy()) &&
357          "Cannot sign extend non-integer value!");
358 }
359 
360 void SCEVUnknown::deleted() {
361   // Clear this SCEVUnknown from various maps.
362   SE->forgetMemoizedResults(this);
363 
364   // Remove this SCEVUnknown from the uniquing map.
365   SE->UniqueSCEVs.RemoveNode(this);
366 
367   // Release the value.
368   setValPtr(nullptr);
369 }
370 
371 void SCEVUnknown::allUsesReplacedWith(Value *New) {
372   // Clear this SCEVUnknown from various maps.
373   SE->forgetMemoizedResults(this);
374 
375   // Remove this SCEVUnknown from the uniquing map.
376   SE->UniqueSCEVs.RemoveNode(this);
377 
378   // Update this SCEVUnknown to point to the new value. This is needed
379   // because there may still be outstanding SCEVs which still point to
380   // this SCEVUnknown.
381   setValPtr(New);
382 }
383 
384 bool SCEVUnknown::isSizeOf(Type *&AllocTy) const {
385   if (ConstantExpr *VCE = dyn_cast<ConstantExpr>(getValue()))
386     if (VCE->getOpcode() == Instruction::PtrToInt)
387       if (ConstantExpr *CE = dyn_cast<ConstantExpr>(VCE->getOperand(0)))
388         if (CE->getOpcode() == Instruction::GetElementPtr &&
389             CE->getOperand(0)->isNullValue() &&
390             CE->getNumOperands() == 2)
391           if (ConstantInt *CI = dyn_cast<ConstantInt>(CE->getOperand(1)))
392             if (CI->isOne()) {
393               AllocTy = cast<PointerType>(CE->getOperand(0)->getType())
394                                  ->getElementType();
395               return true;
396             }
397 
398   return false;
399 }
400 
401 bool SCEVUnknown::isAlignOf(Type *&AllocTy) const {
402   if (ConstantExpr *VCE = dyn_cast<ConstantExpr>(getValue()))
403     if (VCE->getOpcode() == Instruction::PtrToInt)
404       if (ConstantExpr *CE = dyn_cast<ConstantExpr>(VCE->getOperand(0)))
405         if (CE->getOpcode() == Instruction::GetElementPtr &&
406             CE->getOperand(0)->isNullValue()) {
407           Type *Ty =
408             cast<PointerType>(CE->getOperand(0)->getType())->getElementType();
409           if (StructType *STy = dyn_cast<StructType>(Ty))
410             if (!STy->isPacked() &&
411                 CE->getNumOperands() == 3 &&
412                 CE->getOperand(1)->isNullValue()) {
413               if (ConstantInt *CI = dyn_cast<ConstantInt>(CE->getOperand(2)))
414                 if (CI->isOne() &&
415                     STy->getNumElements() == 2 &&
416                     STy->getElementType(0)->isIntegerTy(1)) {
417                   AllocTy = STy->getElementType(1);
418                   return true;
419                 }
420             }
421         }
422 
423   return false;
424 }
425 
426 bool SCEVUnknown::isOffsetOf(Type *&CTy, Constant *&FieldNo) const {
427   if (ConstantExpr *VCE = dyn_cast<ConstantExpr>(getValue()))
428     if (VCE->getOpcode() == Instruction::PtrToInt)
429       if (ConstantExpr *CE = dyn_cast<ConstantExpr>(VCE->getOperand(0)))
430         if (CE->getOpcode() == Instruction::GetElementPtr &&
431             CE->getNumOperands() == 3 &&
432             CE->getOperand(0)->isNullValue() &&
433             CE->getOperand(1)->isNullValue()) {
434           Type *Ty =
435             cast<PointerType>(CE->getOperand(0)->getType())->getElementType();
436           // Ignore vector types here so that ScalarEvolutionExpander doesn't
437           // emit getelementptrs that index into vectors.
438           if (Ty->isStructTy() || Ty->isArrayTy()) {
439             CTy = Ty;
440             FieldNo = CE->getOperand(2);
441             return true;
442           }
443         }
444 
445   return false;
446 }
447 
448 //===----------------------------------------------------------------------===//
449 //                               SCEV Utilities
450 //===----------------------------------------------------------------------===//
451 
452 namespace {
453 /// SCEVComplexityCompare - Return true if the complexity of the LHS is less
454 /// than the complexity of the RHS.  This comparator is used to canonicalize
455 /// expressions.
456 class SCEVComplexityCompare {
457   const LoopInfo *const LI;
458 public:
459   explicit SCEVComplexityCompare(const LoopInfo *li) : LI(li) {}
460 
461   // Return true or false if LHS is less than, or at least RHS, respectively.
462   bool operator()(const SCEV *LHS, const SCEV *RHS) const {
463     return compare(LHS, RHS) < 0;
464   }
465 
466   // Return negative, zero, or positive, if LHS is less than, equal to, or
467   // greater than RHS, respectively. A three-way result allows recursive
468   // comparisons to be more efficient.
469   int compare(const SCEV *LHS, const SCEV *RHS) const {
470     // Fast-path: SCEVs are uniqued so we can do a quick equality check.
471     if (LHS == RHS)
472       return 0;
473 
474     // Primarily, sort the SCEVs by their getSCEVType().
475     unsigned LType = LHS->getSCEVType(), RType = RHS->getSCEVType();
476     if (LType != RType)
477       return (int)LType - (int)RType;
478 
479     // Aside from the getSCEVType() ordering, the particular ordering
480     // isn't very important except that it's beneficial to be consistent,
481     // so that (a + b) and (b + a) don't end up as different expressions.
482     switch (static_cast<SCEVTypes>(LType)) {
483     case scUnknown: {
484       const SCEVUnknown *LU = cast<SCEVUnknown>(LHS);
485       const SCEVUnknown *RU = cast<SCEVUnknown>(RHS);
486 
487       // Sort SCEVUnknown values with some loose heuristics. TODO: This is
488       // not as complete as it could be.
489       const Value *LV = LU->getValue(), *RV = RU->getValue();
490 
491       // Order pointer values after integer values. This helps SCEVExpander
492       // form GEPs.
493       bool LIsPointer = LV->getType()->isPointerTy(),
494         RIsPointer = RV->getType()->isPointerTy();
495       if (LIsPointer != RIsPointer)
496         return (int)LIsPointer - (int)RIsPointer;
497 
498       // Compare getValueID values.
499       unsigned LID = LV->getValueID(),
500         RID = RV->getValueID();
501       if (LID != RID)
502         return (int)LID - (int)RID;
503 
504       // Sort arguments by their position.
505       if (const Argument *LA = dyn_cast<Argument>(LV)) {
506         const Argument *RA = cast<Argument>(RV);
507         unsigned LArgNo = LA->getArgNo(), RArgNo = RA->getArgNo();
508         return (int)LArgNo - (int)RArgNo;
509       }
510 
511       // For instructions, compare their loop depth, and their operand
512       // count.  This is pretty loose.
513       if (const Instruction *LInst = dyn_cast<Instruction>(LV)) {
514         const Instruction *RInst = cast<Instruction>(RV);
515 
516         // Compare loop depths.
517         const BasicBlock *LParent = LInst->getParent(),
518           *RParent = RInst->getParent();
519         if (LParent != RParent) {
520           unsigned LDepth = LI->getLoopDepth(LParent),
521             RDepth = LI->getLoopDepth(RParent);
522           if (LDepth != RDepth)
523             return (int)LDepth - (int)RDepth;
524         }
525 
526         // Compare the number of operands.
527         unsigned LNumOps = LInst->getNumOperands(),
528           RNumOps = RInst->getNumOperands();
529         return (int)LNumOps - (int)RNumOps;
530       }
531 
532       return 0;
533     }
534 
535     case scConstant: {
536       const SCEVConstant *LC = cast<SCEVConstant>(LHS);
537       const SCEVConstant *RC = cast<SCEVConstant>(RHS);
538 
539       // Compare constant values.
540       const APInt &LA = LC->getAPInt();
541       const APInt &RA = RC->getAPInt();
542       unsigned LBitWidth = LA.getBitWidth(), RBitWidth = RA.getBitWidth();
543       if (LBitWidth != RBitWidth)
544         return (int)LBitWidth - (int)RBitWidth;
545       return LA.ult(RA) ? -1 : 1;
546     }
547 
548     case scAddRecExpr: {
549       const SCEVAddRecExpr *LA = cast<SCEVAddRecExpr>(LHS);
550       const SCEVAddRecExpr *RA = cast<SCEVAddRecExpr>(RHS);
551 
552       // Compare addrec loop depths.
553       const Loop *LLoop = LA->getLoop(), *RLoop = RA->getLoop();
554       if (LLoop != RLoop) {
555         unsigned LDepth = LLoop->getLoopDepth(),
556           RDepth = RLoop->getLoopDepth();
557         if (LDepth != RDepth)
558           return (int)LDepth - (int)RDepth;
559       }
560 
561       // Addrec complexity grows with operand count.
562       unsigned LNumOps = LA->getNumOperands(), RNumOps = RA->getNumOperands();
563       if (LNumOps != RNumOps)
564         return (int)LNumOps - (int)RNumOps;
565 
566       // Lexicographically compare.
567       for (unsigned i = 0; i != LNumOps; ++i) {
568         long X = compare(LA->getOperand(i), RA->getOperand(i));
569         if (X != 0)
570           return X;
571       }
572 
573       return 0;
574     }
575 
576     case scAddExpr:
577     case scMulExpr:
578     case scSMaxExpr:
579     case scUMaxExpr: {
580       const SCEVNAryExpr *LC = cast<SCEVNAryExpr>(LHS);
581       const SCEVNAryExpr *RC = cast<SCEVNAryExpr>(RHS);
582 
583       // Lexicographically compare n-ary expressions.
584       unsigned LNumOps = LC->getNumOperands(), RNumOps = RC->getNumOperands();
585       if (LNumOps != RNumOps)
586         return (int)LNumOps - (int)RNumOps;
587 
588       for (unsigned i = 0; i != LNumOps; ++i) {
589         if (i >= RNumOps)
590           return 1;
591         long X = compare(LC->getOperand(i), RC->getOperand(i));
592         if (X != 0)
593           return X;
594       }
595       return (int)LNumOps - (int)RNumOps;
596     }
597 
598     case scUDivExpr: {
599       const SCEVUDivExpr *LC = cast<SCEVUDivExpr>(LHS);
600       const SCEVUDivExpr *RC = cast<SCEVUDivExpr>(RHS);
601 
602       // Lexicographically compare udiv expressions.
603       long X = compare(LC->getLHS(), RC->getLHS());
604       if (X != 0)
605         return X;
606       return compare(LC->getRHS(), RC->getRHS());
607     }
608 
609     case scTruncate:
610     case scZeroExtend:
611     case scSignExtend: {
612       const SCEVCastExpr *LC = cast<SCEVCastExpr>(LHS);
613       const SCEVCastExpr *RC = cast<SCEVCastExpr>(RHS);
614 
615       // Compare cast expressions by operand.
616       return compare(LC->getOperand(), RC->getOperand());
617     }
618 
619     case scCouldNotCompute:
620       llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
621     }
622     llvm_unreachable("Unknown SCEV kind!");
623   }
624 };
625 }  // end anonymous namespace
626 
627 /// GroupByComplexity - Given a list of SCEV objects, order them by their
628 /// complexity, and group objects of the same complexity together by value.
629 /// When this routine is finished, we know that any duplicates in the vector are
630 /// consecutive and that complexity is monotonically increasing.
631 ///
632 /// Note that we go take special precautions to ensure that we get deterministic
633 /// results from this routine.  In other words, we don't want the results of
634 /// this to depend on where the addresses of various SCEV objects happened to
635 /// land in memory.
636 ///
637 static void GroupByComplexity(SmallVectorImpl<const SCEV *> &Ops,
638                               LoopInfo *LI) {
639   if (Ops.size() < 2) return;  // Noop
640   if (Ops.size() == 2) {
641     // This is the common case, which also happens to be trivially simple.
642     // Special case it.
643     const SCEV *&LHS = Ops[0], *&RHS = Ops[1];
644     if (SCEVComplexityCompare(LI)(RHS, LHS))
645       std::swap(LHS, RHS);
646     return;
647   }
648 
649   // Do the rough sort by complexity.
650   std::stable_sort(Ops.begin(), Ops.end(), SCEVComplexityCompare(LI));
651 
652   // Now that we are sorted by complexity, group elements of the same
653   // complexity.  Note that this is, at worst, N^2, but the vector is likely to
654   // be extremely short in practice.  Note that we take this approach because we
655   // do not want to depend on the addresses of the objects we are grouping.
656   for (unsigned i = 0, e = Ops.size(); i != e-2; ++i) {
657     const SCEV *S = Ops[i];
658     unsigned Complexity = S->getSCEVType();
659 
660     // If there are any objects of the same complexity and same value as this
661     // one, group them.
662     for (unsigned j = i+1; j != e && Ops[j]->getSCEVType() == Complexity; ++j) {
663       if (Ops[j] == S) { // Found a duplicate.
664         // Move it to immediately after i'th element.
665         std::swap(Ops[i+1], Ops[j]);
666         ++i;   // no need to rescan it.
667         if (i == e-2) return;  // Done!
668       }
669     }
670   }
671 }
672 
673 // Returns the size of the SCEV S.
674 static inline int sizeOfSCEV(const SCEV *S) {
675   struct FindSCEVSize {
676     int Size;
677     FindSCEVSize() : Size(0) {}
678 
679     bool follow(const SCEV *S) {
680       ++Size;
681       // Keep looking at all operands of S.
682       return true;
683     }
684     bool isDone() const {
685       return false;
686     }
687   };
688 
689   FindSCEVSize F;
690   SCEVTraversal<FindSCEVSize> ST(F);
691   ST.visitAll(S);
692   return F.Size;
693 }
694 
695 namespace {
696 
697 struct SCEVDivision : public SCEVVisitor<SCEVDivision, void> {
698 public:
699   // Computes the Quotient and Remainder of the division of Numerator by
700   // Denominator.
701   static void divide(ScalarEvolution &SE, const SCEV *Numerator,
702                      const SCEV *Denominator, const SCEV **Quotient,
703                      const SCEV **Remainder) {
704     assert(Numerator && Denominator && "Uninitialized SCEV");
705 
706     SCEVDivision D(SE, Numerator, Denominator);
707 
708     // Check for the trivial case here to avoid having to check for it in the
709     // rest of the code.
710     if (Numerator == Denominator) {
711       *Quotient = D.One;
712       *Remainder = D.Zero;
713       return;
714     }
715 
716     if (Numerator->isZero()) {
717       *Quotient = D.Zero;
718       *Remainder = D.Zero;
719       return;
720     }
721 
722     // A simple case when N/1. The quotient is N.
723     if (Denominator->isOne()) {
724       *Quotient = Numerator;
725       *Remainder = D.Zero;
726       return;
727     }
728 
729     // Split the Denominator when it is a product.
730     if (const SCEVMulExpr *T = dyn_cast<const SCEVMulExpr>(Denominator)) {
731       const SCEV *Q, *R;
732       *Quotient = Numerator;
733       for (const SCEV *Op : T->operands()) {
734         divide(SE, *Quotient, Op, &Q, &R);
735         *Quotient = Q;
736 
737         // Bail out when the Numerator is not divisible by one of the terms of
738         // the Denominator.
739         if (!R->isZero()) {
740           *Quotient = D.Zero;
741           *Remainder = Numerator;
742           return;
743         }
744       }
745       *Remainder = D.Zero;
746       return;
747     }
748 
749     D.visit(Numerator);
750     *Quotient = D.Quotient;
751     *Remainder = D.Remainder;
752   }
753 
754   // Except in the trivial case described above, we do not know how to divide
755   // Expr by Denominator for the following functions with empty implementation.
756   void visitTruncateExpr(const SCEVTruncateExpr *Numerator) {}
757   void visitZeroExtendExpr(const SCEVZeroExtendExpr *Numerator) {}
758   void visitSignExtendExpr(const SCEVSignExtendExpr *Numerator) {}
759   void visitUDivExpr(const SCEVUDivExpr *Numerator) {}
760   void visitSMaxExpr(const SCEVSMaxExpr *Numerator) {}
761   void visitUMaxExpr(const SCEVUMaxExpr *Numerator) {}
762   void visitUnknown(const SCEVUnknown *Numerator) {}
763   void visitCouldNotCompute(const SCEVCouldNotCompute *Numerator) {}
764 
765   void visitConstant(const SCEVConstant *Numerator) {
766     if (const SCEVConstant *D = dyn_cast<SCEVConstant>(Denominator)) {
767       APInt NumeratorVal = Numerator->getAPInt();
768       APInt DenominatorVal = D->getAPInt();
769       uint32_t NumeratorBW = NumeratorVal.getBitWidth();
770       uint32_t DenominatorBW = DenominatorVal.getBitWidth();
771 
772       if (NumeratorBW > DenominatorBW)
773         DenominatorVal = DenominatorVal.sext(NumeratorBW);
774       else if (NumeratorBW < DenominatorBW)
775         NumeratorVal = NumeratorVal.sext(DenominatorBW);
776 
777       APInt QuotientVal(NumeratorVal.getBitWidth(), 0);
778       APInt RemainderVal(NumeratorVal.getBitWidth(), 0);
779       APInt::sdivrem(NumeratorVal, DenominatorVal, QuotientVal, RemainderVal);
780       Quotient = SE.getConstant(QuotientVal);
781       Remainder = SE.getConstant(RemainderVal);
782       return;
783     }
784   }
785 
786   void visitAddRecExpr(const SCEVAddRecExpr *Numerator) {
787     const SCEV *StartQ, *StartR, *StepQ, *StepR;
788     if (!Numerator->isAffine())
789       return cannotDivide(Numerator);
790     divide(SE, Numerator->getStart(), Denominator, &StartQ, &StartR);
791     divide(SE, Numerator->getStepRecurrence(SE), Denominator, &StepQ, &StepR);
792     // Bail out if the types do not match.
793     Type *Ty = Denominator->getType();
794     if (Ty != StartQ->getType() || Ty != StartR->getType() ||
795         Ty != StepQ->getType() || Ty != StepR->getType())
796       return cannotDivide(Numerator);
797     Quotient = SE.getAddRecExpr(StartQ, StepQ, Numerator->getLoop(),
798                                 Numerator->getNoWrapFlags());
799     Remainder = SE.getAddRecExpr(StartR, StepR, Numerator->getLoop(),
800                                  Numerator->getNoWrapFlags());
801   }
802 
803   void visitAddExpr(const SCEVAddExpr *Numerator) {
804     SmallVector<const SCEV *, 2> Qs, Rs;
805     Type *Ty = Denominator->getType();
806 
807     for (const SCEV *Op : Numerator->operands()) {
808       const SCEV *Q, *R;
809       divide(SE, Op, Denominator, &Q, &R);
810 
811       // Bail out if types do not match.
812       if (Ty != Q->getType() || Ty != R->getType())
813         return cannotDivide(Numerator);
814 
815       Qs.push_back(Q);
816       Rs.push_back(R);
817     }
818 
819     if (Qs.size() == 1) {
820       Quotient = Qs[0];
821       Remainder = Rs[0];
822       return;
823     }
824 
825     Quotient = SE.getAddExpr(Qs);
826     Remainder = SE.getAddExpr(Rs);
827   }
828 
829   void visitMulExpr(const SCEVMulExpr *Numerator) {
830     SmallVector<const SCEV *, 2> Qs;
831     Type *Ty = Denominator->getType();
832 
833     bool FoundDenominatorTerm = false;
834     for (const SCEV *Op : Numerator->operands()) {
835       // Bail out if types do not match.
836       if (Ty != Op->getType())
837         return cannotDivide(Numerator);
838 
839       if (FoundDenominatorTerm) {
840         Qs.push_back(Op);
841         continue;
842       }
843 
844       // Check whether Denominator divides one of the product operands.
845       const SCEV *Q, *R;
846       divide(SE, Op, Denominator, &Q, &R);
847       if (!R->isZero()) {
848         Qs.push_back(Op);
849         continue;
850       }
851 
852       // Bail out if types do not match.
853       if (Ty != Q->getType())
854         return cannotDivide(Numerator);
855 
856       FoundDenominatorTerm = true;
857       Qs.push_back(Q);
858     }
859 
860     if (FoundDenominatorTerm) {
861       Remainder = Zero;
862       if (Qs.size() == 1)
863         Quotient = Qs[0];
864       else
865         Quotient = SE.getMulExpr(Qs);
866       return;
867     }
868 
869     if (!isa<SCEVUnknown>(Denominator))
870       return cannotDivide(Numerator);
871 
872     // The Remainder is obtained by replacing Denominator by 0 in Numerator.
873     ValueToValueMap RewriteMap;
874     RewriteMap[cast<SCEVUnknown>(Denominator)->getValue()] =
875         cast<SCEVConstant>(Zero)->getValue();
876     Remainder = SCEVParameterRewriter::rewrite(Numerator, SE, RewriteMap, true);
877 
878     if (Remainder->isZero()) {
879       // The Quotient is obtained by replacing Denominator by 1 in Numerator.
880       RewriteMap[cast<SCEVUnknown>(Denominator)->getValue()] =
881           cast<SCEVConstant>(One)->getValue();
882       Quotient =
883           SCEVParameterRewriter::rewrite(Numerator, SE, RewriteMap, true);
884       return;
885     }
886 
887     // Quotient is (Numerator - Remainder) divided by Denominator.
888     const SCEV *Q, *R;
889     const SCEV *Diff = SE.getMinusSCEV(Numerator, Remainder);
890     // This SCEV does not seem to simplify: fail the division here.
891     if (sizeOfSCEV(Diff) > sizeOfSCEV(Numerator))
892       return cannotDivide(Numerator);
893     divide(SE, Diff, Denominator, &Q, &R);
894     if (R != Zero)
895       return cannotDivide(Numerator);
896     Quotient = Q;
897   }
898 
899 private:
900   SCEVDivision(ScalarEvolution &S, const SCEV *Numerator,
901                const SCEV *Denominator)
902       : SE(S), Denominator(Denominator) {
903     Zero = SE.getZero(Denominator->getType());
904     One = SE.getOne(Denominator->getType());
905 
906     // We generally do not know how to divide Expr by Denominator. We
907     // initialize the division to a "cannot divide" state to simplify the rest
908     // of the code.
909     cannotDivide(Numerator);
910   }
911 
912   // Convenience function for giving up on the division. We set the quotient to
913   // be equal to zero and the remainder to be equal to the numerator.
914   void cannotDivide(const SCEV *Numerator) {
915     Quotient = Zero;
916     Remainder = Numerator;
917   }
918 
919   ScalarEvolution &SE;
920   const SCEV *Denominator, *Quotient, *Remainder, *Zero, *One;
921 };
922 
923 }
924 
925 //===----------------------------------------------------------------------===//
926 //                      Simple SCEV method implementations
927 //===----------------------------------------------------------------------===//
928 
929 /// BinomialCoefficient - Compute BC(It, K).  The result has width W.
930 /// Assume, K > 0.
931 static const SCEV *BinomialCoefficient(const SCEV *It, unsigned K,
932                                        ScalarEvolution &SE,
933                                        Type *ResultTy) {
934   // Handle the simplest case efficiently.
935   if (K == 1)
936     return SE.getTruncateOrZeroExtend(It, ResultTy);
937 
938   // We are using the following formula for BC(It, K):
939   //
940   //   BC(It, K) = (It * (It - 1) * ... * (It - K + 1)) / K!
941   //
942   // Suppose, W is the bitwidth of the return value.  We must be prepared for
943   // overflow.  Hence, we must assure that the result of our computation is
944   // equal to the accurate one modulo 2^W.  Unfortunately, division isn't
945   // safe in modular arithmetic.
946   //
947   // However, this code doesn't use exactly that formula; the formula it uses
948   // is something like the following, where T is the number of factors of 2 in
949   // K! (i.e. trailing zeros in the binary representation of K!), and ^ is
950   // exponentiation:
951   //
952   //   BC(It, K) = (It * (It - 1) * ... * (It - K + 1)) / 2^T / (K! / 2^T)
953   //
954   // This formula is trivially equivalent to the previous formula.  However,
955   // this formula can be implemented much more efficiently.  The trick is that
956   // K! / 2^T is odd, and exact division by an odd number *is* safe in modular
957   // arithmetic.  To do exact division in modular arithmetic, all we have
958   // to do is multiply by the inverse.  Therefore, this step can be done at
959   // width W.
960   //
961   // The next issue is how to safely do the division by 2^T.  The way this
962   // is done is by doing the multiplication step at a width of at least W + T
963   // bits.  This way, the bottom W+T bits of the product are accurate. Then,
964   // when we perform the division by 2^T (which is equivalent to a right shift
965   // by T), the bottom W bits are accurate.  Extra bits are okay; they'll get
966   // truncated out after the division by 2^T.
967   //
968   // In comparison to just directly using the first formula, this technique
969   // is much more efficient; using the first formula requires W * K bits,
970   // but this formula less than W + K bits. Also, the first formula requires
971   // a division step, whereas this formula only requires multiplies and shifts.
972   //
973   // It doesn't matter whether the subtraction step is done in the calculation
974   // width or the input iteration count's width; if the subtraction overflows,
975   // the result must be zero anyway.  We prefer here to do it in the width of
976   // the induction variable because it helps a lot for certain cases; CodeGen
977   // isn't smart enough to ignore the overflow, which leads to much less
978   // efficient code if the width of the subtraction is wider than the native
979   // register width.
980   //
981   // (It's possible to not widen at all by pulling out factors of 2 before
982   // the multiplication; for example, K=2 can be calculated as
983   // It/2*(It+(It*INT_MIN/INT_MIN)+-1). However, it requires
984   // extra arithmetic, so it's not an obvious win, and it gets
985   // much more complicated for K > 3.)
986 
987   // Protection from insane SCEVs; this bound is conservative,
988   // but it probably doesn't matter.
989   if (K > 1000)
990     return SE.getCouldNotCompute();
991 
992   unsigned W = SE.getTypeSizeInBits(ResultTy);
993 
994   // Calculate K! / 2^T and T; we divide out the factors of two before
995   // multiplying for calculating K! / 2^T to avoid overflow.
996   // Other overflow doesn't matter because we only care about the bottom
997   // W bits of the result.
998   APInt OddFactorial(W, 1);
999   unsigned T = 1;
1000   for (unsigned i = 3; i <= K; ++i) {
1001     APInt Mult(W, i);
1002     unsigned TwoFactors = Mult.countTrailingZeros();
1003     T += TwoFactors;
1004     Mult = Mult.lshr(TwoFactors);
1005     OddFactorial *= Mult;
1006   }
1007 
1008   // We need at least W + T bits for the multiplication step
1009   unsigned CalculationBits = W + T;
1010 
1011   // Calculate 2^T, at width T+W.
1012   APInt DivFactor = APInt::getOneBitSet(CalculationBits, T);
1013 
1014   // Calculate the multiplicative inverse of K! / 2^T;
1015   // this multiplication factor will perform the exact division by
1016   // K! / 2^T.
1017   APInt Mod = APInt::getSignedMinValue(W+1);
1018   APInt MultiplyFactor = OddFactorial.zext(W+1);
1019   MultiplyFactor = MultiplyFactor.multiplicativeInverse(Mod);
1020   MultiplyFactor = MultiplyFactor.trunc(W);
1021 
1022   // Calculate the product, at width T+W
1023   IntegerType *CalculationTy = IntegerType::get(SE.getContext(),
1024                                                       CalculationBits);
1025   const SCEV *Dividend = SE.getTruncateOrZeroExtend(It, CalculationTy);
1026   for (unsigned i = 1; i != K; ++i) {
1027     const SCEV *S = SE.getMinusSCEV(It, SE.getConstant(It->getType(), i));
1028     Dividend = SE.getMulExpr(Dividend,
1029                              SE.getTruncateOrZeroExtend(S, CalculationTy));
1030   }
1031 
1032   // Divide by 2^T
1033   const SCEV *DivResult = SE.getUDivExpr(Dividend, SE.getConstant(DivFactor));
1034 
1035   // Truncate the result, and divide by K! / 2^T.
1036 
1037   return SE.getMulExpr(SE.getConstant(MultiplyFactor),
1038                        SE.getTruncateOrZeroExtend(DivResult, ResultTy));
1039 }
1040 
1041 /// evaluateAtIteration - Return the value of this chain of recurrences at
1042 /// the specified iteration number.  We can evaluate this recurrence by
1043 /// multiplying each element in the chain by the binomial coefficient
1044 /// corresponding to it.  In other words, we can evaluate {A,+,B,+,C,+,D} as:
1045 ///
1046 ///   A*BC(It, 0) + B*BC(It, 1) + C*BC(It, 2) + D*BC(It, 3)
1047 ///
1048 /// where BC(It, k) stands for binomial coefficient.
1049 ///
1050 const SCEV *SCEVAddRecExpr::evaluateAtIteration(const SCEV *It,
1051                                                 ScalarEvolution &SE) const {
1052   const SCEV *Result = getStart();
1053   for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1054     // The computation is correct in the face of overflow provided that the
1055     // multiplication is performed _after_ the evaluation of the binomial
1056     // coefficient.
1057     const SCEV *Coeff = BinomialCoefficient(It, i, SE, getType());
1058     if (isa<SCEVCouldNotCompute>(Coeff))
1059       return Coeff;
1060 
1061     Result = SE.getAddExpr(Result, SE.getMulExpr(getOperand(i), Coeff));
1062   }
1063   return Result;
1064 }
1065 
1066 //===----------------------------------------------------------------------===//
1067 //                    SCEV Expression folder implementations
1068 //===----------------------------------------------------------------------===//
1069 
1070 const SCEV *ScalarEvolution::getTruncateExpr(const SCEV *Op,
1071                                              Type *Ty) {
1072   assert(getTypeSizeInBits(Op->getType()) > getTypeSizeInBits(Ty) &&
1073          "This is not a truncating conversion!");
1074   assert(isSCEVable(Ty) &&
1075          "This is not a conversion to a SCEVable type!");
1076   Ty = getEffectiveSCEVType(Ty);
1077 
1078   FoldingSetNodeID ID;
1079   ID.AddInteger(scTruncate);
1080   ID.AddPointer(Op);
1081   ID.AddPointer(Ty);
1082   void *IP = nullptr;
1083   if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
1084 
1085   // Fold if the operand is constant.
1086   if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(Op))
1087     return getConstant(
1088       cast<ConstantInt>(ConstantExpr::getTrunc(SC->getValue(), Ty)));
1089 
1090   // trunc(trunc(x)) --> trunc(x)
1091   if (const SCEVTruncateExpr *ST = dyn_cast<SCEVTruncateExpr>(Op))
1092     return getTruncateExpr(ST->getOperand(), Ty);
1093 
1094   // trunc(sext(x)) --> sext(x) if widening or trunc(x) if narrowing
1095   if (const SCEVSignExtendExpr *SS = dyn_cast<SCEVSignExtendExpr>(Op))
1096     return getTruncateOrSignExtend(SS->getOperand(), Ty);
1097 
1098   // trunc(zext(x)) --> zext(x) if widening or trunc(x) if narrowing
1099   if (const SCEVZeroExtendExpr *SZ = dyn_cast<SCEVZeroExtendExpr>(Op))
1100     return getTruncateOrZeroExtend(SZ->getOperand(), Ty);
1101 
1102   // trunc(x1+x2+...+xN) --> trunc(x1)+trunc(x2)+...+trunc(xN) if we can
1103   // eliminate all the truncates, or we replace other casts with truncates.
1104   if (const SCEVAddExpr *SA = dyn_cast<SCEVAddExpr>(Op)) {
1105     SmallVector<const SCEV *, 4> Operands;
1106     bool hasTrunc = false;
1107     for (unsigned i = 0, e = SA->getNumOperands(); i != e && !hasTrunc; ++i) {
1108       const SCEV *S = getTruncateExpr(SA->getOperand(i), Ty);
1109       if (!isa<SCEVCastExpr>(SA->getOperand(i)))
1110         hasTrunc = isa<SCEVTruncateExpr>(S);
1111       Operands.push_back(S);
1112     }
1113     if (!hasTrunc)
1114       return getAddExpr(Operands);
1115     UniqueSCEVs.FindNodeOrInsertPos(ID, IP);  // Mutates IP, returns NULL.
1116   }
1117 
1118   // trunc(x1*x2*...*xN) --> trunc(x1)*trunc(x2)*...*trunc(xN) if we can
1119   // eliminate all the truncates, or we replace other casts with truncates.
1120   if (const SCEVMulExpr *SM = dyn_cast<SCEVMulExpr>(Op)) {
1121     SmallVector<const SCEV *, 4> Operands;
1122     bool hasTrunc = false;
1123     for (unsigned i = 0, e = SM->getNumOperands(); i != e && !hasTrunc; ++i) {
1124       const SCEV *S = getTruncateExpr(SM->getOperand(i), Ty);
1125       if (!isa<SCEVCastExpr>(SM->getOperand(i)))
1126         hasTrunc = isa<SCEVTruncateExpr>(S);
1127       Operands.push_back(S);
1128     }
1129     if (!hasTrunc)
1130       return getMulExpr(Operands);
1131     UniqueSCEVs.FindNodeOrInsertPos(ID, IP);  // Mutates IP, returns NULL.
1132   }
1133 
1134   // If the input value is a chrec scev, truncate the chrec's operands.
1135   if (const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(Op)) {
1136     SmallVector<const SCEV *, 4> Operands;
1137     for (const SCEV *Op : AddRec->operands())
1138       Operands.push_back(getTruncateExpr(Op, Ty));
1139     return getAddRecExpr(Operands, AddRec->getLoop(), SCEV::FlagAnyWrap);
1140   }
1141 
1142   // The cast wasn't folded; create an explicit cast node. We can reuse
1143   // the existing insert position since if we get here, we won't have
1144   // made any changes which would invalidate it.
1145   SCEV *S = new (SCEVAllocator) SCEVTruncateExpr(ID.Intern(SCEVAllocator),
1146                                                  Op, Ty);
1147   UniqueSCEVs.InsertNode(S, IP);
1148   return S;
1149 }
1150 
1151 // Get the limit of a recurrence such that incrementing by Step cannot cause
1152 // signed overflow as long as the value of the recurrence within the
1153 // loop does not exceed this limit before incrementing.
1154 static const SCEV *getSignedOverflowLimitForStep(const SCEV *Step,
1155                                                  ICmpInst::Predicate *Pred,
1156                                                  ScalarEvolution *SE) {
1157   unsigned BitWidth = SE->getTypeSizeInBits(Step->getType());
1158   if (SE->isKnownPositive(Step)) {
1159     *Pred = ICmpInst::ICMP_SLT;
1160     return SE->getConstant(APInt::getSignedMinValue(BitWidth) -
1161                            SE->getSignedRange(Step).getSignedMax());
1162   }
1163   if (SE->isKnownNegative(Step)) {
1164     *Pred = ICmpInst::ICMP_SGT;
1165     return SE->getConstant(APInt::getSignedMaxValue(BitWidth) -
1166                            SE->getSignedRange(Step).getSignedMin());
1167   }
1168   return nullptr;
1169 }
1170 
1171 // Get the limit of a recurrence such that incrementing by Step cannot cause
1172 // unsigned overflow as long as the value of the recurrence within the loop does
1173 // not exceed this limit before incrementing.
1174 static const SCEV *getUnsignedOverflowLimitForStep(const SCEV *Step,
1175                                                    ICmpInst::Predicate *Pred,
1176                                                    ScalarEvolution *SE) {
1177   unsigned BitWidth = SE->getTypeSizeInBits(Step->getType());
1178   *Pred = ICmpInst::ICMP_ULT;
1179 
1180   return SE->getConstant(APInt::getMinValue(BitWidth) -
1181                          SE->getUnsignedRange(Step).getUnsignedMax());
1182 }
1183 
1184 namespace {
1185 
1186 struct ExtendOpTraitsBase {
1187   typedef const SCEV *(ScalarEvolution::*GetExtendExprTy)(const SCEV *, Type *);
1188 };
1189 
1190 // Used to make code generic over signed and unsigned overflow.
1191 template <typename ExtendOp> struct ExtendOpTraits {
1192   // Members present:
1193   //
1194   // static const SCEV::NoWrapFlags WrapType;
1195   //
1196   // static const ExtendOpTraitsBase::GetExtendExprTy GetExtendExpr;
1197   //
1198   // static const SCEV *getOverflowLimitForStep(const SCEV *Step,
1199   //                                           ICmpInst::Predicate *Pred,
1200   //                                           ScalarEvolution *SE);
1201 };
1202 
1203 template <>
1204 struct ExtendOpTraits<SCEVSignExtendExpr> : public ExtendOpTraitsBase {
1205   static const SCEV::NoWrapFlags WrapType = SCEV::FlagNSW;
1206 
1207   static const GetExtendExprTy GetExtendExpr;
1208 
1209   static const SCEV *getOverflowLimitForStep(const SCEV *Step,
1210                                              ICmpInst::Predicate *Pred,
1211                                              ScalarEvolution *SE) {
1212     return getSignedOverflowLimitForStep(Step, Pred, SE);
1213   }
1214 };
1215 
1216 const ExtendOpTraitsBase::GetExtendExprTy ExtendOpTraits<
1217     SCEVSignExtendExpr>::GetExtendExpr = &ScalarEvolution::getSignExtendExpr;
1218 
1219 template <>
1220 struct ExtendOpTraits<SCEVZeroExtendExpr> : public ExtendOpTraitsBase {
1221   static const SCEV::NoWrapFlags WrapType = SCEV::FlagNUW;
1222 
1223   static const GetExtendExprTy GetExtendExpr;
1224 
1225   static const SCEV *getOverflowLimitForStep(const SCEV *Step,
1226                                              ICmpInst::Predicate *Pred,
1227                                              ScalarEvolution *SE) {
1228     return getUnsignedOverflowLimitForStep(Step, Pred, SE);
1229   }
1230 };
1231 
1232 const ExtendOpTraitsBase::GetExtendExprTy ExtendOpTraits<
1233     SCEVZeroExtendExpr>::GetExtendExpr = &ScalarEvolution::getZeroExtendExpr;
1234 }
1235 
1236 // The recurrence AR has been shown to have no signed/unsigned wrap or something
1237 // close to it. Typically, if we can prove NSW/NUW for AR, then we can just as
1238 // easily prove NSW/NUW for its preincrement or postincrement sibling. This
1239 // allows normalizing a sign/zero extended AddRec as such: {sext/zext(Step +
1240 // Start),+,Step} => {(Step + sext/zext(Start),+,Step} As a result, the
1241 // expression "Step + sext/zext(PreIncAR)" is congruent with
1242 // "sext/zext(PostIncAR)"
1243 template <typename ExtendOpTy>
1244 static const SCEV *getPreStartForExtend(const SCEVAddRecExpr *AR, Type *Ty,
1245                                         ScalarEvolution *SE) {
1246   auto WrapType = ExtendOpTraits<ExtendOpTy>::WrapType;
1247   auto GetExtendExpr = ExtendOpTraits<ExtendOpTy>::GetExtendExpr;
1248 
1249   const Loop *L = AR->getLoop();
1250   const SCEV *Start = AR->getStart();
1251   const SCEV *Step = AR->getStepRecurrence(*SE);
1252 
1253   // Check for a simple looking step prior to loop entry.
1254   const SCEVAddExpr *SA = dyn_cast<SCEVAddExpr>(Start);
1255   if (!SA)
1256     return nullptr;
1257 
1258   // Create an AddExpr for "PreStart" after subtracting Step. Full SCEV
1259   // subtraction is expensive. For this purpose, perform a quick and dirty
1260   // difference, by checking for Step in the operand list.
1261   SmallVector<const SCEV *, 4> DiffOps;
1262   for (const SCEV *Op : SA->operands())
1263     if (Op != Step)
1264       DiffOps.push_back(Op);
1265 
1266   if (DiffOps.size() == SA->getNumOperands())
1267     return nullptr;
1268 
1269   // Try to prove `WrapType` (SCEV::FlagNSW or SCEV::FlagNUW) on `PreStart` +
1270   // `Step`:
1271 
1272   // 1. NSW/NUW flags on the step increment.
1273   auto PreStartFlags =
1274     ScalarEvolution::maskFlags(SA->getNoWrapFlags(), SCEV::FlagNUW);
1275   const SCEV *PreStart = SE->getAddExpr(DiffOps, PreStartFlags);
1276   const SCEVAddRecExpr *PreAR = dyn_cast<SCEVAddRecExpr>(
1277       SE->getAddRecExpr(PreStart, Step, L, SCEV::FlagAnyWrap));
1278 
1279   // "{S,+,X} is <nsw>/<nuw>" and "the backedge is taken at least once" implies
1280   // "S+X does not sign/unsign-overflow".
1281   //
1282 
1283   const SCEV *BECount = SE->getBackedgeTakenCount(L);
1284   if (PreAR && PreAR->getNoWrapFlags(WrapType) &&
1285       !isa<SCEVCouldNotCompute>(BECount) && SE->isKnownPositive(BECount))
1286     return PreStart;
1287 
1288   // 2. Direct overflow check on the step operation's expression.
1289   unsigned BitWidth = SE->getTypeSizeInBits(AR->getType());
1290   Type *WideTy = IntegerType::get(SE->getContext(), BitWidth * 2);
1291   const SCEV *OperandExtendedStart =
1292       SE->getAddExpr((SE->*GetExtendExpr)(PreStart, WideTy),
1293                      (SE->*GetExtendExpr)(Step, WideTy));
1294   if ((SE->*GetExtendExpr)(Start, WideTy) == OperandExtendedStart) {
1295     if (PreAR && AR->getNoWrapFlags(WrapType)) {
1296       // If we know `AR` == {`PreStart`+`Step`,+,`Step`} is `WrapType` (FlagNSW
1297       // or FlagNUW) and that `PreStart` + `Step` is `WrapType` too, then
1298       // `PreAR` == {`PreStart`,+,`Step`} is also `WrapType`.  Cache this fact.
1299       const_cast<SCEVAddRecExpr *>(PreAR)->setNoWrapFlags(WrapType);
1300     }
1301     return PreStart;
1302   }
1303 
1304   // 3. Loop precondition.
1305   ICmpInst::Predicate Pred;
1306   const SCEV *OverflowLimit =
1307       ExtendOpTraits<ExtendOpTy>::getOverflowLimitForStep(Step, &Pred, SE);
1308 
1309   if (OverflowLimit &&
1310       SE->isLoopEntryGuardedByCond(L, Pred, PreStart, OverflowLimit))
1311     return PreStart;
1312 
1313   return nullptr;
1314 }
1315 
1316 // Get the normalized zero or sign extended expression for this AddRec's Start.
1317 template <typename ExtendOpTy>
1318 static const SCEV *getExtendAddRecStart(const SCEVAddRecExpr *AR, Type *Ty,
1319                                         ScalarEvolution *SE) {
1320   auto GetExtendExpr = ExtendOpTraits<ExtendOpTy>::GetExtendExpr;
1321 
1322   const SCEV *PreStart = getPreStartForExtend<ExtendOpTy>(AR, Ty, SE);
1323   if (!PreStart)
1324     return (SE->*GetExtendExpr)(AR->getStart(), Ty);
1325 
1326   return SE->getAddExpr((SE->*GetExtendExpr)(AR->getStepRecurrence(*SE), Ty),
1327                         (SE->*GetExtendExpr)(PreStart, Ty));
1328 }
1329 
1330 // Try to prove away overflow by looking at "nearby" add recurrences.  A
1331 // motivating example for this rule: if we know `{0,+,4}` is `ult` `-1` and it
1332 // does not itself wrap then we can conclude that `{1,+,4}` is `nuw`.
1333 //
1334 // Formally:
1335 //
1336 //     {S,+,X} == {S-T,+,X} + T
1337 //  => Ext({S,+,X}) == Ext({S-T,+,X} + T)
1338 //
1339 // If ({S-T,+,X} + T) does not overflow  ... (1)
1340 //
1341 //  RHS == Ext({S-T,+,X} + T) == Ext({S-T,+,X}) + Ext(T)
1342 //
1343 // If {S-T,+,X} does not overflow  ... (2)
1344 //
1345 //  RHS == Ext({S-T,+,X}) + Ext(T) == {Ext(S-T),+,Ext(X)} + Ext(T)
1346 //      == {Ext(S-T)+Ext(T),+,Ext(X)}
1347 //
1348 // If (S-T)+T does not overflow  ... (3)
1349 //
1350 //  RHS == {Ext(S-T)+Ext(T),+,Ext(X)} == {Ext(S-T+T),+,Ext(X)}
1351 //      == {Ext(S),+,Ext(X)} == LHS
1352 //
1353 // Thus, if (1), (2) and (3) are true for some T, then
1354 //   Ext({S,+,X}) == {Ext(S),+,Ext(X)}
1355 //
1356 // (3) is implied by (1) -- "(S-T)+T does not overflow" is simply "({S-T,+,X}+T)
1357 // does not overflow" restricted to the 0th iteration.  Therefore we only need
1358 // to check for (1) and (2).
1359 //
1360 // In the current context, S is `Start`, X is `Step`, Ext is `ExtendOpTy` and T
1361 // is `Delta` (defined below).
1362 //
1363 template <typename ExtendOpTy>
1364 bool ScalarEvolution::proveNoWrapByVaryingStart(const SCEV *Start,
1365                                                 const SCEV *Step,
1366                                                 const Loop *L) {
1367   auto WrapType = ExtendOpTraits<ExtendOpTy>::WrapType;
1368 
1369   // We restrict `Start` to a constant to prevent SCEV from spending too much
1370   // time here.  It is correct (but more expensive) to continue with a
1371   // non-constant `Start` and do a general SCEV subtraction to compute
1372   // `PreStart` below.
1373   //
1374   const SCEVConstant *StartC = dyn_cast<SCEVConstant>(Start);
1375   if (!StartC)
1376     return false;
1377 
1378   APInt StartAI = StartC->getAPInt();
1379 
1380   for (unsigned Delta : {-2, -1, 1, 2}) {
1381     const SCEV *PreStart = getConstant(StartAI - Delta);
1382 
1383     FoldingSetNodeID ID;
1384     ID.AddInteger(scAddRecExpr);
1385     ID.AddPointer(PreStart);
1386     ID.AddPointer(Step);
1387     ID.AddPointer(L);
1388     void *IP = nullptr;
1389     const auto *PreAR =
1390       static_cast<SCEVAddRecExpr *>(UniqueSCEVs.FindNodeOrInsertPos(ID, IP));
1391 
1392     // Give up if we don't already have the add recurrence we need because
1393     // actually constructing an add recurrence is relatively expensive.
1394     if (PreAR && PreAR->getNoWrapFlags(WrapType)) {  // proves (2)
1395       const SCEV *DeltaS = getConstant(StartC->getType(), Delta);
1396       ICmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE;
1397       const SCEV *Limit = ExtendOpTraits<ExtendOpTy>::getOverflowLimitForStep(
1398           DeltaS, &Pred, this);
1399       if (Limit && isKnownPredicate(Pred, PreAR, Limit))  // proves (1)
1400         return true;
1401     }
1402   }
1403 
1404   return false;
1405 }
1406 
1407 const SCEV *ScalarEvolution::getZeroExtendExpr(const SCEV *Op,
1408                                                Type *Ty) {
1409   assert(getTypeSizeInBits(Op->getType()) < getTypeSizeInBits(Ty) &&
1410          "This is not an extending conversion!");
1411   assert(isSCEVable(Ty) &&
1412          "This is not a conversion to a SCEVable type!");
1413   Ty = getEffectiveSCEVType(Ty);
1414 
1415   // Fold if the operand is constant.
1416   if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(Op))
1417     return getConstant(
1418       cast<ConstantInt>(ConstantExpr::getZExt(SC->getValue(), Ty)));
1419 
1420   // zext(zext(x)) --> zext(x)
1421   if (const SCEVZeroExtendExpr *SZ = dyn_cast<SCEVZeroExtendExpr>(Op))
1422     return getZeroExtendExpr(SZ->getOperand(), Ty);
1423 
1424   // Before doing any expensive analysis, check to see if we've already
1425   // computed a SCEV for this Op and Ty.
1426   FoldingSetNodeID ID;
1427   ID.AddInteger(scZeroExtend);
1428   ID.AddPointer(Op);
1429   ID.AddPointer(Ty);
1430   void *IP = nullptr;
1431   if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
1432 
1433   // zext(trunc(x)) --> zext(x) or x or trunc(x)
1434   if (const SCEVTruncateExpr *ST = dyn_cast<SCEVTruncateExpr>(Op)) {
1435     // It's possible the bits taken off by the truncate were all zero bits. If
1436     // so, we should be able to simplify this further.
1437     const SCEV *X = ST->getOperand();
1438     ConstantRange CR = getUnsignedRange(X);
1439     unsigned TruncBits = getTypeSizeInBits(ST->getType());
1440     unsigned NewBits = getTypeSizeInBits(Ty);
1441     if (CR.truncate(TruncBits).zeroExtend(NewBits).contains(
1442             CR.zextOrTrunc(NewBits)))
1443       return getTruncateOrZeroExtend(X, Ty);
1444   }
1445 
1446   // If the input value is a chrec scev, and we can prove that the value
1447   // did not overflow the old, smaller, value, we can zero extend all of the
1448   // operands (often constants).  This allows analysis of something like
1449   // this:  for (unsigned char X = 0; X < 100; ++X) { int Y = X; }
1450   if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Op))
1451     if (AR->isAffine()) {
1452       const SCEV *Start = AR->getStart();
1453       const SCEV *Step = AR->getStepRecurrence(*this);
1454       unsigned BitWidth = getTypeSizeInBits(AR->getType());
1455       const Loop *L = AR->getLoop();
1456 
1457       // If we have special knowledge that this addrec won't overflow,
1458       // we don't need to do any further analysis.
1459       if (AR->hasNoUnsignedWrap())
1460         return getAddRecExpr(
1461             getExtendAddRecStart<SCEVZeroExtendExpr>(AR, Ty, this),
1462             getZeroExtendExpr(Step, Ty), L, AR->getNoWrapFlags());
1463 
1464       // Check whether the backedge-taken count is SCEVCouldNotCompute.
1465       // Note that this serves two purposes: It filters out loops that are
1466       // simply not analyzable, and it covers the case where this code is
1467       // being called from within backedge-taken count analysis, such that
1468       // attempting to ask for the backedge-taken count would likely result
1469       // in infinite recursion. In the later case, the analysis code will
1470       // cope with a conservative value, and it will take care to purge
1471       // that value once it has finished.
1472       const SCEV *MaxBECount = getMaxBackedgeTakenCount(L);
1473       if (!isa<SCEVCouldNotCompute>(MaxBECount)) {
1474         // Manually compute the final value for AR, checking for
1475         // overflow.
1476 
1477         // Check whether the backedge-taken count can be losslessly casted to
1478         // the addrec's type. The count is always unsigned.
1479         const SCEV *CastedMaxBECount =
1480           getTruncateOrZeroExtend(MaxBECount, Start->getType());
1481         const SCEV *RecastedMaxBECount =
1482           getTruncateOrZeroExtend(CastedMaxBECount, MaxBECount->getType());
1483         if (MaxBECount == RecastedMaxBECount) {
1484           Type *WideTy = IntegerType::get(getContext(), BitWidth * 2);
1485           // Check whether Start+Step*MaxBECount has no unsigned overflow.
1486           const SCEV *ZMul = getMulExpr(CastedMaxBECount, Step);
1487           const SCEV *ZAdd = getZeroExtendExpr(getAddExpr(Start, ZMul), WideTy);
1488           const SCEV *WideStart = getZeroExtendExpr(Start, WideTy);
1489           const SCEV *WideMaxBECount =
1490             getZeroExtendExpr(CastedMaxBECount, WideTy);
1491           const SCEV *OperandExtendedAdd =
1492             getAddExpr(WideStart,
1493                        getMulExpr(WideMaxBECount,
1494                                   getZeroExtendExpr(Step, WideTy)));
1495           if (ZAdd == OperandExtendedAdd) {
1496             // Cache knowledge of AR NUW, which is propagated to this AddRec.
1497             const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNUW);
1498             // Return the expression with the addrec on the outside.
1499             return getAddRecExpr(
1500                 getExtendAddRecStart<SCEVZeroExtendExpr>(AR, Ty, this),
1501                 getZeroExtendExpr(Step, Ty), L, AR->getNoWrapFlags());
1502           }
1503           // Similar to above, only this time treat the step value as signed.
1504           // This covers loops that count down.
1505           OperandExtendedAdd =
1506             getAddExpr(WideStart,
1507                        getMulExpr(WideMaxBECount,
1508                                   getSignExtendExpr(Step, WideTy)));
1509           if (ZAdd == OperandExtendedAdd) {
1510             // Cache knowledge of AR NW, which is propagated to this AddRec.
1511             // Negative step causes unsigned wrap, but it still can't self-wrap.
1512             const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNW);
1513             // Return the expression with the addrec on the outside.
1514             return getAddRecExpr(
1515                 getExtendAddRecStart<SCEVZeroExtendExpr>(AR, Ty, this),
1516                 getSignExtendExpr(Step, Ty), L, AR->getNoWrapFlags());
1517           }
1518         }
1519 
1520         // If the backedge is guarded by a comparison with the pre-inc value
1521         // the addrec is safe. Also, if the entry is guarded by a comparison
1522         // with the start value and the backedge is guarded by a comparison
1523         // with the post-inc value, the addrec is safe.
1524         if (isKnownPositive(Step)) {
1525           const SCEV *N = getConstant(APInt::getMinValue(BitWidth) -
1526                                       getUnsignedRange(Step).getUnsignedMax());
1527           if (isLoopBackedgeGuardedByCond(L, ICmpInst::ICMP_ULT, AR, N) ||
1528               (isLoopEntryGuardedByCond(L, ICmpInst::ICMP_ULT, Start, N) &&
1529                isLoopBackedgeGuardedByCond(L, ICmpInst::ICMP_ULT,
1530                                            AR->getPostIncExpr(*this), N))) {
1531             // Cache knowledge of AR NUW, which is propagated to this AddRec.
1532             const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNUW);
1533             // Return the expression with the addrec on the outside.
1534             return getAddRecExpr(
1535                 getExtendAddRecStart<SCEVZeroExtendExpr>(AR, Ty, this),
1536                 getZeroExtendExpr(Step, Ty), L, AR->getNoWrapFlags());
1537           }
1538         } else if (isKnownNegative(Step)) {
1539           const SCEV *N = getConstant(APInt::getMaxValue(BitWidth) -
1540                                       getSignedRange(Step).getSignedMin());
1541           if (isLoopBackedgeGuardedByCond(L, ICmpInst::ICMP_UGT, AR, N) ||
1542               (isLoopEntryGuardedByCond(L, ICmpInst::ICMP_UGT, Start, N) &&
1543                isLoopBackedgeGuardedByCond(L, ICmpInst::ICMP_UGT,
1544                                            AR->getPostIncExpr(*this), N))) {
1545             // Cache knowledge of AR NW, which is propagated to this AddRec.
1546             // Negative step causes unsigned wrap, but it still can't self-wrap.
1547             const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNW);
1548             // Return the expression with the addrec on the outside.
1549             return getAddRecExpr(
1550                 getExtendAddRecStart<SCEVZeroExtendExpr>(AR, Ty, this),
1551                 getSignExtendExpr(Step, Ty), L, AR->getNoWrapFlags());
1552           }
1553         }
1554       }
1555 
1556       if (proveNoWrapByVaryingStart<SCEVZeroExtendExpr>(Start, Step, L)) {
1557         const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNUW);
1558         return getAddRecExpr(
1559             getExtendAddRecStart<SCEVZeroExtendExpr>(AR, Ty, this),
1560             getZeroExtendExpr(Step, Ty), L, AR->getNoWrapFlags());
1561       }
1562     }
1563 
1564   if (auto *SA = dyn_cast<SCEVAddExpr>(Op)) {
1565     // zext((A + B + ...)<nuw>) --> (zext(A) + zext(B) + ...)<nuw>
1566     if (SA->hasNoUnsignedWrap()) {
1567       // If the addition does not unsign overflow then we can, by definition,
1568       // commute the zero extension with the addition operation.
1569       SmallVector<const SCEV *, 4> Ops;
1570       for (const auto *Op : SA->operands())
1571         Ops.push_back(getZeroExtendExpr(Op, Ty));
1572       return getAddExpr(Ops, SCEV::FlagNUW);
1573     }
1574   }
1575 
1576   // The cast wasn't folded; create an explicit cast node.
1577   // Recompute the insert position, as it may have been invalidated.
1578   if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
1579   SCEV *S = new (SCEVAllocator) SCEVZeroExtendExpr(ID.Intern(SCEVAllocator),
1580                                                    Op, Ty);
1581   UniqueSCEVs.InsertNode(S, IP);
1582   return S;
1583 }
1584 
1585 const SCEV *ScalarEvolution::getSignExtendExpr(const SCEV *Op,
1586                                                Type *Ty) {
1587   assert(getTypeSizeInBits(Op->getType()) < getTypeSizeInBits(Ty) &&
1588          "This is not an extending conversion!");
1589   assert(isSCEVable(Ty) &&
1590          "This is not a conversion to a SCEVable type!");
1591   Ty = getEffectiveSCEVType(Ty);
1592 
1593   // Fold if the operand is constant.
1594   if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(Op))
1595     return getConstant(
1596       cast<ConstantInt>(ConstantExpr::getSExt(SC->getValue(), Ty)));
1597 
1598   // sext(sext(x)) --> sext(x)
1599   if (const SCEVSignExtendExpr *SS = dyn_cast<SCEVSignExtendExpr>(Op))
1600     return getSignExtendExpr(SS->getOperand(), Ty);
1601 
1602   // sext(zext(x)) --> zext(x)
1603   if (const SCEVZeroExtendExpr *SZ = dyn_cast<SCEVZeroExtendExpr>(Op))
1604     return getZeroExtendExpr(SZ->getOperand(), Ty);
1605 
1606   // Before doing any expensive analysis, check to see if we've already
1607   // computed a SCEV for this Op and Ty.
1608   FoldingSetNodeID ID;
1609   ID.AddInteger(scSignExtend);
1610   ID.AddPointer(Op);
1611   ID.AddPointer(Ty);
1612   void *IP = nullptr;
1613   if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
1614 
1615   // If the input value is provably positive, build a zext instead.
1616   if (isKnownNonNegative(Op))
1617     return getZeroExtendExpr(Op, Ty);
1618 
1619   // sext(trunc(x)) --> sext(x) or x or trunc(x)
1620   if (const SCEVTruncateExpr *ST = dyn_cast<SCEVTruncateExpr>(Op)) {
1621     // It's possible the bits taken off by the truncate were all sign bits. If
1622     // so, we should be able to simplify this further.
1623     const SCEV *X = ST->getOperand();
1624     ConstantRange CR = getSignedRange(X);
1625     unsigned TruncBits = getTypeSizeInBits(ST->getType());
1626     unsigned NewBits = getTypeSizeInBits(Ty);
1627     if (CR.truncate(TruncBits).signExtend(NewBits).contains(
1628             CR.sextOrTrunc(NewBits)))
1629       return getTruncateOrSignExtend(X, Ty);
1630   }
1631 
1632   // sext(C1 + (C2 * x)) --> C1 + sext(C2 * x) if C1 < C2
1633   if (auto *SA = dyn_cast<SCEVAddExpr>(Op)) {
1634     if (SA->getNumOperands() == 2) {
1635       auto *SC1 = dyn_cast<SCEVConstant>(SA->getOperand(0));
1636       auto *SMul = dyn_cast<SCEVMulExpr>(SA->getOperand(1));
1637       if (SMul && SC1) {
1638         if (auto *SC2 = dyn_cast<SCEVConstant>(SMul->getOperand(0))) {
1639           const APInt &C1 = SC1->getAPInt();
1640           const APInt &C2 = SC2->getAPInt();
1641           if (C1.isStrictlyPositive() && C2.isStrictlyPositive() &&
1642               C2.ugt(C1) && C2.isPowerOf2())
1643             return getAddExpr(getSignExtendExpr(SC1, Ty),
1644                               getSignExtendExpr(SMul, Ty));
1645         }
1646       }
1647     }
1648 
1649     // sext((A + B + ...)<nsw>) --> (sext(A) + sext(B) + ...)<nsw>
1650     if (SA->hasNoSignedWrap()) {
1651       // If the addition does not sign overflow then we can, by definition,
1652       // commute the sign extension with the addition operation.
1653       SmallVector<const SCEV *, 4> Ops;
1654       for (const auto *Op : SA->operands())
1655         Ops.push_back(getSignExtendExpr(Op, Ty));
1656       return getAddExpr(Ops, SCEV::FlagNSW);
1657     }
1658   }
1659   // If the input value is a chrec scev, and we can prove that the value
1660   // did not overflow the old, smaller, value, we can sign extend all of the
1661   // operands (often constants).  This allows analysis of something like
1662   // this:  for (signed char X = 0; X < 100; ++X) { int Y = X; }
1663   if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Op))
1664     if (AR->isAffine()) {
1665       const SCEV *Start = AR->getStart();
1666       const SCEV *Step = AR->getStepRecurrence(*this);
1667       unsigned BitWidth = getTypeSizeInBits(AR->getType());
1668       const Loop *L = AR->getLoop();
1669 
1670       // If we have special knowledge that this addrec won't overflow,
1671       // we don't need to do any further analysis.
1672       if (AR->hasNoSignedWrap())
1673         return getAddRecExpr(
1674             getExtendAddRecStart<SCEVSignExtendExpr>(AR, Ty, this),
1675             getSignExtendExpr(Step, Ty), L, SCEV::FlagNSW);
1676 
1677       // Check whether the backedge-taken count is SCEVCouldNotCompute.
1678       // Note that this serves two purposes: It filters out loops that are
1679       // simply not analyzable, and it covers the case where this code is
1680       // being called from within backedge-taken count analysis, such that
1681       // attempting to ask for the backedge-taken count would likely result
1682       // in infinite recursion. In the later case, the analysis code will
1683       // cope with a conservative value, and it will take care to purge
1684       // that value once it has finished.
1685       const SCEV *MaxBECount = getMaxBackedgeTakenCount(L);
1686       if (!isa<SCEVCouldNotCompute>(MaxBECount)) {
1687         // Manually compute the final value for AR, checking for
1688         // overflow.
1689 
1690         // Check whether the backedge-taken count can be losslessly casted to
1691         // the addrec's type. The count is always unsigned.
1692         const SCEV *CastedMaxBECount =
1693           getTruncateOrZeroExtend(MaxBECount, Start->getType());
1694         const SCEV *RecastedMaxBECount =
1695           getTruncateOrZeroExtend(CastedMaxBECount, MaxBECount->getType());
1696         if (MaxBECount == RecastedMaxBECount) {
1697           Type *WideTy = IntegerType::get(getContext(), BitWidth * 2);
1698           // Check whether Start+Step*MaxBECount has no signed overflow.
1699           const SCEV *SMul = getMulExpr(CastedMaxBECount, Step);
1700           const SCEV *SAdd = getSignExtendExpr(getAddExpr(Start, SMul), WideTy);
1701           const SCEV *WideStart = getSignExtendExpr(Start, WideTy);
1702           const SCEV *WideMaxBECount =
1703             getZeroExtendExpr(CastedMaxBECount, WideTy);
1704           const SCEV *OperandExtendedAdd =
1705             getAddExpr(WideStart,
1706                        getMulExpr(WideMaxBECount,
1707                                   getSignExtendExpr(Step, WideTy)));
1708           if (SAdd == OperandExtendedAdd) {
1709             // Cache knowledge of AR NSW, which is propagated to this AddRec.
1710             const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNSW);
1711             // Return the expression with the addrec on the outside.
1712             return getAddRecExpr(
1713                 getExtendAddRecStart<SCEVSignExtendExpr>(AR, Ty, this),
1714                 getSignExtendExpr(Step, Ty), L, AR->getNoWrapFlags());
1715           }
1716           // Similar to above, only this time treat the step value as unsigned.
1717           // This covers loops that count up with an unsigned step.
1718           OperandExtendedAdd =
1719             getAddExpr(WideStart,
1720                        getMulExpr(WideMaxBECount,
1721                                   getZeroExtendExpr(Step, WideTy)));
1722           if (SAdd == OperandExtendedAdd) {
1723             // If AR wraps around then
1724             //
1725             //    abs(Step) * MaxBECount > unsigned-max(AR->getType())
1726             // => SAdd != OperandExtendedAdd
1727             //
1728             // Thus (AR is not NW => SAdd != OperandExtendedAdd) <=>
1729             // (SAdd == OperandExtendedAdd => AR is NW)
1730 
1731             const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNW);
1732 
1733             // Return the expression with the addrec on the outside.
1734             return getAddRecExpr(
1735                 getExtendAddRecStart<SCEVSignExtendExpr>(AR, Ty, this),
1736                 getZeroExtendExpr(Step, Ty), L, AR->getNoWrapFlags());
1737           }
1738         }
1739 
1740         // If the backedge is guarded by a comparison with the pre-inc value
1741         // the addrec is safe. Also, if the entry is guarded by a comparison
1742         // with the start value and the backedge is guarded by a comparison
1743         // with the post-inc value, the addrec is safe.
1744         ICmpInst::Predicate Pred;
1745         const SCEV *OverflowLimit =
1746             getSignedOverflowLimitForStep(Step, &Pred, this);
1747         if (OverflowLimit &&
1748             (isLoopBackedgeGuardedByCond(L, Pred, AR, OverflowLimit) ||
1749              (isLoopEntryGuardedByCond(L, Pred, Start, OverflowLimit) &&
1750               isLoopBackedgeGuardedByCond(L, Pred, AR->getPostIncExpr(*this),
1751                                           OverflowLimit)))) {
1752           // Cache knowledge of AR NSW, then propagate NSW to the wide AddRec.
1753           const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNSW);
1754           return getAddRecExpr(
1755               getExtendAddRecStart<SCEVSignExtendExpr>(AR, Ty, this),
1756               getSignExtendExpr(Step, Ty), L, AR->getNoWrapFlags());
1757         }
1758       }
1759       // If Start and Step are constants, check if we can apply this
1760       // transformation:
1761       // sext{C1,+,C2} --> C1 + sext{0,+,C2} if C1 < C2
1762       auto *SC1 = dyn_cast<SCEVConstant>(Start);
1763       auto *SC2 = dyn_cast<SCEVConstant>(Step);
1764       if (SC1 && SC2) {
1765         const APInt &C1 = SC1->getAPInt();
1766         const APInt &C2 = SC2->getAPInt();
1767         if (C1.isStrictlyPositive() && C2.isStrictlyPositive() && C2.ugt(C1) &&
1768             C2.isPowerOf2()) {
1769           Start = getSignExtendExpr(Start, Ty);
1770           const SCEV *NewAR = getAddRecExpr(getZero(AR->getType()), Step, L,
1771                                             AR->getNoWrapFlags());
1772           return getAddExpr(Start, getSignExtendExpr(NewAR, Ty));
1773         }
1774       }
1775 
1776       if (proveNoWrapByVaryingStart<SCEVSignExtendExpr>(Start, Step, L)) {
1777         const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNSW);
1778         return getAddRecExpr(
1779             getExtendAddRecStart<SCEVSignExtendExpr>(AR, Ty, this),
1780             getSignExtendExpr(Step, Ty), L, AR->getNoWrapFlags());
1781       }
1782     }
1783 
1784   // The cast wasn't folded; create an explicit cast node.
1785   // Recompute the insert position, as it may have been invalidated.
1786   if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
1787   SCEV *S = new (SCEVAllocator) SCEVSignExtendExpr(ID.Intern(SCEVAllocator),
1788                                                    Op, Ty);
1789   UniqueSCEVs.InsertNode(S, IP);
1790   return S;
1791 }
1792 
1793 /// getAnyExtendExpr - Return a SCEV for the given operand extended with
1794 /// unspecified bits out to the given type.
1795 ///
1796 const SCEV *ScalarEvolution::getAnyExtendExpr(const SCEV *Op,
1797                                               Type *Ty) {
1798   assert(getTypeSizeInBits(Op->getType()) < getTypeSizeInBits(Ty) &&
1799          "This is not an extending conversion!");
1800   assert(isSCEVable(Ty) &&
1801          "This is not a conversion to a SCEVable type!");
1802   Ty = getEffectiveSCEVType(Ty);
1803 
1804   // Sign-extend negative constants.
1805   if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(Op))
1806     if (SC->getAPInt().isNegative())
1807       return getSignExtendExpr(Op, Ty);
1808 
1809   // Peel off a truncate cast.
1810   if (const SCEVTruncateExpr *T = dyn_cast<SCEVTruncateExpr>(Op)) {
1811     const SCEV *NewOp = T->getOperand();
1812     if (getTypeSizeInBits(NewOp->getType()) < getTypeSizeInBits(Ty))
1813       return getAnyExtendExpr(NewOp, Ty);
1814     return getTruncateOrNoop(NewOp, Ty);
1815   }
1816 
1817   // Next try a zext cast. If the cast is folded, use it.
1818   const SCEV *ZExt = getZeroExtendExpr(Op, Ty);
1819   if (!isa<SCEVZeroExtendExpr>(ZExt))
1820     return ZExt;
1821 
1822   // Next try a sext cast. If the cast is folded, use it.
1823   const SCEV *SExt = getSignExtendExpr(Op, Ty);
1824   if (!isa<SCEVSignExtendExpr>(SExt))
1825     return SExt;
1826 
1827   // Force the cast to be folded into the operands of an addrec.
1828   if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Op)) {
1829     SmallVector<const SCEV *, 4> Ops;
1830     for (const SCEV *Op : AR->operands())
1831       Ops.push_back(getAnyExtendExpr(Op, Ty));
1832     return getAddRecExpr(Ops, AR->getLoop(), SCEV::FlagNW);
1833   }
1834 
1835   // If the expression is obviously signed, use the sext cast value.
1836   if (isa<SCEVSMaxExpr>(Op))
1837     return SExt;
1838 
1839   // Absent any other information, use the zext cast value.
1840   return ZExt;
1841 }
1842 
1843 /// CollectAddOperandsWithScales - Process the given Ops list, which is
1844 /// a list of operands to be added under the given scale, update the given
1845 /// map. This is a helper function for getAddRecExpr. As an example of
1846 /// what it does, given a sequence of operands that would form an add
1847 /// expression like this:
1848 ///
1849 ///    m + n + 13 + (A * (o + p + (B * (q + m + 29)))) + r + (-1 * r)
1850 ///
1851 /// where A and B are constants, update the map with these values:
1852 ///
1853 ///    (m, 1+A*B), (n, 1), (o, A), (p, A), (q, A*B), (r, 0)
1854 ///
1855 /// and add 13 + A*B*29 to AccumulatedConstant.
1856 /// This will allow getAddRecExpr to produce this:
1857 ///
1858 ///    13+A*B*29 + n + (m * (1+A*B)) + ((o + p) * A) + (q * A*B)
1859 ///
1860 /// This form often exposes folding opportunities that are hidden in
1861 /// the original operand list.
1862 ///
1863 /// Return true iff it appears that any interesting folding opportunities
1864 /// may be exposed. This helps getAddRecExpr short-circuit extra work in
1865 /// the common case where no interesting opportunities are present, and
1866 /// is also used as a check to avoid infinite recursion.
1867 ///
1868 static bool
1869 CollectAddOperandsWithScales(DenseMap<const SCEV *, APInt> &M,
1870                              SmallVectorImpl<const SCEV *> &NewOps,
1871                              APInt &AccumulatedConstant,
1872                              const SCEV *const *Ops, size_t NumOperands,
1873                              const APInt &Scale,
1874                              ScalarEvolution &SE) {
1875   bool Interesting = false;
1876 
1877   // Iterate over the add operands. They are sorted, with constants first.
1878   unsigned i = 0;
1879   while (const SCEVConstant *C = dyn_cast<SCEVConstant>(Ops[i])) {
1880     ++i;
1881     // Pull a buried constant out to the outside.
1882     if (Scale != 1 || AccumulatedConstant != 0 || C->getValue()->isZero())
1883       Interesting = true;
1884     AccumulatedConstant += Scale * C->getAPInt();
1885   }
1886 
1887   // Next comes everything else. We're especially interested in multiplies
1888   // here, but they're in the middle, so just visit the rest with one loop.
1889   for (; i != NumOperands; ++i) {
1890     const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(Ops[i]);
1891     if (Mul && isa<SCEVConstant>(Mul->getOperand(0))) {
1892       APInt NewScale =
1893           Scale * cast<SCEVConstant>(Mul->getOperand(0))->getAPInt();
1894       if (Mul->getNumOperands() == 2 && isa<SCEVAddExpr>(Mul->getOperand(1))) {
1895         // A multiplication of a constant with another add; recurse.
1896         const SCEVAddExpr *Add = cast<SCEVAddExpr>(Mul->getOperand(1));
1897         Interesting |=
1898           CollectAddOperandsWithScales(M, NewOps, AccumulatedConstant,
1899                                        Add->op_begin(), Add->getNumOperands(),
1900                                        NewScale, SE);
1901       } else {
1902         // A multiplication of a constant with some other value. Update
1903         // the map.
1904         SmallVector<const SCEV *, 4> MulOps(Mul->op_begin()+1, Mul->op_end());
1905         const SCEV *Key = SE.getMulExpr(MulOps);
1906         auto Pair = M.insert({Key, NewScale});
1907         if (Pair.second) {
1908           NewOps.push_back(Pair.first->first);
1909         } else {
1910           Pair.first->second += NewScale;
1911           // The map already had an entry for this value, which may indicate
1912           // a folding opportunity.
1913           Interesting = true;
1914         }
1915       }
1916     } else {
1917       // An ordinary operand. Update the map.
1918       std::pair<DenseMap<const SCEV *, APInt>::iterator, bool> Pair =
1919           M.insert({Ops[i], Scale});
1920       if (Pair.second) {
1921         NewOps.push_back(Pair.first->first);
1922       } else {
1923         Pair.first->second += Scale;
1924         // The map already had an entry for this value, which may indicate
1925         // a folding opportunity.
1926         Interesting = true;
1927       }
1928     }
1929   }
1930 
1931   return Interesting;
1932 }
1933 
1934 // We're trying to construct a SCEV of type `Type' with `Ops' as operands and
1935 // `OldFlags' as can't-wrap behavior.  Infer a more aggressive set of
1936 // can't-overflow flags for the operation if possible.
1937 static SCEV::NoWrapFlags
1938 StrengthenNoWrapFlags(ScalarEvolution *SE, SCEVTypes Type,
1939                       const SmallVectorImpl<const SCEV *> &Ops,
1940                       SCEV::NoWrapFlags Flags) {
1941   using namespace std::placeholders;
1942   typedef OverflowingBinaryOperator OBO;
1943 
1944   bool CanAnalyze =
1945       Type == scAddExpr || Type == scAddRecExpr || Type == scMulExpr;
1946   (void)CanAnalyze;
1947   assert(CanAnalyze && "don't call from other places!");
1948 
1949   int SignOrUnsignMask = SCEV::FlagNUW | SCEV::FlagNSW;
1950   SCEV::NoWrapFlags SignOrUnsignWrap =
1951       ScalarEvolution::maskFlags(Flags, SignOrUnsignMask);
1952 
1953   // If FlagNSW is true and all the operands are non-negative, infer FlagNUW.
1954   auto IsKnownNonNegative = [&](const SCEV *S) {
1955     return SE->isKnownNonNegative(S);
1956   };
1957 
1958   if (SignOrUnsignWrap == SCEV::FlagNSW && all_of(Ops, IsKnownNonNegative))
1959     Flags =
1960         ScalarEvolution::setFlags(Flags, (SCEV::NoWrapFlags)SignOrUnsignMask);
1961 
1962   SignOrUnsignWrap = ScalarEvolution::maskFlags(Flags, SignOrUnsignMask);
1963 
1964   if (SignOrUnsignWrap != SignOrUnsignMask && Type == scAddExpr &&
1965       Ops.size() == 2 && isa<SCEVConstant>(Ops[0])) {
1966 
1967     // (A + C) --> (A + C)<nsw> if the addition does not sign overflow
1968     // (A + C) --> (A + C)<nuw> if the addition does not unsign overflow
1969 
1970     const APInt &C = cast<SCEVConstant>(Ops[0])->getAPInt();
1971     if (!(SignOrUnsignWrap & SCEV::FlagNSW)) {
1972       auto NSWRegion = ConstantRange::makeGuaranteedNoWrapRegion(
1973           Instruction::Add, C, OBO::NoSignedWrap);
1974       if (NSWRegion.contains(SE->getSignedRange(Ops[1])))
1975         Flags = ScalarEvolution::setFlags(Flags, SCEV::FlagNSW);
1976     }
1977     if (!(SignOrUnsignWrap & SCEV::FlagNUW)) {
1978       auto NUWRegion = ConstantRange::makeGuaranteedNoWrapRegion(
1979           Instruction::Add, C, OBO::NoUnsignedWrap);
1980       if (NUWRegion.contains(SE->getUnsignedRange(Ops[1])))
1981         Flags = ScalarEvolution::setFlags(Flags, SCEV::FlagNUW);
1982     }
1983   }
1984 
1985   return Flags;
1986 }
1987 
1988 /// getAddExpr - Get a canonical add expression, or something simpler if
1989 /// possible.
1990 const SCEV *ScalarEvolution::getAddExpr(SmallVectorImpl<const SCEV *> &Ops,
1991                                         SCEV::NoWrapFlags Flags) {
1992   assert(!(Flags & ~(SCEV::FlagNUW | SCEV::FlagNSW)) &&
1993          "only nuw or nsw allowed");
1994   assert(!Ops.empty() && "Cannot get empty add!");
1995   if (Ops.size() == 1) return Ops[0];
1996 #ifndef NDEBUG
1997   Type *ETy = getEffectiveSCEVType(Ops[0]->getType());
1998   for (unsigned i = 1, e = Ops.size(); i != e; ++i)
1999     assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy &&
2000            "SCEVAddExpr operand types don't match!");
2001 #endif
2002 
2003   // Sort by complexity, this groups all similar expression types together.
2004   GroupByComplexity(Ops, &LI);
2005 
2006   Flags = StrengthenNoWrapFlags(this, scAddExpr, Ops, Flags);
2007 
2008   // If there are any constants, fold them together.
2009   unsigned Idx = 0;
2010   if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(Ops[0])) {
2011     ++Idx;
2012     assert(Idx < Ops.size());
2013     while (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(Ops[Idx])) {
2014       // We found two constants, fold them together!
2015       Ops[0] = getConstant(LHSC->getAPInt() + RHSC->getAPInt());
2016       if (Ops.size() == 2) return Ops[0];
2017       Ops.erase(Ops.begin()+1);  // Erase the folded element
2018       LHSC = cast<SCEVConstant>(Ops[0]);
2019     }
2020 
2021     // If we are left with a constant zero being added, strip it off.
2022     if (LHSC->getValue()->isZero()) {
2023       Ops.erase(Ops.begin());
2024       --Idx;
2025     }
2026 
2027     if (Ops.size() == 1) return Ops[0];
2028   }
2029 
2030   // Okay, check to see if the same value occurs in the operand list more than
2031   // once.  If so, merge them together into an multiply expression.  Since we
2032   // sorted the list, these values are required to be adjacent.
2033   Type *Ty = Ops[0]->getType();
2034   bool FoundMatch = false;
2035   for (unsigned i = 0, e = Ops.size(); i != e-1; ++i)
2036     if (Ops[i] == Ops[i+1]) {      //  X + Y + Y  -->  X + Y*2
2037       // Scan ahead to count how many equal operands there are.
2038       unsigned Count = 2;
2039       while (i+Count != e && Ops[i+Count] == Ops[i])
2040         ++Count;
2041       // Merge the values into a multiply.
2042       const SCEV *Scale = getConstant(Ty, Count);
2043       const SCEV *Mul = getMulExpr(Scale, Ops[i]);
2044       if (Ops.size() == Count)
2045         return Mul;
2046       Ops[i] = Mul;
2047       Ops.erase(Ops.begin()+i+1, Ops.begin()+i+Count);
2048       --i; e -= Count - 1;
2049       FoundMatch = true;
2050     }
2051   if (FoundMatch)
2052     return getAddExpr(Ops, Flags);
2053 
2054   // Check for truncates. If all the operands are truncated from the same
2055   // type, see if factoring out the truncate would permit the result to be
2056   // folded. eg., trunc(x) + m*trunc(n) --> trunc(x + trunc(m)*n)
2057   // if the contents of the resulting outer trunc fold to something simple.
2058   for (; Idx < Ops.size() && isa<SCEVTruncateExpr>(Ops[Idx]); ++Idx) {
2059     const SCEVTruncateExpr *Trunc = cast<SCEVTruncateExpr>(Ops[Idx]);
2060     Type *DstType = Trunc->getType();
2061     Type *SrcType = Trunc->getOperand()->getType();
2062     SmallVector<const SCEV *, 8> LargeOps;
2063     bool Ok = true;
2064     // Check all the operands to see if they can be represented in the
2065     // source type of the truncate.
2066     for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
2067       if (const SCEVTruncateExpr *T = dyn_cast<SCEVTruncateExpr>(Ops[i])) {
2068         if (T->getOperand()->getType() != SrcType) {
2069           Ok = false;
2070           break;
2071         }
2072         LargeOps.push_back(T->getOperand());
2073       } else if (const SCEVConstant *C = dyn_cast<SCEVConstant>(Ops[i])) {
2074         LargeOps.push_back(getAnyExtendExpr(C, SrcType));
2075       } else if (const SCEVMulExpr *M = dyn_cast<SCEVMulExpr>(Ops[i])) {
2076         SmallVector<const SCEV *, 8> LargeMulOps;
2077         for (unsigned j = 0, f = M->getNumOperands(); j != f && Ok; ++j) {
2078           if (const SCEVTruncateExpr *T =
2079                 dyn_cast<SCEVTruncateExpr>(M->getOperand(j))) {
2080             if (T->getOperand()->getType() != SrcType) {
2081               Ok = false;
2082               break;
2083             }
2084             LargeMulOps.push_back(T->getOperand());
2085           } else if (const auto *C = dyn_cast<SCEVConstant>(M->getOperand(j))) {
2086             LargeMulOps.push_back(getAnyExtendExpr(C, SrcType));
2087           } else {
2088             Ok = false;
2089             break;
2090           }
2091         }
2092         if (Ok)
2093           LargeOps.push_back(getMulExpr(LargeMulOps));
2094       } else {
2095         Ok = false;
2096         break;
2097       }
2098     }
2099     if (Ok) {
2100       // Evaluate the expression in the larger type.
2101       const SCEV *Fold = getAddExpr(LargeOps, Flags);
2102       // If it folds to something simple, use it. Otherwise, don't.
2103       if (isa<SCEVConstant>(Fold) || isa<SCEVUnknown>(Fold))
2104         return getTruncateExpr(Fold, DstType);
2105     }
2106   }
2107 
2108   // Skip past any other cast SCEVs.
2109   while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scAddExpr)
2110     ++Idx;
2111 
2112   // If there are add operands they would be next.
2113   if (Idx < Ops.size()) {
2114     bool DeletedAdd = false;
2115     while (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Ops[Idx])) {
2116       // If we have an add, expand the add operands onto the end of the operands
2117       // list.
2118       Ops.erase(Ops.begin()+Idx);
2119       Ops.append(Add->op_begin(), Add->op_end());
2120       DeletedAdd = true;
2121     }
2122 
2123     // If we deleted at least one add, we added operands to the end of the list,
2124     // and they are not necessarily sorted.  Recurse to resort and resimplify
2125     // any operands we just acquired.
2126     if (DeletedAdd)
2127       return getAddExpr(Ops);
2128   }
2129 
2130   // Skip over the add expression until we get to a multiply.
2131   while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scMulExpr)
2132     ++Idx;
2133 
2134   // Check to see if there are any folding opportunities present with
2135   // operands multiplied by constant values.
2136   if (Idx < Ops.size() && isa<SCEVMulExpr>(Ops[Idx])) {
2137     uint64_t BitWidth = getTypeSizeInBits(Ty);
2138     DenseMap<const SCEV *, APInt> M;
2139     SmallVector<const SCEV *, 8> NewOps;
2140     APInt AccumulatedConstant(BitWidth, 0);
2141     if (CollectAddOperandsWithScales(M, NewOps, AccumulatedConstant,
2142                                      Ops.data(), Ops.size(),
2143                                      APInt(BitWidth, 1), *this)) {
2144       struct APIntCompare {
2145         bool operator()(const APInt &LHS, const APInt &RHS) const {
2146           return LHS.ult(RHS);
2147         }
2148       };
2149 
2150       // Some interesting folding opportunity is present, so its worthwhile to
2151       // re-generate the operands list. Group the operands by constant scale,
2152       // to avoid multiplying by the same constant scale multiple times.
2153       std::map<APInt, SmallVector<const SCEV *, 4>, APIntCompare> MulOpLists;
2154       for (const SCEV *NewOp : NewOps)
2155         MulOpLists[M.find(NewOp)->second].push_back(NewOp);
2156       // Re-generate the operands list.
2157       Ops.clear();
2158       if (AccumulatedConstant != 0)
2159         Ops.push_back(getConstant(AccumulatedConstant));
2160       for (auto &MulOp : MulOpLists)
2161         if (MulOp.first != 0)
2162           Ops.push_back(getMulExpr(getConstant(MulOp.first),
2163                                    getAddExpr(MulOp.second)));
2164       if (Ops.empty())
2165         return getZero(Ty);
2166       if (Ops.size() == 1)
2167         return Ops[0];
2168       return getAddExpr(Ops);
2169     }
2170   }
2171 
2172   // If we are adding something to a multiply expression, make sure the
2173   // something is not already an operand of the multiply.  If so, merge it into
2174   // the multiply.
2175   for (; Idx < Ops.size() && isa<SCEVMulExpr>(Ops[Idx]); ++Idx) {
2176     const SCEVMulExpr *Mul = cast<SCEVMulExpr>(Ops[Idx]);
2177     for (unsigned MulOp = 0, e = Mul->getNumOperands(); MulOp != e; ++MulOp) {
2178       const SCEV *MulOpSCEV = Mul->getOperand(MulOp);
2179       if (isa<SCEVConstant>(MulOpSCEV))
2180         continue;
2181       for (unsigned AddOp = 0, e = Ops.size(); AddOp != e; ++AddOp)
2182         if (MulOpSCEV == Ops[AddOp]) {
2183           // Fold W + X + (X * Y * Z)  -->  W + (X * ((Y*Z)+1))
2184           const SCEV *InnerMul = Mul->getOperand(MulOp == 0);
2185           if (Mul->getNumOperands() != 2) {
2186             // If the multiply has more than two operands, we must get the
2187             // Y*Z term.
2188             SmallVector<const SCEV *, 4> MulOps(Mul->op_begin(),
2189                                                 Mul->op_begin()+MulOp);
2190             MulOps.append(Mul->op_begin()+MulOp+1, Mul->op_end());
2191             InnerMul = getMulExpr(MulOps);
2192           }
2193           const SCEV *One = getOne(Ty);
2194           const SCEV *AddOne = getAddExpr(One, InnerMul);
2195           const SCEV *OuterMul = getMulExpr(AddOne, MulOpSCEV);
2196           if (Ops.size() == 2) return OuterMul;
2197           if (AddOp < Idx) {
2198             Ops.erase(Ops.begin()+AddOp);
2199             Ops.erase(Ops.begin()+Idx-1);
2200           } else {
2201             Ops.erase(Ops.begin()+Idx);
2202             Ops.erase(Ops.begin()+AddOp-1);
2203           }
2204           Ops.push_back(OuterMul);
2205           return getAddExpr(Ops);
2206         }
2207 
2208       // Check this multiply against other multiplies being added together.
2209       for (unsigned OtherMulIdx = Idx+1;
2210            OtherMulIdx < Ops.size() && isa<SCEVMulExpr>(Ops[OtherMulIdx]);
2211            ++OtherMulIdx) {
2212         const SCEVMulExpr *OtherMul = cast<SCEVMulExpr>(Ops[OtherMulIdx]);
2213         // If MulOp occurs in OtherMul, we can fold the two multiplies
2214         // together.
2215         for (unsigned OMulOp = 0, e = OtherMul->getNumOperands();
2216              OMulOp != e; ++OMulOp)
2217           if (OtherMul->getOperand(OMulOp) == MulOpSCEV) {
2218             // Fold X + (A*B*C) + (A*D*E) --> X + (A*(B*C+D*E))
2219             const SCEV *InnerMul1 = Mul->getOperand(MulOp == 0);
2220             if (Mul->getNumOperands() != 2) {
2221               SmallVector<const SCEV *, 4> MulOps(Mul->op_begin(),
2222                                                   Mul->op_begin()+MulOp);
2223               MulOps.append(Mul->op_begin()+MulOp+1, Mul->op_end());
2224               InnerMul1 = getMulExpr(MulOps);
2225             }
2226             const SCEV *InnerMul2 = OtherMul->getOperand(OMulOp == 0);
2227             if (OtherMul->getNumOperands() != 2) {
2228               SmallVector<const SCEV *, 4> MulOps(OtherMul->op_begin(),
2229                                                   OtherMul->op_begin()+OMulOp);
2230               MulOps.append(OtherMul->op_begin()+OMulOp+1, OtherMul->op_end());
2231               InnerMul2 = getMulExpr(MulOps);
2232             }
2233             const SCEV *InnerMulSum = getAddExpr(InnerMul1,InnerMul2);
2234             const SCEV *OuterMul = getMulExpr(MulOpSCEV, InnerMulSum);
2235             if (Ops.size() == 2) return OuterMul;
2236             Ops.erase(Ops.begin()+Idx);
2237             Ops.erase(Ops.begin()+OtherMulIdx-1);
2238             Ops.push_back(OuterMul);
2239             return getAddExpr(Ops);
2240           }
2241       }
2242     }
2243   }
2244 
2245   // If there are any add recurrences in the operands list, see if any other
2246   // added values are loop invariant.  If so, we can fold them into the
2247   // recurrence.
2248   while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scAddRecExpr)
2249     ++Idx;
2250 
2251   // Scan over all recurrences, trying to fold loop invariants into them.
2252   for (; Idx < Ops.size() && isa<SCEVAddRecExpr>(Ops[Idx]); ++Idx) {
2253     // Scan all of the other operands to this add and add them to the vector if
2254     // they are loop invariant w.r.t. the recurrence.
2255     SmallVector<const SCEV *, 8> LIOps;
2256     const SCEVAddRecExpr *AddRec = cast<SCEVAddRecExpr>(Ops[Idx]);
2257     const Loop *AddRecLoop = AddRec->getLoop();
2258     for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2259       if (isLoopInvariant(Ops[i], AddRecLoop)) {
2260         LIOps.push_back(Ops[i]);
2261         Ops.erase(Ops.begin()+i);
2262         --i; --e;
2263       }
2264 
2265     // If we found some loop invariants, fold them into the recurrence.
2266     if (!LIOps.empty()) {
2267       //  NLI + LI + {Start,+,Step}  -->  NLI + {LI+Start,+,Step}
2268       LIOps.push_back(AddRec->getStart());
2269 
2270       SmallVector<const SCEV *, 4> AddRecOps(AddRec->op_begin(),
2271                                              AddRec->op_end());
2272       AddRecOps[0] = getAddExpr(LIOps);
2273 
2274       // Build the new addrec. Propagate the NUW and NSW flags if both the
2275       // outer add and the inner addrec are guaranteed to have no overflow.
2276       // Always propagate NW.
2277       Flags = AddRec->getNoWrapFlags(setFlags(Flags, SCEV::FlagNW));
2278       const SCEV *NewRec = getAddRecExpr(AddRecOps, AddRecLoop, Flags);
2279 
2280       // If all of the other operands were loop invariant, we are done.
2281       if (Ops.size() == 1) return NewRec;
2282 
2283       // Otherwise, add the folded AddRec by the non-invariant parts.
2284       for (unsigned i = 0;; ++i)
2285         if (Ops[i] == AddRec) {
2286           Ops[i] = NewRec;
2287           break;
2288         }
2289       return getAddExpr(Ops);
2290     }
2291 
2292     // Okay, if there weren't any loop invariants to be folded, check to see if
2293     // there are multiple AddRec's with the same loop induction variable being
2294     // added together.  If so, we can fold them.
2295     for (unsigned OtherIdx = Idx+1;
2296          OtherIdx < Ops.size() && isa<SCEVAddRecExpr>(Ops[OtherIdx]);
2297          ++OtherIdx)
2298       if (AddRecLoop == cast<SCEVAddRecExpr>(Ops[OtherIdx])->getLoop()) {
2299         // Other + {A,+,B}<L> + {C,+,D}<L>  -->  Other + {A+C,+,B+D}<L>
2300         SmallVector<const SCEV *, 4> AddRecOps(AddRec->op_begin(),
2301                                                AddRec->op_end());
2302         for (; OtherIdx != Ops.size() && isa<SCEVAddRecExpr>(Ops[OtherIdx]);
2303              ++OtherIdx)
2304           if (const auto *OtherAddRec = dyn_cast<SCEVAddRecExpr>(Ops[OtherIdx]))
2305             if (OtherAddRec->getLoop() == AddRecLoop) {
2306               for (unsigned i = 0, e = OtherAddRec->getNumOperands();
2307                    i != e; ++i) {
2308                 if (i >= AddRecOps.size()) {
2309                   AddRecOps.append(OtherAddRec->op_begin()+i,
2310                                    OtherAddRec->op_end());
2311                   break;
2312                 }
2313                 AddRecOps[i] = getAddExpr(AddRecOps[i],
2314                                           OtherAddRec->getOperand(i));
2315               }
2316               Ops.erase(Ops.begin() + OtherIdx); --OtherIdx;
2317             }
2318         // Step size has changed, so we cannot guarantee no self-wraparound.
2319         Ops[Idx] = getAddRecExpr(AddRecOps, AddRecLoop, SCEV::FlagAnyWrap);
2320         return getAddExpr(Ops);
2321       }
2322 
2323     // Otherwise couldn't fold anything into this recurrence.  Move onto the
2324     // next one.
2325   }
2326 
2327   // Okay, it looks like we really DO need an add expr.  Check to see if we
2328   // already have one, otherwise create a new one.
2329   FoldingSetNodeID ID;
2330   ID.AddInteger(scAddExpr);
2331   for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2332     ID.AddPointer(Ops[i]);
2333   void *IP = nullptr;
2334   SCEVAddExpr *S =
2335     static_cast<SCEVAddExpr *>(UniqueSCEVs.FindNodeOrInsertPos(ID, IP));
2336   if (!S) {
2337     const SCEV **O = SCEVAllocator.Allocate<const SCEV *>(Ops.size());
2338     std::uninitialized_copy(Ops.begin(), Ops.end(), O);
2339     S = new (SCEVAllocator) SCEVAddExpr(ID.Intern(SCEVAllocator),
2340                                         O, Ops.size());
2341     UniqueSCEVs.InsertNode(S, IP);
2342   }
2343   S->setNoWrapFlags(Flags);
2344   return S;
2345 }
2346 
2347 static uint64_t umul_ov(uint64_t i, uint64_t j, bool &Overflow) {
2348   uint64_t k = i*j;
2349   if (j > 1 && k / j != i) Overflow = true;
2350   return k;
2351 }
2352 
2353 /// Compute the result of "n choose k", the binomial coefficient.  If an
2354 /// intermediate computation overflows, Overflow will be set and the return will
2355 /// be garbage. Overflow is not cleared on absence of overflow.
2356 static uint64_t Choose(uint64_t n, uint64_t k, bool &Overflow) {
2357   // We use the multiplicative formula:
2358   //     n(n-1)(n-2)...(n-(k-1)) / k(k-1)(k-2)...1 .
2359   // At each iteration, we take the n-th term of the numeral and divide by the
2360   // (k-n)th term of the denominator.  This division will always produce an
2361   // integral result, and helps reduce the chance of overflow in the
2362   // intermediate computations. However, we can still overflow even when the
2363   // final result would fit.
2364 
2365   if (n == 0 || n == k) return 1;
2366   if (k > n) return 0;
2367 
2368   if (k > n/2)
2369     k = n-k;
2370 
2371   uint64_t r = 1;
2372   for (uint64_t i = 1; i <= k; ++i) {
2373     r = umul_ov(r, n-(i-1), Overflow);
2374     r /= i;
2375   }
2376   return r;
2377 }
2378 
2379 /// Determine if any of the operands in this SCEV are a constant or if
2380 /// any of the add or multiply expressions in this SCEV contain a constant.
2381 static bool containsConstantSomewhere(const SCEV *StartExpr) {
2382   SmallVector<const SCEV *, 4> Ops;
2383   Ops.push_back(StartExpr);
2384   while (!Ops.empty()) {
2385     const SCEV *CurrentExpr = Ops.pop_back_val();
2386     if (isa<SCEVConstant>(*CurrentExpr))
2387       return true;
2388 
2389     if (isa<SCEVAddExpr>(*CurrentExpr) || isa<SCEVMulExpr>(*CurrentExpr)) {
2390       const auto *CurrentNAry = cast<SCEVNAryExpr>(CurrentExpr);
2391       Ops.append(CurrentNAry->op_begin(), CurrentNAry->op_end());
2392     }
2393   }
2394   return false;
2395 }
2396 
2397 /// getMulExpr - Get a canonical multiply expression, or something simpler if
2398 /// possible.
2399 const SCEV *ScalarEvolution::getMulExpr(SmallVectorImpl<const SCEV *> &Ops,
2400                                         SCEV::NoWrapFlags Flags) {
2401   assert(Flags == maskFlags(Flags, SCEV::FlagNUW | SCEV::FlagNSW) &&
2402          "only nuw or nsw allowed");
2403   assert(!Ops.empty() && "Cannot get empty mul!");
2404   if (Ops.size() == 1) return Ops[0];
2405 #ifndef NDEBUG
2406   Type *ETy = getEffectiveSCEVType(Ops[0]->getType());
2407   for (unsigned i = 1, e = Ops.size(); i != e; ++i)
2408     assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy &&
2409            "SCEVMulExpr operand types don't match!");
2410 #endif
2411 
2412   // Sort by complexity, this groups all similar expression types together.
2413   GroupByComplexity(Ops, &LI);
2414 
2415   Flags = StrengthenNoWrapFlags(this, scMulExpr, Ops, Flags);
2416 
2417   // If there are any constants, fold them together.
2418   unsigned Idx = 0;
2419   if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(Ops[0])) {
2420 
2421     // C1*(C2+V) -> C1*C2 + C1*V
2422     if (Ops.size() == 2)
2423         if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Ops[1]))
2424           // If any of Add's ops are Adds or Muls with a constant,
2425           // apply this transformation as well.
2426           if (Add->getNumOperands() == 2)
2427             if (containsConstantSomewhere(Add))
2428               return getAddExpr(getMulExpr(LHSC, Add->getOperand(0)),
2429                                 getMulExpr(LHSC, Add->getOperand(1)));
2430 
2431     ++Idx;
2432     while (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(Ops[Idx])) {
2433       // We found two constants, fold them together!
2434       ConstantInt *Fold =
2435           ConstantInt::get(getContext(), LHSC->getAPInt() * RHSC->getAPInt());
2436       Ops[0] = getConstant(Fold);
2437       Ops.erase(Ops.begin()+1);  // Erase the folded element
2438       if (Ops.size() == 1) return Ops[0];
2439       LHSC = cast<SCEVConstant>(Ops[0]);
2440     }
2441 
2442     // If we are left with a constant one being multiplied, strip it off.
2443     if (cast<SCEVConstant>(Ops[0])->getValue()->equalsInt(1)) {
2444       Ops.erase(Ops.begin());
2445       --Idx;
2446     } else if (cast<SCEVConstant>(Ops[0])->getValue()->isZero()) {
2447       // If we have a multiply of zero, it will always be zero.
2448       return Ops[0];
2449     } else if (Ops[0]->isAllOnesValue()) {
2450       // If we have a mul by -1 of an add, try distributing the -1 among the
2451       // add operands.
2452       if (Ops.size() == 2) {
2453         if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Ops[1])) {
2454           SmallVector<const SCEV *, 4> NewOps;
2455           bool AnyFolded = false;
2456           for (const SCEV *AddOp : Add->operands()) {
2457             const SCEV *Mul = getMulExpr(Ops[0], AddOp);
2458             if (!isa<SCEVMulExpr>(Mul)) AnyFolded = true;
2459             NewOps.push_back(Mul);
2460           }
2461           if (AnyFolded)
2462             return getAddExpr(NewOps);
2463         } else if (const auto *AddRec = dyn_cast<SCEVAddRecExpr>(Ops[1])) {
2464           // Negation preserves a recurrence's no self-wrap property.
2465           SmallVector<const SCEV *, 4> Operands;
2466           for (const SCEV *AddRecOp : AddRec->operands())
2467             Operands.push_back(getMulExpr(Ops[0], AddRecOp));
2468 
2469           return getAddRecExpr(Operands, AddRec->getLoop(),
2470                                AddRec->getNoWrapFlags(SCEV::FlagNW));
2471         }
2472       }
2473     }
2474 
2475     if (Ops.size() == 1)
2476       return Ops[0];
2477   }
2478 
2479   // Skip over the add expression until we get to a multiply.
2480   while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scMulExpr)
2481     ++Idx;
2482 
2483   // If there are mul operands inline them all into this expression.
2484   if (Idx < Ops.size()) {
2485     bool DeletedMul = false;
2486     while (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(Ops[Idx])) {
2487       // If we have an mul, expand the mul operands onto the end of the operands
2488       // list.
2489       Ops.erase(Ops.begin()+Idx);
2490       Ops.append(Mul->op_begin(), Mul->op_end());
2491       DeletedMul = true;
2492     }
2493 
2494     // If we deleted at least one mul, we added operands to the end of the list,
2495     // and they are not necessarily sorted.  Recurse to resort and resimplify
2496     // any operands we just acquired.
2497     if (DeletedMul)
2498       return getMulExpr(Ops);
2499   }
2500 
2501   // If there are any add recurrences in the operands list, see if any other
2502   // added values are loop invariant.  If so, we can fold them into the
2503   // recurrence.
2504   while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scAddRecExpr)
2505     ++Idx;
2506 
2507   // Scan over all recurrences, trying to fold loop invariants into them.
2508   for (; Idx < Ops.size() && isa<SCEVAddRecExpr>(Ops[Idx]); ++Idx) {
2509     // Scan all of the other operands to this mul and add them to the vector if
2510     // they are loop invariant w.r.t. the recurrence.
2511     SmallVector<const SCEV *, 8> LIOps;
2512     const SCEVAddRecExpr *AddRec = cast<SCEVAddRecExpr>(Ops[Idx]);
2513     const Loop *AddRecLoop = AddRec->getLoop();
2514     for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2515       if (isLoopInvariant(Ops[i], AddRecLoop)) {
2516         LIOps.push_back(Ops[i]);
2517         Ops.erase(Ops.begin()+i);
2518         --i; --e;
2519       }
2520 
2521     // If we found some loop invariants, fold them into the recurrence.
2522     if (!LIOps.empty()) {
2523       //  NLI * LI * {Start,+,Step}  -->  NLI * {LI*Start,+,LI*Step}
2524       SmallVector<const SCEV *, 4> NewOps;
2525       NewOps.reserve(AddRec->getNumOperands());
2526       const SCEV *Scale = getMulExpr(LIOps);
2527       for (unsigned i = 0, e = AddRec->getNumOperands(); i != e; ++i)
2528         NewOps.push_back(getMulExpr(Scale, AddRec->getOperand(i)));
2529 
2530       // Build the new addrec. Propagate the NUW and NSW flags if both the
2531       // outer mul and the inner addrec are guaranteed to have no overflow.
2532       //
2533       // No self-wrap cannot be guaranteed after changing the step size, but
2534       // will be inferred if either NUW or NSW is true.
2535       Flags = AddRec->getNoWrapFlags(clearFlags(Flags, SCEV::FlagNW));
2536       const SCEV *NewRec = getAddRecExpr(NewOps, AddRecLoop, Flags);
2537 
2538       // If all of the other operands were loop invariant, we are done.
2539       if (Ops.size() == 1) return NewRec;
2540 
2541       // Otherwise, multiply the folded AddRec by the non-invariant parts.
2542       for (unsigned i = 0;; ++i)
2543         if (Ops[i] == AddRec) {
2544           Ops[i] = NewRec;
2545           break;
2546         }
2547       return getMulExpr(Ops);
2548     }
2549 
2550     // Okay, if there weren't any loop invariants to be folded, check to see if
2551     // there are multiple AddRec's with the same loop induction variable being
2552     // multiplied together.  If so, we can fold them.
2553 
2554     // {A1,+,A2,+,...,+,An}<L> * {B1,+,B2,+,...,+,Bn}<L>
2555     // = {x=1 in [ sum y=x..2x [ sum z=max(y-x, y-n)..min(x,n) [
2556     //       choose(x, 2x)*choose(2x-y, x-z)*A_{y-z}*B_z
2557     //   ]]],+,...up to x=2n}.
2558     // Note that the arguments to choose() are always integers with values
2559     // known at compile time, never SCEV objects.
2560     //
2561     // The implementation avoids pointless extra computations when the two
2562     // addrec's are of different length (mathematically, it's equivalent to
2563     // an infinite stream of zeros on the right).
2564     bool OpsModified = false;
2565     for (unsigned OtherIdx = Idx+1;
2566          OtherIdx != Ops.size() && isa<SCEVAddRecExpr>(Ops[OtherIdx]);
2567          ++OtherIdx) {
2568       const SCEVAddRecExpr *OtherAddRec =
2569         dyn_cast<SCEVAddRecExpr>(Ops[OtherIdx]);
2570       if (!OtherAddRec || OtherAddRec->getLoop() != AddRecLoop)
2571         continue;
2572 
2573       bool Overflow = false;
2574       Type *Ty = AddRec->getType();
2575       bool LargerThan64Bits = getTypeSizeInBits(Ty) > 64;
2576       SmallVector<const SCEV*, 7> AddRecOps;
2577       for (int x = 0, xe = AddRec->getNumOperands() +
2578              OtherAddRec->getNumOperands() - 1; x != xe && !Overflow; ++x) {
2579         const SCEV *Term = getZero(Ty);
2580         for (int y = x, ye = 2*x+1; y != ye && !Overflow; ++y) {
2581           uint64_t Coeff1 = Choose(x, 2*x - y, Overflow);
2582           for (int z = std::max(y-x, y-(int)AddRec->getNumOperands()+1),
2583                  ze = std::min(x+1, (int)OtherAddRec->getNumOperands());
2584                z < ze && !Overflow; ++z) {
2585             uint64_t Coeff2 = Choose(2*x - y, x-z, Overflow);
2586             uint64_t Coeff;
2587             if (LargerThan64Bits)
2588               Coeff = umul_ov(Coeff1, Coeff2, Overflow);
2589             else
2590               Coeff = Coeff1*Coeff2;
2591             const SCEV *CoeffTerm = getConstant(Ty, Coeff);
2592             const SCEV *Term1 = AddRec->getOperand(y-z);
2593             const SCEV *Term2 = OtherAddRec->getOperand(z);
2594             Term = getAddExpr(Term, getMulExpr(CoeffTerm, Term1,Term2));
2595           }
2596         }
2597         AddRecOps.push_back(Term);
2598       }
2599       if (!Overflow) {
2600         const SCEV *NewAddRec = getAddRecExpr(AddRecOps, AddRec->getLoop(),
2601                                               SCEV::FlagAnyWrap);
2602         if (Ops.size() == 2) return NewAddRec;
2603         Ops[Idx] = NewAddRec;
2604         Ops.erase(Ops.begin() + OtherIdx); --OtherIdx;
2605         OpsModified = true;
2606         AddRec = dyn_cast<SCEVAddRecExpr>(NewAddRec);
2607         if (!AddRec)
2608           break;
2609       }
2610     }
2611     if (OpsModified)
2612       return getMulExpr(Ops);
2613 
2614     // Otherwise couldn't fold anything into this recurrence.  Move onto the
2615     // next one.
2616   }
2617 
2618   // Okay, it looks like we really DO need an mul expr.  Check to see if we
2619   // already have one, otherwise create a new one.
2620   FoldingSetNodeID ID;
2621   ID.AddInteger(scMulExpr);
2622   for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2623     ID.AddPointer(Ops[i]);
2624   void *IP = nullptr;
2625   SCEVMulExpr *S =
2626     static_cast<SCEVMulExpr *>(UniqueSCEVs.FindNodeOrInsertPos(ID, IP));
2627   if (!S) {
2628     const SCEV **O = SCEVAllocator.Allocate<const SCEV *>(Ops.size());
2629     std::uninitialized_copy(Ops.begin(), Ops.end(), O);
2630     S = new (SCEVAllocator) SCEVMulExpr(ID.Intern(SCEVAllocator),
2631                                         O, Ops.size());
2632     UniqueSCEVs.InsertNode(S, IP);
2633   }
2634   S->setNoWrapFlags(Flags);
2635   return S;
2636 }
2637 
2638 /// getUDivExpr - Get a canonical unsigned division expression, or something
2639 /// simpler if possible.
2640 const SCEV *ScalarEvolution::getUDivExpr(const SCEV *LHS,
2641                                          const SCEV *RHS) {
2642   assert(getEffectiveSCEVType(LHS->getType()) ==
2643          getEffectiveSCEVType(RHS->getType()) &&
2644          "SCEVUDivExpr operand types don't match!");
2645 
2646   if (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(RHS)) {
2647     if (RHSC->getValue()->equalsInt(1))
2648       return LHS;                               // X udiv 1 --> x
2649     // If the denominator is zero, the result of the udiv is undefined. Don't
2650     // try to analyze it, because the resolution chosen here may differ from
2651     // the resolution chosen in other parts of the compiler.
2652     if (!RHSC->getValue()->isZero()) {
2653       // Determine if the division can be folded into the operands of
2654       // its operands.
2655       // TODO: Generalize this to non-constants by using known-bits information.
2656       Type *Ty = LHS->getType();
2657       unsigned LZ = RHSC->getAPInt().countLeadingZeros();
2658       unsigned MaxShiftAmt = getTypeSizeInBits(Ty) - LZ - 1;
2659       // For non-power-of-two values, effectively round the value up to the
2660       // nearest power of two.
2661       if (!RHSC->getAPInt().isPowerOf2())
2662         ++MaxShiftAmt;
2663       IntegerType *ExtTy =
2664         IntegerType::get(getContext(), getTypeSizeInBits(Ty) + MaxShiftAmt);
2665       if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS))
2666         if (const SCEVConstant *Step =
2667             dyn_cast<SCEVConstant>(AR->getStepRecurrence(*this))) {
2668           // {X,+,N}/C --> {X/C,+,N/C} if safe and N/C can be folded.
2669           const APInt &StepInt = Step->getAPInt();
2670           const APInt &DivInt = RHSC->getAPInt();
2671           if (!StepInt.urem(DivInt) &&
2672               getZeroExtendExpr(AR, ExtTy) ==
2673               getAddRecExpr(getZeroExtendExpr(AR->getStart(), ExtTy),
2674                             getZeroExtendExpr(Step, ExtTy),
2675                             AR->getLoop(), SCEV::FlagAnyWrap)) {
2676             SmallVector<const SCEV *, 4> Operands;
2677             for (const SCEV *Op : AR->operands())
2678               Operands.push_back(getUDivExpr(Op, RHS));
2679             return getAddRecExpr(Operands, AR->getLoop(), SCEV::FlagNW);
2680           }
2681           /// Get a canonical UDivExpr for a recurrence.
2682           /// {X,+,N}/C => {Y,+,N}/C where Y=X-(X%N). Safe when C%N=0.
2683           // We can currently only fold X%N if X is constant.
2684           const SCEVConstant *StartC = dyn_cast<SCEVConstant>(AR->getStart());
2685           if (StartC && !DivInt.urem(StepInt) &&
2686               getZeroExtendExpr(AR, ExtTy) ==
2687               getAddRecExpr(getZeroExtendExpr(AR->getStart(), ExtTy),
2688                             getZeroExtendExpr(Step, ExtTy),
2689                             AR->getLoop(), SCEV::FlagAnyWrap)) {
2690             const APInt &StartInt = StartC->getAPInt();
2691             const APInt &StartRem = StartInt.urem(StepInt);
2692             if (StartRem != 0)
2693               LHS = getAddRecExpr(getConstant(StartInt - StartRem), Step,
2694                                   AR->getLoop(), SCEV::FlagNW);
2695           }
2696         }
2697       // (A*B)/C --> A*(B/C) if safe and B/C can be folded.
2698       if (const SCEVMulExpr *M = dyn_cast<SCEVMulExpr>(LHS)) {
2699         SmallVector<const SCEV *, 4> Operands;
2700         for (const SCEV *Op : M->operands())
2701           Operands.push_back(getZeroExtendExpr(Op, ExtTy));
2702         if (getZeroExtendExpr(M, ExtTy) == getMulExpr(Operands))
2703           // Find an operand that's safely divisible.
2704           for (unsigned i = 0, e = M->getNumOperands(); i != e; ++i) {
2705             const SCEV *Op = M->getOperand(i);
2706             const SCEV *Div = getUDivExpr(Op, RHSC);
2707             if (!isa<SCEVUDivExpr>(Div) && getMulExpr(Div, RHSC) == Op) {
2708               Operands = SmallVector<const SCEV *, 4>(M->op_begin(),
2709                                                       M->op_end());
2710               Operands[i] = Div;
2711               return getMulExpr(Operands);
2712             }
2713           }
2714       }
2715       // (A+B)/C --> (A/C + B/C) if safe and A/C and B/C can be folded.
2716       if (const SCEVAddExpr *A = dyn_cast<SCEVAddExpr>(LHS)) {
2717         SmallVector<const SCEV *, 4> Operands;
2718         for (const SCEV *Op : A->operands())
2719           Operands.push_back(getZeroExtendExpr(Op, ExtTy));
2720         if (getZeroExtendExpr(A, ExtTy) == getAddExpr(Operands)) {
2721           Operands.clear();
2722           for (unsigned i = 0, e = A->getNumOperands(); i != e; ++i) {
2723             const SCEV *Op = getUDivExpr(A->getOperand(i), RHS);
2724             if (isa<SCEVUDivExpr>(Op) ||
2725                 getMulExpr(Op, RHS) != A->getOperand(i))
2726               break;
2727             Operands.push_back(Op);
2728           }
2729           if (Operands.size() == A->getNumOperands())
2730             return getAddExpr(Operands);
2731         }
2732       }
2733 
2734       // Fold if both operands are constant.
2735       if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(LHS)) {
2736         Constant *LHSCV = LHSC->getValue();
2737         Constant *RHSCV = RHSC->getValue();
2738         return getConstant(cast<ConstantInt>(ConstantExpr::getUDiv(LHSCV,
2739                                                                    RHSCV)));
2740       }
2741     }
2742   }
2743 
2744   FoldingSetNodeID ID;
2745   ID.AddInteger(scUDivExpr);
2746   ID.AddPointer(LHS);
2747   ID.AddPointer(RHS);
2748   void *IP = nullptr;
2749   if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
2750   SCEV *S = new (SCEVAllocator) SCEVUDivExpr(ID.Intern(SCEVAllocator),
2751                                              LHS, RHS);
2752   UniqueSCEVs.InsertNode(S, IP);
2753   return S;
2754 }
2755 
2756 static const APInt gcd(const SCEVConstant *C1, const SCEVConstant *C2) {
2757   APInt A = C1->getAPInt().abs();
2758   APInt B = C2->getAPInt().abs();
2759   uint32_t ABW = A.getBitWidth();
2760   uint32_t BBW = B.getBitWidth();
2761 
2762   if (ABW > BBW)
2763     B = B.zext(ABW);
2764   else if (ABW < BBW)
2765     A = A.zext(BBW);
2766 
2767   return APIntOps::GreatestCommonDivisor(A, B);
2768 }
2769 
2770 /// getUDivExactExpr - Get a canonical unsigned division expression, or
2771 /// something simpler if possible. There is no representation for an exact udiv
2772 /// in SCEV IR, but we can attempt to remove factors from the LHS and RHS.
2773 /// We can't do this when it's not exact because the udiv may be clearing bits.
2774 const SCEV *ScalarEvolution::getUDivExactExpr(const SCEV *LHS,
2775                                               const SCEV *RHS) {
2776   // TODO: we could try to find factors in all sorts of things, but for now we
2777   // just deal with u/exact (multiply, constant). See SCEVDivision towards the
2778   // end of this file for inspiration.
2779 
2780   const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(LHS);
2781   if (!Mul)
2782     return getUDivExpr(LHS, RHS);
2783 
2784   if (const SCEVConstant *RHSCst = dyn_cast<SCEVConstant>(RHS)) {
2785     // If the mulexpr multiplies by a constant, then that constant must be the
2786     // first element of the mulexpr.
2787     if (const auto *LHSCst = dyn_cast<SCEVConstant>(Mul->getOperand(0))) {
2788       if (LHSCst == RHSCst) {
2789         SmallVector<const SCEV *, 2> Operands;
2790         Operands.append(Mul->op_begin() + 1, Mul->op_end());
2791         return getMulExpr(Operands);
2792       }
2793 
2794       // We can't just assume that LHSCst divides RHSCst cleanly, it could be
2795       // that there's a factor provided by one of the other terms. We need to
2796       // check.
2797       APInt Factor = gcd(LHSCst, RHSCst);
2798       if (!Factor.isIntN(1)) {
2799         LHSCst =
2800             cast<SCEVConstant>(getConstant(LHSCst->getAPInt().udiv(Factor)));
2801         RHSCst =
2802             cast<SCEVConstant>(getConstant(RHSCst->getAPInt().udiv(Factor)));
2803         SmallVector<const SCEV *, 2> Operands;
2804         Operands.push_back(LHSCst);
2805         Operands.append(Mul->op_begin() + 1, Mul->op_end());
2806         LHS = getMulExpr(Operands);
2807         RHS = RHSCst;
2808         Mul = dyn_cast<SCEVMulExpr>(LHS);
2809         if (!Mul)
2810           return getUDivExactExpr(LHS, RHS);
2811       }
2812     }
2813   }
2814 
2815   for (int i = 0, e = Mul->getNumOperands(); i != e; ++i) {
2816     if (Mul->getOperand(i) == RHS) {
2817       SmallVector<const SCEV *, 2> Operands;
2818       Operands.append(Mul->op_begin(), Mul->op_begin() + i);
2819       Operands.append(Mul->op_begin() + i + 1, Mul->op_end());
2820       return getMulExpr(Operands);
2821     }
2822   }
2823 
2824   return getUDivExpr(LHS, RHS);
2825 }
2826 
2827 /// getAddRecExpr - Get an add recurrence expression for the specified loop.
2828 /// Simplify the expression as much as possible.
2829 const SCEV *ScalarEvolution::getAddRecExpr(const SCEV *Start, const SCEV *Step,
2830                                            const Loop *L,
2831                                            SCEV::NoWrapFlags Flags) {
2832   SmallVector<const SCEV *, 4> Operands;
2833   Operands.push_back(Start);
2834   if (const SCEVAddRecExpr *StepChrec = dyn_cast<SCEVAddRecExpr>(Step))
2835     if (StepChrec->getLoop() == L) {
2836       Operands.append(StepChrec->op_begin(), StepChrec->op_end());
2837       return getAddRecExpr(Operands, L, maskFlags(Flags, SCEV::FlagNW));
2838     }
2839 
2840   Operands.push_back(Step);
2841   return getAddRecExpr(Operands, L, Flags);
2842 }
2843 
2844 /// getAddRecExpr - Get an add recurrence expression for the specified loop.
2845 /// Simplify the expression as much as possible.
2846 const SCEV *
2847 ScalarEvolution::getAddRecExpr(SmallVectorImpl<const SCEV *> &Operands,
2848                                const Loop *L, SCEV::NoWrapFlags Flags) {
2849   if (Operands.size() == 1) return Operands[0];
2850 #ifndef NDEBUG
2851   Type *ETy = getEffectiveSCEVType(Operands[0]->getType());
2852   for (unsigned i = 1, e = Operands.size(); i != e; ++i)
2853     assert(getEffectiveSCEVType(Operands[i]->getType()) == ETy &&
2854            "SCEVAddRecExpr operand types don't match!");
2855   for (unsigned i = 0, e = Operands.size(); i != e; ++i)
2856     assert(isLoopInvariant(Operands[i], L) &&
2857            "SCEVAddRecExpr operand is not loop-invariant!");
2858 #endif
2859 
2860   if (Operands.back()->isZero()) {
2861     Operands.pop_back();
2862     return getAddRecExpr(Operands, L, SCEV::FlagAnyWrap); // {X,+,0}  -->  X
2863   }
2864 
2865   // It's tempting to want to call getMaxBackedgeTakenCount count here and
2866   // use that information to infer NUW and NSW flags. However, computing a
2867   // BE count requires calling getAddRecExpr, so we may not yet have a
2868   // meaningful BE count at this point (and if we don't, we'd be stuck
2869   // with a SCEVCouldNotCompute as the cached BE count).
2870 
2871   Flags = StrengthenNoWrapFlags(this, scAddRecExpr, Operands, Flags);
2872 
2873   // Canonicalize nested AddRecs in by nesting them in order of loop depth.
2874   if (const SCEVAddRecExpr *NestedAR = dyn_cast<SCEVAddRecExpr>(Operands[0])) {
2875     const Loop *NestedLoop = NestedAR->getLoop();
2876     if (L->contains(NestedLoop)
2877             ? (L->getLoopDepth() < NestedLoop->getLoopDepth())
2878             : (!NestedLoop->contains(L) &&
2879                DT.dominates(L->getHeader(), NestedLoop->getHeader()))) {
2880       SmallVector<const SCEV *, 4> NestedOperands(NestedAR->op_begin(),
2881                                                   NestedAR->op_end());
2882       Operands[0] = NestedAR->getStart();
2883       // AddRecs require their operands be loop-invariant with respect to their
2884       // loops. Don't perform this transformation if it would break this
2885       // requirement.
2886       bool AllInvariant = all_of(
2887           Operands, [&](const SCEV *Op) { return isLoopInvariant(Op, L); });
2888 
2889       if (AllInvariant) {
2890         // Create a recurrence for the outer loop with the same step size.
2891         //
2892         // The outer recurrence keeps its NW flag but only keeps NUW/NSW if the
2893         // inner recurrence has the same property.
2894         SCEV::NoWrapFlags OuterFlags =
2895           maskFlags(Flags, SCEV::FlagNW | NestedAR->getNoWrapFlags());
2896 
2897         NestedOperands[0] = getAddRecExpr(Operands, L, OuterFlags);
2898         AllInvariant = all_of(NestedOperands, [&](const SCEV *Op) {
2899           return isLoopInvariant(Op, NestedLoop);
2900         });
2901 
2902         if (AllInvariant) {
2903           // Ok, both add recurrences are valid after the transformation.
2904           //
2905           // The inner recurrence keeps its NW flag but only keeps NUW/NSW if
2906           // the outer recurrence has the same property.
2907           SCEV::NoWrapFlags InnerFlags =
2908             maskFlags(NestedAR->getNoWrapFlags(), SCEV::FlagNW | Flags);
2909           return getAddRecExpr(NestedOperands, NestedLoop, InnerFlags);
2910         }
2911       }
2912       // Reset Operands to its original state.
2913       Operands[0] = NestedAR;
2914     }
2915   }
2916 
2917   // Okay, it looks like we really DO need an addrec expr.  Check to see if we
2918   // already have one, otherwise create a new one.
2919   FoldingSetNodeID ID;
2920   ID.AddInteger(scAddRecExpr);
2921   for (unsigned i = 0, e = Operands.size(); i != e; ++i)
2922     ID.AddPointer(Operands[i]);
2923   ID.AddPointer(L);
2924   void *IP = nullptr;
2925   SCEVAddRecExpr *S =
2926     static_cast<SCEVAddRecExpr *>(UniqueSCEVs.FindNodeOrInsertPos(ID, IP));
2927   if (!S) {
2928     const SCEV **O = SCEVAllocator.Allocate<const SCEV *>(Operands.size());
2929     std::uninitialized_copy(Operands.begin(), Operands.end(), O);
2930     S = new (SCEVAllocator) SCEVAddRecExpr(ID.Intern(SCEVAllocator),
2931                                            O, Operands.size(), L);
2932     UniqueSCEVs.InsertNode(S, IP);
2933   }
2934   S->setNoWrapFlags(Flags);
2935   return S;
2936 }
2937 
2938 const SCEV *
2939 ScalarEvolution::getGEPExpr(Type *PointeeType, const SCEV *BaseExpr,
2940                             const SmallVectorImpl<const SCEV *> &IndexExprs,
2941                             bool InBounds) {
2942   // getSCEV(Base)->getType() has the same address space as Base->getType()
2943   // because SCEV::getType() preserves the address space.
2944   Type *IntPtrTy = getEffectiveSCEVType(BaseExpr->getType());
2945   // FIXME(PR23527): Don't blindly transfer the inbounds flag from the GEP
2946   // instruction to its SCEV, because the Instruction may be guarded by control
2947   // flow and the no-overflow bits may not be valid for the expression in any
2948   // context. This can be fixed similarly to how these flags are handled for
2949   // adds.
2950   SCEV::NoWrapFlags Wrap = InBounds ? SCEV::FlagNSW : SCEV::FlagAnyWrap;
2951 
2952   const SCEV *TotalOffset = getZero(IntPtrTy);
2953   // The address space is unimportant. The first thing we do on CurTy is getting
2954   // its element type.
2955   Type *CurTy = PointerType::getUnqual(PointeeType);
2956   for (const SCEV *IndexExpr : IndexExprs) {
2957     // Compute the (potentially symbolic) offset in bytes for this index.
2958     if (StructType *STy = dyn_cast<StructType>(CurTy)) {
2959       // For a struct, add the member offset.
2960       ConstantInt *Index = cast<SCEVConstant>(IndexExpr)->getValue();
2961       unsigned FieldNo = Index->getZExtValue();
2962       const SCEV *FieldOffset = getOffsetOfExpr(IntPtrTy, STy, FieldNo);
2963 
2964       // Add the field offset to the running total offset.
2965       TotalOffset = getAddExpr(TotalOffset, FieldOffset);
2966 
2967       // Update CurTy to the type of the field at Index.
2968       CurTy = STy->getTypeAtIndex(Index);
2969     } else {
2970       // Update CurTy to its element type.
2971       CurTy = cast<SequentialType>(CurTy)->getElementType();
2972       // For an array, add the element offset, explicitly scaled.
2973       const SCEV *ElementSize = getSizeOfExpr(IntPtrTy, CurTy);
2974       // Getelementptr indices are signed.
2975       IndexExpr = getTruncateOrSignExtend(IndexExpr, IntPtrTy);
2976 
2977       // Multiply the index by the element size to compute the element offset.
2978       const SCEV *LocalOffset = getMulExpr(IndexExpr, ElementSize, Wrap);
2979 
2980       // Add the element offset to the running total offset.
2981       TotalOffset = getAddExpr(TotalOffset, LocalOffset);
2982     }
2983   }
2984 
2985   // Add the total offset from all the GEP indices to the base.
2986   return getAddExpr(BaseExpr, TotalOffset, Wrap);
2987 }
2988 
2989 const SCEV *ScalarEvolution::getSMaxExpr(const SCEV *LHS,
2990                                          const SCEV *RHS) {
2991   SmallVector<const SCEV *, 2> Ops;
2992   Ops.push_back(LHS);
2993   Ops.push_back(RHS);
2994   return getSMaxExpr(Ops);
2995 }
2996 
2997 const SCEV *
2998 ScalarEvolution::getSMaxExpr(SmallVectorImpl<const SCEV *> &Ops) {
2999   assert(!Ops.empty() && "Cannot get empty smax!");
3000   if (Ops.size() == 1) return Ops[0];
3001 #ifndef NDEBUG
3002   Type *ETy = getEffectiveSCEVType(Ops[0]->getType());
3003   for (unsigned i = 1, e = Ops.size(); i != e; ++i)
3004     assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy &&
3005            "SCEVSMaxExpr operand types don't match!");
3006 #endif
3007 
3008   // Sort by complexity, this groups all similar expression types together.
3009   GroupByComplexity(Ops, &LI);
3010 
3011   // If there are any constants, fold them together.
3012   unsigned Idx = 0;
3013   if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(Ops[0])) {
3014     ++Idx;
3015     assert(Idx < Ops.size());
3016     while (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(Ops[Idx])) {
3017       // We found two constants, fold them together!
3018       ConstantInt *Fold = ConstantInt::get(
3019           getContext(), APIntOps::smax(LHSC->getAPInt(), RHSC->getAPInt()));
3020       Ops[0] = getConstant(Fold);
3021       Ops.erase(Ops.begin()+1);  // Erase the folded element
3022       if (Ops.size() == 1) return Ops[0];
3023       LHSC = cast<SCEVConstant>(Ops[0]);
3024     }
3025 
3026     // If we are left with a constant minimum-int, strip it off.
3027     if (cast<SCEVConstant>(Ops[0])->getValue()->isMinValue(true)) {
3028       Ops.erase(Ops.begin());
3029       --Idx;
3030     } else if (cast<SCEVConstant>(Ops[0])->getValue()->isMaxValue(true)) {
3031       // If we have an smax with a constant maximum-int, it will always be
3032       // maximum-int.
3033       return Ops[0];
3034     }
3035 
3036     if (Ops.size() == 1) return Ops[0];
3037   }
3038 
3039   // Find the first SMax
3040   while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scSMaxExpr)
3041     ++Idx;
3042 
3043   // Check to see if one of the operands is an SMax. If so, expand its operands
3044   // onto our operand list, and recurse to simplify.
3045   if (Idx < Ops.size()) {
3046     bool DeletedSMax = false;
3047     while (const SCEVSMaxExpr *SMax = dyn_cast<SCEVSMaxExpr>(Ops[Idx])) {
3048       Ops.erase(Ops.begin()+Idx);
3049       Ops.append(SMax->op_begin(), SMax->op_end());
3050       DeletedSMax = true;
3051     }
3052 
3053     if (DeletedSMax)
3054       return getSMaxExpr(Ops);
3055   }
3056 
3057   // Okay, check to see if the same value occurs in the operand list twice.  If
3058   // so, delete one.  Since we sorted the list, these values are required to
3059   // be adjacent.
3060   for (unsigned i = 0, e = Ops.size()-1; i != e; ++i)
3061     //  X smax Y smax Y  -->  X smax Y
3062     //  X smax Y         -->  X, if X is always greater than Y
3063     if (Ops[i] == Ops[i+1] ||
3064         isKnownPredicate(ICmpInst::ICMP_SGE, Ops[i], Ops[i+1])) {
3065       Ops.erase(Ops.begin()+i+1, Ops.begin()+i+2);
3066       --i; --e;
3067     } else if (isKnownPredicate(ICmpInst::ICMP_SLE, Ops[i], Ops[i+1])) {
3068       Ops.erase(Ops.begin()+i, Ops.begin()+i+1);
3069       --i; --e;
3070     }
3071 
3072   if (Ops.size() == 1) return Ops[0];
3073 
3074   assert(!Ops.empty() && "Reduced smax down to nothing!");
3075 
3076   // Okay, it looks like we really DO need an smax expr.  Check to see if we
3077   // already have one, otherwise create a new one.
3078   FoldingSetNodeID ID;
3079   ID.AddInteger(scSMaxExpr);
3080   for (unsigned i = 0, e = Ops.size(); i != e; ++i)
3081     ID.AddPointer(Ops[i]);
3082   void *IP = nullptr;
3083   if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
3084   const SCEV **O = SCEVAllocator.Allocate<const SCEV *>(Ops.size());
3085   std::uninitialized_copy(Ops.begin(), Ops.end(), O);
3086   SCEV *S = new (SCEVAllocator) SCEVSMaxExpr(ID.Intern(SCEVAllocator),
3087                                              O, Ops.size());
3088   UniqueSCEVs.InsertNode(S, IP);
3089   return S;
3090 }
3091 
3092 const SCEV *ScalarEvolution::getUMaxExpr(const SCEV *LHS,
3093                                          const SCEV *RHS) {
3094   SmallVector<const SCEV *, 2> Ops;
3095   Ops.push_back(LHS);
3096   Ops.push_back(RHS);
3097   return getUMaxExpr(Ops);
3098 }
3099 
3100 const SCEV *
3101 ScalarEvolution::getUMaxExpr(SmallVectorImpl<const SCEV *> &Ops) {
3102   assert(!Ops.empty() && "Cannot get empty umax!");
3103   if (Ops.size() == 1) return Ops[0];
3104 #ifndef NDEBUG
3105   Type *ETy = getEffectiveSCEVType(Ops[0]->getType());
3106   for (unsigned i = 1, e = Ops.size(); i != e; ++i)
3107     assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy &&
3108            "SCEVUMaxExpr operand types don't match!");
3109 #endif
3110 
3111   // Sort by complexity, this groups all similar expression types together.
3112   GroupByComplexity(Ops, &LI);
3113 
3114   // If there are any constants, fold them together.
3115   unsigned Idx = 0;
3116   if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(Ops[0])) {
3117     ++Idx;
3118     assert(Idx < Ops.size());
3119     while (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(Ops[Idx])) {
3120       // We found two constants, fold them together!
3121       ConstantInt *Fold = ConstantInt::get(
3122           getContext(), APIntOps::umax(LHSC->getAPInt(), RHSC->getAPInt()));
3123       Ops[0] = getConstant(Fold);
3124       Ops.erase(Ops.begin()+1);  // Erase the folded element
3125       if (Ops.size() == 1) return Ops[0];
3126       LHSC = cast<SCEVConstant>(Ops[0]);
3127     }
3128 
3129     // If we are left with a constant minimum-int, strip it off.
3130     if (cast<SCEVConstant>(Ops[0])->getValue()->isMinValue(false)) {
3131       Ops.erase(Ops.begin());
3132       --Idx;
3133     } else if (cast<SCEVConstant>(Ops[0])->getValue()->isMaxValue(false)) {
3134       // If we have an umax with a constant maximum-int, it will always be
3135       // maximum-int.
3136       return Ops[0];
3137     }
3138 
3139     if (Ops.size() == 1) return Ops[0];
3140   }
3141 
3142   // Find the first UMax
3143   while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scUMaxExpr)
3144     ++Idx;
3145 
3146   // Check to see if one of the operands is a UMax. If so, expand its operands
3147   // onto our operand list, and recurse to simplify.
3148   if (Idx < Ops.size()) {
3149     bool DeletedUMax = false;
3150     while (const SCEVUMaxExpr *UMax = dyn_cast<SCEVUMaxExpr>(Ops[Idx])) {
3151       Ops.erase(Ops.begin()+Idx);
3152       Ops.append(UMax->op_begin(), UMax->op_end());
3153       DeletedUMax = true;
3154     }
3155 
3156     if (DeletedUMax)
3157       return getUMaxExpr(Ops);
3158   }
3159 
3160   // Okay, check to see if the same value occurs in the operand list twice.  If
3161   // so, delete one.  Since we sorted the list, these values are required to
3162   // be adjacent.
3163   for (unsigned i = 0, e = Ops.size()-1; i != e; ++i)
3164     //  X umax Y umax Y  -->  X umax Y
3165     //  X umax Y         -->  X, if X is always greater than Y
3166     if (Ops[i] == Ops[i+1] ||
3167         isKnownPredicate(ICmpInst::ICMP_UGE, Ops[i], Ops[i+1])) {
3168       Ops.erase(Ops.begin()+i+1, Ops.begin()+i+2);
3169       --i; --e;
3170     } else if (isKnownPredicate(ICmpInst::ICMP_ULE, Ops[i], Ops[i+1])) {
3171       Ops.erase(Ops.begin()+i, Ops.begin()+i+1);
3172       --i; --e;
3173     }
3174 
3175   if (Ops.size() == 1) return Ops[0];
3176 
3177   assert(!Ops.empty() && "Reduced umax down to nothing!");
3178 
3179   // Okay, it looks like we really DO need a umax expr.  Check to see if we
3180   // already have one, otherwise create a new one.
3181   FoldingSetNodeID ID;
3182   ID.AddInteger(scUMaxExpr);
3183   for (unsigned i = 0, e = Ops.size(); i != e; ++i)
3184     ID.AddPointer(Ops[i]);
3185   void *IP = nullptr;
3186   if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
3187   const SCEV **O = SCEVAllocator.Allocate<const SCEV *>(Ops.size());
3188   std::uninitialized_copy(Ops.begin(), Ops.end(), O);
3189   SCEV *S = new (SCEVAllocator) SCEVUMaxExpr(ID.Intern(SCEVAllocator),
3190                                              O, Ops.size());
3191   UniqueSCEVs.InsertNode(S, IP);
3192   return S;
3193 }
3194 
3195 const SCEV *ScalarEvolution::getSMinExpr(const SCEV *LHS,
3196                                          const SCEV *RHS) {
3197   // ~smax(~x, ~y) == smin(x, y).
3198   return getNotSCEV(getSMaxExpr(getNotSCEV(LHS), getNotSCEV(RHS)));
3199 }
3200 
3201 const SCEV *ScalarEvolution::getUMinExpr(const SCEV *LHS,
3202                                          const SCEV *RHS) {
3203   // ~umax(~x, ~y) == umin(x, y)
3204   return getNotSCEV(getUMaxExpr(getNotSCEV(LHS), getNotSCEV(RHS)));
3205 }
3206 
3207 const SCEV *ScalarEvolution::getSizeOfExpr(Type *IntTy, Type *AllocTy) {
3208   // We can bypass creating a target-independent
3209   // constant expression and then folding it back into a ConstantInt.
3210   // This is just a compile-time optimization.
3211   return getConstant(IntTy, getDataLayout().getTypeAllocSize(AllocTy));
3212 }
3213 
3214 const SCEV *ScalarEvolution::getOffsetOfExpr(Type *IntTy,
3215                                              StructType *STy,
3216                                              unsigned FieldNo) {
3217   // We can bypass creating a target-independent
3218   // constant expression and then folding it back into a ConstantInt.
3219   // This is just a compile-time optimization.
3220   return getConstant(
3221       IntTy, getDataLayout().getStructLayout(STy)->getElementOffset(FieldNo));
3222 }
3223 
3224 const SCEV *ScalarEvolution::getUnknown(Value *V) {
3225   // Don't attempt to do anything other than create a SCEVUnknown object
3226   // here.  createSCEV only calls getUnknown after checking for all other
3227   // interesting possibilities, and any other code that calls getUnknown
3228   // is doing so in order to hide a value from SCEV canonicalization.
3229 
3230   FoldingSetNodeID ID;
3231   ID.AddInteger(scUnknown);
3232   ID.AddPointer(V);
3233   void *IP = nullptr;
3234   if (SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) {
3235     assert(cast<SCEVUnknown>(S)->getValue() == V &&
3236            "Stale SCEVUnknown in uniquing map!");
3237     return S;
3238   }
3239   SCEV *S = new (SCEVAllocator) SCEVUnknown(ID.Intern(SCEVAllocator), V, this,
3240                                             FirstUnknown);
3241   FirstUnknown = cast<SCEVUnknown>(S);
3242   UniqueSCEVs.InsertNode(S, IP);
3243   return S;
3244 }
3245 
3246 //===----------------------------------------------------------------------===//
3247 //            Basic SCEV Analysis and PHI Idiom Recognition Code
3248 //
3249 
3250 /// isSCEVable - Test if values of the given type are analyzable within
3251 /// the SCEV framework. This primarily includes integer types, and it
3252 /// can optionally include pointer types if the ScalarEvolution class
3253 /// has access to target-specific information.
3254 bool ScalarEvolution::isSCEVable(Type *Ty) const {
3255   // Integers and pointers are always SCEVable.
3256   return Ty->isIntegerTy() || Ty->isPointerTy();
3257 }
3258 
3259 /// getTypeSizeInBits - Return the size in bits of the specified type,
3260 /// for which isSCEVable must return true.
3261 uint64_t ScalarEvolution::getTypeSizeInBits(Type *Ty) const {
3262   assert(isSCEVable(Ty) && "Type is not SCEVable!");
3263   return getDataLayout().getTypeSizeInBits(Ty);
3264 }
3265 
3266 /// getEffectiveSCEVType - Return a type with the same bitwidth as
3267 /// the given type and which represents how SCEV will treat the given
3268 /// type, for which isSCEVable must return true. For pointer types,
3269 /// this is the pointer-sized integer type.
3270 Type *ScalarEvolution::getEffectiveSCEVType(Type *Ty) const {
3271   assert(isSCEVable(Ty) && "Type is not SCEVable!");
3272 
3273   if (Ty->isIntegerTy())
3274     return Ty;
3275 
3276   // The only other support type is pointer.
3277   assert(Ty->isPointerTy() && "Unexpected non-pointer non-integer type!");
3278   return getDataLayout().getIntPtrType(Ty);
3279 }
3280 
3281 const SCEV *ScalarEvolution::getCouldNotCompute() {
3282   return CouldNotCompute.get();
3283 }
3284 
3285 
3286 bool ScalarEvolution::checkValidity(const SCEV *S) const {
3287   // Helper class working with SCEVTraversal to figure out if a SCEV contains
3288   // a SCEVUnknown with null value-pointer. FindInvalidSCEVUnknown::FindOne
3289   // is set iff if find such SCEVUnknown.
3290   //
3291   struct FindInvalidSCEVUnknown {
3292     bool FindOne;
3293     FindInvalidSCEVUnknown() { FindOne = false; }
3294     bool follow(const SCEV *S) {
3295       switch (static_cast<SCEVTypes>(S->getSCEVType())) {
3296       case scConstant:
3297         return false;
3298       case scUnknown:
3299         if (!cast<SCEVUnknown>(S)->getValue())
3300           FindOne = true;
3301         return false;
3302       default:
3303         return true;
3304       }
3305     }
3306     bool isDone() const { return FindOne; }
3307   };
3308 
3309   FindInvalidSCEVUnknown F;
3310   SCEVTraversal<FindInvalidSCEVUnknown> ST(F);
3311   ST.visitAll(S);
3312 
3313   return !F.FindOne;
3314 }
3315 
3316 namespace {
3317 // Helper class working with SCEVTraversal to figure out if a SCEV contains
3318 // a sub SCEV of scAddRecExpr type.  FindInvalidSCEVUnknown::FoundOne is set
3319 // iff if such sub scAddRecExpr type SCEV is found.
3320 struct FindAddRecurrence {
3321   bool FoundOne;
3322   FindAddRecurrence() : FoundOne(false) {}
3323 
3324   bool follow(const SCEV *S) {
3325     switch (static_cast<SCEVTypes>(S->getSCEVType())) {
3326     case scAddRecExpr:
3327       FoundOne = true;
3328     case scConstant:
3329     case scUnknown:
3330     case scCouldNotCompute:
3331       return false;
3332     default:
3333       return true;
3334     }
3335   }
3336   bool isDone() const { return FoundOne; }
3337 };
3338 }
3339 
3340 bool ScalarEvolution::containsAddRecurrence(const SCEV *S) {
3341   HasRecMapType::iterator I = HasRecMap.find_as(S);
3342   if (I != HasRecMap.end())
3343     return I->second;
3344 
3345   FindAddRecurrence F;
3346   SCEVTraversal<FindAddRecurrence> ST(F);
3347   ST.visitAll(S);
3348   HasRecMap.insert({S, F.FoundOne});
3349   return F.FoundOne;
3350 }
3351 
3352 /// getSCEVValues - Return the Value set from S.
3353 SetVector<Value *> *ScalarEvolution::getSCEVValues(const SCEV *S) {
3354   ExprValueMapType::iterator SI = ExprValueMap.find_as(S);
3355   if (SI == ExprValueMap.end())
3356     return nullptr;
3357 #ifndef NDEBUG
3358   if (VerifySCEVMap) {
3359     // Check there is no dangling Value in the set returned.
3360     for (const auto &VE : SI->second)
3361       assert(ValueExprMap.count(VE));
3362   }
3363 #endif
3364   return &SI->second;
3365 }
3366 
3367 /// eraseValueFromMap - Erase Value from ValueExprMap and ExprValueMap.
3368 /// If ValueExprMap.erase(V) is not used together with forgetMemoizedResults(S),
3369 /// eraseValueFromMap should be used instead to ensure whenever V->S is removed
3370 /// from ValueExprMap, V is also removed from the set of ExprValueMap[S].
3371 void ScalarEvolution::eraseValueFromMap(Value *V) {
3372   ValueExprMapType::iterator I = ValueExprMap.find_as(V);
3373   if (I != ValueExprMap.end()) {
3374     const SCEV *S = I->second;
3375     SetVector<Value *> *SV = getSCEVValues(S);
3376     // Remove V from the set of ExprValueMap[S]
3377     if (SV)
3378       SV->remove(V);
3379     ValueExprMap.erase(V);
3380   }
3381 }
3382 
3383 /// getSCEV - Return an existing SCEV if it exists, otherwise analyze the
3384 /// expression and create a new one.
3385 const SCEV *ScalarEvolution::getSCEV(Value *V) {
3386   assert(isSCEVable(V->getType()) && "Value is not SCEVable!");
3387 
3388   const SCEV *S = getExistingSCEV(V);
3389   if (S == nullptr) {
3390     S = createSCEV(V);
3391     // During PHI resolution, it is possible to create two SCEVs for the same
3392     // V, so it is needed to double check whether V->S is inserted into
3393     // ValueExprMap before insert S->V into ExprValueMap.
3394     std::pair<ValueExprMapType::iterator, bool> Pair =
3395         ValueExprMap.insert({SCEVCallbackVH(V, this), S});
3396     if (Pair.second)
3397       ExprValueMap[S].insert(V);
3398   }
3399   return S;
3400 }
3401 
3402 const SCEV *ScalarEvolution::getExistingSCEV(Value *V) {
3403   assert(isSCEVable(V->getType()) && "Value is not SCEVable!");
3404 
3405   ValueExprMapType::iterator I = ValueExprMap.find_as(V);
3406   if (I != ValueExprMap.end()) {
3407     const SCEV *S = I->second;
3408     if (checkValidity(S))
3409       return S;
3410     forgetMemoizedResults(S);
3411     ValueExprMap.erase(I);
3412   }
3413   return nullptr;
3414 }
3415 
3416 /// getNegativeSCEV - Return a SCEV corresponding to -V = -1*V
3417 ///
3418 const SCEV *ScalarEvolution::getNegativeSCEV(const SCEV *V,
3419                                              SCEV::NoWrapFlags Flags) {
3420   if (const SCEVConstant *VC = dyn_cast<SCEVConstant>(V))
3421     return getConstant(
3422                cast<ConstantInt>(ConstantExpr::getNeg(VC->getValue())));
3423 
3424   Type *Ty = V->getType();
3425   Ty = getEffectiveSCEVType(Ty);
3426   return getMulExpr(
3427       V, getConstant(cast<ConstantInt>(Constant::getAllOnesValue(Ty))), Flags);
3428 }
3429 
3430 /// getNotSCEV - Return a SCEV corresponding to ~V = -1-V
3431 const SCEV *ScalarEvolution::getNotSCEV(const SCEV *V) {
3432   if (const SCEVConstant *VC = dyn_cast<SCEVConstant>(V))
3433     return getConstant(
3434                 cast<ConstantInt>(ConstantExpr::getNot(VC->getValue())));
3435 
3436   Type *Ty = V->getType();
3437   Ty = getEffectiveSCEVType(Ty);
3438   const SCEV *AllOnes =
3439                    getConstant(cast<ConstantInt>(Constant::getAllOnesValue(Ty)));
3440   return getMinusSCEV(AllOnes, V);
3441 }
3442 
3443 /// getMinusSCEV - Return LHS-RHS.  Minus is represented in SCEV as A+B*-1.
3444 const SCEV *ScalarEvolution::getMinusSCEV(const SCEV *LHS, const SCEV *RHS,
3445                                           SCEV::NoWrapFlags Flags) {
3446   // Fast path: X - X --> 0.
3447   if (LHS == RHS)
3448     return getZero(LHS->getType());
3449 
3450   // We represent LHS - RHS as LHS + (-1)*RHS. This transformation
3451   // makes it so that we cannot make much use of NUW.
3452   auto AddFlags = SCEV::FlagAnyWrap;
3453   const bool RHSIsNotMinSigned =
3454       !getSignedRange(RHS).getSignedMin().isMinSignedValue();
3455   if (maskFlags(Flags, SCEV::FlagNSW) == SCEV::FlagNSW) {
3456     // Let M be the minimum representable signed value. Then (-1)*RHS
3457     // signed-wraps if and only if RHS is M. That can happen even for
3458     // a NSW subtraction because e.g. (-1)*M signed-wraps even though
3459     // -1 - M does not. So to transfer NSW from LHS - RHS to LHS +
3460     // (-1)*RHS, we need to prove that RHS != M.
3461     //
3462     // If LHS is non-negative and we know that LHS - RHS does not
3463     // signed-wrap, then RHS cannot be M. So we can rule out signed-wrap
3464     // either by proving that RHS > M or that LHS >= 0.
3465     if (RHSIsNotMinSigned || isKnownNonNegative(LHS)) {
3466       AddFlags = SCEV::FlagNSW;
3467     }
3468   }
3469 
3470   // FIXME: Find a correct way to transfer NSW to (-1)*M when LHS -
3471   // RHS is NSW and LHS >= 0.
3472   //
3473   // The difficulty here is that the NSW flag may have been proven
3474   // relative to a loop that is to be found in a recurrence in LHS and
3475   // not in RHS. Applying NSW to (-1)*M may then let the NSW have a
3476   // larger scope than intended.
3477   auto NegFlags = RHSIsNotMinSigned ? SCEV::FlagNSW : SCEV::FlagAnyWrap;
3478 
3479   return getAddExpr(LHS, getNegativeSCEV(RHS, NegFlags), AddFlags);
3480 }
3481 
3482 /// getTruncateOrZeroExtend - Return a SCEV corresponding to a conversion of the
3483 /// input value to the specified type.  If the type must be extended, it is zero
3484 /// extended.
3485 const SCEV *
3486 ScalarEvolution::getTruncateOrZeroExtend(const SCEV *V, Type *Ty) {
3487   Type *SrcTy = V->getType();
3488   assert((SrcTy->isIntegerTy() || SrcTy->isPointerTy()) &&
3489          (Ty->isIntegerTy() || Ty->isPointerTy()) &&
3490          "Cannot truncate or zero extend with non-integer arguments!");
3491   if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty))
3492     return V;  // No conversion
3493   if (getTypeSizeInBits(SrcTy) > getTypeSizeInBits(Ty))
3494     return getTruncateExpr(V, Ty);
3495   return getZeroExtendExpr(V, Ty);
3496 }
3497 
3498 /// getTruncateOrSignExtend - Return a SCEV corresponding to a conversion of the
3499 /// input value to the specified type.  If the type must be extended, it is sign
3500 /// extended.
3501 const SCEV *
3502 ScalarEvolution::getTruncateOrSignExtend(const SCEV *V,
3503                                          Type *Ty) {
3504   Type *SrcTy = V->getType();
3505   assert((SrcTy->isIntegerTy() || SrcTy->isPointerTy()) &&
3506          (Ty->isIntegerTy() || Ty->isPointerTy()) &&
3507          "Cannot truncate or zero extend with non-integer arguments!");
3508   if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty))
3509     return V;  // No conversion
3510   if (getTypeSizeInBits(SrcTy) > getTypeSizeInBits(Ty))
3511     return getTruncateExpr(V, Ty);
3512   return getSignExtendExpr(V, Ty);
3513 }
3514 
3515 /// getNoopOrZeroExtend - Return a SCEV corresponding to a conversion of the
3516 /// input value to the specified type.  If the type must be extended, it is zero
3517 /// extended.  The conversion must not be narrowing.
3518 const SCEV *
3519 ScalarEvolution::getNoopOrZeroExtend(const SCEV *V, Type *Ty) {
3520   Type *SrcTy = V->getType();
3521   assert((SrcTy->isIntegerTy() || SrcTy->isPointerTy()) &&
3522          (Ty->isIntegerTy() || Ty->isPointerTy()) &&
3523          "Cannot noop or zero extend with non-integer arguments!");
3524   assert(getTypeSizeInBits(SrcTy) <= getTypeSizeInBits(Ty) &&
3525          "getNoopOrZeroExtend cannot truncate!");
3526   if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty))
3527     return V;  // No conversion
3528   return getZeroExtendExpr(V, Ty);
3529 }
3530 
3531 /// getNoopOrSignExtend - Return a SCEV corresponding to a conversion of the
3532 /// input value to the specified type.  If the type must be extended, it is sign
3533 /// extended.  The conversion must not be narrowing.
3534 const SCEV *
3535 ScalarEvolution::getNoopOrSignExtend(const SCEV *V, Type *Ty) {
3536   Type *SrcTy = V->getType();
3537   assert((SrcTy->isIntegerTy() || SrcTy->isPointerTy()) &&
3538          (Ty->isIntegerTy() || Ty->isPointerTy()) &&
3539          "Cannot noop or sign extend with non-integer arguments!");
3540   assert(getTypeSizeInBits(SrcTy) <= getTypeSizeInBits(Ty) &&
3541          "getNoopOrSignExtend cannot truncate!");
3542   if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty))
3543     return V;  // No conversion
3544   return getSignExtendExpr(V, Ty);
3545 }
3546 
3547 /// getNoopOrAnyExtend - Return a SCEV corresponding to a conversion of
3548 /// the input value to the specified type. If the type must be extended,
3549 /// it is extended with unspecified bits. The conversion must not be
3550 /// narrowing.
3551 const SCEV *
3552 ScalarEvolution::getNoopOrAnyExtend(const SCEV *V, Type *Ty) {
3553   Type *SrcTy = V->getType();
3554   assert((SrcTy->isIntegerTy() || SrcTy->isPointerTy()) &&
3555          (Ty->isIntegerTy() || Ty->isPointerTy()) &&
3556          "Cannot noop or any extend with non-integer arguments!");
3557   assert(getTypeSizeInBits(SrcTy) <= getTypeSizeInBits(Ty) &&
3558          "getNoopOrAnyExtend cannot truncate!");
3559   if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty))
3560     return V;  // No conversion
3561   return getAnyExtendExpr(V, Ty);
3562 }
3563 
3564 /// getTruncateOrNoop - Return a SCEV corresponding to a conversion of the
3565 /// input value to the specified type.  The conversion must not be widening.
3566 const SCEV *
3567 ScalarEvolution::getTruncateOrNoop(const SCEV *V, Type *Ty) {
3568   Type *SrcTy = V->getType();
3569   assert((SrcTy->isIntegerTy() || SrcTy->isPointerTy()) &&
3570          (Ty->isIntegerTy() || Ty->isPointerTy()) &&
3571          "Cannot truncate or noop with non-integer arguments!");
3572   assert(getTypeSizeInBits(SrcTy) >= getTypeSizeInBits(Ty) &&
3573          "getTruncateOrNoop cannot extend!");
3574   if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty))
3575     return V;  // No conversion
3576   return getTruncateExpr(V, Ty);
3577 }
3578 
3579 /// getUMaxFromMismatchedTypes - Promote the operands to the wider of
3580 /// the types using zero-extension, and then perform a umax operation
3581 /// with them.
3582 const SCEV *ScalarEvolution::getUMaxFromMismatchedTypes(const SCEV *LHS,
3583                                                         const SCEV *RHS) {
3584   const SCEV *PromotedLHS = LHS;
3585   const SCEV *PromotedRHS = RHS;
3586 
3587   if (getTypeSizeInBits(LHS->getType()) > getTypeSizeInBits(RHS->getType()))
3588     PromotedRHS = getZeroExtendExpr(RHS, LHS->getType());
3589   else
3590     PromotedLHS = getNoopOrZeroExtend(LHS, RHS->getType());
3591 
3592   return getUMaxExpr(PromotedLHS, PromotedRHS);
3593 }
3594 
3595 /// getUMinFromMismatchedTypes - Promote the operands to the wider of
3596 /// the types using zero-extension, and then perform a umin operation
3597 /// with them.
3598 const SCEV *ScalarEvolution::getUMinFromMismatchedTypes(const SCEV *LHS,
3599                                                         const SCEV *RHS) {
3600   const SCEV *PromotedLHS = LHS;
3601   const SCEV *PromotedRHS = RHS;
3602 
3603   if (getTypeSizeInBits(LHS->getType()) > getTypeSizeInBits(RHS->getType()))
3604     PromotedRHS = getZeroExtendExpr(RHS, LHS->getType());
3605   else
3606     PromotedLHS = getNoopOrZeroExtend(LHS, RHS->getType());
3607 
3608   return getUMinExpr(PromotedLHS, PromotedRHS);
3609 }
3610 
3611 /// getPointerBase - Transitively follow the chain of pointer-type operands
3612 /// until reaching a SCEV that does not have a single pointer operand. This
3613 /// returns a SCEVUnknown pointer for well-formed pointer-type expressions,
3614 /// but corner cases do exist.
3615 const SCEV *ScalarEvolution::getPointerBase(const SCEV *V) {
3616   // A pointer operand may evaluate to a nonpointer expression, such as null.
3617   if (!V->getType()->isPointerTy())
3618     return V;
3619 
3620   if (const SCEVCastExpr *Cast = dyn_cast<SCEVCastExpr>(V)) {
3621     return getPointerBase(Cast->getOperand());
3622   } else if (const SCEVNAryExpr *NAry = dyn_cast<SCEVNAryExpr>(V)) {
3623     const SCEV *PtrOp = nullptr;
3624     for (const SCEV *NAryOp : NAry->operands()) {
3625       if (NAryOp->getType()->isPointerTy()) {
3626         // Cannot find the base of an expression with multiple pointer operands.
3627         if (PtrOp)
3628           return V;
3629         PtrOp = NAryOp;
3630       }
3631     }
3632     if (!PtrOp)
3633       return V;
3634     return getPointerBase(PtrOp);
3635   }
3636   return V;
3637 }
3638 
3639 /// PushDefUseChildren - Push users of the given Instruction
3640 /// onto the given Worklist.
3641 static void
3642 PushDefUseChildren(Instruction *I,
3643                    SmallVectorImpl<Instruction *> &Worklist) {
3644   // Push the def-use children onto the Worklist stack.
3645   for (User *U : I->users())
3646     Worklist.push_back(cast<Instruction>(U));
3647 }
3648 
3649 /// ForgetSymbolicValue - This looks up computed SCEV values for all
3650 /// instructions that depend on the given instruction and removes them from
3651 /// the ValueExprMapType map if they reference SymName. This is used during PHI
3652 /// resolution.
3653 void ScalarEvolution::forgetSymbolicName(Instruction *PN, const SCEV *SymName) {
3654   SmallVector<Instruction *, 16> Worklist;
3655   PushDefUseChildren(PN, Worklist);
3656 
3657   SmallPtrSet<Instruction *, 8> Visited;
3658   Visited.insert(PN);
3659   while (!Worklist.empty()) {
3660     Instruction *I = Worklist.pop_back_val();
3661     if (!Visited.insert(I).second)
3662       continue;
3663 
3664     auto It = ValueExprMap.find_as(static_cast<Value *>(I));
3665     if (It != ValueExprMap.end()) {
3666       const SCEV *Old = It->second;
3667 
3668       // Short-circuit the def-use traversal if the symbolic name
3669       // ceases to appear in expressions.
3670       if (Old != SymName && !hasOperand(Old, SymName))
3671         continue;
3672 
3673       // SCEVUnknown for a PHI either means that it has an unrecognized
3674       // structure, it's a PHI that's in the progress of being computed
3675       // by createNodeForPHI, or it's a single-value PHI. In the first case,
3676       // additional loop trip count information isn't going to change anything.
3677       // In the second case, createNodeForPHI will perform the necessary
3678       // updates on its own when it gets to that point. In the third, we do
3679       // want to forget the SCEVUnknown.
3680       if (!isa<PHINode>(I) ||
3681           !isa<SCEVUnknown>(Old) ||
3682           (I != PN && Old == SymName)) {
3683         forgetMemoizedResults(Old);
3684         ValueExprMap.erase(It);
3685       }
3686     }
3687 
3688     PushDefUseChildren(I, Worklist);
3689   }
3690 }
3691 
3692 namespace {
3693 class SCEVInitRewriter : public SCEVRewriteVisitor<SCEVInitRewriter> {
3694 public:
3695   static const SCEV *rewrite(const SCEV *S, const Loop *L,
3696                              ScalarEvolution &SE) {
3697     SCEVInitRewriter Rewriter(L, SE);
3698     const SCEV *Result = Rewriter.visit(S);
3699     return Rewriter.isValid() ? Result : SE.getCouldNotCompute();
3700   }
3701 
3702   SCEVInitRewriter(const Loop *L, ScalarEvolution &SE)
3703       : SCEVRewriteVisitor(SE), L(L), Valid(true) {}
3704 
3705   const SCEV *visitUnknown(const SCEVUnknown *Expr) {
3706     if (!(SE.getLoopDisposition(Expr, L) == ScalarEvolution::LoopInvariant))
3707       Valid = false;
3708     return Expr;
3709   }
3710 
3711   const SCEV *visitAddRecExpr(const SCEVAddRecExpr *Expr) {
3712     // Only allow AddRecExprs for this loop.
3713     if (Expr->getLoop() == L)
3714       return Expr->getStart();
3715     Valid = false;
3716     return Expr;
3717   }
3718 
3719   bool isValid() { return Valid; }
3720 
3721 private:
3722   const Loop *L;
3723   bool Valid;
3724 };
3725 
3726 class SCEVShiftRewriter : public SCEVRewriteVisitor<SCEVShiftRewriter> {
3727 public:
3728   static const SCEV *rewrite(const SCEV *S, const Loop *L,
3729                              ScalarEvolution &SE) {
3730     SCEVShiftRewriter Rewriter(L, SE);
3731     const SCEV *Result = Rewriter.visit(S);
3732     return Rewriter.isValid() ? Result : SE.getCouldNotCompute();
3733   }
3734 
3735   SCEVShiftRewriter(const Loop *L, ScalarEvolution &SE)
3736       : SCEVRewriteVisitor(SE), L(L), Valid(true) {}
3737 
3738   const SCEV *visitUnknown(const SCEVUnknown *Expr) {
3739     // Only allow AddRecExprs for this loop.
3740     if (!(SE.getLoopDisposition(Expr, L) == ScalarEvolution::LoopInvariant))
3741       Valid = false;
3742     return Expr;
3743   }
3744 
3745   const SCEV *visitAddRecExpr(const SCEVAddRecExpr *Expr) {
3746     if (Expr->getLoop() == L && Expr->isAffine())
3747       return SE.getMinusSCEV(Expr, Expr->getStepRecurrence(SE));
3748     Valid = false;
3749     return Expr;
3750   }
3751   bool isValid() { return Valid; }
3752 
3753 private:
3754   const Loop *L;
3755   bool Valid;
3756 };
3757 } // end anonymous namespace
3758 
3759 const SCEV *ScalarEvolution::createAddRecFromPHI(PHINode *PN) {
3760   const Loop *L = LI.getLoopFor(PN->getParent());
3761   if (!L || L->getHeader() != PN->getParent())
3762     return nullptr;
3763 
3764   // The loop may have multiple entrances or multiple exits; we can analyze
3765   // this phi as an addrec if it has a unique entry value and a unique
3766   // backedge value.
3767   Value *BEValueV = nullptr, *StartValueV = nullptr;
3768   for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
3769     Value *V = PN->getIncomingValue(i);
3770     if (L->contains(PN->getIncomingBlock(i))) {
3771       if (!BEValueV) {
3772         BEValueV = V;
3773       } else if (BEValueV != V) {
3774         BEValueV = nullptr;
3775         break;
3776       }
3777     } else if (!StartValueV) {
3778       StartValueV = V;
3779     } else if (StartValueV != V) {
3780       StartValueV = nullptr;
3781       break;
3782     }
3783   }
3784   if (BEValueV && StartValueV) {
3785     // While we are analyzing this PHI node, handle its value symbolically.
3786     const SCEV *SymbolicName = getUnknown(PN);
3787     assert(ValueExprMap.find_as(PN) == ValueExprMap.end() &&
3788            "PHI node already processed?");
3789     ValueExprMap.insert({SCEVCallbackVH(PN, this), SymbolicName});
3790 
3791     // Using this symbolic name for the PHI, analyze the value coming around
3792     // the back-edge.
3793     const SCEV *BEValue = getSCEV(BEValueV);
3794 
3795     // NOTE: If BEValue is loop invariant, we know that the PHI node just
3796     // has a special value for the first iteration of the loop.
3797 
3798     // If the value coming around the backedge is an add with the symbolic
3799     // value we just inserted, then we found a simple induction variable!
3800     if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(BEValue)) {
3801       // If there is a single occurrence of the symbolic value, replace it
3802       // with a recurrence.
3803       unsigned FoundIndex = Add->getNumOperands();
3804       for (unsigned i = 0, e = Add->getNumOperands(); i != e; ++i)
3805         if (Add->getOperand(i) == SymbolicName)
3806           if (FoundIndex == e) {
3807             FoundIndex = i;
3808             break;
3809           }
3810 
3811       if (FoundIndex != Add->getNumOperands()) {
3812         // Create an add with everything but the specified operand.
3813         SmallVector<const SCEV *, 8> Ops;
3814         for (unsigned i = 0, e = Add->getNumOperands(); i != e; ++i)
3815           if (i != FoundIndex)
3816             Ops.push_back(Add->getOperand(i));
3817         const SCEV *Accum = getAddExpr(Ops);
3818 
3819         // This is not a valid addrec if the step amount is varying each
3820         // loop iteration, but is not itself an addrec in this loop.
3821         if (isLoopInvariant(Accum, L) ||
3822             (isa<SCEVAddRecExpr>(Accum) &&
3823              cast<SCEVAddRecExpr>(Accum)->getLoop() == L)) {
3824           SCEV::NoWrapFlags Flags = SCEV::FlagAnyWrap;
3825 
3826           // If the increment doesn't overflow, then neither the addrec nor
3827           // the post-increment will overflow.
3828           if (const AddOperator *OBO = dyn_cast<AddOperator>(BEValueV)) {
3829             if (OBO->getOperand(0) == PN) {
3830               if (OBO->hasNoUnsignedWrap())
3831                 Flags = setFlags(Flags, SCEV::FlagNUW);
3832               if (OBO->hasNoSignedWrap())
3833                 Flags = setFlags(Flags, SCEV::FlagNSW);
3834             }
3835           } else if (GEPOperator *GEP = dyn_cast<GEPOperator>(BEValueV)) {
3836             // If the increment is an inbounds GEP, then we know the address
3837             // space cannot be wrapped around. We cannot make any guarantee
3838             // about signed or unsigned overflow because pointers are
3839             // unsigned but we may have a negative index from the base
3840             // pointer. We can guarantee that no unsigned wrap occurs if the
3841             // indices form a positive value.
3842             if (GEP->isInBounds() && GEP->getOperand(0) == PN) {
3843               Flags = setFlags(Flags, SCEV::FlagNW);
3844 
3845               const SCEV *Ptr = getSCEV(GEP->getPointerOperand());
3846               if (isKnownPositive(getMinusSCEV(getSCEV(GEP), Ptr)))
3847                 Flags = setFlags(Flags, SCEV::FlagNUW);
3848             }
3849 
3850             // We cannot transfer nuw and nsw flags from subtraction
3851             // operations -- sub nuw X, Y is not the same as add nuw X, -Y
3852             // for instance.
3853           }
3854 
3855           const SCEV *StartVal = getSCEV(StartValueV);
3856           const SCEV *PHISCEV = getAddRecExpr(StartVal, Accum, L, Flags);
3857 
3858           // Since the no-wrap flags are on the increment, they apply to the
3859           // post-incremented value as well.
3860           if (isLoopInvariant(Accum, L))
3861             (void)getAddRecExpr(getAddExpr(StartVal, Accum), Accum, L, Flags);
3862 
3863           // Okay, for the entire analysis of this edge we assumed the PHI
3864           // to be symbolic.  We now need to go back and purge all of the
3865           // entries for the scalars that use the symbolic expression.
3866           forgetSymbolicName(PN, SymbolicName);
3867           ValueExprMap[SCEVCallbackVH(PN, this)] = PHISCEV;
3868           return PHISCEV;
3869         }
3870       }
3871     } else {
3872       // Otherwise, this could be a loop like this:
3873       //     i = 0;  for (j = 1; ..; ++j) { ....  i = j; }
3874       // In this case, j = {1,+,1}  and BEValue is j.
3875       // Because the other in-value of i (0) fits the evolution of BEValue
3876       // i really is an addrec evolution.
3877       //
3878       // We can generalize this saying that i is the shifted value of BEValue
3879       // by one iteration:
3880       //   PHI(f(0), f({1,+,1})) --> f({0,+,1})
3881       const SCEV *Shifted = SCEVShiftRewriter::rewrite(BEValue, L, *this);
3882       const SCEV *Start = SCEVInitRewriter::rewrite(Shifted, L, *this);
3883       if (Shifted != getCouldNotCompute() &&
3884           Start != getCouldNotCompute()) {
3885         const SCEV *StartVal = getSCEV(StartValueV);
3886         if (Start == StartVal) {
3887           // Okay, for the entire analysis of this edge we assumed the PHI
3888           // to be symbolic.  We now need to go back and purge all of the
3889           // entries for the scalars that use the symbolic expression.
3890           forgetSymbolicName(PN, SymbolicName);
3891           ValueExprMap[SCEVCallbackVH(PN, this)] = Shifted;
3892           return Shifted;
3893         }
3894       }
3895     }
3896 
3897     // Remove the temporary PHI node SCEV that has been inserted while intending
3898     // to create an AddRecExpr for this PHI node. We can not keep this temporary
3899     // as it will prevent later (possibly simpler) SCEV expressions to be added
3900     // to the ValueExprMap.
3901     ValueExprMap.erase(PN);
3902   }
3903 
3904   return nullptr;
3905 }
3906 
3907 // Checks if the SCEV S is available at BB.  S is considered available at BB
3908 // if S can be materialized at BB without introducing a fault.
3909 static bool IsAvailableOnEntry(const Loop *L, DominatorTree &DT, const SCEV *S,
3910                                BasicBlock *BB) {
3911   struct CheckAvailable {
3912     bool TraversalDone = false;
3913     bool Available = true;
3914 
3915     const Loop *L = nullptr;  // The loop BB is in (can be nullptr)
3916     BasicBlock *BB = nullptr;
3917     DominatorTree &DT;
3918 
3919     CheckAvailable(const Loop *L, BasicBlock *BB, DominatorTree &DT)
3920       : L(L), BB(BB), DT(DT) {}
3921 
3922     bool setUnavailable() {
3923       TraversalDone = true;
3924       Available = false;
3925       return false;
3926     }
3927 
3928     bool follow(const SCEV *S) {
3929       switch (S->getSCEVType()) {
3930       case scConstant: case scTruncate: case scZeroExtend: case scSignExtend:
3931       case scAddExpr: case scMulExpr: case scUMaxExpr: case scSMaxExpr:
3932         // These expressions are available if their operand(s) is/are.
3933         return true;
3934 
3935       case scAddRecExpr: {
3936         // We allow add recurrences that are on the loop BB is in, or some
3937         // outer loop.  This guarantees availability because the value of the
3938         // add recurrence at BB is simply the "current" value of the induction
3939         // variable.  We can relax this in the future; for instance an add
3940         // recurrence on a sibling dominating loop is also available at BB.
3941         const auto *ARLoop = cast<SCEVAddRecExpr>(S)->getLoop();
3942         if (L && (ARLoop == L || ARLoop->contains(L)))
3943           return true;
3944 
3945         return setUnavailable();
3946       }
3947 
3948       case scUnknown: {
3949         // For SCEVUnknown, we check for simple dominance.
3950         const auto *SU = cast<SCEVUnknown>(S);
3951         Value *V = SU->getValue();
3952 
3953         if (isa<Argument>(V))
3954           return false;
3955 
3956         if (isa<Instruction>(V) && DT.dominates(cast<Instruction>(V), BB))
3957           return false;
3958 
3959         return setUnavailable();
3960       }
3961 
3962       case scUDivExpr:
3963       case scCouldNotCompute:
3964         // We do not try to smart about these at all.
3965         return setUnavailable();
3966       }
3967       llvm_unreachable("switch should be fully covered!");
3968     }
3969 
3970     bool isDone() { return TraversalDone; }
3971   };
3972 
3973   CheckAvailable CA(L, BB, DT);
3974   SCEVTraversal<CheckAvailable> ST(CA);
3975 
3976   ST.visitAll(S);
3977   return CA.Available;
3978 }
3979 
3980 // Try to match a control flow sequence that branches out at BI and merges back
3981 // at Merge into a "C ? LHS : RHS" select pattern.  Return true on a successful
3982 // match.
3983 static bool BrPHIToSelect(DominatorTree &DT, BranchInst *BI, PHINode *Merge,
3984                           Value *&C, Value *&LHS, Value *&RHS) {
3985   C = BI->getCondition();
3986 
3987   BasicBlockEdge LeftEdge(BI->getParent(), BI->getSuccessor(0));
3988   BasicBlockEdge RightEdge(BI->getParent(), BI->getSuccessor(1));
3989 
3990   if (!LeftEdge.isSingleEdge())
3991     return false;
3992 
3993   assert(RightEdge.isSingleEdge() && "Follows from LeftEdge.isSingleEdge()");
3994 
3995   Use &LeftUse = Merge->getOperandUse(0);
3996   Use &RightUse = Merge->getOperandUse(1);
3997 
3998   if (DT.dominates(LeftEdge, LeftUse) && DT.dominates(RightEdge, RightUse)) {
3999     LHS = LeftUse;
4000     RHS = RightUse;
4001     return true;
4002   }
4003 
4004   if (DT.dominates(LeftEdge, RightUse) && DT.dominates(RightEdge, LeftUse)) {
4005     LHS = RightUse;
4006     RHS = LeftUse;
4007     return true;
4008   }
4009 
4010   return false;
4011 }
4012 
4013 const SCEV *ScalarEvolution::createNodeFromSelectLikePHI(PHINode *PN) {
4014   if (PN->getNumIncomingValues() == 2) {
4015     const Loop *L = LI.getLoopFor(PN->getParent());
4016 
4017     // We don't want to break LCSSA, even in a SCEV expression tree.
4018     for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
4019       if (LI.getLoopFor(PN->getIncomingBlock(i)) != L)
4020         return nullptr;
4021 
4022     // Try to match
4023     //
4024     //  br %cond, label %left, label %right
4025     // left:
4026     //  br label %merge
4027     // right:
4028     //  br label %merge
4029     // merge:
4030     //  V = phi [ %x, %left ], [ %y, %right ]
4031     //
4032     // as "select %cond, %x, %y"
4033 
4034     BasicBlock *IDom = DT[PN->getParent()]->getIDom()->getBlock();
4035     assert(IDom && "At least the entry block should dominate PN");
4036 
4037     auto *BI = dyn_cast<BranchInst>(IDom->getTerminator());
4038     Value *Cond = nullptr, *LHS = nullptr, *RHS = nullptr;
4039 
4040     if (BI && BI->isConditional() &&
4041         BrPHIToSelect(DT, BI, PN, Cond, LHS, RHS) &&
4042         IsAvailableOnEntry(L, DT, getSCEV(LHS), PN->getParent()) &&
4043         IsAvailableOnEntry(L, DT, getSCEV(RHS), PN->getParent()))
4044       return createNodeForSelectOrPHI(PN, Cond, LHS, RHS);
4045   }
4046 
4047   return nullptr;
4048 }
4049 
4050 const SCEV *ScalarEvolution::createNodeForPHI(PHINode *PN) {
4051   if (const SCEV *S = createAddRecFromPHI(PN))
4052     return S;
4053 
4054   if (const SCEV *S = createNodeFromSelectLikePHI(PN))
4055     return S;
4056 
4057   // If the PHI has a single incoming value, follow that value, unless the
4058   // PHI's incoming blocks are in a different loop, in which case doing so
4059   // risks breaking LCSSA form. Instcombine would normally zap these, but
4060   // it doesn't have DominatorTree information, so it may miss cases.
4061   if (Value *V = SimplifyInstruction(PN, getDataLayout(), &TLI, &DT, &AC))
4062     if (LI.replacementPreservesLCSSAForm(PN, V))
4063       return getSCEV(V);
4064 
4065   // If it's not a loop phi, we can't handle it yet.
4066   return getUnknown(PN);
4067 }
4068 
4069 const SCEV *ScalarEvolution::createNodeForSelectOrPHI(Instruction *I,
4070                                                       Value *Cond,
4071                                                       Value *TrueVal,
4072                                                       Value *FalseVal) {
4073   // Handle "constant" branch or select. This can occur for instance when a
4074   // loop pass transforms an inner loop and moves on to process the outer loop.
4075   if (auto *CI = dyn_cast<ConstantInt>(Cond))
4076     return getSCEV(CI->isOne() ? TrueVal : FalseVal);
4077 
4078   // Try to match some simple smax or umax patterns.
4079   auto *ICI = dyn_cast<ICmpInst>(Cond);
4080   if (!ICI)
4081     return getUnknown(I);
4082 
4083   Value *LHS = ICI->getOperand(0);
4084   Value *RHS = ICI->getOperand(1);
4085 
4086   switch (ICI->getPredicate()) {
4087   case ICmpInst::ICMP_SLT:
4088   case ICmpInst::ICMP_SLE:
4089     std::swap(LHS, RHS);
4090   // fall through
4091   case ICmpInst::ICMP_SGT:
4092   case ICmpInst::ICMP_SGE:
4093     // a >s b ? a+x : b+x  ->  smax(a, b)+x
4094     // a >s b ? b+x : a+x  ->  smin(a, b)+x
4095     if (getTypeSizeInBits(LHS->getType()) <= getTypeSizeInBits(I->getType())) {
4096       const SCEV *LS = getNoopOrSignExtend(getSCEV(LHS), I->getType());
4097       const SCEV *RS = getNoopOrSignExtend(getSCEV(RHS), I->getType());
4098       const SCEV *LA = getSCEV(TrueVal);
4099       const SCEV *RA = getSCEV(FalseVal);
4100       const SCEV *LDiff = getMinusSCEV(LA, LS);
4101       const SCEV *RDiff = getMinusSCEV(RA, RS);
4102       if (LDiff == RDiff)
4103         return getAddExpr(getSMaxExpr(LS, RS), LDiff);
4104       LDiff = getMinusSCEV(LA, RS);
4105       RDiff = getMinusSCEV(RA, LS);
4106       if (LDiff == RDiff)
4107         return getAddExpr(getSMinExpr(LS, RS), LDiff);
4108     }
4109     break;
4110   case ICmpInst::ICMP_ULT:
4111   case ICmpInst::ICMP_ULE:
4112     std::swap(LHS, RHS);
4113   // fall through
4114   case ICmpInst::ICMP_UGT:
4115   case ICmpInst::ICMP_UGE:
4116     // a >u b ? a+x : b+x  ->  umax(a, b)+x
4117     // a >u b ? b+x : a+x  ->  umin(a, b)+x
4118     if (getTypeSizeInBits(LHS->getType()) <= getTypeSizeInBits(I->getType())) {
4119       const SCEV *LS = getNoopOrZeroExtend(getSCEV(LHS), I->getType());
4120       const SCEV *RS = getNoopOrZeroExtend(getSCEV(RHS), I->getType());
4121       const SCEV *LA = getSCEV(TrueVal);
4122       const SCEV *RA = getSCEV(FalseVal);
4123       const SCEV *LDiff = getMinusSCEV(LA, LS);
4124       const SCEV *RDiff = getMinusSCEV(RA, RS);
4125       if (LDiff == RDiff)
4126         return getAddExpr(getUMaxExpr(LS, RS), LDiff);
4127       LDiff = getMinusSCEV(LA, RS);
4128       RDiff = getMinusSCEV(RA, LS);
4129       if (LDiff == RDiff)
4130         return getAddExpr(getUMinExpr(LS, RS), LDiff);
4131     }
4132     break;
4133   case ICmpInst::ICMP_NE:
4134     // n != 0 ? n+x : 1+x  ->  umax(n, 1)+x
4135     if (getTypeSizeInBits(LHS->getType()) <= getTypeSizeInBits(I->getType()) &&
4136         isa<ConstantInt>(RHS) && cast<ConstantInt>(RHS)->isZero()) {
4137       const SCEV *One = getOne(I->getType());
4138       const SCEV *LS = getNoopOrZeroExtend(getSCEV(LHS), I->getType());
4139       const SCEV *LA = getSCEV(TrueVal);
4140       const SCEV *RA = getSCEV(FalseVal);
4141       const SCEV *LDiff = getMinusSCEV(LA, LS);
4142       const SCEV *RDiff = getMinusSCEV(RA, One);
4143       if (LDiff == RDiff)
4144         return getAddExpr(getUMaxExpr(One, LS), LDiff);
4145     }
4146     break;
4147   case ICmpInst::ICMP_EQ:
4148     // n == 0 ? 1+x : n+x  ->  umax(n, 1)+x
4149     if (getTypeSizeInBits(LHS->getType()) <= getTypeSizeInBits(I->getType()) &&
4150         isa<ConstantInt>(RHS) && cast<ConstantInt>(RHS)->isZero()) {
4151       const SCEV *One = getOne(I->getType());
4152       const SCEV *LS = getNoopOrZeroExtend(getSCEV(LHS), I->getType());
4153       const SCEV *LA = getSCEV(TrueVal);
4154       const SCEV *RA = getSCEV(FalseVal);
4155       const SCEV *LDiff = getMinusSCEV(LA, One);
4156       const SCEV *RDiff = getMinusSCEV(RA, LS);
4157       if (LDiff == RDiff)
4158         return getAddExpr(getUMaxExpr(One, LS), LDiff);
4159     }
4160     break;
4161   default:
4162     break;
4163   }
4164 
4165   return getUnknown(I);
4166 }
4167 
4168 /// createNodeForGEP - Expand GEP instructions into add and multiply
4169 /// operations. This allows them to be analyzed by regular SCEV code.
4170 ///
4171 const SCEV *ScalarEvolution::createNodeForGEP(GEPOperator *GEP) {
4172   // Don't attempt to analyze GEPs over unsized objects.
4173   if (!GEP->getSourceElementType()->isSized())
4174     return getUnknown(GEP);
4175 
4176   SmallVector<const SCEV *, 4> IndexExprs;
4177   for (auto Index = GEP->idx_begin(); Index != GEP->idx_end(); ++Index)
4178     IndexExprs.push_back(getSCEV(*Index));
4179   return getGEPExpr(GEP->getSourceElementType(),
4180                     getSCEV(GEP->getPointerOperand()),
4181                     IndexExprs, GEP->isInBounds());
4182 }
4183 
4184 /// GetMinTrailingZeros - Determine the minimum number of zero bits that S is
4185 /// guaranteed to end in (at every loop iteration).  It is, at the same time,
4186 /// the minimum number of times S is divisible by 2.  For example, given {4,+,8}
4187 /// it returns 2.  If S is guaranteed to be 0, it returns the bitwidth of S.
4188 uint32_t
4189 ScalarEvolution::GetMinTrailingZeros(const SCEV *S) {
4190   if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S))
4191     return C->getAPInt().countTrailingZeros();
4192 
4193   if (const SCEVTruncateExpr *T = dyn_cast<SCEVTruncateExpr>(S))
4194     return std::min(GetMinTrailingZeros(T->getOperand()),
4195                     (uint32_t)getTypeSizeInBits(T->getType()));
4196 
4197   if (const SCEVZeroExtendExpr *E = dyn_cast<SCEVZeroExtendExpr>(S)) {
4198     uint32_t OpRes = GetMinTrailingZeros(E->getOperand());
4199     return OpRes == getTypeSizeInBits(E->getOperand()->getType()) ?
4200              getTypeSizeInBits(E->getType()) : OpRes;
4201   }
4202 
4203   if (const SCEVSignExtendExpr *E = dyn_cast<SCEVSignExtendExpr>(S)) {
4204     uint32_t OpRes = GetMinTrailingZeros(E->getOperand());
4205     return OpRes == getTypeSizeInBits(E->getOperand()->getType()) ?
4206              getTypeSizeInBits(E->getType()) : OpRes;
4207   }
4208 
4209   if (const SCEVAddExpr *A = dyn_cast<SCEVAddExpr>(S)) {
4210     // The result is the min of all operands results.
4211     uint32_t MinOpRes = GetMinTrailingZeros(A->getOperand(0));
4212     for (unsigned i = 1, e = A->getNumOperands(); MinOpRes && i != e; ++i)
4213       MinOpRes = std::min(MinOpRes, GetMinTrailingZeros(A->getOperand(i)));
4214     return MinOpRes;
4215   }
4216 
4217   if (const SCEVMulExpr *M = dyn_cast<SCEVMulExpr>(S)) {
4218     // The result is the sum of all operands results.
4219     uint32_t SumOpRes = GetMinTrailingZeros(M->getOperand(0));
4220     uint32_t BitWidth = getTypeSizeInBits(M->getType());
4221     for (unsigned i = 1, e = M->getNumOperands();
4222          SumOpRes != BitWidth && i != e; ++i)
4223       SumOpRes = std::min(SumOpRes + GetMinTrailingZeros(M->getOperand(i)),
4224                           BitWidth);
4225     return SumOpRes;
4226   }
4227 
4228   if (const SCEVAddRecExpr *A = dyn_cast<SCEVAddRecExpr>(S)) {
4229     // The result is the min of all operands results.
4230     uint32_t MinOpRes = GetMinTrailingZeros(A->getOperand(0));
4231     for (unsigned i = 1, e = A->getNumOperands(); MinOpRes && i != e; ++i)
4232       MinOpRes = std::min(MinOpRes, GetMinTrailingZeros(A->getOperand(i)));
4233     return MinOpRes;
4234   }
4235 
4236   if (const SCEVSMaxExpr *M = dyn_cast<SCEVSMaxExpr>(S)) {
4237     // The result is the min of all operands results.
4238     uint32_t MinOpRes = GetMinTrailingZeros(M->getOperand(0));
4239     for (unsigned i = 1, e = M->getNumOperands(); MinOpRes && i != e; ++i)
4240       MinOpRes = std::min(MinOpRes, GetMinTrailingZeros(M->getOperand(i)));
4241     return MinOpRes;
4242   }
4243 
4244   if (const SCEVUMaxExpr *M = dyn_cast<SCEVUMaxExpr>(S)) {
4245     // The result is the min of all operands results.
4246     uint32_t MinOpRes = GetMinTrailingZeros(M->getOperand(0));
4247     for (unsigned i = 1, e = M->getNumOperands(); MinOpRes && i != e; ++i)
4248       MinOpRes = std::min(MinOpRes, GetMinTrailingZeros(M->getOperand(i)));
4249     return MinOpRes;
4250   }
4251 
4252   if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
4253     // For a SCEVUnknown, ask ValueTracking.
4254     unsigned BitWidth = getTypeSizeInBits(U->getType());
4255     APInt Zeros(BitWidth, 0), Ones(BitWidth, 0);
4256     computeKnownBits(U->getValue(), Zeros, Ones, getDataLayout(), 0, &AC,
4257                      nullptr, &DT);
4258     return Zeros.countTrailingOnes();
4259   }
4260 
4261   // SCEVUDivExpr
4262   return 0;
4263 }
4264 
4265 /// GetRangeFromMetadata - Helper method to assign a range to V from
4266 /// metadata present in the IR.
4267 static Optional<ConstantRange> GetRangeFromMetadata(Value *V) {
4268   if (Instruction *I = dyn_cast<Instruction>(V))
4269     if (MDNode *MD = I->getMetadata(LLVMContext::MD_range))
4270       return getConstantRangeFromMetadata(*MD);
4271 
4272   return None;
4273 }
4274 
4275 /// getRange - Determine the range for a particular SCEV.  If SignHint is
4276 /// HINT_RANGE_UNSIGNED (resp. HINT_RANGE_SIGNED) then getRange prefers ranges
4277 /// with a "cleaner" unsigned (resp. signed) representation.
4278 ///
4279 ConstantRange
4280 ScalarEvolution::getRange(const SCEV *S,
4281                           ScalarEvolution::RangeSignHint SignHint) {
4282   DenseMap<const SCEV *, ConstantRange> &Cache =
4283       SignHint == ScalarEvolution::HINT_RANGE_UNSIGNED ? UnsignedRanges
4284                                                        : SignedRanges;
4285 
4286   // See if we've computed this range already.
4287   DenseMap<const SCEV *, ConstantRange>::iterator I = Cache.find(S);
4288   if (I != Cache.end())
4289     return I->second;
4290 
4291   if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S))
4292     return setRange(C, SignHint, ConstantRange(C->getAPInt()));
4293 
4294   unsigned BitWidth = getTypeSizeInBits(S->getType());
4295   ConstantRange ConservativeResult(BitWidth, /*isFullSet=*/true);
4296 
4297   // If the value has known zeros, the maximum value will have those known zeros
4298   // as well.
4299   uint32_t TZ = GetMinTrailingZeros(S);
4300   if (TZ != 0) {
4301     if (SignHint == ScalarEvolution::HINT_RANGE_UNSIGNED)
4302       ConservativeResult =
4303           ConstantRange(APInt::getMinValue(BitWidth),
4304                         APInt::getMaxValue(BitWidth).lshr(TZ).shl(TZ) + 1);
4305     else
4306       ConservativeResult = ConstantRange(
4307           APInt::getSignedMinValue(BitWidth),
4308           APInt::getSignedMaxValue(BitWidth).ashr(TZ).shl(TZ) + 1);
4309   }
4310 
4311   if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
4312     ConstantRange X = getRange(Add->getOperand(0), SignHint);
4313     for (unsigned i = 1, e = Add->getNumOperands(); i != e; ++i)
4314       X = X.add(getRange(Add->getOperand(i), SignHint));
4315     return setRange(Add, SignHint, ConservativeResult.intersectWith(X));
4316   }
4317 
4318   if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
4319     ConstantRange X = getRange(Mul->getOperand(0), SignHint);
4320     for (unsigned i = 1, e = Mul->getNumOperands(); i != e; ++i)
4321       X = X.multiply(getRange(Mul->getOperand(i), SignHint));
4322     return setRange(Mul, SignHint, ConservativeResult.intersectWith(X));
4323   }
4324 
4325   if (const SCEVSMaxExpr *SMax = dyn_cast<SCEVSMaxExpr>(S)) {
4326     ConstantRange X = getRange(SMax->getOperand(0), SignHint);
4327     for (unsigned i = 1, e = SMax->getNumOperands(); i != e; ++i)
4328       X = X.smax(getRange(SMax->getOperand(i), SignHint));
4329     return setRange(SMax, SignHint, ConservativeResult.intersectWith(X));
4330   }
4331 
4332   if (const SCEVUMaxExpr *UMax = dyn_cast<SCEVUMaxExpr>(S)) {
4333     ConstantRange X = getRange(UMax->getOperand(0), SignHint);
4334     for (unsigned i = 1, e = UMax->getNumOperands(); i != e; ++i)
4335       X = X.umax(getRange(UMax->getOperand(i), SignHint));
4336     return setRange(UMax, SignHint, ConservativeResult.intersectWith(X));
4337   }
4338 
4339   if (const SCEVUDivExpr *UDiv = dyn_cast<SCEVUDivExpr>(S)) {
4340     ConstantRange X = getRange(UDiv->getLHS(), SignHint);
4341     ConstantRange Y = getRange(UDiv->getRHS(), SignHint);
4342     return setRange(UDiv, SignHint,
4343                     ConservativeResult.intersectWith(X.udiv(Y)));
4344   }
4345 
4346   if (const SCEVZeroExtendExpr *ZExt = dyn_cast<SCEVZeroExtendExpr>(S)) {
4347     ConstantRange X = getRange(ZExt->getOperand(), SignHint);
4348     return setRange(ZExt, SignHint,
4349                     ConservativeResult.intersectWith(X.zeroExtend(BitWidth)));
4350   }
4351 
4352   if (const SCEVSignExtendExpr *SExt = dyn_cast<SCEVSignExtendExpr>(S)) {
4353     ConstantRange X = getRange(SExt->getOperand(), SignHint);
4354     return setRange(SExt, SignHint,
4355                     ConservativeResult.intersectWith(X.signExtend(BitWidth)));
4356   }
4357 
4358   if (const SCEVTruncateExpr *Trunc = dyn_cast<SCEVTruncateExpr>(S)) {
4359     ConstantRange X = getRange(Trunc->getOperand(), SignHint);
4360     return setRange(Trunc, SignHint,
4361                     ConservativeResult.intersectWith(X.truncate(BitWidth)));
4362   }
4363 
4364   if (const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(S)) {
4365     // If there's no unsigned wrap, the value will never be less than its
4366     // initial value.
4367     if (AddRec->hasNoUnsignedWrap())
4368       if (const SCEVConstant *C = dyn_cast<SCEVConstant>(AddRec->getStart()))
4369         if (!C->getValue()->isZero())
4370           ConservativeResult = ConservativeResult.intersectWith(
4371               ConstantRange(C->getAPInt(), APInt(BitWidth, 0)));
4372 
4373     // If there's no signed wrap, and all the operands have the same sign or
4374     // zero, the value won't ever change sign.
4375     if (AddRec->hasNoSignedWrap()) {
4376       bool AllNonNeg = true;
4377       bool AllNonPos = true;
4378       for (unsigned i = 0, e = AddRec->getNumOperands(); i != e; ++i) {
4379         if (!isKnownNonNegative(AddRec->getOperand(i))) AllNonNeg = false;
4380         if (!isKnownNonPositive(AddRec->getOperand(i))) AllNonPos = false;
4381       }
4382       if (AllNonNeg)
4383         ConservativeResult = ConservativeResult.intersectWith(
4384           ConstantRange(APInt(BitWidth, 0),
4385                         APInt::getSignedMinValue(BitWidth)));
4386       else if (AllNonPos)
4387         ConservativeResult = ConservativeResult.intersectWith(
4388           ConstantRange(APInt::getSignedMinValue(BitWidth),
4389                         APInt(BitWidth, 1)));
4390     }
4391 
4392     // TODO: non-affine addrec
4393     if (AddRec->isAffine()) {
4394       const SCEV *MaxBECount = getMaxBackedgeTakenCount(AddRec->getLoop());
4395       if (!isa<SCEVCouldNotCompute>(MaxBECount) &&
4396           getTypeSizeInBits(MaxBECount->getType()) <= BitWidth) {
4397         auto RangeFromAffine = getRangeForAffineAR(
4398             AddRec->getStart(), AddRec->getStepRecurrence(*this), MaxBECount,
4399             BitWidth);
4400         if (!RangeFromAffine.isFullSet())
4401           ConservativeResult =
4402               ConservativeResult.intersectWith(RangeFromAffine);
4403 
4404         auto RangeFromFactoring = getRangeViaFactoring(
4405             AddRec->getStart(), AddRec->getStepRecurrence(*this), MaxBECount,
4406             BitWidth);
4407         if (!RangeFromFactoring.isFullSet())
4408           ConservativeResult =
4409               ConservativeResult.intersectWith(RangeFromFactoring);
4410       }
4411     }
4412 
4413     return setRange(AddRec, SignHint, ConservativeResult);
4414   }
4415 
4416   if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
4417     // Check if the IR explicitly contains !range metadata.
4418     Optional<ConstantRange> MDRange = GetRangeFromMetadata(U->getValue());
4419     if (MDRange.hasValue())
4420       ConservativeResult = ConservativeResult.intersectWith(MDRange.getValue());
4421 
4422     // Split here to avoid paying the compile-time cost of calling both
4423     // computeKnownBits and ComputeNumSignBits.  This restriction can be lifted
4424     // if needed.
4425     const DataLayout &DL = getDataLayout();
4426     if (SignHint == ScalarEvolution::HINT_RANGE_UNSIGNED) {
4427       // For a SCEVUnknown, ask ValueTracking.
4428       APInt Zeros(BitWidth, 0), Ones(BitWidth, 0);
4429       computeKnownBits(U->getValue(), Zeros, Ones, DL, 0, &AC, nullptr, &DT);
4430       if (Ones != ~Zeros + 1)
4431         ConservativeResult =
4432             ConservativeResult.intersectWith(ConstantRange(Ones, ~Zeros + 1));
4433     } else {
4434       assert(SignHint == ScalarEvolution::HINT_RANGE_SIGNED &&
4435              "generalize as needed!");
4436       unsigned NS = ComputeNumSignBits(U->getValue(), DL, 0, &AC, nullptr, &DT);
4437       if (NS > 1)
4438         ConservativeResult = ConservativeResult.intersectWith(
4439             ConstantRange(APInt::getSignedMinValue(BitWidth).ashr(NS - 1),
4440                           APInt::getSignedMaxValue(BitWidth).ashr(NS - 1) + 1));
4441     }
4442 
4443     return setRange(U, SignHint, ConservativeResult);
4444   }
4445 
4446   return setRange(S, SignHint, ConservativeResult);
4447 }
4448 
4449 ConstantRange ScalarEvolution::getRangeForAffineAR(const SCEV *Start,
4450                                                    const SCEV *Step,
4451                                                    const SCEV *MaxBECount,
4452                                                    unsigned BitWidth) {
4453   assert(!isa<SCEVCouldNotCompute>(MaxBECount) &&
4454          getTypeSizeInBits(MaxBECount->getType()) <= BitWidth &&
4455          "Precondition!");
4456 
4457   ConstantRange Result(BitWidth, /* isFullSet = */ true);
4458 
4459   // Check for overflow.  This must be done with ConstantRange arithmetic
4460   // because we could be called from within the ScalarEvolution overflow
4461   // checking code.
4462 
4463   MaxBECount = getNoopOrZeroExtend(MaxBECount, Start->getType());
4464   ConstantRange MaxBECountRange = getUnsignedRange(MaxBECount);
4465   ConstantRange ZExtMaxBECountRange =
4466       MaxBECountRange.zextOrTrunc(BitWidth * 2 + 1);
4467 
4468   ConstantRange StepSRange = getSignedRange(Step);
4469   ConstantRange SExtStepSRange = StepSRange.sextOrTrunc(BitWidth * 2 + 1);
4470 
4471   ConstantRange StartURange = getUnsignedRange(Start);
4472   ConstantRange EndURange =
4473       StartURange.add(MaxBECountRange.multiply(StepSRange));
4474 
4475   // Check for unsigned overflow.
4476   ConstantRange ZExtStartURange = StartURange.zextOrTrunc(BitWidth * 2 + 1);
4477   ConstantRange ZExtEndURange = EndURange.zextOrTrunc(BitWidth * 2 + 1);
4478   if (ZExtStartURange.add(ZExtMaxBECountRange.multiply(SExtStepSRange)) ==
4479       ZExtEndURange) {
4480     APInt Min = APIntOps::umin(StartURange.getUnsignedMin(),
4481                                EndURange.getUnsignedMin());
4482     APInt Max = APIntOps::umax(StartURange.getUnsignedMax(),
4483                                EndURange.getUnsignedMax());
4484     bool IsFullRange = Min.isMinValue() && Max.isMaxValue();
4485     if (!IsFullRange)
4486       Result =
4487           Result.intersectWith(ConstantRange(Min, Max + 1));
4488   }
4489 
4490   ConstantRange StartSRange = getSignedRange(Start);
4491   ConstantRange EndSRange =
4492       StartSRange.add(MaxBECountRange.multiply(StepSRange));
4493 
4494   // Check for signed overflow. This must be done with ConstantRange
4495   // arithmetic because we could be called from within the ScalarEvolution
4496   // overflow checking code.
4497   ConstantRange SExtStartSRange = StartSRange.sextOrTrunc(BitWidth * 2 + 1);
4498   ConstantRange SExtEndSRange = EndSRange.sextOrTrunc(BitWidth * 2 + 1);
4499   if (SExtStartSRange.add(ZExtMaxBECountRange.multiply(SExtStepSRange)) ==
4500       SExtEndSRange) {
4501     APInt Min =
4502         APIntOps::smin(StartSRange.getSignedMin(), EndSRange.getSignedMin());
4503     APInt Max =
4504         APIntOps::smax(StartSRange.getSignedMax(), EndSRange.getSignedMax());
4505     bool IsFullRange = Min.isMinSignedValue() && Max.isMaxSignedValue();
4506     if (!IsFullRange)
4507       Result =
4508           Result.intersectWith(ConstantRange(Min, Max + 1));
4509   }
4510 
4511   return Result;
4512 }
4513 
4514 ConstantRange ScalarEvolution::getRangeViaFactoring(const SCEV *Start,
4515                                                     const SCEV *Step,
4516                                                     const SCEV *MaxBECount,
4517                                                     unsigned BitWidth) {
4518   APInt Offset(BitWidth, 0);
4519 
4520   if (auto *SA = dyn_cast<SCEVAddExpr>(Start)) {
4521     // Peel off a constant offset, if possible.  In the future we could consider
4522     // being smarter here and handle {Start+Step,+,Step} too.
4523     if (SA->getNumOperands() != 2 || !isa<SCEVConstant>(SA->getOperand(0)))
4524       return ConstantRange(BitWidth, /* isFullSet = */ true);
4525     Offset = cast<SCEVConstant>(SA->getOperand(0))->getAPInt();
4526     Start = SA->getOperand(1);
4527   }
4528 
4529   if (!isa<SCEVUnknown>(Start) || !isa<SCEVUnknown>(Step))
4530     // We don't have anything new to contribute in this case.
4531     return ConstantRange(BitWidth, /* isFullSet = */ true);
4532 
4533   //    RangeOf({C?A:B,+,C?P:Q}) == RangeOf(C?{A,+,P}:{B,+,Q})
4534   // == RangeOf({A,+,P}) union RangeOf({B,+,Q})
4535 
4536   struct SelectPattern {
4537     Value *Condition = nullptr;
4538     const APInt *TrueValue = nullptr;
4539     const APInt *FalseValue = nullptr;
4540 
4541     explicit SelectPattern(const SCEVUnknown *SU) {
4542       using namespace llvm::PatternMatch;
4543 
4544       if (!match(SU->getValue(),
4545                  m_Select(m_Value(Condition), m_APInt(TrueValue),
4546                           m_APInt(FalseValue)))) {
4547         Condition = nullptr;
4548         TrueValue = FalseValue = nullptr;
4549       }
4550     }
4551 
4552     bool isRecognized() {
4553       assert(((Condition && TrueValue && FalseValue) ||
4554               (!Condition && !TrueValue && !FalseValue)) &&
4555              "Invariant: either all three are non-null or all three are null");
4556       return TrueValue != nullptr;
4557     }
4558   };
4559 
4560   SelectPattern StartPattern(cast<SCEVUnknown>(Start));
4561   if (!StartPattern.isRecognized())
4562     return ConstantRange(BitWidth, /* isFullSet = */ true);
4563 
4564   SelectPattern StepPattern(cast<SCEVUnknown>(Step));
4565   if (!StepPattern.isRecognized())
4566     return ConstantRange(BitWidth, /* isFullSet = */ true);
4567 
4568   if (StartPattern.Condition != StepPattern.Condition) {
4569     // We don't handle this case today; but we could, by considering four
4570     // possibilities below instead of two. I'm not sure if there are cases where
4571     // that will help over what getRange already does, though.
4572     return ConstantRange(BitWidth, /* isFullSet = */ true);
4573   }
4574 
4575   // NB! Calling ScalarEvolution::getConstant is fine, but we should not try to
4576   // construct arbitrary general SCEV expressions here.  This function is called
4577   // from deep in the call stack, and calling getSCEV (on a sext instruction,
4578   // say) can end up caching a suboptimal value.
4579 
4580   auto TrueRange = getRangeForAffineAR(
4581       getConstant(*StartPattern.TrueValue + Offset),
4582       getConstant(*StepPattern.TrueValue), MaxBECount, BitWidth);
4583   auto FalseRange = getRangeForAffineAR(
4584       getConstant(*StartPattern.FalseValue + Offset),
4585       getConstant(*StepPattern.FalseValue), MaxBECount, BitWidth);
4586 
4587   return TrueRange.unionWith(FalseRange);
4588 }
4589 
4590 SCEV::NoWrapFlags ScalarEvolution::getNoWrapFlagsFromUB(const Value *V) {
4591   if (isa<ConstantExpr>(V)) return SCEV::FlagAnyWrap;
4592   const BinaryOperator *BinOp = cast<BinaryOperator>(V);
4593 
4594   // Return early if there are no flags to propagate to the SCEV.
4595   SCEV::NoWrapFlags Flags = SCEV::FlagAnyWrap;
4596   if (BinOp->hasNoUnsignedWrap())
4597     Flags = ScalarEvolution::setFlags(Flags, SCEV::FlagNUW);
4598   if (BinOp->hasNoSignedWrap())
4599     Flags = ScalarEvolution::setFlags(Flags, SCEV::FlagNSW);
4600   if (Flags == SCEV::FlagAnyWrap) {
4601     return SCEV::FlagAnyWrap;
4602   }
4603 
4604   // Here we check that BinOp is in the header of the innermost loop
4605   // containing BinOp, since we only deal with instructions in the loop
4606   // header. The actual loop we need to check later will come from an add
4607   // recurrence, but getting that requires computing the SCEV of the operands,
4608   // which can be expensive. This check we can do cheaply to rule out some
4609   // cases early.
4610   Loop *innermostContainingLoop = LI.getLoopFor(BinOp->getParent());
4611   if (innermostContainingLoop == nullptr ||
4612       innermostContainingLoop->getHeader() != BinOp->getParent())
4613     return SCEV::FlagAnyWrap;
4614 
4615   // Only proceed if we can prove that BinOp does not yield poison.
4616   if (!isKnownNotFullPoison(BinOp)) return SCEV::FlagAnyWrap;
4617 
4618   // At this point we know that if V is executed, then it does not wrap
4619   // according to at least one of NSW or NUW. If V is not executed, then we do
4620   // not know if the calculation that V represents would wrap. Multiple
4621   // instructions can map to the same SCEV. If we apply NSW or NUW from V to
4622   // the SCEV, we must guarantee no wrapping for that SCEV also when it is
4623   // derived from other instructions that map to the same SCEV. We cannot make
4624   // that guarantee for cases where V is not executed. So we need to find the
4625   // loop that V is considered in relation to and prove that V is executed for
4626   // every iteration of that loop. That implies that the value that V
4627   // calculates does not wrap anywhere in the loop, so then we can apply the
4628   // flags to the SCEV.
4629   //
4630   // We check isLoopInvariant to disambiguate in case we are adding two
4631   // recurrences from different loops, so that we know which loop to prove
4632   // that V is executed in.
4633   for (int OpIndex = 0; OpIndex < 2; ++OpIndex) {
4634     const SCEV *Op = getSCEV(BinOp->getOperand(OpIndex));
4635     if (auto *AddRec = dyn_cast<SCEVAddRecExpr>(Op)) {
4636       const int OtherOpIndex = 1 - OpIndex;
4637       const SCEV *OtherOp = getSCEV(BinOp->getOperand(OtherOpIndex));
4638       if (isLoopInvariant(OtherOp, AddRec->getLoop()) &&
4639           isGuaranteedToExecuteForEveryIteration(BinOp, AddRec->getLoop()))
4640         return Flags;
4641     }
4642   }
4643   return SCEV::FlagAnyWrap;
4644 }
4645 
4646 /// createSCEV - We know that there is no SCEV for the specified value.  Analyze
4647 /// the expression.
4648 ///
4649 const SCEV *ScalarEvolution::createSCEV(Value *V) {
4650   if (!isSCEVable(V->getType()))
4651     return getUnknown(V);
4652 
4653   unsigned Opcode = Instruction::UserOp1;
4654   if (Instruction *I = dyn_cast<Instruction>(V)) {
4655     Opcode = I->getOpcode();
4656 
4657     // Don't attempt to analyze instructions in blocks that aren't
4658     // reachable. Such instructions don't matter, and they aren't required
4659     // to obey basic rules for definitions dominating uses which this
4660     // analysis depends on.
4661     if (!DT.isReachableFromEntry(I->getParent()))
4662       return getUnknown(V);
4663   } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V))
4664     Opcode = CE->getOpcode();
4665   else if (ConstantInt *CI = dyn_cast<ConstantInt>(V))
4666     return getConstant(CI);
4667   else if (isa<ConstantPointerNull>(V))
4668     return getZero(V->getType());
4669   else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V))
4670     return GA->mayBeOverridden() ? getUnknown(V) : getSCEV(GA->getAliasee());
4671   else
4672     return getUnknown(V);
4673 
4674   Operator *U = cast<Operator>(V);
4675   switch (Opcode) {
4676   case Instruction::Add: {
4677     // The simple thing to do would be to just call getSCEV on both operands
4678     // and call getAddExpr with the result. However if we're looking at a
4679     // bunch of things all added together, this can be quite inefficient,
4680     // because it leads to N-1 getAddExpr calls for N ultimate operands.
4681     // Instead, gather up all the operands and make a single getAddExpr call.
4682     // LLVM IR canonical form means we need only traverse the left operands.
4683     SmallVector<const SCEV *, 4> AddOps;
4684     for (Value *Op = U;; Op = U->getOperand(0)) {
4685       U = dyn_cast<Operator>(Op);
4686       unsigned Opcode = U ? U->getOpcode() : 0;
4687       if (!U || (Opcode != Instruction::Add && Opcode != Instruction::Sub)) {
4688         assert(Op != V && "V should be an add");
4689         AddOps.push_back(getSCEV(Op));
4690         break;
4691       }
4692 
4693       if (auto *OpSCEV = getExistingSCEV(U)) {
4694         AddOps.push_back(OpSCEV);
4695         break;
4696       }
4697 
4698       // If a NUW or NSW flag can be applied to the SCEV for this
4699       // addition, then compute the SCEV for this addition by itself
4700       // with a separate call to getAddExpr. We need to do that
4701       // instead of pushing the operands of the addition onto AddOps,
4702       // since the flags are only known to apply to this particular
4703       // addition - they may not apply to other additions that can be
4704       // formed with operands from AddOps.
4705       const SCEV *RHS = getSCEV(U->getOperand(1));
4706       SCEV::NoWrapFlags Flags = getNoWrapFlagsFromUB(U);
4707       if (Flags != SCEV::FlagAnyWrap) {
4708         const SCEV *LHS = getSCEV(U->getOperand(0));
4709         if (Opcode == Instruction::Sub)
4710           AddOps.push_back(getMinusSCEV(LHS, RHS, Flags));
4711         else
4712           AddOps.push_back(getAddExpr(LHS, RHS, Flags));
4713         break;
4714       }
4715 
4716       if (Opcode == Instruction::Sub)
4717         AddOps.push_back(getNegativeSCEV(RHS));
4718       else
4719         AddOps.push_back(RHS);
4720     }
4721     return getAddExpr(AddOps);
4722   }
4723 
4724   case Instruction::Mul: {
4725     SmallVector<const SCEV *, 4> MulOps;
4726     for (Value *Op = U;; Op = U->getOperand(0)) {
4727       U = dyn_cast<Operator>(Op);
4728       if (!U || U->getOpcode() != Instruction::Mul) {
4729         assert(Op != V && "V should be a mul");
4730         MulOps.push_back(getSCEV(Op));
4731         break;
4732       }
4733 
4734       if (auto *OpSCEV = getExistingSCEV(U)) {
4735         MulOps.push_back(OpSCEV);
4736         break;
4737       }
4738 
4739       SCEV::NoWrapFlags Flags = getNoWrapFlagsFromUB(U);
4740       if (Flags != SCEV::FlagAnyWrap) {
4741         MulOps.push_back(getMulExpr(getSCEV(U->getOperand(0)),
4742                                     getSCEV(U->getOperand(1)), Flags));
4743         break;
4744       }
4745 
4746       MulOps.push_back(getSCEV(U->getOperand(1)));
4747     }
4748     return getMulExpr(MulOps);
4749   }
4750   case Instruction::UDiv:
4751     return getUDivExpr(getSCEV(U->getOperand(0)),
4752                        getSCEV(U->getOperand(1)));
4753   case Instruction::Sub:
4754     return getMinusSCEV(getSCEV(U->getOperand(0)), getSCEV(U->getOperand(1)),
4755                         getNoWrapFlagsFromUB(U));
4756   case Instruction::And:
4757     // For an expression like x&255 that merely masks off the high bits,
4758     // use zext(trunc(x)) as the SCEV expression.
4759     if (ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1))) {
4760       if (CI->isNullValue())
4761         return getSCEV(U->getOperand(1));
4762       if (CI->isAllOnesValue())
4763         return getSCEV(U->getOperand(0));
4764       const APInt &A = CI->getValue();
4765 
4766       // Instcombine's ShrinkDemandedConstant may strip bits out of
4767       // constants, obscuring what would otherwise be a low-bits mask.
4768       // Use computeKnownBits to compute what ShrinkDemandedConstant
4769       // knew about to reconstruct a low-bits mask value.
4770       unsigned LZ = A.countLeadingZeros();
4771       unsigned TZ = A.countTrailingZeros();
4772       unsigned BitWidth = A.getBitWidth();
4773       APInt KnownZero(BitWidth, 0), KnownOne(BitWidth, 0);
4774       computeKnownBits(U->getOperand(0), KnownZero, KnownOne, getDataLayout(),
4775                        0, &AC, nullptr, &DT);
4776 
4777       APInt EffectiveMask =
4778           APInt::getLowBitsSet(BitWidth, BitWidth - LZ - TZ).shl(TZ);
4779       if ((LZ != 0 || TZ != 0) && !((~A & ~KnownZero) & EffectiveMask)) {
4780         const SCEV *MulCount = getConstant(
4781             ConstantInt::get(getContext(), APInt::getOneBitSet(BitWidth, TZ)));
4782         return getMulExpr(
4783             getZeroExtendExpr(
4784                 getTruncateExpr(
4785                     getUDivExactExpr(getSCEV(U->getOperand(0)), MulCount),
4786                     IntegerType::get(getContext(), BitWidth - LZ - TZ)),
4787                 U->getType()),
4788             MulCount);
4789       }
4790     }
4791     break;
4792 
4793   case Instruction::Or:
4794     // If the RHS of the Or is a constant, we may have something like:
4795     // X*4+1 which got turned into X*4|1.  Handle this as an Add so loop
4796     // optimizations will transparently handle this case.
4797     //
4798     // In order for this transformation to be safe, the LHS must be of the
4799     // form X*(2^n) and the Or constant must be less than 2^n.
4800     if (ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1))) {
4801       const SCEV *LHS = getSCEV(U->getOperand(0));
4802       const APInt &CIVal = CI->getValue();
4803       if (GetMinTrailingZeros(LHS) >=
4804           (CIVal.getBitWidth() - CIVal.countLeadingZeros())) {
4805         // Build a plain add SCEV.
4806         const SCEV *S = getAddExpr(LHS, getSCEV(CI));
4807         // If the LHS of the add was an addrec and it has no-wrap flags,
4808         // transfer the no-wrap flags, since an or won't introduce a wrap.
4809         if (const SCEVAddRecExpr *NewAR = dyn_cast<SCEVAddRecExpr>(S)) {
4810           const SCEVAddRecExpr *OldAR = cast<SCEVAddRecExpr>(LHS);
4811           const_cast<SCEVAddRecExpr *>(NewAR)->setNoWrapFlags(
4812             OldAR->getNoWrapFlags());
4813         }
4814         return S;
4815       }
4816     }
4817     break;
4818   case Instruction::Xor:
4819     if (ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1))) {
4820       // If the RHS of the xor is a signbit, then this is just an add.
4821       // Instcombine turns add of signbit into xor as a strength reduction step.
4822       if (CI->getValue().isSignBit())
4823         return getAddExpr(getSCEV(U->getOperand(0)),
4824                           getSCEV(U->getOperand(1)));
4825 
4826       // If the RHS of xor is -1, then this is a not operation.
4827       if (CI->isAllOnesValue())
4828         return getNotSCEV(getSCEV(U->getOperand(0)));
4829 
4830       // Model xor(and(x, C), C) as and(~x, C), if C is a low-bits mask.
4831       // This is a variant of the check for xor with -1, and it handles
4832       // the case where instcombine has trimmed non-demanded bits out
4833       // of an xor with -1.
4834       if (BinaryOperator *BO = dyn_cast<BinaryOperator>(U->getOperand(0)))
4835         if (ConstantInt *LCI = dyn_cast<ConstantInt>(BO->getOperand(1)))
4836           if (BO->getOpcode() == Instruction::And &&
4837               LCI->getValue() == CI->getValue())
4838             if (const SCEVZeroExtendExpr *Z =
4839                   dyn_cast<SCEVZeroExtendExpr>(getSCEV(U->getOperand(0)))) {
4840               Type *UTy = U->getType();
4841               const SCEV *Z0 = Z->getOperand();
4842               Type *Z0Ty = Z0->getType();
4843               unsigned Z0TySize = getTypeSizeInBits(Z0Ty);
4844 
4845               // If C is a low-bits mask, the zero extend is serving to
4846               // mask off the high bits. Complement the operand and
4847               // re-apply the zext.
4848               if (APIntOps::isMask(Z0TySize, CI->getValue()))
4849                 return getZeroExtendExpr(getNotSCEV(Z0), UTy);
4850 
4851               // If C is a single bit, it may be in the sign-bit position
4852               // before the zero-extend. In this case, represent the xor
4853               // using an add, which is equivalent, and re-apply the zext.
4854               APInt Trunc = CI->getValue().trunc(Z0TySize);
4855               if (Trunc.zext(getTypeSizeInBits(UTy)) == CI->getValue() &&
4856                   Trunc.isSignBit())
4857                 return getZeroExtendExpr(getAddExpr(Z0, getConstant(Trunc)),
4858                                          UTy);
4859             }
4860     }
4861     break;
4862 
4863   case Instruction::Shl:
4864     // Turn shift left of a constant amount into a multiply.
4865     if (ConstantInt *SA = dyn_cast<ConstantInt>(U->getOperand(1))) {
4866       uint32_t BitWidth = cast<IntegerType>(U->getType())->getBitWidth();
4867 
4868       // If the shift count is not less than the bitwidth, the result of
4869       // the shift is undefined. Don't try to analyze it, because the
4870       // resolution chosen here may differ from the resolution chosen in
4871       // other parts of the compiler.
4872       if (SA->getValue().uge(BitWidth))
4873         break;
4874 
4875       // It is currently not resolved how to interpret NSW for left
4876       // shift by BitWidth - 1, so we avoid applying flags in that
4877       // case. Remove this check (or this comment) once the situation
4878       // is resolved. See
4879       // http://lists.llvm.org/pipermail/llvm-dev/2015-April/084195.html
4880       // and http://reviews.llvm.org/D8890 .
4881       auto Flags = SCEV::FlagAnyWrap;
4882       if (SA->getValue().ult(BitWidth - 1)) Flags = getNoWrapFlagsFromUB(U);
4883 
4884       Constant *X = ConstantInt::get(getContext(),
4885         APInt::getOneBitSet(BitWidth, SA->getZExtValue()));
4886       return getMulExpr(getSCEV(U->getOperand(0)), getSCEV(X), Flags);
4887     }
4888     break;
4889 
4890   case Instruction::LShr:
4891     // Turn logical shift right of a constant into a unsigned divide.
4892     if (ConstantInt *SA = dyn_cast<ConstantInt>(U->getOperand(1))) {
4893       uint32_t BitWidth = cast<IntegerType>(U->getType())->getBitWidth();
4894 
4895       // If the shift count is not less than the bitwidth, the result of
4896       // the shift is undefined. Don't try to analyze it, because the
4897       // resolution chosen here may differ from the resolution chosen in
4898       // other parts of the compiler.
4899       if (SA->getValue().uge(BitWidth))
4900         break;
4901 
4902       Constant *X = ConstantInt::get(getContext(),
4903         APInt::getOneBitSet(BitWidth, SA->getZExtValue()));
4904       return getUDivExpr(getSCEV(U->getOperand(0)), getSCEV(X));
4905     }
4906     break;
4907 
4908   case Instruction::AShr:
4909     // For a two-shift sext-inreg, use sext(trunc(x)) as the SCEV expression.
4910     if (ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1)))
4911       if (Operator *L = dyn_cast<Operator>(U->getOperand(0)))
4912         if (L->getOpcode() == Instruction::Shl &&
4913             L->getOperand(1) == U->getOperand(1)) {
4914           uint64_t BitWidth = getTypeSizeInBits(U->getType());
4915 
4916           // If the shift count is not less than the bitwidth, the result of
4917           // the shift is undefined. Don't try to analyze it, because the
4918           // resolution chosen here may differ from the resolution chosen in
4919           // other parts of the compiler.
4920           if (CI->getValue().uge(BitWidth))
4921             break;
4922 
4923           uint64_t Amt = BitWidth - CI->getZExtValue();
4924           if (Amt == BitWidth)
4925             return getSCEV(L->getOperand(0));       // shift by zero --> noop
4926           return
4927             getSignExtendExpr(getTruncateExpr(getSCEV(L->getOperand(0)),
4928                                               IntegerType::get(getContext(),
4929                                                                Amt)),
4930                               U->getType());
4931         }
4932     break;
4933 
4934   case Instruction::Trunc:
4935     return getTruncateExpr(getSCEV(U->getOperand(0)), U->getType());
4936 
4937   case Instruction::ZExt:
4938     return getZeroExtendExpr(getSCEV(U->getOperand(0)), U->getType());
4939 
4940   case Instruction::SExt:
4941     return getSignExtendExpr(getSCEV(U->getOperand(0)), U->getType());
4942 
4943   case Instruction::BitCast:
4944     // BitCasts are no-op casts so we just eliminate the cast.
4945     if (isSCEVable(U->getType()) && isSCEVable(U->getOperand(0)->getType()))
4946       return getSCEV(U->getOperand(0));
4947     break;
4948 
4949   // It's tempting to handle inttoptr and ptrtoint as no-ops, however this can
4950   // lead to pointer expressions which cannot safely be expanded to GEPs,
4951   // because ScalarEvolution doesn't respect the GEP aliasing rules when
4952   // simplifying integer expressions.
4953 
4954   case Instruction::GetElementPtr:
4955     return createNodeForGEP(cast<GEPOperator>(U));
4956 
4957   case Instruction::PHI:
4958     return createNodeForPHI(cast<PHINode>(U));
4959 
4960   case Instruction::Select:
4961     // U can also be a select constant expr, which let fall through.  Since
4962     // createNodeForSelect only works for a condition that is an `ICmpInst`, and
4963     // constant expressions cannot have instructions as operands, we'd have
4964     // returned getUnknown for a select constant expressions anyway.
4965     if (isa<Instruction>(U))
4966       return createNodeForSelectOrPHI(cast<Instruction>(U), U->getOperand(0),
4967                                       U->getOperand(1), U->getOperand(2));
4968 
4969   default: // We cannot analyze this expression.
4970     break;
4971   }
4972 
4973   return getUnknown(V);
4974 }
4975 
4976 
4977 
4978 //===----------------------------------------------------------------------===//
4979 //                   Iteration Count Computation Code
4980 //
4981 
4982 unsigned ScalarEvolution::getSmallConstantTripCount(Loop *L) {
4983   if (BasicBlock *ExitingBB = L->getExitingBlock())
4984     return getSmallConstantTripCount(L, ExitingBB);
4985 
4986   // No trip count information for multiple exits.
4987   return 0;
4988 }
4989 
4990 /// getSmallConstantTripCount - Returns the maximum trip count of this loop as a
4991 /// normal unsigned value. Returns 0 if the trip count is unknown or not
4992 /// constant. Will also return 0 if the maximum trip count is very large (>=
4993 /// 2^32).
4994 ///
4995 /// This "trip count" assumes that control exits via ExitingBlock. More
4996 /// precisely, it is the number of times that control may reach ExitingBlock
4997 /// before taking the branch. For loops with multiple exits, it may not be the
4998 /// number times that the loop header executes because the loop may exit
4999 /// prematurely via another branch.
5000 unsigned ScalarEvolution::getSmallConstantTripCount(Loop *L,
5001                                                     BasicBlock *ExitingBlock) {
5002   assert(ExitingBlock && "Must pass a non-null exiting block!");
5003   assert(L->isLoopExiting(ExitingBlock) &&
5004          "Exiting block must actually branch out of the loop!");
5005   const SCEVConstant *ExitCount =
5006       dyn_cast<SCEVConstant>(getExitCount(L, ExitingBlock));
5007   if (!ExitCount)
5008     return 0;
5009 
5010   ConstantInt *ExitConst = ExitCount->getValue();
5011 
5012   // Guard against huge trip counts.
5013   if (ExitConst->getValue().getActiveBits() > 32)
5014     return 0;
5015 
5016   // In case of integer overflow, this returns 0, which is correct.
5017   return ((unsigned)ExitConst->getZExtValue()) + 1;
5018 }
5019 
5020 unsigned ScalarEvolution::getSmallConstantTripMultiple(Loop *L) {
5021   if (BasicBlock *ExitingBB = L->getExitingBlock())
5022     return getSmallConstantTripMultiple(L, ExitingBB);
5023 
5024   // No trip multiple information for multiple exits.
5025   return 0;
5026 }
5027 
5028 /// getSmallConstantTripMultiple - Returns the largest constant divisor of the
5029 /// trip count of this loop as a normal unsigned value, if possible. This
5030 /// means that the actual trip count is always a multiple of the returned
5031 /// value (don't forget the trip count could very well be zero as well!).
5032 ///
5033 /// Returns 1 if the trip count is unknown or not guaranteed to be the
5034 /// multiple of a constant (which is also the case if the trip count is simply
5035 /// constant, use getSmallConstantTripCount for that case), Will also return 1
5036 /// if the trip count is very large (>= 2^32).
5037 ///
5038 /// As explained in the comments for getSmallConstantTripCount, this assumes
5039 /// that control exits the loop via ExitingBlock.
5040 unsigned
5041 ScalarEvolution::getSmallConstantTripMultiple(Loop *L,
5042                                               BasicBlock *ExitingBlock) {
5043   assert(ExitingBlock && "Must pass a non-null exiting block!");
5044   assert(L->isLoopExiting(ExitingBlock) &&
5045          "Exiting block must actually branch out of the loop!");
5046   const SCEV *ExitCount = getExitCount(L, ExitingBlock);
5047   if (ExitCount == getCouldNotCompute())
5048     return 1;
5049 
5050   // Get the trip count from the BE count by adding 1.
5051   const SCEV *TCMul = getAddExpr(ExitCount, getOne(ExitCount->getType()));
5052   // FIXME: SCEV distributes multiplication as V1*C1 + V2*C1. We could attempt
5053   // to factor simple cases.
5054   if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(TCMul))
5055     TCMul = Mul->getOperand(0);
5056 
5057   const SCEVConstant *MulC = dyn_cast<SCEVConstant>(TCMul);
5058   if (!MulC)
5059     return 1;
5060 
5061   ConstantInt *Result = MulC->getValue();
5062 
5063   // Guard against huge trip counts (this requires checking
5064   // for zero to handle the case where the trip count == -1 and the
5065   // addition wraps).
5066   if (!Result || Result->getValue().getActiveBits() > 32 ||
5067       Result->getValue().getActiveBits() == 0)
5068     return 1;
5069 
5070   return (unsigned)Result->getZExtValue();
5071 }
5072 
5073 // getExitCount - Get the expression for the number of loop iterations for which
5074 // this loop is guaranteed not to exit via ExitingBlock. Otherwise return
5075 // SCEVCouldNotCompute.
5076 const SCEV *ScalarEvolution::getExitCount(Loop *L, BasicBlock *ExitingBlock) {
5077   return getBackedgeTakenInfo(L).getExact(ExitingBlock, this);
5078 }
5079 
5080 /// getBackedgeTakenCount - If the specified loop has a predictable
5081 /// backedge-taken count, return it, otherwise return a SCEVCouldNotCompute
5082 /// object. The backedge-taken count is the number of times the loop header
5083 /// will be branched to from within the loop. This is one less than the
5084 /// trip count of the loop, since it doesn't count the first iteration,
5085 /// when the header is branched to from outside the loop.
5086 ///
5087 /// Note that it is not valid to call this method on a loop without a
5088 /// loop-invariant backedge-taken count (see
5089 /// hasLoopInvariantBackedgeTakenCount).
5090 ///
5091 const SCEV *ScalarEvolution::getBackedgeTakenCount(const Loop *L) {
5092   return getBackedgeTakenInfo(L).getExact(this);
5093 }
5094 
5095 /// getMaxBackedgeTakenCount - Similar to getBackedgeTakenCount, except
5096 /// return the least SCEV value that is known never to be less than the
5097 /// actual backedge taken count.
5098 const SCEV *ScalarEvolution::getMaxBackedgeTakenCount(const Loop *L) {
5099   return getBackedgeTakenInfo(L).getMax(this);
5100 }
5101 
5102 /// PushLoopPHIs - Push PHI nodes in the header of the given loop
5103 /// onto the given Worklist.
5104 static void
5105 PushLoopPHIs(const Loop *L, SmallVectorImpl<Instruction *> &Worklist) {
5106   BasicBlock *Header = L->getHeader();
5107 
5108   // Push all Loop-header PHIs onto the Worklist stack.
5109   for (BasicBlock::iterator I = Header->begin();
5110        PHINode *PN = dyn_cast<PHINode>(I); ++I)
5111     Worklist.push_back(PN);
5112 }
5113 
5114 const ScalarEvolution::BackedgeTakenInfo &
5115 ScalarEvolution::getBackedgeTakenInfo(const Loop *L) {
5116   // Initially insert an invalid entry for this loop. If the insertion
5117   // succeeds, proceed to actually compute a backedge-taken count and
5118   // update the value. The temporary CouldNotCompute value tells SCEV
5119   // code elsewhere that it shouldn't attempt to request a new
5120   // backedge-taken count, which could result in infinite recursion.
5121   std::pair<DenseMap<const Loop *, BackedgeTakenInfo>::iterator, bool> Pair =
5122       BackedgeTakenCounts.insert({L, BackedgeTakenInfo()});
5123   if (!Pair.second)
5124     return Pair.first->second;
5125 
5126   // computeBackedgeTakenCount may allocate memory for its result. Inserting it
5127   // into the BackedgeTakenCounts map transfers ownership. Otherwise, the result
5128   // must be cleared in this scope.
5129   BackedgeTakenInfo Result = computeBackedgeTakenCount(L);
5130 
5131   if (Result.getExact(this) != getCouldNotCompute()) {
5132     assert(isLoopInvariant(Result.getExact(this), L) &&
5133            isLoopInvariant(Result.getMax(this), L) &&
5134            "Computed backedge-taken count isn't loop invariant for loop!");
5135     ++NumTripCountsComputed;
5136   }
5137   else if (Result.getMax(this) == getCouldNotCompute() &&
5138            isa<PHINode>(L->getHeader()->begin())) {
5139     // Only count loops that have phi nodes as not being computable.
5140     ++NumTripCountsNotComputed;
5141   }
5142 
5143   // Now that we know more about the trip count for this loop, forget any
5144   // existing SCEV values for PHI nodes in this loop since they are only
5145   // conservative estimates made without the benefit of trip count
5146   // information. This is similar to the code in forgetLoop, except that
5147   // it handles SCEVUnknown PHI nodes specially.
5148   if (Result.hasAnyInfo()) {
5149     SmallVector<Instruction *, 16> Worklist;
5150     PushLoopPHIs(L, Worklist);
5151 
5152     SmallPtrSet<Instruction *, 8> Visited;
5153     while (!Worklist.empty()) {
5154       Instruction *I = Worklist.pop_back_val();
5155       if (!Visited.insert(I).second)
5156         continue;
5157 
5158       ValueExprMapType::iterator It =
5159         ValueExprMap.find_as(static_cast<Value *>(I));
5160       if (It != ValueExprMap.end()) {
5161         const SCEV *Old = It->second;
5162 
5163         // SCEVUnknown for a PHI either means that it has an unrecognized
5164         // structure, or it's a PHI that's in the progress of being computed
5165         // by createNodeForPHI.  In the former case, additional loop trip
5166         // count information isn't going to change anything. In the later
5167         // case, createNodeForPHI will perform the necessary updates on its
5168         // own when it gets to that point.
5169         if (!isa<PHINode>(I) || !isa<SCEVUnknown>(Old)) {
5170           forgetMemoizedResults(Old);
5171           ValueExprMap.erase(It);
5172         }
5173         if (PHINode *PN = dyn_cast<PHINode>(I))
5174           ConstantEvolutionLoopExitValue.erase(PN);
5175       }
5176 
5177       PushDefUseChildren(I, Worklist);
5178     }
5179   }
5180 
5181   // Re-lookup the insert position, since the call to
5182   // computeBackedgeTakenCount above could result in a
5183   // recusive call to getBackedgeTakenInfo (on a different
5184   // loop), which would invalidate the iterator computed
5185   // earlier.
5186   return BackedgeTakenCounts.find(L)->second = Result;
5187 }
5188 
5189 /// forgetLoop - This method should be called by the client when it has
5190 /// changed a loop in a way that may effect ScalarEvolution's ability to
5191 /// compute a trip count, or if the loop is deleted.
5192 void ScalarEvolution::forgetLoop(const Loop *L) {
5193   // Drop any stored trip count value.
5194   DenseMap<const Loop*, BackedgeTakenInfo>::iterator BTCPos =
5195     BackedgeTakenCounts.find(L);
5196   if (BTCPos != BackedgeTakenCounts.end()) {
5197     BTCPos->second.clear();
5198     BackedgeTakenCounts.erase(BTCPos);
5199   }
5200 
5201   // Drop information about expressions based on loop-header PHIs.
5202   SmallVector<Instruction *, 16> Worklist;
5203   PushLoopPHIs(L, Worklist);
5204 
5205   SmallPtrSet<Instruction *, 8> Visited;
5206   while (!Worklist.empty()) {
5207     Instruction *I = Worklist.pop_back_val();
5208     if (!Visited.insert(I).second)
5209       continue;
5210 
5211     ValueExprMapType::iterator It =
5212       ValueExprMap.find_as(static_cast<Value *>(I));
5213     if (It != ValueExprMap.end()) {
5214       forgetMemoizedResults(It->second);
5215       ValueExprMap.erase(It);
5216       if (PHINode *PN = dyn_cast<PHINode>(I))
5217         ConstantEvolutionLoopExitValue.erase(PN);
5218     }
5219 
5220     PushDefUseChildren(I, Worklist);
5221   }
5222 
5223   // Forget all contained loops too, to avoid dangling entries in the
5224   // ValuesAtScopes map.
5225   for (Loop::iterator I = L->begin(), E = L->end(); I != E; ++I)
5226     forgetLoop(*I);
5227 }
5228 
5229 /// forgetValue - This method should be called by the client when it has
5230 /// changed a value in a way that may effect its value, or which may
5231 /// disconnect it from a def-use chain linking it to a loop.
5232 void ScalarEvolution::forgetValue(Value *V) {
5233   Instruction *I = dyn_cast<Instruction>(V);
5234   if (!I) return;
5235 
5236   // Drop information about expressions based on loop-header PHIs.
5237   SmallVector<Instruction *, 16> Worklist;
5238   Worklist.push_back(I);
5239 
5240   SmallPtrSet<Instruction *, 8> Visited;
5241   while (!Worklist.empty()) {
5242     I = Worklist.pop_back_val();
5243     if (!Visited.insert(I).second)
5244       continue;
5245 
5246     ValueExprMapType::iterator It =
5247       ValueExprMap.find_as(static_cast<Value *>(I));
5248     if (It != ValueExprMap.end()) {
5249       forgetMemoizedResults(It->second);
5250       ValueExprMap.erase(It);
5251       if (PHINode *PN = dyn_cast<PHINode>(I))
5252         ConstantEvolutionLoopExitValue.erase(PN);
5253     }
5254 
5255     PushDefUseChildren(I, Worklist);
5256   }
5257 }
5258 
5259 /// getExact - Get the exact loop backedge taken count considering all loop
5260 /// exits. A computable result can only be returned for loops with a single
5261 /// exit.  Returning the minimum taken count among all exits is incorrect
5262 /// because one of the loop's exit limit's may have been skipped. HowFarToZero
5263 /// assumes that the limit of each loop test is never skipped. This is a valid
5264 /// assumption as long as the loop exits via that test. For precise results, it
5265 /// is the caller's responsibility to specify the relevant loop exit using
5266 /// getExact(ExitingBlock, SE).
5267 const SCEV *
5268 ScalarEvolution::BackedgeTakenInfo::getExact(ScalarEvolution *SE) const {
5269   // If any exits were not computable, the loop is not computable.
5270   if (!ExitNotTaken.isCompleteList()) return SE->getCouldNotCompute();
5271 
5272   // We need exactly one computable exit.
5273   if (!ExitNotTaken.ExitingBlock) return SE->getCouldNotCompute();
5274   assert(ExitNotTaken.ExactNotTaken && "uninitialized not-taken info");
5275 
5276   const SCEV *BECount = nullptr;
5277   for (const ExitNotTakenInfo *ENT = &ExitNotTaken;
5278        ENT != nullptr; ENT = ENT->getNextExit()) {
5279 
5280     assert(ENT->ExactNotTaken != SE->getCouldNotCompute() && "bad exit SCEV");
5281 
5282     if (!BECount)
5283       BECount = ENT->ExactNotTaken;
5284     else if (BECount != ENT->ExactNotTaken)
5285       return SE->getCouldNotCompute();
5286   }
5287   assert(BECount && "Invalid not taken count for loop exit");
5288   return BECount;
5289 }
5290 
5291 /// getExact - Get the exact not taken count for this loop exit.
5292 const SCEV *
5293 ScalarEvolution::BackedgeTakenInfo::getExact(BasicBlock *ExitingBlock,
5294                                              ScalarEvolution *SE) const {
5295   for (const ExitNotTakenInfo *ENT = &ExitNotTaken;
5296        ENT != nullptr; ENT = ENT->getNextExit()) {
5297 
5298     if (ENT->ExitingBlock == ExitingBlock)
5299       return ENT->ExactNotTaken;
5300   }
5301   return SE->getCouldNotCompute();
5302 }
5303 
5304 /// getMax - Get the max backedge taken count for the loop.
5305 const SCEV *
5306 ScalarEvolution::BackedgeTakenInfo::getMax(ScalarEvolution *SE) const {
5307   return Max ? Max : SE->getCouldNotCompute();
5308 }
5309 
5310 bool ScalarEvolution::BackedgeTakenInfo::hasOperand(const SCEV *S,
5311                                                     ScalarEvolution *SE) const {
5312   if (Max && Max != SE->getCouldNotCompute() && SE->hasOperand(Max, S))
5313     return true;
5314 
5315   if (!ExitNotTaken.ExitingBlock)
5316     return false;
5317 
5318   for (const ExitNotTakenInfo *ENT = &ExitNotTaken;
5319        ENT != nullptr; ENT = ENT->getNextExit()) {
5320 
5321     if (ENT->ExactNotTaken != SE->getCouldNotCompute()
5322         && SE->hasOperand(ENT->ExactNotTaken, S)) {
5323       return true;
5324     }
5325   }
5326   return false;
5327 }
5328 
5329 /// Allocate memory for BackedgeTakenInfo and copy the not-taken count of each
5330 /// computable exit into a persistent ExitNotTakenInfo array.
5331 ScalarEvolution::BackedgeTakenInfo::BackedgeTakenInfo(
5332   SmallVectorImpl< std::pair<BasicBlock *, const SCEV *> > &ExitCounts,
5333   bool Complete, const SCEV *MaxCount) : Max(MaxCount) {
5334 
5335   if (!Complete)
5336     ExitNotTaken.setIncomplete();
5337 
5338   unsigned NumExits = ExitCounts.size();
5339   if (NumExits == 0) return;
5340 
5341   ExitNotTaken.ExitingBlock = ExitCounts[0].first;
5342   ExitNotTaken.ExactNotTaken = ExitCounts[0].second;
5343   if (NumExits == 1) return;
5344 
5345   // Handle the rare case of multiple computable exits.
5346   ExitNotTakenInfo *ENT = new ExitNotTakenInfo[NumExits-1];
5347 
5348   ExitNotTakenInfo *PrevENT = &ExitNotTaken;
5349   for (unsigned i = 1; i < NumExits; ++i, PrevENT = ENT, ++ENT) {
5350     PrevENT->setNextExit(ENT);
5351     ENT->ExitingBlock = ExitCounts[i].first;
5352     ENT->ExactNotTaken = ExitCounts[i].second;
5353   }
5354 }
5355 
5356 /// clear - Invalidate this result and free the ExitNotTakenInfo array.
5357 void ScalarEvolution::BackedgeTakenInfo::clear() {
5358   ExitNotTaken.ExitingBlock = nullptr;
5359   ExitNotTaken.ExactNotTaken = nullptr;
5360   delete[] ExitNotTaken.getNextExit();
5361 }
5362 
5363 /// computeBackedgeTakenCount - Compute the number of times the backedge
5364 /// of the specified loop will execute.
5365 ScalarEvolution::BackedgeTakenInfo
5366 ScalarEvolution::computeBackedgeTakenCount(const Loop *L) {
5367   SmallVector<BasicBlock *, 8> ExitingBlocks;
5368   L->getExitingBlocks(ExitingBlocks);
5369 
5370   SmallVector<std::pair<BasicBlock *, const SCEV *>, 4> ExitCounts;
5371   bool CouldComputeBECount = true;
5372   BasicBlock *Latch = L->getLoopLatch(); // may be NULL.
5373   const SCEV *MustExitMaxBECount = nullptr;
5374   const SCEV *MayExitMaxBECount = nullptr;
5375 
5376   // Compute the ExitLimit for each loop exit. Use this to populate ExitCounts
5377   // and compute maxBECount.
5378   for (unsigned i = 0, e = ExitingBlocks.size(); i != e; ++i) {
5379     BasicBlock *ExitBB = ExitingBlocks[i];
5380     ExitLimit EL = computeExitLimit(L, ExitBB);
5381 
5382     // 1. For each exit that can be computed, add an entry to ExitCounts.
5383     // CouldComputeBECount is true only if all exits can be computed.
5384     if (EL.Exact == getCouldNotCompute())
5385       // We couldn't compute an exact value for this exit, so
5386       // we won't be able to compute an exact value for the loop.
5387       CouldComputeBECount = false;
5388     else
5389       ExitCounts.push_back({ExitBB, EL.Exact});
5390 
5391     // 2. Derive the loop's MaxBECount from each exit's max number of
5392     // non-exiting iterations. Partition the loop exits into two kinds:
5393     // LoopMustExits and LoopMayExits.
5394     //
5395     // If the exit dominates the loop latch, it is a LoopMustExit otherwise it
5396     // is a LoopMayExit.  If any computable LoopMustExit is found, then
5397     // MaxBECount is the minimum EL.Max of computable LoopMustExits. Otherwise,
5398     // MaxBECount is conservatively the maximum EL.Max, where CouldNotCompute is
5399     // considered greater than any computable EL.Max.
5400     if (EL.Max != getCouldNotCompute() && Latch &&
5401         DT.dominates(ExitBB, Latch)) {
5402       if (!MustExitMaxBECount)
5403         MustExitMaxBECount = EL.Max;
5404       else {
5405         MustExitMaxBECount =
5406           getUMinFromMismatchedTypes(MustExitMaxBECount, EL.Max);
5407       }
5408     } else if (MayExitMaxBECount != getCouldNotCompute()) {
5409       if (!MayExitMaxBECount || EL.Max == getCouldNotCompute())
5410         MayExitMaxBECount = EL.Max;
5411       else {
5412         MayExitMaxBECount =
5413           getUMaxFromMismatchedTypes(MayExitMaxBECount, EL.Max);
5414       }
5415     }
5416   }
5417   const SCEV *MaxBECount = MustExitMaxBECount ? MustExitMaxBECount :
5418     (MayExitMaxBECount ? MayExitMaxBECount : getCouldNotCompute());
5419   return BackedgeTakenInfo(ExitCounts, CouldComputeBECount, MaxBECount);
5420 }
5421 
5422 ScalarEvolution::ExitLimit
5423 ScalarEvolution::computeExitLimit(const Loop *L, BasicBlock *ExitingBlock) {
5424 
5425   // Okay, we've chosen an exiting block.  See what condition causes us to exit
5426   // at this block and remember the exit block and whether all other targets
5427   // lead to the loop header.
5428   bool MustExecuteLoopHeader = true;
5429   BasicBlock *Exit = nullptr;
5430   for (auto *SBB : successors(ExitingBlock))
5431     if (!L->contains(SBB)) {
5432       if (Exit) // Multiple exit successors.
5433         return getCouldNotCompute();
5434       Exit = SBB;
5435     } else if (SBB != L->getHeader()) {
5436       MustExecuteLoopHeader = false;
5437     }
5438 
5439   // At this point, we know we have a conditional branch that determines whether
5440   // the loop is exited.  However, we don't know if the branch is executed each
5441   // time through the loop.  If not, then the execution count of the branch will
5442   // not be equal to the trip count of the loop.
5443   //
5444   // Currently we check for this by checking to see if the Exit branch goes to
5445   // the loop header.  If so, we know it will always execute the same number of
5446   // times as the loop.  We also handle the case where the exit block *is* the
5447   // loop header.  This is common for un-rotated loops.
5448   //
5449   // If both of those tests fail, walk up the unique predecessor chain to the
5450   // header, stopping if there is an edge that doesn't exit the loop. If the
5451   // header is reached, the execution count of the branch will be equal to the
5452   // trip count of the loop.
5453   //
5454   //  More extensive analysis could be done to handle more cases here.
5455   //
5456   if (!MustExecuteLoopHeader && ExitingBlock != L->getHeader()) {
5457     // The simple checks failed, try climbing the unique predecessor chain
5458     // up to the header.
5459     bool Ok = false;
5460     for (BasicBlock *BB = ExitingBlock; BB; ) {
5461       BasicBlock *Pred = BB->getUniquePredecessor();
5462       if (!Pred)
5463         return getCouldNotCompute();
5464       TerminatorInst *PredTerm = Pred->getTerminator();
5465       for (const BasicBlock *PredSucc : PredTerm->successors()) {
5466         if (PredSucc == BB)
5467           continue;
5468         // If the predecessor has a successor that isn't BB and isn't
5469         // outside the loop, assume the worst.
5470         if (L->contains(PredSucc))
5471           return getCouldNotCompute();
5472       }
5473       if (Pred == L->getHeader()) {
5474         Ok = true;
5475         break;
5476       }
5477       BB = Pred;
5478     }
5479     if (!Ok)
5480       return getCouldNotCompute();
5481   }
5482 
5483   bool IsOnlyExit = (L->getExitingBlock() != nullptr);
5484   TerminatorInst *Term = ExitingBlock->getTerminator();
5485   if (BranchInst *BI = dyn_cast<BranchInst>(Term)) {
5486     assert(BI->isConditional() && "If unconditional, it can't be in loop!");
5487     // Proceed to the next level to examine the exit condition expression.
5488     return computeExitLimitFromCond(L, BI->getCondition(), BI->getSuccessor(0),
5489                                     BI->getSuccessor(1),
5490                                     /*ControlsExit=*/IsOnlyExit);
5491   }
5492 
5493   if (SwitchInst *SI = dyn_cast<SwitchInst>(Term))
5494     return computeExitLimitFromSingleExitSwitch(L, SI, Exit,
5495                                                 /*ControlsExit=*/IsOnlyExit);
5496 
5497   return getCouldNotCompute();
5498 }
5499 
5500 /// computeExitLimitFromCond - Compute the number of times the
5501 /// backedge of the specified loop will execute if its exit condition
5502 /// were a conditional branch of ExitCond, TBB, and FBB.
5503 ///
5504 /// @param ControlsExit is true if ExitCond directly controls the exit
5505 /// branch. In this case, we can assume that the loop exits only if the
5506 /// condition is true and can infer that failing to meet the condition prior to
5507 /// integer wraparound results in undefined behavior.
5508 ScalarEvolution::ExitLimit
5509 ScalarEvolution::computeExitLimitFromCond(const Loop *L,
5510                                           Value *ExitCond,
5511                                           BasicBlock *TBB,
5512                                           BasicBlock *FBB,
5513                                           bool ControlsExit) {
5514   // Check if the controlling expression for this loop is an And or Or.
5515   if (BinaryOperator *BO = dyn_cast<BinaryOperator>(ExitCond)) {
5516     if (BO->getOpcode() == Instruction::And) {
5517       // Recurse on the operands of the and.
5518       bool EitherMayExit = L->contains(TBB);
5519       ExitLimit EL0 = computeExitLimitFromCond(L, BO->getOperand(0), TBB, FBB,
5520                                                ControlsExit && !EitherMayExit);
5521       ExitLimit EL1 = computeExitLimitFromCond(L, BO->getOperand(1), TBB, FBB,
5522                                                ControlsExit && !EitherMayExit);
5523       const SCEV *BECount = getCouldNotCompute();
5524       const SCEV *MaxBECount = getCouldNotCompute();
5525       if (EitherMayExit) {
5526         // Both conditions must be true for the loop to continue executing.
5527         // Choose the less conservative count.
5528         if (EL0.Exact == getCouldNotCompute() ||
5529             EL1.Exact == getCouldNotCompute())
5530           BECount = getCouldNotCompute();
5531         else
5532           BECount = getUMinFromMismatchedTypes(EL0.Exact, EL1.Exact);
5533         if (EL0.Max == getCouldNotCompute())
5534           MaxBECount = EL1.Max;
5535         else if (EL1.Max == getCouldNotCompute())
5536           MaxBECount = EL0.Max;
5537         else
5538           MaxBECount = getUMinFromMismatchedTypes(EL0.Max, EL1.Max);
5539       } else {
5540         // Both conditions must be true at the same time for the loop to exit.
5541         // For now, be conservative.
5542         assert(L->contains(FBB) && "Loop block has no successor in loop!");
5543         if (EL0.Max == EL1.Max)
5544           MaxBECount = EL0.Max;
5545         if (EL0.Exact == EL1.Exact)
5546           BECount = EL0.Exact;
5547       }
5548 
5549       // There are cases (e.g. PR26207) where computeExitLimitFromCond is able
5550       // to be more aggressive when computing BECount than when computing
5551       // MaxBECount.  In these cases it is possible for EL0.Exact and EL1.Exact
5552       // to match, but for EL0.Max and EL1.Max to not.
5553       if (isa<SCEVCouldNotCompute>(MaxBECount) &&
5554           !isa<SCEVCouldNotCompute>(BECount))
5555         MaxBECount = BECount;
5556 
5557       return ExitLimit(BECount, MaxBECount);
5558     }
5559     if (BO->getOpcode() == Instruction::Or) {
5560       // Recurse on the operands of the or.
5561       bool EitherMayExit = L->contains(FBB);
5562       ExitLimit EL0 = computeExitLimitFromCond(L, BO->getOperand(0), TBB, FBB,
5563                                                ControlsExit && !EitherMayExit);
5564       ExitLimit EL1 = computeExitLimitFromCond(L, BO->getOperand(1), TBB, FBB,
5565                                                ControlsExit && !EitherMayExit);
5566       const SCEV *BECount = getCouldNotCompute();
5567       const SCEV *MaxBECount = getCouldNotCompute();
5568       if (EitherMayExit) {
5569         // Both conditions must be false for the loop to continue executing.
5570         // Choose the less conservative count.
5571         if (EL0.Exact == getCouldNotCompute() ||
5572             EL1.Exact == getCouldNotCompute())
5573           BECount = getCouldNotCompute();
5574         else
5575           BECount = getUMinFromMismatchedTypes(EL0.Exact, EL1.Exact);
5576         if (EL0.Max == getCouldNotCompute())
5577           MaxBECount = EL1.Max;
5578         else if (EL1.Max == getCouldNotCompute())
5579           MaxBECount = EL0.Max;
5580         else
5581           MaxBECount = getUMinFromMismatchedTypes(EL0.Max, EL1.Max);
5582       } else {
5583         // Both conditions must be false at the same time for the loop to exit.
5584         // For now, be conservative.
5585         assert(L->contains(TBB) && "Loop block has no successor in loop!");
5586         if (EL0.Max == EL1.Max)
5587           MaxBECount = EL0.Max;
5588         if (EL0.Exact == EL1.Exact)
5589           BECount = EL0.Exact;
5590       }
5591 
5592       return ExitLimit(BECount, MaxBECount);
5593     }
5594   }
5595 
5596   // With an icmp, it may be feasible to compute an exact backedge-taken count.
5597   // Proceed to the next level to examine the icmp.
5598   if (ICmpInst *ExitCondICmp = dyn_cast<ICmpInst>(ExitCond))
5599     return computeExitLimitFromICmp(L, ExitCondICmp, TBB, FBB, ControlsExit);
5600 
5601   // Check for a constant condition. These are normally stripped out by
5602   // SimplifyCFG, but ScalarEvolution may be used by a pass which wishes to
5603   // preserve the CFG and is temporarily leaving constant conditions
5604   // in place.
5605   if (ConstantInt *CI = dyn_cast<ConstantInt>(ExitCond)) {
5606     if (L->contains(FBB) == !CI->getZExtValue())
5607       // The backedge is always taken.
5608       return getCouldNotCompute();
5609     else
5610       // The backedge is never taken.
5611       return getZero(CI->getType());
5612   }
5613 
5614   // If it's not an integer or pointer comparison then compute it the hard way.
5615   return computeExitCountExhaustively(L, ExitCond, !L->contains(TBB));
5616 }
5617 
5618 ScalarEvolution::ExitLimit
5619 ScalarEvolution::computeExitLimitFromICmp(const Loop *L,
5620                                           ICmpInst *ExitCond,
5621                                           BasicBlock *TBB,
5622                                           BasicBlock *FBB,
5623                                           bool ControlsExit) {
5624 
5625   // If the condition was exit on true, convert the condition to exit on false
5626   ICmpInst::Predicate Cond;
5627   if (!L->contains(FBB))
5628     Cond = ExitCond->getPredicate();
5629   else
5630     Cond = ExitCond->getInversePredicate();
5631 
5632   // Handle common loops like: for (X = "string"; *X; ++X)
5633   if (LoadInst *LI = dyn_cast<LoadInst>(ExitCond->getOperand(0)))
5634     if (Constant *RHS = dyn_cast<Constant>(ExitCond->getOperand(1))) {
5635       ExitLimit ItCnt =
5636         computeLoadConstantCompareExitLimit(LI, RHS, L, Cond);
5637       if (ItCnt.hasAnyInfo())
5638         return ItCnt;
5639     }
5640 
5641   ExitLimit ShiftEL = computeShiftCompareExitLimit(
5642       ExitCond->getOperand(0), ExitCond->getOperand(1), L, Cond);
5643   if (ShiftEL.hasAnyInfo())
5644     return ShiftEL;
5645 
5646   const SCEV *LHS = getSCEV(ExitCond->getOperand(0));
5647   const SCEV *RHS = getSCEV(ExitCond->getOperand(1));
5648 
5649   // Try to evaluate any dependencies out of the loop.
5650   LHS = getSCEVAtScope(LHS, L);
5651   RHS = getSCEVAtScope(RHS, L);
5652 
5653   // At this point, we would like to compute how many iterations of the
5654   // loop the predicate will return true for these inputs.
5655   if (isLoopInvariant(LHS, L) && !isLoopInvariant(RHS, L)) {
5656     // If there is a loop-invariant, force it into the RHS.
5657     std::swap(LHS, RHS);
5658     Cond = ICmpInst::getSwappedPredicate(Cond);
5659   }
5660 
5661   // Simplify the operands before analyzing them.
5662   (void)SimplifyICmpOperands(Cond, LHS, RHS);
5663 
5664   // If we have a comparison of a chrec against a constant, try to use value
5665   // ranges to answer this query.
5666   if (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(RHS))
5667     if (const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(LHS))
5668       if (AddRec->getLoop() == L) {
5669         // Form the constant range.
5670         ConstantRange CompRange(
5671             ICmpInst::makeConstantRange(Cond, RHSC->getAPInt()));
5672 
5673         const SCEV *Ret = AddRec->getNumIterationsInRange(CompRange, *this);
5674         if (!isa<SCEVCouldNotCompute>(Ret)) return Ret;
5675       }
5676 
5677   switch (Cond) {
5678   case ICmpInst::ICMP_NE: {                     // while (X != Y)
5679     // Convert to: while (X-Y != 0)
5680     ExitLimit EL = HowFarToZero(getMinusSCEV(LHS, RHS), L, ControlsExit);
5681     if (EL.hasAnyInfo()) return EL;
5682     break;
5683   }
5684   case ICmpInst::ICMP_EQ: {                     // while (X == Y)
5685     // Convert to: while (X-Y == 0)
5686     ExitLimit EL = HowFarToNonZero(getMinusSCEV(LHS, RHS), L);
5687     if (EL.hasAnyInfo()) return EL;
5688     break;
5689   }
5690   case ICmpInst::ICMP_SLT:
5691   case ICmpInst::ICMP_ULT: {                    // while (X < Y)
5692     bool IsSigned = Cond == ICmpInst::ICMP_SLT;
5693     ExitLimit EL = HowManyLessThans(LHS, RHS, L, IsSigned, ControlsExit);
5694     if (EL.hasAnyInfo()) return EL;
5695     break;
5696   }
5697   case ICmpInst::ICMP_SGT:
5698   case ICmpInst::ICMP_UGT: {                    // while (X > Y)
5699     bool IsSigned = Cond == ICmpInst::ICMP_SGT;
5700     ExitLimit EL = HowManyGreaterThans(LHS, RHS, L, IsSigned, ControlsExit);
5701     if (EL.hasAnyInfo()) return EL;
5702     break;
5703   }
5704   default:
5705     break;
5706   }
5707   return computeExitCountExhaustively(L, ExitCond, !L->contains(TBB));
5708 }
5709 
5710 ScalarEvolution::ExitLimit
5711 ScalarEvolution::computeExitLimitFromSingleExitSwitch(const Loop *L,
5712                                                       SwitchInst *Switch,
5713                                                       BasicBlock *ExitingBlock,
5714                                                       bool ControlsExit) {
5715   assert(!L->contains(ExitingBlock) && "Not an exiting block!");
5716 
5717   // Give up if the exit is the default dest of a switch.
5718   if (Switch->getDefaultDest() == ExitingBlock)
5719     return getCouldNotCompute();
5720 
5721   assert(L->contains(Switch->getDefaultDest()) &&
5722          "Default case must not exit the loop!");
5723   const SCEV *LHS = getSCEVAtScope(Switch->getCondition(), L);
5724   const SCEV *RHS = getConstant(Switch->findCaseDest(ExitingBlock));
5725 
5726   // while (X != Y) --> while (X-Y != 0)
5727   ExitLimit EL = HowFarToZero(getMinusSCEV(LHS, RHS), L, ControlsExit);
5728   if (EL.hasAnyInfo())
5729     return EL;
5730 
5731   return getCouldNotCompute();
5732 }
5733 
5734 static ConstantInt *
5735 EvaluateConstantChrecAtConstant(const SCEVAddRecExpr *AddRec, ConstantInt *C,
5736                                 ScalarEvolution &SE) {
5737   const SCEV *InVal = SE.getConstant(C);
5738   const SCEV *Val = AddRec->evaluateAtIteration(InVal, SE);
5739   assert(isa<SCEVConstant>(Val) &&
5740          "Evaluation of SCEV at constant didn't fold correctly?");
5741   return cast<SCEVConstant>(Val)->getValue();
5742 }
5743 
5744 /// computeLoadConstantCompareExitLimit - Given an exit condition of
5745 /// 'icmp op load X, cst', try to see if we can compute the backedge
5746 /// execution count.
5747 ScalarEvolution::ExitLimit
5748 ScalarEvolution::computeLoadConstantCompareExitLimit(
5749   LoadInst *LI,
5750   Constant *RHS,
5751   const Loop *L,
5752   ICmpInst::Predicate predicate) {
5753 
5754   if (LI->isVolatile()) return getCouldNotCompute();
5755 
5756   // Check to see if the loaded pointer is a getelementptr of a global.
5757   // TODO: Use SCEV instead of manually grubbing with GEPs.
5758   GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(LI->getOperand(0));
5759   if (!GEP) return getCouldNotCompute();
5760 
5761   // Make sure that it is really a constant global we are gepping, with an
5762   // initializer, and make sure the first IDX is really 0.
5763   GlobalVariable *GV = dyn_cast<GlobalVariable>(GEP->getOperand(0));
5764   if (!GV || !GV->isConstant() || !GV->hasDefinitiveInitializer() ||
5765       GEP->getNumOperands() < 3 || !isa<Constant>(GEP->getOperand(1)) ||
5766       !cast<Constant>(GEP->getOperand(1))->isNullValue())
5767     return getCouldNotCompute();
5768 
5769   // Okay, we allow one non-constant index into the GEP instruction.
5770   Value *VarIdx = nullptr;
5771   std::vector<Constant*> Indexes;
5772   unsigned VarIdxNum = 0;
5773   for (unsigned i = 2, e = GEP->getNumOperands(); i != e; ++i)
5774     if (ConstantInt *CI = dyn_cast<ConstantInt>(GEP->getOperand(i))) {
5775       Indexes.push_back(CI);
5776     } else if (!isa<ConstantInt>(GEP->getOperand(i))) {
5777       if (VarIdx) return getCouldNotCompute();  // Multiple non-constant idx's.
5778       VarIdx = GEP->getOperand(i);
5779       VarIdxNum = i-2;
5780       Indexes.push_back(nullptr);
5781     }
5782 
5783   // Loop-invariant loads may be a byproduct of loop optimization. Skip them.
5784   if (!VarIdx)
5785     return getCouldNotCompute();
5786 
5787   // Okay, we know we have a (load (gep GV, 0, X)) comparison with a constant.
5788   // Check to see if X is a loop variant variable value now.
5789   const SCEV *Idx = getSCEV(VarIdx);
5790   Idx = getSCEVAtScope(Idx, L);
5791 
5792   // We can only recognize very limited forms of loop index expressions, in
5793   // particular, only affine AddRec's like {C1,+,C2}.
5794   const SCEVAddRecExpr *IdxExpr = dyn_cast<SCEVAddRecExpr>(Idx);
5795   if (!IdxExpr || !IdxExpr->isAffine() || isLoopInvariant(IdxExpr, L) ||
5796       !isa<SCEVConstant>(IdxExpr->getOperand(0)) ||
5797       !isa<SCEVConstant>(IdxExpr->getOperand(1)))
5798     return getCouldNotCompute();
5799 
5800   unsigned MaxSteps = MaxBruteForceIterations;
5801   for (unsigned IterationNum = 0; IterationNum != MaxSteps; ++IterationNum) {
5802     ConstantInt *ItCst = ConstantInt::get(
5803                            cast<IntegerType>(IdxExpr->getType()), IterationNum);
5804     ConstantInt *Val = EvaluateConstantChrecAtConstant(IdxExpr, ItCst, *this);
5805 
5806     // Form the GEP offset.
5807     Indexes[VarIdxNum] = Val;
5808 
5809     Constant *Result = ConstantFoldLoadThroughGEPIndices(GV->getInitializer(),
5810                                                          Indexes);
5811     if (!Result) break;  // Cannot compute!
5812 
5813     // Evaluate the condition for this iteration.
5814     Result = ConstantExpr::getICmp(predicate, Result, RHS);
5815     if (!isa<ConstantInt>(Result)) break;  // Couldn't decide for sure
5816     if (cast<ConstantInt>(Result)->getValue().isMinValue()) {
5817       ++NumArrayLenItCounts;
5818       return getConstant(ItCst);   // Found terminating iteration!
5819     }
5820   }
5821   return getCouldNotCompute();
5822 }
5823 
5824 ScalarEvolution::ExitLimit ScalarEvolution::computeShiftCompareExitLimit(
5825     Value *LHS, Value *RHSV, const Loop *L, ICmpInst::Predicate Pred) {
5826   ConstantInt *RHS = dyn_cast<ConstantInt>(RHSV);
5827   if (!RHS)
5828     return getCouldNotCompute();
5829 
5830   const BasicBlock *Latch = L->getLoopLatch();
5831   if (!Latch)
5832     return getCouldNotCompute();
5833 
5834   const BasicBlock *Predecessor = L->getLoopPredecessor();
5835   if (!Predecessor)
5836     return getCouldNotCompute();
5837 
5838   // Return true if V is of the form "LHS `shift_op` <positive constant>".
5839   // Return LHS in OutLHS and shift_opt in OutOpCode.
5840   auto MatchPositiveShift =
5841       [](Value *V, Value *&OutLHS, Instruction::BinaryOps &OutOpCode) {
5842 
5843     using namespace PatternMatch;
5844 
5845     ConstantInt *ShiftAmt;
5846     if (match(V, m_LShr(m_Value(OutLHS), m_ConstantInt(ShiftAmt))))
5847       OutOpCode = Instruction::LShr;
5848     else if (match(V, m_AShr(m_Value(OutLHS), m_ConstantInt(ShiftAmt))))
5849       OutOpCode = Instruction::AShr;
5850     else if (match(V, m_Shl(m_Value(OutLHS), m_ConstantInt(ShiftAmt))))
5851       OutOpCode = Instruction::Shl;
5852     else
5853       return false;
5854 
5855     return ShiftAmt->getValue().isStrictlyPositive();
5856   };
5857 
5858   // Recognize a "shift recurrence" either of the form %iv or of %iv.shifted in
5859   //
5860   // loop:
5861   //   %iv = phi i32 [ %iv.shifted, %loop ], [ %val, %preheader ]
5862   //   %iv.shifted = lshr i32 %iv, <positive constant>
5863   //
5864   // Return true on a succesful match.  Return the corresponding PHI node (%iv
5865   // above) in PNOut and the opcode of the shift operation in OpCodeOut.
5866   auto MatchShiftRecurrence =
5867       [&](Value *V, PHINode *&PNOut, Instruction::BinaryOps &OpCodeOut) {
5868     Optional<Instruction::BinaryOps> PostShiftOpCode;
5869 
5870     {
5871       Instruction::BinaryOps OpC;
5872       Value *V;
5873 
5874       // If we encounter a shift instruction, "peel off" the shift operation,
5875       // and remember that we did so.  Later when we inspect %iv's backedge
5876       // value, we will make sure that the backedge value uses the same
5877       // operation.
5878       //
5879       // Note: the peeled shift operation does not have to be the same
5880       // instruction as the one feeding into the PHI's backedge value.  We only
5881       // really care about it being the same *kind* of shift instruction --
5882       // that's all that is required for our later inferences to hold.
5883       if (MatchPositiveShift(LHS, V, OpC)) {
5884         PostShiftOpCode = OpC;
5885         LHS = V;
5886       }
5887     }
5888 
5889     PNOut = dyn_cast<PHINode>(LHS);
5890     if (!PNOut || PNOut->getParent() != L->getHeader())
5891       return false;
5892 
5893     Value *BEValue = PNOut->getIncomingValueForBlock(Latch);
5894     Value *OpLHS;
5895 
5896     return
5897         // The backedge value for the PHI node must be a shift by a positive
5898         // amount
5899         MatchPositiveShift(BEValue, OpLHS, OpCodeOut) &&
5900 
5901         // of the PHI node itself
5902         OpLHS == PNOut &&
5903 
5904         // and the kind of shift should be match the kind of shift we peeled
5905         // off, if any.
5906         (!PostShiftOpCode.hasValue() || *PostShiftOpCode == OpCodeOut);
5907   };
5908 
5909   PHINode *PN;
5910   Instruction::BinaryOps OpCode;
5911   if (!MatchShiftRecurrence(LHS, PN, OpCode))
5912     return getCouldNotCompute();
5913 
5914   const DataLayout &DL = getDataLayout();
5915 
5916   // The key rationale for this optimization is that for some kinds of shift
5917   // recurrences, the value of the recurrence "stabilizes" to either 0 or -1
5918   // within a finite number of iterations.  If the condition guarding the
5919   // backedge (in the sense that the backedge is taken if the condition is true)
5920   // is false for the value the shift recurrence stabilizes to, then we know
5921   // that the backedge is taken only a finite number of times.
5922 
5923   ConstantInt *StableValue = nullptr;
5924   switch (OpCode) {
5925   default:
5926     llvm_unreachable("Impossible case!");
5927 
5928   case Instruction::AShr: {
5929     // {K,ashr,<positive-constant>} stabilizes to signum(K) in at most
5930     // bitwidth(K) iterations.
5931     Value *FirstValue = PN->getIncomingValueForBlock(Predecessor);
5932     bool KnownZero, KnownOne;
5933     ComputeSignBit(FirstValue, KnownZero, KnownOne, DL, 0, nullptr,
5934                    Predecessor->getTerminator(), &DT);
5935     auto *Ty = cast<IntegerType>(RHS->getType());
5936     if (KnownZero)
5937       StableValue = ConstantInt::get(Ty, 0);
5938     else if (KnownOne)
5939       StableValue = ConstantInt::get(Ty, -1, true);
5940     else
5941       return getCouldNotCompute();
5942 
5943     break;
5944   }
5945   case Instruction::LShr:
5946   case Instruction::Shl:
5947     // Both {K,lshr,<positive-constant>} and {K,shl,<positive-constant>}
5948     // stabilize to 0 in at most bitwidth(K) iterations.
5949     StableValue = ConstantInt::get(cast<IntegerType>(RHS->getType()), 0);
5950     break;
5951   }
5952 
5953   auto *Result =
5954       ConstantFoldCompareInstOperands(Pred, StableValue, RHS, DL, &TLI);
5955   assert(Result->getType()->isIntegerTy(1) &&
5956          "Otherwise cannot be an operand to a branch instruction");
5957 
5958   if (Result->isZeroValue()) {
5959     unsigned BitWidth = getTypeSizeInBits(RHS->getType());
5960     const SCEV *UpperBound =
5961         getConstant(getEffectiveSCEVType(RHS->getType()), BitWidth);
5962     return ExitLimit(getCouldNotCompute(), UpperBound);
5963   }
5964 
5965   return getCouldNotCompute();
5966 }
5967 
5968 /// CanConstantFold - Return true if we can constant fold an instruction of the
5969 /// specified type, assuming that all operands were constants.
5970 static bool CanConstantFold(const Instruction *I) {
5971   if (isa<BinaryOperator>(I) || isa<CmpInst>(I) ||
5972       isa<SelectInst>(I) || isa<CastInst>(I) || isa<GetElementPtrInst>(I) ||
5973       isa<LoadInst>(I))
5974     return true;
5975 
5976   if (const CallInst *CI = dyn_cast<CallInst>(I))
5977     if (const Function *F = CI->getCalledFunction())
5978       return canConstantFoldCallTo(F);
5979   return false;
5980 }
5981 
5982 /// Determine whether this instruction can constant evolve within this loop
5983 /// assuming its operands can all constant evolve.
5984 static bool canConstantEvolve(Instruction *I, const Loop *L) {
5985   // An instruction outside of the loop can't be derived from a loop PHI.
5986   if (!L->contains(I)) return false;
5987 
5988   if (isa<PHINode>(I)) {
5989     // We don't currently keep track of the control flow needed to evaluate
5990     // PHIs, so we cannot handle PHIs inside of loops.
5991     return L->getHeader() == I->getParent();
5992   }
5993 
5994   // If we won't be able to constant fold this expression even if the operands
5995   // are constants, bail early.
5996   return CanConstantFold(I);
5997 }
5998 
5999 /// getConstantEvolvingPHIOperands - Implement getConstantEvolvingPHI by
6000 /// recursing through each instruction operand until reaching a loop header phi.
6001 static PHINode *
6002 getConstantEvolvingPHIOperands(Instruction *UseInst, const Loop *L,
6003                                DenseMap<Instruction *, PHINode *> &PHIMap) {
6004 
6005   // Otherwise, we can evaluate this instruction if all of its operands are
6006   // constant or derived from a PHI node themselves.
6007   PHINode *PHI = nullptr;
6008   for (Value *Op : UseInst->operands()) {
6009     if (isa<Constant>(Op)) continue;
6010 
6011     Instruction *OpInst = dyn_cast<Instruction>(Op);
6012     if (!OpInst || !canConstantEvolve(OpInst, L)) return nullptr;
6013 
6014     PHINode *P = dyn_cast<PHINode>(OpInst);
6015     if (!P)
6016       // If this operand is already visited, reuse the prior result.
6017       // We may have P != PHI if this is the deepest point at which the
6018       // inconsistent paths meet.
6019       P = PHIMap.lookup(OpInst);
6020     if (!P) {
6021       // Recurse and memoize the results, whether a phi is found or not.
6022       // This recursive call invalidates pointers into PHIMap.
6023       P = getConstantEvolvingPHIOperands(OpInst, L, PHIMap);
6024       PHIMap[OpInst] = P;
6025     }
6026     if (!P)
6027       return nullptr;  // Not evolving from PHI
6028     if (PHI && PHI != P)
6029       return nullptr;  // Evolving from multiple different PHIs.
6030     PHI = P;
6031   }
6032   // This is a expression evolving from a constant PHI!
6033   return PHI;
6034 }
6035 
6036 /// getConstantEvolvingPHI - Given an LLVM value and a loop, return a PHI node
6037 /// in the loop that V is derived from.  We allow arbitrary operations along the
6038 /// way, but the operands of an operation must either be constants or a value
6039 /// derived from a constant PHI.  If this expression does not fit with these
6040 /// constraints, return null.
6041 static PHINode *getConstantEvolvingPHI(Value *V, const Loop *L) {
6042   Instruction *I = dyn_cast<Instruction>(V);
6043   if (!I || !canConstantEvolve(I, L)) return nullptr;
6044 
6045   if (PHINode *PN = dyn_cast<PHINode>(I))
6046     return PN;
6047 
6048   // Record non-constant instructions contained by the loop.
6049   DenseMap<Instruction *, PHINode *> PHIMap;
6050   return getConstantEvolvingPHIOperands(I, L, PHIMap);
6051 }
6052 
6053 /// EvaluateExpression - Given an expression that passes the
6054 /// getConstantEvolvingPHI predicate, evaluate its value assuming the PHI node
6055 /// in the loop has the value PHIVal.  If we can't fold this expression for some
6056 /// reason, return null.
6057 static Constant *EvaluateExpression(Value *V, const Loop *L,
6058                                     DenseMap<Instruction *, Constant *> &Vals,
6059                                     const DataLayout &DL,
6060                                     const TargetLibraryInfo *TLI) {
6061   // Convenient constant check, but redundant for recursive calls.
6062   if (Constant *C = dyn_cast<Constant>(V)) return C;
6063   Instruction *I = dyn_cast<Instruction>(V);
6064   if (!I) return nullptr;
6065 
6066   if (Constant *C = Vals.lookup(I)) return C;
6067 
6068   // An instruction inside the loop depends on a value outside the loop that we
6069   // weren't given a mapping for, or a value such as a call inside the loop.
6070   if (!canConstantEvolve(I, L)) return nullptr;
6071 
6072   // An unmapped PHI can be due to a branch or another loop inside this loop,
6073   // or due to this not being the initial iteration through a loop where we
6074   // couldn't compute the evolution of this particular PHI last time.
6075   if (isa<PHINode>(I)) return nullptr;
6076 
6077   std::vector<Constant*> Operands(I->getNumOperands());
6078 
6079   for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
6080     Instruction *Operand = dyn_cast<Instruction>(I->getOperand(i));
6081     if (!Operand) {
6082       Operands[i] = dyn_cast<Constant>(I->getOperand(i));
6083       if (!Operands[i]) return nullptr;
6084       continue;
6085     }
6086     Constant *C = EvaluateExpression(Operand, L, Vals, DL, TLI);
6087     Vals[Operand] = C;
6088     if (!C) return nullptr;
6089     Operands[i] = C;
6090   }
6091 
6092   if (CmpInst *CI = dyn_cast<CmpInst>(I))
6093     return ConstantFoldCompareInstOperands(CI->getPredicate(), Operands[0],
6094                                            Operands[1], DL, TLI);
6095   if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
6096     if (!LI->isVolatile())
6097       return ConstantFoldLoadFromConstPtr(Operands[0], LI->getType(), DL);
6098   }
6099   return ConstantFoldInstOperands(I, Operands, DL, TLI);
6100 }
6101 
6102 
6103 // If every incoming value to PN except the one for BB is a specific Constant,
6104 // return that, else return nullptr.
6105 static Constant *getOtherIncomingValue(PHINode *PN, BasicBlock *BB) {
6106   Constant *IncomingVal = nullptr;
6107 
6108   for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
6109     if (PN->getIncomingBlock(i) == BB)
6110       continue;
6111 
6112     auto *CurrentVal = dyn_cast<Constant>(PN->getIncomingValue(i));
6113     if (!CurrentVal)
6114       return nullptr;
6115 
6116     if (IncomingVal != CurrentVal) {
6117       if (IncomingVal)
6118         return nullptr;
6119       IncomingVal = CurrentVal;
6120     }
6121   }
6122 
6123   return IncomingVal;
6124 }
6125 
6126 /// getConstantEvolutionLoopExitValue - If we know that the specified Phi is
6127 /// in the header of its containing loop, we know the loop executes a
6128 /// constant number of times, and the PHI node is just a recurrence
6129 /// involving constants, fold it.
6130 Constant *
6131 ScalarEvolution::getConstantEvolutionLoopExitValue(PHINode *PN,
6132                                                    const APInt &BEs,
6133                                                    const Loop *L) {
6134   auto I = ConstantEvolutionLoopExitValue.find(PN);
6135   if (I != ConstantEvolutionLoopExitValue.end())
6136     return I->second;
6137 
6138   if (BEs.ugt(MaxBruteForceIterations))
6139     return ConstantEvolutionLoopExitValue[PN] = nullptr;  // Not going to evaluate it.
6140 
6141   Constant *&RetVal = ConstantEvolutionLoopExitValue[PN];
6142 
6143   DenseMap<Instruction *, Constant *> CurrentIterVals;
6144   BasicBlock *Header = L->getHeader();
6145   assert(PN->getParent() == Header && "Can't evaluate PHI not in loop header!");
6146 
6147   BasicBlock *Latch = L->getLoopLatch();
6148   if (!Latch)
6149     return nullptr;
6150 
6151   for (auto &I : *Header) {
6152     PHINode *PHI = dyn_cast<PHINode>(&I);
6153     if (!PHI) break;
6154     auto *StartCST = getOtherIncomingValue(PHI, Latch);
6155     if (!StartCST) continue;
6156     CurrentIterVals[PHI] = StartCST;
6157   }
6158   if (!CurrentIterVals.count(PN))
6159     return RetVal = nullptr;
6160 
6161   Value *BEValue = PN->getIncomingValueForBlock(Latch);
6162 
6163   // Execute the loop symbolically to determine the exit value.
6164   if (BEs.getActiveBits() >= 32)
6165     return RetVal = nullptr; // More than 2^32-1 iterations?? Not doing it!
6166 
6167   unsigned NumIterations = BEs.getZExtValue(); // must be in range
6168   unsigned IterationNum = 0;
6169   const DataLayout &DL = getDataLayout();
6170   for (; ; ++IterationNum) {
6171     if (IterationNum == NumIterations)
6172       return RetVal = CurrentIterVals[PN];  // Got exit value!
6173 
6174     // Compute the value of the PHIs for the next iteration.
6175     // EvaluateExpression adds non-phi values to the CurrentIterVals map.
6176     DenseMap<Instruction *, Constant *> NextIterVals;
6177     Constant *NextPHI =
6178         EvaluateExpression(BEValue, L, CurrentIterVals, DL, &TLI);
6179     if (!NextPHI)
6180       return nullptr;        // Couldn't evaluate!
6181     NextIterVals[PN] = NextPHI;
6182 
6183     bool StoppedEvolving = NextPHI == CurrentIterVals[PN];
6184 
6185     // Also evaluate the other PHI nodes.  However, we don't get to stop if we
6186     // cease to be able to evaluate one of them or if they stop evolving,
6187     // because that doesn't necessarily prevent us from computing PN.
6188     SmallVector<std::pair<PHINode *, Constant *>, 8> PHIsToCompute;
6189     for (const auto &I : CurrentIterVals) {
6190       PHINode *PHI = dyn_cast<PHINode>(I.first);
6191       if (!PHI || PHI == PN || PHI->getParent() != Header) continue;
6192       PHIsToCompute.emplace_back(PHI, I.second);
6193     }
6194     // We use two distinct loops because EvaluateExpression may invalidate any
6195     // iterators into CurrentIterVals.
6196     for (const auto &I : PHIsToCompute) {
6197       PHINode *PHI = I.first;
6198       Constant *&NextPHI = NextIterVals[PHI];
6199       if (!NextPHI) {   // Not already computed.
6200         Value *BEValue = PHI->getIncomingValueForBlock(Latch);
6201         NextPHI = EvaluateExpression(BEValue, L, CurrentIterVals, DL, &TLI);
6202       }
6203       if (NextPHI != I.second)
6204         StoppedEvolving = false;
6205     }
6206 
6207     // If all entries in CurrentIterVals == NextIterVals then we can stop
6208     // iterating, the loop can't continue to change.
6209     if (StoppedEvolving)
6210       return RetVal = CurrentIterVals[PN];
6211 
6212     CurrentIterVals.swap(NextIterVals);
6213   }
6214 }
6215 
6216 const SCEV *ScalarEvolution::computeExitCountExhaustively(const Loop *L,
6217                                                           Value *Cond,
6218                                                           bool ExitWhen) {
6219   PHINode *PN = getConstantEvolvingPHI(Cond, L);
6220   if (!PN) return getCouldNotCompute();
6221 
6222   // If the loop is canonicalized, the PHI will have exactly two entries.
6223   // That's the only form we support here.
6224   if (PN->getNumIncomingValues() != 2) return getCouldNotCompute();
6225 
6226   DenseMap<Instruction *, Constant *> CurrentIterVals;
6227   BasicBlock *Header = L->getHeader();
6228   assert(PN->getParent() == Header && "Can't evaluate PHI not in loop header!");
6229 
6230   BasicBlock *Latch = L->getLoopLatch();
6231   assert(Latch && "Should follow from NumIncomingValues == 2!");
6232 
6233   for (auto &I : *Header) {
6234     PHINode *PHI = dyn_cast<PHINode>(&I);
6235     if (!PHI)
6236       break;
6237     auto *StartCST = getOtherIncomingValue(PHI, Latch);
6238     if (!StartCST) continue;
6239     CurrentIterVals[PHI] = StartCST;
6240   }
6241   if (!CurrentIterVals.count(PN))
6242     return getCouldNotCompute();
6243 
6244   // Okay, we find a PHI node that defines the trip count of this loop.  Execute
6245   // the loop symbolically to determine when the condition gets a value of
6246   // "ExitWhen".
6247   unsigned MaxIterations = MaxBruteForceIterations;   // Limit analysis.
6248   const DataLayout &DL = getDataLayout();
6249   for (unsigned IterationNum = 0; IterationNum != MaxIterations;++IterationNum){
6250     auto *CondVal = dyn_cast_or_null<ConstantInt>(
6251         EvaluateExpression(Cond, L, CurrentIterVals, DL, &TLI));
6252 
6253     // Couldn't symbolically evaluate.
6254     if (!CondVal) return getCouldNotCompute();
6255 
6256     if (CondVal->getValue() == uint64_t(ExitWhen)) {
6257       ++NumBruteForceTripCountsComputed;
6258       return getConstant(Type::getInt32Ty(getContext()), IterationNum);
6259     }
6260 
6261     // Update all the PHI nodes for the next iteration.
6262     DenseMap<Instruction *, Constant *> NextIterVals;
6263 
6264     // Create a list of which PHIs we need to compute. We want to do this before
6265     // calling EvaluateExpression on them because that may invalidate iterators
6266     // into CurrentIterVals.
6267     SmallVector<PHINode *, 8> PHIsToCompute;
6268     for (const auto &I : CurrentIterVals) {
6269       PHINode *PHI = dyn_cast<PHINode>(I.first);
6270       if (!PHI || PHI->getParent() != Header) continue;
6271       PHIsToCompute.push_back(PHI);
6272     }
6273     for (PHINode *PHI : PHIsToCompute) {
6274       Constant *&NextPHI = NextIterVals[PHI];
6275       if (NextPHI) continue;    // Already computed!
6276 
6277       Value *BEValue = PHI->getIncomingValueForBlock(Latch);
6278       NextPHI = EvaluateExpression(BEValue, L, CurrentIterVals, DL, &TLI);
6279     }
6280     CurrentIterVals.swap(NextIterVals);
6281   }
6282 
6283   // Too many iterations were needed to evaluate.
6284   return getCouldNotCompute();
6285 }
6286 
6287 /// getSCEVAtScope - Return a SCEV expression for the specified value
6288 /// at the specified scope in the program.  The L value specifies a loop
6289 /// nest to evaluate the expression at, where null is the top-level or a
6290 /// specified loop is immediately inside of the loop.
6291 ///
6292 /// This method can be used to compute the exit value for a variable defined
6293 /// in a loop by querying what the value will hold in the parent loop.
6294 ///
6295 /// In the case that a relevant loop exit value cannot be computed, the
6296 /// original value V is returned.
6297 const SCEV *ScalarEvolution::getSCEVAtScope(const SCEV *V, const Loop *L) {
6298   SmallVector<std::pair<const Loop *, const SCEV *>, 2> &Values =
6299       ValuesAtScopes[V];
6300   // Check to see if we've folded this expression at this loop before.
6301   for (auto &LS : Values)
6302     if (LS.first == L)
6303       return LS.second ? LS.second : V;
6304 
6305   Values.emplace_back(L, nullptr);
6306 
6307   // Otherwise compute it.
6308   const SCEV *C = computeSCEVAtScope(V, L);
6309   for (auto &LS : reverse(ValuesAtScopes[V]))
6310     if (LS.first == L) {
6311       LS.second = C;
6312       break;
6313     }
6314   return C;
6315 }
6316 
6317 /// This builds up a Constant using the ConstantExpr interface.  That way, we
6318 /// will return Constants for objects which aren't represented by a
6319 /// SCEVConstant, because SCEVConstant is restricted to ConstantInt.
6320 /// Returns NULL if the SCEV isn't representable as a Constant.
6321 static Constant *BuildConstantFromSCEV(const SCEV *V) {
6322   switch (static_cast<SCEVTypes>(V->getSCEVType())) {
6323     case scCouldNotCompute:
6324     case scAddRecExpr:
6325       break;
6326     case scConstant:
6327       return cast<SCEVConstant>(V)->getValue();
6328     case scUnknown:
6329       return dyn_cast<Constant>(cast<SCEVUnknown>(V)->getValue());
6330     case scSignExtend: {
6331       const SCEVSignExtendExpr *SS = cast<SCEVSignExtendExpr>(V);
6332       if (Constant *CastOp = BuildConstantFromSCEV(SS->getOperand()))
6333         return ConstantExpr::getSExt(CastOp, SS->getType());
6334       break;
6335     }
6336     case scZeroExtend: {
6337       const SCEVZeroExtendExpr *SZ = cast<SCEVZeroExtendExpr>(V);
6338       if (Constant *CastOp = BuildConstantFromSCEV(SZ->getOperand()))
6339         return ConstantExpr::getZExt(CastOp, SZ->getType());
6340       break;
6341     }
6342     case scTruncate: {
6343       const SCEVTruncateExpr *ST = cast<SCEVTruncateExpr>(V);
6344       if (Constant *CastOp = BuildConstantFromSCEV(ST->getOperand()))
6345         return ConstantExpr::getTrunc(CastOp, ST->getType());
6346       break;
6347     }
6348     case scAddExpr: {
6349       const SCEVAddExpr *SA = cast<SCEVAddExpr>(V);
6350       if (Constant *C = BuildConstantFromSCEV(SA->getOperand(0))) {
6351         if (PointerType *PTy = dyn_cast<PointerType>(C->getType())) {
6352           unsigned AS = PTy->getAddressSpace();
6353           Type *DestPtrTy = Type::getInt8PtrTy(C->getContext(), AS);
6354           C = ConstantExpr::getBitCast(C, DestPtrTy);
6355         }
6356         for (unsigned i = 1, e = SA->getNumOperands(); i != e; ++i) {
6357           Constant *C2 = BuildConstantFromSCEV(SA->getOperand(i));
6358           if (!C2) return nullptr;
6359 
6360           // First pointer!
6361           if (!C->getType()->isPointerTy() && C2->getType()->isPointerTy()) {
6362             unsigned AS = C2->getType()->getPointerAddressSpace();
6363             std::swap(C, C2);
6364             Type *DestPtrTy = Type::getInt8PtrTy(C->getContext(), AS);
6365             // The offsets have been converted to bytes.  We can add bytes to an
6366             // i8* by GEP with the byte count in the first index.
6367             C = ConstantExpr::getBitCast(C, DestPtrTy);
6368           }
6369 
6370           // Don't bother trying to sum two pointers. We probably can't
6371           // statically compute a load that results from it anyway.
6372           if (C2->getType()->isPointerTy())
6373             return nullptr;
6374 
6375           if (PointerType *PTy = dyn_cast<PointerType>(C->getType())) {
6376             if (PTy->getElementType()->isStructTy())
6377               C2 = ConstantExpr::getIntegerCast(
6378                   C2, Type::getInt32Ty(C->getContext()), true);
6379             C = ConstantExpr::getGetElementPtr(PTy->getElementType(), C, C2);
6380           } else
6381             C = ConstantExpr::getAdd(C, C2);
6382         }
6383         return C;
6384       }
6385       break;
6386     }
6387     case scMulExpr: {
6388       const SCEVMulExpr *SM = cast<SCEVMulExpr>(V);
6389       if (Constant *C = BuildConstantFromSCEV(SM->getOperand(0))) {
6390         // Don't bother with pointers at all.
6391         if (C->getType()->isPointerTy()) return nullptr;
6392         for (unsigned i = 1, e = SM->getNumOperands(); i != e; ++i) {
6393           Constant *C2 = BuildConstantFromSCEV(SM->getOperand(i));
6394           if (!C2 || C2->getType()->isPointerTy()) return nullptr;
6395           C = ConstantExpr::getMul(C, C2);
6396         }
6397         return C;
6398       }
6399       break;
6400     }
6401     case scUDivExpr: {
6402       const SCEVUDivExpr *SU = cast<SCEVUDivExpr>(V);
6403       if (Constant *LHS = BuildConstantFromSCEV(SU->getLHS()))
6404         if (Constant *RHS = BuildConstantFromSCEV(SU->getRHS()))
6405           if (LHS->getType() == RHS->getType())
6406             return ConstantExpr::getUDiv(LHS, RHS);
6407       break;
6408     }
6409     case scSMaxExpr:
6410     case scUMaxExpr:
6411       break; // TODO: smax, umax.
6412   }
6413   return nullptr;
6414 }
6415 
6416 const SCEV *ScalarEvolution::computeSCEVAtScope(const SCEV *V, const Loop *L) {
6417   if (isa<SCEVConstant>(V)) return V;
6418 
6419   // If this instruction is evolved from a constant-evolving PHI, compute the
6420   // exit value from the loop without using SCEVs.
6421   if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(V)) {
6422     if (Instruction *I = dyn_cast<Instruction>(SU->getValue())) {
6423       const Loop *LI = this->LI[I->getParent()];
6424       if (LI && LI->getParentLoop() == L)  // Looking for loop exit value.
6425         if (PHINode *PN = dyn_cast<PHINode>(I))
6426           if (PN->getParent() == LI->getHeader()) {
6427             // Okay, there is no closed form solution for the PHI node.  Check
6428             // to see if the loop that contains it has a known backedge-taken
6429             // count.  If so, we may be able to force computation of the exit
6430             // value.
6431             const SCEV *BackedgeTakenCount = getBackedgeTakenCount(LI);
6432             if (const SCEVConstant *BTCC =
6433                   dyn_cast<SCEVConstant>(BackedgeTakenCount)) {
6434               // Okay, we know how many times the containing loop executes.  If
6435               // this is a constant evolving PHI node, get the final value at
6436               // the specified iteration number.
6437               Constant *RV =
6438                   getConstantEvolutionLoopExitValue(PN, BTCC->getAPInt(), LI);
6439               if (RV) return getSCEV(RV);
6440             }
6441           }
6442 
6443       // Okay, this is an expression that we cannot symbolically evaluate
6444       // into a SCEV.  Check to see if it's possible to symbolically evaluate
6445       // the arguments into constants, and if so, try to constant propagate the
6446       // result.  This is particularly useful for computing loop exit values.
6447       if (CanConstantFold(I)) {
6448         SmallVector<Constant *, 4> Operands;
6449         bool MadeImprovement = false;
6450         for (Value *Op : I->operands()) {
6451           if (Constant *C = dyn_cast<Constant>(Op)) {
6452             Operands.push_back(C);
6453             continue;
6454           }
6455 
6456           // If any of the operands is non-constant and if they are
6457           // non-integer and non-pointer, don't even try to analyze them
6458           // with scev techniques.
6459           if (!isSCEVable(Op->getType()))
6460             return V;
6461 
6462           const SCEV *OrigV = getSCEV(Op);
6463           const SCEV *OpV = getSCEVAtScope(OrigV, L);
6464           MadeImprovement |= OrigV != OpV;
6465 
6466           Constant *C = BuildConstantFromSCEV(OpV);
6467           if (!C) return V;
6468           if (C->getType() != Op->getType())
6469             C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
6470                                                               Op->getType(),
6471                                                               false),
6472                                       C, Op->getType());
6473           Operands.push_back(C);
6474         }
6475 
6476         // Check to see if getSCEVAtScope actually made an improvement.
6477         if (MadeImprovement) {
6478           Constant *C = nullptr;
6479           const DataLayout &DL = getDataLayout();
6480           if (const CmpInst *CI = dyn_cast<CmpInst>(I))
6481             C = ConstantFoldCompareInstOperands(CI->getPredicate(), Operands[0],
6482                                                 Operands[1], DL, &TLI);
6483           else if (const LoadInst *LI = dyn_cast<LoadInst>(I)) {
6484             if (!LI->isVolatile())
6485               C = ConstantFoldLoadFromConstPtr(Operands[0], LI->getType(), DL);
6486           } else
6487             C = ConstantFoldInstOperands(I, Operands, DL, &TLI);
6488           if (!C) return V;
6489           return getSCEV(C);
6490         }
6491       }
6492     }
6493 
6494     // This is some other type of SCEVUnknown, just return it.
6495     return V;
6496   }
6497 
6498   if (const SCEVCommutativeExpr *Comm = dyn_cast<SCEVCommutativeExpr>(V)) {
6499     // Avoid performing the look-up in the common case where the specified
6500     // expression has no loop-variant portions.
6501     for (unsigned i = 0, e = Comm->getNumOperands(); i != e; ++i) {
6502       const SCEV *OpAtScope = getSCEVAtScope(Comm->getOperand(i), L);
6503       if (OpAtScope != Comm->getOperand(i)) {
6504         // Okay, at least one of these operands is loop variant but might be
6505         // foldable.  Build a new instance of the folded commutative expression.
6506         SmallVector<const SCEV *, 8> NewOps(Comm->op_begin(),
6507                                             Comm->op_begin()+i);
6508         NewOps.push_back(OpAtScope);
6509 
6510         for (++i; i != e; ++i) {
6511           OpAtScope = getSCEVAtScope(Comm->getOperand(i), L);
6512           NewOps.push_back(OpAtScope);
6513         }
6514         if (isa<SCEVAddExpr>(Comm))
6515           return getAddExpr(NewOps);
6516         if (isa<SCEVMulExpr>(Comm))
6517           return getMulExpr(NewOps);
6518         if (isa<SCEVSMaxExpr>(Comm))
6519           return getSMaxExpr(NewOps);
6520         if (isa<SCEVUMaxExpr>(Comm))
6521           return getUMaxExpr(NewOps);
6522         llvm_unreachable("Unknown commutative SCEV type!");
6523       }
6524     }
6525     // If we got here, all operands are loop invariant.
6526     return Comm;
6527   }
6528 
6529   if (const SCEVUDivExpr *Div = dyn_cast<SCEVUDivExpr>(V)) {
6530     const SCEV *LHS = getSCEVAtScope(Div->getLHS(), L);
6531     const SCEV *RHS = getSCEVAtScope(Div->getRHS(), L);
6532     if (LHS == Div->getLHS() && RHS == Div->getRHS())
6533       return Div;   // must be loop invariant
6534     return getUDivExpr(LHS, RHS);
6535   }
6536 
6537   // If this is a loop recurrence for a loop that does not contain L, then we
6538   // are dealing with the final value computed by the loop.
6539   if (const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(V)) {
6540     // First, attempt to evaluate each operand.
6541     // Avoid performing the look-up in the common case where the specified
6542     // expression has no loop-variant portions.
6543     for (unsigned i = 0, e = AddRec->getNumOperands(); i != e; ++i) {
6544       const SCEV *OpAtScope = getSCEVAtScope(AddRec->getOperand(i), L);
6545       if (OpAtScope == AddRec->getOperand(i))
6546         continue;
6547 
6548       // Okay, at least one of these operands is loop variant but might be
6549       // foldable.  Build a new instance of the folded commutative expression.
6550       SmallVector<const SCEV *, 8> NewOps(AddRec->op_begin(),
6551                                           AddRec->op_begin()+i);
6552       NewOps.push_back(OpAtScope);
6553       for (++i; i != e; ++i)
6554         NewOps.push_back(getSCEVAtScope(AddRec->getOperand(i), L));
6555 
6556       const SCEV *FoldedRec =
6557         getAddRecExpr(NewOps, AddRec->getLoop(),
6558                       AddRec->getNoWrapFlags(SCEV::FlagNW));
6559       AddRec = dyn_cast<SCEVAddRecExpr>(FoldedRec);
6560       // The addrec may be folded to a nonrecurrence, for example, if the
6561       // induction variable is multiplied by zero after constant folding. Go
6562       // ahead and return the folded value.
6563       if (!AddRec)
6564         return FoldedRec;
6565       break;
6566     }
6567 
6568     // If the scope is outside the addrec's loop, evaluate it by using the
6569     // loop exit value of the addrec.
6570     if (!AddRec->getLoop()->contains(L)) {
6571       // To evaluate this recurrence, we need to know how many times the AddRec
6572       // loop iterates.  Compute this now.
6573       const SCEV *BackedgeTakenCount = getBackedgeTakenCount(AddRec->getLoop());
6574       if (BackedgeTakenCount == getCouldNotCompute()) return AddRec;
6575 
6576       // Then, evaluate the AddRec.
6577       return AddRec->evaluateAtIteration(BackedgeTakenCount, *this);
6578     }
6579 
6580     return AddRec;
6581   }
6582 
6583   if (const SCEVZeroExtendExpr *Cast = dyn_cast<SCEVZeroExtendExpr>(V)) {
6584     const SCEV *Op = getSCEVAtScope(Cast->getOperand(), L);
6585     if (Op == Cast->getOperand())
6586       return Cast;  // must be loop invariant
6587     return getZeroExtendExpr(Op, Cast->getType());
6588   }
6589 
6590   if (const SCEVSignExtendExpr *Cast = dyn_cast<SCEVSignExtendExpr>(V)) {
6591     const SCEV *Op = getSCEVAtScope(Cast->getOperand(), L);
6592     if (Op == Cast->getOperand())
6593       return Cast;  // must be loop invariant
6594     return getSignExtendExpr(Op, Cast->getType());
6595   }
6596 
6597   if (const SCEVTruncateExpr *Cast = dyn_cast<SCEVTruncateExpr>(V)) {
6598     const SCEV *Op = getSCEVAtScope(Cast->getOperand(), L);
6599     if (Op == Cast->getOperand())
6600       return Cast;  // must be loop invariant
6601     return getTruncateExpr(Op, Cast->getType());
6602   }
6603 
6604   llvm_unreachable("Unknown SCEV type!");
6605 }
6606 
6607 /// getSCEVAtScope - This is a convenience function which does
6608 /// getSCEVAtScope(getSCEV(V), L).
6609 const SCEV *ScalarEvolution::getSCEVAtScope(Value *V, const Loop *L) {
6610   return getSCEVAtScope(getSCEV(V), L);
6611 }
6612 
6613 /// SolveLinEquationWithOverflow - Finds the minimum unsigned root of the
6614 /// following equation:
6615 ///
6616 ///     A * X = B (mod N)
6617 ///
6618 /// where N = 2^BW and BW is the common bit width of A and B. The signedness of
6619 /// A and B isn't important.
6620 ///
6621 /// If the equation does not have a solution, SCEVCouldNotCompute is returned.
6622 static const SCEV *SolveLinEquationWithOverflow(const APInt &A, const APInt &B,
6623                                                ScalarEvolution &SE) {
6624   uint32_t BW = A.getBitWidth();
6625   assert(BW == B.getBitWidth() && "Bit widths must be the same.");
6626   assert(A != 0 && "A must be non-zero.");
6627 
6628   // 1. D = gcd(A, N)
6629   //
6630   // The gcd of A and N may have only one prime factor: 2. The number of
6631   // trailing zeros in A is its multiplicity
6632   uint32_t Mult2 = A.countTrailingZeros();
6633   // D = 2^Mult2
6634 
6635   // 2. Check if B is divisible by D.
6636   //
6637   // B is divisible by D if and only if the multiplicity of prime factor 2 for B
6638   // is not less than multiplicity of this prime factor for D.
6639   if (B.countTrailingZeros() < Mult2)
6640     return SE.getCouldNotCompute();
6641 
6642   // 3. Compute I: the multiplicative inverse of (A / D) in arithmetic
6643   // modulo (N / D).
6644   //
6645   // (N / D) may need BW+1 bits in its representation.  Hence, we'll use this
6646   // bit width during computations.
6647   APInt AD = A.lshr(Mult2).zext(BW + 1);  // AD = A / D
6648   APInt Mod(BW + 1, 0);
6649   Mod.setBit(BW - Mult2);  // Mod = N / D
6650   APInt I = AD.multiplicativeInverse(Mod);
6651 
6652   // 4. Compute the minimum unsigned root of the equation:
6653   // I * (B / D) mod (N / D)
6654   APInt Result = (I * B.lshr(Mult2).zext(BW + 1)).urem(Mod);
6655 
6656   // The result is guaranteed to be less than 2^BW so we may truncate it to BW
6657   // bits.
6658   return SE.getConstant(Result.trunc(BW));
6659 }
6660 
6661 /// SolveQuadraticEquation - Find the roots of the quadratic equation for the
6662 /// given quadratic chrec {L,+,M,+,N}.  This returns either the two roots (which
6663 /// might be the same) or two SCEVCouldNotCompute objects.
6664 ///
6665 static std::pair<const SCEV *,const SCEV *>
6666 SolveQuadraticEquation(const SCEVAddRecExpr *AddRec, ScalarEvolution &SE) {
6667   assert(AddRec->getNumOperands() == 3 && "This is not a quadratic chrec!");
6668   const SCEVConstant *LC = dyn_cast<SCEVConstant>(AddRec->getOperand(0));
6669   const SCEVConstant *MC = dyn_cast<SCEVConstant>(AddRec->getOperand(1));
6670   const SCEVConstant *NC = dyn_cast<SCEVConstant>(AddRec->getOperand(2));
6671 
6672   // We currently can only solve this if the coefficients are constants.
6673   if (!LC || !MC || !NC) {
6674     const SCEV *CNC = SE.getCouldNotCompute();
6675     return {CNC, CNC};
6676   }
6677 
6678   uint32_t BitWidth = LC->getAPInt().getBitWidth();
6679   const APInt &L = LC->getAPInt();
6680   const APInt &M = MC->getAPInt();
6681   const APInt &N = NC->getAPInt();
6682   APInt Two(BitWidth, 2);
6683   APInt Four(BitWidth, 4);
6684 
6685   {
6686     using namespace APIntOps;
6687     const APInt& C = L;
6688     // Convert from chrec coefficients to polynomial coefficients AX^2+BX+C
6689     // The B coefficient is M-N/2
6690     APInt B(M);
6691     B -= sdiv(N,Two);
6692 
6693     // The A coefficient is N/2
6694     APInt A(N.sdiv(Two));
6695 
6696     // Compute the B^2-4ac term.
6697     APInt SqrtTerm(B);
6698     SqrtTerm *= B;
6699     SqrtTerm -= Four * (A * C);
6700 
6701     if (SqrtTerm.isNegative()) {
6702       // The loop is provably infinite.
6703       const SCEV *CNC = SE.getCouldNotCompute();
6704       return {CNC, CNC};
6705     }
6706 
6707     // Compute sqrt(B^2-4ac). This is guaranteed to be the nearest
6708     // integer value or else APInt::sqrt() will assert.
6709     APInt SqrtVal(SqrtTerm.sqrt());
6710 
6711     // Compute the two solutions for the quadratic formula.
6712     // The divisions must be performed as signed divisions.
6713     APInt NegB(-B);
6714     APInt TwoA(A << 1);
6715     if (TwoA.isMinValue()) {
6716       const SCEV *CNC = SE.getCouldNotCompute();
6717       return {CNC, CNC};
6718     }
6719 
6720     LLVMContext &Context = SE.getContext();
6721 
6722     ConstantInt *Solution1 =
6723       ConstantInt::get(Context, (NegB + SqrtVal).sdiv(TwoA));
6724     ConstantInt *Solution2 =
6725       ConstantInt::get(Context, (NegB - SqrtVal).sdiv(TwoA));
6726 
6727     return {SE.getConstant(Solution1), SE.getConstant(Solution2)};
6728   } // end APIntOps namespace
6729 }
6730 
6731 /// HowFarToZero - Return the number of times a backedge comparing the specified
6732 /// value to zero will execute.  If not computable, return CouldNotCompute.
6733 ///
6734 /// This is only used for loops with a "x != y" exit test. The exit condition is
6735 /// now expressed as a single expression, V = x-y. So the exit test is
6736 /// effectively V != 0.  We know and take advantage of the fact that this
6737 /// expression only being used in a comparison by zero context.
6738 ScalarEvolution::ExitLimit
6739 ScalarEvolution::HowFarToZero(const SCEV *V, const Loop *L, bool ControlsExit) {
6740   // If the value is a constant
6741   if (const SCEVConstant *C = dyn_cast<SCEVConstant>(V)) {
6742     // If the value is already zero, the branch will execute zero times.
6743     if (C->getValue()->isZero()) return C;
6744     return getCouldNotCompute();  // Otherwise it will loop infinitely.
6745   }
6746 
6747   const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(V);
6748   if (!AddRec || AddRec->getLoop() != L)
6749     return getCouldNotCompute();
6750 
6751   // If this is a quadratic (3-term) AddRec {L,+,M,+,N}, find the roots of
6752   // the quadratic equation to solve it.
6753   if (AddRec->isQuadratic() && AddRec->getType()->isIntegerTy()) {
6754     std::pair<const SCEV *,const SCEV *> Roots =
6755       SolveQuadraticEquation(AddRec, *this);
6756     const SCEVConstant *R1 = dyn_cast<SCEVConstant>(Roots.first);
6757     const SCEVConstant *R2 = dyn_cast<SCEVConstant>(Roots.second);
6758     if (R1 && R2) {
6759       // Pick the smallest positive root value.
6760       if (ConstantInt *CB =
6761           dyn_cast<ConstantInt>(ConstantExpr::getICmp(CmpInst::ICMP_ULT,
6762                                                       R1->getValue(),
6763                                                       R2->getValue()))) {
6764         if (!CB->getZExtValue())
6765           std::swap(R1, R2);   // R1 is the minimum root now.
6766 
6767         // We can only use this value if the chrec ends up with an exact zero
6768         // value at this index.  When solving for "X*X != 5", for example, we
6769         // should not accept a root of 2.
6770         const SCEV *Val = AddRec->evaluateAtIteration(R1, *this);
6771         if (Val->isZero())
6772           return R1;  // We found a quadratic root!
6773       }
6774     }
6775     return getCouldNotCompute();
6776   }
6777 
6778   // Otherwise we can only handle this if it is affine.
6779   if (!AddRec->isAffine())
6780     return getCouldNotCompute();
6781 
6782   // If this is an affine expression, the execution count of this branch is
6783   // the minimum unsigned root of the following equation:
6784   //
6785   //     Start + Step*N = 0 (mod 2^BW)
6786   //
6787   // equivalent to:
6788   //
6789   //             Step*N = -Start (mod 2^BW)
6790   //
6791   // where BW is the common bit width of Start and Step.
6792 
6793   // Get the initial value for the loop.
6794   const SCEV *Start = getSCEVAtScope(AddRec->getStart(), L->getParentLoop());
6795   const SCEV *Step = getSCEVAtScope(AddRec->getOperand(1), L->getParentLoop());
6796 
6797   // For now we handle only constant steps.
6798   //
6799   // TODO: Handle a nonconstant Step given AddRec<NUW>. If the
6800   // AddRec is NUW, then (in an unsigned sense) it cannot be counting up to wrap
6801   // to 0, it must be counting down to equal 0. Consequently, N = Start / -Step.
6802   // We have not yet seen any such cases.
6803   const SCEVConstant *StepC = dyn_cast<SCEVConstant>(Step);
6804   if (!StepC || StepC->getValue()->equalsInt(0))
6805     return getCouldNotCompute();
6806 
6807   // For positive steps (counting up until unsigned overflow):
6808   //   N = -Start/Step (as unsigned)
6809   // For negative steps (counting down to zero):
6810   //   N = Start/-Step
6811   // First compute the unsigned distance from zero in the direction of Step.
6812   bool CountDown = StepC->getAPInt().isNegative();
6813   const SCEV *Distance = CountDown ? Start : getNegativeSCEV(Start);
6814 
6815   // Handle unitary steps, which cannot wraparound.
6816   // 1*N = -Start; -1*N = Start (mod 2^BW), so:
6817   //   N = Distance (as unsigned)
6818   if (StepC->getValue()->equalsInt(1) || StepC->getValue()->isAllOnesValue()) {
6819     ConstantRange CR = getUnsignedRange(Start);
6820     const SCEV *MaxBECount;
6821     if (!CountDown && CR.getUnsignedMin().isMinValue())
6822       // When counting up, the worst starting value is 1, not 0.
6823       MaxBECount = CR.getUnsignedMax().isMinValue()
6824         ? getConstant(APInt::getMinValue(CR.getBitWidth()))
6825         : getConstant(APInt::getMaxValue(CR.getBitWidth()));
6826     else
6827       MaxBECount = getConstant(CountDown ? CR.getUnsignedMax()
6828                                          : -CR.getUnsignedMin());
6829     return ExitLimit(Distance, MaxBECount);
6830   }
6831 
6832   // As a special case, handle the instance where Step is a positive power of
6833   // two. In this case, determining whether Step divides Distance evenly can be
6834   // done by counting and comparing the number of trailing zeros of Step and
6835   // Distance.
6836   if (!CountDown) {
6837     const APInt &StepV = StepC->getAPInt();
6838     // StepV.isPowerOf2() returns true if StepV is an positive power of two.  It
6839     // also returns true if StepV is maximally negative (eg, INT_MIN), but that
6840     // case is not handled as this code is guarded by !CountDown.
6841     if (StepV.isPowerOf2() &&
6842         GetMinTrailingZeros(Distance) >= StepV.countTrailingZeros()) {
6843       // Here we've constrained the equation to be of the form
6844       //
6845       //   2^(N + k) * Distance' = (StepV == 2^N) * X (mod 2^W)  ... (0)
6846       //
6847       // where we're operating on a W bit wide integer domain and k is
6848       // non-negative.  The smallest unsigned solution for X is the trip count.
6849       //
6850       // (0) is equivalent to:
6851       //
6852       //      2^(N + k) * Distance' - 2^N * X = L * 2^W
6853       // <=>  2^N(2^k * Distance' - X) = L * 2^(W - N) * 2^N
6854       // <=>  2^k * Distance' - X = L * 2^(W - N)
6855       // <=>  2^k * Distance'     = L * 2^(W - N) + X    ... (1)
6856       //
6857       // The smallest X satisfying (1) is unsigned remainder of dividing the LHS
6858       // by 2^(W - N).
6859       //
6860       // <=>  X = 2^k * Distance' URem 2^(W - N)   ... (2)
6861       //
6862       // E.g. say we're solving
6863       //
6864       //   2 * Val = 2 * X  (in i8)   ... (3)
6865       //
6866       // then from (2), we get X = Val URem i8 128 (k = 0 in this case).
6867       //
6868       // Note: It is tempting to solve (3) by setting X = Val, but Val is not
6869       // necessarily the smallest unsigned value of X that satisfies (3).
6870       // E.g. if Val is i8 -127 then the smallest value of X that satisfies (3)
6871       // is i8 1, not i8 -127
6872 
6873       const auto *ModuloResult = getUDivExactExpr(Distance, Step);
6874 
6875       // Since SCEV does not have a URem node, we construct one using a truncate
6876       // and a zero extend.
6877 
6878       unsigned NarrowWidth = StepV.getBitWidth() - StepV.countTrailingZeros();
6879       auto *NarrowTy = IntegerType::get(getContext(), NarrowWidth);
6880       auto *WideTy = Distance->getType();
6881 
6882       return getZeroExtendExpr(getTruncateExpr(ModuloResult, NarrowTy), WideTy);
6883     }
6884   }
6885 
6886   // If the condition controls loop exit (the loop exits only if the expression
6887   // is true) and the addition is no-wrap we can use unsigned divide to
6888   // compute the backedge count.  In this case, the step may not divide the
6889   // distance, but we don't care because if the condition is "missed" the loop
6890   // will have undefined behavior due to wrapping.
6891   if (ControlsExit && AddRec->hasNoSelfWrap()) {
6892     const SCEV *Exact =
6893         getUDivExpr(Distance, CountDown ? getNegativeSCEV(Step) : Step);
6894     return ExitLimit(Exact, Exact);
6895   }
6896 
6897   // Then, try to solve the above equation provided that Start is constant.
6898   if (const SCEVConstant *StartC = dyn_cast<SCEVConstant>(Start))
6899     return SolveLinEquationWithOverflow(StepC->getAPInt(), -StartC->getAPInt(),
6900                                         *this);
6901   return getCouldNotCompute();
6902 }
6903 
6904 /// HowFarToNonZero - Return the number of times a backedge checking the
6905 /// specified value for nonzero will execute.  If not computable, return
6906 /// CouldNotCompute
6907 ScalarEvolution::ExitLimit
6908 ScalarEvolution::HowFarToNonZero(const SCEV *V, const Loop *L) {
6909   // Loops that look like: while (X == 0) are very strange indeed.  We don't
6910   // handle them yet except for the trivial case.  This could be expanded in the
6911   // future as needed.
6912 
6913   // If the value is a constant, check to see if it is known to be non-zero
6914   // already.  If so, the backedge will execute zero times.
6915   if (const SCEVConstant *C = dyn_cast<SCEVConstant>(V)) {
6916     if (!C->getValue()->isNullValue())
6917       return getZero(C->getType());
6918     return getCouldNotCompute();  // Otherwise it will loop infinitely.
6919   }
6920 
6921   // We could implement others, but I really doubt anyone writes loops like
6922   // this, and if they did, they would already be constant folded.
6923   return getCouldNotCompute();
6924 }
6925 
6926 /// getPredecessorWithUniqueSuccessorForBB - Return a predecessor of BB
6927 /// (which may not be an immediate predecessor) which has exactly one
6928 /// successor from which BB is reachable, or null if no such block is
6929 /// found.
6930 ///
6931 std::pair<BasicBlock *, BasicBlock *>
6932 ScalarEvolution::getPredecessorWithUniqueSuccessorForBB(BasicBlock *BB) {
6933   // If the block has a unique predecessor, then there is no path from the
6934   // predecessor to the block that does not go through the direct edge
6935   // from the predecessor to the block.
6936   if (BasicBlock *Pred = BB->getSinglePredecessor())
6937     return {Pred, BB};
6938 
6939   // A loop's header is defined to be a block that dominates the loop.
6940   // If the header has a unique predecessor outside the loop, it must be
6941   // a block that has exactly one successor that can reach the loop.
6942   if (Loop *L = LI.getLoopFor(BB))
6943     return {L->getLoopPredecessor(), L->getHeader()};
6944 
6945   return {nullptr, nullptr};
6946 }
6947 
6948 /// HasSameValue - SCEV structural equivalence is usually sufficient for
6949 /// testing whether two expressions are equal, however for the purposes of
6950 /// looking for a condition guarding a loop, it can be useful to be a little
6951 /// more general, since a front-end may have replicated the controlling
6952 /// expression.
6953 ///
6954 static bool HasSameValue(const SCEV *A, const SCEV *B) {
6955   // Quick check to see if they are the same SCEV.
6956   if (A == B) return true;
6957 
6958   auto ComputesEqualValues = [](const Instruction *A, const Instruction *B) {
6959     // Not all instructions that are "identical" compute the same value.  For
6960     // instance, two distinct alloca instructions allocating the same type are
6961     // identical and do not read memory; but compute distinct values.
6962     return A->isIdenticalTo(B) && (isa<BinaryOperator>(A) || isa<GetElementPtrInst>(A));
6963   };
6964 
6965   // Otherwise, if they're both SCEVUnknown, it's possible that they hold
6966   // two different instructions with the same value. Check for this case.
6967   if (const SCEVUnknown *AU = dyn_cast<SCEVUnknown>(A))
6968     if (const SCEVUnknown *BU = dyn_cast<SCEVUnknown>(B))
6969       if (const Instruction *AI = dyn_cast<Instruction>(AU->getValue()))
6970         if (const Instruction *BI = dyn_cast<Instruction>(BU->getValue()))
6971           if (ComputesEqualValues(AI, BI))
6972             return true;
6973 
6974   // Otherwise assume they may have a different value.
6975   return false;
6976 }
6977 
6978 /// SimplifyICmpOperands - Simplify LHS and RHS in a comparison with
6979 /// predicate Pred. Return true iff any changes were made.
6980 ///
6981 bool ScalarEvolution::SimplifyICmpOperands(ICmpInst::Predicate &Pred,
6982                                            const SCEV *&LHS, const SCEV *&RHS,
6983                                            unsigned Depth) {
6984   bool Changed = false;
6985 
6986   // If we hit the max recursion limit bail out.
6987   if (Depth >= 3)
6988     return false;
6989 
6990   // Canonicalize a constant to the right side.
6991   if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(LHS)) {
6992     // Check for both operands constant.
6993     if (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(RHS)) {
6994       if (ConstantExpr::getICmp(Pred,
6995                                 LHSC->getValue(),
6996                                 RHSC->getValue())->isNullValue())
6997         goto trivially_false;
6998       else
6999         goto trivially_true;
7000     }
7001     // Otherwise swap the operands to put the constant on the right.
7002     std::swap(LHS, RHS);
7003     Pred = ICmpInst::getSwappedPredicate(Pred);
7004     Changed = true;
7005   }
7006 
7007   // If we're comparing an addrec with a value which is loop-invariant in the
7008   // addrec's loop, put the addrec on the left. Also make a dominance check,
7009   // as both operands could be addrecs loop-invariant in each other's loop.
7010   if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(RHS)) {
7011     const Loop *L = AR->getLoop();
7012     if (isLoopInvariant(LHS, L) && properlyDominates(LHS, L->getHeader())) {
7013       std::swap(LHS, RHS);
7014       Pred = ICmpInst::getSwappedPredicate(Pred);
7015       Changed = true;
7016     }
7017   }
7018 
7019   // If there's a constant operand, canonicalize comparisons with boundary
7020   // cases, and canonicalize *-or-equal comparisons to regular comparisons.
7021   if (const SCEVConstant *RC = dyn_cast<SCEVConstant>(RHS)) {
7022     const APInt &RA = RC->getAPInt();
7023     switch (Pred) {
7024     default: llvm_unreachable("Unexpected ICmpInst::Predicate value!");
7025     case ICmpInst::ICMP_EQ:
7026     case ICmpInst::ICMP_NE:
7027       // Fold ((-1) * %a) + %b == 0 (equivalent to %b-%a == 0) into %a == %b.
7028       if (!RA)
7029         if (const SCEVAddExpr *AE = dyn_cast<SCEVAddExpr>(LHS))
7030           if (const SCEVMulExpr *ME = dyn_cast<SCEVMulExpr>(AE->getOperand(0)))
7031             if (AE->getNumOperands() == 2 && ME->getNumOperands() == 2 &&
7032                 ME->getOperand(0)->isAllOnesValue()) {
7033               RHS = AE->getOperand(1);
7034               LHS = ME->getOperand(1);
7035               Changed = true;
7036             }
7037       break;
7038     case ICmpInst::ICMP_UGE:
7039       if ((RA - 1).isMinValue()) {
7040         Pred = ICmpInst::ICMP_NE;
7041         RHS = getConstant(RA - 1);
7042         Changed = true;
7043         break;
7044       }
7045       if (RA.isMaxValue()) {
7046         Pred = ICmpInst::ICMP_EQ;
7047         Changed = true;
7048         break;
7049       }
7050       if (RA.isMinValue()) goto trivially_true;
7051 
7052       Pred = ICmpInst::ICMP_UGT;
7053       RHS = getConstant(RA - 1);
7054       Changed = true;
7055       break;
7056     case ICmpInst::ICMP_ULE:
7057       if ((RA + 1).isMaxValue()) {
7058         Pred = ICmpInst::ICMP_NE;
7059         RHS = getConstant(RA + 1);
7060         Changed = true;
7061         break;
7062       }
7063       if (RA.isMinValue()) {
7064         Pred = ICmpInst::ICMP_EQ;
7065         Changed = true;
7066         break;
7067       }
7068       if (RA.isMaxValue()) goto trivially_true;
7069 
7070       Pred = ICmpInst::ICMP_ULT;
7071       RHS = getConstant(RA + 1);
7072       Changed = true;
7073       break;
7074     case ICmpInst::ICMP_SGE:
7075       if ((RA - 1).isMinSignedValue()) {
7076         Pred = ICmpInst::ICMP_NE;
7077         RHS = getConstant(RA - 1);
7078         Changed = true;
7079         break;
7080       }
7081       if (RA.isMaxSignedValue()) {
7082         Pred = ICmpInst::ICMP_EQ;
7083         Changed = true;
7084         break;
7085       }
7086       if (RA.isMinSignedValue()) goto trivially_true;
7087 
7088       Pred = ICmpInst::ICMP_SGT;
7089       RHS = getConstant(RA - 1);
7090       Changed = true;
7091       break;
7092     case ICmpInst::ICMP_SLE:
7093       if ((RA + 1).isMaxSignedValue()) {
7094         Pred = ICmpInst::ICMP_NE;
7095         RHS = getConstant(RA + 1);
7096         Changed = true;
7097         break;
7098       }
7099       if (RA.isMinSignedValue()) {
7100         Pred = ICmpInst::ICMP_EQ;
7101         Changed = true;
7102         break;
7103       }
7104       if (RA.isMaxSignedValue()) goto trivially_true;
7105 
7106       Pred = ICmpInst::ICMP_SLT;
7107       RHS = getConstant(RA + 1);
7108       Changed = true;
7109       break;
7110     case ICmpInst::ICMP_UGT:
7111       if (RA.isMinValue()) {
7112         Pred = ICmpInst::ICMP_NE;
7113         Changed = true;
7114         break;
7115       }
7116       if ((RA + 1).isMaxValue()) {
7117         Pred = ICmpInst::ICMP_EQ;
7118         RHS = getConstant(RA + 1);
7119         Changed = true;
7120         break;
7121       }
7122       if (RA.isMaxValue()) goto trivially_false;
7123       break;
7124     case ICmpInst::ICMP_ULT:
7125       if (RA.isMaxValue()) {
7126         Pred = ICmpInst::ICMP_NE;
7127         Changed = true;
7128         break;
7129       }
7130       if ((RA - 1).isMinValue()) {
7131         Pred = ICmpInst::ICMP_EQ;
7132         RHS = getConstant(RA - 1);
7133         Changed = true;
7134         break;
7135       }
7136       if (RA.isMinValue()) goto trivially_false;
7137       break;
7138     case ICmpInst::ICMP_SGT:
7139       if (RA.isMinSignedValue()) {
7140         Pred = ICmpInst::ICMP_NE;
7141         Changed = true;
7142         break;
7143       }
7144       if ((RA + 1).isMaxSignedValue()) {
7145         Pred = ICmpInst::ICMP_EQ;
7146         RHS = getConstant(RA + 1);
7147         Changed = true;
7148         break;
7149       }
7150       if (RA.isMaxSignedValue()) goto trivially_false;
7151       break;
7152     case ICmpInst::ICMP_SLT:
7153       if (RA.isMaxSignedValue()) {
7154         Pred = ICmpInst::ICMP_NE;
7155         Changed = true;
7156         break;
7157       }
7158       if ((RA - 1).isMinSignedValue()) {
7159        Pred = ICmpInst::ICMP_EQ;
7160        RHS = getConstant(RA - 1);
7161         Changed = true;
7162        break;
7163       }
7164       if (RA.isMinSignedValue()) goto trivially_false;
7165       break;
7166     }
7167   }
7168 
7169   // Check for obvious equality.
7170   if (HasSameValue(LHS, RHS)) {
7171     if (ICmpInst::isTrueWhenEqual(Pred))
7172       goto trivially_true;
7173     if (ICmpInst::isFalseWhenEqual(Pred))
7174       goto trivially_false;
7175   }
7176 
7177   // If possible, canonicalize GE/LE comparisons to GT/LT comparisons, by
7178   // adding or subtracting 1 from one of the operands.
7179   switch (Pred) {
7180   case ICmpInst::ICMP_SLE:
7181     if (!getSignedRange(RHS).getSignedMax().isMaxSignedValue()) {
7182       RHS = getAddExpr(getConstant(RHS->getType(), 1, true), RHS,
7183                        SCEV::FlagNSW);
7184       Pred = ICmpInst::ICMP_SLT;
7185       Changed = true;
7186     } else if (!getSignedRange(LHS).getSignedMin().isMinSignedValue()) {
7187       LHS = getAddExpr(getConstant(RHS->getType(), (uint64_t)-1, true), LHS,
7188                        SCEV::FlagNSW);
7189       Pred = ICmpInst::ICMP_SLT;
7190       Changed = true;
7191     }
7192     break;
7193   case ICmpInst::ICMP_SGE:
7194     if (!getSignedRange(RHS).getSignedMin().isMinSignedValue()) {
7195       RHS = getAddExpr(getConstant(RHS->getType(), (uint64_t)-1, true), RHS,
7196                        SCEV::FlagNSW);
7197       Pred = ICmpInst::ICMP_SGT;
7198       Changed = true;
7199     } else if (!getSignedRange(LHS).getSignedMax().isMaxSignedValue()) {
7200       LHS = getAddExpr(getConstant(RHS->getType(), 1, true), LHS,
7201                        SCEV::FlagNSW);
7202       Pred = ICmpInst::ICMP_SGT;
7203       Changed = true;
7204     }
7205     break;
7206   case ICmpInst::ICMP_ULE:
7207     if (!getUnsignedRange(RHS).getUnsignedMax().isMaxValue()) {
7208       RHS = getAddExpr(getConstant(RHS->getType(), 1, true), RHS,
7209                        SCEV::FlagNUW);
7210       Pred = ICmpInst::ICMP_ULT;
7211       Changed = true;
7212     } else if (!getUnsignedRange(LHS).getUnsignedMin().isMinValue()) {
7213       LHS = getAddExpr(getConstant(RHS->getType(), (uint64_t)-1, true), LHS);
7214       Pred = ICmpInst::ICMP_ULT;
7215       Changed = true;
7216     }
7217     break;
7218   case ICmpInst::ICMP_UGE:
7219     if (!getUnsignedRange(RHS).getUnsignedMin().isMinValue()) {
7220       RHS = getAddExpr(getConstant(RHS->getType(), (uint64_t)-1, true), RHS);
7221       Pred = ICmpInst::ICMP_UGT;
7222       Changed = true;
7223     } else if (!getUnsignedRange(LHS).getUnsignedMax().isMaxValue()) {
7224       LHS = getAddExpr(getConstant(RHS->getType(), 1, true), LHS,
7225                        SCEV::FlagNUW);
7226       Pred = ICmpInst::ICMP_UGT;
7227       Changed = true;
7228     }
7229     break;
7230   default:
7231     break;
7232   }
7233 
7234   // TODO: More simplifications are possible here.
7235 
7236   // Recursively simplify until we either hit a recursion limit or nothing
7237   // changes.
7238   if (Changed)
7239     return SimplifyICmpOperands(Pred, LHS, RHS, Depth+1);
7240 
7241   return Changed;
7242 
7243 trivially_true:
7244   // Return 0 == 0.
7245   LHS = RHS = getConstant(ConstantInt::getFalse(getContext()));
7246   Pred = ICmpInst::ICMP_EQ;
7247   return true;
7248 
7249 trivially_false:
7250   // Return 0 != 0.
7251   LHS = RHS = getConstant(ConstantInt::getFalse(getContext()));
7252   Pred = ICmpInst::ICMP_NE;
7253   return true;
7254 }
7255 
7256 bool ScalarEvolution::isKnownNegative(const SCEV *S) {
7257   return getSignedRange(S).getSignedMax().isNegative();
7258 }
7259 
7260 bool ScalarEvolution::isKnownPositive(const SCEV *S) {
7261   return getSignedRange(S).getSignedMin().isStrictlyPositive();
7262 }
7263 
7264 bool ScalarEvolution::isKnownNonNegative(const SCEV *S) {
7265   return !getSignedRange(S).getSignedMin().isNegative();
7266 }
7267 
7268 bool ScalarEvolution::isKnownNonPositive(const SCEV *S) {
7269   return !getSignedRange(S).getSignedMax().isStrictlyPositive();
7270 }
7271 
7272 bool ScalarEvolution::isKnownNonZero(const SCEV *S) {
7273   return isKnownNegative(S) || isKnownPositive(S);
7274 }
7275 
7276 bool ScalarEvolution::isKnownPredicate(ICmpInst::Predicate Pred,
7277                                        const SCEV *LHS, const SCEV *RHS) {
7278   // Canonicalize the inputs first.
7279   (void)SimplifyICmpOperands(Pred, LHS, RHS);
7280 
7281   // If LHS or RHS is an addrec, check to see if the condition is true in
7282   // every iteration of the loop.
7283   // If LHS and RHS are both addrec, both conditions must be true in
7284   // every iteration of the loop.
7285   const SCEVAddRecExpr *LAR = dyn_cast<SCEVAddRecExpr>(LHS);
7286   const SCEVAddRecExpr *RAR = dyn_cast<SCEVAddRecExpr>(RHS);
7287   bool LeftGuarded = false;
7288   bool RightGuarded = false;
7289   if (LAR) {
7290     const Loop *L = LAR->getLoop();
7291     if (isLoopEntryGuardedByCond(L, Pred, LAR->getStart(), RHS) &&
7292         isLoopBackedgeGuardedByCond(L, Pred, LAR->getPostIncExpr(*this), RHS)) {
7293       if (!RAR) return true;
7294       LeftGuarded = true;
7295     }
7296   }
7297   if (RAR) {
7298     const Loop *L = RAR->getLoop();
7299     if (isLoopEntryGuardedByCond(L, Pred, LHS, RAR->getStart()) &&
7300         isLoopBackedgeGuardedByCond(L, Pred, LHS, RAR->getPostIncExpr(*this))) {
7301       if (!LAR) return true;
7302       RightGuarded = true;
7303     }
7304   }
7305   if (LeftGuarded && RightGuarded)
7306     return true;
7307 
7308   if (isKnownPredicateViaSplitting(Pred, LHS, RHS))
7309     return true;
7310 
7311   // Otherwise see what can be done with known constant ranges.
7312   return isKnownPredicateViaConstantRanges(Pred, LHS, RHS);
7313 }
7314 
7315 bool ScalarEvolution::isMonotonicPredicate(const SCEVAddRecExpr *LHS,
7316                                            ICmpInst::Predicate Pred,
7317                                            bool &Increasing) {
7318   bool Result = isMonotonicPredicateImpl(LHS, Pred, Increasing);
7319 
7320 #ifndef NDEBUG
7321   // Verify an invariant: inverting the predicate should turn a monotonically
7322   // increasing change to a monotonically decreasing one, and vice versa.
7323   bool IncreasingSwapped;
7324   bool ResultSwapped = isMonotonicPredicateImpl(
7325       LHS, ICmpInst::getSwappedPredicate(Pred), IncreasingSwapped);
7326 
7327   assert(Result == ResultSwapped && "should be able to analyze both!");
7328   if (ResultSwapped)
7329     assert(Increasing == !IncreasingSwapped &&
7330            "monotonicity should flip as we flip the predicate");
7331 #endif
7332 
7333   return Result;
7334 }
7335 
7336 bool ScalarEvolution::isMonotonicPredicateImpl(const SCEVAddRecExpr *LHS,
7337                                                ICmpInst::Predicate Pred,
7338                                                bool &Increasing) {
7339 
7340   // A zero step value for LHS means the induction variable is essentially a
7341   // loop invariant value. We don't really depend on the predicate actually
7342   // flipping from false to true (for increasing predicates, and the other way
7343   // around for decreasing predicates), all we care about is that *if* the
7344   // predicate changes then it only changes from false to true.
7345   //
7346   // A zero step value in itself is not very useful, but there may be places
7347   // where SCEV can prove X >= 0 but not prove X > 0, so it is helpful to be
7348   // as general as possible.
7349 
7350   switch (Pred) {
7351   default:
7352     return false; // Conservative answer
7353 
7354   case ICmpInst::ICMP_UGT:
7355   case ICmpInst::ICMP_UGE:
7356   case ICmpInst::ICMP_ULT:
7357   case ICmpInst::ICMP_ULE:
7358     if (!LHS->hasNoUnsignedWrap())
7359       return false;
7360 
7361     Increasing = Pred == ICmpInst::ICMP_UGT || Pred == ICmpInst::ICMP_UGE;
7362     return true;
7363 
7364   case ICmpInst::ICMP_SGT:
7365   case ICmpInst::ICMP_SGE:
7366   case ICmpInst::ICMP_SLT:
7367   case ICmpInst::ICMP_SLE: {
7368     if (!LHS->hasNoSignedWrap())
7369       return false;
7370 
7371     const SCEV *Step = LHS->getStepRecurrence(*this);
7372 
7373     if (isKnownNonNegative(Step)) {
7374       Increasing = Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_SGE;
7375       return true;
7376     }
7377 
7378     if (isKnownNonPositive(Step)) {
7379       Increasing = Pred == ICmpInst::ICMP_SLT || Pred == ICmpInst::ICMP_SLE;
7380       return true;
7381     }
7382 
7383     return false;
7384   }
7385 
7386   }
7387 
7388   llvm_unreachable("switch has default clause!");
7389 }
7390 
7391 bool ScalarEvolution::isLoopInvariantPredicate(
7392     ICmpInst::Predicate Pred, const SCEV *LHS, const SCEV *RHS, const Loop *L,
7393     ICmpInst::Predicate &InvariantPred, const SCEV *&InvariantLHS,
7394     const SCEV *&InvariantRHS) {
7395 
7396   // If there is a loop-invariant, force it into the RHS, otherwise bail out.
7397   if (!isLoopInvariant(RHS, L)) {
7398     if (!isLoopInvariant(LHS, L))
7399       return false;
7400 
7401     std::swap(LHS, RHS);
7402     Pred = ICmpInst::getSwappedPredicate(Pred);
7403   }
7404 
7405   const SCEVAddRecExpr *ArLHS = dyn_cast<SCEVAddRecExpr>(LHS);
7406   if (!ArLHS || ArLHS->getLoop() != L)
7407     return false;
7408 
7409   bool Increasing;
7410   if (!isMonotonicPredicate(ArLHS, Pred, Increasing))
7411     return false;
7412 
7413   // If the predicate "ArLHS `Pred` RHS" monotonically increases from false to
7414   // true as the loop iterates, and the backedge is control dependent on
7415   // "ArLHS `Pred` RHS" == true then we can reason as follows:
7416   //
7417   //   * if the predicate was false in the first iteration then the predicate
7418   //     is never evaluated again, since the loop exits without taking the
7419   //     backedge.
7420   //   * if the predicate was true in the first iteration then it will
7421   //     continue to be true for all future iterations since it is
7422   //     monotonically increasing.
7423   //
7424   // For both the above possibilities, we can replace the loop varying
7425   // predicate with its value on the first iteration of the loop (which is
7426   // loop invariant).
7427   //
7428   // A similar reasoning applies for a monotonically decreasing predicate, by
7429   // replacing true with false and false with true in the above two bullets.
7430 
7431   auto P = Increasing ? Pred : ICmpInst::getInversePredicate(Pred);
7432 
7433   if (!isLoopBackedgeGuardedByCond(L, P, LHS, RHS))
7434     return false;
7435 
7436   InvariantPred = Pred;
7437   InvariantLHS = ArLHS->getStart();
7438   InvariantRHS = RHS;
7439   return true;
7440 }
7441 
7442 bool ScalarEvolution::isKnownPredicateViaConstantRanges(
7443     ICmpInst::Predicate Pred, const SCEV *LHS, const SCEV *RHS) {
7444   if (HasSameValue(LHS, RHS))
7445     return ICmpInst::isTrueWhenEqual(Pred);
7446 
7447   // This code is split out from isKnownPredicate because it is called from
7448   // within isLoopEntryGuardedByCond.
7449 
7450   auto CheckRanges =
7451       [&](const ConstantRange &RangeLHS, const ConstantRange &RangeRHS) {
7452     return ConstantRange::makeSatisfyingICmpRegion(Pred, RangeRHS)
7453         .contains(RangeLHS);
7454   };
7455 
7456   // The check at the top of the function catches the case where the values are
7457   // known to be equal.
7458   if (Pred == CmpInst::ICMP_EQ)
7459     return false;
7460 
7461   if (Pred == CmpInst::ICMP_NE)
7462     return CheckRanges(getSignedRange(LHS), getSignedRange(RHS)) ||
7463            CheckRanges(getUnsignedRange(LHS), getUnsignedRange(RHS)) ||
7464            isKnownNonZero(getMinusSCEV(LHS, RHS));
7465 
7466   if (CmpInst::isSigned(Pred))
7467     return CheckRanges(getSignedRange(LHS), getSignedRange(RHS));
7468 
7469   return CheckRanges(getUnsignedRange(LHS), getUnsignedRange(RHS));
7470 }
7471 
7472 bool ScalarEvolution::isKnownPredicateViaNoOverflow(ICmpInst::Predicate Pred,
7473                                                     const SCEV *LHS,
7474                                                     const SCEV *RHS) {
7475 
7476   // Match Result to (X + Y)<ExpectedFlags> where Y is a constant integer.
7477   // Return Y via OutY.
7478   auto MatchBinaryAddToConst =
7479       [this](const SCEV *Result, const SCEV *X, APInt &OutY,
7480              SCEV::NoWrapFlags ExpectedFlags) {
7481     const SCEV *NonConstOp, *ConstOp;
7482     SCEV::NoWrapFlags FlagsPresent;
7483 
7484     if (!splitBinaryAdd(Result, ConstOp, NonConstOp, FlagsPresent) ||
7485         !isa<SCEVConstant>(ConstOp) || NonConstOp != X)
7486       return false;
7487 
7488     OutY = cast<SCEVConstant>(ConstOp)->getAPInt();
7489     return (FlagsPresent & ExpectedFlags) == ExpectedFlags;
7490   };
7491 
7492   APInt C;
7493 
7494   switch (Pred) {
7495   default:
7496     break;
7497 
7498   case ICmpInst::ICMP_SGE:
7499     std::swap(LHS, RHS);
7500   case ICmpInst::ICMP_SLE:
7501     // X s<= (X + C)<nsw> if C >= 0
7502     if (MatchBinaryAddToConst(RHS, LHS, C, SCEV::FlagNSW) && C.isNonNegative())
7503       return true;
7504 
7505     // (X + C)<nsw> s<= X if C <= 0
7506     if (MatchBinaryAddToConst(LHS, RHS, C, SCEV::FlagNSW) &&
7507         !C.isStrictlyPositive())
7508       return true;
7509     break;
7510 
7511   case ICmpInst::ICMP_SGT:
7512     std::swap(LHS, RHS);
7513   case ICmpInst::ICMP_SLT:
7514     // X s< (X + C)<nsw> if C > 0
7515     if (MatchBinaryAddToConst(RHS, LHS, C, SCEV::FlagNSW) &&
7516         C.isStrictlyPositive())
7517       return true;
7518 
7519     // (X + C)<nsw> s< X if C < 0
7520     if (MatchBinaryAddToConst(LHS, RHS, C, SCEV::FlagNSW) && C.isNegative())
7521       return true;
7522     break;
7523   }
7524 
7525   return false;
7526 }
7527 
7528 bool ScalarEvolution::isKnownPredicateViaSplitting(ICmpInst::Predicate Pred,
7529                                                    const SCEV *LHS,
7530                                                    const SCEV *RHS) {
7531   if (Pred != ICmpInst::ICMP_ULT || ProvingSplitPredicate)
7532     return false;
7533 
7534   // Allowing arbitrary number of activations of isKnownPredicateViaSplitting on
7535   // the stack can result in exponential time complexity.
7536   SaveAndRestore<bool> Restore(ProvingSplitPredicate, true);
7537 
7538   // If L >= 0 then I `ult` L <=> I >= 0 && I `slt` L
7539   //
7540   // To prove L >= 0 we use isKnownNonNegative whereas to prove I >= 0 we use
7541   // isKnownPredicate.  isKnownPredicate is more powerful, but also more
7542   // expensive; and using isKnownNonNegative(RHS) is sufficient for most of the
7543   // interesting cases seen in practice.  We can consider "upgrading" L >= 0 to
7544   // use isKnownPredicate later if needed.
7545   return isKnownNonNegative(RHS) &&
7546          isKnownPredicate(CmpInst::ICMP_SGE, LHS, getZero(LHS->getType())) &&
7547          isKnownPredicate(CmpInst::ICMP_SLT, LHS, RHS);
7548 }
7549 
7550 /// isLoopBackedgeGuardedByCond - Test whether the backedge of the loop is
7551 /// protected by a conditional between LHS and RHS.  This is used to
7552 /// to eliminate casts.
7553 bool
7554 ScalarEvolution::isLoopBackedgeGuardedByCond(const Loop *L,
7555                                              ICmpInst::Predicate Pred,
7556                                              const SCEV *LHS, const SCEV *RHS) {
7557   // Interpret a null as meaning no loop, where there is obviously no guard
7558   // (interprocedural conditions notwithstanding).
7559   if (!L) return true;
7560 
7561   if (isKnownPredicateViaConstantRanges(Pred, LHS, RHS))
7562     return true;
7563 
7564   BasicBlock *Latch = L->getLoopLatch();
7565   if (!Latch)
7566     return false;
7567 
7568   BranchInst *LoopContinuePredicate =
7569     dyn_cast<BranchInst>(Latch->getTerminator());
7570   if (LoopContinuePredicate && LoopContinuePredicate->isConditional() &&
7571       isImpliedCond(Pred, LHS, RHS,
7572                     LoopContinuePredicate->getCondition(),
7573                     LoopContinuePredicate->getSuccessor(0) != L->getHeader()))
7574     return true;
7575 
7576   // We don't want more than one activation of the following loops on the stack
7577   // -- that can lead to O(n!) time complexity.
7578   if (WalkingBEDominatingConds)
7579     return false;
7580 
7581   SaveAndRestore<bool> ClearOnExit(WalkingBEDominatingConds, true);
7582 
7583   // See if we can exploit a trip count to prove the predicate.
7584   const auto &BETakenInfo = getBackedgeTakenInfo(L);
7585   const SCEV *LatchBECount = BETakenInfo.getExact(Latch, this);
7586   if (LatchBECount != getCouldNotCompute()) {
7587     // We know that Latch branches back to the loop header exactly
7588     // LatchBECount times.  This means the backdege condition at Latch is
7589     // equivalent to  "{0,+,1} u< LatchBECount".
7590     Type *Ty = LatchBECount->getType();
7591     auto NoWrapFlags = SCEV::NoWrapFlags(SCEV::FlagNUW | SCEV::FlagNW);
7592     const SCEV *LoopCounter =
7593       getAddRecExpr(getZero(Ty), getOne(Ty), L, NoWrapFlags);
7594     if (isImpliedCond(Pred, LHS, RHS, ICmpInst::ICMP_ULT, LoopCounter,
7595                       LatchBECount))
7596       return true;
7597   }
7598 
7599   // Check conditions due to any @llvm.assume intrinsics.
7600   for (auto &AssumeVH : AC.assumptions()) {
7601     if (!AssumeVH)
7602       continue;
7603     auto *CI = cast<CallInst>(AssumeVH);
7604     if (!DT.dominates(CI, Latch->getTerminator()))
7605       continue;
7606 
7607     if (isImpliedCond(Pred, LHS, RHS, CI->getArgOperand(0), false))
7608       return true;
7609   }
7610 
7611   // If the loop is not reachable from the entry block, we risk running into an
7612   // infinite loop as we walk up into the dom tree.  These loops do not matter
7613   // anyway, so we just return a conservative answer when we see them.
7614   if (!DT.isReachableFromEntry(L->getHeader()))
7615     return false;
7616 
7617   for (DomTreeNode *DTN = DT[Latch], *HeaderDTN = DT[L->getHeader()];
7618        DTN != HeaderDTN; DTN = DTN->getIDom()) {
7619 
7620     assert(DTN && "should reach the loop header before reaching the root!");
7621 
7622     BasicBlock *BB = DTN->getBlock();
7623     BasicBlock *PBB = BB->getSinglePredecessor();
7624     if (!PBB)
7625       continue;
7626 
7627     BranchInst *ContinuePredicate = dyn_cast<BranchInst>(PBB->getTerminator());
7628     if (!ContinuePredicate || !ContinuePredicate->isConditional())
7629       continue;
7630 
7631     Value *Condition = ContinuePredicate->getCondition();
7632 
7633     // If we have an edge `E` within the loop body that dominates the only
7634     // latch, the condition guarding `E` also guards the backedge.  This
7635     // reasoning works only for loops with a single latch.
7636 
7637     BasicBlockEdge DominatingEdge(PBB, BB);
7638     if (DominatingEdge.isSingleEdge()) {
7639       // We're constructively (and conservatively) enumerating edges within the
7640       // loop body that dominate the latch.  The dominator tree better agree
7641       // with us on this:
7642       assert(DT.dominates(DominatingEdge, Latch) && "should be!");
7643 
7644       if (isImpliedCond(Pred, LHS, RHS, Condition,
7645                         BB != ContinuePredicate->getSuccessor(0)))
7646         return true;
7647     }
7648   }
7649 
7650   return false;
7651 }
7652 
7653 /// isLoopEntryGuardedByCond - Test whether entry to the loop is protected
7654 /// by a conditional between LHS and RHS.  This is used to help avoid max
7655 /// expressions in loop trip counts, and to eliminate casts.
7656 bool
7657 ScalarEvolution::isLoopEntryGuardedByCond(const Loop *L,
7658                                           ICmpInst::Predicate Pred,
7659                                           const SCEV *LHS, const SCEV *RHS) {
7660   // Interpret a null as meaning no loop, where there is obviously no guard
7661   // (interprocedural conditions notwithstanding).
7662   if (!L) return false;
7663 
7664   if (isKnownPredicateViaConstantRanges(Pred, LHS, RHS))
7665     return true;
7666 
7667   // Starting at the loop predecessor, climb up the predecessor chain, as long
7668   // as there are predecessors that can be found that have unique successors
7669   // leading to the original header.
7670   for (std::pair<BasicBlock *, BasicBlock *>
7671          Pair(L->getLoopPredecessor(), L->getHeader());
7672        Pair.first;
7673        Pair = getPredecessorWithUniqueSuccessorForBB(Pair.first)) {
7674 
7675     BranchInst *LoopEntryPredicate =
7676       dyn_cast<BranchInst>(Pair.first->getTerminator());
7677     if (!LoopEntryPredicate ||
7678         LoopEntryPredicate->isUnconditional())
7679       continue;
7680 
7681     if (isImpliedCond(Pred, LHS, RHS,
7682                       LoopEntryPredicate->getCondition(),
7683                       LoopEntryPredicate->getSuccessor(0) != Pair.second))
7684       return true;
7685   }
7686 
7687   // Check conditions due to any @llvm.assume intrinsics.
7688   for (auto &AssumeVH : AC.assumptions()) {
7689     if (!AssumeVH)
7690       continue;
7691     auto *CI = cast<CallInst>(AssumeVH);
7692     if (!DT.dominates(CI, L->getHeader()))
7693       continue;
7694 
7695     if (isImpliedCond(Pred, LHS, RHS, CI->getArgOperand(0), false))
7696       return true;
7697   }
7698 
7699   return false;
7700 }
7701 
7702 namespace {
7703 /// RAII wrapper to prevent recursive application of isImpliedCond.
7704 /// ScalarEvolution's PendingLoopPredicates set must be empty unless we are
7705 /// currently evaluating isImpliedCond.
7706 struct MarkPendingLoopPredicate {
7707   Value *Cond;
7708   DenseSet<Value*> &LoopPreds;
7709   bool Pending;
7710 
7711   MarkPendingLoopPredicate(Value *C, DenseSet<Value*> &LP)
7712     : Cond(C), LoopPreds(LP) {
7713     Pending = !LoopPreds.insert(Cond).second;
7714   }
7715   ~MarkPendingLoopPredicate() {
7716     if (!Pending)
7717       LoopPreds.erase(Cond);
7718   }
7719 };
7720 } // end anonymous namespace
7721 
7722 /// isImpliedCond - Test whether the condition described by Pred, LHS,
7723 /// and RHS is true whenever the given Cond value evaluates to true.
7724 bool ScalarEvolution::isImpliedCond(ICmpInst::Predicate Pred,
7725                                     const SCEV *LHS, const SCEV *RHS,
7726                                     Value *FoundCondValue,
7727                                     bool Inverse) {
7728   MarkPendingLoopPredicate Mark(FoundCondValue, PendingLoopPredicates);
7729   if (Mark.Pending)
7730     return false;
7731 
7732   // Recursively handle And and Or conditions.
7733   if (BinaryOperator *BO = dyn_cast<BinaryOperator>(FoundCondValue)) {
7734     if (BO->getOpcode() == Instruction::And) {
7735       if (!Inverse)
7736         return isImpliedCond(Pred, LHS, RHS, BO->getOperand(0), Inverse) ||
7737                isImpliedCond(Pred, LHS, RHS, BO->getOperand(1), Inverse);
7738     } else if (BO->getOpcode() == Instruction::Or) {
7739       if (Inverse)
7740         return isImpliedCond(Pred, LHS, RHS, BO->getOperand(0), Inverse) ||
7741                isImpliedCond(Pred, LHS, RHS, BO->getOperand(1), Inverse);
7742     }
7743   }
7744 
7745   ICmpInst *ICI = dyn_cast<ICmpInst>(FoundCondValue);
7746   if (!ICI) return false;
7747 
7748   // Now that we found a conditional branch that dominates the loop or controls
7749   // the loop latch. Check to see if it is the comparison we are looking for.
7750   ICmpInst::Predicate FoundPred;
7751   if (Inverse)
7752     FoundPred = ICI->getInversePredicate();
7753   else
7754     FoundPred = ICI->getPredicate();
7755 
7756   const SCEV *FoundLHS = getSCEV(ICI->getOperand(0));
7757   const SCEV *FoundRHS = getSCEV(ICI->getOperand(1));
7758 
7759   return isImpliedCond(Pred, LHS, RHS, FoundPred, FoundLHS, FoundRHS);
7760 }
7761 
7762 bool ScalarEvolution::isImpliedCond(ICmpInst::Predicate Pred, const SCEV *LHS,
7763                                     const SCEV *RHS,
7764                                     ICmpInst::Predicate FoundPred,
7765                                     const SCEV *FoundLHS,
7766                                     const SCEV *FoundRHS) {
7767   // Balance the types.
7768   if (getTypeSizeInBits(LHS->getType()) <
7769       getTypeSizeInBits(FoundLHS->getType())) {
7770     if (CmpInst::isSigned(Pred)) {
7771       LHS = getSignExtendExpr(LHS, FoundLHS->getType());
7772       RHS = getSignExtendExpr(RHS, FoundLHS->getType());
7773     } else {
7774       LHS = getZeroExtendExpr(LHS, FoundLHS->getType());
7775       RHS = getZeroExtendExpr(RHS, FoundLHS->getType());
7776     }
7777   } else if (getTypeSizeInBits(LHS->getType()) >
7778       getTypeSizeInBits(FoundLHS->getType())) {
7779     if (CmpInst::isSigned(FoundPred)) {
7780       FoundLHS = getSignExtendExpr(FoundLHS, LHS->getType());
7781       FoundRHS = getSignExtendExpr(FoundRHS, LHS->getType());
7782     } else {
7783       FoundLHS = getZeroExtendExpr(FoundLHS, LHS->getType());
7784       FoundRHS = getZeroExtendExpr(FoundRHS, LHS->getType());
7785     }
7786   }
7787 
7788   // Canonicalize the query to match the way instcombine will have
7789   // canonicalized the comparison.
7790   if (SimplifyICmpOperands(Pred, LHS, RHS))
7791     if (LHS == RHS)
7792       return CmpInst::isTrueWhenEqual(Pred);
7793   if (SimplifyICmpOperands(FoundPred, FoundLHS, FoundRHS))
7794     if (FoundLHS == FoundRHS)
7795       return CmpInst::isFalseWhenEqual(FoundPred);
7796 
7797   // Check to see if we can make the LHS or RHS match.
7798   if (LHS == FoundRHS || RHS == FoundLHS) {
7799     if (isa<SCEVConstant>(RHS)) {
7800       std::swap(FoundLHS, FoundRHS);
7801       FoundPred = ICmpInst::getSwappedPredicate(FoundPred);
7802     } else {
7803       std::swap(LHS, RHS);
7804       Pred = ICmpInst::getSwappedPredicate(Pred);
7805     }
7806   }
7807 
7808   // Check whether the found predicate is the same as the desired predicate.
7809   if (FoundPred == Pred)
7810     return isImpliedCondOperands(Pred, LHS, RHS, FoundLHS, FoundRHS);
7811 
7812   // Check whether swapping the found predicate makes it the same as the
7813   // desired predicate.
7814   if (ICmpInst::getSwappedPredicate(FoundPred) == Pred) {
7815     if (isa<SCEVConstant>(RHS))
7816       return isImpliedCondOperands(Pred, LHS, RHS, FoundRHS, FoundLHS);
7817     else
7818       return isImpliedCondOperands(ICmpInst::getSwappedPredicate(Pred),
7819                                    RHS, LHS, FoundLHS, FoundRHS);
7820   }
7821 
7822   // Unsigned comparison is the same as signed comparison when both the operands
7823   // are non-negative.
7824   if (CmpInst::isUnsigned(FoundPred) &&
7825       CmpInst::getSignedPredicate(FoundPred) == Pred &&
7826       isKnownNonNegative(FoundLHS) && isKnownNonNegative(FoundRHS))
7827     return isImpliedCondOperands(Pred, LHS, RHS, FoundLHS, FoundRHS);
7828 
7829   // Check if we can make progress by sharpening ranges.
7830   if (FoundPred == ICmpInst::ICMP_NE &&
7831       (isa<SCEVConstant>(FoundLHS) || isa<SCEVConstant>(FoundRHS))) {
7832 
7833     const SCEVConstant *C = nullptr;
7834     const SCEV *V = nullptr;
7835 
7836     if (isa<SCEVConstant>(FoundLHS)) {
7837       C = cast<SCEVConstant>(FoundLHS);
7838       V = FoundRHS;
7839     } else {
7840       C = cast<SCEVConstant>(FoundRHS);
7841       V = FoundLHS;
7842     }
7843 
7844     // The guarding predicate tells us that C != V. If the known range
7845     // of V is [C, t), we can sharpen the range to [C + 1, t).  The
7846     // range we consider has to correspond to same signedness as the
7847     // predicate we're interested in folding.
7848 
7849     APInt Min = ICmpInst::isSigned(Pred) ?
7850         getSignedRange(V).getSignedMin() : getUnsignedRange(V).getUnsignedMin();
7851 
7852     if (Min == C->getAPInt()) {
7853       // Given (V >= Min && V != Min) we conclude V >= (Min + 1).
7854       // This is true even if (Min + 1) wraps around -- in case of
7855       // wraparound, (Min + 1) < Min, so (V >= Min => V >= (Min + 1)).
7856 
7857       APInt SharperMin = Min + 1;
7858 
7859       switch (Pred) {
7860         case ICmpInst::ICMP_SGE:
7861         case ICmpInst::ICMP_UGE:
7862           // We know V `Pred` SharperMin.  If this implies LHS `Pred`
7863           // RHS, we're done.
7864           if (isImpliedCondOperands(Pred, LHS, RHS, V,
7865                                     getConstant(SharperMin)))
7866             return true;
7867 
7868         case ICmpInst::ICMP_SGT:
7869         case ICmpInst::ICMP_UGT:
7870           // We know from the range information that (V `Pred` Min ||
7871           // V == Min).  We know from the guarding condition that !(V
7872           // == Min).  This gives us
7873           //
7874           //       V `Pred` Min || V == Min && !(V == Min)
7875           //   =>  V `Pred` Min
7876           //
7877           // If V `Pred` Min implies LHS `Pred` RHS, we're done.
7878 
7879           if (isImpliedCondOperands(Pred, LHS, RHS, V, getConstant(Min)))
7880             return true;
7881 
7882         default:
7883           // No change
7884           break;
7885       }
7886     }
7887   }
7888 
7889   // Check whether the actual condition is beyond sufficient.
7890   if (FoundPred == ICmpInst::ICMP_EQ)
7891     if (ICmpInst::isTrueWhenEqual(Pred))
7892       if (isImpliedCondOperands(Pred, LHS, RHS, FoundLHS, FoundRHS))
7893         return true;
7894   if (Pred == ICmpInst::ICMP_NE)
7895     if (!ICmpInst::isTrueWhenEqual(FoundPred))
7896       if (isImpliedCondOperands(FoundPred, LHS, RHS, FoundLHS, FoundRHS))
7897         return true;
7898 
7899   // Otherwise assume the worst.
7900   return false;
7901 }
7902 
7903 bool ScalarEvolution::splitBinaryAdd(const SCEV *Expr,
7904                                      const SCEV *&L, const SCEV *&R,
7905                                      SCEV::NoWrapFlags &Flags) {
7906   const auto *AE = dyn_cast<SCEVAddExpr>(Expr);
7907   if (!AE || AE->getNumOperands() != 2)
7908     return false;
7909 
7910   L = AE->getOperand(0);
7911   R = AE->getOperand(1);
7912   Flags = AE->getNoWrapFlags();
7913   return true;
7914 }
7915 
7916 bool ScalarEvolution::computeConstantDifference(const SCEV *Less,
7917                                                 const SCEV *More,
7918                                                 APInt &C) {
7919   // We avoid subtracting expressions here because this function is usually
7920   // fairly deep in the call stack (i.e. is called many times).
7921 
7922   if (isa<SCEVAddRecExpr>(Less) && isa<SCEVAddRecExpr>(More)) {
7923     const auto *LAR = cast<SCEVAddRecExpr>(Less);
7924     const auto *MAR = cast<SCEVAddRecExpr>(More);
7925 
7926     if (LAR->getLoop() != MAR->getLoop())
7927       return false;
7928 
7929     // We look at affine expressions only; not for correctness but to keep
7930     // getStepRecurrence cheap.
7931     if (!LAR->isAffine() || !MAR->isAffine())
7932       return false;
7933 
7934     if (LAR->getStepRecurrence(*this) != MAR->getStepRecurrence(*this))
7935       return false;
7936 
7937     Less = LAR->getStart();
7938     More = MAR->getStart();
7939 
7940     // fall through
7941   }
7942 
7943   if (isa<SCEVConstant>(Less) && isa<SCEVConstant>(More)) {
7944     const auto &M = cast<SCEVConstant>(More)->getAPInt();
7945     const auto &L = cast<SCEVConstant>(Less)->getAPInt();
7946     C = M - L;
7947     return true;
7948   }
7949 
7950   const SCEV *L, *R;
7951   SCEV::NoWrapFlags Flags;
7952   if (splitBinaryAdd(Less, L, R, Flags))
7953     if (const auto *LC = dyn_cast<SCEVConstant>(L))
7954       if (R == More) {
7955         C = -(LC->getAPInt());
7956         return true;
7957       }
7958 
7959   if (splitBinaryAdd(More, L, R, Flags))
7960     if (const auto *LC = dyn_cast<SCEVConstant>(L))
7961       if (R == Less) {
7962         C = LC->getAPInt();
7963         return true;
7964       }
7965 
7966   return false;
7967 }
7968 
7969 bool ScalarEvolution::isImpliedCondOperandsViaNoOverflow(
7970     ICmpInst::Predicate Pred, const SCEV *LHS, const SCEV *RHS,
7971     const SCEV *FoundLHS, const SCEV *FoundRHS) {
7972   if (Pred != CmpInst::ICMP_SLT && Pred != CmpInst::ICMP_ULT)
7973     return false;
7974 
7975   const auto *AddRecLHS = dyn_cast<SCEVAddRecExpr>(LHS);
7976   if (!AddRecLHS)
7977     return false;
7978 
7979   const auto *AddRecFoundLHS = dyn_cast<SCEVAddRecExpr>(FoundLHS);
7980   if (!AddRecFoundLHS)
7981     return false;
7982 
7983   // We'd like to let SCEV reason about control dependencies, so we constrain
7984   // both the inequalities to be about add recurrences on the same loop.  This
7985   // way we can use isLoopEntryGuardedByCond later.
7986 
7987   const Loop *L = AddRecFoundLHS->getLoop();
7988   if (L != AddRecLHS->getLoop())
7989     return false;
7990 
7991   //  FoundLHS u< FoundRHS u< -C =>  (FoundLHS + C) u< (FoundRHS + C) ... (1)
7992   //
7993   //  FoundLHS s< FoundRHS s< INT_MIN - C => (FoundLHS + C) s< (FoundRHS + C)
7994   //                                                                  ... (2)
7995   //
7996   // Informal proof for (2), assuming (1) [*]:
7997   //
7998   // We'll also assume (A s< B) <=> ((A + INT_MIN) u< (B + INT_MIN)) ... (3)[**]
7999   //
8000   // Then
8001   //
8002   //       FoundLHS s< FoundRHS s< INT_MIN - C
8003   // <=>  (FoundLHS + INT_MIN) u< (FoundRHS + INT_MIN) u< -C   [ using (3) ]
8004   // <=>  (FoundLHS + INT_MIN + C) u< (FoundRHS + INT_MIN + C) [ using (1) ]
8005   // <=>  (FoundLHS + INT_MIN + C + INT_MIN) s<
8006   //                        (FoundRHS + INT_MIN + C + INT_MIN) [ using (3) ]
8007   // <=>  FoundLHS + C s< FoundRHS + C
8008   //
8009   // [*]: (1) can be proved by ruling out overflow.
8010   //
8011   // [**]: This can be proved by analyzing all the four possibilities:
8012   //    (A s< 0, B s< 0), (A s< 0, B s>= 0), (A s>= 0, B s< 0) and
8013   //    (A s>= 0, B s>= 0).
8014   //
8015   // Note:
8016   // Despite (2), "FoundRHS s< INT_MIN - C" does not mean that "FoundRHS + C"
8017   // will not sign underflow.  For instance, say FoundLHS = (i8 -128), FoundRHS
8018   // = (i8 -127) and C = (i8 -100).  Then INT_MIN - C = (i8 -28), and FoundRHS
8019   // s< (INT_MIN - C).  Lack of sign overflow / underflow in "FoundRHS + C" is
8020   // neither necessary nor sufficient to prove "(FoundLHS + C) s< (FoundRHS +
8021   // C)".
8022 
8023   APInt LDiff, RDiff;
8024   if (!computeConstantDifference(FoundLHS, LHS, LDiff) ||
8025       !computeConstantDifference(FoundRHS, RHS, RDiff) ||
8026       LDiff != RDiff)
8027     return false;
8028 
8029   if (LDiff == 0)
8030     return true;
8031 
8032   APInt FoundRHSLimit;
8033 
8034   if (Pred == CmpInst::ICMP_ULT) {
8035     FoundRHSLimit = -RDiff;
8036   } else {
8037     assert(Pred == CmpInst::ICMP_SLT && "Checked above!");
8038     FoundRHSLimit = APInt::getSignedMinValue(getTypeSizeInBits(RHS->getType())) - RDiff;
8039   }
8040 
8041   // Try to prove (1) or (2), as needed.
8042   return isLoopEntryGuardedByCond(L, Pred, FoundRHS,
8043                                   getConstant(FoundRHSLimit));
8044 }
8045 
8046 /// isImpliedCondOperands - Test whether the condition described by Pred,
8047 /// LHS, and RHS is true whenever the condition described by Pred, FoundLHS,
8048 /// and FoundRHS is true.
8049 bool ScalarEvolution::isImpliedCondOperands(ICmpInst::Predicate Pred,
8050                                             const SCEV *LHS, const SCEV *RHS,
8051                                             const SCEV *FoundLHS,
8052                                             const SCEV *FoundRHS) {
8053   if (isImpliedCondOperandsViaRanges(Pred, LHS, RHS, FoundLHS, FoundRHS))
8054     return true;
8055 
8056   if (isImpliedCondOperandsViaNoOverflow(Pred, LHS, RHS, FoundLHS, FoundRHS))
8057     return true;
8058 
8059   return isImpliedCondOperandsHelper(Pred, LHS, RHS,
8060                                      FoundLHS, FoundRHS) ||
8061          // ~x < ~y --> x > y
8062          isImpliedCondOperandsHelper(Pred, LHS, RHS,
8063                                      getNotSCEV(FoundRHS),
8064                                      getNotSCEV(FoundLHS));
8065 }
8066 
8067 
8068 /// If Expr computes ~A, return A else return nullptr
8069 static const SCEV *MatchNotExpr(const SCEV *Expr) {
8070   const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Expr);
8071   if (!Add || Add->getNumOperands() != 2 ||
8072       !Add->getOperand(0)->isAllOnesValue())
8073     return nullptr;
8074 
8075   const SCEVMulExpr *AddRHS = dyn_cast<SCEVMulExpr>(Add->getOperand(1));
8076   if (!AddRHS || AddRHS->getNumOperands() != 2 ||
8077       !AddRHS->getOperand(0)->isAllOnesValue())
8078     return nullptr;
8079 
8080   return AddRHS->getOperand(1);
8081 }
8082 
8083 
8084 /// Is MaybeMaxExpr an SMax or UMax of Candidate and some other values?
8085 template<typename MaxExprType>
8086 static bool IsMaxConsistingOf(const SCEV *MaybeMaxExpr,
8087                               const SCEV *Candidate) {
8088   const MaxExprType *MaxExpr = dyn_cast<MaxExprType>(MaybeMaxExpr);
8089   if (!MaxExpr) return false;
8090 
8091   return find(MaxExpr->operands(), Candidate) != MaxExpr->op_end();
8092 }
8093 
8094 
8095 /// Is MaybeMinExpr an SMin or UMin of Candidate and some other values?
8096 template<typename MaxExprType>
8097 static bool IsMinConsistingOf(ScalarEvolution &SE,
8098                               const SCEV *MaybeMinExpr,
8099                               const SCEV *Candidate) {
8100   const SCEV *MaybeMaxExpr = MatchNotExpr(MaybeMinExpr);
8101   if (!MaybeMaxExpr)
8102     return false;
8103 
8104   return IsMaxConsistingOf<MaxExprType>(MaybeMaxExpr, SE.getNotSCEV(Candidate));
8105 }
8106 
8107 static bool IsKnownPredicateViaAddRecStart(ScalarEvolution &SE,
8108                                            ICmpInst::Predicate Pred,
8109                                            const SCEV *LHS, const SCEV *RHS) {
8110 
8111   // If both sides are affine addrecs for the same loop, with equal
8112   // steps, and we know the recurrences don't wrap, then we only
8113   // need to check the predicate on the starting values.
8114 
8115   if (!ICmpInst::isRelational(Pred))
8116     return false;
8117 
8118   const SCEVAddRecExpr *LAR = dyn_cast<SCEVAddRecExpr>(LHS);
8119   if (!LAR)
8120     return false;
8121   const SCEVAddRecExpr *RAR = dyn_cast<SCEVAddRecExpr>(RHS);
8122   if (!RAR)
8123     return false;
8124   if (LAR->getLoop() != RAR->getLoop())
8125     return false;
8126   if (!LAR->isAffine() || !RAR->isAffine())
8127     return false;
8128 
8129   if (LAR->getStepRecurrence(SE) != RAR->getStepRecurrence(SE))
8130     return false;
8131 
8132   SCEV::NoWrapFlags NW = ICmpInst::isSigned(Pred) ?
8133                          SCEV::FlagNSW : SCEV::FlagNUW;
8134   if (!LAR->getNoWrapFlags(NW) || !RAR->getNoWrapFlags(NW))
8135     return false;
8136 
8137   return SE.isKnownPredicate(Pred, LAR->getStart(), RAR->getStart());
8138 }
8139 
8140 /// Is LHS `Pred` RHS true on the virtue of LHS or RHS being a Min or Max
8141 /// expression?
8142 static bool IsKnownPredicateViaMinOrMax(ScalarEvolution &SE,
8143                                         ICmpInst::Predicate Pred,
8144                                         const SCEV *LHS, const SCEV *RHS) {
8145   switch (Pred) {
8146   default:
8147     return false;
8148 
8149   case ICmpInst::ICMP_SGE:
8150     std::swap(LHS, RHS);
8151     // fall through
8152   case ICmpInst::ICMP_SLE:
8153     return
8154       // min(A, ...) <= A
8155       IsMinConsistingOf<SCEVSMaxExpr>(SE, LHS, RHS) ||
8156       // A <= max(A, ...)
8157       IsMaxConsistingOf<SCEVSMaxExpr>(RHS, LHS);
8158 
8159   case ICmpInst::ICMP_UGE:
8160     std::swap(LHS, RHS);
8161     // fall through
8162   case ICmpInst::ICMP_ULE:
8163     return
8164       // min(A, ...) <= A
8165       IsMinConsistingOf<SCEVUMaxExpr>(SE, LHS, RHS) ||
8166       // A <= max(A, ...)
8167       IsMaxConsistingOf<SCEVUMaxExpr>(RHS, LHS);
8168   }
8169 
8170   llvm_unreachable("covered switch fell through?!");
8171 }
8172 
8173 /// isImpliedCondOperandsHelper - Test whether the condition described by
8174 /// Pred, LHS, and RHS is true whenever the condition described by Pred,
8175 /// FoundLHS, and FoundRHS is true.
8176 bool
8177 ScalarEvolution::isImpliedCondOperandsHelper(ICmpInst::Predicate Pred,
8178                                              const SCEV *LHS, const SCEV *RHS,
8179                                              const SCEV *FoundLHS,
8180                                              const SCEV *FoundRHS) {
8181   auto IsKnownPredicateFull =
8182       [this](ICmpInst::Predicate Pred, const SCEV *LHS, const SCEV *RHS) {
8183     return isKnownPredicateViaConstantRanges(Pred, LHS, RHS) ||
8184            IsKnownPredicateViaMinOrMax(*this, Pred, LHS, RHS) ||
8185            IsKnownPredicateViaAddRecStart(*this, Pred, LHS, RHS) ||
8186            isKnownPredicateViaNoOverflow(Pred, LHS, RHS);
8187   };
8188 
8189   switch (Pred) {
8190   default: llvm_unreachable("Unexpected ICmpInst::Predicate value!");
8191   case ICmpInst::ICMP_EQ:
8192   case ICmpInst::ICMP_NE:
8193     if (HasSameValue(LHS, FoundLHS) && HasSameValue(RHS, FoundRHS))
8194       return true;
8195     break;
8196   case ICmpInst::ICMP_SLT:
8197   case ICmpInst::ICMP_SLE:
8198     if (IsKnownPredicateFull(ICmpInst::ICMP_SLE, LHS, FoundLHS) &&
8199         IsKnownPredicateFull(ICmpInst::ICMP_SGE, RHS, FoundRHS))
8200       return true;
8201     break;
8202   case ICmpInst::ICMP_SGT:
8203   case ICmpInst::ICMP_SGE:
8204     if (IsKnownPredicateFull(ICmpInst::ICMP_SGE, LHS, FoundLHS) &&
8205         IsKnownPredicateFull(ICmpInst::ICMP_SLE, RHS, FoundRHS))
8206       return true;
8207     break;
8208   case ICmpInst::ICMP_ULT:
8209   case ICmpInst::ICMP_ULE:
8210     if (IsKnownPredicateFull(ICmpInst::ICMP_ULE, LHS, FoundLHS) &&
8211         IsKnownPredicateFull(ICmpInst::ICMP_UGE, RHS, FoundRHS))
8212       return true;
8213     break;
8214   case ICmpInst::ICMP_UGT:
8215   case ICmpInst::ICMP_UGE:
8216     if (IsKnownPredicateFull(ICmpInst::ICMP_UGE, LHS, FoundLHS) &&
8217         IsKnownPredicateFull(ICmpInst::ICMP_ULE, RHS, FoundRHS))
8218       return true;
8219     break;
8220   }
8221 
8222   return false;
8223 }
8224 
8225 /// isImpliedCondOperandsViaRanges - helper function for isImpliedCondOperands.
8226 /// Tries to get cases like "X `sgt` 0 => X - 1 `sgt` -1".
8227 bool ScalarEvolution::isImpliedCondOperandsViaRanges(ICmpInst::Predicate Pred,
8228                                                      const SCEV *LHS,
8229                                                      const SCEV *RHS,
8230                                                      const SCEV *FoundLHS,
8231                                                      const SCEV *FoundRHS) {
8232   if (!isa<SCEVConstant>(RHS) || !isa<SCEVConstant>(FoundRHS))
8233     // The restriction on `FoundRHS` be lifted easily -- it exists only to
8234     // reduce the compile time impact of this optimization.
8235     return false;
8236 
8237   const SCEVAddExpr *AddLHS = dyn_cast<SCEVAddExpr>(LHS);
8238   if (!AddLHS || AddLHS->getOperand(1) != FoundLHS ||
8239       !isa<SCEVConstant>(AddLHS->getOperand(0)))
8240     return false;
8241 
8242   APInt ConstFoundRHS = cast<SCEVConstant>(FoundRHS)->getAPInt();
8243 
8244   // `FoundLHSRange` is the range we know `FoundLHS` to be in by virtue of the
8245   // antecedent "`FoundLHS` `Pred` `FoundRHS`".
8246   ConstantRange FoundLHSRange =
8247       ConstantRange::makeAllowedICmpRegion(Pred, ConstFoundRHS);
8248 
8249   // Since `LHS` is `FoundLHS` + `AddLHS->getOperand(0)`, we can compute a range
8250   // for `LHS`:
8251   APInt Addend = cast<SCEVConstant>(AddLHS->getOperand(0))->getAPInt();
8252   ConstantRange LHSRange = FoundLHSRange.add(ConstantRange(Addend));
8253 
8254   // We can also compute the range of values for `LHS` that satisfy the
8255   // consequent, "`LHS` `Pred` `RHS`":
8256   APInt ConstRHS = cast<SCEVConstant>(RHS)->getAPInt();
8257   ConstantRange SatisfyingLHSRange =
8258       ConstantRange::makeSatisfyingICmpRegion(Pred, ConstRHS);
8259 
8260   // The antecedent implies the consequent if every value of `LHS` that
8261   // satisfies the antecedent also satisfies the consequent.
8262   return SatisfyingLHSRange.contains(LHSRange);
8263 }
8264 
8265 // Verify if an linear IV with positive stride can overflow when in a
8266 // less-than comparison, knowing the invariant term of the comparison, the
8267 // stride and the knowledge of NSW/NUW flags on the recurrence.
8268 bool ScalarEvolution::doesIVOverflowOnLT(const SCEV *RHS, const SCEV *Stride,
8269                                          bool IsSigned, bool NoWrap) {
8270   if (NoWrap) return false;
8271 
8272   unsigned BitWidth = getTypeSizeInBits(RHS->getType());
8273   const SCEV *One = getOne(Stride->getType());
8274 
8275   if (IsSigned) {
8276     APInt MaxRHS = getSignedRange(RHS).getSignedMax();
8277     APInt MaxValue = APInt::getSignedMaxValue(BitWidth);
8278     APInt MaxStrideMinusOne = getSignedRange(getMinusSCEV(Stride, One))
8279                                 .getSignedMax();
8280 
8281     // SMaxRHS + SMaxStrideMinusOne > SMaxValue => overflow!
8282     return (MaxValue - MaxStrideMinusOne).slt(MaxRHS);
8283   }
8284 
8285   APInt MaxRHS = getUnsignedRange(RHS).getUnsignedMax();
8286   APInt MaxValue = APInt::getMaxValue(BitWidth);
8287   APInt MaxStrideMinusOne = getUnsignedRange(getMinusSCEV(Stride, One))
8288                               .getUnsignedMax();
8289 
8290   // UMaxRHS + UMaxStrideMinusOne > UMaxValue => overflow!
8291   return (MaxValue - MaxStrideMinusOne).ult(MaxRHS);
8292 }
8293 
8294 // Verify if an linear IV with negative stride can overflow when in a
8295 // greater-than comparison, knowing the invariant term of the comparison,
8296 // the stride and the knowledge of NSW/NUW flags on the recurrence.
8297 bool ScalarEvolution::doesIVOverflowOnGT(const SCEV *RHS, const SCEV *Stride,
8298                                          bool IsSigned, bool NoWrap) {
8299   if (NoWrap) return false;
8300 
8301   unsigned BitWidth = getTypeSizeInBits(RHS->getType());
8302   const SCEV *One = getOne(Stride->getType());
8303 
8304   if (IsSigned) {
8305     APInt MinRHS = getSignedRange(RHS).getSignedMin();
8306     APInt MinValue = APInt::getSignedMinValue(BitWidth);
8307     APInt MaxStrideMinusOne = getSignedRange(getMinusSCEV(Stride, One))
8308                                .getSignedMax();
8309 
8310     // SMinRHS - SMaxStrideMinusOne < SMinValue => overflow!
8311     return (MinValue + MaxStrideMinusOne).sgt(MinRHS);
8312   }
8313 
8314   APInt MinRHS = getUnsignedRange(RHS).getUnsignedMin();
8315   APInt MinValue = APInt::getMinValue(BitWidth);
8316   APInt MaxStrideMinusOne = getUnsignedRange(getMinusSCEV(Stride, One))
8317                             .getUnsignedMax();
8318 
8319   // UMinRHS - UMaxStrideMinusOne < UMinValue => overflow!
8320   return (MinValue + MaxStrideMinusOne).ugt(MinRHS);
8321 }
8322 
8323 // Compute the backedge taken count knowing the interval difference, the
8324 // stride and presence of the equality in the comparison.
8325 const SCEV *ScalarEvolution::computeBECount(const SCEV *Delta, const SCEV *Step,
8326                                             bool Equality) {
8327   const SCEV *One = getOne(Step->getType());
8328   Delta = Equality ? getAddExpr(Delta, Step)
8329                    : getAddExpr(Delta, getMinusSCEV(Step, One));
8330   return getUDivExpr(Delta, Step);
8331 }
8332 
8333 /// HowManyLessThans - Return the number of times a backedge containing the
8334 /// specified less-than comparison will execute.  If not computable, return
8335 /// CouldNotCompute.
8336 ///
8337 /// @param ControlsExit is true when the LHS < RHS condition directly controls
8338 /// the branch (loops exits only if condition is true). In this case, we can use
8339 /// NoWrapFlags to skip overflow checks.
8340 ScalarEvolution::ExitLimit
8341 ScalarEvolution::HowManyLessThans(const SCEV *LHS, const SCEV *RHS,
8342                                   const Loop *L, bool IsSigned,
8343                                   bool ControlsExit) {
8344   // We handle only IV < Invariant
8345   if (!isLoopInvariant(RHS, L))
8346     return getCouldNotCompute();
8347 
8348   const SCEVAddRecExpr *IV = dyn_cast<SCEVAddRecExpr>(LHS);
8349 
8350   // Avoid weird loops
8351   if (!IV || IV->getLoop() != L || !IV->isAffine())
8352     return getCouldNotCompute();
8353 
8354   bool NoWrap = ControlsExit &&
8355                 IV->getNoWrapFlags(IsSigned ? SCEV::FlagNSW : SCEV::FlagNUW);
8356 
8357   const SCEV *Stride = IV->getStepRecurrence(*this);
8358 
8359   // Avoid negative or zero stride values
8360   if (!isKnownPositive(Stride))
8361     return getCouldNotCompute();
8362 
8363   // Avoid proven overflow cases: this will ensure that the backedge taken count
8364   // will not generate any unsigned overflow. Relaxed no-overflow conditions
8365   // exploit NoWrapFlags, allowing to optimize in presence of undefined
8366   // behaviors like the case of C language.
8367   if (!Stride->isOne() && doesIVOverflowOnLT(RHS, Stride, IsSigned, NoWrap))
8368     return getCouldNotCompute();
8369 
8370   ICmpInst::Predicate Cond = IsSigned ? ICmpInst::ICMP_SLT
8371                                       : ICmpInst::ICMP_ULT;
8372   const SCEV *Start = IV->getStart();
8373   const SCEV *End = RHS;
8374   if (!isLoopEntryGuardedByCond(L, Cond, getMinusSCEV(Start, Stride), RHS)) {
8375     const SCEV *Diff = getMinusSCEV(RHS, Start);
8376     // If we have NoWrap set, then we can assume that the increment won't
8377     // overflow, in which case if RHS - Start is a constant, we don't need to
8378     // do a max operation since we can just figure it out statically
8379     if (NoWrap && isa<SCEVConstant>(Diff)) {
8380       APInt D = dyn_cast<const SCEVConstant>(Diff)->getAPInt();
8381       if (D.isNegative())
8382         End = Start;
8383     } else
8384       End = IsSigned ? getSMaxExpr(RHS, Start)
8385                      : getUMaxExpr(RHS, Start);
8386   }
8387 
8388   const SCEV *BECount = computeBECount(getMinusSCEV(End, Start), Stride, false);
8389 
8390   APInt MinStart = IsSigned ? getSignedRange(Start).getSignedMin()
8391                             : getUnsignedRange(Start).getUnsignedMin();
8392 
8393   APInt MinStride = IsSigned ? getSignedRange(Stride).getSignedMin()
8394                              : getUnsignedRange(Stride).getUnsignedMin();
8395 
8396   unsigned BitWidth = getTypeSizeInBits(LHS->getType());
8397   APInt Limit = IsSigned ? APInt::getSignedMaxValue(BitWidth) - (MinStride - 1)
8398                          : APInt::getMaxValue(BitWidth) - (MinStride - 1);
8399 
8400   // Although End can be a MAX expression we estimate MaxEnd considering only
8401   // the case End = RHS. This is safe because in the other case (End - Start)
8402   // is zero, leading to a zero maximum backedge taken count.
8403   APInt MaxEnd =
8404     IsSigned ? APIntOps::smin(getSignedRange(RHS).getSignedMax(), Limit)
8405              : APIntOps::umin(getUnsignedRange(RHS).getUnsignedMax(), Limit);
8406 
8407   const SCEV *MaxBECount;
8408   if (isa<SCEVConstant>(BECount))
8409     MaxBECount = BECount;
8410   else
8411     MaxBECount = computeBECount(getConstant(MaxEnd - MinStart),
8412                                 getConstant(MinStride), false);
8413 
8414   if (isa<SCEVCouldNotCompute>(MaxBECount))
8415     MaxBECount = BECount;
8416 
8417   return ExitLimit(BECount, MaxBECount);
8418 }
8419 
8420 ScalarEvolution::ExitLimit
8421 ScalarEvolution::HowManyGreaterThans(const SCEV *LHS, const SCEV *RHS,
8422                                      const Loop *L, bool IsSigned,
8423                                      bool ControlsExit) {
8424   // We handle only IV > Invariant
8425   if (!isLoopInvariant(RHS, L))
8426     return getCouldNotCompute();
8427 
8428   const SCEVAddRecExpr *IV = dyn_cast<SCEVAddRecExpr>(LHS);
8429 
8430   // Avoid weird loops
8431   if (!IV || IV->getLoop() != L || !IV->isAffine())
8432     return getCouldNotCompute();
8433 
8434   bool NoWrap = ControlsExit &&
8435                 IV->getNoWrapFlags(IsSigned ? SCEV::FlagNSW : SCEV::FlagNUW);
8436 
8437   const SCEV *Stride = getNegativeSCEV(IV->getStepRecurrence(*this));
8438 
8439   // Avoid negative or zero stride values
8440   if (!isKnownPositive(Stride))
8441     return getCouldNotCompute();
8442 
8443   // Avoid proven overflow cases: this will ensure that the backedge taken count
8444   // will not generate any unsigned overflow. Relaxed no-overflow conditions
8445   // exploit NoWrapFlags, allowing to optimize in presence of undefined
8446   // behaviors like the case of C language.
8447   if (!Stride->isOne() && doesIVOverflowOnGT(RHS, Stride, IsSigned, NoWrap))
8448     return getCouldNotCompute();
8449 
8450   ICmpInst::Predicate Cond = IsSigned ? ICmpInst::ICMP_SGT
8451                                       : ICmpInst::ICMP_UGT;
8452 
8453   const SCEV *Start = IV->getStart();
8454   const SCEV *End = RHS;
8455   if (!isLoopEntryGuardedByCond(L, Cond, getAddExpr(Start, Stride), RHS)) {
8456     const SCEV *Diff = getMinusSCEV(RHS, Start);
8457     // If we have NoWrap set, then we can assume that the increment won't
8458     // overflow, in which case if RHS - Start is a constant, we don't need to
8459     // do a max operation since we can just figure it out statically
8460     if (NoWrap && isa<SCEVConstant>(Diff)) {
8461       APInt D = dyn_cast<const SCEVConstant>(Diff)->getAPInt();
8462       if (!D.isNegative())
8463         End = Start;
8464     } else
8465       End = IsSigned ? getSMinExpr(RHS, Start)
8466                      : getUMinExpr(RHS, Start);
8467   }
8468 
8469   const SCEV *BECount = computeBECount(getMinusSCEV(Start, End), Stride, false);
8470 
8471   APInt MaxStart = IsSigned ? getSignedRange(Start).getSignedMax()
8472                             : getUnsignedRange(Start).getUnsignedMax();
8473 
8474   APInt MinStride = IsSigned ? getSignedRange(Stride).getSignedMin()
8475                              : getUnsignedRange(Stride).getUnsignedMin();
8476 
8477   unsigned BitWidth = getTypeSizeInBits(LHS->getType());
8478   APInt Limit = IsSigned ? APInt::getSignedMinValue(BitWidth) + (MinStride - 1)
8479                          : APInt::getMinValue(BitWidth) + (MinStride - 1);
8480 
8481   // Although End can be a MIN expression we estimate MinEnd considering only
8482   // the case End = RHS. This is safe because in the other case (Start - End)
8483   // is zero, leading to a zero maximum backedge taken count.
8484   APInt MinEnd =
8485     IsSigned ? APIntOps::smax(getSignedRange(RHS).getSignedMin(), Limit)
8486              : APIntOps::umax(getUnsignedRange(RHS).getUnsignedMin(), Limit);
8487 
8488 
8489   const SCEV *MaxBECount = getCouldNotCompute();
8490   if (isa<SCEVConstant>(BECount))
8491     MaxBECount = BECount;
8492   else
8493     MaxBECount = computeBECount(getConstant(MaxStart - MinEnd),
8494                                 getConstant(MinStride), false);
8495 
8496   if (isa<SCEVCouldNotCompute>(MaxBECount))
8497     MaxBECount = BECount;
8498 
8499   return ExitLimit(BECount, MaxBECount);
8500 }
8501 
8502 /// getNumIterationsInRange - Return the number of iterations of this loop that
8503 /// produce values in the specified constant range.  Another way of looking at
8504 /// this is that it returns the first iteration number where the value is not in
8505 /// the condition, thus computing the exit count. If the iteration count can't
8506 /// be computed, an instance of SCEVCouldNotCompute is returned.
8507 const SCEV *SCEVAddRecExpr::getNumIterationsInRange(ConstantRange Range,
8508                                                     ScalarEvolution &SE) const {
8509   if (Range.isFullSet())  // Infinite loop.
8510     return SE.getCouldNotCompute();
8511 
8512   // If the start is a non-zero constant, shift the range to simplify things.
8513   if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(getStart()))
8514     if (!SC->getValue()->isZero()) {
8515       SmallVector<const SCEV *, 4> Operands(op_begin(), op_end());
8516       Operands[0] = SE.getZero(SC->getType());
8517       const SCEV *Shifted = SE.getAddRecExpr(Operands, getLoop(),
8518                                              getNoWrapFlags(FlagNW));
8519       if (const auto *ShiftedAddRec = dyn_cast<SCEVAddRecExpr>(Shifted))
8520         return ShiftedAddRec->getNumIterationsInRange(
8521             Range.subtract(SC->getAPInt()), SE);
8522       // This is strange and shouldn't happen.
8523       return SE.getCouldNotCompute();
8524     }
8525 
8526   // The only time we can solve this is when we have all constant indices.
8527   // Otherwise, we cannot determine the overflow conditions.
8528   if (any_of(operands(), [](const SCEV *Op) { return !isa<SCEVConstant>(Op); }))
8529     return SE.getCouldNotCompute();
8530 
8531   // Okay at this point we know that all elements of the chrec are constants and
8532   // that the start element is zero.
8533 
8534   // First check to see if the range contains zero.  If not, the first
8535   // iteration exits.
8536   unsigned BitWidth = SE.getTypeSizeInBits(getType());
8537   if (!Range.contains(APInt(BitWidth, 0)))
8538     return SE.getZero(getType());
8539 
8540   if (isAffine()) {
8541     // If this is an affine expression then we have this situation:
8542     //   Solve {0,+,A} in Range  ===  Ax in Range
8543 
8544     // We know that zero is in the range.  If A is positive then we know that
8545     // the upper value of the range must be the first possible exit value.
8546     // If A is negative then the lower of the range is the last possible loop
8547     // value.  Also note that we already checked for a full range.
8548     APInt One(BitWidth,1);
8549     APInt A = cast<SCEVConstant>(getOperand(1))->getAPInt();
8550     APInt End = A.sge(One) ? (Range.getUpper() - One) : Range.getLower();
8551 
8552     // The exit value should be (End+A)/A.
8553     APInt ExitVal = (End + A).udiv(A);
8554     ConstantInt *ExitValue = ConstantInt::get(SE.getContext(), ExitVal);
8555 
8556     // Evaluate at the exit value.  If we really did fall out of the valid
8557     // range, then we computed our trip count, otherwise wrap around or other
8558     // things must have happened.
8559     ConstantInt *Val = EvaluateConstantChrecAtConstant(this, ExitValue, SE);
8560     if (Range.contains(Val->getValue()))
8561       return SE.getCouldNotCompute();  // Something strange happened
8562 
8563     // Ensure that the previous value is in the range.  This is a sanity check.
8564     assert(Range.contains(
8565            EvaluateConstantChrecAtConstant(this,
8566            ConstantInt::get(SE.getContext(), ExitVal - One), SE)->getValue()) &&
8567            "Linear scev computation is off in a bad way!");
8568     return SE.getConstant(ExitValue);
8569   } else if (isQuadratic()) {
8570     // If this is a quadratic (3-term) AddRec {L,+,M,+,N}, find the roots of the
8571     // quadratic equation to solve it.  To do this, we must frame our problem in
8572     // terms of figuring out when zero is crossed, instead of when
8573     // Range.getUpper() is crossed.
8574     SmallVector<const SCEV *, 4> NewOps(op_begin(), op_end());
8575     NewOps[0] = SE.getNegativeSCEV(SE.getConstant(Range.getUpper()));
8576     const SCEV *NewAddRec = SE.getAddRecExpr(NewOps, getLoop(),
8577                                              // getNoWrapFlags(FlagNW)
8578                                              FlagAnyWrap);
8579 
8580     // Next, solve the constructed addrec
8581     auto Roots = SolveQuadraticEquation(cast<SCEVAddRecExpr>(NewAddRec), SE);
8582     const SCEVConstant *R1 = dyn_cast<SCEVConstant>(Roots.first);
8583     const SCEVConstant *R2 = dyn_cast<SCEVConstant>(Roots.second);
8584     if (R1) {
8585       // Pick the smallest positive root value.
8586       if (ConstantInt *CB = dyn_cast<ConstantInt>(ConstantExpr::getICmp(
8587               ICmpInst::ICMP_ULT, R1->getValue(), R2->getValue()))) {
8588         if (!CB->getZExtValue())
8589           std::swap(R1, R2);   // R1 is the minimum root now.
8590 
8591         // Make sure the root is not off by one.  The returned iteration should
8592         // not be in the range, but the previous one should be.  When solving
8593         // for "X*X < 5", for example, we should not return a root of 2.
8594         ConstantInt *R1Val = EvaluateConstantChrecAtConstant(this,
8595                                                              R1->getValue(),
8596                                                              SE);
8597         if (Range.contains(R1Val->getValue())) {
8598           // The next iteration must be out of the range...
8599           ConstantInt *NextVal =
8600               ConstantInt::get(SE.getContext(), R1->getAPInt() + 1);
8601 
8602           R1Val = EvaluateConstantChrecAtConstant(this, NextVal, SE);
8603           if (!Range.contains(R1Val->getValue()))
8604             return SE.getConstant(NextVal);
8605           return SE.getCouldNotCompute();  // Something strange happened
8606         }
8607 
8608         // If R1 was not in the range, then it is a good return value.  Make
8609         // sure that R1-1 WAS in the range though, just in case.
8610         ConstantInt *NextVal =
8611             ConstantInt::get(SE.getContext(), R1->getAPInt() - 1);
8612         R1Val = EvaluateConstantChrecAtConstant(this, NextVal, SE);
8613         if (Range.contains(R1Val->getValue()))
8614           return R1;
8615         return SE.getCouldNotCompute();  // Something strange happened
8616       }
8617     }
8618   }
8619 
8620   return SE.getCouldNotCompute();
8621 }
8622 
8623 namespace {
8624 struct FindUndefs {
8625   bool Found;
8626   FindUndefs() : Found(false) {}
8627 
8628   bool follow(const SCEV *S) {
8629     if (const SCEVUnknown *C = dyn_cast<SCEVUnknown>(S)) {
8630       if (isa<UndefValue>(C->getValue()))
8631         Found = true;
8632     } else if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) {
8633       if (isa<UndefValue>(C->getValue()))
8634         Found = true;
8635     }
8636 
8637     // Keep looking if we haven't found it yet.
8638     return !Found;
8639   }
8640   bool isDone() const {
8641     // Stop recursion if we have found an undef.
8642     return Found;
8643   }
8644 };
8645 }
8646 
8647 // Return true when S contains at least an undef value.
8648 static inline bool
8649 containsUndefs(const SCEV *S) {
8650   FindUndefs F;
8651   SCEVTraversal<FindUndefs> ST(F);
8652   ST.visitAll(S);
8653 
8654   return F.Found;
8655 }
8656 
8657 namespace {
8658 // Collect all steps of SCEV expressions.
8659 struct SCEVCollectStrides {
8660   ScalarEvolution &SE;
8661   SmallVectorImpl<const SCEV *> &Strides;
8662 
8663   SCEVCollectStrides(ScalarEvolution &SE, SmallVectorImpl<const SCEV *> &S)
8664       : SE(SE), Strides(S) {}
8665 
8666   bool follow(const SCEV *S) {
8667     if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S))
8668       Strides.push_back(AR->getStepRecurrence(SE));
8669     return true;
8670   }
8671   bool isDone() const { return false; }
8672 };
8673 
8674 // Collect all SCEVUnknown and SCEVMulExpr expressions.
8675 struct SCEVCollectTerms {
8676   SmallVectorImpl<const SCEV *> &Terms;
8677 
8678   SCEVCollectTerms(SmallVectorImpl<const SCEV *> &T)
8679       : Terms(T) {}
8680 
8681   bool follow(const SCEV *S) {
8682     if (isa<SCEVUnknown>(S) || isa<SCEVMulExpr>(S)) {
8683       if (!containsUndefs(S))
8684         Terms.push_back(S);
8685 
8686       // Stop recursion: once we collected a term, do not walk its operands.
8687       return false;
8688     }
8689 
8690     // Keep looking.
8691     return true;
8692   }
8693   bool isDone() const { return false; }
8694 };
8695 
8696 // Check if a SCEV contains an AddRecExpr.
8697 struct SCEVHasAddRec {
8698   bool &ContainsAddRec;
8699 
8700   SCEVHasAddRec(bool &ContainsAddRec) : ContainsAddRec(ContainsAddRec) {
8701    ContainsAddRec = false;
8702   }
8703 
8704   bool follow(const SCEV *S) {
8705     if (isa<SCEVAddRecExpr>(S)) {
8706       ContainsAddRec = true;
8707 
8708       // Stop recursion: once we collected a term, do not walk its operands.
8709       return false;
8710     }
8711 
8712     // Keep looking.
8713     return true;
8714   }
8715   bool isDone() const { return false; }
8716 };
8717 
8718 // Find factors that are multiplied with an expression that (possibly as a
8719 // subexpression) contains an AddRecExpr. In the expression:
8720 //
8721 //  8 * (100 +  %p * %q * (%a + {0, +, 1}_loop))
8722 //
8723 // "%p * %q" are factors multiplied by the expression "(%a + {0, +, 1}_loop)"
8724 // that contains the AddRec {0, +, 1}_loop. %p * %q are likely to be array size
8725 // parameters as they form a product with an induction variable.
8726 //
8727 // This collector expects all array size parameters to be in the same MulExpr.
8728 // It might be necessary to later add support for collecting parameters that are
8729 // spread over different nested MulExpr.
8730 struct SCEVCollectAddRecMultiplies {
8731   SmallVectorImpl<const SCEV *> &Terms;
8732   ScalarEvolution &SE;
8733 
8734   SCEVCollectAddRecMultiplies(SmallVectorImpl<const SCEV *> &T, ScalarEvolution &SE)
8735       : Terms(T), SE(SE) {}
8736 
8737   bool follow(const SCEV *S) {
8738     if (auto *Mul = dyn_cast<SCEVMulExpr>(S)) {
8739       bool HasAddRec = false;
8740       SmallVector<const SCEV *, 0> Operands;
8741       for (auto Op : Mul->operands()) {
8742         if (isa<SCEVUnknown>(Op)) {
8743           Operands.push_back(Op);
8744         } else {
8745           bool ContainsAddRec;
8746           SCEVHasAddRec ContiansAddRec(ContainsAddRec);
8747           visitAll(Op, ContiansAddRec);
8748           HasAddRec |= ContainsAddRec;
8749         }
8750       }
8751       if (Operands.size() == 0)
8752         return true;
8753 
8754       if (!HasAddRec)
8755         return false;
8756 
8757       Terms.push_back(SE.getMulExpr(Operands));
8758       // Stop recursion: once we collected a term, do not walk its operands.
8759       return false;
8760     }
8761 
8762     // Keep looking.
8763     return true;
8764   }
8765   bool isDone() const { return false; }
8766 };
8767 }
8768 
8769 /// Find parametric terms in this SCEVAddRecExpr. We first for parameters in
8770 /// two places:
8771 ///   1) The strides of AddRec expressions.
8772 ///   2) Unknowns that are multiplied with AddRec expressions.
8773 void ScalarEvolution::collectParametricTerms(const SCEV *Expr,
8774     SmallVectorImpl<const SCEV *> &Terms) {
8775   SmallVector<const SCEV *, 4> Strides;
8776   SCEVCollectStrides StrideCollector(*this, Strides);
8777   visitAll(Expr, StrideCollector);
8778 
8779   DEBUG({
8780       dbgs() << "Strides:\n";
8781       for (const SCEV *S : Strides)
8782         dbgs() << *S << "\n";
8783     });
8784 
8785   for (const SCEV *S : Strides) {
8786     SCEVCollectTerms TermCollector(Terms);
8787     visitAll(S, TermCollector);
8788   }
8789 
8790   DEBUG({
8791       dbgs() << "Terms:\n";
8792       for (const SCEV *T : Terms)
8793         dbgs() << *T << "\n";
8794     });
8795 
8796   SCEVCollectAddRecMultiplies MulCollector(Terms, *this);
8797   visitAll(Expr, MulCollector);
8798 }
8799 
8800 static bool findArrayDimensionsRec(ScalarEvolution &SE,
8801                                    SmallVectorImpl<const SCEV *> &Terms,
8802                                    SmallVectorImpl<const SCEV *> &Sizes) {
8803   int Last = Terms.size() - 1;
8804   const SCEV *Step = Terms[Last];
8805 
8806   // End of recursion.
8807   if (Last == 0) {
8808     if (const SCEVMulExpr *M = dyn_cast<SCEVMulExpr>(Step)) {
8809       SmallVector<const SCEV *, 2> Qs;
8810       for (const SCEV *Op : M->operands())
8811         if (!isa<SCEVConstant>(Op))
8812           Qs.push_back(Op);
8813 
8814       Step = SE.getMulExpr(Qs);
8815     }
8816 
8817     Sizes.push_back(Step);
8818     return true;
8819   }
8820 
8821   for (const SCEV *&Term : Terms) {
8822     // Normalize the terms before the next call to findArrayDimensionsRec.
8823     const SCEV *Q, *R;
8824     SCEVDivision::divide(SE, Term, Step, &Q, &R);
8825 
8826     // Bail out when GCD does not evenly divide one of the terms.
8827     if (!R->isZero())
8828       return false;
8829 
8830     Term = Q;
8831   }
8832 
8833   // Remove all SCEVConstants.
8834   Terms.erase(std::remove_if(Terms.begin(), Terms.end(), [](const SCEV *E) {
8835                 return isa<SCEVConstant>(E);
8836               }),
8837               Terms.end());
8838 
8839   if (Terms.size() > 0)
8840     if (!findArrayDimensionsRec(SE, Terms, Sizes))
8841       return false;
8842 
8843   Sizes.push_back(Step);
8844   return true;
8845 }
8846 
8847 // Returns true when S contains at least a SCEVUnknown parameter.
8848 static inline bool
8849 containsParameters(const SCEV *S) {
8850   struct FindParameter {
8851     bool FoundParameter;
8852     FindParameter() : FoundParameter(false) {}
8853 
8854     bool follow(const SCEV *S) {
8855       if (isa<SCEVUnknown>(S)) {
8856         FoundParameter = true;
8857         // Stop recursion: we found a parameter.
8858         return false;
8859       }
8860       // Keep looking.
8861       return true;
8862     }
8863     bool isDone() const {
8864       // Stop recursion if we have found a parameter.
8865       return FoundParameter;
8866     }
8867   };
8868 
8869   FindParameter F;
8870   SCEVTraversal<FindParameter> ST(F);
8871   ST.visitAll(S);
8872 
8873   return F.FoundParameter;
8874 }
8875 
8876 // Returns true when one of the SCEVs of Terms contains a SCEVUnknown parameter.
8877 static inline bool
8878 containsParameters(SmallVectorImpl<const SCEV *> &Terms) {
8879   for (const SCEV *T : Terms)
8880     if (containsParameters(T))
8881       return true;
8882   return false;
8883 }
8884 
8885 // Return the number of product terms in S.
8886 static inline int numberOfTerms(const SCEV *S) {
8887   if (const SCEVMulExpr *Expr = dyn_cast<SCEVMulExpr>(S))
8888     return Expr->getNumOperands();
8889   return 1;
8890 }
8891 
8892 static const SCEV *removeConstantFactors(ScalarEvolution &SE, const SCEV *T) {
8893   if (isa<SCEVConstant>(T))
8894     return nullptr;
8895 
8896   if (isa<SCEVUnknown>(T))
8897     return T;
8898 
8899   if (const SCEVMulExpr *M = dyn_cast<SCEVMulExpr>(T)) {
8900     SmallVector<const SCEV *, 2> Factors;
8901     for (const SCEV *Op : M->operands())
8902       if (!isa<SCEVConstant>(Op))
8903         Factors.push_back(Op);
8904 
8905     return SE.getMulExpr(Factors);
8906   }
8907 
8908   return T;
8909 }
8910 
8911 /// Return the size of an element read or written by Inst.
8912 const SCEV *ScalarEvolution::getElementSize(Instruction *Inst) {
8913   Type *Ty;
8914   if (StoreInst *Store = dyn_cast<StoreInst>(Inst))
8915     Ty = Store->getValueOperand()->getType();
8916   else if (LoadInst *Load = dyn_cast<LoadInst>(Inst))
8917     Ty = Load->getType();
8918   else
8919     return nullptr;
8920 
8921   Type *ETy = getEffectiveSCEVType(PointerType::getUnqual(Ty));
8922   return getSizeOfExpr(ETy, Ty);
8923 }
8924 
8925 /// Second step of delinearization: compute the array dimensions Sizes from the
8926 /// set of Terms extracted from the memory access function of this SCEVAddRec.
8927 void ScalarEvolution::findArrayDimensions(SmallVectorImpl<const SCEV *> &Terms,
8928                                           SmallVectorImpl<const SCEV *> &Sizes,
8929                                           const SCEV *ElementSize) const {
8930 
8931   if (Terms.size() < 1 || !ElementSize)
8932     return;
8933 
8934   // Early return when Terms do not contain parameters: we do not delinearize
8935   // non parametric SCEVs.
8936   if (!containsParameters(Terms))
8937     return;
8938 
8939   DEBUG({
8940       dbgs() << "Terms:\n";
8941       for (const SCEV *T : Terms)
8942         dbgs() << *T << "\n";
8943     });
8944 
8945   // Remove duplicates.
8946   std::sort(Terms.begin(), Terms.end());
8947   Terms.erase(std::unique(Terms.begin(), Terms.end()), Terms.end());
8948 
8949   // Put larger terms first.
8950   std::sort(Terms.begin(), Terms.end(), [](const SCEV *LHS, const SCEV *RHS) {
8951     return numberOfTerms(LHS) > numberOfTerms(RHS);
8952   });
8953 
8954   ScalarEvolution &SE = *const_cast<ScalarEvolution *>(this);
8955 
8956   // Try to divide all terms by the element size. If term is not divisible by
8957   // element size, proceed with the original term.
8958   for (const SCEV *&Term : Terms) {
8959     const SCEV *Q, *R;
8960     SCEVDivision::divide(SE, Term, ElementSize, &Q, &R);
8961     if (!Q->isZero())
8962       Term = Q;
8963   }
8964 
8965   SmallVector<const SCEV *, 4> NewTerms;
8966 
8967   // Remove constant factors.
8968   for (const SCEV *T : Terms)
8969     if (const SCEV *NewT = removeConstantFactors(SE, T))
8970       NewTerms.push_back(NewT);
8971 
8972   DEBUG({
8973       dbgs() << "Terms after sorting:\n";
8974       for (const SCEV *T : NewTerms)
8975         dbgs() << *T << "\n";
8976     });
8977 
8978   if (NewTerms.empty() ||
8979       !findArrayDimensionsRec(SE, NewTerms, Sizes)) {
8980     Sizes.clear();
8981     return;
8982   }
8983 
8984   // The last element to be pushed into Sizes is the size of an element.
8985   Sizes.push_back(ElementSize);
8986 
8987   DEBUG({
8988       dbgs() << "Sizes:\n";
8989       for (const SCEV *S : Sizes)
8990         dbgs() << *S << "\n";
8991     });
8992 }
8993 
8994 /// Third step of delinearization: compute the access functions for the
8995 /// Subscripts based on the dimensions in Sizes.
8996 void ScalarEvolution::computeAccessFunctions(
8997     const SCEV *Expr, SmallVectorImpl<const SCEV *> &Subscripts,
8998     SmallVectorImpl<const SCEV *> &Sizes) {
8999 
9000   // Early exit in case this SCEV is not an affine multivariate function.
9001   if (Sizes.empty())
9002     return;
9003 
9004   if (auto *AR = dyn_cast<SCEVAddRecExpr>(Expr))
9005     if (!AR->isAffine())
9006       return;
9007 
9008   const SCEV *Res = Expr;
9009   int Last = Sizes.size() - 1;
9010   for (int i = Last; i >= 0; i--) {
9011     const SCEV *Q, *R;
9012     SCEVDivision::divide(*this, Res, Sizes[i], &Q, &R);
9013 
9014     DEBUG({
9015         dbgs() << "Res: " << *Res << "\n";
9016         dbgs() << "Sizes[i]: " << *Sizes[i] << "\n";
9017         dbgs() << "Res divided by Sizes[i]:\n";
9018         dbgs() << "Quotient: " << *Q << "\n";
9019         dbgs() << "Remainder: " << *R << "\n";
9020       });
9021 
9022     Res = Q;
9023 
9024     // Do not record the last subscript corresponding to the size of elements in
9025     // the array.
9026     if (i == Last) {
9027 
9028       // Bail out if the remainder is too complex.
9029       if (isa<SCEVAddRecExpr>(R)) {
9030         Subscripts.clear();
9031         Sizes.clear();
9032         return;
9033       }
9034 
9035       continue;
9036     }
9037 
9038     // Record the access function for the current subscript.
9039     Subscripts.push_back(R);
9040   }
9041 
9042   // Also push in last position the remainder of the last division: it will be
9043   // the access function of the innermost dimension.
9044   Subscripts.push_back(Res);
9045 
9046   std::reverse(Subscripts.begin(), Subscripts.end());
9047 
9048   DEBUG({
9049       dbgs() << "Subscripts:\n";
9050       for (const SCEV *S : Subscripts)
9051         dbgs() << *S << "\n";
9052     });
9053 }
9054 
9055 /// Splits the SCEV into two vectors of SCEVs representing the subscripts and
9056 /// sizes of an array access. Returns the remainder of the delinearization that
9057 /// is the offset start of the array.  The SCEV->delinearize algorithm computes
9058 /// the multiples of SCEV coefficients: that is a pattern matching of sub
9059 /// expressions in the stride and base of a SCEV corresponding to the
9060 /// computation of a GCD (greatest common divisor) of base and stride.  When
9061 /// SCEV->delinearize fails, it returns the SCEV unchanged.
9062 ///
9063 /// For example: when analyzing the memory access A[i][j][k] in this loop nest
9064 ///
9065 ///  void foo(long n, long m, long o, double A[n][m][o]) {
9066 ///
9067 ///    for (long i = 0; i < n; i++)
9068 ///      for (long j = 0; j < m; j++)
9069 ///        for (long k = 0; k < o; k++)
9070 ///          A[i][j][k] = 1.0;
9071 ///  }
9072 ///
9073 /// the delinearization input is the following AddRec SCEV:
9074 ///
9075 ///  AddRec: {{{%A,+,(8 * %m * %o)}<%for.i>,+,(8 * %o)}<%for.j>,+,8}<%for.k>
9076 ///
9077 /// From this SCEV, we are able to say that the base offset of the access is %A
9078 /// because it appears as an offset that does not divide any of the strides in
9079 /// the loops:
9080 ///
9081 ///  CHECK: Base offset: %A
9082 ///
9083 /// and then SCEV->delinearize determines the size of some of the dimensions of
9084 /// the array as these are the multiples by which the strides are happening:
9085 ///
9086 ///  CHECK: ArrayDecl[UnknownSize][%m][%o] with elements of sizeof(double) bytes.
9087 ///
9088 /// Note that the outermost dimension remains of UnknownSize because there are
9089 /// no strides that would help identifying the size of the last dimension: when
9090 /// the array has been statically allocated, one could compute the size of that
9091 /// dimension by dividing the overall size of the array by the size of the known
9092 /// dimensions: %m * %o * 8.
9093 ///
9094 /// Finally delinearize provides the access functions for the array reference
9095 /// that does correspond to A[i][j][k] of the above C testcase:
9096 ///
9097 ///  CHECK: ArrayRef[{0,+,1}<%for.i>][{0,+,1}<%for.j>][{0,+,1}<%for.k>]
9098 ///
9099 /// The testcases are checking the output of a function pass:
9100 /// DelinearizationPass that walks through all loads and stores of a function
9101 /// asking for the SCEV of the memory access with respect to all enclosing
9102 /// loops, calling SCEV->delinearize on that and printing the results.
9103 
9104 void ScalarEvolution::delinearize(const SCEV *Expr,
9105                                  SmallVectorImpl<const SCEV *> &Subscripts,
9106                                  SmallVectorImpl<const SCEV *> &Sizes,
9107                                  const SCEV *ElementSize) {
9108   // First step: collect parametric terms.
9109   SmallVector<const SCEV *, 4> Terms;
9110   collectParametricTerms(Expr, Terms);
9111 
9112   if (Terms.empty())
9113     return;
9114 
9115   // Second step: find subscript sizes.
9116   findArrayDimensions(Terms, Sizes, ElementSize);
9117 
9118   if (Sizes.empty())
9119     return;
9120 
9121   // Third step: compute the access functions for each subscript.
9122   computeAccessFunctions(Expr, Subscripts, Sizes);
9123 
9124   if (Subscripts.empty())
9125     return;
9126 
9127   DEBUG({
9128       dbgs() << "succeeded to delinearize " << *Expr << "\n";
9129       dbgs() << "ArrayDecl[UnknownSize]";
9130       for (const SCEV *S : Sizes)
9131         dbgs() << "[" << *S << "]";
9132 
9133       dbgs() << "\nArrayRef";
9134       for (const SCEV *S : Subscripts)
9135         dbgs() << "[" << *S << "]";
9136       dbgs() << "\n";
9137     });
9138 }
9139 
9140 //===----------------------------------------------------------------------===//
9141 //                   SCEVCallbackVH Class Implementation
9142 //===----------------------------------------------------------------------===//
9143 
9144 void ScalarEvolution::SCEVCallbackVH::deleted() {
9145   assert(SE && "SCEVCallbackVH called with a null ScalarEvolution!");
9146   if (PHINode *PN = dyn_cast<PHINode>(getValPtr()))
9147     SE->ConstantEvolutionLoopExitValue.erase(PN);
9148   SE->eraseValueFromMap(getValPtr());
9149   // this now dangles!
9150 }
9151 
9152 void ScalarEvolution::SCEVCallbackVH::allUsesReplacedWith(Value *V) {
9153   assert(SE && "SCEVCallbackVH called with a null ScalarEvolution!");
9154 
9155   // Forget all the expressions associated with users of the old value,
9156   // so that future queries will recompute the expressions using the new
9157   // value.
9158   Value *Old = getValPtr();
9159   SmallVector<User *, 16> Worklist(Old->user_begin(), Old->user_end());
9160   SmallPtrSet<User *, 8> Visited;
9161   while (!Worklist.empty()) {
9162     User *U = Worklist.pop_back_val();
9163     // Deleting the Old value will cause this to dangle. Postpone
9164     // that until everything else is done.
9165     if (U == Old)
9166       continue;
9167     if (!Visited.insert(U).second)
9168       continue;
9169     if (PHINode *PN = dyn_cast<PHINode>(U))
9170       SE->ConstantEvolutionLoopExitValue.erase(PN);
9171     SE->eraseValueFromMap(U);
9172     Worklist.insert(Worklist.end(), U->user_begin(), U->user_end());
9173   }
9174   // Delete the Old value.
9175   if (PHINode *PN = dyn_cast<PHINode>(Old))
9176     SE->ConstantEvolutionLoopExitValue.erase(PN);
9177   SE->eraseValueFromMap(Old);
9178   // this now dangles!
9179 }
9180 
9181 ScalarEvolution::SCEVCallbackVH::SCEVCallbackVH(Value *V, ScalarEvolution *se)
9182   : CallbackVH(V), SE(se) {}
9183 
9184 //===----------------------------------------------------------------------===//
9185 //                   ScalarEvolution Class Implementation
9186 //===----------------------------------------------------------------------===//
9187 
9188 ScalarEvolution::ScalarEvolution(Function &F, TargetLibraryInfo &TLI,
9189                                  AssumptionCache &AC, DominatorTree &DT,
9190                                  LoopInfo &LI)
9191     : F(F), TLI(TLI), AC(AC), DT(DT), LI(LI),
9192       CouldNotCompute(new SCEVCouldNotCompute()),
9193       WalkingBEDominatingConds(false), ProvingSplitPredicate(false),
9194       ValuesAtScopes(64), LoopDispositions(64), BlockDispositions(64),
9195       FirstUnknown(nullptr) {}
9196 
9197 ScalarEvolution::ScalarEvolution(ScalarEvolution &&Arg)
9198     : F(Arg.F), TLI(Arg.TLI), AC(Arg.AC), DT(Arg.DT), LI(Arg.LI),
9199       CouldNotCompute(std::move(Arg.CouldNotCompute)),
9200       ValueExprMap(std::move(Arg.ValueExprMap)),
9201       WalkingBEDominatingConds(false), ProvingSplitPredicate(false),
9202       BackedgeTakenCounts(std::move(Arg.BackedgeTakenCounts)),
9203       ConstantEvolutionLoopExitValue(
9204           std::move(Arg.ConstantEvolutionLoopExitValue)),
9205       ValuesAtScopes(std::move(Arg.ValuesAtScopes)),
9206       LoopDispositions(std::move(Arg.LoopDispositions)),
9207       BlockDispositions(std::move(Arg.BlockDispositions)),
9208       UnsignedRanges(std::move(Arg.UnsignedRanges)),
9209       SignedRanges(std::move(Arg.SignedRanges)),
9210       UniqueSCEVs(std::move(Arg.UniqueSCEVs)),
9211       UniquePreds(std::move(Arg.UniquePreds)),
9212       SCEVAllocator(std::move(Arg.SCEVAllocator)),
9213       FirstUnknown(Arg.FirstUnknown) {
9214   Arg.FirstUnknown = nullptr;
9215 }
9216 
9217 ScalarEvolution::~ScalarEvolution() {
9218   // Iterate through all the SCEVUnknown instances and call their
9219   // destructors, so that they release their references to their values.
9220   for (SCEVUnknown *U = FirstUnknown; U;) {
9221     SCEVUnknown *Tmp = U;
9222     U = U->Next;
9223     Tmp->~SCEVUnknown();
9224   }
9225   FirstUnknown = nullptr;
9226 
9227   ExprValueMap.clear();
9228   ValueExprMap.clear();
9229   HasRecMap.clear();
9230 
9231   // Free any extra memory created for ExitNotTakenInfo in the unlikely event
9232   // that a loop had multiple computable exits.
9233   for (auto &BTCI : BackedgeTakenCounts)
9234     BTCI.second.clear();
9235 
9236   assert(PendingLoopPredicates.empty() && "isImpliedCond garbage");
9237   assert(!WalkingBEDominatingConds && "isLoopBackedgeGuardedByCond garbage!");
9238   assert(!ProvingSplitPredicate && "ProvingSplitPredicate garbage!");
9239 }
9240 
9241 bool ScalarEvolution::hasLoopInvariantBackedgeTakenCount(const Loop *L) {
9242   return !isa<SCEVCouldNotCompute>(getBackedgeTakenCount(L));
9243 }
9244 
9245 static void PrintLoopInfo(raw_ostream &OS, ScalarEvolution *SE,
9246                           const Loop *L) {
9247   // Print all inner loops first
9248   for (Loop::iterator I = L->begin(), E = L->end(); I != E; ++I)
9249     PrintLoopInfo(OS, SE, *I);
9250 
9251   OS << "Loop ";
9252   L->getHeader()->printAsOperand(OS, /*PrintType=*/false);
9253   OS << ": ";
9254 
9255   SmallVector<BasicBlock *, 8> ExitBlocks;
9256   L->getExitBlocks(ExitBlocks);
9257   if (ExitBlocks.size() != 1)
9258     OS << "<multiple exits> ";
9259 
9260   if (SE->hasLoopInvariantBackedgeTakenCount(L)) {
9261     OS << "backedge-taken count is " << *SE->getBackedgeTakenCount(L);
9262   } else {
9263     OS << "Unpredictable backedge-taken count. ";
9264   }
9265 
9266   OS << "\n"
9267         "Loop ";
9268   L->getHeader()->printAsOperand(OS, /*PrintType=*/false);
9269   OS << ": ";
9270 
9271   if (!isa<SCEVCouldNotCompute>(SE->getMaxBackedgeTakenCount(L))) {
9272     OS << "max backedge-taken count is " << *SE->getMaxBackedgeTakenCount(L);
9273   } else {
9274     OS << "Unpredictable max backedge-taken count. ";
9275   }
9276 
9277   OS << "\n";
9278 }
9279 
9280 void ScalarEvolution::print(raw_ostream &OS) const {
9281   // ScalarEvolution's implementation of the print method is to print
9282   // out SCEV values of all instructions that are interesting. Doing
9283   // this potentially causes it to create new SCEV objects though,
9284   // which technically conflicts with the const qualifier. This isn't
9285   // observable from outside the class though, so casting away the
9286   // const isn't dangerous.
9287   ScalarEvolution &SE = *const_cast<ScalarEvolution *>(this);
9288 
9289   OS << "Classifying expressions for: ";
9290   F.printAsOperand(OS, /*PrintType=*/false);
9291   OS << "\n";
9292   for (Instruction &I : instructions(F))
9293     if (isSCEVable(I.getType()) && !isa<CmpInst>(I)) {
9294       OS << I << '\n';
9295       OS << "  -->  ";
9296       const SCEV *SV = SE.getSCEV(&I);
9297       SV->print(OS);
9298       if (!isa<SCEVCouldNotCompute>(SV)) {
9299         OS << " U: ";
9300         SE.getUnsignedRange(SV).print(OS);
9301         OS << " S: ";
9302         SE.getSignedRange(SV).print(OS);
9303       }
9304 
9305       const Loop *L = LI.getLoopFor(I.getParent());
9306 
9307       const SCEV *AtUse = SE.getSCEVAtScope(SV, L);
9308       if (AtUse != SV) {
9309         OS << "  -->  ";
9310         AtUse->print(OS);
9311         if (!isa<SCEVCouldNotCompute>(AtUse)) {
9312           OS << " U: ";
9313           SE.getUnsignedRange(AtUse).print(OS);
9314           OS << " S: ";
9315           SE.getSignedRange(AtUse).print(OS);
9316         }
9317       }
9318 
9319       if (L) {
9320         OS << "\t\t" "Exits: ";
9321         const SCEV *ExitValue = SE.getSCEVAtScope(SV, L->getParentLoop());
9322         if (!SE.isLoopInvariant(ExitValue, L)) {
9323           OS << "<<Unknown>>";
9324         } else {
9325           OS << *ExitValue;
9326         }
9327       }
9328 
9329       OS << "\n";
9330     }
9331 
9332   OS << "Determining loop execution counts for: ";
9333   F.printAsOperand(OS, /*PrintType=*/false);
9334   OS << "\n";
9335   for (LoopInfo::iterator I = LI.begin(), E = LI.end(); I != E; ++I)
9336     PrintLoopInfo(OS, &SE, *I);
9337 }
9338 
9339 ScalarEvolution::LoopDisposition
9340 ScalarEvolution::getLoopDisposition(const SCEV *S, const Loop *L) {
9341   auto &Values = LoopDispositions[S];
9342   for (auto &V : Values) {
9343     if (V.getPointer() == L)
9344       return V.getInt();
9345   }
9346   Values.emplace_back(L, LoopVariant);
9347   LoopDisposition D = computeLoopDisposition(S, L);
9348   auto &Values2 = LoopDispositions[S];
9349   for (auto &V : make_range(Values2.rbegin(), Values2.rend())) {
9350     if (V.getPointer() == L) {
9351       V.setInt(D);
9352       break;
9353     }
9354   }
9355   return D;
9356 }
9357 
9358 ScalarEvolution::LoopDisposition
9359 ScalarEvolution::computeLoopDisposition(const SCEV *S, const Loop *L) {
9360   switch (static_cast<SCEVTypes>(S->getSCEVType())) {
9361   case scConstant:
9362     return LoopInvariant;
9363   case scTruncate:
9364   case scZeroExtend:
9365   case scSignExtend:
9366     return getLoopDisposition(cast<SCEVCastExpr>(S)->getOperand(), L);
9367   case scAddRecExpr: {
9368     const SCEVAddRecExpr *AR = cast<SCEVAddRecExpr>(S);
9369 
9370     // If L is the addrec's loop, it's computable.
9371     if (AR->getLoop() == L)
9372       return LoopComputable;
9373 
9374     // Add recurrences are never invariant in the function-body (null loop).
9375     if (!L)
9376       return LoopVariant;
9377 
9378     // This recurrence is variant w.r.t. L if L contains AR's loop.
9379     if (L->contains(AR->getLoop()))
9380       return LoopVariant;
9381 
9382     // This recurrence is invariant w.r.t. L if AR's loop contains L.
9383     if (AR->getLoop()->contains(L))
9384       return LoopInvariant;
9385 
9386     // This recurrence is variant w.r.t. L if any of its operands
9387     // are variant.
9388     for (auto *Op : AR->operands())
9389       if (!isLoopInvariant(Op, L))
9390         return LoopVariant;
9391 
9392     // Otherwise it's loop-invariant.
9393     return LoopInvariant;
9394   }
9395   case scAddExpr:
9396   case scMulExpr:
9397   case scUMaxExpr:
9398   case scSMaxExpr: {
9399     bool HasVarying = false;
9400     for (auto *Op : cast<SCEVNAryExpr>(S)->operands()) {
9401       LoopDisposition D = getLoopDisposition(Op, L);
9402       if (D == LoopVariant)
9403         return LoopVariant;
9404       if (D == LoopComputable)
9405         HasVarying = true;
9406     }
9407     return HasVarying ? LoopComputable : LoopInvariant;
9408   }
9409   case scUDivExpr: {
9410     const SCEVUDivExpr *UDiv = cast<SCEVUDivExpr>(S);
9411     LoopDisposition LD = getLoopDisposition(UDiv->getLHS(), L);
9412     if (LD == LoopVariant)
9413       return LoopVariant;
9414     LoopDisposition RD = getLoopDisposition(UDiv->getRHS(), L);
9415     if (RD == LoopVariant)
9416       return LoopVariant;
9417     return (LD == LoopInvariant && RD == LoopInvariant) ?
9418            LoopInvariant : LoopComputable;
9419   }
9420   case scUnknown:
9421     // All non-instruction values are loop invariant.  All instructions are loop
9422     // invariant if they are not contained in the specified loop.
9423     // Instructions are never considered invariant in the function body
9424     // (null loop) because they are defined within the "loop".
9425     if (auto *I = dyn_cast<Instruction>(cast<SCEVUnknown>(S)->getValue()))
9426       return (L && !L->contains(I)) ? LoopInvariant : LoopVariant;
9427     return LoopInvariant;
9428   case scCouldNotCompute:
9429     llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
9430   }
9431   llvm_unreachable("Unknown SCEV kind!");
9432 }
9433 
9434 bool ScalarEvolution::isLoopInvariant(const SCEV *S, const Loop *L) {
9435   return getLoopDisposition(S, L) == LoopInvariant;
9436 }
9437 
9438 bool ScalarEvolution::hasComputableLoopEvolution(const SCEV *S, const Loop *L) {
9439   return getLoopDisposition(S, L) == LoopComputable;
9440 }
9441 
9442 ScalarEvolution::BlockDisposition
9443 ScalarEvolution::getBlockDisposition(const SCEV *S, const BasicBlock *BB) {
9444   auto &Values = BlockDispositions[S];
9445   for (auto &V : Values) {
9446     if (V.getPointer() == BB)
9447       return V.getInt();
9448   }
9449   Values.emplace_back(BB, DoesNotDominateBlock);
9450   BlockDisposition D = computeBlockDisposition(S, BB);
9451   auto &Values2 = BlockDispositions[S];
9452   for (auto &V : make_range(Values2.rbegin(), Values2.rend())) {
9453     if (V.getPointer() == BB) {
9454       V.setInt(D);
9455       break;
9456     }
9457   }
9458   return D;
9459 }
9460 
9461 ScalarEvolution::BlockDisposition
9462 ScalarEvolution::computeBlockDisposition(const SCEV *S, const BasicBlock *BB) {
9463   switch (static_cast<SCEVTypes>(S->getSCEVType())) {
9464   case scConstant:
9465     return ProperlyDominatesBlock;
9466   case scTruncate:
9467   case scZeroExtend:
9468   case scSignExtend:
9469     return getBlockDisposition(cast<SCEVCastExpr>(S)->getOperand(), BB);
9470   case scAddRecExpr: {
9471     // This uses a "dominates" query instead of "properly dominates" query
9472     // to test for proper dominance too, because the instruction which
9473     // produces the addrec's value is a PHI, and a PHI effectively properly
9474     // dominates its entire containing block.
9475     const SCEVAddRecExpr *AR = cast<SCEVAddRecExpr>(S);
9476     if (!DT.dominates(AR->getLoop()->getHeader(), BB))
9477       return DoesNotDominateBlock;
9478   }
9479   // FALL THROUGH into SCEVNAryExpr handling.
9480   case scAddExpr:
9481   case scMulExpr:
9482   case scUMaxExpr:
9483   case scSMaxExpr: {
9484     const SCEVNAryExpr *NAry = cast<SCEVNAryExpr>(S);
9485     bool Proper = true;
9486     for (const SCEV *NAryOp : NAry->operands()) {
9487       BlockDisposition D = getBlockDisposition(NAryOp, BB);
9488       if (D == DoesNotDominateBlock)
9489         return DoesNotDominateBlock;
9490       if (D == DominatesBlock)
9491         Proper = false;
9492     }
9493     return Proper ? ProperlyDominatesBlock : DominatesBlock;
9494   }
9495   case scUDivExpr: {
9496     const SCEVUDivExpr *UDiv = cast<SCEVUDivExpr>(S);
9497     const SCEV *LHS = UDiv->getLHS(), *RHS = UDiv->getRHS();
9498     BlockDisposition LD = getBlockDisposition(LHS, BB);
9499     if (LD == DoesNotDominateBlock)
9500       return DoesNotDominateBlock;
9501     BlockDisposition RD = getBlockDisposition(RHS, BB);
9502     if (RD == DoesNotDominateBlock)
9503       return DoesNotDominateBlock;
9504     return (LD == ProperlyDominatesBlock && RD == ProperlyDominatesBlock) ?
9505       ProperlyDominatesBlock : DominatesBlock;
9506   }
9507   case scUnknown:
9508     if (Instruction *I =
9509           dyn_cast<Instruction>(cast<SCEVUnknown>(S)->getValue())) {
9510       if (I->getParent() == BB)
9511         return DominatesBlock;
9512       if (DT.properlyDominates(I->getParent(), BB))
9513         return ProperlyDominatesBlock;
9514       return DoesNotDominateBlock;
9515     }
9516     return ProperlyDominatesBlock;
9517   case scCouldNotCompute:
9518     llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
9519   }
9520   llvm_unreachable("Unknown SCEV kind!");
9521 }
9522 
9523 bool ScalarEvolution::dominates(const SCEV *S, const BasicBlock *BB) {
9524   return getBlockDisposition(S, BB) >= DominatesBlock;
9525 }
9526 
9527 bool ScalarEvolution::properlyDominates(const SCEV *S, const BasicBlock *BB) {
9528   return getBlockDisposition(S, BB) == ProperlyDominatesBlock;
9529 }
9530 
9531 bool ScalarEvolution::hasOperand(const SCEV *S, const SCEV *Op) const {
9532   // Search for a SCEV expression node within an expression tree.
9533   // Implements SCEVTraversal::Visitor.
9534   struct SCEVSearch {
9535     const SCEV *Node;
9536     bool IsFound;
9537 
9538     SCEVSearch(const SCEV *N): Node(N), IsFound(false) {}
9539 
9540     bool follow(const SCEV *S) {
9541       IsFound |= (S == Node);
9542       return !IsFound;
9543     }
9544     bool isDone() const { return IsFound; }
9545   };
9546 
9547   SCEVSearch Search(Op);
9548   visitAll(S, Search);
9549   return Search.IsFound;
9550 }
9551 
9552 void ScalarEvolution::forgetMemoizedResults(const SCEV *S) {
9553   ValuesAtScopes.erase(S);
9554   LoopDispositions.erase(S);
9555   BlockDispositions.erase(S);
9556   UnsignedRanges.erase(S);
9557   SignedRanges.erase(S);
9558   ExprValueMap.erase(S);
9559   HasRecMap.erase(S);
9560 
9561   for (DenseMap<const Loop*, BackedgeTakenInfo>::iterator I =
9562          BackedgeTakenCounts.begin(), E = BackedgeTakenCounts.end(); I != E; ) {
9563     BackedgeTakenInfo &BEInfo = I->second;
9564     if (BEInfo.hasOperand(S, this)) {
9565       BEInfo.clear();
9566       BackedgeTakenCounts.erase(I++);
9567     }
9568     else
9569       ++I;
9570   }
9571 }
9572 
9573 typedef DenseMap<const Loop *, std::string> VerifyMap;
9574 
9575 /// replaceSubString - Replaces all occurrences of From in Str with To.
9576 static void replaceSubString(std::string &Str, StringRef From, StringRef To) {
9577   size_t Pos = 0;
9578   while ((Pos = Str.find(From, Pos)) != std::string::npos) {
9579     Str.replace(Pos, From.size(), To.data(), To.size());
9580     Pos += To.size();
9581   }
9582 }
9583 
9584 /// getLoopBackedgeTakenCounts - Helper method for verifyAnalysis.
9585 static void
9586 getLoopBackedgeTakenCounts(Loop *L, VerifyMap &Map, ScalarEvolution &SE) {
9587   std::string &S = Map[L];
9588   if (S.empty()) {
9589     raw_string_ostream OS(S);
9590     SE.getBackedgeTakenCount(L)->print(OS);
9591 
9592     // false and 0 are semantically equivalent. This can happen in dead loops.
9593     replaceSubString(OS.str(), "false", "0");
9594     // Remove wrap flags, their use in SCEV is highly fragile.
9595     // FIXME: Remove this when SCEV gets smarter about them.
9596     replaceSubString(OS.str(), "<nw>", "");
9597     replaceSubString(OS.str(), "<nsw>", "");
9598     replaceSubString(OS.str(), "<nuw>", "");
9599   }
9600 
9601   for (auto *R : reverse(*L))
9602     getLoopBackedgeTakenCounts(R, Map, SE); // recurse.
9603 }
9604 
9605 void ScalarEvolution::verify() const {
9606   ScalarEvolution &SE = *const_cast<ScalarEvolution *>(this);
9607 
9608   // Gather stringified backedge taken counts for all loops using SCEV's caches.
9609   // FIXME: It would be much better to store actual values instead of strings,
9610   //        but SCEV pointers will change if we drop the caches.
9611   VerifyMap BackedgeDumpsOld, BackedgeDumpsNew;
9612   for (LoopInfo::reverse_iterator I = LI.rbegin(), E = LI.rend(); I != E; ++I)
9613     getLoopBackedgeTakenCounts(*I, BackedgeDumpsOld, SE);
9614 
9615   // Gather stringified backedge taken counts for all loops using a fresh
9616   // ScalarEvolution object.
9617   ScalarEvolution SE2(F, TLI, AC, DT, LI);
9618   for (LoopInfo::reverse_iterator I = LI.rbegin(), E = LI.rend(); I != E; ++I)
9619     getLoopBackedgeTakenCounts(*I, BackedgeDumpsNew, SE2);
9620 
9621   // Now compare whether they're the same with and without caches. This allows
9622   // verifying that no pass changed the cache.
9623   assert(BackedgeDumpsOld.size() == BackedgeDumpsNew.size() &&
9624          "New loops suddenly appeared!");
9625 
9626   for (VerifyMap::iterator OldI = BackedgeDumpsOld.begin(),
9627                            OldE = BackedgeDumpsOld.end(),
9628                            NewI = BackedgeDumpsNew.begin();
9629        OldI != OldE; ++OldI, ++NewI) {
9630     assert(OldI->first == NewI->first && "Loop order changed!");
9631 
9632     // Compare the stringified SCEVs. We don't care if undef backedgetaken count
9633     // changes.
9634     // FIXME: We currently ignore SCEV changes from/to CouldNotCompute. This
9635     // means that a pass is buggy or SCEV has to learn a new pattern but is
9636     // usually not harmful.
9637     if (OldI->second != NewI->second &&
9638         OldI->second.find("undef") == std::string::npos &&
9639         NewI->second.find("undef") == std::string::npos &&
9640         OldI->second != "***COULDNOTCOMPUTE***" &&
9641         NewI->second != "***COULDNOTCOMPUTE***") {
9642       dbgs() << "SCEVValidator: SCEV for loop '"
9643              << OldI->first->getHeader()->getName()
9644              << "' changed from '" << OldI->second
9645              << "' to '" << NewI->second << "'!\n";
9646       std::abort();
9647     }
9648   }
9649 
9650   // TODO: Verify more things.
9651 }
9652 
9653 template class llvm::AnalysisBase<ScalarEvolutionAnalysis>;
9654 
9655 ScalarEvolution ScalarEvolutionAnalysis::run(Function &F,
9656                                              AnalysisManager<Function> *AM) {
9657   return ScalarEvolution(F, AM->getResult<TargetLibraryAnalysis>(F),
9658                          AM->getResult<AssumptionAnalysis>(F),
9659                          AM->getResult<DominatorTreeAnalysis>(F),
9660                          AM->getResult<LoopAnalysis>(F));
9661 }
9662 
9663 PreservedAnalyses
9664 ScalarEvolutionPrinterPass::run(Function &F, AnalysisManager<Function> *AM) {
9665   AM->getResult<ScalarEvolutionAnalysis>(F).print(OS);
9666   return PreservedAnalyses::all();
9667 }
9668 
9669 INITIALIZE_PASS_BEGIN(ScalarEvolutionWrapperPass, "scalar-evolution",
9670                       "Scalar Evolution Analysis", false, true)
9671 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
9672 INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
9673 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
9674 INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
9675 INITIALIZE_PASS_END(ScalarEvolutionWrapperPass, "scalar-evolution",
9676                     "Scalar Evolution Analysis", false, true)
9677 char ScalarEvolutionWrapperPass::ID = 0;
9678 
9679 ScalarEvolutionWrapperPass::ScalarEvolutionWrapperPass() : FunctionPass(ID) {
9680   initializeScalarEvolutionWrapperPassPass(*PassRegistry::getPassRegistry());
9681 }
9682 
9683 bool ScalarEvolutionWrapperPass::runOnFunction(Function &F) {
9684   SE.reset(new ScalarEvolution(
9685       F, getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(),
9686       getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F),
9687       getAnalysis<DominatorTreeWrapperPass>().getDomTree(),
9688       getAnalysis<LoopInfoWrapperPass>().getLoopInfo()));
9689   return false;
9690 }
9691 
9692 void ScalarEvolutionWrapperPass::releaseMemory() { SE.reset(); }
9693 
9694 void ScalarEvolutionWrapperPass::print(raw_ostream &OS, const Module *) const {
9695   SE->print(OS);
9696 }
9697 
9698 void ScalarEvolutionWrapperPass::verifyAnalysis() const {
9699   if (!VerifySCEV)
9700     return;
9701 
9702   SE->verify();
9703 }
9704 
9705 void ScalarEvolutionWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const {
9706   AU.setPreservesAll();
9707   AU.addRequiredTransitive<AssumptionCacheTracker>();
9708   AU.addRequiredTransitive<LoopInfoWrapperPass>();
9709   AU.addRequiredTransitive<DominatorTreeWrapperPass>();
9710   AU.addRequiredTransitive<TargetLibraryInfoWrapperPass>();
9711 }
9712 
9713 const SCEVPredicate *
9714 ScalarEvolution::getEqualPredicate(const SCEVUnknown *LHS,
9715                                    const SCEVConstant *RHS) {
9716   FoldingSetNodeID ID;
9717   // Unique this node based on the arguments
9718   ID.AddInteger(SCEVPredicate::P_Equal);
9719   ID.AddPointer(LHS);
9720   ID.AddPointer(RHS);
9721   void *IP = nullptr;
9722   if (const auto *S = UniquePreds.FindNodeOrInsertPos(ID, IP))
9723     return S;
9724   SCEVEqualPredicate *Eq = new (SCEVAllocator)
9725       SCEVEqualPredicate(ID.Intern(SCEVAllocator), LHS, RHS);
9726   UniquePreds.InsertNode(Eq, IP);
9727   return Eq;
9728 }
9729 
9730 const SCEVPredicate *ScalarEvolution::getWrapPredicate(
9731     const SCEVAddRecExpr *AR,
9732     SCEVWrapPredicate::IncrementWrapFlags AddedFlags) {
9733   FoldingSetNodeID ID;
9734   // Unique this node based on the arguments
9735   ID.AddInteger(SCEVPredicate::P_Wrap);
9736   ID.AddPointer(AR);
9737   ID.AddInteger(AddedFlags);
9738   void *IP = nullptr;
9739   if (const auto *S = UniquePreds.FindNodeOrInsertPos(ID, IP))
9740     return S;
9741   auto *OF = new (SCEVAllocator)
9742       SCEVWrapPredicate(ID.Intern(SCEVAllocator), AR, AddedFlags);
9743   UniquePreds.InsertNode(OF, IP);
9744   return OF;
9745 }
9746 
9747 namespace {
9748 
9749 class SCEVPredicateRewriter : public SCEVRewriteVisitor<SCEVPredicateRewriter> {
9750 public:
9751   // Rewrites \p S in the context of a loop L and the predicate A.
9752   // If Assume is true, rewrite is free to add further predicates to A
9753   // such that the result will be an AddRecExpr.
9754   static const SCEV *rewrite(const SCEV *S, const Loop *L, ScalarEvolution &SE,
9755                              SCEVUnionPredicate &A, bool Assume) {
9756     SCEVPredicateRewriter Rewriter(L, SE, A, Assume);
9757     return Rewriter.visit(S);
9758   }
9759 
9760   SCEVPredicateRewriter(const Loop *L, ScalarEvolution &SE,
9761                         SCEVUnionPredicate &P, bool Assume)
9762       : SCEVRewriteVisitor(SE), P(P), L(L), Assume(Assume) {}
9763 
9764   const SCEV *visitUnknown(const SCEVUnknown *Expr) {
9765     auto ExprPreds = P.getPredicatesForExpr(Expr);
9766     for (auto *Pred : ExprPreds)
9767       if (const auto *IPred = dyn_cast<const SCEVEqualPredicate>(Pred))
9768         if (IPred->getLHS() == Expr)
9769           return IPred->getRHS();
9770 
9771     return Expr;
9772   }
9773 
9774   const SCEV *visitZeroExtendExpr(const SCEVZeroExtendExpr *Expr) {
9775     const SCEV *Operand = visit(Expr->getOperand());
9776     const SCEVAddRecExpr *AR = dyn_cast<const SCEVAddRecExpr>(Operand);
9777     if (AR && AR->getLoop() == L && AR->isAffine()) {
9778       // This couldn't be folded because the operand didn't have the nuw
9779       // flag. Add the nusw flag as an assumption that we could make.
9780       const SCEV *Step = AR->getStepRecurrence(SE);
9781       Type *Ty = Expr->getType();
9782       if (addOverflowAssumption(AR, SCEVWrapPredicate::IncrementNUSW))
9783         return SE.getAddRecExpr(SE.getZeroExtendExpr(AR->getStart(), Ty),
9784                                 SE.getSignExtendExpr(Step, Ty), L,
9785                                 AR->getNoWrapFlags());
9786     }
9787     return SE.getZeroExtendExpr(Operand, Expr->getType());
9788   }
9789 
9790   const SCEV *visitSignExtendExpr(const SCEVSignExtendExpr *Expr) {
9791     const SCEV *Operand = visit(Expr->getOperand());
9792     const SCEVAddRecExpr *AR = dyn_cast<const SCEVAddRecExpr>(Operand);
9793     if (AR && AR->getLoop() == L && AR->isAffine()) {
9794       // This couldn't be folded because the operand didn't have the nsw
9795       // flag. Add the nssw flag as an assumption that we could make.
9796       const SCEV *Step = AR->getStepRecurrence(SE);
9797       Type *Ty = Expr->getType();
9798       if (addOverflowAssumption(AR, SCEVWrapPredicate::IncrementNSSW))
9799         return SE.getAddRecExpr(SE.getSignExtendExpr(AR->getStart(), Ty),
9800                                 SE.getSignExtendExpr(Step, Ty), L,
9801                                 AR->getNoWrapFlags());
9802     }
9803     return SE.getSignExtendExpr(Operand, Expr->getType());
9804   }
9805 
9806 private:
9807   bool addOverflowAssumption(const SCEVAddRecExpr *AR,
9808                              SCEVWrapPredicate::IncrementWrapFlags AddedFlags) {
9809     auto *A = SE.getWrapPredicate(AR, AddedFlags);
9810     if (!Assume) {
9811       // Check if we've already made this assumption.
9812       if (P.implies(A))
9813         return true;
9814       return false;
9815     }
9816     P.add(A);
9817     return true;
9818   }
9819 
9820   SCEVUnionPredicate &P;
9821   const Loop *L;
9822   bool Assume;
9823 };
9824 } // end anonymous namespace
9825 
9826 const SCEV *ScalarEvolution::rewriteUsingPredicate(const SCEV *S, const Loop *L,
9827                                                    SCEVUnionPredicate &Preds) {
9828   return SCEVPredicateRewriter::rewrite(S, L, *this, Preds, false);
9829 }
9830 
9831 const SCEV *
9832 ScalarEvolution::convertSCEVToAddRecWithPredicates(const SCEV *S, const Loop *L,
9833                                                    SCEVUnionPredicate &Preds) {
9834   return SCEVPredicateRewriter::rewrite(S, L, *this, Preds, true);
9835 }
9836 
9837 /// SCEV predicates
9838 SCEVPredicate::SCEVPredicate(const FoldingSetNodeIDRef ID,
9839                              SCEVPredicateKind Kind)
9840     : FastID(ID), Kind(Kind) {}
9841 
9842 SCEVEqualPredicate::SCEVEqualPredicate(const FoldingSetNodeIDRef ID,
9843                                        const SCEVUnknown *LHS,
9844                                        const SCEVConstant *RHS)
9845     : SCEVPredicate(ID, P_Equal), LHS(LHS), RHS(RHS) {}
9846 
9847 bool SCEVEqualPredicate::implies(const SCEVPredicate *N) const {
9848   const auto *Op = dyn_cast<const SCEVEqualPredicate>(N);
9849 
9850   if (!Op)
9851     return false;
9852 
9853   return Op->LHS == LHS && Op->RHS == RHS;
9854 }
9855 
9856 bool SCEVEqualPredicate::isAlwaysTrue() const { return false; }
9857 
9858 const SCEV *SCEVEqualPredicate::getExpr() const { return LHS; }
9859 
9860 void SCEVEqualPredicate::print(raw_ostream &OS, unsigned Depth) const {
9861   OS.indent(Depth) << "Equal predicate: " << *LHS << " == " << *RHS << "\n";
9862 }
9863 
9864 SCEVWrapPredicate::SCEVWrapPredicate(const FoldingSetNodeIDRef ID,
9865                                      const SCEVAddRecExpr *AR,
9866                                      IncrementWrapFlags Flags)
9867     : SCEVPredicate(ID, P_Wrap), AR(AR), Flags(Flags) {}
9868 
9869 const SCEV *SCEVWrapPredicate::getExpr() const { return AR; }
9870 
9871 bool SCEVWrapPredicate::implies(const SCEVPredicate *N) const {
9872   const auto *Op = dyn_cast<SCEVWrapPredicate>(N);
9873 
9874   return Op && Op->AR == AR && setFlags(Flags, Op->Flags) == Flags;
9875 }
9876 
9877 bool SCEVWrapPredicate::isAlwaysTrue() const {
9878   SCEV::NoWrapFlags ScevFlags = AR->getNoWrapFlags();
9879   IncrementWrapFlags IFlags = Flags;
9880 
9881   if (ScalarEvolution::setFlags(ScevFlags, SCEV::FlagNSW) == ScevFlags)
9882     IFlags = clearFlags(IFlags, IncrementNSSW);
9883 
9884   return IFlags == IncrementAnyWrap;
9885 }
9886 
9887 void SCEVWrapPredicate::print(raw_ostream &OS, unsigned Depth) const {
9888   OS.indent(Depth) << *getExpr() << " Added Flags: ";
9889   if (SCEVWrapPredicate::IncrementNUSW & getFlags())
9890     OS << "<nusw>";
9891   if (SCEVWrapPredicate::IncrementNSSW & getFlags())
9892     OS << "<nssw>";
9893   OS << "\n";
9894 }
9895 
9896 SCEVWrapPredicate::IncrementWrapFlags
9897 SCEVWrapPredicate::getImpliedFlags(const SCEVAddRecExpr *AR,
9898                                    ScalarEvolution &SE) {
9899   IncrementWrapFlags ImpliedFlags = IncrementAnyWrap;
9900   SCEV::NoWrapFlags StaticFlags = AR->getNoWrapFlags();
9901 
9902   // We can safely transfer the NSW flag as NSSW.
9903   if (ScalarEvolution::setFlags(StaticFlags, SCEV::FlagNSW) == StaticFlags)
9904     ImpliedFlags = IncrementNSSW;
9905 
9906   if (ScalarEvolution::setFlags(StaticFlags, SCEV::FlagNUW) == StaticFlags) {
9907     // If the increment is positive, the SCEV NUW flag will also imply the
9908     // WrapPredicate NUSW flag.
9909     if (const auto *Step = dyn_cast<SCEVConstant>(AR->getStepRecurrence(SE)))
9910       if (Step->getValue()->getValue().isNonNegative())
9911         ImpliedFlags = setFlags(ImpliedFlags, IncrementNUSW);
9912   }
9913 
9914   return ImpliedFlags;
9915 }
9916 
9917 /// Union predicates don't get cached so create a dummy set ID for it.
9918 SCEVUnionPredicate::SCEVUnionPredicate()
9919     : SCEVPredicate(FoldingSetNodeIDRef(nullptr, 0), P_Union) {}
9920 
9921 bool SCEVUnionPredicate::isAlwaysTrue() const {
9922   return all_of(Preds,
9923                 [](const SCEVPredicate *I) { return I->isAlwaysTrue(); });
9924 }
9925 
9926 ArrayRef<const SCEVPredicate *>
9927 SCEVUnionPredicate::getPredicatesForExpr(const SCEV *Expr) {
9928   auto I = SCEVToPreds.find(Expr);
9929   if (I == SCEVToPreds.end())
9930     return ArrayRef<const SCEVPredicate *>();
9931   return I->second;
9932 }
9933 
9934 bool SCEVUnionPredicate::implies(const SCEVPredicate *N) const {
9935   if (const auto *Set = dyn_cast<const SCEVUnionPredicate>(N))
9936     return all_of(Set->Preds,
9937                   [this](const SCEVPredicate *I) { return this->implies(I); });
9938 
9939   auto ScevPredsIt = SCEVToPreds.find(N->getExpr());
9940   if (ScevPredsIt == SCEVToPreds.end())
9941     return false;
9942   auto &SCEVPreds = ScevPredsIt->second;
9943 
9944   return any_of(SCEVPreds,
9945                 [N](const SCEVPredicate *I) { return I->implies(N); });
9946 }
9947 
9948 const SCEV *SCEVUnionPredicate::getExpr() const { return nullptr; }
9949 
9950 void SCEVUnionPredicate::print(raw_ostream &OS, unsigned Depth) const {
9951   for (auto Pred : Preds)
9952     Pred->print(OS, Depth);
9953 }
9954 
9955 void SCEVUnionPredicate::add(const SCEVPredicate *N) {
9956   if (const auto *Set = dyn_cast<const SCEVUnionPredicate>(N)) {
9957     for (auto Pred : Set->Preds)
9958       add(Pred);
9959     return;
9960   }
9961 
9962   if (implies(N))
9963     return;
9964 
9965   const SCEV *Key = N->getExpr();
9966   assert(Key && "Only SCEVUnionPredicate doesn't have an "
9967                 " associated expression!");
9968 
9969   SCEVToPreds[Key].push_back(N);
9970   Preds.push_back(N);
9971 }
9972 
9973 PredicatedScalarEvolution::PredicatedScalarEvolution(ScalarEvolution &SE,
9974                                                      Loop &L)
9975     : SE(SE), L(L), Generation(0) {}
9976 
9977 const SCEV *PredicatedScalarEvolution::getSCEV(Value *V) {
9978   const SCEV *Expr = SE.getSCEV(V);
9979   RewriteEntry &Entry = RewriteMap[Expr];
9980 
9981   // If we already have an entry and the version matches, return it.
9982   if (Entry.second && Generation == Entry.first)
9983     return Entry.second;
9984 
9985   // We found an entry but it's stale. Rewrite the stale entry
9986   // acording to the current predicate.
9987   if (Entry.second)
9988     Expr = Entry.second;
9989 
9990   const SCEV *NewSCEV = SE.rewriteUsingPredicate(Expr, &L, Preds);
9991   Entry = {Generation, NewSCEV};
9992 
9993   return NewSCEV;
9994 }
9995 
9996 void PredicatedScalarEvolution::addPredicate(const SCEVPredicate &Pred) {
9997   if (Preds.implies(&Pred))
9998     return;
9999   Preds.add(&Pred);
10000   updateGeneration();
10001 }
10002 
10003 const SCEVUnionPredicate &PredicatedScalarEvolution::getUnionPredicate() const {
10004   return Preds;
10005 }
10006 
10007 void PredicatedScalarEvolution::updateGeneration() {
10008   // If the generation number wrapped recompute everything.
10009   if (++Generation == 0) {
10010     for (auto &II : RewriteMap) {
10011       const SCEV *Rewritten = II.second.second;
10012       II.second = {Generation, SE.rewriteUsingPredicate(Rewritten, &L, Preds)};
10013     }
10014   }
10015 }
10016 
10017 void PredicatedScalarEvolution::setNoOverflow(
10018     Value *V, SCEVWrapPredicate::IncrementWrapFlags Flags) {
10019   const SCEV *Expr = getSCEV(V);
10020   const auto *AR = cast<SCEVAddRecExpr>(Expr);
10021 
10022   auto ImpliedFlags = SCEVWrapPredicate::getImpliedFlags(AR, SE);
10023 
10024   // Clear the statically implied flags.
10025   Flags = SCEVWrapPredicate::clearFlags(Flags, ImpliedFlags);
10026   addPredicate(*SE.getWrapPredicate(AR, Flags));
10027 
10028   auto II = FlagsMap.insert({V, Flags});
10029   if (!II.second)
10030     II.first->second = SCEVWrapPredicate::setFlags(Flags, II.first->second);
10031 }
10032 
10033 bool PredicatedScalarEvolution::hasNoOverflow(
10034     Value *V, SCEVWrapPredicate::IncrementWrapFlags Flags) {
10035   const SCEV *Expr = getSCEV(V);
10036   const auto *AR = cast<SCEVAddRecExpr>(Expr);
10037 
10038   Flags = SCEVWrapPredicate::clearFlags(
10039       Flags, SCEVWrapPredicate::getImpliedFlags(AR, SE));
10040 
10041   auto II = FlagsMap.find(V);
10042 
10043   if (II != FlagsMap.end())
10044     Flags = SCEVWrapPredicate::clearFlags(Flags, II->second);
10045 
10046   return Flags == SCEVWrapPredicate::IncrementAnyWrap;
10047 }
10048 
10049 const SCEV *PredicatedScalarEvolution::getAsAddRec(Value *V) {
10050   const SCEV *Expr = this->getSCEV(V);
10051   const SCEV *New = SE.convertSCEVToAddRecWithPredicates(Expr, &L, Preds);
10052   updateGeneration();
10053   RewriteMap[SE.getSCEV(V)] = {Generation, New};
10054   return New;
10055 }
10056 
10057 PredicatedScalarEvolution::
10058 PredicatedScalarEvolution(const PredicatedScalarEvolution &Init) :
10059   RewriteMap(Init.RewriteMap), SE(Init.SE), L(Init.L), Preds(Init.Preds),
10060   Generation(Init.Generation) {
10061   for (auto I = Init.FlagsMap.begin(), E = Init.FlagsMap.end(); I != E; ++I)
10062     FlagsMap.insert(*I);
10063 }
10064