1 //===- ScalarEvolution.cpp - Scalar Evolution Analysis --------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file contains the implementation of the scalar evolution analysis 11 // engine, which is used primarily to analyze expressions involving induction 12 // variables in loops. 13 // 14 // There are several aspects to this library. First is the representation of 15 // scalar expressions, which are represented as subclasses of the SCEV class. 16 // These classes are used to represent certain types of subexpressions that we 17 // can handle. We only create one SCEV of a particular shape, so 18 // pointer-comparisons for equality are legal. 19 // 20 // One important aspect of the SCEV objects is that they are never cyclic, even 21 // if there is a cycle in the dataflow for an expression (ie, a PHI node). If 22 // the PHI node is one of the idioms that we can represent (e.g., a polynomial 23 // recurrence) then we represent it directly as a recurrence node, otherwise we 24 // represent it as a SCEVUnknown node. 25 // 26 // In addition to being able to represent expressions of various types, we also 27 // have folders that are used to build the *canonical* representation for a 28 // particular expression. These folders are capable of using a variety of 29 // rewrite rules to simplify the expressions. 30 // 31 // Once the folders are defined, we can implement the more interesting 32 // higher-level code, such as the code that recognizes PHI nodes of various 33 // types, computes the execution count of a loop, etc. 34 // 35 // TODO: We should use these routines and value representations to implement 36 // dependence analysis! 37 // 38 //===----------------------------------------------------------------------===// 39 // 40 // There are several good references for the techniques used in this analysis. 41 // 42 // Chains of recurrences -- a method to expedite the evaluation 43 // of closed-form functions 44 // Olaf Bachmann, Paul S. Wang, Eugene V. Zima 45 // 46 // On computational properties of chains of recurrences 47 // Eugene V. Zima 48 // 49 // Symbolic Evaluation of Chains of Recurrences for Loop Optimization 50 // Robert A. van Engelen 51 // 52 // Efficient Symbolic Analysis for Optimizing Compilers 53 // Robert A. van Engelen 54 // 55 // Using the chains of recurrences algebra for data dependence testing and 56 // induction variable substitution 57 // MS Thesis, Johnie Birch 58 // 59 //===----------------------------------------------------------------------===// 60 61 #include "llvm/Analysis/ScalarEvolution.h" 62 #include "llvm/ADT/APInt.h" 63 #include "llvm/ADT/ArrayRef.h" 64 #include "llvm/ADT/DenseMap.h" 65 #include "llvm/ADT/DepthFirstIterator.h" 66 #include "llvm/ADT/EquivalenceClasses.h" 67 #include "llvm/ADT/FoldingSet.h" 68 #include "llvm/ADT/None.h" 69 #include "llvm/ADT/Optional.h" 70 #include "llvm/ADT/STLExtras.h" 71 #include "llvm/ADT/ScopeExit.h" 72 #include "llvm/ADT/Sequence.h" 73 #include "llvm/ADT/SetVector.h" 74 #include "llvm/ADT/SmallPtrSet.h" 75 #include "llvm/ADT/SmallSet.h" 76 #include "llvm/ADT/SmallVector.h" 77 #include "llvm/ADT/Statistic.h" 78 #include "llvm/ADT/StringRef.h" 79 #include "llvm/Analysis/AssumptionCache.h" 80 #include "llvm/Analysis/ConstantFolding.h" 81 #include "llvm/Analysis/InstructionSimplify.h" 82 #include "llvm/Analysis/LoopInfo.h" 83 #include "llvm/Analysis/ScalarEvolutionExpressions.h" 84 #include "llvm/Analysis/TargetLibraryInfo.h" 85 #include "llvm/Analysis/ValueTracking.h" 86 #include "llvm/IR/Argument.h" 87 #include "llvm/IR/BasicBlock.h" 88 #include "llvm/IR/CFG.h" 89 #include "llvm/IR/CallSite.h" 90 #include "llvm/IR/Constant.h" 91 #include "llvm/IR/ConstantRange.h" 92 #include "llvm/IR/Constants.h" 93 #include "llvm/IR/DataLayout.h" 94 #include "llvm/IR/DerivedTypes.h" 95 #include "llvm/IR/Dominators.h" 96 #include "llvm/IR/Function.h" 97 #include "llvm/IR/GlobalAlias.h" 98 #include "llvm/IR/GlobalValue.h" 99 #include "llvm/IR/GlobalVariable.h" 100 #include "llvm/IR/InstIterator.h" 101 #include "llvm/IR/InstrTypes.h" 102 #include "llvm/IR/Instruction.h" 103 #include "llvm/IR/Instructions.h" 104 #include "llvm/IR/IntrinsicInst.h" 105 #include "llvm/IR/Intrinsics.h" 106 #include "llvm/IR/LLVMContext.h" 107 #include "llvm/IR/Metadata.h" 108 #include "llvm/IR/Operator.h" 109 #include "llvm/IR/PatternMatch.h" 110 #include "llvm/IR/Type.h" 111 #include "llvm/IR/Use.h" 112 #include "llvm/IR/User.h" 113 #include "llvm/IR/Value.h" 114 #include "llvm/Pass.h" 115 #include "llvm/Support/Casting.h" 116 #include "llvm/Support/CommandLine.h" 117 #include "llvm/Support/Compiler.h" 118 #include "llvm/Support/Debug.h" 119 #include "llvm/Support/ErrorHandling.h" 120 #include "llvm/Support/KnownBits.h" 121 #include "llvm/Support/SaveAndRestore.h" 122 #include "llvm/Support/raw_ostream.h" 123 #include <algorithm> 124 #include <cassert> 125 #include <climits> 126 #include <cstddef> 127 #include <cstdint> 128 #include <cstdlib> 129 #include <map> 130 #include <memory> 131 #include <tuple> 132 #include <utility> 133 #include <vector> 134 135 using namespace llvm; 136 137 #define DEBUG_TYPE "scalar-evolution" 138 139 STATISTIC(NumArrayLenItCounts, 140 "Number of trip counts computed with array length"); 141 STATISTIC(NumTripCountsComputed, 142 "Number of loops with predictable loop counts"); 143 STATISTIC(NumTripCountsNotComputed, 144 "Number of loops without predictable loop counts"); 145 STATISTIC(NumBruteForceTripCountsComputed, 146 "Number of loops with trip counts computed by force"); 147 148 static cl::opt<unsigned> 149 MaxBruteForceIterations("scalar-evolution-max-iterations", cl::ReallyHidden, 150 cl::desc("Maximum number of iterations SCEV will " 151 "symbolically execute a constant " 152 "derived loop"), 153 cl::init(100)); 154 155 // FIXME: Enable this with EXPENSIVE_CHECKS when the test suite is clean. 156 static cl::opt<bool> VerifySCEV( 157 "verify-scev", cl::Hidden, 158 cl::desc("Verify ScalarEvolution's backedge taken counts (slow)")); 159 static cl::opt<bool> 160 VerifySCEVMap("verify-scev-maps", cl::Hidden, 161 cl::desc("Verify no dangling value in ScalarEvolution's " 162 "ExprValueMap (slow)")); 163 164 static cl::opt<unsigned> MulOpsInlineThreshold( 165 "scev-mulops-inline-threshold", cl::Hidden, 166 cl::desc("Threshold for inlining multiplication operands into a SCEV"), 167 cl::init(32)); 168 169 static cl::opt<unsigned> AddOpsInlineThreshold( 170 "scev-addops-inline-threshold", cl::Hidden, 171 cl::desc("Threshold for inlining addition operands into a SCEV"), 172 cl::init(500)); 173 174 static cl::opt<unsigned> MaxSCEVCompareDepth( 175 "scalar-evolution-max-scev-compare-depth", cl::Hidden, 176 cl::desc("Maximum depth of recursive SCEV complexity comparisons"), 177 cl::init(32)); 178 179 static cl::opt<unsigned> MaxSCEVOperationsImplicationDepth( 180 "scalar-evolution-max-scev-operations-implication-depth", cl::Hidden, 181 cl::desc("Maximum depth of recursive SCEV operations implication analysis"), 182 cl::init(2)); 183 184 static cl::opt<unsigned> MaxValueCompareDepth( 185 "scalar-evolution-max-value-compare-depth", cl::Hidden, 186 cl::desc("Maximum depth of recursive value complexity comparisons"), 187 cl::init(2)); 188 189 static cl::opt<unsigned> 190 MaxArithDepth("scalar-evolution-max-arith-depth", cl::Hidden, 191 cl::desc("Maximum depth of recursive arithmetics"), 192 cl::init(32)); 193 194 static cl::opt<unsigned> MaxConstantEvolvingDepth( 195 "scalar-evolution-max-constant-evolving-depth", cl::Hidden, 196 cl::desc("Maximum depth of recursive constant evolving"), cl::init(32)); 197 198 static cl::opt<unsigned> 199 MaxExtDepth("scalar-evolution-max-ext-depth", cl::Hidden, 200 cl::desc("Maximum depth of recursive SExt/ZExt"), 201 cl::init(8)); 202 203 static cl::opt<unsigned> 204 MaxAddRecSize("scalar-evolution-max-add-rec-size", cl::Hidden, 205 cl::desc("Max coefficients in AddRec during evolving"), 206 cl::init(16)); 207 208 //===----------------------------------------------------------------------===// 209 // SCEV class definitions 210 //===----------------------------------------------------------------------===// 211 212 //===----------------------------------------------------------------------===// 213 // Implementation of the SCEV class. 214 // 215 216 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 217 LLVM_DUMP_METHOD void SCEV::dump() const { 218 print(dbgs()); 219 dbgs() << '\n'; 220 } 221 #endif 222 223 void SCEV::print(raw_ostream &OS) const { 224 switch (static_cast<SCEVTypes>(getSCEVType())) { 225 case scConstant: 226 cast<SCEVConstant>(this)->getValue()->printAsOperand(OS, false); 227 return; 228 case scTruncate: { 229 const SCEVTruncateExpr *Trunc = cast<SCEVTruncateExpr>(this); 230 const SCEV *Op = Trunc->getOperand(); 231 OS << "(trunc " << *Op->getType() << " " << *Op << " to " 232 << *Trunc->getType() << ")"; 233 return; 234 } 235 case scZeroExtend: { 236 const SCEVZeroExtendExpr *ZExt = cast<SCEVZeroExtendExpr>(this); 237 const SCEV *Op = ZExt->getOperand(); 238 OS << "(zext " << *Op->getType() << " " << *Op << " to " 239 << *ZExt->getType() << ")"; 240 return; 241 } 242 case scSignExtend: { 243 const SCEVSignExtendExpr *SExt = cast<SCEVSignExtendExpr>(this); 244 const SCEV *Op = SExt->getOperand(); 245 OS << "(sext " << *Op->getType() << " " << *Op << " to " 246 << *SExt->getType() << ")"; 247 return; 248 } 249 case scAddRecExpr: { 250 const SCEVAddRecExpr *AR = cast<SCEVAddRecExpr>(this); 251 OS << "{" << *AR->getOperand(0); 252 for (unsigned i = 1, e = AR->getNumOperands(); i != e; ++i) 253 OS << ",+," << *AR->getOperand(i); 254 OS << "}<"; 255 if (AR->hasNoUnsignedWrap()) 256 OS << "nuw><"; 257 if (AR->hasNoSignedWrap()) 258 OS << "nsw><"; 259 if (AR->hasNoSelfWrap() && 260 !AR->getNoWrapFlags((NoWrapFlags)(FlagNUW | FlagNSW))) 261 OS << "nw><"; 262 AR->getLoop()->getHeader()->printAsOperand(OS, /*PrintType=*/false); 263 OS << ">"; 264 return; 265 } 266 case scAddExpr: 267 case scMulExpr: 268 case scUMaxExpr: 269 case scSMaxExpr: { 270 const SCEVNAryExpr *NAry = cast<SCEVNAryExpr>(this); 271 const char *OpStr = nullptr; 272 switch (NAry->getSCEVType()) { 273 case scAddExpr: OpStr = " + "; break; 274 case scMulExpr: OpStr = " * "; break; 275 case scUMaxExpr: OpStr = " umax "; break; 276 case scSMaxExpr: OpStr = " smax "; break; 277 } 278 OS << "("; 279 for (SCEVNAryExpr::op_iterator I = NAry->op_begin(), E = NAry->op_end(); 280 I != E; ++I) { 281 OS << **I; 282 if (std::next(I) != E) 283 OS << OpStr; 284 } 285 OS << ")"; 286 switch (NAry->getSCEVType()) { 287 case scAddExpr: 288 case scMulExpr: 289 if (NAry->hasNoUnsignedWrap()) 290 OS << "<nuw>"; 291 if (NAry->hasNoSignedWrap()) 292 OS << "<nsw>"; 293 } 294 return; 295 } 296 case scUDivExpr: { 297 const SCEVUDivExpr *UDiv = cast<SCEVUDivExpr>(this); 298 OS << "(" << *UDiv->getLHS() << " /u " << *UDiv->getRHS() << ")"; 299 return; 300 } 301 case scUnknown: { 302 const SCEVUnknown *U = cast<SCEVUnknown>(this); 303 Type *AllocTy; 304 if (U->isSizeOf(AllocTy)) { 305 OS << "sizeof(" << *AllocTy << ")"; 306 return; 307 } 308 if (U->isAlignOf(AllocTy)) { 309 OS << "alignof(" << *AllocTy << ")"; 310 return; 311 } 312 313 Type *CTy; 314 Constant *FieldNo; 315 if (U->isOffsetOf(CTy, FieldNo)) { 316 OS << "offsetof(" << *CTy << ", "; 317 FieldNo->printAsOperand(OS, false); 318 OS << ")"; 319 return; 320 } 321 322 // Otherwise just print it normally. 323 U->getValue()->printAsOperand(OS, false); 324 return; 325 } 326 case scCouldNotCompute: 327 OS << "***COULDNOTCOMPUTE***"; 328 return; 329 } 330 llvm_unreachable("Unknown SCEV kind!"); 331 } 332 333 Type *SCEV::getType() const { 334 switch (static_cast<SCEVTypes>(getSCEVType())) { 335 case scConstant: 336 return cast<SCEVConstant>(this)->getType(); 337 case scTruncate: 338 case scZeroExtend: 339 case scSignExtend: 340 return cast<SCEVCastExpr>(this)->getType(); 341 case scAddRecExpr: 342 case scMulExpr: 343 case scUMaxExpr: 344 case scSMaxExpr: 345 return cast<SCEVNAryExpr>(this)->getType(); 346 case scAddExpr: 347 return cast<SCEVAddExpr>(this)->getType(); 348 case scUDivExpr: 349 return cast<SCEVUDivExpr>(this)->getType(); 350 case scUnknown: 351 return cast<SCEVUnknown>(this)->getType(); 352 case scCouldNotCompute: 353 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!"); 354 } 355 llvm_unreachable("Unknown SCEV kind!"); 356 } 357 358 bool SCEV::isZero() const { 359 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(this)) 360 return SC->getValue()->isZero(); 361 return false; 362 } 363 364 bool SCEV::isOne() const { 365 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(this)) 366 return SC->getValue()->isOne(); 367 return false; 368 } 369 370 bool SCEV::isAllOnesValue() const { 371 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(this)) 372 return SC->getValue()->isMinusOne(); 373 return false; 374 } 375 376 bool SCEV::isNonConstantNegative() const { 377 const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(this); 378 if (!Mul) return false; 379 380 // If there is a constant factor, it will be first. 381 const SCEVConstant *SC = dyn_cast<SCEVConstant>(Mul->getOperand(0)); 382 if (!SC) return false; 383 384 // Return true if the value is negative, this matches things like (-42 * V). 385 return SC->getAPInt().isNegative(); 386 } 387 388 SCEVCouldNotCompute::SCEVCouldNotCompute() : 389 SCEV(FoldingSetNodeIDRef(), scCouldNotCompute) {} 390 391 bool SCEVCouldNotCompute::classof(const SCEV *S) { 392 return S->getSCEVType() == scCouldNotCompute; 393 } 394 395 const SCEV *ScalarEvolution::getConstant(ConstantInt *V) { 396 FoldingSetNodeID ID; 397 ID.AddInteger(scConstant); 398 ID.AddPointer(V); 399 void *IP = nullptr; 400 if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S; 401 SCEV *S = new (SCEVAllocator) SCEVConstant(ID.Intern(SCEVAllocator), V); 402 UniqueSCEVs.InsertNode(S, IP); 403 return S; 404 } 405 406 const SCEV *ScalarEvolution::getConstant(const APInt &Val) { 407 return getConstant(ConstantInt::get(getContext(), Val)); 408 } 409 410 const SCEV * 411 ScalarEvolution::getConstant(Type *Ty, uint64_t V, bool isSigned) { 412 IntegerType *ITy = cast<IntegerType>(getEffectiveSCEVType(Ty)); 413 return getConstant(ConstantInt::get(ITy, V, isSigned)); 414 } 415 416 SCEVCastExpr::SCEVCastExpr(const FoldingSetNodeIDRef ID, 417 unsigned SCEVTy, const SCEV *op, Type *ty) 418 : SCEV(ID, SCEVTy), Op(op), Ty(ty) {} 419 420 SCEVTruncateExpr::SCEVTruncateExpr(const FoldingSetNodeIDRef ID, 421 const SCEV *op, Type *ty) 422 : SCEVCastExpr(ID, scTruncate, op, ty) { 423 assert((Op->getType()->isIntegerTy() || Op->getType()->isPointerTy()) && 424 (Ty->isIntegerTy() || Ty->isPointerTy()) && 425 "Cannot truncate non-integer value!"); 426 } 427 428 SCEVZeroExtendExpr::SCEVZeroExtendExpr(const FoldingSetNodeIDRef ID, 429 const SCEV *op, Type *ty) 430 : SCEVCastExpr(ID, scZeroExtend, op, ty) { 431 assert((Op->getType()->isIntegerTy() || Op->getType()->isPointerTy()) && 432 (Ty->isIntegerTy() || Ty->isPointerTy()) && 433 "Cannot zero extend non-integer value!"); 434 } 435 436 SCEVSignExtendExpr::SCEVSignExtendExpr(const FoldingSetNodeIDRef ID, 437 const SCEV *op, Type *ty) 438 : SCEVCastExpr(ID, scSignExtend, op, ty) { 439 assert((Op->getType()->isIntegerTy() || Op->getType()->isPointerTy()) && 440 (Ty->isIntegerTy() || Ty->isPointerTy()) && 441 "Cannot sign extend non-integer value!"); 442 } 443 444 void SCEVUnknown::deleted() { 445 // Clear this SCEVUnknown from various maps. 446 SE->forgetMemoizedResults(this); 447 448 // Remove this SCEVUnknown from the uniquing map. 449 SE->UniqueSCEVs.RemoveNode(this); 450 451 // Release the value. 452 setValPtr(nullptr); 453 } 454 455 void SCEVUnknown::allUsesReplacedWith(Value *New) { 456 // Remove this SCEVUnknown from the uniquing map. 457 SE->UniqueSCEVs.RemoveNode(this); 458 459 // Update this SCEVUnknown to point to the new value. This is needed 460 // because there may still be outstanding SCEVs which still point to 461 // this SCEVUnknown. 462 setValPtr(New); 463 } 464 465 bool SCEVUnknown::isSizeOf(Type *&AllocTy) const { 466 if (ConstantExpr *VCE = dyn_cast<ConstantExpr>(getValue())) 467 if (VCE->getOpcode() == Instruction::PtrToInt) 468 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(VCE->getOperand(0))) 469 if (CE->getOpcode() == Instruction::GetElementPtr && 470 CE->getOperand(0)->isNullValue() && 471 CE->getNumOperands() == 2) 472 if (ConstantInt *CI = dyn_cast<ConstantInt>(CE->getOperand(1))) 473 if (CI->isOne()) { 474 AllocTy = cast<PointerType>(CE->getOperand(0)->getType()) 475 ->getElementType(); 476 return true; 477 } 478 479 return false; 480 } 481 482 bool SCEVUnknown::isAlignOf(Type *&AllocTy) const { 483 if (ConstantExpr *VCE = dyn_cast<ConstantExpr>(getValue())) 484 if (VCE->getOpcode() == Instruction::PtrToInt) 485 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(VCE->getOperand(0))) 486 if (CE->getOpcode() == Instruction::GetElementPtr && 487 CE->getOperand(0)->isNullValue()) { 488 Type *Ty = 489 cast<PointerType>(CE->getOperand(0)->getType())->getElementType(); 490 if (StructType *STy = dyn_cast<StructType>(Ty)) 491 if (!STy->isPacked() && 492 CE->getNumOperands() == 3 && 493 CE->getOperand(1)->isNullValue()) { 494 if (ConstantInt *CI = dyn_cast<ConstantInt>(CE->getOperand(2))) 495 if (CI->isOne() && 496 STy->getNumElements() == 2 && 497 STy->getElementType(0)->isIntegerTy(1)) { 498 AllocTy = STy->getElementType(1); 499 return true; 500 } 501 } 502 } 503 504 return false; 505 } 506 507 bool SCEVUnknown::isOffsetOf(Type *&CTy, Constant *&FieldNo) const { 508 if (ConstantExpr *VCE = dyn_cast<ConstantExpr>(getValue())) 509 if (VCE->getOpcode() == Instruction::PtrToInt) 510 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(VCE->getOperand(0))) 511 if (CE->getOpcode() == Instruction::GetElementPtr && 512 CE->getNumOperands() == 3 && 513 CE->getOperand(0)->isNullValue() && 514 CE->getOperand(1)->isNullValue()) { 515 Type *Ty = 516 cast<PointerType>(CE->getOperand(0)->getType())->getElementType(); 517 // Ignore vector types here so that ScalarEvolutionExpander doesn't 518 // emit getelementptrs that index into vectors. 519 if (Ty->isStructTy() || Ty->isArrayTy()) { 520 CTy = Ty; 521 FieldNo = CE->getOperand(2); 522 return true; 523 } 524 } 525 526 return false; 527 } 528 529 //===----------------------------------------------------------------------===// 530 // SCEV Utilities 531 //===----------------------------------------------------------------------===// 532 533 /// Compare the two values \p LV and \p RV in terms of their "complexity" where 534 /// "complexity" is a partial (and somewhat ad-hoc) relation used to order 535 /// operands in SCEV expressions. \p EqCache is a set of pairs of values that 536 /// have been previously deemed to be "equally complex" by this routine. It is 537 /// intended to avoid exponential time complexity in cases like: 538 /// 539 /// %a = f(%x, %y) 540 /// %b = f(%a, %a) 541 /// %c = f(%b, %b) 542 /// 543 /// %d = f(%x, %y) 544 /// %e = f(%d, %d) 545 /// %f = f(%e, %e) 546 /// 547 /// CompareValueComplexity(%f, %c) 548 /// 549 /// Since we do not continue running this routine on expression trees once we 550 /// have seen unequal values, there is no need to track them in the cache. 551 static int 552 CompareValueComplexity(EquivalenceClasses<const Value *> &EqCacheValue, 553 const LoopInfo *const LI, Value *LV, Value *RV, 554 unsigned Depth) { 555 if (Depth > MaxValueCompareDepth || EqCacheValue.isEquivalent(LV, RV)) 556 return 0; 557 558 // Order pointer values after integer values. This helps SCEVExpander form 559 // GEPs. 560 bool LIsPointer = LV->getType()->isPointerTy(), 561 RIsPointer = RV->getType()->isPointerTy(); 562 if (LIsPointer != RIsPointer) 563 return (int)LIsPointer - (int)RIsPointer; 564 565 // Compare getValueID values. 566 unsigned LID = LV->getValueID(), RID = RV->getValueID(); 567 if (LID != RID) 568 return (int)LID - (int)RID; 569 570 // Sort arguments by their position. 571 if (const auto *LA = dyn_cast<Argument>(LV)) { 572 const auto *RA = cast<Argument>(RV); 573 unsigned LArgNo = LA->getArgNo(), RArgNo = RA->getArgNo(); 574 return (int)LArgNo - (int)RArgNo; 575 } 576 577 if (const auto *LGV = dyn_cast<GlobalValue>(LV)) { 578 const auto *RGV = cast<GlobalValue>(RV); 579 580 const auto IsGVNameSemantic = [&](const GlobalValue *GV) { 581 auto LT = GV->getLinkage(); 582 return !(GlobalValue::isPrivateLinkage(LT) || 583 GlobalValue::isInternalLinkage(LT)); 584 }; 585 586 // Use the names to distinguish the two values, but only if the 587 // names are semantically important. 588 if (IsGVNameSemantic(LGV) && IsGVNameSemantic(RGV)) 589 return LGV->getName().compare(RGV->getName()); 590 } 591 592 // For instructions, compare their loop depth, and their operand count. This 593 // is pretty loose. 594 if (const auto *LInst = dyn_cast<Instruction>(LV)) { 595 const auto *RInst = cast<Instruction>(RV); 596 597 // Compare loop depths. 598 const BasicBlock *LParent = LInst->getParent(), 599 *RParent = RInst->getParent(); 600 if (LParent != RParent) { 601 unsigned LDepth = LI->getLoopDepth(LParent), 602 RDepth = LI->getLoopDepth(RParent); 603 if (LDepth != RDepth) 604 return (int)LDepth - (int)RDepth; 605 } 606 607 // Compare the number of operands. 608 unsigned LNumOps = LInst->getNumOperands(), 609 RNumOps = RInst->getNumOperands(); 610 if (LNumOps != RNumOps) 611 return (int)LNumOps - (int)RNumOps; 612 613 for (unsigned Idx : seq(0u, LNumOps)) { 614 int Result = 615 CompareValueComplexity(EqCacheValue, LI, LInst->getOperand(Idx), 616 RInst->getOperand(Idx), Depth + 1); 617 if (Result != 0) 618 return Result; 619 } 620 } 621 622 EqCacheValue.unionSets(LV, RV); 623 return 0; 624 } 625 626 // Return negative, zero, or positive, if LHS is less than, equal to, or greater 627 // than RHS, respectively. A three-way result allows recursive comparisons to be 628 // more efficient. 629 static int CompareSCEVComplexity( 630 EquivalenceClasses<const SCEV *> &EqCacheSCEV, 631 EquivalenceClasses<const Value *> &EqCacheValue, 632 const LoopInfo *const LI, const SCEV *LHS, const SCEV *RHS, 633 DominatorTree &DT, unsigned Depth = 0) { 634 // Fast-path: SCEVs are uniqued so we can do a quick equality check. 635 if (LHS == RHS) 636 return 0; 637 638 // Primarily, sort the SCEVs by their getSCEVType(). 639 unsigned LType = LHS->getSCEVType(), RType = RHS->getSCEVType(); 640 if (LType != RType) 641 return (int)LType - (int)RType; 642 643 if (Depth > MaxSCEVCompareDepth || EqCacheSCEV.isEquivalent(LHS, RHS)) 644 return 0; 645 // Aside from the getSCEVType() ordering, the particular ordering 646 // isn't very important except that it's beneficial to be consistent, 647 // so that (a + b) and (b + a) don't end up as different expressions. 648 switch (static_cast<SCEVTypes>(LType)) { 649 case scUnknown: { 650 const SCEVUnknown *LU = cast<SCEVUnknown>(LHS); 651 const SCEVUnknown *RU = cast<SCEVUnknown>(RHS); 652 653 int X = CompareValueComplexity(EqCacheValue, LI, LU->getValue(), 654 RU->getValue(), Depth + 1); 655 if (X == 0) 656 EqCacheSCEV.unionSets(LHS, RHS); 657 return X; 658 } 659 660 case scConstant: { 661 const SCEVConstant *LC = cast<SCEVConstant>(LHS); 662 const SCEVConstant *RC = cast<SCEVConstant>(RHS); 663 664 // Compare constant values. 665 const APInt &LA = LC->getAPInt(); 666 const APInt &RA = RC->getAPInt(); 667 unsigned LBitWidth = LA.getBitWidth(), RBitWidth = RA.getBitWidth(); 668 if (LBitWidth != RBitWidth) 669 return (int)LBitWidth - (int)RBitWidth; 670 return LA.ult(RA) ? -1 : 1; 671 } 672 673 case scAddRecExpr: { 674 const SCEVAddRecExpr *LA = cast<SCEVAddRecExpr>(LHS); 675 const SCEVAddRecExpr *RA = cast<SCEVAddRecExpr>(RHS); 676 677 // There is always a dominance between two recs that are used by one SCEV, 678 // so we can safely sort recs by loop header dominance. We require such 679 // order in getAddExpr. 680 const Loop *LLoop = LA->getLoop(), *RLoop = RA->getLoop(); 681 if (LLoop != RLoop) { 682 const BasicBlock *LHead = LLoop->getHeader(), *RHead = RLoop->getHeader(); 683 assert(LHead != RHead && "Two loops share the same header?"); 684 if (DT.dominates(LHead, RHead)) 685 return 1; 686 else 687 assert(DT.dominates(RHead, LHead) && 688 "No dominance between recurrences used by one SCEV?"); 689 return -1; 690 } 691 692 // Addrec complexity grows with operand count. 693 unsigned LNumOps = LA->getNumOperands(), RNumOps = RA->getNumOperands(); 694 if (LNumOps != RNumOps) 695 return (int)LNumOps - (int)RNumOps; 696 697 // Compare NoWrap flags. 698 if (LA->getNoWrapFlags() != RA->getNoWrapFlags()) 699 return (int)LA->getNoWrapFlags() - (int)RA->getNoWrapFlags(); 700 701 // Lexicographically compare. 702 for (unsigned i = 0; i != LNumOps; ++i) { 703 int X = CompareSCEVComplexity(EqCacheSCEV, EqCacheValue, LI, 704 LA->getOperand(i), RA->getOperand(i), DT, 705 Depth + 1); 706 if (X != 0) 707 return X; 708 } 709 EqCacheSCEV.unionSets(LHS, RHS); 710 return 0; 711 } 712 713 case scAddExpr: 714 case scMulExpr: 715 case scSMaxExpr: 716 case scUMaxExpr: { 717 const SCEVNAryExpr *LC = cast<SCEVNAryExpr>(LHS); 718 const SCEVNAryExpr *RC = cast<SCEVNAryExpr>(RHS); 719 720 // Lexicographically compare n-ary expressions. 721 unsigned LNumOps = LC->getNumOperands(), RNumOps = RC->getNumOperands(); 722 if (LNumOps != RNumOps) 723 return (int)LNumOps - (int)RNumOps; 724 725 // Compare NoWrap flags. 726 if (LC->getNoWrapFlags() != RC->getNoWrapFlags()) 727 return (int)LC->getNoWrapFlags() - (int)RC->getNoWrapFlags(); 728 729 for (unsigned i = 0; i != LNumOps; ++i) { 730 int X = CompareSCEVComplexity(EqCacheSCEV, EqCacheValue, LI, 731 LC->getOperand(i), RC->getOperand(i), DT, 732 Depth + 1); 733 if (X != 0) 734 return X; 735 } 736 EqCacheSCEV.unionSets(LHS, RHS); 737 return 0; 738 } 739 740 case scUDivExpr: { 741 const SCEVUDivExpr *LC = cast<SCEVUDivExpr>(LHS); 742 const SCEVUDivExpr *RC = cast<SCEVUDivExpr>(RHS); 743 744 // Lexicographically compare udiv expressions. 745 int X = CompareSCEVComplexity(EqCacheSCEV, EqCacheValue, LI, LC->getLHS(), 746 RC->getLHS(), DT, Depth + 1); 747 if (X != 0) 748 return X; 749 X = CompareSCEVComplexity(EqCacheSCEV, EqCacheValue, LI, LC->getRHS(), 750 RC->getRHS(), DT, Depth + 1); 751 if (X == 0) 752 EqCacheSCEV.unionSets(LHS, RHS); 753 return X; 754 } 755 756 case scTruncate: 757 case scZeroExtend: 758 case scSignExtend: { 759 const SCEVCastExpr *LC = cast<SCEVCastExpr>(LHS); 760 const SCEVCastExpr *RC = cast<SCEVCastExpr>(RHS); 761 762 // Compare cast expressions by operand. 763 int X = CompareSCEVComplexity(EqCacheSCEV, EqCacheValue, LI, 764 LC->getOperand(), RC->getOperand(), DT, 765 Depth + 1); 766 if (X == 0) 767 EqCacheSCEV.unionSets(LHS, RHS); 768 return X; 769 } 770 771 case scCouldNotCompute: 772 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!"); 773 } 774 llvm_unreachable("Unknown SCEV kind!"); 775 } 776 777 /// Given a list of SCEV objects, order them by their complexity, and group 778 /// objects of the same complexity together by value. When this routine is 779 /// finished, we know that any duplicates in the vector are consecutive and that 780 /// complexity is monotonically increasing. 781 /// 782 /// Note that we go take special precautions to ensure that we get deterministic 783 /// results from this routine. In other words, we don't want the results of 784 /// this to depend on where the addresses of various SCEV objects happened to 785 /// land in memory. 786 static void GroupByComplexity(SmallVectorImpl<const SCEV *> &Ops, 787 LoopInfo *LI, DominatorTree &DT) { 788 if (Ops.size() < 2) return; // Noop 789 790 EquivalenceClasses<const SCEV *> EqCacheSCEV; 791 EquivalenceClasses<const Value *> EqCacheValue; 792 if (Ops.size() == 2) { 793 // This is the common case, which also happens to be trivially simple. 794 // Special case it. 795 const SCEV *&LHS = Ops[0], *&RHS = Ops[1]; 796 if (CompareSCEVComplexity(EqCacheSCEV, EqCacheValue, LI, RHS, LHS, DT) < 0) 797 std::swap(LHS, RHS); 798 return; 799 } 800 801 // Do the rough sort by complexity. 802 std::stable_sort(Ops.begin(), Ops.end(), 803 [&](const SCEV *LHS, const SCEV *RHS) { 804 return CompareSCEVComplexity(EqCacheSCEV, EqCacheValue, LI, 805 LHS, RHS, DT) < 0; 806 }); 807 808 // Now that we are sorted by complexity, group elements of the same 809 // complexity. Note that this is, at worst, N^2, but the vector is likely to 810 // be extremely short in practice. Note that we take this approach because we 811 // do not want to depend on the addresses of the objects we are grouping. 812 for (unsigned i = 0, e = Ops.size(); i != e-2; ++i) { 813 const SCEV *S = Ops[i]; 814 unsigned Complexity = S->getSCEVType(); 815 816 // If there are any objects of the same complexity and same value as this 817 // one, group them. 818 for (unsigned j = i+1; j != e && Ops[j]->getSCEVType() == Complexity; ++j) { 819 if (Ops[j] == S) { // Found a duplicate. 820 // Move it to immediately after i'th element. 821 std::swap(Ops[i+1], Ops[j]); 822 ++i; // no need to rescan it. 823 if (i == e-2) return; // Done! 824 } 825 } 826 } 827 } 828 829 // Returns the size of the SCEV S. 830 static inline int sizeOfSCEV(const SCEV *S) { 831 struct FindSCEVSize { 832 int Size = 0; 833 834 FindSCEVSize() = default; 835 836 bool follow(const SCEV *S) { 837 ++Size; 838 // Keep looking at all operands of S. 839 return true; 840 } 841 842 bool isDone() const { 843 return false; 844 } 845 }; 846 847 FindSCEVSize F; 848 SCEVTraversal<FindSCEVSize> ST(F); 849 ST.visitAll(S); 850 return F.Size; 851 } 852 853 namespace { 854 855 struct SCEVDivision : public SCEVVisitor<SCEVDivision, void> { 856 public: 857 // Computes the Quotient and Remainder of the division of Numerator by 858 // Denominator. 859 static void divide(ScalarEvolution &SE, const SCEV *Numerator, 860 const SCEV *Denominator, const SCEV **Quotient, 861 const SCEV **Remainder) { 862 assert(Numerator && Denominator && "Uninitialized SCEV"); 863 864 SCEVDivision D(SE, Numerator, Denominator); 865 866 // Check for the trivial case here to avoid having to check for it in the 867 // rest of the code. 868 if (Numerator == Denominator) { 869 *Quotient = D.One; 870 *Remainder = D.Zero; 871 return; 872 } 873 874 if (Numerator->isZero()) { 875 *Quotient = D.Zero; 876 *Remainder = D.Zero; 877 return; 878 } 879 880 // A simple case when N/1. The quotient is N. 881 if (Denominator->isOne()) { 882 *Quotient = Numerator; 883 *Remainder = D.Zero; 884 return; 885 } 886 887 // Split the Denominator when it is a product. 888 if (const SCEVMulExpr *T = dyn_cast<SCEVMulExpr>(Denominator)) { 889 const SCEV *Q, *R; 890 *Quotient = Numerator; 891 for (const SCEV *Op : T->operands()) { 892 divide(SE, *Quotient, Op, &Q, &R); 893 *Quotient = Q; 894 895 // Bail out when the Numerator is not divisible by one of the terms of 896 // the Denominator. 897 if (!R->isZero()) { 898 *Quotient = D.Zero; 899 *Remainder = Numerator; 900 return; 901 } 902 } 903 *Remainder = D.Zero; 904 return; 905 } 906 907 D.visit(Numerator); 908 *Quotient = D.Quotient; 909 *Remainder = D.Remainder; 910 } 911 912 // Except in the trivial case described above, we do not know how to divide 913 // Expr by Denominator for the following functions with empty implementation. 914 void visitTruncateExpr(const SCEVTruncateExpr *Numerator) {} 915 void visitZeroExtendExpr(const SCEVZeroExtendExpr *Numerator) {} 916 void visitSignExtendExpr(const SCEVSignExtendExpr *Numerator) {} 917 void visitUDivExpr(const SCEVUDivExpr *Numerator) {} 918 void visitSMaxExpr(const SCEVSMaxExpr *Numerator) {} 919 void visitUMaxExpr(const SCEVUMaxExpr *Numerator) {} 920 void visitUnknown(const SCEVUnknown *Numerator) {} 921 void visitCouldNotCompute(const SCEVCouldNotCompute *Numerator) {} 922 923 void visitConstant(const SCEVConstant *Numerator) { 924 if (const SCEVConstant *D = dyn_cast<SCEVConstant>(Denominator)) { 925 APInt NumeratorVal = Numerator->getAPInt(); 926 APInt DenominatorVal = D->getAPInt(); 927 uint32_t NumeratorBW = NumeratorVal.getBitWidth(); 928 uint32_t DenominatorBW = DenominatorVal.getBitWidth(); 929 930 if (NumeratorBW > DenominatorBW) 931 DenominatorVal = DenominatorVal.sext(NumeratorBW); 932 else if (NumeratorBW < DenominatorBW) 933 NumeratorVal = NumeratorVal.sext(DenominatorBW); 934 935 APInt QuotientVal(NumeratorVal.getBitWidth(), 0); 936 APInt RemainderVal(NumeratorVal.getBitWidth(), 0); 937 APInt::sdivrem(NumeratorVal, DenominatorVal, QuotientVal, RemainderVal); 938 Quotient = SE.getConstant(QuotientVal); 939 Remainder = SE.getConstant(RemainderVal); 940 return; 941 } 942 } 943 944 void visitAddRecExpr(const SCEVAddRecExpr *Numerator) { 945 const SCEV *StartQ, *StartR, *StepQ, *StepR; 946 if (!Numerator->isAffine()) 947 return cannotDivide(Numerator); 948 divide(SE, Numerator->getStart(), Denominator, &StartQ, &StartR); 949 divide(SE, Numerator->getStepRecurrence(SE), Denominator, &StepQ, &StepR); 950 // Bail out if the types do not match. 951 Type *Ty = Denominator->getType(); 952 if (Ty != StartQ->getType() || Ty != StartR->getType() || 953 Ty != StepQ->getType() || Ty != StepR->getType()) 954 return cannotDivide(Numerator); 955 Quotient = SE.getAddRecExpr(StartQ, StepQ, Numerator->getLoop(), 956 Numerator->getNoWrapFlags()); 957 Remainder = SE.getAddRecExpr(StartR, StepR, Numerator->getLoop(), 958 Numerator->getNoWrapFlags()); 959 } 960 961 void visitAddExpr(const SCEVAddExpr *Numerator) { 962 SmallVector<const SCEV *, 2> Qs, Rs; 963 Type *Ty = Denominator->getType(); 964 965 for (const SCEV *Op : Numerator->operands()) { 966 const SCEV *Q, *R; 967 divide(SE, Op, Denominator, &Q, &R); 968 969 // Bail out if types do not match. 970 if (Ty != Q->getType() || Ty != R->getType()) 971 return cannotDivide(Numerator); 972 973 Qs.push_back(Q); 974 Rs.push_back(R); 975 } 976 977 if (Qs.size() == 1) { 978 Quotient = Qs[0]; 979 Remainder = Rs[0]; 980 return; 981 } 982 983 Quotient = SE.getAddExpr(Qs); 984 Remainder = SE.getAddExpr(Rs); 985 } 986 987 void visitMulExpr(const SCEVMulExpr *Numerator) { 988 SmallVector<const SCEV *, 2> Qs; 989 Type *Ty = Denominator->getType(); 990 991 bool FoundDenominatorTerm = false; 992 for (const SCEV *Op : Numerator->operands()) { 993 // Bail out if types do not match. 994 if (Ty != Op->getType()) 995 return cannotDivide(Numerator); 996 997 if (FoundDenominatorTerm) { 998 Qs.push_back(Op); 999 continue; 1000 } 1001 1002 // Check whether Denominator divides one of the product operands. 1003 const SCEV *Q, *R; 1004 divide(SE, Op, Denominator, &Q, &R); 1005 if (!R->isZero()) { 1006 Qs.push_back(Op); 1007 continue; 1008 } 1009 1010 // Bail out if types do not match. 1011 if (Ty != Q->getType()) 1012 return cannotDivide(Numerator); 1013 1014 FoundDenominatorTerm = true; 1015 Qs.push_back(Q); 1016 } 1017 1018 if (FoundDenominatorTerm) { 1019 Remainder = Zero; 1020 if (Qs.size() == 1) 1021 Quotient = Qs[0]; 1022 else 1023 Quotient = SE.getMulExpr(Qs); 1024 return; 1025 } 1026 1027 if (!isa<SCEVUnknown>(Denominator)) 1028 return cannotDivide(Numerator); 1029 1030 // The Remainder is obtained by replacing Denominator by 0 in Numerator. 1031 ValueToValueMap RewriteMap; 1032 RewriteMap[cast<SCEVUnknown>(Denominator)->getValue()] = 1033 cast<SCEVConstant>(Zero)->getValue(); 1034 Remainder = SCEVParameterRewriter::rewrite(Numerator, SE, RewriteMap, true); 1035 1036 if (Remainder->isZero()) { 1037 // The Quotient is obtained by replacing Denominator by 1 in Numerator. 1038 RewriteMap[cast<SCEVUnknown>(Denominator)->getValue()] = 1039 cast<SCEVConstant>(One)->getValue(); 1040 Quotient = 1041 SCEVParameterRewriter::rewrite(Numerator, SE, RewriteMap, true); 1042 return; 1043 } 1044 1045 // Quotient is (Numerator - Remainder) divided by Denominator. 1046 const SCEV *Q, *R; 1047 const SCEV *Diff = SE.getMinusSCEV(Numerator, Remainder); 1048 // This SCEV does not seem to simplify: fail the division here. 1049 if (sizeOfSCEV(Diff) > sizeOfSCEV(Numerator)) 1050 return cannotDivide(Numerator); 1051 divide(SE, Diff, Denominator, &Q, &R); 1052 if (R != Zero) 1053 return cannotDivide(Numerator); 1054 Quotient = Q; 1055 } 1056 1057 private: 1058 SCEVDivision(ScalarEvolution &S, const SCEV *Numerator, 1059 const SCEV *Denominator) 1060 : SE(S), Denominator(Denominator) { 1061 Zero = SE.getZero(Denominator->getType()); 1062 One = SE.getOne(Denominator->getType()); 1063 1064 // We generally do not know how to divide Expr by Denominator. We 1065 // initialize the division to a "cannot divide" state to simplify the rest 1066 // of the code. 1067 cannotDivide(Numerator); 1068 } 1069 1070 // Convenience function for giving up on the division. We set the quotient to 1071 // be equal to zero and the remainder to be equal to the numerator. 1072 void cannotDivide(const SCEV *Numerator) { 1073 Quotient = Zero; 1074 Remainder = Numerator; 1075 } 1076 1077 ScalarEvolution &SE; 1078 const SCEV *Denominator, *Quotient, *Remainder, *Zero, *One; 1079 }; 1080 1081 } // end anonymous namespace 1082 1083 //===----------------------------------------------------------------------===// 1084 // Simple SCEV method implementations 1085 //===----------------------------------------------------------------------===// 1086 1087 /// Compute BC(It, K). The result has width W. Assume, K > 0. 1088 static const SCEV *BinomialCoefficient(const SCEV *It, unsigned K, 1089 ScalarEvolution &SE, 1090 Type *ResultTy) { 1091 // Handle the simplest case efficiently. 1092 if (K == 1) 1093 return SE.getTruncateOrZeroExtend(It, ResultTy); 1094 1095 // We are using the following formula for BC(It, K): 1096 // 1097 // BC(It, K) = (It * (It - 1) * ... * (It - K + 1)) / K! 1098 // 1099 // Suppose, W is the bitwidth of the return value. We must be prepared for 1100 // overflow. Hence, we must assure that the result of our computation is 1101 // equal to the accurate one modulo 2^W. Unfortunately, division isn't 1102 // safe in modular arithmetic. 1103 // 1104 // However, this code doesn't use exactly that formula; the formula it uses 1105 // is something like the following, where T is the number of factors of 2 in 1106 // K! (i.e. trailing zeros in the binary representation of K!), and ^ is 1107 // exponentiation: 1108 // 1109 // BC(It, K) = (It * (It - 1) * ... * (It - K + 1)) / 2^T / (K! / 2^T) 1110 // 1111 // This formula is trivially equivalent to the previous formula. However, 1112 // this formula can be implemented much more efficiently. The trick is that 1113 // K! / 2^T is odd, and exact division by an odd number *is* safe in modular 1114 // arithmetic. To do exact division in modular arithmetic, all we have 1115 // to do is multiply by the inverse. Therefore, this step can be done at 1116 // width W. 1117 // 1118 // The next issue is how to safely do the division by 2^T. The way this 1119 // is done is by doing the multiplication step at a width of at least W + T 1120 // bits. This way, the bottom W+T bits of the product are accurate. Then, 1121 // when we perform the division by 2^T (which is equivalent to a right shift 1122 // by T), the bottom W bits are accurate. Extra bits are okay; they'll get 1123 // truncated out after the division by 2^T. 1124 // 1125 // In comparison to just directly using the first formula, this technique 1126 // is much more efficient; using the first formula requires W * K bits, 1127 // but this formula less than W + K bits. Also, the first formula requires 1128 // a division step, whereas this formula only requires multiplies and shifts. 1129 // 1130 // It doesn't matter whether the subtraction step is done in the calculation 1131 // width or the input iteration count's width; if the subtraction overflows, 1132 // the result must be zero anyway. We prefer here to do it in the width of 1133 // the induction variable because it helps a lot for certain cases; CodeGen 1134 // isn't smart enough to ignore the overflow, which leads to much less 1135 // efficient code if the width of the subtraction is wider than the native 1136 // register width. 1137 // 1138 // (It's possible to not widen at all by pulling out factors of 2 before 1139 // the multiplication; for example, K=2 can be calculated as 1140 // It/2*(It+(It*INT_MIN/INT_MIN)+-1). However, it requires 1141 // extra arithmetic, so it's not an obvious win, and it gets 1142 // much more complicated for K > 3.) 1143 1144 // Protection from insane SCEVs; this bound is conservative, 1145 // but it probably doesn't matter. 1146 if (K > 1000) 1147 return SE.getCouldNotCompute(); 1148 1149 unsigned W = SE.getTypeSizeInBits(ResultTy); 1150 1151 // Calculate K! / 2^T and T; we divide out the factors of two before 1152 // multiplying for calculating K! / 2^T to avoid overflow. 1153 // Other overflow doesn't matter because we only care about the bottom 1154 // W bits of the result. 1155 APInt OddFactorial(W, 1); 1156 unsigned T = 1; 1157 for (unsigned i = 3; i <= K; ++i) { 1158 APInt Mult(W, i); 1159 unsigned TwoFactors = Mult.countTrailingZeros(); 1160 T += TwoFactors; 1161 Mult.lshrInPlace(TwoFactors); 1162 OddFactorial *= Mult; 1163 } 1164 1165 // We need at least W + T bits for the multiplication step 1166 unsigned CalculationBits = W + T; 1167 1168 // Calculate 2^T, at width T+W. 1169 APInt DivFactor = APInt::getOneBitSet(CalculationBits, T); 1170 1171 // Calculate the multiplicative inverse of K! / 2^T; 1172 // this multiplication factor will perform the exact division by 1173 // K! / 2^T. 1174 APInt Mod = APInt::getSignedMinValue(W+1); 1175 APInt MultiplyFactor = OddFactorial.zext(W+1); 1176 MultiplyFactor = MultiplyFactor.multiplicativeInverse(Mod); 1177 MultiplyFactor = MultiplyFactor.trunc(W); 1178 1179 // Calculate the product, at width T+W 1180 IntegerType *CalculationTy = IntegerType::get(SE.getContext(), 1181 CalculationBits); 1182 const SCEV *Dividend = SE.getTruncateOrZeroExtend(It, CalculationTy); 1183 for (unsigned i = 1; i != K; ++i) { 1184 const SCEV *S = SE.getMinusSCEV(It, SE.getConstant(It->getType(), i)); 1185 Dividend = SE.getMulExpr(Dividend, 1186 SE.getTruncateOrZeroExtend(S, CalculationTy)); 1187 } 1188 1189 // Divide by 2^T 1190 const SCEV *DivResult = SE.getUDivExpr(Dividend, SE.getConstant(DivFactor)); 1191 1192 // Truncate the result, and divide by K! / 2^T. 1193 1194 return SE.getMulExpr(SE.getConstant(MultiplyFactor), 1195 SE.getTruncateOrZeroExtend(DivResult, ResultTy)); 1196 } 1197 1198 /// Return the value of this chain of recurrences at the specified iteration 1199 /// number. We can evaluate this recurrence by multiplying each element in the 1200 /// chain by the binomial coefficient corresponding to it. In other words, we 1201 /// can evaluate {A,+,B,+,C,+,D} as: 1202 /// 1203 /// A*BC(It, 0) + B*BC(It, 1) + C*BC(It, 2) + D*BC(It, 3) 1204 /// 1205 /// where BC(It, k) stands for binomial coefficient. 1206 const SCEV *SCEVAddRecExpr::evaluateAtIteration(const SCEV *It, 1207 ScalarEvolution &SE) const { 1208 const SCEV *Result = getStart(); 1209 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) { 1210 // The computation is correct in the face of overflow provided that the 1211 // multiplication is performed _after_ the evaluation of the binomial 1212 // coefficient. 1213 const SCEV *Coeff = BinomialCoefficient(It, i, SE, getType()); 1214 if (isa<SCEVCouldNotCompute>(Coeff)) 1215 return Coeff; 1216 1217 Result = SE.getAddExpr(Result, SE.getMulExpr(getOperand(i), Coeff)); 1218 } 1219 return Result; 1220 } 1221 1222 //===----------------------------------------------------------------------===// 1223 // SCEV Expression folder implementations 1224 //===----------------------------------------------------------------------===// 1225 1226 const SCEV *ScalarEvolution::getTruncateExpr(const SCEV *Op, 1227 Type *Ty) { 1228 assert(getTypeSizeInBits(Op->getType()) > getTypeSizeInBits(Ty) && 1229 "This is not a truncating conversion!"); 1230 assert(isSCEVable(Ty) && 1231 "This is not a conversion to a SCEVable type!"); 1232 Ty = getEffectiveSCEVType(Ty); 1233 1234 FoldingSetNodeID ID; 1235 ID.AddInteger(scTruncate); 1236 ID.AddPointer(Op); 1237 ID.AddPointer(Ty); 1238 void *IP = nullptr; 1239 if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S; 1240 1241 // Fold if the operand is constant. 1242 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(Op)) 1243 return getConstant( 1244 cast<ConstantInt>(ConstantExpr::getTrunc(SC->getValue(), Ty))); 1245 1246 // trunc(trunc(x)) --> trunc(x) 1247 if (const SCEVTruncateExpr *ST = dyn_cast<SCEVTruncateExpr>(Op)) 1248 return getTruncateExpr(ST->getOperand(), Ty); 1249 1250 // trunc(sext(x)) --> sext(x) if widening or trunc(x) if narrowing 1251 if (const SCEVSignExtendExpr *SS = dyn_cast<SCEVSignExtendExpr>(Op)) 1252 return getTruncateOrSignExtend(SS->getOperand(), Ty); 1253 1254 // trunc(zext(x)) --> zext(x) if widening or trunc(x) if narrowing 1255 if (const SCEVZeroExtendExpr *SZ = dyn_cast<SCEVZeroExtendExpr>(Op)) 1256 return getTruncateOrZeroExtend(SZ->getOperand(), Ty); 1257 1258 // trunc(x1+x2+...+xN) --> trunc(x1)+trunc(x2)+...+trunc(xN) if we can 1259 // eliminate all the truncates, or we replace other casts with truncates. 1260 if (const SCEVAddExpr *SA = dyn_cast<SCEVAddExpr>(Op)) { 1261 SmallVector<const SCEV *, 4> Operands; 1262 bool hasTrunc = false; 1263 for (unsigned i = 0, e = SA->getNumOperands(); i != e && !hasTrunc; ++i) { 1264 const SCEV *S = getTruncateExpr(SA->getOperand(i), Ty); 1265 if (!isa<SCEVCastExpr>(SA->getOperand(i))) 1266 hasTrunc = isa<SCEVTruncateExpr>(S); 1267 Operands.push_back(S); 1268 } 1269 if (!hasTrunc) 1270 return getAddExpr(Operands); 1271 UniqueSCEVs.FindNodeOrInsertPos(ID, IP); // Mutates IP, returns NULL. 1272 } 1273 1274 // trunc(x1*x2*...*xN) --> trunc(x1)*trunc(x2)*...*trunc(xN) if we can 1275 // eliminate all the truncates, or we replace other casts with truncates. 1276 if (const SCEVMulExpr *SM = dyn_cast<SCEVMulExpr>(Op)) { 1277 SmallVector<const SCEV *, 4> Operands; 1278 bool hasTrunc = false; 1279 for (unsigned i = 0, e = SM->getNumOperands(); i != e && !hasTrunc; ++i) { 1280 const SCEV *S = getTruncateExpr(SM->getOperand(i), Ty); 1281 if (!isa<SCEVCastExpr>(SM->getOperand(i))) 1282 hasTrunc = isa<SCEVTruncateExpr>(S); 1283 Operands.push_back(S); 1284 } 1285 if (!hasTrunc) 1286 return getMulExpr(Operands); 1287 UniqueSCEVs.FindNodeOrInsertPos(ID, IP); // Mutates IP, returns NULL. 1288 } 1289 1290 // If the input value is a chrec scev, truncate the chrec's operands. 1291 if (const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(Op)) { 1292 SmallVector<const SCEV *, 4> Operands; 1293 for (const SCEV *Op : AddRec->operands()) 1294 Operands.push_back(getTruncateExpr(Op, Ty)); 1295 return getAddRecExpr(Operands, AddRec->getLoop(), SCEV::FlagAnyWrap); 1296 } 1297 1298 // The cast wasn't folded; create an explicit cast node. We can reuse 1299 // the existing insert position since if we get here, we won't have 1300 // made any changes which would invalidate it. 1301 SCEV *S = new (SCEVAllocator) SCEVTruncateExpr(ID.Intern(SCEVAllocator), 1302 Op, Ty); 1303 UniqueSCEVs.InsertNode(S, IP); 1304 addToLoopUseLists(S); 1305 return S; 1306 } 1307 1308 // Get the limit of a recurrence such that incrementing by Step cannot cause 1309 // signed overflow as long as the value of the recurrence within the 1310 // loop does not exceed this limit before incrementing. 1311 static const SCEV *getSignedOverflowLimitForStep(const SCEV *Step, 1312 ICmpInst::Predicate *Pred, 1313 ScalarEvolution *SE) { 1314 unsigned BitWidth = SE->getTypeSizeInBits(Step->getType()); 1315 if (SE->isKnownPositive(Step)) { 1316 *Pred = ICmpInst::ICMP_SLT; 1317 return SE->getConstant(APInt::getSignedMinValue(BitWidth) - 1318 SE->getSignedRangeMax(Step)); 1319 } 1320 if (SE->isKnownNegative(Step)) { 1321 *Pred = ICmpInst::ICMP_SGT; 1322 return SE->getConstant(APInt::getSignedMaxValue(BitWidth) - 1323 SE->getSignedRangeMin(Step)); 1324 } 1325 return nullptr; 1326 } 1327 1328 // Get the limit of a recurrence such that incrementing by Step cannot cause 1329 // unsigned overflow as long as the value of the recurrence within the loop does 1330 // not exceed this limit before incrementing. 1331 static const SCEV *getUnsignedOverflowLimitForStep(const SCEV *Step, 1332 ICmpInst::Predicate *Pred, 1333 ScalarEvolution *SE) { 1334 unsigned BitWidth = SE->getTypeSizeInBits(Step->getType()); 1335 *Pred = ICmpInst::ICMP_ULT; 1336 1337 return SE->getConstant(APInt::getMinValue(BitWidth) - 1338 SE->getUnsignedRangeMax(Step)); 1339 } 1340 1341 namespace { 1342 1343 struct ExtendOpTraitsBase { 1344 typedef const SCEV *(ScalarEvolution::*GetExtendExprTy)(const SCEV *, Type *, 1345 unsigned); 1346 }; 1347 1348 // Used to make code generic over signed and unsigned overflow. 1349 template <typename ExtendOp> struct ExtendOpTraits { 1350 // Members present: 1351 // 1352 // static const SCEV::NoWrapFlags WrapType; 1353 // 1354 // static const ExtendOpTraitsBase::GetExtendExprTy GetExtendExpr; 1355 // 1356 // static const SCEV *getOverflowLimitForStep(const SCEV *Step, 1357 // ICmpInst::Predicate *Pred, 1358 // ScalarEvolution *SE); 1359 }; 1360 1361 template <> 1362 struct ExtendOpTraits<SCEVSignExtendExpr> : public ExtendOpTraitsBase { 1363 static const SCEV::NoWrapFlags WrapType = SCEV::FlagNSW; 1364 1365 static const GetExtendExprTy GetExtendExpr; 1366 1367 static const SCEV *getOverflowLimitForStep(const SCEV *Step, 1368 ICmpInst::Predicate *Pred, 1369 ScalarEvolution *SE) { 1370 return getSignedOverflowLimitForStep(Step, Pred, SE); 1371 } 1372 }; 1373 1374 const ExtendOpTraitsBase::GetExtendExprTy ExtendOpTraits< 1375 SCEVSignExtendExpr>::GetExtendExpr = &ScalarEvolution::getSignExtendExpr; 1376 1377 template <> 1378 struct ExtendOpTraits<SCEVZeroExtendExpr> : public ExtendOpTraitsBase { 1379 static const SCEV::NoWrapFlags WrapType = SCEV::FlagNUW; 1380 1381 static const GetExtendExprTy GetExtendExpr; 1382 1383 static const SCEV *getOverflowLimitForStep(const SCEV *Step, 1384 ICmpInst::Predicate *Pred, 1385 ScalarEvolution *SE) { 1386 return getUnsignedOverflowLimitForStep(Step, Pred, SE); 1387 } 1388 }; 1389 1390 const ExtendOpTraitsBase::GetExtendExprTy ExtendOpTraits< 1391 SCEVZeroExtendExpr>::GetExtendExpr = &ScalarEvolution::getZeroExtendExpr; 1392 1393 } // end anonymous namespace 1394 1395 // The recurrence AR has been shown to have no signed/unsigned wrap or something 1396 // close to it. Typically, if we can prove NSW/NUW for AR, then we can just as 1397 // easily prove NSW/NUW for its preincrement or postincrement sibling. This 1398 // allows normalizing a sign/zero extended AddRec as such: {sext/zext(Step + 1399 // Start),+,Step} => {(Step + sext/zext(Start),+,Step} As a result, the 1400 // expression "Step + sext/zext(PreIncAR)" is congruent with 1401 // "sext/zext(PostIncAR)" 1402 template <typename ExtendOpTy> 1403 static const SCEV *getPreStartForExtend(const SCEVAddRecExpr *AR, Type *Ty, 1404 ScalarEvolution *SE, unsigned Depth) { 1405 auto WrapType = ExtendOpTraits<ExtendOpTy>::WrapType; 1406 auto GetExtendExpr = ExtendOpTraits<ExtendOpTy>::GetExtendExpr; 1407 1408 const Loop *L = AR->getLoop(); 1409 const SCEV *Start = AR->getStart(); 1410 const SCEV *Step = AR->getStepRecurrence(*SE); 1411 1412 // Check for a simple looking step prior to loop entry. 1413 const SCEVAddExpr *SA = dyn_cast<SCEVAddExpr>(Start); 1414 if (!SA) 1415 return nullptr; 1416 1417 // Create an AddExpr for "PreStart" after subtracting Step. Full SCEV 1418 // subtraction is expensive. For this purpose, perform a quick and dirty 1419 // difference, by checking for Step in the operand list. 1420 SmallVector<const SCEV *, 4> DiffOps; 1421 for (const SCEV *Op : SA->operands()) 1422 if (Op != Step) 1423 DiffOps.push_back(Op); 1424 1425 if (DiffOps.size() == SA->getNumOperands()) 1426 return nullptr; 1427 1428 // Try to prove `WrapType` (SCEV::FlagNSW or SCEV::FlagNUW) on `PreStart` + 1429 // `Step`: 1430 1431 // 1. NSW/NUW flags on the step increment. 1432 auto PreStartFlags = 1433 ScalarEvolution::maskFlags(SA->getNoWrapFlags(), SCEV::FlagNUW); 1434 const SCEV *PreStart = SE->getAddExpr(DiffOps, PreStartFlags); 1435 const SCEVAddRecExpr *PreAR = dyn_cast<SCEVAddRecExpr>( 1436 SE->getAddRecExpr(PreStart, Step, L, SCEV::FlagAnyWrap)); 1437 1438 // "{S,+,X} is <nsw>/<nuw>" and "the backedge is taken at least once" implies 1439 // "S+X does not sign/unsign-overflow". 1440 // 1441 1442 const SCEV *BECount = SE->getBackedgeTakenCount(L); 1443 if (PreAR && PreAR->getNoWrapFlags(WrapType) && 1444 !isa<SCEVCouldNotCompute>(BECount) && SE->isKnownPositive(BECount)) 1445 return PreStart; 1446 1447 // 2. Direct overflow check on the step operation's expression. 1448 unsigned BitWidth = SE->getTypeSizeInBits(AR->getType()); 1449 Type *WideTy = IntegerType::get(SE->getContext(), BitWidth * 2); 1450 const SCEV *OperandExtendedStart = 1451 SE->getAddExpr((SE->*GetExtendExpr)(PreStart, WideTy, Depth), 1452 (SE->*GetExtendExpr)(Step, WideTy, Depth)); 1453 if ((SE->*GetExtendExpr)(Start, WideTy, Depth) == OperandExtendedStart) { 1454 if (PreAR && AR->getNoWrapFlags(WrapType)) { 1455 // If we know `AR` == {`PreStart`+`Step`,+,`Step`} is `WrapType` (FlagNSW 1456 // or FlagNUW) and that `PreStart` + `Step` is `WrapType` too, then 1457 // `PreAR` == {`PreStart`,+,`Step`} is also `WrapType`. Cache this fact. 1458 const_cast<SCEVAddRecExpr *>(PreAR)->setNoWrapFlags(WrapType); 1459 } 1460 return PreStart; 1461 } 1462 1463 // 3. Loop precondition. 1464 ICmpInst::Predicate Pred; 1465 const SCEV *OverflowLimit = 1466 ExtendOpTraits<ExtendOpTy>::getOverflowLimitForStep(Step, &Pred, SE); 1467 1468 if (OverflowLimit && 1469 SE->isLoopEntryGuardedByCond(L, Pred, PreStart, OverflowLimit)) 1470 return PreStart; 1471 1472 return nullptr; 1473 } 1474 1475 // Get the normalized zero or sign extended expression for this AddRec's Start. 1476 template <typename ExtendOpTy> 1477 static const SCEV *getExtendAddRecStart(const SCEVAddRecExpr *AR, Type *Ty, 1478 ScalarEvolution *SE, 1479 unsigned Depth) { 1480 auto GetExtendExpr = ExtendOpTraits<ExtendOpTy>::GetExtendExpr; 1481 1482 const SCEV *PreStart = getPreStartForExtend<ExtendOpTy>(AR, Ty, SE, Depth); 1483 if (!PreStart) 1484 return (SE->*GetExtendExpr)(AR->getStart(), Ty, Depth); 1485 1486 return SE->getAddExpr((SE->*GetExtendExpr)(AR->getStepRecurrence(*SE), Ty, 1487 Depth), 1488 (SE->*GetExtendExpr)(PreStart, Ty, Depth)); 1489 } 1490 1491 // Try to prove away overflow by looking at "nearby" add recurrences. A 1492 // motivating example for this rule: if we know `{0,+,4}` is `ult` `-1` and it 1493 // does not itself wrap then we can conclude that `{1,+,4}` is `nuw`. 1494 // 1495 // Formally: 1496 // 1497 // {S,+,X} == {S-T,+,X} + T 1498 // => Ext({S,+,X}) == Ext({S-T,+,X} + T) 1499 // 1500 // If ({S-T,+,X} + T) does not overflow ... (1) 1501 // 1502 // RHS == Ext({S-T,+,X} + T) == Ext({S-T,+,X}) + Ext(T) 1503 // 1504 // If {S-T,+,X} does not overflow ... (2) 1505 // 1506 // RHS == Ext({S-T,+,X}) + Ext(T) == {Ext(S-T),+,Ext(X)} + Ext(T) 1507 // == {Ext(S-T)+Ext(T),+,Ext(X)} 1508 // 1509 // If (S-T)+T does not overflow ... (3) 1510 // 1511 // RHS == {Ext(S-T)+Ext(T),+,Ext(X)} == {Ext(S-T+T),+,Ext(X)} 1512 // == {Ext(S),+,Ext(X)} == LHS 1513 // 1514 // Thus, if (1), (2) and (3) are true for some T, then 1515 // Ext({S,+,X}) == {Ext(S),+,Ext(X)} 1516 // 1517 // (3) is implied by (1) -- "(S-T)+T does not overflow" is simply "({S-T,+,X}+T) 1518 // does not overflow" restricted to the 0th iteration. Therefore we only need 1519 // to check for (1) and (2). 1520 // 1521 // In the current context, S is `Start`, X is `Step`, Ext is `ExtendOpTy` and T 1522 // is `Delta` (defined below). 1523 template <typename ExtendOpTy> 1524 bool ScalarEvolution::proveNoWrapByVaryingStart(const SCEV *Start, 1525 const SCEV *Step, 1526 const Loop *L) { 1527 auto WrapType = ExtendOpTraits<ExtendOpTy>::WrapType; 1528 1529 // We restrict `Start` to a constant to prevent SCEV from spending too much 1530 // time here. It is correct (but more expensive) to continue with a 1531 // non-constant `Start` and do a general SCEV subtraction to compute 1532 // `PreStart` below. 1533 const SCEVConstant *StartC = dyn_cast<SCEVConstant>(Start); 1534 if (!StartC) 1535 return false; 1536 1537 APInt StartAI = StartC->getAPInt(); 1538 1539 for (unsigned Delta : {-2, -1, 1, 2}) { 1540 const SCEV *PreStart = getConstant(StartAI - Delta); 1541 1542 FoldingSetNodeID ID; 1543 ID.AddInteger(scAddRecExpr); 1544 ID.AddPointer(PreStart); 1545 ID.AddPointer(Step); 1546 ID.AddPointer(L); 1547 void *IP = nullptr; 1548 const auto *PreAR = 1549 static_cast<SCEVAddRecExpr *>(UniqueSCEVs.FindNodeOrInsertPos(ID, IP)); 1550 1551 // Give up if we don't already have the add recurrence we need because 1552 // actually constructing an add recurrence is relatively expensive. 1553 if (PreAR && PreAR->getNoWrapFlags(WrapType)) { // proves (2) 1554 const SCEV *DeltaS = getConstant(StartC->getType(), Delta); 1555 ICmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE; 1556 const SCEV *Limit = ExtendOpTraits<ExtendOpTy>::getOverflowLimitForStep( 1557 DeltaS, &Pred, this); 1558 if (Limit && isKnownPredicate(Pred, PreAR, Limit)) // proves (1) 1559 return true; 1560 } 1561 } 1562 1563 return false; 1564 } 1565 1566 const SCEV * 1567 ScalarEvolution::getZeroExtendExpr(const SCEV *Op, Type *Ty, unsigned Depth) { 1568 assert(getTypeSizeInBits(Op->getType()) < getTypeSizeInBits(Ty) && 1569 "This is not an extending conversion!"); 1570 assert(isSCEVable(Ty) && 1571 "This is not a conversion to a SCEVable type!"); 1572 Ty = getEffectiveSCEVType(Ty); 1573 1574 // Fold if the operand is constant. 1575 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(Op)) 1576 return getConstant( 1577 cast<ConstantInt>(ConstantExpr::getZExt(SC->getValue(), Ty))); 1578 1579 // zext(zext(x)) --> zext(x) 1580 if (const SCEVZeroExtendExpr *SZ = dyn_cast<SCEVZeroExtendExpr>(Op)) 1581 return getZeroExtendExpr(SZ->getOperand(), Ty, Depth + 1); 1582 1583 // Before doing any expensive analysis, check to see if we've already 1584 // computed a SCEV for this Op and Ty. 1585 FoldingSetNodeID ID; 1586 ID.AddInteger(scZeroExtend); 1587 ID.AddPointer(Op); 1588 ID.AddPointer(Ty); 1589 void *IP = nullptr; 1590 if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S; 1591 if (Depth > MaxExtDepth) { 1592 SCEV *S = new (SCEVAllocator) SCEVZeroExtendExpr(ID.Intern(SCEVAllocator), 1593 Op, Ty); 1594 UniqueSCEVs.InsertNode(S, IP); 1595 addToLoopUseLists(S); 1596 return S; 1597 } 1598 1599 // zext(trunc(x)) --> zext(x) or x or trunc(x) 1600 if (const SCEVTruncateExpr *ST = dyn_cast<SCEVTruncateExpr>(Op)) { 1601 // It's possible the bits taken off by the truncate were all zero bits. If 1602 // so, we should be able to simplify this further. 1603 const SCEV *X = ST->getOperand(); 1604 ConstantRange CR = getUnsignedRange(X); 1605 unsigned TruncBits = getTypeSizeInBits(ST->getType()); 1606 unsigned NewBits = getTypeSizeInBits(Ty); 1607 if (CR.truncate(TruncBits).zeroExtend(NewBits).contains( 1608 CR.zextOrTrunc(NewBits))) 1609 return getTruncateOrZeroExtend(X, Ty); 1610 } 1611 1612 // If the input value is a chrec scev, and we can prove that the value 1613 // did not overflow the old, smaller, value, we can zero extend all of the 1614 // operands (often constants). This allows analysis of something like 1615 // this: for (unsigned char X = 0; X < 100; ++X) { int Y = X; } 1616 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Op)) 1617 if (AR->isAffine()) { 1618 const SCEV *Start = AR->getStart(); 1619 const SCEV *Step = AR->getStepRecurrence(*this); 1620 unsigned BitWidth = getTypeSizeInBits(AR->getType()); 1621 const Loop *L = AR->getLoop(); 1622 1623 if (!AR->hasNoUnsignedWrap()) { 1624 auto NewFlags = proveNoWrapViaConstantRanges(AR); 1625 const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(NewFlags); 1626 } 1627 1628 // If we have special knowledge that this addrec won't overflow, 1629 // we don't need to do any further analysis. 1630 if (AR->hasNoUnsignedWrap()) 1631 return getAddRecExpr( 1632 getExtendAddRecStart<SCEVZeroExtendExpr>(AR, Ty, this, Depth + 1), 1633 getZeroExtendExpr(Step, Ty, Depth + 1), L, AR->getNoWrapFlags()); 1634 1635 // Check whether the backedge-taken count is SCEVCouldNotCompute. 1636 // Note that this serves two purposes: It filters out loops that are 1637 // simply not analyzable, and it covers the case where this code is 1638 // being called from within backedge-taken count analysis, such that 1639 // attempting to ask for the backedge-taken count would likely result 1640 // in infinite recursion. In the later case, the analysis code will 1641 // cope with a conservative value, and it will take care to purge 1642 // that value once it has finished. 1643 const SCEV *MaxBECount = getMaxBackedgeTakenCount(L); 1644 if (!isa<SCEVCouldNotCompute>(MaxBECount)) { 1645 // Manually compute the final value for AR, checking for 1646 // overflow. 1647 1648 // Check whether the backedge-taken count can be losslessly casted to 1649 // the addrec's type. The count is always unsigned. 1650 const SCEV *CastedMaxBECount = 1651 getTruncateOrZeroExtend(MaxBECount, Start->getType()); 1652 const SCEV *RecastedMaxBECount = 1653 getTruncateOrZeroExtend(CastedMaxBECount, MaxBECount->getType()); 1654 if (MaxBECount == RecastedMaxBECount) { 1655 Type *WideTy = IntegerType::get(getContext(), BitWidth * 2); 1656 // Check whether Start+Step*MaxBECount has no unsigned overflow. 1657 const SCEV *ZMul = getMulExpr(CastedMaxBECount, Step, 1658 SCEV::FlagAnyWrap, Depth + 1); 1659 const SCEV *ZAdd = getZeroExtendExpr(getAddExpr(Start, ZMul, 1660 SCEV::FlagAnyWrap, 1661 Depth + 1), 1662 WideTy, Depth + 1); 1663 const SCEV *WideStart = getZeroExtendExpr(Start, WideTy, Depth + 1); 1664 const SCEV *WideMaxBECount = 1665 getZeroExtendExpr(CastedMaxBECount, WideTy, Depth + 1); 1666 const SCEV *OperandExtendedAdd = 1667 getAddExpr(WideStart, 1668 getMulExpr(WideMaxBECount, 1669 getZeroExtendExpr(Step, WideTy, Depth + 1), 1670 SCEV::FlagAnyWrap, Depth + 1), 1671 SCEV::FlagAnyWrap, Depth + 1); 1672 if (ZAdd == OperandExtendedAdd) { 1673 // Cache knowledge of AR NUW, which is propagated to this AddRec. 1674 const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNUW); 1675 // Return the expression with the addrec on the outside. 1676 return getAddRecExpr( 1677 getExtendAddRecStart<SCEVZeroExtendExpr>(AR, Ty, this, 1678 Depth + 1), 1679 getZeroExtendExpr(Step, Ty, Depth + 1), L, 1680 AR->getNoWrapFlags()); 1681 } 1682 // Similar to above, only this time treat the step value as signed. 1683 // This covers loops that count down. 1684 OperandExtendedAdd = 1685 getAddExpr(WideStart, 1686 getMulExpr(WideMaxBECount, 1687 getSignExtendExpr(Step, WideTy, Depth + 1), 1688 SCEV::FlagAnyWrap, Depth + 1), 1689 SCEV::FlagAnyWrap, Depth + 1); 1690 if (ZAdd == OperandExtendedAdd) { 1691 // Cache knowledge of AR NW, which is propagated to this AddRec. 1692 // Negative step causes unsigned wrap, but it still can't self-wrap. 1693 const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNW); 1694 // Return the expression with the addrec on the outside. 1695 return getAddRecExpr( 1696 getExtendAddRecStart<SCEVZeroExtendExpr>(AR, Ty, this, 1697 Depth + 1), 1698 getSignExtendExpr(Step, Ty, Depth + 1), L, 1699 AR->getNoWrapFlags()); 1700 } 1701 } 1702 } 1703 1704 // Normally, in the cases we can prove no-overflow via a 1705 // backedge guarding condition, we can also compute a backedge 1706 // taken count for the loop. The exceptions are assumptions and 1707 // guards present in the loop -- SCEV is not great at exploiting 1708 // these to compute max backedge taken counts, but can still use 1709 // these to prove lack of overflow. Use this fact to avoid 1710 // doing extra work that may not pay off. 1711 if (!isa<SCEVCouldNotCompute>(MaxBECount) || HasGuards || 1712 !AC.assumptions().empty()) { 1713 // If the backedge is guarded by a comparison with the pre-inc 1714 // value the addrec is safe. Also, if the entry is guarded by 1715 // a comparison with the start value and the backedge is 1716 // guarded by a comparison with the post-inc value, the addrec 1717 // is safe. 1718 if (isKnownPositive(Step)) { 1719 const SCEV *N = getConstant(APInt::getMinValue(BitWidth) - 1720 getUnsignedRangeMax(Step)); 1721 if (isLoopBackedgeGuardedByCond(L, ICmpInst::ICMP_ULT, AR, N) || 1722 (isLoopEntryGuardedByCond(L, ICmpInst::ICMP_ULT, Start, N) && 1723 isLoopBackedgeGuardedByCond(L, ICmpInst::ICMP_ULT, 1724 AR->getPostIncExpr(*this), N))) { 1725 // Cache knowledge of AR NUW, which is propagated to this 1726 // AddRec. 1727 const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNUW); 1728 // Return the expression with the addrec on the outside. 1729 return getAddRecExpr( 1730 getExtendAddRecStart<SCEVZeroExtendExpr>(AR, Ty, this, 1731 Depth + 1), 1732 getZeroExtendExpr(Step, Ty, Depth + 1), L, 1733 AR->getNoWrapFlags()); 1734 } 1735 } else if (isKnownNegative(Step)) { 1736 const SCEV *N = getConstant(APInt::getMaxValue(BitWidth) - 1737 getSignedRangeMin(Step)); 1738 if (isLoopBackedgeGuardedByCond(L, ICmpInst::ICMP_UGT, AR, N) || 1739 (isLoopEntryGuardedByCond(L, ICmpInst::ICMP_UGT, Start, N) && 1740 isLoopBackedgeGuardedByCond(L, ICmpInst::ICMP_UGT, 1741 AR->getPostIncExpr(*this), N))) { 1742 // Cache knowledge of AR NW, which is propagated to this 1743 // AddRec. Negative step causes unsigned wrap, but it 1744 // still can't self-wrap. 1745 const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNW); 1746 // Return the expression with the addrec on the outside. 1747 return getAddRecExpr( 1748 getExtendAddRecStart<SCEVZeroExtendExpr>(AR, Ty, this, 1749 Depth + 1), 1750 getSignExtendExpr(Step, Ty, Depth + 1), L, 1751 AR->getNoWrapFlags()); 1752 } 1753 } 1754 } 1755 1756 if (proveNoWrapByVaryingStart<SCEVZeroExtendExpr>(Start, Step, L)) { 1757 const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNUW); 1758 return getAddRecExpr( 1759 getExtendAddRecStart<SCEVZeroExtendExpr>(AR, Ty, this, Depth + 1), 1760 getZeroExtendExpr(Step, Ty, Depth + 1), L, AR->getNoWrapFlags()); 1761 } 1762 } 1763 1764 if (auto *SA = dyn_cast<SCEVAddExpr>(Op)) { 1765 // zext((A + B + ...)<nuw>) --> (zext(A) + zext(B) + ...)<nuw> 1766 if (SA->hasNoUnsignedWrap()) { 1767 // If the addition does not unsign overflow then we can, by definition, 1768 // commute the zero extension with the addition operation. 1769 SmallVector<const SCEV *, 4> Ops; 1770 for (const auto *Op : SA->operands()) 1771 Ops.push_back(getZeroExtendExpr(Op, Ty, Depth + 1)); 1772 return getAddExpr(Ops, SCEV::FlagNUW, Depth + 1); 1773 } 1774 } 1775 1776 // The cast wasn't folded; create an explicit cast node. 1777 // Recompute the insert position, as it may have been invalidated. 1778 if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S; 1779 SCEV *S = new (SCEVAllocator) SCEVZeroExtendExpr(ID.Intern(SCEVAllocator), 1780 Op, Ty); 1781 UniqueSCEVs.InsertNode(S, IP); 1782 addToLoopUseLists(S); 1783 return S; 1784 } 1785 1786 const SCEV * 1787 ScalarEvolution::getSignExtendExpr(const SCEV *Op, Type *Ty, unsigned Depth) { 1788 assert(getTypeSizeInBits(Op->getType()) < getTypeSizeInBits(Ty) && 1789 "This is not an extending conversion!"); 1790 assert(isSCEVable(Ty) && 1791 "This is not a conversion to a SCEVable type!"); 1792 Ty = getEffectiveSCEVType(Ty); 1793 1794 // Fold if the operand is constant. 1795 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(Op)) 1796 return getConstant( 1797 cast<ConstantInt>(ConstantExpr::getSExt(SC->getValue(), Ty))); 1798 1799 // sext(sext(x)) --> sext(x) 1800 if (const SCEVSignExtendExpr *SS = dyn_cast<SCEVSignExtendExpr>(Op)) 1801 return getSignExtendExpr(SS->getOperand(), Ty, Depth + 1); 1802 1803 // sext(zext(x)) --> zext(x) 1804 if (const SCEVZeroExtendExpr *SZ = dyn_cast<SCEVZeroExtendExpr>(Op)) 1805 return getZeroExtendExpr(SZ->getOperand(), Ty, Depth + 1); 1806 1807 // Before doing any expensive analysis, check to see if we've already 1808 // computed a SCEV for this Op and Ty. 1809 FoldingSetNodeID ID; 1810 ID.AddInteger(scSignExtend); 1811 ID.AddPointer(Op); 1812 ID.AddPointer(Ty); 1813 void *IP = nullptr; 1814 if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S; 1815 // Limit recursion depth. 1816 if (Depth > MaxExtDepth) { 1817 SCEV *S = new (SCEVAllocator) SCEVSignExtendExpr(ID.Intern(SCEVAllocator), 1818 Op, Ty); 1819 UniqueSCEVs.InsertNode(S, IP); 1820 addToLoopUseLists(S); 1821 return S; 1822 } 1823 1824 // sext(trunc(x)) --> sext(x) or x or trunc(x) 1825 if (const SCEVTruncateExpr *ST = dyn_cast<SCEVTruncateExpr>(Op)) { 1826 // It's possible the bits taken off by the truncate were all sign bits. If 1827 // so, we should be able to simplify this further. 1828 const SCEV *X = ST->getOperand(); 1829 ConstantRange CR = getSignedRange(X); 1830 unsigned TruncBits = getTypeSizeInBits(ST->getType()); 1831 unsigned NewBits = getTypeSizeInBits(Ty); 1832 if (CR.truncate(TruncBits).signExtend(NewBits).contains( 1833 CR.sextOrTrunc(NewBits))) 1834 return getTruncateOrSignExtend(X, Ty); 1835 } 1836 1837 // sext(C1 + (C2 * x)) --> C1 + sext(C2 * x) if C1 < C2 1838 if (auto *SA = dyn_cast<SCEVAddExpr>(Op)) { 1839 if (SA->getNumOperands() == 2) { 1840 auto *SC1 = dyn_cast<SCEVConstant>(SA->getOperand(0)); 1841 auto *SMul = dyn_cast<SCEVMulExpr>(SA->getOperand(1)); 1842 if (SMul && SC1) { 1843 if (auto *SC2 = dyn_cast<SCEVConstant>(SMul->getOperand(0))) { 1844 const APInt &C1 = SC1->getAPInt(); 1845 const APInt &C2 = SC2->getAPInt(); 1846 if (C1.isStrictlyPositive() && C2.isStrictlyPositive() && 1847 C2.ugt(C1) && C2.isPowerOf2()) 1848 return getAddExpr(getSignExtendExpr(SC1, Ty, Depth + 1), 1849 getSignExtendExpr(SMul, Ty, Depth + 1), 1850 SCEV::FlagAnyWrap, Depth + 1); 1851 } 1852 } 1853 } 1854 1855 // sext((A + B + ...)<nsw>) --> (sext(A) + sext(B) + ...)<nsw> 1856 if (SA->hasNoSignedWrap()) { 1857 // If the addition does not sign overflow then we can, by definition, 1858 // commute the sign extension with the addition operation. 1859 SmallVector<const SCEV *, 4> Ops; 1860 for (const auto *Op : SA->operands()) 1861 Ops.push_back(getSignExtendExpr(Op, Ty, Depth + 1)); 1862 return getAddExpr(Ops, SCEV::FlagNSW, Depth + 1); 1863 } 1864 } 1865 // If the input value is a chrec scev, and we can prove that the value 1866 // did not overflow the old, smaller, value, we can sign extend all of the 1867 // operands (often constants). This allows analysis of something like 1868 // this: for (signed char X = 0; X < 100; ++X) { int Y = X; } 1869 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Op)) 1870 if (AR->isAffine()) { 1871 const SCEV *Start = AR->getStart(); 1872 const SCEV *Step = AR->getStepRecurrence(*this); 1873 unsigned BitWidth = getTypeSizeInBits(AR->getType()); 1874 const Loop *L = AR->getLoop(); 1875 1876 if (!AR->hasNoSignedWrap()) { 1877 auto NewFlags = proveNoWrapViaConstantRanges(AR); 1878 const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(NewFlags); 1879 } 1880 1881 // If we have special knowledge that this addrec won't overflow, 1882 // we don't need to do any further analysis. 1883 if (AR->hasNoSignedWrap()) 1884 return getAddRecExpr( 1885 getExtendAddRecStart<SCEVSignExtendExpr>(AR, Ty, this, Depth + 1), 1886 getSignExtendExpr(Step, Ty, Depth + 1), L, SCEV::FlagNSW); 1887 1888 // Check whether the backedge-taken count is SCEVCouldNotCompute. 1889 // Note that this serves two purposes: It filters out loops that are 1890 // simply not analyzable, and it covers the case where this code is 1891 // being called from within backedge-taken count analysis, such that 1892 // attempting to ask for the backedge-taken count would likely result 1893 // in infinite recursion. In the later case, the analysis code will 1894 // cope with a conservative value, and it will take care to purge 1895 // that value once it has finished. 1896 const SCEV *MaxBECount = getMaxBackedgeTakenCount(L); 1897 if (!isa<SCEVCouldNotCompute>(MaxBECount)) { 1898 // Manually compute the final value for AR, checking for 1899 // overflow. 1900 1901 // Check whether the backedge-taken count can be losslessly casted to 1902 // the addrec's type. The count is always unsigned. 1903 const SCEV *CastedMaxBECount = 1904 getTruncateOrZeroExtend(MaxBECount, Start->getType()); 1905 const SCEV *RecastedMaxBECount = 1906 getTruncateOrZeroExtend(CastedMaxBECount, MaxBECount->getType()); 1907 if (MaxBECount == RecastedMaxBECount) { 1908 Type *WideTy = IntegerType::get(getContext(), BitWidth * 2); 1909 // Check whether Start+Step*MaxBECount has no signed overflow. 1910 const SCEV *SMul = getMulExpr(CastedMaxBECount, Step, 1911 SCEV::FlagAnyWrap, Depth + 1); 1912 const SCEV *SAdd = getSignExtendExpr(getAddExpr(Start, SMul, 1913 SCEV::FlagAnyWrap, 1914 Depth + 1), 1915 WideTy, Depth + 1); 1916 const SCEV *WideStart = getSignExtendExpr(Start, WideTy, Depth + 1); 1917 const SCEV *WideMaxBECount = 1918 getZeroExtendExpr(CastedMaxBECount, WideTy, Depth + 1); 1919 const SCEV *OperandExtendedAdd = 1920 getAddExpr(WideStart, 1921 getMulExpr(WideMaxBECount, 1922 getSignExtendExpr(Step, WideTy, Depth + 1), 1923 SCEV::FlagAnyWrap, Depth + 1), 1924 SCEV::FlagAnyWrap, Depth + 1); 1925 if (SAdd == OperandExtendedAdd) { 1926 // Cache knowledge of AR NSW, which is propagated to this AddRec. 1927 const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNSW); 1928 // Return the expression with the addrec on the outside. 1929 return getAddRecExpr( 1930 getExtendAddRecStart<SCEVSignExtendExpr>(AR, Ty, this, 1931 Depth + 1), 1932 getSignExtendExpr(Step, Ty, Depth + 1), L, 1933 AR->getNoWrapFlags()); 1934 } 1935 // Similar to above, only this time treat the step value as unsigned. 1936 // This covers loops that count up with an unsigned step. 1937 OperandExtendedAdd = 1938 getAddExpr(WideStart, 1939 getMulExpr(WideMaxBECount, 1940 getZeroExtendExpr(Step, WideTy, Depth + 1), 1941 SCEV::FlagAnyWrap, Depth + 1), 1942 SCEV::FlagAnyWrap, Depth + 1); 1943 if (SAdd == OperandExtendedAdd) { 1944 // If AR wraps around then 1945 // 1946 // abs(Step) * MaxBECount > unsigned-max(AR->getType()) 1947 // => SAdd != OperandExtendedAdd 1948 // 1949 // Thus (AR is not NW => SAdd != OperandExtendedAdd) <=> 1950 // (SAdd == OperandExtendedAdd => AR is NW) 1951 1952 const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNW); 1953 1954 // Return the expression with the addrec on the outside. 1955 return getAddRecExpr( 1956 getExtendAddRecStart<SCEVSignExtendExpr>(AR, Ty, this, 1957 Depth + 1), 1958 getZeroExtendExpr(Step, Ty, Depth + 1), L, 1959 AR->getNoWrapFlags()); 1960 } 1961 } 1962 } 1963 1964 // Normally, in the cases we can prove no-overflow via a 1965 // backedge guarding condition, we can also compute a backedge 1966 // taken count for the loop. The exceptions are assumptions and 1967 // guards present in the loop -- SCEV is not great at exploiting 1968 // these to compute max backedge taken counts, but can still use 1969 // these to prove lack of overflow. Use this fact to avoid 1970 // doing extra work that may not pay off. 1971 1972 if (!isa<SCEVCouldNotCompute>(MaxBECount) || HasGuards || 1973 !AC.assumptions().empty()) { 1974 // If the backedge is guarded by a comparison with the pre-inc 1975 // value the addrec is safe. Also, if the entry is guarded by 1976 // a comparison with the start value and the backedge is 1977 // guarded by a comparison with the post-inc value, the addrec 1978 // is safe. 1979 ICmpInst::Predicate Pred; 1980 const SCEV *OverflowLimit = 1981 getSignedOverflowLimitForStep(Step, &Pred, this); 1982 if (OverflowLimit && 1983 (isLoopBackedgeGuardedByCond(L, Pred, AR, OverflowLimit) || 1984 (isLoopEntryGuardedByCond(L, Pred, Start, OverflowLimit) && 1985 isLoopBackedgeGuardedByCond(L, Pred, AR->getPostIncExpr(*this), 1986 OverflowLimit)))) { 1987 // Cache knowledge of AR NSW, then propagate NSW to the wide AddRec. 1988 const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNSW); 1989 return getAddRecExpr( 1990 getExtendAddRecStart<SCEVSignExtendExpr>(AR, Ty, this, Depth + 1), 1991 getSignExtendExpr(Step, Ty, Depth + 1), L, AR->getNoWrapFlags()); 1992 } 1993 } 1994 1995 // If Start and Step are constants, check if we can apply this 1996 // transformation: 1997 // sext{C1,+,C2} --> C1 + sext{0,+,C2} if C1 < C2 1998 auto *SC1 = dyn_cast<SCEVConstant>(Start); 1999 auto *SC2 = dyn_cast<SCEVConstant>(Step); 2000 if (SC1 && SC2) { 2001 const APInt &C1 = SC1->getAPInt(); 2002 const APInt &C2 = SC2->getAPInt(); 2003 if (C1.isStrictlyPositive() && C2.isStrictlyPositive() && C2.ugt(C1) && 2004 C2.isPowerOf2()) { 2005 Start = getSignExtendExpr(Start, Ty, Depth + 1); 2006 const SCEV *NewAR = getAddRecExpr(getZero(AR->getType()), Step, L, 2007 AR->getNoWrapFlags()); 2008 return getAddExpr(Start, getSignExtendExpr(NewAR, Ty, Depth + 1), 2009 SCEV::FlagAnyWrap, Depth + 1); 2010 } 2011 } 2012 2013 if (proveNoWrapByVaryingStart<SCEVSignExtendExpr>(Start, Step, L)) { 2014 const_cast<SCEVAddRecExpr *>(AR)->setNoWrapFlags(SCEV::FlagNSW); 2015 return getAddRecExpr( 2016 getExtendAddRecStart<SCEVSignExtendExpr>(AR, Ty, this, Depth + 1), 2017 getSignExtendExpr(Step, Ty, Depth + 1), L, AR->getNoWrapFlags()); 2018 } 2019 } 2020 2021 // If the input value is provably positive and we could not simplify 2022 // away the sext build a zext instead. 2023 if (isKnownNonNegative(Op)) 2024 return getZeroExtendExpr(Op, Ty, Depth + 1); 2025 2026 // The cast wasn't folded; create an explicit cast node. 2027 // Recompute the insert position, as it may have been invalidated. 2028 if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S; 2029 SCEV *S = new (SCEVAllocator) SCEVSignExtendExpr(ID.Intern(SCEVAllocator), 2030 Op, Ty); 2031 UniqueSCEVs.InsertNode(S, IP); 2032 addToLoopUseLists(S); 2033 return S; 2034 } 2035 2036 /// getAnyExtendExpr - Return a SCEV for the given operand extended with 2037 /// unspecified bits out to the given type. 2038 const SCEV *ScalarEvolution::getAnyExtendExpr(const SCEV *Op, 2039 Type *Ty) { 2040 assert(getTypeSizeInBits(Op->getType()) < getTypeSizeInBits(Ty) && 2041 "This is not an extending conversion!"); 2042 assert(isSCEVable(Ty) && 2043 "This is not a conversion to a SCEVable type!"); 2044 Ty = getEffectiveSCEVType(Ty); 2045 2046 // Sign-extend negative constants. 2047 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(Op)) 2048 if (SC->getAPInt().isNegative()) 2049 return getSignExtendExpr(Op, Ty); 2050 2051 // Peel off a truncate cast. 2052 if (const SCEVTruncateExpr *T = dyn_cast<SCEVTruncateExpr>(Op)) { 2053 const SCEV *NewOp = T->getOperand(); 2054 if (getTypeSizeInBits(NewOp->getType()) < getTypeSizeInBits(Ty)) 2055 return getAnyExtendExpr(NewOp, Ty); 2056 return getTruncateOrNoop(NewOp, Ty); 2057 } 2058 2059 // Next try a zext cast. If the cast is folded, use it. 2060 const SCEV *ZExt = getZeroExtendExpr(Op, Ty); 2061 if (!isa<SCEVZeroExtendExpr>(ZExt)) 2062 return ZExt; 2063 2064 // Next try a sext cast. If the cast is folded, use it. 2065 const SCEV *SExt = getSignExtendExpr(Op, Ty); 2066 if (!isa<SCEVSignExtendExpr>(SExt)) 2067 return SExt; 2068 2069 // Force the cast to be folded into the operands of an addrec. 2070 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Op)) { 2071 SmallVector<const SCEV *, 4> Ops; 2072 for (const SCEV *Op : AR->operands()) 2073 Ops.push_back(getAnyExtendExpr(Op, Ty)); 2074 return getAddRecExpr(Ops, AR->getLoop(), SCEV::FlagNW); 2075 } 2076 2077 // If the expression is obviously signed, use the sext cast value. 2078 if (isa<SCEVSMaxExpr>(Op)) 2079 return SExt; 2080 2081 // Absent any other information, use the zext cast value. 2082 return ZExt; 2083 } 2084 2085 /// Process the given Ops list, which is a list of operands to be added under 2086 /// the given scale, update the given map. This is a helper function for 2087 /// getAddRecExpr. As an example of what it does, given a sequence of operands 2088 /// that would form an add expression like this: 2089 /// 2090 /// m + n + 13 + (A * (o + p + (B * (q + m + 29)))) + r + (-1 * r) 2091 /// 2092 /// where A and B are constants, update the map with these values: 2093 /// 2094 /// (m, 1+A*B), (n, 1), (o, A), (p, A), (q, A*B), (r, 0) 2095 /// 2096 /// and add 13 + A*B*29 to AccumulatedConstant. 2097 /// This will allow getAddRecExpr to produce this: 2098 /// 2099 /// 13+A*B*29 + n + (m * (1+A*B)) + ((o + p) * A) + (q * A*B) 2100 /// 2101 /// This form often exposes folding opportunities that are hidden in 2102 /// the original operand list. 2103 /// 2104 /// Return true iff it appears that any interesting folding opportunities 2105 /// may be exposed. This helps getAddRecExpr short-circuit extra work in 2106 /// the common case where no interesting opportunities are present, and 2107 /// is also used as a check to avoid infinite recursion. 2108 static bool 2109 CollectAddOperandsWithScales(DenseMap<const SCEV *, APInt> &M, 2110 SmallVectorImpl<const SCEV *> &NewOps, 2111 APInt &AccumulatedConstant, 2112 const SCEV *const *Ops, size_t NumOperands, 2113 const APInt &Scale, 2114 ScalarEvolution &SE) { 2115 bool Interesting = false; 2116 2117 // Iterate over the add operands. They are sorted, with constants first. 2118 unsigned i = 0; 2119 while (const SCEVConstant *C = dyn_cast<SCEVConstant>(Ops[i])) { 2120 ++i; 2121 // Pull a buried constant out to the outside. 2122 if (Scale != 1 || AccumulatedConstant != 0 || C->getValue()->isZero()) 2123 Interesting = true; 2124 AccumulatedConstant += Scale * C->getAPInt(); 2125 } 2126 2127 // Next comes everything else. We're especially interested in multiplies 2128 // here, but they're in the middle, so just visit the rest with one loop. 2129 for (; i != NumOperands; ++i) { 2130 const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(Ops[i]); 2131 if (Mul && isa<SCEVConstant>(Mul->getOperand(0))) { 2132 APInt NewScale = 2133 Scale * cast<SCEVConstant>(Mul->getOperand(0))->getAPInt(); 2134 if (Mul->getNumOperands() == 2 && isa<SCEVAddExpr>(Mul->getOperand(1))) { 2135 // A multiplication of a constant with another add; recurse. 2136 const SCEVAddExpr *Add = cast<SCEVAddExpr>(Mul->getOperand(1)); 2137 Interesting |= 2138 CollectAddOperandsWithScales(M, NewOps, AccumulatedConstant, 2139 Add->op_begin(), Add->getNumOperands(), 2140 NewScale, SE); 2141 } else { 2142 // A multiplication of a constant with some other value. Update 2143 // the map. 2144 SmallVector<const SCEV *, 4> MulOps(Mul->op_begin()+1, Mul->op_end()); 2145 const SCEV *Key = SE.getMulExpr(MulOps); 2146 auto Pair = M.insert({Key, NewScale}); 2147 if (Pair.second) { 2148 NewOps.push_back(Pair.first->first); 2149 } else { 2150 Pair.first->second += NewScale; 2151 // The map already had an entry for this value, which may indicate 2152 // a folding opportunity. 2153 Interesting = true; 2154 } 2155 } 2156 } else { 2157 // An ordinary operand. Update the map. 2158 std::pair<DenseMap<const SCEV *, APInt>::iterator, bool> Pair = 2159 M.insert({Ops[i], Scale}); 2160 if (Pair.second) { 2161 NewOps.push_back(Pair.first->first); 2162 } else { 2163 Pair.first->second += Scale; 2164 // The map already had an entry for this value, which may indicate 2165 // a folding opportunity. 2166 Interesting = true; 2167 } 2168 } 2169 } 2170 2171 return Interesting; 2172 } 2173 2174 // We're trying to construct a SCEV of type `Type' with `Ops' as operands and 2175 // `OldFlags' as can't-wrap behavior. Infer a more aggressive set of 2176 // can't-overflow flags for the operation if possible. 2177 static SCEV::NoWrapFlags 2178 StrengthenNoWrapFlags(ScalarEvolution *SE, SCEVTypes Type, 2179 const SmallVectorImpl<const SCEV *> &Ops, 2180 SCEV::NoWrapFlags Flags) { 2181 using namespace std::placeholders; 2182 2183 using OBO = OverflowingBinaryOperator; 2184 2185 bool CanAnalyze = 2186 Type == scAddExpr || Type == scAddRecExpr || Type == scMulExpr; 2187 (void)CanAnalyze; 2188 assert(CanAnalyze && "don't call from other places!"); 2189 2190 int SignOrUnsignMask = SCEV::FlagNUW | SCEV::FlagNSW; 2191 SCEV::NoWrapFlags SignOrUnsignWrap = 2192 ScalarEvolution::maskFlags(Flags, SignOrUnsignMask); 2193 2194 // If FlagNSW is true and all the operands are non-negative, infer FlagNUW. 2195 auto IsKnownNonNegative = [&](const SCEV *S) { 2196 return SE->isKnownNonNegative(S); 2197 }; 2198 2199 if (SignOrUnsignWrap == SCEV::FlagNSW && all_of(Ops, IsKnownNonNegative)) 2200 Flags = 2201 ScalarEvolution::setFlags(Flags, (SCEV::NoWrapFlags)SignOrUnsignMask); 2202 2203 SignOrUnsignWrap = ScalarEvolution::maskFlags(Flags, SignOrUnsignMask); 2204 2205 if (SignOrUnsignWrap != SignOrUnsignMask && Type == scAddExpr && 2206 Ops.size() == 2 && isa<SCEVConstant>(Ops[0])) { 2207 2208 // (A + C) --> (A + C)<nsw> if the addition does not sign overflow 2209 // (A + C) --> (A + C)<nuw> if the addition does not unsign overflow 2210 2211 const APInt &C = cast<SCEVConstant>(Ops[0])->getAPInt(); 2212 if (!(SignOrUnsignWrap & SCEV::FlagNSW)) { 2213 auto NSWRegion = ConstantRange::makeGuaranteedNoWrapRegion( 2214 Instruction::Add, C, OBO::NoSignedWrap); 2215 if (NSWRegion.contains(SE->getSignedRange(Ops[1]))) 2216 Flags = ScalarEvolution::setFlags(Flags, SCEV::FlagNSW); 2217 } 2218 if (!(SignOrUnsignWrap & SCEV::FlagNUW)) { 2219 auto NUWRegion = ConstantRange::makeGuaranteedNoWrapRegion( 2220 Instruction::Add, C, OBO::NoUnsignedWrap); 2221 if (NUWRegion.contains(SE->getUnsignedRange(Ops[1]))) 2222 Flags = ScalarEvolution::setFlags(Flags, SCEV::FlagNUW); 2223 } 2224 } 2225 2226 return Flags; 2227 } 2228 2229 bool ScalarEvolution::isAvailableAtLoopEntry(const SCEV *S, const Loop *L) { 2230 if (!isLoopInvariant(S, L)) 2231 return false; 2232 // If a value depends on a SCEVUnknown which is defined after the loop, we 2233 // conservatively assume that we cannot calculate it at the loop's entry. 2234 struct FindDominatedSCEVUnknown { 2235 bool Found = false; 2236 const Loop *L; 2237 DominatorTree &DT; 2238 LoopInfo &LI; 2239 2240 FindDominatedSCEVUnknown(const Loop *L, DominatorTree &DT, LoopInfo &LI) 2241 : L(L), DT(DT), LI(LI) {} 2242 2243 bool checkSCEVUnknown(const SCEVUnknown *SU) { 2244 if (auto *I = dyn_cast<Instruction>(SU->getValue())) { 2245 if (DT.dominates(L->getHeader(), I->getParent())) 2246 Found = true; 2247 else 2248 assert(DT.dominates(I->getParent(), L->getHeader()) && 2249 "No dominance relationship between SCEV and loop?"); 2250 } 2251 return false; 2252 } 2253 2254 bool follow(const SCEV *S) { 2255 switch (static_cast<SCEVTypes>(S->getSCEVType())) { 2256 case scConstant: 2257 return false; 2258 case scAddRecExpr: 2259 case scTruncate: 2260 case scZeroExtend: 2261 case scSignExtend: 2262 case scAddExpr: 2263 case scMulExpr: 2264 case scUMaxExpr: 2265 case scSMaxExpr: 2266 case scUDivExpr: 2267 return true; 2268 case scUnknown: 2269 return checkSCEVUnknown(cast<SCEVUnknown>(S)); 2270 case scCouldNotCompute: 2271 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!"); 2272 } 2273 return false; 2274 } 2275 2276 bool isDone() { return Found; } 2277 }; 2278 2279 FindDominatedSCEVUnknown FSU(L, DT, LI); 2280 SCEVTraversal<FindDominatedSCEVUnknown> ST(FSU); 2281 ST.visitAll(S); 2282 return !FSU.Found; 2283 } 2284 2285 /// Get a canonical add expression, or something simpler if possible. 2286 const SCEV *ScalarEvolution::getAddExpr(SmallVectorImpl<const SCEV *> &Ops, 2287 SCEV::NoWrapFlags Flags, 2288 unsigned Depth) { 2289 assert(!(Flags & ~(SCEV::FlagNUW | SCEV::FlagNSW)) && 2290 "only nuw or nsw allowed"); 2291 assert(!Ops.empty() && "Cannot get empty add!"); 2292 if (Ops.size() == 1) return Ops[0]; 2293 #ifndef NDEBUG 2294 Type *ETy = getEffectiveSCEVType(Ops[0]->getType()); 2295 for (unsigned i = 1, e = Ops.size(); i != e; ++i) 2296 assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy && 2297 "SCEVAddExpr operand types don't match!"); 2298 #endif 2299 2300 // Sort by complexity, this groups all similar expression types together. 2301 GroupByComplexity(Ops, &LI, DT); 2302 2303 Flags = StrengthenNoWrapFlags(this, scAddExpr, Ops, Flags); 2304 2305 // If there are any constants, fold them together. 2306 unsigned Idx = 0; 2307 if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(Ops[0])) { 2308 ++Idx; 2309 assert(Idx < Ops.size()); 2310 while (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(Ops[Idx])) { 2311 // We found two constants, fold them together! 2312 Ops[0] = getConstant(LHSC->getAPInt() + RHSC->getAPInt()); 2313 if (Ops.size() == 2) return Ops[0]; 2314 Ops.erase(Ops.begin()+1); // Erase the folded element 2315 LHSC = cast<SCEVConstant>(Ops[0]); 2316 } 2317 2318 // If we are left with a constant zero being added, strip it off. 2319 if (LHSC->getValue()->isZero()) { 2320 Ops.erase(Ops.begin()); 2321 --Idx; 2322 } 2323 2324 if (Ops.size() == 1) return Ops[0]; 2325 } 2326 2327 // Limit recursion calls depth. 2328 if (Depth > MaxArithDepth) 2329 return getOrCreateAddExpr(Ops, Flags); 2330 2331 // Okay, check to see if the same value occurs in the operand list more than 2332 // once. If so, merge them together into an multiply expression. Since we 2333 // sorted the list, these values are required to be adjacent. 2334 Type *Ty = Ops[0]->getType(); 2335 bool FoundMatch = false; 2336 for (unsigned i = 0, e = Ops.size(); i != e-1; ++i) 2337 if (Ops[i] == Ops[i+1]) { // X + Y + Y --> X + Y*2 2338 // Scan ahead to count how many equal operands there are. 2339 unsigned Count = 2; 2340 while (i+Count != e && Ops[i+Count] == Ops[i]) 2341 ++Count; 2342 // Merge the values into a multiply. 2343 const SCEV *Scale = getConstant(Ty, Count); 2344 const SCEV *Mul = getMulExpr(Scale, Ops[i], SCEV::FlagAnyWrap, Depth + 1); 2345 if (Ops.size() == Count) 2346 return Mul; 2347 Ops[i] = Mul; 2348 Ops.erase(Ops.begin()+i+1, Ops.begin()+i+Count); 2349 --i; e -= Count - 1; 2350 FoundMatch = true; 2351 } 2352 if (FoundMatch) 2353 return getAddExpr(Ops, Flags); 2354 2355 // Check for truncates. If all the operands are truncated from the same 2356 // type, see if factoring out the truncate would permit the result to be 2357 // folded. eg., n*trunc(x) + m*trunc(y) --> trunc(trunc(m)*x + trunc(n)*y) 2358 // if the contents of the resulting outer trunc fold to something simple. 2359 auto FindTruncSrcType = [&]() -> Type * { 2360 // We're ultimately looking to fold an addrec of truncs and muls of only 2361 // constants and truncs, so if we find any other types of SCEV 2362 // as operands of the addrec then we bail and return nullptr here. 2363 // Otherwise, we return the type of the operand of a trunc that we find. 2364 if (auto *T = dyn_cast<SCEVTruncateExpr>(Ops[Idx])) 2365 return T->getOperand()->getType(); 2366 if (const auto *Mul = dyn_cast<SCEVMulExpr>(Ops[Idx])) { 2367 const auto *LastOp = Mul->getOperand(Mul->getNumOperands() - 1); 2368 if (const auto *T = dyn_cast<SCEVTruncateExpr>(LastOp)) 2369 return T->getOperand()->getType(); 2370 } 2371 return nullptr; 2372 }; 2373 if (auto *SrcType = FindTruncSrcType()) { 2374 SmallVector<const SCEV *, 8> LargeOps; 2375 bool Ok = true; 2376 // Check all the operands to see if they can be represented in the 2377 // source type of the truncate. 2378 for (unsigned i = 0, e = Ops.size(); i != e; ++i) { 2379 if (const SCEVTruncateExpr *T = dyn_cast<SCEVTruncateExpr>(Ops[i])) { 2380 if (T->getOperand()->getType() != SrcType) { 2381 Ok = false; 2382 break; 2383 } 2384 LargeOps.push_back(T->getOperand()); 2385 } else if (const SCEVConstant *C = dyn_cast<SCEVConstant>(Ops[i])) { 2386 LargeOps.push_back(getAnyExtendExpr(C, SrcType)); 2387 } else if (const SCEVMulExpr *M = dyn_cast<SCEVMulExpr>(Ops[i])) { 2388 SmallVector<const SCEV *, 8> LargeMulOps; 2389 for (unsigned j = 0, f = M->getNumOperands(); j != f && Ok; ++j) { 2390 if (const SCEVTruncateExpr *T = 2391 dyn_cast<SCEVTruncateExpr>(M->getOperand(j))) { 2392 if (T->getOperand()->getType() != SrcType) { 2393 Ok = false; 2394 break; 2395 } 2396 LargeMulOps.push_back(T->getOperand()); 2397 } else if (const auto *C = dyn_cast<SCEVConstant>(M->getOperand(j))) { 2398 LargeMulOps.push_back(getAnyExtendExpr(C, SrcType)); 2399 } else { 2400 Ok = false; 2401 break; 2402 } 2403 } 2404 if (Ok) 2405 LargeOps.push_back(getMulExpr(LargeMulOps, SCEV::FlagAnyWrap, Depth + 1)); 2406 } else { 2407 Ok = false; 2408 break; 2409 } 2410 } 2411 if (Ok) { 2412 // Evaluate the expression in the larger type. 2413 const SCEV *Fold = getAddExpr(LargeOps, Flags, Depth + 1); 2414 // If it folds to something simple, use it. Otherwise, don't. 2415 if (isa<SCEVConstant>(Fold) || isa<SCEVUnknown>(Fold)) 2416 return getTruncateExpr(Fold, Ty); 2417 } 2418 } 2419 2420 // Skip past any other cast SCEVs. 2421 while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scAddExpr) 2422 ++Idx; 2423 2424 // If there are add operands they would be next. 2425 if (Idx < Ops.size()) { 2426 bool DeletedAdd = false; 2427 while (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Ops[Idx])) { 2428 if (Ops.size() > AddOpsInlineThreshold || 2429 Add->getNumOperands() > AddOpsInlineThreshold) 2430 break; 2431 // If we have an add, expand the add operands onto the end of the operands 2432 // list. 2433 Ops.erase(Ops.begin()+Idx); 2434 Ops.append(Add->op_begin(), Add->op_end()); 2435 DeletedAdd = true; 2436 } 2437 2438 // If we deleted at least one add, we added operands to the end of the list, 2439 // and they are not necessarily sorted. Recurse to resort and resimplify 2440 // any operands we just acquired. 2441 if (DeletedAdd) 2442 return getAddExpr(Ops, SCEV::FlagAnyWrap, Depth + 1); 2443 } 2444 2445 // Skip over the add expression until we get to a multiply. 2446 while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scMulExpr) 2447 ++Idx; 2448 2449 // Check to see if there are any folding opportunities present with 2450 // operands multiplied by constant values. 2451 if (Idx < Ops.size() && isa<SCEVMulExpr>(Ops[Idx])) { 2452 uint64_t BitWidth = getTypeSizeInBits(Ty); 2453 DenseMap<const SCEV *, APInt> M; 2454 SmallVector<const SCEV *, 8> NewOps; 2455 APInt AccumulatedConstant(BitWidth, 0); 2456 if (CollectAddOperandsWithScales(M, NewOps, AccumulatedConstant, 2457 Ops.data(), Ops.size(), 2458 APInt(BitWidth, 1), *this)) { 2459 struct APIntCompare { 2460 bool operator()(const APInt &LHS, const APInt &RHS) const { 2461 return LHS.ult(RHS); 2462 } 2463 }; 2464 2465 // Some interesting folding opportunity is present, so its worthwhile to 2466 // re-generate the operands list. Group the operands by constant scale, 2467 // to avoid multiplying by the same constant scale multiple times. 2468 std::map<APInt, SmallVector<const SCEV *, 4>, APIntCompare> MulOpLists; 2469 for (const SCEV *NewOp : NewOps) 2470 MulOpLists[M.find(NewOp)->second].push_back(NewOp); 2471 // Re-generate the operands list. 2472 Ops.clear(); 2473 if (AccumulatedConstant != 0) 2474 Ops.push_back(getConstant(AccumulatedConstant)); 2475 for (auto &MulOp : MulOpLists) 2476 if (MulOp.first != 0) 2477 Ops.push_back(getMulExpr( 2478 getConstant(MulOp.first), 2479 getAddExpr(MulOp.second, SCEV::FlagAnyWrap, Depth + 1), 2480 SCEV::FlagAnyWrap, Depth + 1)); 2481 if (Ops.empty()) 2482 return getZero(Ty); 2483 if (Ops.size() == 1) 2484 return Ops[0]; 2485 return getAddExpr(Ops, SCEV::FlagAnyWrap, Depth + 1); 2486 } 2487 } 2488 2489 // If we are adding something to a multiply expression, make sure the 2490 // something is not already an operand of the multiply. If so, merge it into 2491 // the multiply. 2492 for (; Idx < Ops.size() && isa<SCEVMulExpr>(Ops[Idx]); ++Idx) { 2493 const SCEVMulExpr *Mul = cast<SCEVMulExpr>(Ops[Idx]); 2494 for (unsigned MulOp = 0, e = Mul->getNumOperands(); MulOp != e; ++MulOp) { 2495 const SCEV *MulOpSCEV = Mul->getOperand(MulOp); 2496 if (isa<SCEVConstant>(MulOpSCEV)) 2497 continue; 2498 for (unsigned AddOp = 0, e = Ops.size(); AddOp != e; ++AddOp) 2499 if (MulOpSCEV == Ops[AddOp]) { 2500 // Fold W + X + (X * Y * Z) --> W + (X * ((Y*Z)+1)) 2501 const SCEV *InnerMul = Mul->getOperand(MulOp == 0); 2502 if (Mul->getNumOperands() != 2) { 2503 // If the multiply has more than two operands, we must get the 2504 // Y*Z term. 2505 SmallVector<const SCEV *, 4> MulOps(Mul->op_begin(), 2506 Mul->op_begin()+MulOp); 2507 MulOps.append(Mul->op_begin()+MulOp+1, Mul->op_end()); 2508 InnerMul = getMulExpr(MulOps, SCEV::FlagAnyWrap, Depth + 1); 2509 } 2510 SmallVector<const SCEV *, 2> TwoOps = {getOne(Ty), InnerMul}; 2511 const SCEV *AddOne = getAddExpr(TwoOps, SCEV::FlagAnyWrap, Depth + 1); 2512 const SCEV *OuterMul = getMulExpr(AddOne, MulOpSCEV, 2513 SCEV::FlagAnyWrap, Depth + 1); 2514 if (Ops.size() == 2) return OuterMul; 2515 if (AddOp < Idx) { 2516 Ops.erase(Ops.begin()+AddOp); 2517 Ops.erase(Ops.begin()+Idx-1); 2518 } else { 2519 Ops.erase(Ops.begin()+Idx); 2520 Ops.erase(Ops.begin()+AddOp-1); 2521 } 2522 Ops.push_back(OuterMul); 2523 return getAddExpr(Ops, SCEV::FlagAnyWrap, Depth + 1); 2524 } 2525 2526 // Check this multiply against other multiplies being added together. 2527 for (unsigned OtherMulIdx = Idx+1; 2528 OtherMulIdx < Ops.size() && isa<SCEVMulExpr>(Ops[OtherMulIdx]); 2529 ++OtherMulIdx) { 2530 const SCEVMulExpr *OtherMul = cast<SCEVMulExpr>(Ops[OtherMulIdx]); 2531 // If MulOp occurs in OtherMul, we can fold the two multiplies 2532 // together. 2533 for (unsigned OMulOp = 0, e = OtherMul->getNumOperands(); 2534 OMulOp != e; ++OMulOp) 2535 if (OtherMul->getOperand(OMulOp) == MulOpSCEV) { 2536 // Fold X + (A*B*C) + (A*D*E) --> X + (A*(B*C+D*E)) 2537 const SCEV *InnerMul1 = Mul->getOperand(MulOp == 0); 2538 if (Mul->getNumOperands() != 2) { 2539 SmallVector<const SCEV *, 4> MulOps(Mul->op_begin(), 2540 Mul->op_begin()+MulOp); 2541 MulOps.append(Mul->op_begin()+MulOp+1, Mul->op_end()); 2542 InnerMul1 = getMulExpr(MulOps, SCEV::FlagAnyWrap, Depth + 1); 2543 } 2544 const SCEV *InnerMul2 = OtherMul->getOperand(OMulOp == 0); 2545 if (OtherMul->getNumOperands() != 2) { 2546 SmallVector<const SCEV *, 4> MulOps(OtherMul->op_begin(), 2547 OtherMul->op_begin()+OMulOp); 2548 MulOps.append(OtherMul->op_begin()+OMulOp+1, OtherMul->op_end()); 2549 InnerMul2 = getMulExpr(MulOps, SCEV::FlagAnyWrap, Depth + 1); 2550 } 2551 SmallVector<const SCEV *, 2> TwoOps = {InnerMul1, InnerMul2}; 2552 const SCEV *InnerMulSum = 2553 getAddExpr(TwoOps, SCEV::FlagAnyWrap, Depth + 1); 2554 const SCEV *OuterMul = getMulExpr(MulOpSCEV, InnerMulSum, 2555 SCEV::FlagAnyWrap, Depth + 1); 2556 if (Ops.size() == 2) return OuterMul; 2557 Ops.erase(Ops.begin()+Idx); 2558 Ops.erase(Ops.begin()+OtherMulIdx-1); 2559 Ops.push_back(OuterMul); 2560 return getAddExpr(Ops, SCEV::FlagAnyWrap, Depth + 1); 2561 } 2562 } 2563 } 2564 } 2565 2566 // If there are any add recurrences in the operands list, see if any other 2567 // added values are loop invariant. If so, we can fold them into the 2568 // recurrence. 2569 while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scAddRecExpr) 2570 ++Idx; 2571 2572 // Scan over all recurrences, trying to fold loop invariants into them. 2573 for (; Idx < Ops.size() && isa<SCEVAddRecExpr>(Ops[Idx]); ++Idx) { 2574 // Scan all of the other operands to this add and add them to the vector if 2575 // they are loop invariant w.r.t. the recurrence. 2576 SmallVector<const SCEV *, 8> LIOps; 2577 const SCEVAddRecExpr *AddRec = cast<SCEVAddRecExpr>(Ops[Idx]); 2578 const Loop *AddRecLoop = AddRec->getLoop(); 2579 for (unsigned i = 0, e = Ops.size(); i != e; ++i) 2580 if (isAvailableAtLoopEntry(Ops[i], AddRecLoop)) { 2581 LIOps.push_back(Ops[i]); 2582 Ops.erase(Ops.begin()+i); 2583 --i; --e; 2584 } 2585 2586 // If we found some loop invariants, fold them into the recurrence. 2587 if (!LIOps.empty()) { 2588 // NLI + LI + {Start,+,Step} --> NLI + {LI+Start,+,Step} 2589 LIOps.push_back(AddRec->getStart()); 2590 2591 SmallVector<const SCEV *, 4> AddRecOps(AddRec->op_begin(), 2592 AddRec->op_end()); 2593 // This follows from the fact that the no-wrap flags on the outer add 2594 // expression are applicable on the 0th iteration, when the add recurrence 2595 // will be equal to its start value. 2596 AddRecOps[0] = getAddExpr(LIOps, Flags, Depth + 1); 2597 2598 // Build the new addrec. Propagate the NUW and NSW flags if both the 2599 // outer add and the inner addrec are guaranteed to have no overflow. 2600 // Always propagate NW. 2601 Flags = AddRec->getNoWrapFlags(setFlags(Flags, SCEV::FlagNW)); 2602 const SCEV *NewRec = getAddRecExpr(AddRecOps, AddRecLoop, Flags); 2603 2604 // If all of the other operands were loop invariant, we are done. 2605 if (Ops.size() == 1) return NewRec; 2606 2607 // Otherwise, add the folded AddRec by the non-invariant parts. 2608 for (unsigned i = 0;; ++i) 2609 if (Ops[i] == AddRec) { 2610 Ops[i] = NewRec; 2611 break; 2612 } 2613 return getAddExpr(Ops, SCEV::FlagAnyWrap, Depth + 1); 2614 } 2615 2616 // Okay, if there weren't any loop invariants to be folded, check to see if 2617 // there are multiple AddRec's with the same loop induction variable being 2618 // added together. If so, we can fold them. 2619 for (unsigned OtherIdx = Idx+1; 2620 OtherIdx < Ops.size() && isa<SCEVAddRecExpr>(Ops[OtherIdx]); 2621 ++OtherIdx) { 2622 // We expect the AddRecExpr's to be sorted in reverse dominance order, 2623 // so that the 1st found AddRecExpr is dominated by all others. 2624 assert(DT.dominates( 2625 cast<SCEVAddRecExpr>(Ops[OtherIdx])->getLoop()->getHeader(), 2626 AddRec->getLoop()->getHeader()) && 2627 "AddRecExprs are not sorted in reverse dominance order?"); 2628 if (AddRecLoop == cast<SCEVAddRecExpr>(Ops[OtherIdx])->getLoop()) { 2629 // Other + {A,+,B}<L> + {C,+,D}<L> --> Other + {A+C,+,B+D}<L> 2630 SmallVector<const SCEV *, 4> AddRecOps(AddRec->op_begin(), 2631 AddRec->op_end()); 2632 for (; OtherIdx != Ops.size() && isa<SCEVAddRecExpr>(Ops[OtherIdx]); 2633 ++OtherIdx) { 2634 const auto *OtherAddRec = cast<SCEVAddRecExpr>(Ops[OtherIdx]); 2635 if (OtherAddRec->getLoop() == AddRecLoop) { 2636 for (unsigned i = 0, e = OtherAddRec->getNumOperands(); 2637 i != e; ++i) { 2638 if (i >= AddRecOps.size()) { 2639 AddRecOps.append(OtherAddRec->op_begin()+i, 2640 OtherAddRec->op_end()); 2641 break; 2642 } 2643 SmallVector<const SCEV *, 2> TwoOps = { 2644 AddRecOps[i], OtherAddRec->getOperand(i)}; 2645 AddRecOps[i] = getAddExpr(TwoOps, SCEV::FlagAnyWrap, Depth + 1); 2646 } 2647 Ops.erase(Ops.begin() + OtherIdx); --OtherIdx; 2648 } 2649 } 2650 // Step size has changed, so we cannot guarantee no self-wraparound. 2651 Ops[Idx] = getAddRecExpr(AddRecOps, AddRecLoop, SCEV::FlagAnyWrap); 2652 return getAddExpr(Ops, SCEV::FlagAnyWrap, Depth + 1); 2653 } 2654 } 2655 2656 // Otherwise couldn't fold anything into this recurrence. Move onto the 2657 // next one. 2658 } 2659 2660 // Okay, it looks like we really DO need an add expr. Check to see if we 2661 // already have one, otherwise create a new one. 2662 return getOrCreateAddExpr(Ops, Flags); 2663 } 2664 2665 const SCEV * 2666 ScalarEvolution::getOrCreateAddExpr(SmallVectorImpl<const SCEV *> &Ops, 2667 SCEV::NoWrapFlags Flags) { 2668 FoldingSetNodeID ID; 2669 ID.AddInteger(scAddExpr); 2670 for (const SCEV *Op : Ops) 2671 ID.AddPointer(Op); 2672 void *IP = nullptr; 2673 SCEVAddExpr *S = 2674 static_cast<SCEVAddExpr *>(UniqueSCEVs.FindNodeOrInsertPos(ID, IP)); 2675 if (!S) { 2676 const SCEV **O = SCEVAllocator.Allocate<const SCEV *>(Ops.size()); 2677 std::uninitialized_copy(Ops.begin(), Ops.end(), O); 2678 S = new (SCEVAllocator) 2679 SCEVAddExpr(ID.Intern(SCEVAllocator), O, Ops.size()); 2680 UniqueSCEVs.InsertNode(S, IP); 2681 addToLoopUseLists(S); 2682 } 2683 S->setNoWrapFlags(Flags); 2684 return S; 2685 } 2686 2687 const SCEV * 2688 ScalarEvolution::getOrCreateMulExpr(SmallVectorImpl<const SCEV *> &Ops, 2689 SCEV::NoWrapFlags Flags) { 2690 FoldingSetNodeID ID; 2691 ID.AddInteger(scMulExpr); 2692 for (unsigned i = 0, e = Ops.size(); i != e; ++i) 2693 ID.AddPointer(Ops[i]); 2694 void *IP = nullptr; 2695 SCEVMulExpr *S = 2696 static_cast<SCEVMulExpr *>(UniqueSCEVs.FindNodeOrInsertPos(ID, IP)); 2697 if (!S) { 2698 const SCEV **O = SCEVAllocator.Allocate<const SCEV *>(Ops.size()); 2699 std::uninitialized_copy(Ops.begin(), Ops.end(), O); 2700 S = new (SCEVAllocator) SCEVMulExpr(ID.Intern(SCEVAllocator), 2701 O, Ops.size()); 2702 UniqueSCEVs.InsertNode(S, IP); 2703 addToLoopUseLists(S); 2704 } 2705 S->setNoWrapFlags(Flags); 2706 return S; 2707 } 2708 2709 static uint64_t umul_ov(uint64_t i, uint64_t j, bool &Overflow) { 2710 uint64_t k = i*j; 2711 if (j > 1 && k / j != i) Overflow = true; 2712 return k; 2713 } 2714 2715 /// Compute the result of "n choose k", the binomial coefficient. If an 2716 /// intermediate computation overflows, Overflow will be set and the return will 2717 /// be garbage. Overflow is not cleared on absence of overflow. 2718 static uint64_t Choose(uint64_t n, uint64_t k, bool &Overflow) { 2719 // We use the multiplicative formula: 2720 // n(n-1)(n-2)...(n-(k-1)) / k(k-1)(k-2)...1 . 2721 // At each iteration, we take the n-th term of the numeral and divide by the 2722 // (k-n)th term of the denominator. This division will always produce an 2723 // integral result, and helps reduce the chance of overflow in the 2724 // intermediate computations. However, we can still overflow even when the 2725 // final result would fit. 2726 2727 if (n == 0 || n == k) return 1; 2728 if (k > n) return 0; 2729 2730 if (k > n/2) 2731 k = n-k; 2732 2733 uint64_t r = 1; 2734 for (uint64_t i = 1; i <= k; ++i) { 2735 r = umul_ov(r, n-(i-1), Overflow); 2736 r /= i; 2737 } 2738 return r; 2739 } 2740 2741 /// Determine if any of the operands in this SCEV are a constant or if 2742 /// any of the add or multiply expressions in this SCEV contain a constant. 2743 static bool containsConstantInAddMulChain(const SCEV *StartExpr) { 2744 struct FindConstantInAddMulChain { 2745 bool FoundConstant = false; 2746 2747 bool follow(const SCEV *S) { 2748 FoundConstant |= isa<SCEVConstant>(S); 2749 return isa<SCEVAddExpr>(S) || isa<SCEVMulExpr>(S); 2750 } 2751 2752 bool isDone() const { 2753 return FoundConstant; 2754 } 2755 }; 2756 2757 FindConstantInAddMulChain F; 2758 SCEVTraversal<FindConstantInAddMulChain> ST(F); 2759 ST.visitAll(StartExpr); 2760 return F.FoundConstant; 2761 } 2762 2763 /// Get a canonical multiply expression, or something simpler if possible. 2764 const SCEV *ScalarEvolution::getMulExpr(SmallVectorImpl<const SCEV *> &Ops, 2765 SCEV::NoWrapFlags Flags, 2766 unsigned Depth) { 2767 assert(Flags == maskFlags(Flags, SCEV::FlagNUW | SCEV::FlagNSW) && 2768 "only nuw or nsw allowed"); 2769 assert(!Ops.empty() && "Cannot get empty mul!"); 2770 if (Ops.size() == 1) return Ops[0]; 2771 #ifndef NDEBUG 2772 Type *ETy = getEffectiveSCEVType(Ops[0]->getType()); 2773 for (unsigned i = 1, e = Ops.size(); i != e; ++i) 2774 assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy && 2775 "SCEVMulExpr operand types don't match!"); 2776 #endif 2777 2778 // Sort by complexity, this groups all similar expression types together. 2779 GroupByComplexity(Ops, &LI, DT); 2780 2781 Flags = StrengthenNoWrapFlags(this, scMulExpr, Ops, Flags); 2782 2783 // Limit recursion calls depth. 2784 if (Depth > MaxArithDepth) 2785 return getOrCreateMulExpr(Ops, Flags); 2786 2787 // If there are any constants, fold them together. 2788 unsigned Idx = 0; 2789 if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(Ops[0])) { 2790 2791 // C1*(C2+V) -> C1*C2 + C1*V 2792 if (Ops.size() == 2) 2793 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Ops[1])) 2794 // If any of Add's ops are Adds or Muls with a constant, 2795 // apply this transformation as well. 2796 if (Add->getNumOperands() == 2) 2797 // TODO: There are some cases where this transformation is not 2798 // profitable, for example: 2799 // Add = (C0 + X) * Y + Z. 2800 // Maybe the scope of this transformation should be narrowed down. 2801 if (containsConstantInAddMulChain(Add)) 2802 return getAddExpr(getMulExpr(LHSC, Add->getOperand(0), 2803 SCEV::FlagAnyWrap, Depth + 1), 2804 getMulExpr(LHSC, Add->getOperand(1), 2805 SCEV::FlagAnyWrap, Depth + 1), 2806 SCEV::FlagAnyWrap, Depth + 1); 2807 2808 ++Idx; 2809 while (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(Ops[Idx])) { 2810 // We found two constants, fold them together! 2811 ConstantInt *Fold = 2812 ConstantInt::get(getContext(), LHSC->getAPInt() * RHSC->getAPInt()); 2813 Ops[0] = getConstant(Fold); 2814 Ops.erase(Ops.begin()+1); // Erase the folded element 2815 if (Ops.size() == 1) return Ops[0]; 2816 LHSC = cast<SCEVConstant>(Ops[0]); 2817 } 2818 2819 // If we are left with a constant one being multiplied, strip it off. 2820 if (cast<SCEVConstant>(Ops[0])->getValue()->isOne()) { 2821 Ops.erase(Ops.begin()); 2822 --Idx; 2823 } else if (cast<SCEVConstant>(Ops[0])->getValue()->isZero()) { 2824 // If we have a multiply of zero, it will always be zero. 2825 return Ops[0]; 2826 } else if (Ops[0]->isAllOnesValue()) { 2827 // If we have a mul by -1 of an add, try distributing the -1 among the 2828 // add operands. 2829 if (Ops.size() == 2) { 2830 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Ops[1])) { 2831 SmallVector<const SCEV *, 4> NewOps; 2832 bool AnyFolded = false; 2833 for (const SCEV *AddOp : Add->operands()) { 2834 const SCEV *Mul = getMulExpr(Ops[0], AddOp, SCEV::FlagAnyWrap, 2835 Depth + 1); 2836 if (!isa<SCEVMulExpr>(Mul)) AnyFolded = true; 2837 NewOps.push_back(Mul); 2838 } 2839 if (AnyFolded) 2840 return getAddExpr(NewOps, SCEV::FlagAnyWrap, Depth + 1); 2841 } else if (const auto *AddRec = dyn_cast<SCEVAddRecExpr>(Ops[1])) { 2842 // Negation preserves a recurrence's no self-wrap property. 2843 SmallVector<const SCEV *, 4> Operands; 2844 for (const SCEV *AddRecOp : AddRec->operands()) 2845 Operands.push_back(getMulExpr(Ops[0], AddRecOp, SCEV::FlagAnyWrap, 2846 Depth + 1)); 2847 2848 return getAddRecExpr(Operands, AddRec->getLoop(), 2849 AddRec->getNoWrapFlags(SCEV::FlagNW)); 2850 } 2851 } 2852 } 2853 2854 if (Ops.size() == 1) 2855 return Ops[0]; 2856 } 2857 2858 // Skip over the add expression until we get to a multiply. 2859 while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scMulExpr) 2860 ++Idx; 2861 2862 // If there are mul operands inline them all into this expression. 2863 if (Idx < Ops.size()) { 2864 bool DeletedMul = false; 2865 while (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(Ops[Idx])) { 2866 if (Ops.size() > MulOpsInlineThreshold) 2867 break; 2868 // If we have an mul, expand the mul operands onto the end of the 2869 // operands list. 2870 Ops.erase(Ops.begin()+Idx); 2871 Ops.append(Mul->op_begin(), Mul->op_end()); 2872 DeletedMul = true; 2873 } 2874 2875 // If we deleted at least one mul, we added operands to the end of the 2876 // list, and they are not necessarily sorted. Recurse to resort and 2877 // resimplify any operands we just acquired. 2878 if (DeletedMul) 2879 return getMulExpr(Ops, SCEV::FlagAnyWrap, Depth + 1); 2880 } 2881 2882 // If there are any add recurrences in the operands list, see if any other 2883 // added values are loop invariant. If so, we can fold them into the 2884 // recurrence. 2885 while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scAddRecExpr) 2886 ++Idx; 2887 2888 // Scan over all recurrences, trying to fold loop invariants into them. 2889 for (; Idx < Ops.size() && isa<SCEVAddRecExpr>(Ops[Idx]); ++Idx) { 2890 // Scan all of the other operands to this mul and add them to the vector 2891 // if they are loop invariant w.r.t. the recurrence. 2892 SmallVector<const SCEV *, 8> LIOps; 2893 const SCEVAddRecExpr *AddRec = cast<SCEVAddRecExpr>(Ops[Idx]); 2894 const Loop *AddRecLoop = AddRec->getLoop(); 2895 for (unsigned i = 0, e = Ops.size(); i != e; ++i) 2896 if (isAvailableAtLoopEntry(Ops[i], AddRecLoop)) { 2897 LIOps.push_back(Ops[i]); 2898 Ops.erase(Ops.begin()+i); 2899 --i; --e; 2900 } 2901 2902 // If we found some loop invariants, fold them into the recurrence. 2903 if (!LIOps.empty()) { 2904 // NLI * LI * {Start,+,Step} --> NLI * {LI*Start,+,LI*Step} 2905 SmallVector<const SCEV *, 4> NewOps; 2906 NewOps.reserve(AddRec->getNumOperands()); 2907 const SCEV *Scale = getMulExpr(LIOps, SCEV::FlagAnyWrap, Depth + 1); 2908 for (unsigned i = 0, e = AddRec->getNumOperands(); i != e; ++i) 2909 NewOps.push_back(getMulExpr(Scale, AddRec->getOperand(i), 2910 SCEV::FlagAnyWrap, Depth + 1)); 2911 2912 // Build the new addrec. Propagate the NUW and NSW flags if both the 2913 // outer mul and the inner addrec are guaranteed to have no overflow. 2914 // 2915 // No self-wrap cannot be guaranteed after changing the step size, but 2916 // will be inferred if either NUW or NSW is true. 2917 Flags = AddRec->getNoWrapFlags(clearFlags(Flags, SCEV::FlagNW)); 2918 const SCEV *NewRec = getAddRecExpr(NewOps, AddRecLoop, Flags); 2919 2920 // If all of the other operands were loop invariant, we are done. 2921 if (Ops.size() == 1) return NewRec; 2922 2923 // Otherwise, multiply the folded AddRec by the non-invariant parts. 2924 for (unsigned i = 0;; ++i) 2925 if (Ops[i] == AddRec) { 2926 Ops[i] = NewRec; 2927 break; 2928 } 2929 return getMulExpr(Ops, SCEV::FlagAnyWrap, Depth + 1); 2930 } 2931 2932 // Okay, if there weren't any loop invariants to be folded, check to see 2933 // if there are multiple AddRec's with the same loop induction variable 2934 // being multiplied together. If so, we can fold them. 2935 2936 // {A1,+,A2,+,...,+,An}<L> * {B1,+,B2,+,...,+,Bn}<L> 2937 // = {x=1 in [ sum y=x..2x [ sum z=max(y-x, y-n)..min(x,n) [ 2938 // choose(x, 2x)*choose(2x-y, x-z)*A_{y-z}*B_z 2939 // ]]],+,...up to x=2n}. 2940 // Note that the arguments to choose() are always integers with values 2941 // known at compile time, never SCEV objects. 2942 // 2943 // The implementation avoids pointless extra computations when the two 2944 // addrec's are of different length (mathematically, it's equivalent to 2945 // an infinite stream of zeros on the right). 2946 bool OpsModified = false; 2947 for (unsigned OtherIdx = Idx+1; 2948 OtherIdx != Ops.size() && isa<SCEVAddRecExpr>(Ops[OtherIdx]); 2949 ++OtherIdx) { 2950 const SCEVAddRecExpr *OtherAddRec = 2951 dyn_cast<SCEVAddRecExpr>(Ops[OtherIdx]); 2952 if (!OtherAddRec || OtherAddRec->getLoop() != AddRecLoop) 2953 continue; 2954 2955 // Limit max number of arguments to avoid creation of unreasonably big 2956 // SCEVAddRecs with very complex operands. 2957 if (AddRec->getNumOperands() + OtherAddRec->getNumOperands() - 1 > 2958 MaxAddRecSize) 2959 continue; 2960 2961 bool Overflow = false; 2962 Type *Ty = AddRec->getType(); 2963 bool LargerThan64Bits = getTypeSizeInBits(Ty) > 64; 2964 SmallVector<const SCEV*, 7> AddRecOps; 2965 for (int x = 0, xe = AddRec->getNumOperands() + 2966 OtherAddRec->getNumOperands() - 1; x != xe && !Overflow; ++x) { 2967 const SCEV *Term = getZero(Ty); 2968 for (int y = x, ye = 2*x+1; y != ye && !Overflow; ++y) { 2969 uint64_t Coeff1 = Choose(x, 2*x - y, Overflow); 2970 for (int z = std::max(y-x, y-(int)AddRec->getNumOperands()+1), 2971 ze = std::min(x+1, (int)OtherAddRec->getNumOperands()); 2972 z < ze && !Overflow; ++z) { 2973 uint64_t Coeff2 = Choose(2*x - y, x-z, Overflow); 2974 uint64_t Coeff; 2975 if (LargerThan64Bits) 2976 Coeff = umul_ov(Coeff1, Coeff2, Overflow); 2977 else 2978 Coeff = Coeff1*Coeff2; 2979 const SCEV *CoeffTerm = getConstant(Ty, Coeff); 2980 const SCEV *Term1 = AddRec->getOperand(y-z); 2981 const SCEV *Term2 = OtherAddRec->getOperand(z); 2982 Term = getAddExpr(Term, getMulExpr(CoeffTerm, Term1, Term2, 2983 SCEV::FlagAnyWrap, Depth + 1), 2984 SCEV::FlagAnyWrap, Depth + 1); 2985 } 2986 } 2987 AddRecOps.push_back(Term); 2988 } 2989 if (!Overflow) { 2990 const SCEV *NewAddRec = getAddRecExpr(AddRecOps, AddRec->getLoop(), 2991 SCEV::FlagAnyWrap); 2992 if (Ops.size() == 2) return NewAddRec; 2993 Ops[Idx] = NewAddRec; 2994 Ops.erase(Ops.begin() + OtherIdx); --OtherIdx; 2995 OpsModified = true; 2996 AddRec = dyn_cast<SCEVAddRecExpr>(NewAddRec); 2997 if (!AddRec) 2998 break; 2999 } 3000 } 3001 if (OpsModified) 3002 return getMulExpr(Ops, SCEV::FlagAnyWrap, Depth + 1); 3003 3004 // Otherwise couldn't fold anything into this recurrence. Move onto the 3005 // next one. 3006 } 3007 3008 // Okay, it looks like we really DO need an mul expr. Check to see if we 3009 // already have one, otherwise create a new one. 3010 return getOrCreateMulExpr(Ops, Flags); 3011 } 3012 3013 /// Represents an unsigned remainder expression based on unsigned division. 3014 const SCEV *ScalarEvolution::getURemExpr(const SCEV *LHS, 3015 const SCEV *RHS) { 3016 assert(getEffectiveSCEVType(LHS->getType()) == 3017 getEffectiveSCEVType(RHS->getType()) && 3018 "SCEVURemExpr operand types don't match!"); 3019 3020 // Short-circuit easy cases 3021 if (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(RHS)) { 3022 // If constant is one, the result is trivial 3023 if (RHSC->getValue()->isOne()) 3024 return getZero(LHS->getType()); // X urem 1 --> 0 3025 3026 // If constant is a power of two, fold into a zext(trunc(LHS)). 3027 if (RHSC->getAPInt().isPowerOf2()) { 3028 Type *FullTy = LHS->getType(); 3029 Type *TruncTy = 3030 IntegerType::get(getContext(), RHSC->getAPInt().logBase2()); 3031 return getZeroExtendExpr(getTruncateExpr(LHS, TruncTy), FullTy); 3032 } 3033 } 3034 3035 // Fallback to %a == %x urem %y == %x -<nuw> ((%x udiv %y) *<nuw> %y) 3036 const SCEV *UDiv = getUDivExpr(LHS, RHS); 3037 const SCEV *Mult = getMulExpr(UDiv, RHS, SCEV::FlagNUW); 3038 return getMinusSCEV(LHS, Mult, SCEV::FlagNUW); 3039 } 3040 3041 /// Get a canonical unsigned division expression, or something simpler if 3042 /// possible. 3043 const SCEV *ScalarEvolution::getUDivExpr(const SCEV *LHS, 3044 const SCEV *RHS) { 3045 assert(getEffectiveSCEVType(LHS->getType()) == 3046 getEffectiveSCEVType(RHS->getType()) && 3047 "SCEVUDivExpr operand types don't match!"); 3048 3049 if (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(RHS)) { 3050 if (RHSC->getValue()->isOne()) 3051 return LHS; // X udiv 1 --> x 3052 // If the denominator is zero, the result of the udiv is undefined. Don't 3053 // try to analyze it, because the resolution chosen here may differ from 3054 // the resolution chosen in other parts of the compiler. 3055 if (!RHSC->getValue()->isZero()) { 3056 // Determine if the division can be folded into the operands of 3057 // its operands. 3058 // TODO: Generalize this to non-constants by using known-bits information. 3059 Type *Ty = LHS->getType(); 3060 unsigned LZ = RHSC->getAPInt().countLeadingZeros(); 3061 unsigned MaxShiftAmt = getTypeSizeInBits(Ty) - LZ - 1; 3062 // For non-power-of-two values, effectively round the value up to the 3063 // nearest power of two. 3064 if (!RHSC->getAPInt().isPowerOf2()) 3065 ++MaxShiftAmt; 3066 IntegerType *ExtTy = 3067 IntegerType::get(getContext(), getTypeSizeInBits(Ty) + MaxShiftAmt); 3068 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS)) 3069 if (const SCEVConstant *Step = 3070 dyn_cast<SCEVConstant>(AR->getStepRecurrence(*this))) { 3071 // {X,+,N}/C --> {X/C,+,N/C} if safe and N/C can be folded. 3072 const APInt &StepInt = Step->getAPInt(); 3073 const APInt &DivInt = RHSC->getAPInt(); 3074 if (!StepInt.urem(DivInt) && 3075 getZeroExtendExpr(AR, ExtTy) == 3076 getAddRecExpr(getZeroExtendExpr(AR->getStart(), ExtTy), 3077 getZeroExtendExpr(Step, ExtTy), 3078 AR->getLoop(), SCEV::FlagAnyWrap)) { 3079 SmallVector<const SCEV *, 4> Operands; 3080 for (const SCEV *Op : AR->operands()) 3081 Operands.push_back(getUDivExpr(Op, RHS)); 3082 return getAddRecExpr(Operands, AR->getLoop(), SCEV::FlagNW); 3083 } 3084 /// Get a canonical UDivExpr for a recurrence. 3085 /// {X,+,N}/C => {Y,+,N}/C where Y=X-(X%N). Safe when C%N=0. 3086 // We can currently only fold X%N if X is constant. 3087 const SCEVConstant *StartC = dyn_cast<SCEVConstant>(AR->getStart()); 3088 if (StartC && !DivInt.urem(StepInt) && 3089 getZeroExtendExpr(AR, ExtTy) == 3090 getAddRecExpr(getZeroExtendExpr(AR->getStart(), ExtTy), 3091 getZeroExtendExpr(Step, ExtTy), 3092 AR->getLoop(), SCEV::FlagAnyWrap)) { 3093 const APInt &StartInt = StartC->getAPInt(); 3094 const APInt &StartRem = StartInt.urem(StepInt); 3095 if (StartRem != 0) 3096 LHS = getAddRecExpr(getConstant(StartInt - StartRem), Step, 3097 AR->getLoop(), SCEV::FlagNW); 3098 } 3099 } 3100 // (A*B)/C --> A*(B/C) if safe and B/C can be folded. 3101 if (const SCEVMulExpr *M = dyn_cast<SCEVMulExpr>(LHS)) { 3102 SmallVector<const SCEV *, 4> Operands; 3103 for (const SCEV *Op : M->operands()) 3104 Operands.push_back(getZeroExtendExpr(Op, ExtTy)); 3105 if (getZeroExtendExpr(M, ExtTy) == getMulExpr(Operands)) 3106 // Find an operand that's safely divisible. 3107 for (unsigned i = 0, e = M->getNumOperands(); i != e; ++i) { 3108 const SCEV *Op = M->getOperand(i); 3109 const SCEV *Div = getUDivExpr(Op, RHSC); 3110 if (!isa<SCEVUDivExpr>(Div) && getMulExpr(Div, RHSC) == Op) { 3111 Operands = SmallVector<const SCEV *, 4>(M->op_begin(), 3112 M->op_end()); 3113 Operands[i] = Div; 3114 return getMulExpr(Operands); 3115 } 3116 } 3117 } 3118 // (A+B)/C --> (A/C + B/C) if safe and A/C and B/C can be folded. 3119 if (const SCEVAddExpr *A = dyn_cast<SCEVAddExpr>(LHS)) { 3120 SmallVector<const SCEV *, 4> Operands; 3121 for (const SCEV *Op : A->operands()) 3122 Operands.push_back(getZeroExtendExpr(Op, ExtTy)); 3123 if (getZeroExtendExpr(A, ExtTy) == getAddExpr(Operands)) { 3124 Operands.clear(); 3125 for (unsigned i = 0, e = A->getNumOperands(); i != e; ++i) { 3126 const SCEV *Op = getUDivExpr(A->getOperand(i), RHS); 3127 if (isa<SCEVUDivExpr>(Op) || 3128 getMulExpr(Op, RHS) != A->getOperand(i)) 3129 break; 3130 Operands.push_back(Op); 3131 } 3132 if (Operands.size() == A->getNumOperands()) 3133 return getAddExpr(Operands); 3134 } 3135 } 3136 3137 // Fold if both operands are constant. 3138 if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(LHS)) { 3139 Constant *LHSCV = LHSC->getValue(); 3140 Constant *RHSCV = RHSC->getValue(); 3141 return getConstant(cast<ConstantInt>(ConstantExpr::getUDiv(LHSCV, 3142 RHSCV))); 3143 } 3144 } 3145 } 3146 3147 FoldingSetNodeID ID; 3148 ID.AddInteger(scUDivExpr); 3149 ID.AddPointer(LHS); 3150 ID.AddPointer(RHS); 3151 void *IP = nullptr; 3152 if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S; 3153 SCEV *S = new (SCEVAllocator) SCEVUDivExpr(ID.Intern(SCEVAllocator), 3154 LHS, RHS); 3155 UniqueSCEVs.InsertNode(S, IP); 3156 addToLoopUseLists(S); 3157 return S; 3158 } 3159 3160 static const APInt gcd(const SCEVConstant *C1, const SCEVConstant *C2) { 3161 APInt A = C1->getAPInt().abs(); 3162 APInt B = C2->getAPInt().abs(); 3163 uint32_t ABW = A.getBitWidth(); 3164 uint32_t BBW = B.getBitWidth(); 3165 3166 if (ABW > BBW) 3167 B = B.zext(ABW); 3168 else if (ABW < BBW) 3169 A = A.zext(BBW); 3170 3171 return APIntOps::GreatestCommonDivisor(std::move(A), std::move(B)); 3172 } 3173 3174 /// Get a canonical unsigned division expression, or something simpler if 3175 /// possible. There is no representation for an exact udiv in SCEV IR, but we 3176 /// can attempt to remove factors from the LHS and RHS. We can't do this when 3177 /// it's not exact because the udiv may be clearing bits. 3178 const SCEV *ScalarEvolution::getUDivExactExpr(const SCEV *LHS, 3179 const SCEV *RHS) { 3180 // TODO: we could try to find factors in all sorts of things, but for now we 3181 // just deal with u/exact (multiply, constant). See SCEVDivision towards the 3182 // end of this file for inspiration. 3183 3184 const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(LHS); 3185 if (!Mul || !Mul->hasNoUnsignedWrap()) 3186 return getUDivExpr(LHS, RHS); 3187 3188 if (const SCEVConstant *RHSCst = dyn_cast<SCEVConstant>(RHS)) { 3189 // If the mulexpr multiplies by a constant, then that constant must be the 3190 // first element of the mulexpr. 3191 if (const auto *LHSCst = dyn_cast<SCEVConstant>(Mul->getOperand(0))) { 3192 if (LHSCst == RHSCst) { 3193 SmallVector<const SCEV *, 2> Operands; 3194 Operands.append(Mul->op_begin() + 1, Mul->op_end()); 3195 return getMulExpr(Operands); 3196 } 3197 3198 // We can't just assume that LHSCst divides RHSCst cleanly, it could be 3199 // that there's a factor provided by one of the other terms. We need to 3200 // check. 3201 APInt Factor = gcd(LHSCst, RHSCst); 3202 if (!Factor.isIntN(1)) { 3203 LHSCst = 3204 cast<SCEVConstant>(getConstant(LHSCst->getAPInt().udiv(Factor))); 3205 RHSCst = 3206 cast<SCEVConstant>(getConstant(RHSCst->getAPInt().udiv(Factor))); 3207 SmallVector<const SCEV *, 2> Operands; 3208 Operands.push_back(LHSCst); 3209 Operands.append(Mul->op_begin() + 1, Mul->op_end()); 3210 LHS = getMulExpr(Operands); 3211 RHS = RHSCst; 3212 Mul = dyn_cast<SCEVMulExpr>(LHS); 3213 if (!Mul) 3214 return getUDivExactExpr(LHS, RHS); 3215 } 3216 } 3217 } 3218 3219 for (int i = 0, e = Mul->getNumOperands(); i != e; ++i) { 3220 if (Mul->getOperand(i) == RHS) { 3221 SmallVector<const SCEV *, 2> Operands; 3222 Operands.append(Mul->op_begin(), Mul->op_begin() + i); 3223 Operands.append(Mul->op_begin() + i + 1, Mul->op_end()); 3224 return getMulExpr(Operands); 3225 } 3226 } 3227 3228 return getUDivExpr(LHS, RHS); 3229 } 3230 3231 /// Get an add recurrence expression for the specified loop. Simplify the 3232 /// expression as much as possible. 3233 const SCEV *ScalarEvolution::getAddRecExpr(const SCEV *Start, const SCEV *Step, 3234 const Loop *L, 3235 SCEV::NoWrapFlags Flags) { 3236 SmallVector<const SCEV *, 4> Operands; 3237 Operands.push_back(Start); 3238 if (const SCEVAddRecExpr *StepChrec = dyn_cast<SCEVAddRecExpr>(Step)) 3239 if (StepChrec->getLoop() == L) { 3240 Operands.append(StepChrec->op_begin(), StepChrec->op_end()); 3241 return getAddRecExpr(Operands, L, maskFlags(Flags, SCEV::FlagNW)); 3242 } 3243 3244 Operands.push_back(Step); 3245 return getAddRecExpr(Operands, L, Flags); 3246 } 3247 3248 /// Get an add recurrence expression for the specified loop. Simplify the 3249 /// expression as much as possible. 3250 const SCEV * 3251 ScalarEvolution::getAddRecExpr(SmallVectorImpl<const SCEV *> &Operands, 3252 const Loop *L, SCEV::NoWrapFlags Flags) { 3253 if (Operands.size() == 1) return Operands[0]; 3254 #ifndef NDEBUG 3255 Type *ETy = getEffectiveSCEVType(Operands[0]->getType()); 3256 for (unsigned i = 1, e = Operands.size(); i != e; ++i) 3257 assert(getEffectiveSCEVType(Operands[i]->getType()) == ETy && 3258 "SCEVAddRecExpr operand types don't match!"); 3259 for (unsigned i = 0, e = Operands.size(); i != e; ++i) 3260 assert(isLoopInvariant(Operands[i], L) && 3261 "SCEVAddRecExpr operand is not loop-invariant!"); 3262 #endif 3263 3264 if (Operands.back()->isZero()) { 3265 Operands.pop_back(); 3266 return getAddRecExpr(Operands, L, SCEV::FlagAnyWrap); // {X,+,0} --> X 3267 } 3268 3269 // It's tempting to want to call getMaxBackedgeTakenCount count here and 3270 // use that information to infer NUW and NSW flags. However, computing a 3271 // BE count requires calling getAddRecExpr, so we may not yet have a 3272 // meaningful BE count at this point (and if we don't, we'd be stuck 3273 // with a SCEVCouldNotCompute as the cached BE count). 3274 3275 Flags = StrengthenNoWrapFlags(this, scAddRecExpr, Operands, Flags); 3276 3277 // Canonicalize nested AddRecs in by nesting them in order of loop depth. 3278 if (const SCEVAddRecExpr *NestedAR = dyn_cast<SCEVAddRecExpr>(Operands[0])) { 3279 const Loop *NestedLoop = NestedAR->getLoop(); 3280 if (L->contains(NestedLoop) 3281 ? (L->getLoopDepth() < NestedLoop->getLoopDepth()) 3282 : (!NestedLoop->contains(L) && 3283 DT.dominates(L->getHeader(), NestedLoop->getHeader()))) { 3284 SmallVector<const SCEV *, 4> NestedOperands(NestedAR->op_begin(), 3285 NestedAR->op_end()); 3286 Operands[0] = NestedAR->getStart(); 3287 // AddRecs require their operands be loop-invariant with respect to their 3288 // loops. Don't perform this transformation if it would break this 3289 // requirement. 3290 bool AllInvariant = all_of( 3291 Operands, [&](const SCEV *Op) { return isLoopInvariant(Op, L); }); 3292 3293 if (AllInvariant) { 3294 // Create a recurrence for the outer loop with the same step size. 3295 // 3296 // The outer recurrence keeps its NW flag but only keeps NUW/NSW if the 3297 // inner recurrence has the same property. 3298 SCEV::NoWrapFlags OuterFlags = 3299 maskFlags(Flags, SCEV::FlagNW | NestedAR->getNoWrapFlags()); 3300 3301 NestedOperands[0] = getAddRecExpr(Operands, L, OuterFlags); 3302 AllInvariant = all_of(NestedOperands, [&](const SCEV *Op) { 3303 return isLoopInvariant(Op, NestedLoop); 3304 }); 3305 3306 if (AllInvariant) { 3307 // Ok, both add recurrences are valid after the transformation. 3308 // 3309 // The inner recurrence keeps its NW flag but only keeps NUW/NSW if 3310 // the outer recurrence has the same property. 3311 SCEV::NoWrapFlags InnerFlags = 3312 maskFlags(NestedAR->getNoWrapFlags(), SCEV::FlagNW | Flags); 3313 return getAddRecExpr(NestedOperands, NestedLoop, InnerFlags); 3314 } 3315 } 3316 // Reset Operands to its original state. 3317 Operands[0] = NestedAR; 3318 } 3319 } 3320 3321 // Okay, it looks like we really DO need an addrec expr. Check to see if we 3322 // already have one, otherwise create a new one. 3323 FoldingSetNodeID ID; 3324 ID.AddInteger(scAddRecExpr); 3325 for (unsigned i = 0, e = Operands.size(); i != e; ++i) 3326 ID.AddPointer(Operands[i]); 3327 ID.AddPointer(L); 3328 void *IP = nullptr; 3329 SCEVAddRecExpr *S = 3330 static_cast<SCEVAddRecExpr *>(UniqueSCEVs.FindNodeOrInsertPos(ID, IP)); 3331 if (!S) { 3332 const SCEV **O = SCEVAllocator.Allocate<const SCEV *>(Operands.size()); 3333 std::uninitialized_copy(Operands.begin(), Operands.end(), O); 3334 S = new (SCEVAllocator) SCEVAddRecExpr(ID.Intern(SCEVAllocator), 3335 O, Operands.size(), L); 3336 UniqueSCEVs.InsertNode(S, IP); 3337 addToLoopUseLists(S); 3338 } 3339 S->setNoWrapFlags(Flags); 3340 return S; 3341 } 3342 3343 const SCEV * 3344 ScalarEvolution::getGEPExpr(GEPOperator *GEP, 3345 const SmallVectorImpl<const SCEV *> &IndexExprs) { 3346 const SCEV *BaseExpr = getSCEV(GEP->getPointerOperand()); 3347 // getSCEV(Base)->getType() has the same address space as Base->getType() 3348 // because SCEV::getType() preserves the address space. 3349 Type *IntPtrTy = getEffectiveSCEVType(BaseExpr->getType()); 3350 // FIXME(PR23527): Don't blindly transfer the inbounds flag from the GEP 3351 // instruction to its SCEV, because the Instruction may be guarded by control 3352 // flow and the no-overflow bits may not be valid for the expression in any 3353 // context. This can be fixed similarly to how these flags are handled for 3354 // adds. 3355 SCEV::NoWrapFlags Wrap = GEP->isInBounds() ? SCEV::FlagNSW 3356 : SCEV::FlagAnyWrap; 3357 3358 const SCEV *TotalOffset = getZero(IntPtrTy); 3359 // The array size is unimportant. The first thing we do on CurTy is getting 3360 // its element type. 3361 Type *CurTy = ArrayType::get(GEP->getSourceElementType(), 0); 3362 for (const SCEV *IndexExpr : IndexExprs) { 3363 // Compute the (potentially symbolic) offset in bytes for this index. 3364 if (StructType *STy = dyn_cast<StructType>(CurTy)) { 3365 // For a struct, add the member offset. 3366 ConstantInt *Index = cast<SCEVConstant>(IndexExpr)->getValue(); 3367 unsigned FieldNo = Index->getZExtValue(); 3368 const SCEV *FieldOffset = getOffsetOfExpr(IntPtrTy, STy, FieldNo); 3369 3370 // Add the field offset to the running total offset. 3371 TotalOffset = getAddExpr(TotalOffset, FieldOffset); 3372 3373 // Update CurTy to the type of the field at Index. 3374 CurTy = STy->getTypeAtIndex(Index); 3375 } else { 3376 // Update CurTy to its element type. 3377 CurTy = cast<SequentialType>(CurTy)->getElementType(); 3378 // For an array, add the element offset, explicitly scaled. 3379 const SCEV *ElementSize = getSizeOfExpr(IntPtrTy, CurTy); 3380 // Getelementptr indices are signed. 3381 IndexExpr = getTruncateOrSignExtend(IndexExpr, IntPtrTy); 3382 3383 // Multiply the index by the element size to compute the element offset. 3384 const SCEV *LocalOffset = getMulExpr(IndexExpr, ElementSize, Wrap); 3385 3386 // Add the element offset to the running total offset. 3387 TotalOffset = getAddExpr(TotalOffset, LocalOffset); 3388 } 3389 } 3390 3391 // Add the total offset from all the GEP indices to the base. 3392 return getAddExpr(BaseExpr, TotalOffset, Wrap); 3393 } 3394 3395 const SCEV *ScalarEvolution::getSMaxExpr(const SCEV *LHS, 3396 const SCEV *RHS) { 3397 SmallVector<const SCEV *, 2> Ops = {LHS, RHS}; 3398 return getSMaxExpr(Ops); 3399 } 3400 3401 const SCEV * 3402 ScalarEvolution::getSMaxExpr(SmallVectorImpl<const SCEV *> &Ops) { 3403 assert(!Ops.empty() && "Cannot get empty smax!"); 3404 if (Ops.size() == 1) return Ops[0]; 3405 #ifndef NDEBUG 3406 Type *ETy = getEffectiveSCEVType(Ops[0]->getType()); 3407 for (unsigned i = 1, e = Ops.size(); i != e; ++i) 3408 assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy && 3409 "SCEVSMaxExpr operand types don't match!"); 3410 #endif 3411 3412 // Sort by complexity, this groups all similar expression types together. 3413 GroupByComplexity(Ops, &LI, DT); 3414 3415 // If there are any constants, fold them together. 3416 unsigned Idx = 0; 3417 if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(Ops[0])) { 3418 ++Idx; 3419 assert(Idx < Ops.size()); 3420 while (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(Ops[Idx])) { 3421 // We found two constants, fold them together! 3422 ConstantInt *Fold = ConstantInt::get( 3423 getContext(), APIntOps::smax(LHSC->getAPInt(), RHSC->getAPInt())); 3424 Ops[0] = getConstant(Fold); 3425 Ops.erase(Ops.begin()+1); // Erase the folded element 3426 if (Ops.size() == 1) return Ops[0]; 3427 LHSC = cast<SCEVConstant>(Ops[0]); 3428 } 3429 3430 // If we are left with a constant minimum-int, strip it off. 3431 if (cast<SCEVConstant>(Ops[0])->getValue()->isMinValue(true)) { 3432 Ops.erase(Ops.begin()); 3433 --Idx; 3434 } else if (cast<SCEVConstant>(Ops[0])->getValue()->isMaxValue(true)) { 3435 // If we have an smax with a constant maximum-int, it will always be 3436 // maximum-int. 3437 return Ops[0]; 3438 } 3439 3440 if (Ops.size() == 1) return Ops[0]; 3441 } 3442 3443 // Find the first SMax 3444 while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scSMaxExpr) 3445 ++Idx; 3446 3447 // Check to see if one of the operands is an SMax. If so, expand its operands 3448 // onto our operand list, and recurse to simplify. 3449 if (Idx < Ops.size()) { 3450 bool DeletedSMax = false; 3451 while (const SCEVSMaxExpr *SMax = dyn_cast<SCEVSMaxExpr>(Ops[Idx])) { 3452 Ops.erase(Ops.begin()+Idx); 3453 Ops.append(SMax->op_begin(), SMax->op_end()); 3454 DeletedSMax = true; 3455 } 3456 3457 if (DeletedSMax) 3458 return getSMaxExpr(Ops); 3459 } 3460 3461 // Okay, check to see if the same value occurs in the operand list twice. If 3462 // so, delete one. Since we sorted the list, these values are required to 3463 // be adjacent. 3464 for (unsigned i = 0, e = Ops.size()-1; i != e; ++i) 3465 // X smax Y smax Y --> X smax Y 3466 // X smax Y --> X, if X is always greater than Y 3467 if (Ops[i] == Ops[i+1] || 3468 isKnownPredicate(ICmpInst::ICMP_SGE, Ops[i], Ops[i+1])) { 3469 Ops.erase(Ops.begin()+i+1, Ops.begin()+i+2); 3470 --i; --e; 3471 } else if (isKnownPredicate(ICmpInst::ICMP_SLE, Ops[i], Ops[i+1])) { 3472 Ops.erase(Ops.begin()+i, Ops.begin()+i+1); 3473 --i; --e; 3474 } 3475 3476 if (Ops.size() == 1) return Ops[0]; 3477 3478 assert(!Ops.empty() && "Reduced smax down to nothing!"); 3479 3480 // Okay, it looks like we really DO need an smax expr. Check to see if we 3481 // already have one, otherwise create a new one. 3482 FoldingSetNodeID ID; 3483 ID.AddInteger(scSMaxExpr); 3484 for (unsigned i = 0, e = Ops.size(); i != e; ++i) 3485 ID.AddPointer(Ops[i]); 3486 void *IP = nullptr; 3487 if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S; 3488 const SCEV **O = SCEVAllocator.Allocate<const SCEV *>(Ops.size()); 3489 std::uninitialized_copy(Ops.begin(), Ops.end(), O); 3490 SCEV *S = new (SCEVAllocator) SCEVSMaxExpr(ID.Intern(SCEVAllocator), 3491 O, Ops.size()); 3492 UniqueSCEVs.InsertNode(S, IP); 3493 addToLoopUseLists(S); 3494 return S; 3495 } 3496 3497 const SCEV *ScalarEvolution::getUMaxExpr(const SCEV *LHS, 3498 const SCEV *RHS) { 3499 SmallVector<const SCEV *, 2> Ops = {LHS, RHS}; 3500 return getUMaxExpr(Ops); 3501 } 3502 3503 const SCEV * 3504 ScalarEvolution::getUMaxExpr(SmallVectorImpl<const SCEV *> &Ops) { 3505 assert(!Ops.empty() && "Cannot get empty umax!"); 3506 if (Ops.size() == 1) return Ops[0]; 3507 #ifndef NDEBUG 3508 Type *ETy = getEffectiveSCEVType(Ops[0]->getType()); 3509 for (unsigned i = 1, e = Ops.size(); i != e; ++i) 3510 assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy && 3511 "SCEVUMaxExpr operand types don't match!"); 3512 #endif 3513 3514 // Sort by complexity, this groups all similar expression types together. 3515 GroupByComplexity(Ops, &LI, DT); 3516 3517 // If there are any constants, fold them together. 3518 unsigned Idx = 0; 3519 if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(Ops[0])) { 3520 ++Idx; 3521 assert(Idx < Ops.size()); 3522 while (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(Ops[Idx])) { 3523 // We found two constants, fold them together! 3524 ConstantInt *Fold = ConstantInt::get( 3525 getContext(), APIntOps::umax(LHSC->getAPInt(), RHSC->getAPInt())); 3526 Ops[0] = getConstant(Fold); 3527 Ops.erase(Ops.begin()+1); // Erase the folded element 3528 if (Ops.size() == 1) return Ops[0]; 3529 LHSC = cast<SCEVConstant>(Ops[0]); 3530 } 3531 3532 // If we are left with a constant minimum-int, strip it off. 3533 if (cast<SCEVConstant>(Ops[0])->getValue()->isMinValue(false)) { 3534 Ops.erase(Ops.begin()); 3535 --Idx; 3536 } else if (cast<SCEVConstant>(Ops[0])->getValue()->isMaxValue(false)) { 3537 // If we have an umax with a constant maximum-int, it will always be 3538 // maximum-int. 3539 return Ops[0]; 3540 } 3541 3542 if (Ops.size() == 1) return Ops[0]; 3543 } 3544 3545 // Find the first UMax 3546 while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scUMaxExpr) 3547 ++Idx; 3548 3549 // Check to see if one of the operands is a UMax. If so, expand its operands 3550 // onto our operand list, and recurse to simplify. 3551 if (Idx < Ops.size()) { 3552 bool DeletedUMax = false; 3553 while (const SCEVUMaxExpr *UMax = dyn_cast<SCEVUMaxExpr>(Ops[Idx])) { 3554 Ops.erase(Ops.begin()+Idx); 3555 Ops.append(UMax->op_begin(), UMax->op_end()); 3556 DeletedUMax = true; 3557 } 3558 3559 if (DeletedUMax) 3560 return getUMaxExpr(Ops); 3561 } 3562 3563 // Okay, check to see if the same value occurs in the operand list twice. If 3564 // so, delete one. Since we sorted the list, these values are required to 3565 // be adjacent. 3566 for (unsigned i = 0, e = Ops.size()-1; i != e; ++i) 3567 // X umax Y umax Y --> X umax Y 3568 // X umax Y --> X, if X is always greater than Y 3569 if (Ops[i] == Ops[i+1] || 3570 isKnownPredicate(ICmpInst::ICMP_UGE, Ops[i], Ops[i+1])) { 3571 Ops.erase(Ops.begin()+i+1, Ops.begin()+i+2); 3572 --i; --e; 3573 } else if (isKnownPredicate(ICmpInst::ICMP_ULE, Ops[i], Ops[i+1])) { 3574 Ops.erase(Ops.begin()+i, Ops.begin()+i+1); 3575 --i; --e; 3576 } 3577 3578 if (Ops.size() == 1) return Ops[0]; 3579 3580 assert(!Ops.empty() && "Reduced umax down to nothing!"); 3581 3582 // Okay, it looks like we really DO need a umax expr. Check to see if we 3583 // already have one, otherwise create a new one. 3584 FoldingSetNodeID ID; 3585 ID.AddInteger(scUMaxExpr); 3586 for (unsigned i = 0, e = Ops.size(); i != e; ++i) 3587 ID.AddPointer(Ops[i]); 3588 void *IP = nullptr; 3589 if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S; 3590 const SCEV **O = SCEVAllocator.Allocate<const SCEV *>(Ops.size()); 3591 std::uninitialized_copy(Ops.begin(), Ops.end(), O); 3592 SCEV *S = new (SCEVAllocator) SCEVUMaxExpr(ID.Intern(SCEVAllocator), 3593 O, Ops.size()); 3594 UniqueSCEVs.InsertNode(S, IP); 3595 addToLoopUseLists(S); 3596 return S; 3597 } 3598 3599 const SCEV *ScalarEvolution::getSMinExpr(const SCEV *LHS, 3600 const SCEV *RHS) { 3601 // ~smax(~x, ~y) == smin(x, y). 3602 return getNotSCEV(getSMaxExpr(getNotSCEV(LHS), getNotSCEV(RHS))); 3603 } 3604 3605 const SCEV *ScalarEvolution::getUMinExpr(const SCEV *LHS, 3606 const SCEV *RHS) { 3607 // ~umax(~x, ~y) == umin(x, y) 3608 return getNotSCEV(getUMaxExpr(getNotSCEV(LHS), getNotSCEV(RHS))); 3609 } 3610 3611 const SCEV *ScalarEvolution::getSizeOfExpr(Type *IntTy, Type *AllocTy) { 3612 // We can bypass creating a target-independent 3613 // constant expression and then folding it back into a ConstantInt. 3614 // This is just a compile-time optimization. 3615 return getConstant(IntTy, getDataLayout().getTypeAllocSize(AllocTy)); 3616 } 3617 3618 const SCEV *ScalarEvolution::getOffsetOfExpr(Type *IntTy, 3619 StructType *STy, 3620 unsigned FieldNo) { 3621 // We can bypass creating a target-independent 3622 // constant expression and then folding it back into a ConstantInt. 3623 // This is just a compile-time optimization. 3624 return getConstant( 3625 IntTy, getDataLayout().getStructLayout(STy)->getElementOffset(FieldNo)); 3626 } 3627 3628 const SCEV *ScalarEvolution::getUnknown(Value *V) { 3629 // Don't attempt to do anything other than create a SCEVUnknown object 3630 // here. createSCEV only calls getUnknown after checking for all other 3631 // interesting possibilities, and any other code that calls getUnknown 3632 // is doing so in order to hide a value from SCEV canonicalization. 3633 3634 FoldingSetNodeID ID; 3635 ID.AddInteger(scUnknown); 3636 ID.AddPointer(V); 3637 void *IP = nullptr; 3638 if (SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) { 3639 assert(cast<SCEVUnknown>(S)->getValue() == V && 3640 "Stale SCEVUnknown in uniquing map!"); 3641 return S; 3642 } 3643 SCEV *S = new (SCEVAllocator) SCEVUnknown(ID.Intern(SCEVAllocator), V, this, 3644 FirstUnknown); 3645 FirstUnknown = cast<SCEVUnknown>(S); 3646 UniqueSCEVs.InsertNode(S, IP); 3647 return S; 3648 } 3649 3650 //===----------------------------------------------------------------------===// 3651 // Basic SCEV Analysis and PHI Idiom Recognition Code 3652 // 3653 3654 /// Test if values of the given type are analyzable within the SCEV 3655 /// framework. This primarily includes integer types, and it can optionally 3656 /// include pointer types if the ScalarEvolution class has access to 3657 /// target-specific information. 3658 bool ScalarEvolution::isSCEVable(Type *Ty) const { 3659 // Integers and pointers are always SCEVable. 3660 return Ty->isIntegerTy() || Ty->isPointerTy(); 3661 } 3662 3663 /// Return the size in bits of the specified type, for which isSCEVable must 3664 /// return true. 3665 uint64_t ScalarEvolution::getTypeSizeInBits(Type *Ty) const { 3666 assert(isSCEVable(Ty) && "Type is not SCEVable!"); 3667 return getDataLayout().getTypeSizeInBits(Ty); 3668 } 3669 3670 /// Return a type with the same bitwidth as the given type and which represents 3671 /// how SCEV will treat the given type, for which isSCEVable must return 3672 /// true. For pointer types, this is the pointer-sized integer type. 3673 Type *ScalarEvolution::getEffectiveSCEVType(Type *Ty) const { 3674 assert(isSCEVable(Ty) && "Type is not SCEVable!"); 3675 3676 if (Ty->isIntegerTy()) 3677 return Ty; 3678 3679 // The only other support type is pointer. 3680 assert(Ty->isPointerTy() && "Unexpected non-pointer non-integer type!"); 3681 return getDataLayout().getIntPtrType(Ty); 3682 } 3683 3684 Type *ScalarEvolution::getWiderType(Type *T1, Type *T2) const { 3685 return getTypeSizeInBits(T1) >= getTypeSizeInBits(T2) ? T1 : T2; 3686 } 3687 3688 const SCEV *ScalarEvolution::getCouldNotCompute() { 3689 return CouldNotCompute.get(); 3690 } 3691 3692 bool ScalarEvolution::checkValidity(const SCEV *S) const { 3693 bool ContainsNulls = SCEVExprContains(S, [](const SCEV *S) { 3694 auto *SU = dyn_cast<SCEVUnknown>(S); 3695 return SU && SU->getValue() == nullptr; 3696 }); 3697 3698 return !ContainsNulls; 3699 } 3700 3701 bool ScalarEvolution::containsAddRecurrence(const SCEV *S) { 3702 HasRecMapType::iterator I = HasRecMap.find(S); 3703 if (I != HasRecMap.end()) 3704 return I->second; 3705 3706 bool FoundAddRec = SCEVExprContains(S, isa<SCEVAddRecExpr, const SCEV *>); 3707 HasRecMap.insert({S, FoundAddRec}); 3708 return FoundAddRec; 3709 } 3710 3711 /// Try to split a SCEVAddExpr into a pair of {SCEV, ConstantInt}. 3712 /// If \p S is a SCEVAddExpr and is composed of a sub SCEV S' and an 3713 /// offset I, then return {S', I}, else return {\p S, nullptr}. 3714 static std::pair<const SCEV *, ConstantInt *> splitAddExpr(const SCEV *S) { 3715 const auto *Add = dyn_cast<SCEVAddExpr>(S); 3716 if (!Add) 3717 return {S, nullptr}; 3718 3719 if (Add->getNumOperands() != 2) 3720 return {S, nullptr}; 3721 3722 auto *ConstOp = dyn_cast<SCEVConstant>(Add->getOperand(0)); 3723 if (!ConstOp) 3724 return {S, nullptr}; 3725 3726 return {Add->getOperand(1), ConstOp->getValue()}; 3727 } 3728 3729 /// Return the ValueOffsetPair set for \p S. \p S can be represented 3730 /// by the value and offset from any ValueOffsetPair in the set. 3731 SetVector<ScalarEvolution::ValueOffsetPair> * 3732 ScalarEvolution::getSCEVValues(const SCEV *S) { 3733 ExprValueMapType::iterator SI = ExprValueMap.find_as(S); 3734 if (SI == ExprValueMap.end()) 3735 return nullptr; 3736 #ifndef NDEBUG 3737 if (VerifySCEVMap) { 3738 // Check there is no dangling Value in the set returned. 3739 for (const auto &VE : SI->second) 3740 assert(ValueExprMap.count(VE.first)); 3741 } 3742 #endif 3743 return &SI->second; 3744 } 3745 3746 /// Erase Value from ValueExprMap and ExprValueMap. ValueExprMap.erase(V) 3747 /// cannot be used separately. eraseValueFromMap should be used to remove 3748 /// V from ValueExprMap and ExprValueMap at the same time. 3749 void ScalarEvolution::eraseValueFromMap(Value *V) { 3750 ValueExprMapType::iterator I = ValueExprMap.find_as(V); 3751 if (I != ValueExprMap.end()) { 3752 const SCEV *S = I->second; 3753 // Remove {V, 0} from the set of ExprValueMap[S] 3754 if (SetVector<ValueOffsetPair> *SV = getSCEVValues(S)) 3755 SV->remove({V, nullptr}); 3756 3757 // Remove {V, Offset} from the set of ExprValueMap[Stripped] 3758 const SCEV *Stripped; 3759 ConstantInt *Offset; 3760 std::tie(Stripped, Offset) = splitAddExpr(S); 3761 if (Offset != nullptr) { 3762 if (SetVector<ValueOffsetPair> *SV = getSCEVValues(Stripped)) 3763 SV->remove({V, Offset}); 3764 } 3765 ValueExprMap.erase(V); 3766 } 3767 } 3768 3769 /// Return an existing SCEV if it exists, otherwise analyze the expression and 3770 /// create a new one. 3771 const SCEV *ScalarEvolution::getSCEV(Value *V) { 3772 assert(isSCEVable(V->getType()) && "Value is not SCEVable!"); 3773 3774 const SCEV *S = getExistingSCEV(V); 3775 if (S == nullptr) { 3776 S = createSCEV(V); 3777 // During PHI resolution, it is possible to create two SCEVs for the same 3778 // V, so it is needed to double check whether V->S is inserted into 3779 // ValueExprMap before insert S->{V, 0} into ExprValueMap. 3780 std::pair<ValueExprMapType::iterator, bool> Pair = 3781 ValueExprMap.insert({SCEVCallbackVH(V, this), S}); 3782 if (Pair.second) { 3783 ExprValueMap[S].insert({V, nullptr}); 3784 3785 // If S == Stripped + Offset, add Stripped -> {V, Offset} into 3786 // ExprValueMap. 3787 const SCEV *Stripped = S; 3788 ConstantInt *Offset = nullptr; 3789 std::tie(Stripped, Offset) = splitAddExpr(S); 3790 // If stripped is SCEVUnknown, don't bother to save 3791 // Stripped -> {V, offset}. It doesn't simplify and sometimes even 3792 // increase the complexity of the expansion code. 3793 // If V is GetElementPtrInst, don't save Stripped -> {V, offset} 3794 // because it may generate add/sub instead of GEP in SCEV expansion. 3795 if (Offset != nullptr && !isa<SCEVUnknown>(Stripped) && 3796 !isa<GetElementPtrInst>(V)) 3797 ExprValueMap[Stripped].insert({V, Offset}); 3798 } 3799 } 3800 return S; 3801 } 3802 3803 const SCEV *ScalarEvolution::getExistingSCEV(Value *V) { 3804 assert(isSCEVable(V->getType()) && "Value is not SCEVable!"); 3805 3806 ValueExprMapType::iterator I = ValueExprMap.find_as(V); 3807 if (I != ValueExprMap.end()) { 3808 const SCEV *S = I->second; 3809 if (checkValidity(S)) 3810 return S; 3811 eraseValueFromMap(V); 3812 forgetMemoizedResults(S); 3813 } 3814 return nullptr; 3815 } 3816 3817 /// Return a SCEV corresponding to -V = -1*V 3818 const SCEV *ScalarEvolution::getNegativeSCEV(const SCEV *V, 3819 SCEV::NoWrapFlags Flags) { 3820 if (const SCEVConstant *VC = dyn_cast<SCEVConstant>(V)) 3821 return getConstant( 3822 cast<ConstantInt>(ConstantExpr::getNeg(VC->getValue()))); 3823 3824 Type *Ty = V->getType(); 3825 Ty = getEffectiveSCEVType(Ty); 3826 return getMulExpr( 3827 V, getConstant(cast<ConstantInt>(Constant::getAllOnesValue(Ty))), Flags); 3828 } 3829 3830 /// Return a SCEV corresponding to ~V = -1-V 3831 const SCEV *ScalarEvolution::getNotSCEV(const SCEV *V) { 3832 if (const SCEVConstant *VC = dyn_cast<SCEVConstant>(V)) 3833 return getConstant( 3834 cast<ConstantInt>(ConstantExpr::getNot(VC->getValue()))); 3835 3836 Type *Ty = V->getType(); 3837 Ty = getEffectiveSCEVType(Ty); 3838 const SCEV *AllOnes = 3839 getConstant(cast<ConstantInt>(Constant::getAllOnesValue(Ty))); 3840 return getMinusSCEV(AllOnes, V); 3841 } 3842 3843 const SCEV *ScalarEvolution::getMinusSCEV(const SCEV *LHS, const SCEV *RHS, 3844 SCEV::NoWrapFlags Flags, 3845 unsigned Depth) { 3846 // Fast path: X - X --> 0. 3847 if (LHS == RHS) 3848 return getZero(LHS->getType()); 3849 3850 // We represent LHS - RHS as LHS + (-1)*RHS. This transformation 3851 // makes it so that we cannot make much use of NUW. 3852 auto AddFlags = SCEV::FlagAnyWrap; 3853 const bool RHSIsNotMinSigned = 3854 !getSignedRangeMin(RHS).isMinSignedValue(); 3855 if (maskFlags(Flags, SCEV::FlagNSW) == SCEV::FlagNSW) { 3856 // Let M be the minimum representable signed value. Then (-1)*RHS 3857 // signed-wraps if and only if RHS is M. That can happen even for 3858 // a NSW subtraction because e.g. (-1)*M signed-wraps even though 3859 // -1 - M does not. So to transfer NSW from LHS - RHS to LHS + 3860 // (-1)*RHS, we need to prove that RHS != M. 3861 // 3862 // If LHS is non-negative and we know that LHS - RHS does not 3863 // signed-wrap, then RHS cannot be M. So we can rule out signed-wrap 3864 // either by proving that RHS > M or that LHS >= 0. 3865 if (RHSIsNotMinSigned || isKnownNonNegative(LHS)) { 3866 AddFlags = SCEV::FlagNSW; 3867 } 3868 } 3869 3870 // FIXME: Find a correct way to transfer NSW to (-1)*M when LHS - 3871 // RHS is NSW and LHS >= 0. 3872 // 3873 // The difficulty here is that the NSW flag may have been proven 3874 // relative to a loop that is to be found in a recurrence in LHS and 3875 // not in RHS. Applying NSW to (-1)*M may then let the NSW have a 3876 // larger scope than intended. 3877 auto NegFlags = RHSIsNotMinSigned ? SCEV::FlagNSW : SCEV::FlagAnyWrap; 3878 3879 return getAddExpr(LHS, getNegativeSCEV(RHS, NegFlags), AddFlags, Depth); 3880 } 3881 3882 const SCEV * 3883 ScalarEvolution::getTruncateOrZeroExtend(const SCEV *V, Type *Ty) { 3884 Type *SrcTy = V->getType(); 3885 assert((SrcTy->isIntegerTy() || SrcTy->isPointerTy()) && 3886 (Ty->isIntegerTy() || Ty->isPointerTy()) && 3887 "Cannot truncate or zero extend with non-integer arguments!"); 3888 if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty)) 3889 return V; // No conversion 3890 if (getTypeSizeInBits(SrcTy) > getTypeSizeInBits(Ty)) 3891 return getTruncateExpr(V, Ty); 3892 return getZeroExtendExpr(V, Ty); 3893 } 3894 3895 const SCEV * 3896 ScalarEvolution::getTruncateOrSignExtend(const SCEV *V, 3897 Type *Ty) { 3898 Type *SrcTy = V->getType(); 3899 assert((SrcTy->isIntegerTy() || SrcTy->isPointerTy()) && 3900 (Ty->isIntegerTy() || Ty->isPointerTy()) && 3901 "Cannot truncate or zero extend with non-integer arguments!"); 3902 if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty)) 3903 return V; // No conversion 3904 if (getTypeSizeInBits(SrcTy) > getTypeSizeInBits(Ty)) 3905 return getTruncateExpr(V, Ty); 3906 return getSignExtendExpr(V, Ty); 3907 } 3908 3909 const SCEV * 3910 ScalarEvolution::getNoopOrZeroExtend(const SCEV *V, Type *Ty) { 3911 Type *SrcTy = V->getType(); 3912 assert((SrcTy->isIntegerTy() || SrcTy->isPointerTy()) && 3913 (Ty->isIntegerTy() || Ty->isPointerTy()) && 3914 "Cannot noop or zero extend with non-integer arguments!"); 3915 assert(getTypeSizeInBits(SrcTy) <= getTypeSizeInBits(Ty) && 3916 "getNoopOrZeroExtend cannot truncate!"); 3917 if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty)) 3918 return V; // No conversion 3919 return getZeroExtendExpr(V, Ty); 3920 } 3921 3922 const SCEV * 3923 ScalarEvolution::getNoopOrSignExtend(const SCEV *V, Type *Ty) { 3924 Type *SrcTy = V->getType(); 3925 assert((SrcTy->isIntegerTy() || SrcTy->isPointerTy()) && 3926 (Ty->isIntegerTy() || Ty->isPointerTy()) && 3927 "Cannot noop or sign extend with non-integer arguments!"); 3928 assert(getTypeSizeInBits(SrcTy) <= getTypeSizeInBits(Ty) && 3929 "getNoopOrSignExtend cannot truncate!"); 3930 if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty)) 3931 return V; // No conversion 3932 return getSignExtendExpr(V, Ty); 3933 } 3934 3935 const SCEV * 3936 ScalarEvolution::getNoopOrAnyExtend(const SCEV *V, Type *Ty) { 3937 Type *SrcTy = V->getType(); 3938 assert((SrcTy->isIntegerTy() || SrcTy->isPointerTy()) && 3939 (Ty->isIntegerTy() || Ty->isPointerTy()) && 3940 "Cannot noop or any extend with non-integer arguments!"); 3941 assert(getTypeSizeInBits(SrcTy) <= getTypeSizeInBits(Ty) && 3942 "getNoopOrAnyExtend cannot truncate!"); 3943 if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty)) 3944 return V; // No conversion 3945 return getAnyExtendExpr(V, Ty); 3946 } 3947 3948 const SCEV * 3949 ScalarEvolution::getTruncateOrNoop(const SCEV *V, Type *Ty) { 3950 Type *SrcTy = V->getType(); 3951 assert((SrcTy->isIntegerTy() || SrcTy->isPointerTy()) && 3952 (Ty->isIntegerTy() || Ty->isPointerTy()) && 3953 "Cannot truncate or noop with non-integer arguments!"); 3954 assert(getTypeSizeInBits(SrcTy) >= getTypeSizeInBits(Ty) && 3955 "getTruncateOrNoop cannot extend!"); 3956 if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty)) 3957 return V; // No conversion 3958 return getTruncateExpr(V, Ty); 3959 } 3960 3961 const SCEV *ScalarEvolution::getUMaxFromMismatchedTypes(const SCEV *LHS, 3962 const SCEV *RHS) { 3963 const SCEV *PromotedLHS = LHS; 3964 const SCEV *PromotedRHS = RHS; 3965 3966 if (getTypeSizeInBits(LHS->getType()) > getTypeSizeInBits(RHS->getType())) 3967 PromotedRHS = getZeroExtendExpr(RHS, LHS->getType()); 3968 else 3969 PromotedLHS = getNoopOrZeroExtend(LHS, RHS->getType()); 3970 3971 return getUMaxExpr(PromotedLHS, PromotedRHS); 3972 } 3973 3974 const SCEV *ScalarEvolution::getUMinFromMismatchedTypes(const SCEV *LHS, 3975 const SCEV *RHS) { 3976 const SCEV *PromotedLHS = LHS; 3977 const SCEV *PromotedRHS = RHS; 3978 3979 if (getTypeSizeInBits(LHS->getType()) > getTypeSizeInBits(RHS->getType())) 3980 PromotedRHS = getZeroExtendExpr(RHS, LHS->getType()); 3981 else 3982 PromotedLHS = getNoopOrZeroExtend(LHS, RHS->getType()); 3983 3984 return getUMinExpr(PromotedLHS, PromotedRHS); 3985 } 3986 3987 const SCEV *ScalarEvolution::getPointerBase(const SCEV *V) { 3988 // A pointer operand may evaluate to a nonpointer expression, such as null. 3989 if (!V->getType()->isPointerTy()) 3990 return V; 3991 3992 if (const SCEVCastExpr *Cast = dyn_cast<SCEVCastExpr>(V)) { 3993 return getPointerBase(Cast->getOperand()); 3994 } else if (const SCEVNAryExpr *NAry = dyn_cast<SCEVNAryExpr>(V)) { 3995 const SCEV *PtrOp = nullptr; 3996 for (const SCEV *NAryOp : NAry->operands()) { 3997 if (NAryOp->getType()->isPointerTy()) { 3998 // Cannot find the base of an expression with multiple pointer operands. 3999 if (PtrOp) 4000 return V; 4001 PtrOp = NAryOp; 4002 } 4003 } 4004 if (!PtrOp) 4005 return V; 4006 return getPointerBase(PtrOp); 4007 } 4008 return V; 4009 } 4010 4011 /// Push users of the given Instruction onto the given Worklist. 4012 static void 4013 PushDefUseChildren(Instruction *I, 4014 SmallVectorImpl<Instruction *> &Worklist) { 4015 // Push the def-use children onto the Worklist stack. 4016 for (User *U : I->users()) 4017 Worklist.push_back(cast<Instruction>(U)); 4018 } 4019 4020 void ScalarEvolution::forgetSymbolicName(Instruction *PN, const SCEV *SymName) { 4021 SmallVector<Instruction *, 16> Worklist; 4022 PushDefUseChildren(PN, Worklist); 4023 4024 SmallPtrSet<Instruction *, 8> Visited; 4025 Visited.insert(PN); 4026 while (!Worklist.empty()) { 4027 Instruction *I = Worklist.pop_back_val(); 4028 if (!Visited.insert(I).second) 4029 continue; 4030 4031 auto It = ValueExprMap.find_as(static_cast<Value *>(I)); 4032 if (It != ValueExprMap.end()) { 4033 const SCEV *Old = It->second; 4034 4035 // Short-circuit the def-use traversal if the symbolic name 4036 // ceases to appear in expressions. 4037 if (Old != SymName && !hasOperand(Old, SymName)) 4038 continue; 4039 4040 // SCEVUnknown for a PHI either means that it has an unrecognized 4041 // structure, it's a PHI that's in the progress of being computed 4042 // by createNodeForPHI, or it's a single-value PHI. In the first case, 4043 // additional loop trip count information isn't going to change anything. 4044 // In the second case, createNodeForPHI will perform the necessary 4045 // updates on its own when it gets to that point. In the third, we do 4046 // want to forget the SCEVUnknown. 4047 if (!isa<PHINode>(I) || 4048 !isa<SCEVUnknown>(Old) || 4049 (I != PN && Old == SymName)) { 4050 eraseValueFromMap(It->first); 4051 forgetMemoizedResults(Old); 4052 } 4053 } 4054 4055 PushDefUseChildren(I, Worklist); 4056 } 4057 } 4058 4059 namespace { 4060 4061 class SCEVInitRewriter : public SCEVRewriteVisitor<SCEVInitRewriter> { 4062 public: 4063 static const SCEV *rewrite(const SCEV *S, const Loop *L, 4064 ScalarEvolution &SE) { 4065 SCEVInitRewriter Rewriter(L, SE); 4066 const SCEV *Result = Rewriter.visit(S); 4067 return Rewriter.isValid() ? Result : SE.getCouldNotCompute(); 4068 } 4069 4070 const SCEV *visitUnknown(const SCEVUnknown *Expr) { 4071 if (!SE.isLoopInvariant(Expr, L)) 4072 Valid = false; 4073 return Expr; 4074 } 4075 4076 const SCEV *visitAddRecExpr(const SCEVAddRecExpr *Expr) { 4077 // Only allow AddRecExprs for this loop. 4078 if (Expr->getLoop() == L) 4079 return Expr->getStart(); 4080 Valid = false; 4081 return Expr; 4082 } 4083 4084 bool isValid() { return Valid; } 4085 4086 private: 4087 explicit SCEVInitRewriter(const Loop *L, ScalarEvolution &SE) 4088 : SCEVRewriteVisitor(SE), L(L) {} 4089 4090 const Loop *L; 4091 bool Valid = true; 4092 }; 4093 4094 /// This class evaluates the compare condition by matching it against the 4095 /// condition of loop latch. If there is a match we assume a true value 4096 /// for the condition while building SCEV nodes. 4097 class SCEVBackedgeConditionFolder 4098 : public SCEVRewriteVisitor<SCEVBackedgeConditionFolder> { 4099 public: 4100 static const SCEV *rewrite(const SCEV *S, const Loop *L, 4101 ScalarEvolution &SE) { 4102 bool IsPosBECond = false; 4103 Value *BECond = nullptr; 4104 if (BasicBlock *Latch = L->getLoopLatch()) { 4105 BranchInst *BI = dyn_cast<BranchInst>(Latch->getTerminator()); 4106 if (BI && BI->isConditional()) { 4107 assert(BI->getSuccessor(0) != BI->getSuccessor(1) && 4108 "Both outgoing branches should not target same header!"); 4109 BECond = BI->getCondition(); 4110 IsPosBECond = BI->getSuccessor(0) == L->getHeader(); 4111 } else { 4112 return S; 4113 } 4114 } 4115 SCEVBackedgeConditionFolder Rewriter(L, BECond, IsPosBECond, SE); 4116 return Rewriter.visit(S); 4117 } 4118 4119 const SCEV *visitUnknown(const SCEVUnknown *Expr) { 4120 const SCEV *Result = Expr; 4121 bool InvariantF = SE.isLoopInvariant(Expr, L); 4122 4123 if (!InvariantF) { 4124 Instruction *I = cast<Instruction>(Expr->getValue()); 4125 switch (I->getOpcode()) { 4126 case Instruction::Select: { 4127 SelectInst *SI = cast<SelectInst>(I); 4128 Optional<const SCEV *> Res = 4129 compareWithBackedgeCondition(SI->getCondition()); 4130 if (Res.hasValue()) { 4131 bool IsOne = cast<SCEVConstant>(Res.getValue())->getValue()->isOne(); 4132 Result = SE.getSCEV(IsOne ? SI->getTrueValue() : SI->getFalseValue()); 4133 } 4134 break; 4135 } 4136 default: { 4137 Optional<const SCEV *> Res = compareWithBackedgeCondition(I); 4138 if (Res.hasValue()) 4139 Result = Res.getValue(); 4140 break; 4141 } 4142 } 4143 } 4144 return Result; 4145 } 4146 4147 private: 4148 explicit SCEVBackedgeConditionFolder(const Loop *L, Value *BECond, 4149 bool IsPosBECond, ScalarEvolution &SE) 4150 : SCEVRewriteVisitor(SE), L(L), BackedgeCond(BECond), 4151 IsPositiveBECond(IsPosBECond) {} 4152 4153 Optional<const SCEV *> compareWithBackedgeCondition(Value *IC); 4154 4155 const Loop *L; 4156 /// Loop back condition. 4157 Value *BackedgeCond = nullptr; 4158 /// Set to true if loop back is on positive branch condition. 4159 bool IsPositiveBECond; 4160 }; 4161 4162 Optional<const SCEV *> 4163 SCEVBackedgeConditionFolder::compareWithBackedgeCondition(Value *IC) { 4164 4165 // If value matches the backedge condition for loop latch, 4166 // then return a constant evolution node based on loopback 4167 // branch taken. 4168 if (BackedgeCond == IC) 4169 return IsPositiveBECond ? SE.getOne(Type::getInt1Ty(SE.getContext())) 4170 : SE.getZero(Type::getInt1Ty(SE.getContext())); 4171 return None; 4172 } 4173 4174 class SCEVShiftRewriter : public SCEVRewriteVisitor<SCEVShiftRewriter> { 4175 public: 4176 static const SCEV *rewrite(const SCEV *S, const Loop *L, 4177 ScalarEvolution &SE) { 4178 SCEVShiftRewriter Rewriter(L, SE); 4179 const SCEV *Result = Rewriter.visit(S); 4180 return Rewriter.isValid() ? Result : SE.getCouldNotCompute(); 4181 } 4182 4183 const SCEV *visitUnknown(const SCEVUnknown *Expr) { 4184 // Only allow AddRecExprs for this loop. 4185 if (!SE.isLoopInvariant(Expr, L)) 4186 Valid = false; 4187 return Expr; 4188 } 4189 4190 const SCEV *visitAddRecExpr(const SCEVAddRecExpr *Expr) { 4191 if (Expr->getLoop() == L && Expr->isAffine()) 4192 return SE.getMinusSCEV(Expr, Expr->getStepRecurrence(SE)); 4193 Valid = false; 4194 return Expr; 4195 } 4196 4197 bool isValid() { return Valid; } 4198 4199 private: 4200 explicit SCEVShiftRewriter(const Loop *L, ScalarEvolution &SE) 4201 : SCEVRewriteVisitor(SE), L(L) {} 4202 4203 const Loop *L; 4204 bool Valid = true; 4205 }; 4206 4207 } // end anonymous namespace 4208 4209 SCEV::NoWrapFlags 4210 ScalarEvolution::proveNoWrapViaConstantRanges(const SCEVAddRecExpr *AR) { 4211 if (!AR->isAffine()) 4212 return SCEV::FlagAnyWrap; 4213 4214 using OBO = OverflowingBinaryOperator; 4215 4216 SCEV::NoWrapFlags Result = SCEV::FlagAnyWrap; 4217 4218 if (!AR->hasNoSignedWrap()) { 4219 ConstantRange AddRecRange = getSignedRange(AR); 4220 ConstantRange IncRange = getSignedRange(AR->getStepRecurrence(*this)); 4221 4222 auto NSWRegion = ConstantRange::makeGuaranteedNoWrapRegion( 4223 Instruction::Add, IncRange, OBO::NoSignedWrap); 4224 if (NSWRegion.contains(AddRecRange)) 4225 Result = ScalarEvolution::setFlags(Result, SCEV::FlagNSW); 4226 } 4227 4228 if (!AR->hasNoUnsignedWrap()) { 4229 ConstantRange AddRecRange = getUnsignedRange(AR); 4230 ConstantRange IncRange = getUnsignedRange(AR->getStepRecurrence(*this)); 4231 4232 auto NUWRegion = ConstantRange::makeGuaranteedNoWrapRegion( 4233 Instruction::Add, IncRange, OBO::NoUnsignedWrap); 4234 if (NUWRegion.contains(AddRecRange)) 4235 Result = ScalarEvolution::setFlags(Result, SCEV::FlagNUW); 4236 } 4237 4238 return Result; 4239 } 4240 4241 namespace { 4242 4243 /// Represents an abstract binary operation. This may exist as a 4244 /// normal instruction or constant expression, or may have been 4245 /// derived from an expression tree. 4246 struct BinaryOp { 4247 unsigned Opcode; 4248 Value *LHS; 4249 Value *RHS; 4250 bool IsNSW = false; 4251 bool IsNUW = false; 4252 4253 /// Op is set if this BinaryOp corresponds to a concrete LLVM instruction or 4254 /// constant expression. 4255 Operator *Op = nullptr; 4256 4257 explicit BinaryOp(Operator *Op) 4258 : Opcode(Op->getOpcode()), LHS(Op->getOperand(0)), RHS(Op->getOperand(1)), 4259 Op(Op) { 4260 if (auto *OBO = dyn_cast<OverflowingBinaryOperator>(Op)) { 4261 IsNSW = OBO->hasNoSignedWrap(); 4262 IsNUW = OBO->hasNoUnsignedWrap(); 4263 } 4264 } 4265 4266 explicit BinaryOp(unsigned Opcode, Value *LHS, Value *RHS, bool IsNSW = false, 4267 bool IsNUW = false) 4268 : Opcode(Opcode), LHS(LHS), RHS(RHS), IsNSW(IsNSW), IsNUW(IsNUW) {} 4269 }; 4270 4271 } // end anonymous namespace 4272 4273 /// Try to map \p V into a BinaryOp, and return \c None on failure. 4274 static Optional<BinaryOp> MatchBinaryOp(Value *V, DominatorTree &DT) { 4275 auto *Op = dyn_cast<Operator>(V); 4276 if (!Op) 4277 return None; 4278 4279 // Implementation detail: all the cleverness here should happen without 4280 // creating new SCEV expressions -- our caller knowns tricks to avoid creating 4281 // SCEV expressions when possible, and we should not break that. 4282 4283 switch (Op->getOpcode()) { 4284 case Instruction::Add: 4285 case Instruction::Sub: 4286 case Instruction::Mul: 4287 case Instruction::UDiv: 4288 case Instruction::URem: 4289 case Instruction::And: 4290 case Instruction::Or: 4291 case Instruction::AShr: 4292 case Instruction::Shl: 4293 return BinaryOp(Op); 4294 4295 case Instruction::Xor: 4296 if (auto *RHSC = dyn_cast<ConstantInt>(Op->getOperand(1))) 4297 // If the RHS of the xor is a signmask, then this is just an add. 4298 // Instcombine turns add of signmask into xor as a strength reduction step. 4299 if (RHSC->getValue().isSignMask()) 4300 return BinaryOp(Instruction::Add, Op->getOperand(0), Op->getOperand(1)); 4301 return BinaryOp(Op); 4302 4303 case Instruction::LShr: 4304 // Turn logical shift right of a constant into a unsigned divide. 4305 if (ConstantInt *SA = dyn_cast<ConstantInt>(Op->getOperand(1))) { 4306 uint32_t BitWidth = cast<IntegerType>(Op->getType())->getBitWidth(); 4307 4308 // If the shift count is not less than the bitwidth, the result of 4309 // the shift is undefined. Don't try to analyze it, because the 4310 // resolution chosen here may differ from the resolution chosen in 4311 // other parts of the compiler. 4312 if (SA->getValue().ult(BitWidth)) { 4313 Constant *X = 4314 ConstantInt::get(SA->getContext(), 4315 APInt::getOneBitSet(BitWidth, SA->getZExtValue())); 4316 return BinaryOp(Instruction::UDiv, Op->getOperand(0), X); 4317 } 4318 } 4319 return BinaryOp(Op); 4320 4321 case Instruction::ExtractValue: { 4322 auto *EVI = cast<ExtractValueInst>(Op); 4323 if (EVI->getNumIndices() != 1 || EVI->getIndices()[0] != 0) 4324 break; 4325 4326 auto *CI = dyn_cast<CallInst>(EVI->getAggregateOperand()); 4327 if (!CI) 4328 break; 4329 4330 if (auto *F = CI->getCalledFunction()) 4331 switch (F->getIntrinsicID()) { 4332 case Intrinsic::sadd_with_overflow: 4333 case Intrinsic::uadd_with_overflow: 4334 if (!isOverflowIntrinsicNoWrap(cast<IntrinsicInst>(CI), DT)) 4335 return BinaryOp(Instruction::Add, CI->getArgOperand(0), 4336 CI->getArgOperand(1)); 4337 4338 // Now that we know that all uses of the arithmetic-result component of 4339 // CI are guarded by the overflow check, we can go ahead and pretend 4340 // that the arithmetic is non-overflowing. 4341 if (F->getIntrinsicID() == Intrinsic::sadd_with_overflow) 4342 return BinaryOp(Instruction::Add, CI->getArgOperand(0), 4343 CI->getArgOperand(1), /* IsNSW = */ true, 4344 /* IsNUW = */ false); 4345 else 4346 return BinaryOp(Instruction::Add, CI->getArgOperand(0), 4347 CI->getArgOperand(1), /* IsNSW = */ false, 4348 /* IsNUW*/ true); 4349 case Intrinsic::ssub_with_overflow: 4350 case Intrinsic::usub_with_overflow: 4351 if (!isOverflowIntrinsicNoWrap(cast<IntrinsicInst>(CI), DT)) 4352 return BinaryOp(Instruction::Sub, CI->getArgOperand(0), 4353 CI->getArgOperand(1)); 4354 4355 // The same reasoning as sadd/uadd above. 4356 if (F->getIntrinsicID() == Intrinsic::ssub_with_overflow) 4357 return BinaryOp(Instruction::Sub, CI->getArgOperand(0), 4358 CI->getArgOperand(1), /* IsNSW = */ true, 4359 /* IsNUW = */ false); 4360 else 4361 return BinaryOp(Instruction::Sub, CI->getArgOperand(0), 4362 CI->getArgOperand(1), /* IsNSW = */ false, 4363 /* IsNUW = */ true); 4364 case Intrinsic::smul_with_overflow: 4365 case Intrinsic::umul_with_overflow: 4366 return BinaryOp(Instruction::Mul, CI->getArgOperand(0), 4367 CI->getArgOperand(1)); 4368 default: 4369 break; 4370 } 4371 } 4372 4373 default: 4374 break; 4375 } 4376 4377 return None; 4378 } 4379 4380 /// Helper function to createAddRecFromPHIWithCasts. We have a phi 4381 /// node whose symbolic (unknown) SCEV is \p SymbolicPHI, which is updated via 4382 /// the loop backedge by a SCEVAddExpr, possibly also with a few casts on the 4383 /// way. This function checks if \p Op, an operand of this SCEVAddExpr, 4384 /// follows one of the following patterns: 4385 /// Op == (SExt ix (Trunc iy (%SymbolicPHI) to ix) to iy) 4386 /// Op == (ZExt ix (Trunc iy (%SymbolicPHI) to ix) to iy) 4387 /// If the SCEV expression of \p Op conforms with one of the expected patterns 4388 /// we return the type of the truncation operation, and indicate whether the 4389 /// truncated type should be treated as signed/unsigned by setting 4390 /// \p Signed to true/false, respectively. 4391 static Type *isSimpleCastedPHI(const SCEV *Op, const SCEVUnknown *SymbolicPHI, 4392 bool &Signed, ScalarEvolution &SE) { 4393 // The case where Op == SymbolicPHI (that is, with no type conversions on 4394 // the way) is handled by the regular add recurrence creating logic and 4395 // would have already been triggered in createAddRecForPHI. Reaching it here 4396 // means that createAddRecFromPHI had failed for this PHI before (e.g., 4397 // because one of the other operands of the SCEVAddExpr updating this PHI is 4398 // not invariant). 4399 // 4400 // Here we look for the case where Op = (ext(trunc(SymbolicPHI))), and in 4401 // this case predicates that allow us to prove that Op == SymbolicPHI will 4402 // be added. 4403 if (Op == SymbolicPHI) 4404 return nullptr; 4405 4406 unsigned SourceBits = SE.getTypeSizeInBits(SymbolicPHI->getType()); 4407 unsigned NewBits = SE.getTypeSizeInBits(Op->getType()); 4408 if (SourceBits != NewBits) 4409 return nullptr; 4410 4411 const SCEVSignExtendExpr *SExt = dyn_cast<SCEVSignExtendExpr>(Op); 4412 const SCEVZeroExtendExpr *ZExt = dyn_cast<SCEVZeroExtendExpr>(Op); 4413 if (!SExt && !ZExt) 4414 return nullptr; 4415 const SCEVTruncateExpr *Trunc = 4416 SExt ? dyn_cast<SCEVTruncateExpr>(SExt->getOperand()) 4417 : dyn_cast<SCEVTruncateExpr>(ZExt->getOperand()); 4418 if (!Trunc) 4419 return nullptr; 4420 const SCEV *X = Trunc->getOperand(); 4421 if (X != SymbolicPHI) 4422 return nullptr; 4423 Signed = SExt != nullptr; 4424 return Trunc->getType(); 4425 } 4426 4427 static const Loop *isIntegerLoopHeaderPHI(const PHINode *PN, LoopInfo &LI) { 4428 if (!PN->getType()->isIntegerTy()) 4429 return nullptr; 4430 const Loop *L = LI.getLoopFor(PN->getParent()); 4431 if (!L || L->getHeader() != PN->getParent()) 4432 return nullptr; 4433 return L; 4434 } 4435 4436 // Analyze \p SymbolicPHI, a SCEV expression of a phi node, and check if the 4437 // computation that updates the phi follows the following pattern: 4438 // (SExt/ZExt ix (Trunc iy (%SymbolicPHI) to ix) to iy) + InvariantAccum 4439 // which correspond to a phi->trunc->sext/zext->add->phi update chain. 4440 // If so, try to see if it can be rewritten as an AddRecExpr under some 4441 // Predicates. If successful, return them as a pair. Also cache the results 4442 // of the analysis. 4443 // 4444 // Example usage scenario: 4445 // Say the Rewriter is called for the following SCEV: 4446 // 8 * ((sext i32 (trunc i64 %X to i32) to i64) + %Step) 4447 // where: 4448 // %X = phi i64 (%Start, %BEValue) 4449 // It will visitMul->visitAdd->visitSExt->visitTrunc->visitUnknown(%X), 4450 // and call this function with %SymbolicPHI = %X. 4451 // 4452 // The analysis will find that the value coming around the backedge has 4453 // the following SCEV: 4454 // BEValue = ((sext i32 (trunc i64 %X to i32) to i64) + %Step) 4455 // Upon concluding that this matches the desired pattern, the function 4456 // will return the pair {NewAddRec, SmallPredsVec} where: 4457 // NewAddRec = {%Start,+,%Step} 4458 // SmallPredsVec = {P1, P2, P3} as follows: 4459 // P1(WrapPred): AR: {trunc(%Start),+,(trunc %Step)}<nsw> Flags: <nssw> 4460 // P2(EqualPred): %Start == (sext i32 (trunc i64 %Start to i32) to i64) 4461 // P3(EqualPred): %Step == (sext i32 (trunc i64 %Step to i32) to i64) 4462 // The returned pair means that SymbolicPHI can be rewritten into NewAddRec 4463 // under the predicates {P1,P2,P3}. 4464 // This predicated rewrite will be cached in PredicatedSCEVRewrites: 4465 // PredicatedSCEVRewrites[{%X,L}] = {NewAddRec, {P1,P2,P3)} 4466 // 4467 // TODO's: 4468 // 4469 // 1) Extend the Induction descriptor to also support inductions that involve 4470 // casts: When needed (namely, when we are called in the context of the 4471 // vectorizer induction analysis), a Set of cast instructions will be 4472 // populated by this method, and provided back to isInductionPHI. This is 4473 // needed to allow the vectorizer to properly record them to be ignored by 4474 // the cost model and to avoid vectorizing them (otherwise these casts, 4475 // which are redundant under the runtime overflow checks, will be 4476 // vectorized, which can be costly). 4477 // 4478 // 2) Support additional induction/PHISCEV patterns: We also want to support 4479 // inductions where the sext-trunc / zext-trunc operations (partly) occur 4480 // after the induction update operation (the induction increment): 4481 // 4482 // (Trunc iy (SExt/ZExt ix (%SymbolicPHI + InvariantAccum) to iy) to ix) 4483 // which correspond to a phi->add->trunc->sext/zext->phi update chain. 4484 // 4485 // (Trunc iy ((SExt/ZExt ix (%SymbolicPhi) to iy) + InvariantAccum) to ix) 4486 // which correspond to a phi->trunc->add->sext/zext->phi update chain. 4487 // 4488 // 3) Outline common code with createAddRecFromPHI to avoid duplication. 4489 Optional<std::pair<const SCEV *, SmallVector<const SCEVPredicate *, 3>>> 4490 ScalarEvolution::createAddRecFromPHIWithCastsImpl(const SCEVUnknown *SymbolicPHI) { 4491 SmallVector<const SCEVPredicate *, 3> Predicates; 4492 4493 // *** Part1: Analyze if we have a phi-with-cast pattern for which we can 4494 // return an AddRec expression under some predicate. 4495 4496 auto *PN = cast<PHINode>(SymbolicPHI->getValue()); 4497 const Loop *L = isIntegerLoopHeaderPHI(PN, LI); 4498 assert(L && "Expecting an integer loop header phi"); 4499 4500 // The loop may have multiple entrances or multiple exits; we can analyze 4501 // this phi as an addrec if it has a unique entry value and a unique 4502 // backedge value. 4503 Value *BEValueV = nullptr, *StartValueV = nullptr; 4504 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) { 4505 Value *V = PN->getIncomingValue(i); 4506 if (L->contains(PN->getIncomingBlock(i))) { 4507 if (!BEValueV) { 4508 BEValueV = V; 4509 } else if (BEValueV != V) { 4510 BEValueV = nullptr; 4511 break; 4512 } 4513 } else if (!StartValueV) { 4514 StartValueV = V; 4515 } else if (StartValueV != V) { 4516 StartValueV = nullptr; 4517 break; 4518 } 4519 } 4520 if (!BEValueV || !StartValueV) 4521 return None; 4522 4523 const SCEV *BEValue = getSCEV(BEValueV); 4524 4525 // If the value coming around the backedge is an add with the symbolic 4526 // value we just inserted, possibly with casts that we can ignore under 4527 // an appropriate runtime guard, then we found a simple induction variable! 4528 const auto *Add = dyn_cast<SCEVAddExpr>(BEValue); 4529 if (!Add) 4530 return None; 4531 4532 // If there is a single occurrence of the symbolic value, possibly 4533 // casted, replace it with a recurrence. 4534 unsigned FoundIndex = Add->getNumOperands(); 4535 Type *TruncTy = nullptr; 4536 bool Signed; 4537 for (unsigned i = 0, e = Add->getNumOperands(); i != e; ++i) 4538 if ((TruncTy = 4539 isSimpleCastedPHI(Add->getOperand(i), SymbolicPHI, Signed, *this))) 4540 if (FoundIndex == e) { 4541 FoundIndex = i; 4542 break; 4543 } 4544 4545 if (FoundIndex == Add->getNumOperands()) 4546 return None; 4547 4548 // Create an add with everything but the specified operand. 4549 SmallVector<const SCEV *, 8> Ops; 4550 for (unsigned i = 0, e = Add->getNumOperands(); i != e; ++i) 4551 if (i != FoundIndex) 4552 Ops.push_back(Add->getOperand(i)); 4553 const SCEV *Accum = getAddExpr(Ops); 4554 4555 // The runtime checks will not be valid if the step amount is 4556 // varying inside the loop. 4557 if (!isLoopInvariant(Accum, L)) 4558 return None; 4559 4560 // *** Part2: Create the predicates 4561 4562 // Analysis was successful: we have a phi-with-cast pattern for which we 4563 // can return an AddRec expression under the following predicates: 4564 // 4565 // P1: A Wrap predicate that guarantees that Trunc(Start) + i*Trunc(Accum) 4566 // fits within the truncated type (does not overflow) for i = 0 to n-1. 4567 // P2: An Equal predicate that guarantees that 4568 // Start = (Ext ix (Trunc iy (Start) to ix) to iy) 4569 // P3: An Equal predicate that guarantees that 4570 // Accum = (Ext ix (Trunc iy (Accum) to ix) to iy) 4571 // 4572 // As we next prove, the above predicates guarantee that: 4573 // Start + i*Accum = (Ext ix (Trunc iy ( Start + i*Accum ) to ix) to iy) 4574 // 4575 // 4576 // More formally, we want to prove that: 4577 // Expr(i+1) = Start + (i+1) * Accum 4578 // = (Ext ix (Trunc iy (Expr(i)) to ix) to iy) + Accum 4579 // 4580 // Given that: 4581 // 1) Expr(0) = Start 4582 // 2) Expr(1) = Start + Accum 4583 // = (Ext ix (Trunc iy (Start) to ix) to iy) + Accum :: from P2 4584 // 3) Induction hypothesis (step i): 4585 // Expr(i) = (Ext ix (Trunc iy (Expr(i-1)) to ix) to iy) + Accum 4586 // 4587 // Proof: 4588 // Expr(i+1) = 4589 // = Start + (i+1)*Accum 4590 // = (Start + i*Accum) + Accum 4591 // = Expr(i) + Accum 4592 // = (Ext ix (Trunc iy (Expr(i-1)) to ix) to iy) + Accum + Accum 4593 // :: from step i 4594 // 4595 // = (Ext ix (Trunc iy (Start + (i-1)*Accum) to ix) to iy) + Accum + Accum 4596 // 4597 // = (Ext ix (Trunc iy (Start + (i-1)*Accum) to ix) to iy) 4598 // + (Ext ix (Trunc iy (Accum) to ix) to iy) 4599 // + Accum :: from P3 4600 // 4601 // = (Ext ix (Trunc iy ((Start + (i-1)*Accum) + Accum) to ix) to iy) 4602 // + Accum :: from P1: Ext(x)+Ext(y)=>Ext(x+y) 4603 // 4604 // = (Ext ix (Trunc iy (Start + i*Accum) to ix) to iy) + Accum 4605 // = (Ext ix (Trunc iy (Expr(i)) to ix) to iy) + Accum 4606 // 4607 // By induction, the same applies to all iterations 1<=i<n: 4608 // 4609 4610 // Create a truncated addrec for which we will add a no overflow check (P1). 4611 const SCEV *StartVal = getSCEV(StartValueV); 4612 const SCEV *PHISCEV = 4613 getAddRecExpr(getTruncateExpr(StartVal, TruncTy), 4614 getTruncateExpr(Accum, TruncTy), L, SCEV::FlagAnyWrap); 4615 4616 // PHISCEV can be either a SCEVConstant or a SCEVAddRecExpr. 4617 // ex: If truncated Accum is 0 and StartVal is a constant, then PHISCEV 4618 // will be constant. 4619 // 4620 // If PHISCEV is a constant, then P1 degenerates into P2 or P3, so we don't 4621 // add P1. 4622 if (const auto *AR = dyn_cast<SCEVAddRecExpr>(PHISCEV)) { 4623 SCEVWrapPredicate::IncrementWrapFlags AddedFlags = 4624 Signed ? SCEVWrapPredicate::IncrementNSSW 4625 : SCEVWrapPredicate::IncrementNUSW; 4626 const SCEVPredicate *AddRecPred = getWrapPredicate(AR, AddedFlags); 4627 Predicates.push_back(AddRecPred); 4628 } 4629 4630 // Create the Equal Predicates P2,P3: 4631 4632 // It is possible that the predicates P2 and/or P3 are computable at 4633 // compile time due to StartVal and/or Accum being constants. 4634 // If either one is, then we can check that now and escape if either P2 4635 // or P3 is false. 4636 4637 // Construct the extended SCEV: (Ext ix (Trunc iy (Expr) to ix) to iy) 4638 // for each of StartVal and Accum 4639 auto getExtendedExpr = [&](const SCEV *Expr, 4640 bool CreateSignExtend) -> const SCEV * { 4641 assert(isLoopInvariant(Expr, L) && "Expr is expected to be invariant"); 4642 const SCEV *TruncatedExpr = getTruncateExpr(Expr, TruncTy); 4643 const SCEV *ExtendedExpr = 4644 CreateSignExtend ? getSignExtendExpr(TruncatedExpr, Expr->getType()) 4645 : getZeroExtendExpr(TruncatedExpr, Expr->getType()); 4646 return ExtendedExpr; 4647 }; 4648 4649 // Given: 4650 // ExtendedExpr = (Ext ix (Trunc iy (Expr) to ix) to iy 4651 // = getExtendedExpr(Expr) 4652 // Determine whether the predicate P: Expr == ExtendedExpr 4653 // is known to be false at compile time 4654 auto PredIsKnownFalse = [&](const SCEV *Expr, 4655 const SCEV *ExtendedExpr) -> bool { 4656 return Expr != ExtendedExpr && 4657 isKnownPredicate(ICmpInst::ICMP_NE, Expr, ExtendedExpr); 4658 }; 4659 4660 const SCEV *StartExtended = getExtendedExpr(StartVal, Signed); 4661 if (PredIsKnownFalse(StartVal, StartExtended)) { 4662 DEBUG(dbgs() << "P2 is compile-time false\n";); 4663 return None; 4664 } 4665 4666 // The Step is always Signed (because the overflow checks are either 4667 // NSSW or NUSW) 4668 const SCEV *AccumExtended = getExtendedExpr(Accum, /*CreateSignExtend=*/true); 4669 if (PredIsKnownFalse(Accum, AccumExtended)) { 4670 DEBUG(dbgs() << "P3 is compile-time false\n";); 4671 return None; 4672 } 4673 4674 auto AppendPredicate = [&](const SCEV *Expr, 4675 const SCEV *ExtendedExpr) -> void { 4676 if (Expr != ExtendedExpr && 4677 !isKnownPredicate(ICmpInst::ICMP_EQ, Expr, ExtendedExpr)) { 4678 const SCEVPredicate *Pred = getEqualPredicate(Expr, ExtendedExpr); 4679 DEBUG (dbgs() << "Added Predicate: " << *Pred); 4680 Predicates.push_back(Pred); 4681 } 4682 }; 4683 4684 AppendPredicate(StartVal, StartExtended); 4685 AppendPredicate(Accum, AccumExtended); 4686 4687 // *** Part3: Predicates are ready. Now go ahead and create the new addrec in 4688 // which the casts had been folded away. The caller can rewrite SymbolicPHI 4689 // into NewAR if it will also add the runtime overflow checks specified in 4690 // Predicates. 4691 auto *NewAR = getAddRecExpr(StartVal, Accum, L, SCEV::FlagAnyWrap); 4692 4693 std::pair<const SCEV *, SmallVector<const SCEVPredicate *, 3>> PredRewrite = 4694 std::make_pair(NewAR, Predicates); 4695 // Remember the result of the analysis for this SCEV at this locayyytion. 4696 PredicatedSCEVRewrites[{SymbolicPHI, L}] = PredRewrite; 4697 return PredRewrite; 4698 } 4699 4700 Optional<std::pair<const SCEV *, SmallVector<const SCEVPredicate *, 3>>> 4701 ScalarEvolution::createAddRecFromPHIWithCasts(const SCEVUnknown *SymbolicPHI) { 4702 auto *PN = cast<PHINode>(SymbolicPHI->getValue()); 4703 const Loop *L = isIntegerLoopHeaderPHI(PN, LI); 4704 if (!L) 4705 return None; 4706 4707 // Check to see if we already analyzed this PHI. 4708 auto I = PredicatedSCEVRewrites.find({SymbolicPHI, L}); 4709 if (I != PredicatedSCEVRewrites.end()) { 4710 std::pair<const SCEV *, SmallVector<const SCEVPredicate *, 3>> Rewrite = 4711 I->second; 4712 // Analysis was done before and failed to create an AddRec: 4713 if (Rewrite.first == SymbolicPHI) 4714 return None; 4715 // Analysis was done before and succeeded to create an AddRec under 4716 // a predicate: 4717 assert(isa<SCEVAddRecExpr>(Rewrite.first) && "Expected an AddRec"); 4718 assert(!(Rewrite.second).empty() && "Expected to find Predicates"); 4719 return Rewrite; 4720 } 4721 4722 Optional<std::pair<const SCEV *, SmallVector<const SCEVPredicate *, 3>>> 4723 Rewrite = createAddRecFromPHIWithCastsImpl(SymbolicPHI); 4724 4725 // Record in the cache that the analysis failed 4726 if (!Rewrite) { 4727 SmallVector<const SCEVPredicate *, 3> Predicates; 4728 PredicatedSCEVRewrites[{SymbolicPHI, L}] = {SymbolicPHI, Predicates}; 4729 return None; 4730 } 4731 4732 return Rewrite; 4733 } 4734 4735 /// A helper function for createAddRecFromPHI to handle simple cases. 4736 /// 4737 /// This function tries to find an AddRec expression for the simplest (yet most 4738 /// common) cases: PN = PHI(Start, OP(Self, LoopInvariant)). 4739 /// If it fails, createAddRecFromPHI will use a more general, but slow, 4740 /// technique for finding the AddRec expression. 4741 const SCEV *ScalarEvolution::createSimpleAffineAddRec(PHINode *PN, 4742 Value *BEValueV, 4743 Value *StartValueV) { 4744 const Loop *L = LI.getLoopFor(PN->getParent()); 4745 assert(L && L->getHeader() == PN->getParent()); 4746 assert(BEValueV && StartValueV); 4747 4748 auto BO = MatchBinaryOp(BEValueV, DT); 4749 if (!BO) 4750 return nullptr; 4751 4752 if (BO->Opcode != Instruction::Add) 4753 return nullptr; 4754 4755 const SCEV *Accum = nullptr; 4756 if (BO->LHS == PN && L->isLoopInvariant(BO->RHS)) 4757 Accum = getSCEV(BO->RHS); 4758 else if (BO->RHS == PN && L->isLoopInvariant(BO->LHS)) 4759 Accum = getSCEV(BO->LHS); 4760 4761 if (!Accum) 4762 return nullptr; 4763 4764 SCEV::NoWrapFlags Flags = SCEV::FlagAnyWrap; 4765 if (BO->IsNUW) 4766 Flags = setFlags(Flags, SCEV::FlagNUW); 4767 if (BO->IsNSW) 4768 Flags = setFlags(Flags, SCEV::FlagNSW); 4769 4770 const SCEV *StartVal = getSCEV(StartValueV); 4771 const SCEV *PHISCEV = getAddRecExpr(StartVal, Accum, L, Flags); 4772 4773 ValueExprMap[SCEVCallbackVH(PN, this)] = PHISCEV; 4774 4775 // We can add Flags to the post-inc expression only if we 4776 // know that it is *undefined behavior* for BEValueV to 4777 // overflow. 4778 if (auto *BEInst = dyn_cast<Instruction>(BEValueV)) 4779 if (isLoopInvariant(Accum, L) && isAddRecNeverPoison(BEInst, L)) 4780 (void)getAddRecExpr(getAddExpr(StartVal, Accum), Accum, L, Flags); 4781 4782 return PHISCEV; 4783 } 4784 4785 const SCEV *ScalarEvolution::createAddRecFromPHI(PHINode *PN) { 4786 const Loop *L = LI.getLoopFor(PN->getParent()); 4787 if (!L || L->getHeader() != PN->getParent()) 4788 return nullptr; 4789 4790 // The loop may have multiple entrances or multiple exits; we can analyze 4791 // this phi as an addrec if it has a unique entry value and a unique 4792 // backedge value. 4793 Value *BEValueV = nullptr, *StartValueV = nullptr; 4794 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) { 4795 Value *V = PN->getIncomingValue(i); 4796 if (L->contains(PN->getIncomingBlock(i))) { 4797 if (!BEValueV) { 4798 BEValueV = V; 4799 } else if (BEValueV != V) { 4800 BEValueV = nullptr; 4801 break; 4802 } 4803 } else if (!StartValueV) { 4804 StartValueV = V; 4805 } else if (StartValueV != V) { 4806 StartValueV = nullptr; 4807 break; 4808 } 4809 } 4810 if (!BEValueV || !StartValueV) 4811 return nullptr; 4812 4813 assert(ValueExprMap.find_as(PN) == ValueExprMap.end() && 4814 "PHI node already processed?"); 4815 4816 // First, try to find AddRec expression without creating a fictituos symbolic 4817 // value for PN. 4818 if (auto *S = createSimpleAffineAddRec(PN, BEValueV, StartValueV)) 4819 return S; 4820 4821 // Handle PHI node value symbolically. 4822 const SCEV *SymbolicName = getUnknown(PN); 4823 ValueExprMap.insert({SCEVCallbackVH(PN, this), SymbolicName}); 4824 4825 // Using this symbolic name for the PHI, analyze the value coming around 4826 // the back-edge. 4827 const SCEV *BEValue = getSCEV(BEValueV); 4828 4829 // NOTE: If BEValue is loop invariant, we know that the PHI node just 4830 // has a special value for the first iteration of the loop. 4831 4832 // If the value coming around the backedge is an add with the symbolic 4833 // value we just inserted, then we found a simple induction variable! 4834 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(BEValue)) { 4835 // If there is a single occurrence of the symbolic value, replace it 4836 // with a recurrence. 4837 unsigned FoundIndex = Add->getNumOperands(); 4838 for (unsigned i = 0, e = Add->getNumOperands(); i != e; ++i) 4839 if (Add->getOperand(i) == SymbolicName) 4840 if (FoundIndex == e) { 4841 FoundIndex = i; 4842 break; 4843 } 4844 4845 if (FoundIndex != Add->getNumOperands()) { 4846 // Create an add with everything but the specified operand. 4847 SmallVector<const SCEV *, 8> Ops; 4848 for (unsigned i = 0, e = Add->getNumOperands(); i != e; ++i) 4849 if (i != FoundIndex) 4850 Ops.push_back(SCEVBackedgeConditionFolder::rewrite(Add->getOperand(i), 4851 L, *this)); 4852 const SCEV *Accum = getAddExpr(Ops); 4853 4854 // This is not a valid addrec if the step amount is varying each 4855 // loop iteration, but is not itself an addrec in this loop. 4856 if (isLoopInvariant(Accum, L) || 4857 (isa<SCEVAddRecExpr>(Accum) && 4858 cast<SCEVAddRecExpr>(Accum)->getLoop() == L)) { 4859 SCEV::NoWrapFlags Flags = SCEV::FlagAnyWrap; 4860 4861 if (auto BO = MatchBinaryOp(BEValueV, DT)) { 4862 if (BO->Opcode == Instruction::Add && BO->LHS == PN) { 4863 if (BO->IsNUW) 4864 Flags = setFlags(Flags, SCEV::FlagNUW); 4865 if (BO->IsNSW) 4866 Flags = setFlags(Flags, SCEV::FlagNSW); 4867 } 4868 } else if (GEPOperator *GEP = dyn_cast<GEPOperator>(BEValueV)) { 4869 // If the increment is an inbounds GEP, then we know the address 4870 // space cannot be wrapped around. We cannot make any guarantee 4871 // about signed or unsigned overflow because pointers are 4872 // unsigned but we may have a negative index from the base 4873 // pointer. We can guarantee that no unsigned wrap occurs if the 4874 // indices form a positive value. 4875 if (GEP->isInBounds() && GEP->getOperand(0) == PN) { 4876 Flags = setFlags(Flags, SCEV::FlagNW); 4877 4878 const SCEV *Ptr = getSCEV(GEP->getPointerOperand()); 4879 if (isKnownPositive(getMinusSCEV(getSCEV(GEP), Ptr))) 4880 Flags = setFlags(Flags, SCEV::FlagNUW); 4881 } 4882 4883 // We cannot transfer nuw and nsw flags from subtraction 4884 // operations -- sub nuw X, Y is not the same as add nuw X, -Y 4885 // for instance. 4886 } 4887 4888 const SCEV *StartVal = getSCEV(StartValueV); 4889 const SCEV *PHISCEV = getAddRecExpr(StartVal, Accum, L, Flags); 4890 4891 // Okay, for the entire analysis of this edge we assumed the PHI 4892 // to be symbolic. We now need to go back and purge all of the 4893 // entries for the scalars that use the symbolic expression. 4894 forgetSymbolicName(PN, SymbolicName); 4895 ValueExprMap[SCEVCallbackVH(PN, this)] = PHISCEV; 4896 4897 // We can add Flags to the post-inc expression only if we 4898 // know that it is *undefined behavior* for BEValueV to 4899 // overflow. 4900 if (auto *BEInst = dyn_cast<Instruction>(BEValueV)) 4901 if (isLoopInvariant(Accum, L) && isAddRecNeverPoison(BEInst, L)) 4902 (void)getAddRecExpr(getAddExpr(StartVal, Accum), Accum, L, Flags); 4903 4904 return PHISCEV; 4905 } 4906 } 4907 } else { 4908 // Otherwise, this could be a loop like this: 4909 // i = 0; for (j = 1; ..; ++j) { .... i = j; } 4910 // In this case, j = {1,+,1} and BEValue is j. 4911 // Because the other in-value of i (0) fits the evolution of BEValue 4912 // i really is an addrec evolution. 4913 // 4914 // We can generalize this saying that i is the shifted value of BEValue 4915 // by one iteration: 4916 // PHI(f(0), f({1,+,1})) --> f({0,+,1}) 4917 const SCEV *Shifted = SCEVShiftRewriter::rewrite(BEValue, L, *this); 4918 const SCEV *Start = SCEVInitRewriter::rewrite(Shifted, L, *this); 4919 if (Shifted != getCouldNotCompute() && 4920 Start != getCouldNotCompute()) { 4921 const SCEV *StartVal = getSCEV(StartValueV); 4922 if (Start == StartVal) { 4923 // Okay, for the entire analysis of this edge we assumed the PHI 4924 // to be symbolic. We now need to go back and purge all of the 4925 // entries for the scalars that use the symbolic expression. 4926 forgetSymbolicName(PN, SymbolicName); 4927 ValueExprMap[SCEVCallbackVH(PN, this)] = Shifted; 4928 return Shifted; 4929 } 4930 } 4931 } 4932 4933 // Remove the temporary PHI node SCEV that has been inserted while intending 4934 // to create an AddRecExpr for this PHI node. We can not keep this temporary 4935 // as it will prevent later (possibly simpler) SCEV expressions to be added 4936 // to the ValueExprMap. 4937 eraseValueFromMap(PN); 4938 4939 return nullptr; 4940 } 4941 4942 // Checks if the SCEV S is available at BB. S is considered available at BB 4943 // if S can be materialized at BB without introducing a fault. 4944 static bool IsAvailableOnEntry(const Loop *L, DominatorTree &DT, const SCEV *S, 4945 BasicBlock *BB) { 4946 struct CheckAvailable { 4947 bool TraversalDone = false; 4948 bool Available = true; 4949 4950 const Loop *L = nullptr; // The loop BB is in (can be nullptr) 4951 BasicBlock *BB = nullptr; 4952 DominatorTree &DT; 4953 4954 CheckAvailable(const Loop *L, BasicBlock *BB, DominatorTree &DT) 4955 : L(L), BB(BB), DT(DT) {} 4956 4957 bool setUnavailable() { 4958 TraversalDone = true; 4959 Available = false; 4960 return false; 4961 } 4962 4963 bool follow(const SCEV *S) { 4964 switch (S->getSCEVType()) { 4965 case scConstant: case scTruncate: case scZeroExtend: case scSignExtend: 4966 case scAddExpr: case scMulExpr: case scUMaxExpr: case scSMaxExpr: 4967 // These expressions are available if their operand(s) is/are. 4968 return true; 4969 4970 case scAddRecExpr: { 4971 // We allow add recurrences that are on the loop BB is in, or some 4972 // outer loop. This guarantees availability because the value of the 4973 // add recurrence at BB is simply the "current" value of the induction 4974 // variable. We can relax this in the future; for instance an add 4975 // recurrence on a sibling dominating loop is also available at BB. 4976 const auto *ARLoop = cast<SCEVAddRecExpr>(S)->getLoop(); 4977 if (L && (ARLoop == L || ARLoop->contains(L))) 4978 return true; 4979 4980 return setUnavailable(); 4981 } 4982 4983 case scUnknown: { 4984 // For SCEVUnknown, we check for simple dominance. 4985 const auto *SU = cast<SCEVUnknown>(S); 4986 Value *V = SU->getValue(); 4987 4988 if (isa<Argument>(V)) 4989 return false; 4990 4991 if (isa<Instruction>(V) && DT.dominates(cast<Instruction>(V), BB)) 4992 return false; 4993 4994 return setUnavailable(); 4995 } 4996 4997 case scUDivExpr: 4998 case scCouldNotCompute: 4999 // We do not try to smart about these at all. 5000 return setUnavailable(); 5001 } 5002 llvm_unreachable("switch should be fully covered!"); 5003 } 5004 5005 bool isDone() { return TraversalDone; } 5006 }; 5007 5008 CheckAvailable CA(L, BB, DT); 5009 SCEVTraversal<CheckAvailable> ST(CA); 5010 5011 ST.visitAll(S); 5012 return CA.Available; 5013 } 5014 5015 // Try to match a control flow sequence that branches out at BI and merges back 5016 // at Merge into a "C ? LHS : RHS" select pattern. Return true on a successful 5017 // match. 5018 static bool BrPHIToSelect(DominatorTree &DT, BranchInst *BI, PHINode *Merge, 5019 Value *&C, Value *&LHS, Value *&RHS) { 5020 C = BI->getCondition(); 5021 5022 BasicBlockEdge LeftEdge(BI->getParent(), BI->getSuccessor(0)); 5023 BasicBlockEdge RightEdge(BI->getParent(), BI->getSuccessor(1)); 5024 5025 if (!LeftEdge.isSingleEdge()) 5026 return false; 5027 5028 assert(RightEdge.isSingleEdge() && "Follows from LeftEdge.isSingleEdge()"); 5029 5030 Use &LeftUse = Merge->getOperandUse(0); 5031 Use &RightUse = Merge->getOperandUse(1); 5032 5033 if (DT.dominates(LeftEdge, LeftUse) && DT.dominates(RightEdge, RightUse)) { 5034 LHS = LeftUse; 5035 RHS = RightUse; 5036 return true; 5037 } 5038 5039 if (DT.dominates(LeftEdge, RightUse) && DT.dominates(RightEdge, LeftUse)) { 5040 LHS = RightUse; 5041 RHS = LeftUse; 5042 return true; 5043 } 5044 5045 return false; 5046 } 5047 5048 const SCEV *ScalarEvolution::createNodeFromSelectLikePHI(PHINode *PN) { 5049 auto IsReachable = 5050 [&](BasicBlock *BB) { return DT.isReachableFromEntry(BB); }; 5051 if (PN->getNumIncomingValues() == 2 && all_of(PN->blocks(), IsReachable)) { 5052 const Loop *L = LI.getLoopFor(PN->getParent()); 5053 5054 // We don't want to break LCSSA, even in a SCEV expression tree. 5055 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) 5056 if (LI.getLoopFor(PN->getIncomingBlock(i)) != L) 5057 return nullptr; 5058 5059 // Try to match 5060 // 5061 // br %cond, label %left, label %right 5062 // left: 5063 // br label %merge 5064 // right: 5065 // br label %merge 5066 // merge: 5067 // V = phi [ %x, %left ], [ %y, %right ] 5068 // 5069 // as "select %cond, %x, %y" 5070 5071 BasicBlock *IDom = DT[PN->getParent()]->getIDom()->getBlock(); 5072 assert(IDom && "At least the entry block should dominate PN"); 5073 5074 auto *BI = dyn_cast<BranchInst>(IDom->getTerminator()); 5075 Value *Cond = nullptr, *LHS = nullptr, *RHS = nullptr; 5076 5077 if (BI && BI->isConditional() && 5078 BrPHIToSelect(DT, BI, PN, Cond, LHS, RHS) && 5079 IsAvailableOnEntry(L, DT, getSCEV(LHS), PN->getParent()) && 5080 IsAvailableOnEntry(L, DT, getSCEV(RHS), PN->getParent())) 5081 return createNodeForSelectOrPHI(PN, Cond, LHS, RHS); 5082 } 5083 5084 return nullptr; 5085 } 5086 5087 const SCEV *ScalarEvolution::createNodeForPHI(PHINode *PN) { 5088 if (const SCEV *S = createAddRecFromPHI(PN)) 5089 return S; 5090 5091 if (const SCEV *S = createNodeFromSelectLikePHI(PN)) 5092 return S; 5093 5094 // If the PHI has a single incoming value, follow that value, unless the 5095 // PHI's incoming blocks are in a different loop, in which case doing so 5096 // risks breaking LCSSA form. Instcombine would normally zap these, but 5097 // it doesn't have DominatorTree information, so it may miss cases. 5098 if (Value *V = SimplifyInstruction(PN, {getDataLayout(), &TLI, &DT, &AC})) 5099 if (LI.replacementPreservesLCSSAForm(PN, V)) 5100 return getSCEV(V); 5101 5102 // If it's not a loop phi, we can't handle it yet. 5103 return getUnknown(PN); 5104 } 5105 5106 const SCEV *ScalarEvolution::createNodeForSelectOrPHI(Instruction *I, 5107 Value *Cond, 5108 Value *TrueVal, 5109 Value *FalseVal) { 5110 // Handle "constant" branch or select. This can occur for instance when a 5111 // loop pass transforms an inner loop and moves on to process the outer loop. 5112 if (auto *CI = dyn_cast<ConstantInt>(Cond)) 5113 return getSCEV(CI->isOne() ? TrueVal : FalseVal); 5114 5115 // Try to match some simple smax or umax patterns. 5116 auto *ICI = dyn_cast<ICmpInst>(Cond); 5117 if (!ICI) 5118 return getUnknown(I); 5119 5120 Value *LHS = ICI->getOperand(0); 5121 Value *RHS = ICI->getOperand(1); 5122 5123 switch (ICI->getPredicate()) { 5124 case ICmpInst::ICMP_SLT: 5125 case ICmpInst::ICMP_SLE: 5126 std::swap(LHS, RHS); 5127 LLVM_FALLTHROUGH; 5128 case ICmpInst::ICMP_SGT: 5129 case ICmpInst::ICMP_SGE: 5130 // a >s b ? a+x : b+x -> smax(a, b)+x 5131 // a >s b ? b+x : a+x -> smin(a, b)+x 5132 if (getTypeSizeInBits(LHS->getType()) <= getTypeSizeInBits(I->getType())) { 5133 const SCEV *LS = getNoopOrSignExtend(getSCEV(LHS), I->getType()); 5134 const SCEV *RS = getNoopOrSignExtend(getSCEV(RHS), I->getType()); 5135 const SCEV *LA = getSCEV(TrueVal); 5136 const SCEV *RA = getSCEV(FalseVal); 5137 const SCEV *LDiff = getMinusSCEV(LA, LS); 5138 const SCEV *RDiff = getMinusSCEV(RA, RS); 5139 if (LDiff == RDiff) 5140 return getAddExpr(getSMaxExpr(LS, RS), LDiff); 5141 LDiff = getMinusSCEV(LA, RS); 5142 RDiff = getMinusSCEV(RA, LS); 5143 if (LDiff == RDiff) 5144 return getAddExpr(getSMinExpr(LS, RS), LDiff); 5145 } 5146 break; 5147 case ICmpInst::ICMP_ULT: 5148 case ICmpInst::ICMP_ULE: 5149 std::swap(LHS, RHS); 5150 LLVM_FALLTHROUGH; 5151 case ICmpInst::ICMP_UGT: 5152 case ICmpInst::ICMP_UGE: 5153 // a >u b ? a+x : b+x -> umax(a, b)+x 5154 // a >u b ? b+x : a+x -> umin(a, b)+x 5155 if (getTypeSizeInBits(LHS->getType()) <= getTypeSizeInBits(I->getType())) { 5156 const SCEV *LS = getNoopOrZeroExtend(getSCEV(LHS), I->getType()); 5157 const SCEV *RS = getNoopOrZeroExtend(getSCEV(RHS), I->getType()); 5158 const SCEV *LA = getSCEV(TrueVal); 5159 const SCEV *RA = getSCEV(FalseVal); 5160 const SCEV *LDiff = getMinusSCEV(LA, LS); 5161 const SCEV *RDiff = getMinusSCEV(RA, RS); 5162 if (LDiff == RDiff) 5163 return getAddExpr(getUMaxExpr(LS, RS), LDiff); 5164 LDiff = getMinusSCEV(LA, RS); 5165 RDiff = getMinusSCEV(RA, LS); 5166 if (LDiff == RDiff) 5167 return getAddExpr(getUMinExpr(LS, RS), LDiff); 5168 } 5169 break; 5170 case ICmpInst::ICMP_NE: 5171 // n != 0 ? n+x : 1+x -> umax(n, 1)+x 5172 if (getTypeSizeInBits(LHS->getType()) <= getTypeSizeInBits(I->getType()) && 5173 isa<ConstantInt>(RHS) && cast<ConstantInt>(RHS)->isZero()) { 5174 const SCEV *One = getOne(I->getType()); 5175 const SCEV *LS = getNoopOrZeroExtend(getSCEV(LHS), I->getType()); 5176 const SCEV *LA = getSCEV(TrueVal); 5177 const SCEV *RA = getSCEV(FalseVal); 5178 const SCEV *LDiff = getMinusSCEV(LA, LS); 5179 const SCEV *RDiff = getMinusSCEV(RA, One); 5180 if (LDiff == RDiff) 5181 return getAddExpr(getUMaxExpr(One, LS), LDiff); 5182 } 5183 break; 5184 case ICmpInst::ICMP_EQ: 5185 // n == 0 ? 1+x : n+x -> umax(n, 1)+x 5186 if (getTypeSizeInBits(LHS->getType()) <= getTypeSizeInBits(I->getType()) && 5187 isa<ConstantInt>(RHS) && cast<ConstantInt>(RHS)->isZero()) { 5188 const SCEV *One = getOne(I->getType()); 5189 const SCEV *LS = getNoopOrZeroExtend(getSCEV(LHS), I->getType()); 5190 const SCEV *LA = getSCEV(TrueVal); 5191 const SCEV *RA = getSCEV(FalseVal); 5192 const SCEV *LDiff = getMinusSCEV(LA, One); 5193 const SCEV *RDiff = getMinusSCEV(RA, LS); 5194 if (LDiff == RDiff) 5195 return getAddExpr(getUMaxExpr(One, LS), LDiff); 5196 } 5197 break; 5198 default: 5199 break; 5200 } 5201 5202 return getUnknown(I); 5203 } 5204 5205 /// Expand GEP instructions into add and multiply operations. This allows them 5206 /// to be analyzed by regular SCEV code. 5207 const SCEV *ScalarEvolution::createNodeForGEP(GEPOperator *GEP) { 5208 // Don't attempt to analyze GEPs over unsized objects. 5209 if (!GEP->getSourceElementType()->isSized()) 5210 return getUnknown(GEP); 5211 5212 SmallVector<const SCEV *, 4> IndexExprs; 5213 for (auto Index = GEP->idx_begin(); Index != GEP->idx_end(); ++Index) 5214 IndexExprs.push_back(getSCEV(*Index)); 5215 return getGEPExpr(GEP, IndexExprs); 5216 } 5217 5218 uint32_t ScalarEvolution::GetMinTrailingZerosImpl(const SCEV *S) { 5219 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) 5220 return C->getAPInt().countTrailingZeros(); 5221 5222 if (const SCEVTruncateExpr *T = dyn_cast<SCEVTruncateExpr>(S)) 5223 return std::min(GetMinTrailingZeros(T->getOperand()), 5224 (uint32_t)getTypeSizeInBits(T->getType())); 5225 5226 if (const SCEVZeroExtendExpr *E = dyn_cast<SCEVZeroExtendExpr>(S)) { 5227 uint32_t OpRes = GetMinTrailingZeros(E->getOperand()); 5228 return OpRes == getTypeSizeInBits(E->getOperand()->getType()) 5229 ? getTypeSizeInBits(E->getType()) 5230 : OpRes; 5231 } 5232 5233 if (const SCEVSignExtendExpr *E = dyn_cast<SCEVSignExtendExpr>(S)) { 5234 uint32_t OpRes = GetMinTrailingZeros(E->getOperand()); 5235 return OpRes == getTypeSizeInBits(E->getOperand()->getType()) 5236 ? getTypeSizeInBits(E->getType()) 5237 : OpRes; 5238 } 5239 5240 if (const SCEVAddExpr *A = dyn_cast<SCEVAddExpr>(S)) { 5241 // The result is the min of all operands results. 5242 uint32_t MinOpRes = GetMinTrailingZeros(A->getOperand(0)); 5243 for (unsigned i = 1, e = A->getNumOperands(); MinOpRes && i != e; ++i) 5244 MinOpRes = std::min(MinOpRes, GetMinTrailingZeros(A->getOperand(i))); 5245 return MinOpRes; 5246 } 5247 5248 if (const SCEVMulExpr *M = dyn_cast<SCEVMulExpr>(S)) { 5249 // The result is the sum of all operands results. 5250 uint32_t SumOpRes = GetMinTrailingZeros(M->getOperand(0)); 5251 uint32_t BitWidth = getTypeSizeInBits(M->getType()); 5252 for (unsigned i = 1, e = M->getNumOperands(); 5253 SumOpRes != BitWidth && i != e; ++i) 5254 SumOpRes = 5255 std::min(SumOpRes + GetMinTrailingZeros(M->getOperand(i)), BitWidth); 5256 return SumOpRes; 5257 } 5258 5259 if (const SCEVAddRecExpr *A = dyn_cast<SCEVAddRecExpr>(S)) { 5260 // The result is the min of all operands results. 5261 uint32_t MinOpRes = GetMinTrailingZeros(A->getOperand(0)); 5262 for (unsigned i = 1, e = A->getNumOperands(); MinOpRes && i != e; ++i) 5263 MinOpRes = std::min(MinOpRes, GetMinTrailingZeros(A->getOperand(i))); 5264 return MinOpRes; 5265 } 5266 5267 if (const SCEVSMaxExpr *M = dyn_cast<SCEVSMaxExpr>(S)) { 5268 // The result is the min of all operands results. 5269 uint32_t MinOpRes = GetMinTrailingZeros(M->getOperand(0)); 5270 for (unsigned i = 1, e = M->getNumOperands(); MinOpRes && i != e; ++i) 5271 MinOpRes = std::min(MinOpRes, GetMinTrailingZeros(M->getOperand(i))); 5272 return MinOpRes; 5273 } 5274 5275 if (const SCEVUMaxExpr *M = dyn_cast<SCEVUMaxExpr>(S)) { 5276 // The result is the min of all operands results. 5277 uint32_t MinOpRes = GetMinTrailingZeros(M->getOperand(0)); 5278 for (unsigned i = 1, e = M->getNumOperands(); MinOpRes && i != e; ++i) 5279 MinOpRes = std::min(MinOpRes, GetMinTrailingZeros(M->getOperand(i))); 5280 return MinOpRes; 5281 } 5282 5283 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) { 5284 // For a SCEVUnknown, ask ValueTracking. 5285 KnownBits Known = computeKnownBits(U->getValue(), getDataLayout(), 0, &AC, nullptr, &DT); 5286 return Known.countMinTrailingZeros(); 5287 } 5288 5289 // SCEVUDivExpr 5290 return 0; 5291 } 5292 5293 uint32_t ScalarEvolution::GetMinTrailingZeros(const SCEV *S) { 5294 auto I = MinTrailingZerosCache.find(S); 5295 if (I != MinTrailingZerosCache.end()) 5296 return I->second; 5297 5298 uint32_t Result = GetMinTrailingZerosImpl(S); 5299 auto InsertPair = MinTrailingZerosCache.insert({S, Result}); 5300 assert(InsertPair.second && "Should insert a new key"); 5301 return InsertPair.first->second; 5302 } 5303 5304 /// Helper method to assign a range to V from metadata present in the IR. 5305 static Optional<ConstantRange> GetRangeFromMetadata(Value *V) { 5306 if (Instruction *I = dyn_cast<Instruction>(V)) 5307 if (MDNode *MD = I->getMetadata(LLVMContext::MD_range)) 5308 return getConstantRangeFromMetadata(*MD); 5309 5310 return None; 5311 } 5312 5313 /// Determine the range for a particular SCEV. If SignHint is 5314 /// HINT_RANGE_UNSIGNED (resp. HINT_RANGE_SIGNED) then getRange prefers ranges 5315 /// with a "cleaner" unsigned (resp. signed) representation. 5316 const ConstantRange & 5317 ScalarEvolution::getRangeRef(const SCEV *S, 5318 ScalarEvolution::RangeSignHint SignHint) { 5319 DenseMap<const SCEV *, ConstantRange> &Cache = 5320 SignHint == ScalarEvolution::HINT_RANGE_UNSIGNED ? UnsignedRanges 5321 : SignedRanges; 5322 5323 // See if we've computed this range already. 5324 DenseMap<const SCEV *, ConstantRange>::iterator I = Cache.find(S); 5325 if (I != Cache.end()) 5326 return I->second; 5327 5328 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) 5329 return setRange(C, SignHint, ConstantRange(C->getAPInt())); 5330 5331 unsigned BitWidth = getTypeSizeInBits(S->getType()); 5332 ConstantRange ConservativeResult(BitWidth, /*isFullSet=*/true); 5333 5334 // If the value has known zeros, the maximum value will have those known zeros 5335 // as well. 5336 uint32_t TZ = GetMinTrailingZeros(S); 5337 if (TZ != 0) { 5338 if (SignHint == ScalarEvolution::HINT_RANGE_UNSIGNED) 5339 ConservativeResult = 5340 ConstantRange(APInt::getMinValue(BitWidth), 5341 APInt::getMaxValue(BitWidth).lshr(TZ).shl(TZ) + 1); 5342 else 5343 ConservativeResult = ConstantRange( 5344 APInt::getSignedMinValue(BitWidth), 5345 APInt::getSignedMaxValue(BitWidth).ashr(TZ).shl(TZ) + 1); 5346 } 5347 5348 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) { 5349 ConstantRange X = getRangeRef(Add->getOperand(0), SignHint); 5350 for (unsigned i = 1, e = Add->getNumOperands(); i != e; ++i) 5351 X = X.add(getRangeRef(Add->getOperand(i), SignHint)); 5352 return setRange(Add, SignHint, ConservativeResult.intersectWith(X)); 5353 } 5354 5355 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) { 5356 ConstantRange X = getRangeRef(Mul->getOperand(0), SignHint); 5357 for (unsigned i = 1, e = Mul->getNumOperands(); i != e; ++i) 5358 X = X.multiply(getRangeRef(Mul->getOperand(i), SignHint)); 5359 return setRange(Mul, SignHint, ConservativeResult.intersectWith(X)); 5360 } 5361 5362 if (const SCEVSMaxExpr *SMax = dyn_cast<SCEVSMaxExpr>(S)) { 5363 ConstantRange X = getRangeRef(SMax->getOperand(0), SignHint); 5364 for (unsigned i = 1, e = SMax->getNumOperands(); i != e; ++i) 5365 X = X.smax(getRangeRef(SMax->getOperand(i), SignHint)); 5366 return setRange(SMax, SignHint, ConservativeResult.intersectWith(X)); 5367 } 5368 5369 if (const SCEVUMaxExpr *UMax = dyn_cast<SCEVUMaxExpr>(S)) { 5370 ConstantRange X = getRangeRef(UMax->getOperand(0), SignHint); 5371 for (unsigned i = 1, e = UMax->getNumOperands(); i != e; ++i) 5372 X = X.umax(getRangeRef(UMax->getOperand(i), SignHint)); 5373 return setRange(UMax, SignHint, ConservativeResult.intersectWith(X)); 5374 } 5375 5376 if (const SCEVUDivExpr *UDiv = dyn_cast<SCEVUDivExpr>(S)) { 5377 ConstantRange X = getRangeRef(UDiv->getLHS(), SignHint); 5378 ConstantRange Y = getRangeRef(UDiv->getRHS(), SignHint); 5379 return setRange(UDiv, SignHint, 5380 ConservativeResult.intersectWith(X.udiv(Y))); 5381 } 5382 5383 if (const SCEVZeroExtendExpr *ZExt = dyn_cast<SCEVZeroExtendExpr>(S)) { 5384 ConstantRange X = getRangeRef(ZExt->getOperand(), SignHint); 5385 return setRange(ZExt, SignHint, 5386 ConservativeResult.intersectWith(X.zeroExtend(BitWidth))); 5387 } 5388 5389 if (const SCEVSignExtendExpr *SExt = dyn_cast<SCEVSignExtendExpr>(S)) { 5390 ConstantRange X = getRangeRef(SExt->getOperand(), SignHint); 5391 return setRange(SExt, SignHint, 5392 ConservativeResult.intersectWith(X.signExtend(BitWidth))); 5393 } 5394 5395 if (const SCEVTruncateExpr *Trunc = dyn_cast<SCEVTruncateExpr>(S)) { 5396 ConstantRange X = getRangeRef(Trunc->getOperand(), SignHint); 5397 return setRange(Trunc, SignHint, 5398 ConservativeResult.intersectWith(X.truncate(BitWidth))); 5399 } 5400 5401 if (const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(S)) { 5402 // If there's no unsigned wrap, the value will never be less than its 5403 // initial value. 5404 if (AddRec->hasNoUnsignedWrap()) 5405 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(AddRec->getStart())) 5406 if (!C->getValue()->isZero()) 5407 ConservativeResult = ConservativeResult.intersectWith( 5408 ConstantRange(C->getAPInt(), APInt(BitWidth, 0))); 5409 5410 // If there's no signed wrap, and all the operands have the same sign or 5411 // zero, the value won't ever change sign. 5412 if (AddRec->hasNoSignedWrap()) { 5413 bool AllNonNeg = true; 5414 bool AllNonPos = true; 5415 for (unsigned i = 0, e = AddRec->getNumOperands(); i != e; ++i) { 5416 if (!isKnownNonNegative(AddRec->getOperand(i))) AllNonNeg = false; 5417 if (!isKnownNonPositive(AddRec->getOperand(i))) AllNonPos = false; 5418 } 5419 if (AllNonNeg) 5420 ConservativeResult = ConservativeResult.intersectWith( 5421 ConstantRange(APInt(BitWidth, 0), 5422 APInt::getSignedMinValue(BitWidth))); 5423 else if (AllNonPos) 5424 ConservativeResult = ConservativeResult.intersectWith( 5425 ConstantRange(APInt::getSignedMinValue(BitWidth), 5426 APInt(BitWidth, 1))); 5427 } 5428 5429 // TODO: non-affine addrec 5430 if (AddRec->isAffine()) { 5431 const SCEV *MaxBECount = getMaxBackedgeTakenCount(AddRec->getLoop()); 5432 if (!isa<SCEVCouldNotCompute>(MaxBECount) && 5433 getTypeSizeInBits(MaxBECount->getType()) <= BitWidth) { 5434 auto RangeFromAffine = getRangeForAffineAR( 5435 AddRec->getStart(), AddRec->getStepRecurrence(*this), MaxBECount, 5436 BitWidth); 5437 if (!RangeFromAffine.isFullSet()) 5438 ConservativeResult = 5439 ConservativeResult.intersectWith(RangeFromAffine); 5440 5441 auto RangeFromFactoring = getRangeViaFactoring( 5442 AddRec->getStart(), AddRec->getStepRecurrence(*this), MaxBECount, 5443 BitWidth); 5444 if (!RangeFromFactoring.isFullSet()) 5445 ConservativeResult = 5446 ConservativeResult.intersectWith(RangeFromFactoring); 5447 } 5448 } 5449 5450 return setRange(AddRec, SignHint, std::move(ConservativeResult)); 5451 } 5452 5453 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) { 5454 // Check if the IR explicitly contains !range metadata. 5455 Optional<ConstantRange> MDRange = GetRangeFromMetadata(U->getValue()); 5456 if (MDRange.hasValue()) 5457 ConservativeResult = ConservativeResult.intersectWith(MDRange.getValue()); 5458 5459 // Split here to avoid paying the compile-time cost of calling both 5460 // computeKnownBits and ComputeNumSignBits. This restriction can be lifted 5461 // if needed. 5462 const DataLayout &DL = getDataLayout(); 5463 if (SignHint == ScalarEvolution::HINT_RANGE_UNSIGNED) { 5464 // For a SCEVUnknown, ask ValueTracking. 5465 KnownBits Known = computeKnownBits(U->getValue(), DL, 0, &AC, nullptr, &DT); 5466 if (Known.One != ~Known.Zero + 1) 5467 ConservativeResult = 5468 ConservativeResult.intersectWith(ConstantRange(Known.One, 5469 ~Known.Zero + 1)); 5470 } else { 5471 assert(SignHint == ScalarEvolution::HINT_RANGE_SIGNED && 5472 "generalize as needed!"); 5473 unsigned NS = ComputeNumSignBits(U->getValue(), DL, 0, &AC, nullptr, &DT); 5474 if (NS > 1) 5475 ConservativeResult = ConservativeResult.intersectWith( 5476 ConstantRange(APInt::getSignedMinValue(BitWidth).ashr(NS - 1), 5477 APInt::getSignedMaxValue(BitWidth).ashr(NS - 1) + 1)); 5478 } 5479 5480 return setRange(U, SignHint, std::move(ConservativeResult)); 5481 } 5482 5483 return setRange(S, SignHint, std::move(ConservativeResult)); 5484 } 5485 5486 // Given a StartRange, Step and MaxBECount for an expression compute a range of 5487 // values that the expression can take. Initially, the expression has a value 5488 // from StartRange and then is changed by Step up to MaxBECount times. Signed 5489 // argument defines if we treat Step as signed or unsigned. 5490 static ConstantRange getRangeForAffineARHelper(APInt Step, 5491 const ConstantRange &StartRange, 5492 const APInt &MaxBECount, 5493 unsigned BitWidth, bool Signed) { 5494 // If either Step or MaxBECount is 0, then the expression won't change, and we 5495 // just need to return the initial range. 5496 if (Step == 0 || MaxBECount == 0) 5497 return StartRange; 5498 5499 // If we don't know anything about the initial value (i.e. StartRange is 5500 // FullRange), then we don't know anything about the final range either. 5501 // Return FullRange. 5502 if (StartRange.isFullSet()) 5503 return ConstantRange(BitWidth, /* isFullSet = */ true); 5504 5505 // If Step is signed and negative, then we use its absolute value, but we also 5506 // note that we're moving in the opposite direction. 5507 bool Descending = Signed && Step.isNegative(); 5508 5509 if (Signed) 5510 // This is correct even for INT_SMIN. Let's look at i8 to illustrate this: 5511 // abs(INT_SMIN) = abs(-128) = abs(0x80) = -0x80 = 0x80 = 128. 5512 // This equations hold true due to the well-defined wrap-around behavior of 5513 // APInt. 5514 Step = Step.abs(); 5515 5516 // Check if Offset is more than full span of BitWidth. If it is, the 5517 // expression is guaranteed to overflow. 5518 if (APInt::getMaxValue(StartRange.getBitWidth()).udiv(Step).ult(MaxBECount)) 5519 return ConstantRange(BitWidth, /* isFullSet = */ true); 5520 5521 // Offset is by how much the expression can change. Checks above guarantee no 5522 // overflow here. 5523 APInt Offset = Step * MaxBECount; 5524 5525 // Minimum value of the final range will match the minimal value of StartRange 5526 // if the expression is increasing and will be decreased by Offset otherwise. 5527 // Maximum value of the final range will match the maximal value of StartRange 5528 // if the expression is decreasing and will be increased by Offset otherwise. 5529 APInt StartLower = StartRange.getLower(); 5530 APInt StartUpper = StartRange.getUpper() - 1; 5531 APInt MovedBoundary = Descending ? (StartLower - std::move(Offset)) 5532 : (StartUpper + std::move(Offset)); 5533 5534 // It's possible that the new minimum/maximum value will fall into the initial 5535 // range (due to wrap around). This means that the expression can take any 5536 // value in this bitwidth, and we have to return full range. 5537 if (StartRange.contains(MovedBoundary)) 5538 return ConstantRange(BitWidth, /* isFullSet = */ true); 5539 5540 APInt NewLower = 5541 Descending ? std::move(MovedBoundary) : std::move(StartLower); 5542 APInt NewUpper = 5543 Descending ? std::move(StartUpper) : std::move(MovedBoundary); 5544 NewUpper += 1; 5545 5546 // If we end up with full range, return a proper full range. 5547 if (NewLower == NewUpper) 5548 return ConstantRange(BitWidth, /* isFullSet = */ true); 5549 5550 // No overflow detected, return [StartLower, StartUpper + Offset + 1) range. 5551 return ConstantRange(std::move(NewLower), std::move(NewUpper)); 5552 } 5553 5554 ConstantRange ScalarEvolution::getRangeForAffineAR(const SCEV *Start, 5555 const SCEV *Step, 5556 const SCEV *MaxBECount, 5557 unsigned BitWidth) { 5558 assert(!isa<SCEVCouldNotCompute>(MaxBECount) && 5559 getTypeSizeInBits(MaxBECount->getType()) <= BitWidth && 5560 "Precondition!"); 5561 5562 MaxBECount = getNoopOrZeroExtend(MaxBECount, Start->getType()); 5563 APInt MaxBECountValue = getUnsignedRangeMax(MaxBECount); 5564 5565 // First, consider step signed. 5566 ConstantRange StartSRange = getSignedRange(Start); 5567 ConstantRange StepSRange = getSignedRange(Step); 5568 5569 // If Step can be both positive and negative, we need to find ranges for the 5570 // maximum absolute step values in both directions and union them. 5571 ConstantRange SR = 5572 getRangeForAffineARHelper(StepSRange.getSignedMin(), StartSRange, 5573 MaxBECountValue, BitWidth, /* Signed = */ true); 5574 SR = SR.unionWith(getRangeForAffineARHelper(StepSRange.getSignedMax(), 5575 StartSRange, MaxBECountValue, 5576 BitWidth, /* Signed = */ true)); 5577 5578 // Next, consider step unsigned. 5579 ConstantRange UR = getRangeForAffineARHelper( 5580 getUnsignedRangeMax(Step), getUnsignedRange(Start), 5581 MaxBECountValue, BitWidth, /* Signed = */ false); 5582 5583 // Finally, intersect signed and unsigned ranges. 5584 return SR.intersectWith(UR); 5585 } 5586 5587 ConstantRange ScalarEvolution::getRangeViaFactoring(const SCEV *Start, 5588 const SCEV *Step, 5589 const SCEV *MaxBECount, 5590 unsigned BitWidth) { 5591 // RangeOf({C?A:B,+,C?P:Q}) == RangeOf(C?{A,+,P}:{B,+,Q}) 5592 // == RangeOf({A,+,P}) union RangeOf({B,+,Q}) 5593 5594 struct SelectPattern { 5595 Value *Condition = nullptr; 5596 APInt TrueValue; 5597 APInt FalseValue; 5598 5599 explicit SelectPattern(ScalarEvolution &SE, unsigned BitWidth, 5600 const SCEV *S) { 5601 Optional<unsigned> CastOp; 5602 APInt Offset(BitWidth, 0); 5603 5604 assert(SE.getTypeSizeInBits(S->getType()) == BitWidth && 5605 "Should be!"); 5606 5607 // Peel off a constant offset: 5608 if (auto *SA = dyn_cast<SCEVAddExpr>(S)) { 5609 // In the future we could consider being smarter here and handle 5610 // {Start+Step,+,Step} too. 5611 if (SA->getNumOperands() != 2 || !isa<SCEVConstant>(SA->getOperand(0))) 5612 return; 5613 5614 Offset = cast<SCEVConstant>(SA->getOperand(0))->getAPInt(); 5615 S = SA->getOperand(1); 5616 } 5617 5618 // Peel off a cast operation 5619 if (auto *SCast = dyn_cast<SCEVCastExpr>(S)) { 5620 CastOp = SCast->getSCEVType(); 5621 S = SCast->getOperand(); 5622 } 5623 5624 using namespace llvm::PatternMatch; 5625 5626 auto *SU = dyn_cast<SCEVUnknown>(S); 5627 const APInt *TrueVal, *FalseVal; 5628 if (!SU || 5629 !match(SU->getValue(), m_Select(m_Value(Condition), m_APInt(TrueVal), 5630 m_APInt(FalseVal)))) { 5631 Condition = nullptr; 5632 return; 5633 } 5634 5635 TrueValue = *TrueVal; 5636 FalseValue = *FalseVal; 5637 5638 // Re-apply the cast we peeled off earlier 5639 if (CastOp.hasValue()) 5640 switch (*CastOp) { 5641 default: 5642 llvm_unreachable("Unknown SCEV cast type!"); 5643 5644 case scTruncate: 5645 TrueValue = TrueValue.trunc(BitWidth); 5646 FalseValue = FalseValue.trunc(BitWidth); 5647 break; 5648 case scZeroExtend: 5649 TrueValue = TrueValue.zext(BitWidth); 5650 FalseValue = FalseValue.zext(BitWidth); 5651 break; 5652 case scSignExtend: 5653 TrueValue = TrueValue.sext(BitWidth); 5654 FalseValue = FalseValue.sext(BitWidth); 5655 break; 5656 } 5657 5658 // Re-apply the constant offset we peeled off earlier 5659 TrueValue += Offset; 5660 FalseValue += Offset; 5661 } 5662 5663 bool isRecognized() { return Condition != nullptr; } 5664 }; 5665 5666 SelectPattern StartPattern(*this, BitWidth, Start); 5667 if (!StartPattern.isRecognized()) 5668 return ConstantRange(BitWidth, /* isFullSet = */ true); 5669 5670 SelectPattern StepPattern(*this, BitWidth, Step); 5671 if (!StepPattern.isRecognized()) 5672 return ConstantRange(BitWidth, /* isFullSet = */ true); 5673 5674 if (StartPattern.Condition != StepPattern.Condition) { 5675 // We don't handle this case today; but we could, by considering four 5676 // possibilities below instead of two. I'm not sure if there are cases where 5677 // that will help over what getRange already does, though. 5678 return ConstantRange(BitWidth, /* isFullSet = */ true); 5679 } 5680 5681 // NB! Calling ScalarEvolution::getConstant is fine, but we should not try to 5682 // construct arbitrary general SCEV expressions here. This function is called 5683 // from deep in the call stack, and calling getSCEV (on a sext instruction, 5684 // say) can end up caching a suboptimal value. 5685 5686 // FIXME: without the explicit `this` receiver below, MSVC errors out with 5687 // C2352 and C2512 (otherwise it isn't needed). 5688 5689 const SCEV *TrueStart = this->getConstant(StartPattern.TrueValue); 5690 const SCEV *TrueStep = this->getConstant(StepPattern.TrueValue); 5691 const SCEV *FalseStart = this->getConstant(StartPattern.FalseValue); 5692 const SCEV *FalseStep = this->getConstant(StepPattern.FalseValue); 5693 5694 ConstantRange TrueRange = 5695 this->getRangeForAffineAR(TrueStart, TrueStep, MaxBECount, BitWidth); 5696 ConstantRange FalseRange = 5697 this->getRangeForAffineAR(FalseStart, FalseStep, MaxBECount, BitWidth); 5698 5699 return TrueRange.unionWith(FalseRange); 5700 } 5701 5702 SCEV::NoWrapFlags ScalarEvolution::getNoWrapFlagsFromUB(const Value *V) { 5703 if (isa<ConstantExpr>(V)) return SCEV::FlagAnyWrap; 5704 const BinaryOperator *BinOp = cast<BinaryOperator>(V); 5705 5706 // Return early if there are no flags to propagate to the SCEV. 5707 SCEV::NoWrapFlags Flags = SCEV::FlagAnyWrap; 5708 if (BinOp->hasNoUnsignedWrap()) 5709 Flags = ScalarEvolution::setFlags(Flags, SCEV::FlagNUW); 5710 if (BinOp->hasNoSignedWrap()) 5711 Flags = ScalarEvolution::setFlags(Flags, SCEV::FlagNSW); 5712 if (Flags == SCEV::FlagAnyWrap) 5713 return SCEV::FlagAnyWrap; 5714 5715 return isSCEVExprNeverPoison(BinOp) ? Flags : SCEV::FlagAnyWrap; 5716 } 5717 5718 bool ScalarEvolution::isSCEVExprNeverPoison(const Instruction *I) { 5719 // Here we check that I is in the header of the innermost loop containing I, 5720 // since we only deal with instructions in the loop header. The actual loop we 5721 // need to check later will come from an add recurrence, but getting that 5722 // requires computing the SCEV of the operands, which can be expensive. This 5723 // check we can do cheaply to rule out some cases early. 5724 Loop *InnermostContainingLoop = LI.getLoopFor(I->getParent()); 5725 if (InnermostContainingLoop == nullptr || 5726 InnermostContainingLoop->getHeader() != I->getParent()) 5727 return false; 5728 5729 // Only proceed if we can prove that I does not yield poison. 5730 if (!programUndefinedIfFullPoison(I)) 5731 return false; 5732 5733 // At this point we know that if I is executed, then it does not wrap 5734 // according to at least one of NSW or NUW. If I is not executed, then we do 5735 // not know if the calculation that I represents would wrap. Multiple 5736 // instructions can map to the same SCEV. If we apply NSW or NUW from I to 5737 // the SCEV, we must guarantee no wrapping for that SCEV also when it is 5738 // derived from other instructions that map to the same SCEV. We cannot make 5739 // that guarantee for cases where I is not executed. So we need to find the 5740 // loop that I is considered in relation to and prove that I is executed for 5741 // every iteration of that loop. That implies that the value that I 5742 // calculates does not wrap anywhere in the loop, so then we can apply the 5743 // flags to the SCEV. 5744 // 5745 // We check isLoopInvariant to disambiguate in case we are adding recurrences 5746 // from different loops, so that we know which loop to prove that I is 5747 // executed in. 5748 for (unsigned OpIndex = 0; OpIndex < I->getNumOperands(); ++OpIndex) { 5749 // I could be an extractvalue from a call to an overflow intrinsic. 5750 // TODO: We can do better here in some cases. 5751 if (!isSCEVable(I->getOperand(OpIndex)->getType())) 5752 return false; 5753 const SCEV *Op = getSCEV(I->getOperand(OpIndex)); 5754 if (auto *AddRec = dyn_cast<SCEVAddRecExpr>(Op)) { 5755 bool AllOtherOpsLoopInvariant = true; 5756 for (unsigned OtherOpIndex = 0; OtherOpIndex < I->getNumOperands(); 5757 ++OtherOpIndex) { 5758 if (OtherOpIndex != OpIndex) { 5759 const SCEV *OtherOp = getSCEV(I->getOperand(OtherOpIndex)); 5760 if (!isLoopInvariant(OtherOp, AddRec->getLoop())) { 5761 AllOtherOpsLoopInvariant = false; 5762 break; 5763 } 5764 } 5765 } 5766 if (AllOtherOpsLoopInvariant && 5767 isGuaranteedToExecuteForEveryIteration(I, AddRec->getLoop())) 5768 return true; 5769 } 5770 } 5771 return false; 5772 } 5773 5774 bool ScalarEvolution::isAddRecNeverPoison(const Instruction *I, const Loop *L) { 5775 // If we know that \c I can never be poison period, then that's enough. 5776 if (isSCEVExprNeverPoison(I)) 5777 return true; 5778 5779 // For an add recurrence specifically, we assume that infinite loops without 5780 // side effects are undefined behavior, and then reason as follows: 5781 // 5782 // If the add recurrence is poison in any iteration, it is poison on all 5783 // future iterations (since incrementing poison yields poison). If the result 5784 // of the add recurrence is fed into the loop latch condition and the loop 5785 // does not contain any throws or exiting blocks other than the latch, we now 5786 // have the ability to "choose" whether the backedge is taken or not (by 5787 // choosing a sufficiently evil value for the poison feeding into the branch) 5788 // for every iteration including and after the one in which \p I first became 5789 // poison. There are two possibilities (let's call the iteration in which \p 5790 // I first became poison as K): 5791 // 5792 // 1. In the set of iterations including and after K, the loop body executes 5793 // no side effects. In this case executing the backege an infinte number 5794 // of times will yield undefined behavior. 5795 // 5796 // 2. In the set of iterations including and after K, the loop body executes 5797 // at least one side effect. In this case, that specific instance of side 5798 // effect is control dependent on poison, which also yields undefined 5799 // behavior. 5800 5801 auto *ExitingBB = L->getExitingBlock(); 5802 auto *LatchBB = L->getLoopLatch(); 5803 if (!ExitingBB || !LatchBB || ExitingBB != LatchBB) 5804 return false; 5805 5806 SmallPtrSet<const Instruction *, 16> Pushed; 5807 SmallVector<const Instruction *, 8> PoisonStack; 5808 5809 // We start by assuming \c I, the post-inc add recurrence, is poison. Only 5810 // things that are known to be fully poison under that assumption go on the 5811 // PoisonStack. 5812 Pushed.insert(I); 5813 PoisonStack.push_back(I); 5814 5815 bool LatchControlDependentOnPoison = false; 5816 while (!PoisonStack.empty() && !LatchControlDependentOnPoison) { 5817 const Instruction *Poison = PoisonStack.pop_back_val(); 5818 5819 for (auto *PoisonUser : Poison->users()) { 5820 if (propagatesFullPoison(cast<Instruction>(PoisonUser))) { 5821 if (Pushed.insert(cast<Instruction>(PoisonUser)).second) 5822 PoisonStack.push_back(cast<Instruction>(PoisonUser)); 5823 } else if (auto *BI = dyn_cast<BranchInst>(PoisonUser)) { 5824 assert(BI->isConditional() && "Only possibility!"); 5825 if (BI->getParent() == LatchBB) { 5826 LatchControlDependentOnPoison = true; 5827 break; 5828 } 5829 } 5830 } 5831 } 5832 5833 return LatchControlDependentOnPoison && loopHasNoAbnormalExits(L); 5834 } 5835 5836 ScalarEvolution::LoopProperties 5837 ScalarEvolution::getLoopProperties(const Loop *L) { 5838 using LoopProperties = ScalarEvolution::LoopProperties; 5839 5840 auto Itr = LoopPropertiesCache.find(L); 5841 if (Itr == LoopPropertiesCache.end()) { 5842 auto HasSideEffects = [](Instruction *I) { 5843 if (auto *SI = dyn_cast<StoreInst>(I)) 5844 return !SI->isSimple(); 5845 5846 return I->mayHaveSideEffects(); 5847 }; 5848 5849 LoopProperties LP = {/* HasNoAbnormalExits */ true, 5850 /*HasNoSideEffects*/ true}; 5851 5852 for (auto *BB : L->getBlocks()) 5853 for (auto &I : *BB) { 5854 if (!isGuaranteedToTransferExecutionToSuccessor(&I)) 5855 LP.HasNoAbnormalExits = false; 5856 if (HasSideEffects(&I)) 5857 LP.HasNoSideEffects = false; 5858 if (!LP.HasNoAbnormalExits && !LP.HasNoSideEffects) 5859 break; // We're already as pessimistic as we can get. 5860 } 5861 5862 auto InsertPair = LoopPropertiesCache.insert({L, LP}); 5863 assert(InsertPair.second && "We just checked!"); 5864 Itr = InsertPair.first; 5865 } 5866 5867 return Itr->second; 5868 } 5869 5870 const SCEV *ScalarEvolution::createSCEV(Value *V) { 5871 if (!isSCEVable(V->getType())) 5872 return getUnknown(V); 5873 5874 if (Instruction *I = dyn_cast<Instruction>(V)) { 5875 // Don't attempt to analyze instructions in blocks that aren't 5876 // reachable. Such instructions don't matter, and they aren't required 5877 // to obey basic rules for definitions dominating uses which this 5878 // analysis depends on. 5879 if (!DT.isReachableFromEntry(I->getParent())) 5880 return getUnknown(V); 5881 } else if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) 5882 return getConstant(CI); 5883 else if (isa<ConstantPointerNull>(V)) 5884 return getZero(V->getType()); 5885 else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) 5886 return GA->isInterposable() ? getUnknown(V) : getSCEV(GA->getAliasee()); 5887 else if (!isa<ConstantExpr>(V)) 5888 return getUnknown(V); 5889 5890 Operator *U = cast<Operator>(V); 5891 if (auto BO = MatchBinaryOp(U, DT)) { 5892 switch (BO->Opcode) { 5893 case Instruction::Add: { 5894 // The simple thing to do would be to just call getSCEV on both operands 5895 // and call getAddExpr with the result. However if we're looking at a 5896 // bunch of things all added together, this can be quite inefficient, 5897 // because it leads to N-1 getAddExpr calls for N ultimate operands. 5898 // Instead, gather up all the operands and make a single getAddExpr call. 5899 // LLVM IR canonical form means we need only traverse the left operands. 5900 SmallVector<const SCEV *, 4> AddOps; 5901 do { 5902 if (BO->Op) { 5903 if (auto *OpSCEV = getExistingSCEV(BO->Op)) { 5904 AddOps.push_back(OpSCEV); 5905 break; 5906 } 5907 5908 // If a NUW or NSW flag can be applied to the SCEV for this 5909 // addition, then compute the SCEV for this addition by itself 5910 // with a separate call to getAddExpr. We need to do that 5911 // instead of pushing the operands of the addition onto AddOps, 5912 // since the flags are only known to apply to this particular 5913 // addition - they may not apply to other additions that can be 5914 // formed with operands from AddOps. 5915 const SCEV *RHS = getSCEV(BO->RHS); 5916 SCEV::NoWrapFlags Flags = getNoWrapFlagsFromUB(BO->Op); 5917 if (Flags != SCEV::FlagAnyWrap) { 5918 const SCEV *LHS = getSCEV(BO->LHS); 5919 if (BO->Opcode == Instruction::Sub) 5920 AddOps.push_back(getMinusSCEV(LHS, RHS, Flags)); 5921 else 5922 AddOps.push_back(getAddExpr(LHS, RHS, Flags)); 5923 break; 5924 } 5925 } 5926 5927 if (BO->Opcode == Instruction::Sub) 5928 AddOps.push_back(getNegativeSCEV(getSCEV(BO->RHS))); 5929 else 5930 AddOps.push_back(getSCEV(BO->RHS)); 5931 5932 auto NewBO = MatchBinaryOp(BO->LHS, DT); 5933 if (!NewBO || (NewBO->Opcode != Instruction::Add && 5934 NewBO->Opcode != Instruction::Sub)) { 5935 AddOps.push_back(getSCEV(BO->LHS)); 5936 break; 5937 } 5938 BO = NewBO; 5939 } while (true); 5940 5941 return getAddExpr(AddOps); 5942 } 5943 5944 case Instruction::Mul: { 5945 SmallVector<const SCEV *, 4> MulOps; 5946 do { 5947 if (BO->Op) { 5948 if (auto *OpSCEV = getExistingSCEV(BO->Op)) { 5949 MulOps.push_back(OpSCEV); 5950 break; 5951 } 5952 5953 SCEV::NoWrapFlags Flags = getNoWrapFlagsFromUB(BO->Op); 5954 if (Flags != SCEV::FlagAnyWrap) { 5955 MulOps.push_back( 5956 getMulExpr(getSCEV(BO->LHS), getSCEV(BO->RHS), Flags)); 5957 break; 5958 } 5959 } 5960 5961 MulOps.push_back(getSCEV(BO->RHS)); 5962 auto NewBO = MatchBinaryOp(BO->LHS, DT); 5963 if (!NewBO || NewBO->Opcode != Instruction::Mul) { 5964 MulOps.push_back(getSCEV(BO->LHS)); 5965 break; 5966 } 5967 BO = NewBO; 5968 } while (true); 5969 5970 return getMulExpr(MulOps); 5971 } 5972 case Instruction::UDiv: 5973 return getUDivExpr(getSCEV(BO->LHS), getSCEV(BO->RHS)); 5974 case Instruction::URem: 5975 return getURemExpr(getSCEV(BO->LHS), getSCEV(BO->RHS)); 5976 case Instruction::Sub: { 5977 SCEV::NoWrapFlags Flags = SCEV::FlagAnyWrap; 5978 if (BO->Op) 5979 Flags = getNoWrapFlagsFromUB(BO->Op); 5980 return getMinusSCEV(getSCEV(BO->LHS), getSCEV(BO->RHS), Flags); 5981 } 5982 case Instruction::And: 5983 // For an expression like x&255 that merely masks off the high bits, 5984 // use zext(trunc(x)) as the SCEV expression. 5985 if (ConstantInt *CI = dyn_cast<ConstantInt>(BO->RHS)) { 5986 if (CI->isZero()) 5987 return getSCEV(BO->RHS); 5988 if (CI->isMinusOne()) 5989 return getSCEV(BO->LHS); 5990 const APInt &A = CI->getValue(); 5991 5992 // Instcombine's ShrinkDemandedConstant may strip bits out of 5993 // constants, obscuring what would otherwise be a low-bits mask. 5994 // Use computeKnownBits to compute what ShrinkDemandedConstant 5995 // knew about to reconstruct a low-bits mask value. 5996 unsigned LZ = A.countLeadingZeros(); 5997 unsigned TZ = A.countTrailingZeros(); 5998 unsigned BitWidth = A.getBitWidth(); 5999 KnownBits Known(BitWidth); 6000 computeKnownBits(BO->LHS, Known, getDataLayout(), 6001 0, &AC, nullptr, &DT); 6002 6003 APInt EffectiveMask = 6004 APInt::getLowBitsSet(BitWidth, BitWidth - LZ - TZ).shl(TZ); 6005 if ((LZ != 0 || TZ != 0) && !((~A & ~Known.Zero) & EffectiveMask)) { 6006 const SCEV *MulCount = getConstant(APInt::getOneBitSet(BitWidth, TZ)); 6007 const SCEV *LHS = getSCEV(BO->LHS); 6008 const SCEV *ShiftedLHS = nullptr; 6009 if (auto *LHSMul = dyn_cast<SCEVMulExpr>(LHS)) { 6010 if (auto *OpC = dyn_cast<SCEVConstant>(LHSMul->getOperand(0))) { 6011 // For an expression like (x * 8) & 8, simplify the multiply. 6012 unsigned MulZeros = OpC->getAPInt().countTrailingZeros(); 6013 unsigned GCD = std::min(MulZeros, TZ); 6014 APInt DivAmt = APInt::getOneBitSet(BitWidth, TZ - GCD); 6015 SmallVector<const SCEV*, 4> MulOps; 6016 MulOps.push_back(getConstant(OpC->getAPInt().lshr(GCD))); 6017 MulOps.append(LHSMul->op_begin() + 1, LHSMul->op_end()); 6018 auto *NewMul = getMulExpr(MulOps, LHSMul->getNoWrapFlags()); 6019 ShiftedLHS = getUDivExpr(NewMul, getConstant(DivAmt)); 6020 } 6021 } 6022 if (!ShiftedLHS) 6023 ShiftedLHS = getUDivExpr(LHS, MulCount); 6024 return getMulExpr( 6025 getZeroExtendExpr( 6026 getTruncateExpr(ShiftedLHS, 6027 IntegerType::get(getContext(), BitWidth - LZ - TZ)), 6028 BO->LHS->getType()), 6029 MulCount); 6030 } 6031 } 6032 break; 6033 6034 case Instruction::Or: 6035 // If the RHS of the Or is a constant, we may have something like: 6036 // X*4+1 which got turned into X*4|1. Handle this as an Add so loop 6037 // optimizations will transparently handle this case. 6038 // 6039 // In order for this transformation to be safe, the LHS must be of the 6040 // form X*(2^n) and the Or constant must be less than 2^n. 6041 if (ConstantInt *CI = dyn_cast<ConstantInt>(BO->RHS)) { 6042 const SCEV *LHS = getSCEV(BO->LHS); 6043 const APInt &CIVal = CI->getValue(); 6044 if (GetMinTrailingZeros(LHS) >= 6045 (CIVal.getBitWidth() - CIVal.countLeadingZeros())) { 6046 // Build a plain add SCEV. 6047 const SCEV *S = getAddExpr(LHS, getSCEV(CI)); 6048 // If the LHS of the add was an addrec and it has no-wrap flags, 6049 // transfer the no-wrap flags, since an or won't introduce a wrap. 6050 if (const SCEVAddRecExpr *NewAR = dyn_cast<SCEVAddRecExpr>(S)) { 6051 const SCEVAddRecExpr *OldAR = cast<SCEVAddRecExpr>(LHS); 6052 const_cast<SCEVAddRecExpr *>(NewAR)->setNoWrapFlags( 6053 OldAR->getNoWrapFlags()); 6054 } 6055 return S; 6056 } 6057 } 6058 break; 6059 6060 case Instruction::Xor: 6061 if (ConstantInt *CI = dyn_cast<ConstantInt>(BO->RHS)) { 6062 // If the RHS of xor is -1, then this is a not operation. 6063 if (CI->isMinusOne()) 6064 return getNotSCEV(getSCEV(BO->LHS)); 6065 6066 // Model xor(and(x, C), C) as and(~x, C), if C is a low-bits mask. 6067 // This is a variant of the check for xor with -1, and it handles 6068 // the case where instcombine has trimmed non-demanded bits out 6069 // of an xor with -1. 6070 if (auto *LBO = dyn_cast<BinaryOperator>(BO->LHS)) 6071 if (ConstantInt *LCI = dyn_cast<ConstantInt>(LBO->getOperand(1))) 6072 if (LBO->getOpcode() == Instruction::And && 6073 LCI->getValue() == CI->getValue()) 6074 if (const SCEVZeroExtendExpr *Z = 6075 dyn_cast<SCEVZeroExtendExpr>(getSCEV(BO->LHS))) { 6076 Type *UTy = BO->LHS->getType(); 6077 const SCEV *Z0 = Z->getOperand(); 6078 Type *Z0Ty = Z0->getType(); 6079 unsigned Z0TySize = getTypeSizeInBits(Z0Ty); 6080 6081 // If C is a low-bits mask, the zero extend is serving to 6082 // mask off the high bits. Complement the operand and 6083 // re-apply the zext. 6084 if (CI->getValue().isMask(Z0TySize)) 6085 return getZeroExtendExpr(getNotSCEV(Z0), UTy); 6086 6087 // If C is a single bit, it may be in the sign-bit position 6088 // before the zero-extend. In this case, represent the xor 6089 // using an add, which is equivalent, and re-apply the zext. 6090 APInt Trunc = CI->getValue().trunc(Z0TySize); 6091 if (Trunc.zext(getTypeSizeInBits(UTy)) == CI->getValue() && 6092 Trunc.isSignMask()) 6093 return getZeroExtendExpr(getAddExpr(Z0, getConstant(Trunc)), 6094 UTy); 6095 } 6096 } 6097 break; 6098 6099 case Instruction::Shl: 6100 // Turn shift left of a constant amount into a multiply. 6101 if (ConstantInt *SA = dyn_cast<ConstantInt>(BO->RHS)) { 6102 uint32_t BitWidth = cast<IntegerType>(SA->getType())->getBitWidth(); 6103 6104 // If the shift count is not less than the bitwidth, the result of 6105 // the shift is undefined. Don't try to analyze it, because the 6106 // resolution chosen here may differ from the resolution chosen in 6107 // other parts of the compiler. 6108 if (SA->getValue().uge(BitWidth)) 6109 break; 6110 6111 // It is currently not resolved how to interpret NSW for left 6112 // shift by BitWidth - 1, so we avoid applying flags in that 6113 // case. Remove this check (or this comment) once the situation 6114 // is resolved. See 6115 // http://lists.llvm.org/pipermail/llvm-dev/2015-April/084195.html 6116 // and http://reviews.llvm.org/D8890 . 6117 auto Flags = SCEV::FlagAnyWrap; 6118 if (BO->Op && SA->getValue().ult(BitWidth - 1)) 6119 Flags = getNoWrapFlagsFromUB(BO->Op); 6120 6121 Constant *X = ConstantInt::get(getContext(), 6122 APInt::getOneBitSet(BitWidth, SA->getZExtValue())); 6123 return getMulExpr(getSCEV(BO->LHS), getSCEV(X), Flags); 6124 } 6125 break; 6126 6127 case Instruction::AShr: { 6128 // AShr X, C, where C is a constant. 6129 ConstantInt *CI = dyn_cast<ConstantInt>(BO->RHS); 6130 if (!CI) 6131 break; 6132 6133 Type *OuterTy = BO->LHS->getType(); 6134 uint64_t BitWidth = getTypeSizeInBits(OuterTy); 6135 // If the shift count is not less than the bitwidth, the result of 6136 // the shift is undefined. Don't try to analyze it, because the 6137 // resolution chosen here may differ from the resolution chosen in 6138 // other parts of the compiler. 6139 if (CI->getValue().uge(BitWidth)) 6140 break; 6141 6142 if (CI->isZero()) 6143 return getSCEV(BO->LHS); // shift by zero --> noop 6144 6145 uint64_t AShrAmt = CI->getZExtValue(); 6146 Type *TruncTy = IntegerType::get(getContext(), BitWidth - AShrAmt); 6147 6148 Operator *L = dyn_cast<Operator>(BO->LHS); 6149 if (L && L->getOpcode() == Instruction::Shl) { 6150 // X = Shl A, n 6151 // Y = AShr X, m 6152 // Both n and m are constant. 6153 6154 const SCEV *ShlOp0SCEV = getSCEV(L->getOperand(0)); 6155 if (L->getOperand(1) == BO->RHS) 6156 // For a two-shift sext-inreg, i.e. n = m, 6157 // use sext(trunc(x)) as the SCEV expression. 6158 return getSignExtendExpr( 6159 getTruncateExpr(ShlOp0SCEV, TruncTy), OuterTy); 6160 6161 ConstantInt *ShlAmtCI = dyn_cast<ConstantInt>(L->getOperand(1)); 6162 if (ShlAmtCI && ShlAmtCI->getValue().ult(BitWidth)) { 6163 uint64_t ShlAmt = ShlAmtCI->getZExtValue(); 6164 if (ShlAmt > AShrAmt) { 6165 // When n > m, use sext(mul(trunc(x), 2^(n-m)))) as the SCEV 6166 // expression. We already checked that ShlAmt < BitWidth, so 6167 // the multiplier, 1 << (ShlAmt - AShrAmt), fits into TruncTy as 6168 // ShlAmt - AShrAmt < Amt. 6169 APInt Mul = APInt::getOneBitSet(BitWidth - AShrAmt, 6170 ShlAmt - AShrAmt); 6171 return getSignExtendExpr( 6172 getMulExpr(getTruncateExpr(ShlOp0SCEV, TruncTy), 6173 getConstant(Mul)), OuterTy); 6174 } 6175 } 6176 } 6177 break; 6178 } 6179 } 6180 } 6181 6182 switch (U->getOpcode()) { 6183 case Instruction::Trunc: 6184 return getTruncateExpr(getSCEV(U->getOperand(0)), U->getType()); 6185 6186 case Instruction::ZExt: 6187 return getZeroExtendExpr(getSCEV(U->getOperand(0)), U->getType()); 6188 6189 case Instruction::SExt: 6190 if (auto BO = MatchBinaryOp(U->getOperand(0), DT)) { 6191 // The NSW flag of a subtract does not always survive the conversion to 6192 // A + (-1)*B. By pushing sign extension onto its operands we are much 6193 // more likely to preserve NSW and allow later AddRec optimisations. 6194 // 6195 // NOTE: This is effectively duplicating this logic from getSignExtend: 6196 // sext((A + B + ...)<nsw>) --> (sext(A) + sext(B) + ...)<nsw> 6197 // but by that point the NSW information has potentially been lost. 6198 if (BO->Opcode == Instruction::Sub && BO->IsNSW) { 6199 Type *Ty = U->getType(); 6200 auto *V1 = getSignExtendExpr(getSCEV(BO->LHS), Ty); 6201 auto *V2 = getSignExtendExpr(getSCEV(BO->RHS), Ty); 6202 return getMinusSCEV(V1, V2, SCEV::FlagNSW); 6203 } 6204 } 6205 return getSignExtendExpr(getSCEV(U->getOperand(0)), U->getType()); 6206 6207 case Instruction::BitCast: 6208 // BitCasts are no-op casts so we just eliminate the cast. 6209 if (isSCEVable(U->getType()) && isSCEVable(U->getOperand(0)->getType())) 6210 return getSCEV(U->getOperand(0)); 6211 break; 6212 6213 // It's tempting to handle inttoptr and ptrtoint as no-ops, however this can 6214 // lead to pointer expressions which cannot safely be expanded to GEPs, 6215 // because ScalarEvolution doesn't respect the GEP aliasing rules when 6216 // simplifying integer expressions. 6217 6218 case Instruction::GetElementPtr: 6219 return createNodeForGEP(cast<GEPOperator>(U)); 6220 6221 case Instruction::PHI: 6222 return createNodeForPHI(cast<PHINode>(U)); 6223 6224 case Instruction::Select: 6225 // U can also be a select constant expr, which let fall through. Since 6226 // createNodeForSelect only works for a condition that is an `ICmpInst`, and 6227 // constant expressions cannot have instructions as operands, we'd have 6228 // returned getUnknown for a select constant expressions anyway. 6229 if (isa<Instruction>(U)) 6230 return createNodeForSelectOrPHI(cast<Instruction>(U), U->getOperand(0), 6231 U->getOperand(1), U->getOperand(2)); 6232 break; 6233 6234 case Instruction::Call: 6235 case Instruction::Invoke: 6236 if (Value *RV = CallSite(U).getReturnedArgOperand()) 6237 return getSCEV(RV); 6238 break; 6239 } 6240 6241 return getUnknown(V); 6242 } 6243 6244 //===----------------------------------------------------------------------===// 6245 // Iteration Count Computation Code 6246 // 6247 6248 static unsigned getConstantTripCount(const SCEVConstant *ExitCount) { 6249 if (!ExitCount) 6250 return 0; 6251 6252 ConstantInt *ExitConst = ExitCount->getValue(); 6253 6254 // Guard against huge trip counts. 6255 if (ExitConst->getValue().getActiveBits() > 32) 6256 return 0; 6257 6258 // In case of integer overflow, this returns 0, which is correct. 6259 return ((unsigned)ExitConst->getZExtValue()) + 1; 6260 } 6261 6262 unsigned ScalarEvolution::getSmallConstantTripCount(const Loop *L) { 6263 if (BasicBlock *ExitingBB = L->getExitingBlock()) 6264 return getSmallConstantTripCount(L, ExitingBB); 6265 6266 // No trip count information for multiple exits. 6267 return 0; 6268 } 6269 6270 unsigned ScalarEvolution::getSmallConstantTripCount(const Loop *L, 6271 BasicBlock *ExitingBlock) { 6272 assert(ExitingBlock && "Must pass a non-null exiting block!"); 6273 assert(L->isLoopExiting(ExitingBlock) && 6274 "Exiting block must actually branch out of the loop!"); 6275 const SCEVConstant *ExitCount = 6276 dyn_cast<SCEVConstant>(getExitCount(L, ExitingBlock)); 6277 return getConstantTripCount(ExitCount); 6278 } 6279 6280 unsigned ScalarEvolution::getSmallConstantMaxTripCount(const Loop *L) { 6281 const auto *MaxExitCount = 6282 dyn_cast<SCEVConstant>(getMaxBackedgeTakenCount(L)); 6283 return getConstantTripCount(MaxExitCount); 6284 } 6285 6286 unsigned ScalarEvolution::getSmallConstantTripMultiple(const Loop *L) { 6287 if (BasicBlock *ExitingBB = L->getExitingBlock()) 6288 return getSmallConstantTripMultiple(L, ExitingBB); 6289 6290 // No trip multiple information for multiple exits. 6291 return 0; 6292 } 6293 6294 /// Returns the largest constant divisor of the trip count of this loop as a 6295 /// normal unsigned value, if possible. This means that the actual trip count is 6296 /// always a multiple of the returned value (don't forget the trip count could 6297 /// very well be zero as well!). 6298 /// 6299 /// Returns 1 if the trip count is unknown or not guaranteed to be the 6300 /// multiple of a constant (which is also the case if the trip count is simply 6301 /// constant, use getSmallConstantTripCount for that case), Will also return 1 6302 /// if the trip count is very large (>= 2^32). 6303 /// 6304 /// As explained in the comments for getSmallConstantTripCount, this assumes 6305 /// that control exits the loop via ExitingBlock. 6306 unsigned 6307 ScalarEvolution::getSmallConstantTripMultiple(const Loop *L, 6308 BasicBlock *ExitingBlock) { 6309 assert(ExitingBlock && "Must pass a non-null exiting block!"); 6310 assert(L->isLoopExiting(ExitingBlock) && 6311 "Exiting block must actually branch out of the loop!"); 6312 const SCEV *ExitCount = getExitCount(L, ExitingBlock); 6313 if (ExitCount == getCouldNotCompute()) 6314 return 1; 6315 6316 // Get the trip count from the BE count by adding 1. 6317 const SCEV *TCExpr = getAddExpr(ExitCount, getOne(ExitCount->getType())); 6318 6319 const SCEVConstant *TC = dyn_cast<SCEVConstant>(TCExpr); 6320 if (!TC) 6321 // Attempt to factor more general cases. Returns the greatest power of 6322 // two divisor. If overflow happens, the trip count expression is still 6323 // divisible by the greatest power of 2 divisor returned. 6324 return 1U << std::min((uint32_t)31, GetMinTrailingZeros(TCExpr)); 6325 6326 ConstantInt *Result = TC->getValue(); 6327 6328 // Guard against huge trip counts (this requires checking 6329 // for zero to handle the case where the trip count == -1 and the 6330 // addition wraps). 6331 if (!Result || Result->getValue().getActiveBits() > 32 || 6332 Result->getValue().getActiveBits() == 0) 6333 return 1; 6334 6335 return (unsigned)Result->getZExtValue(); 6336 } 6337 6338 /// Get the expression for the number of loop iterations for which this loop is 6339 /// guaranteed not to exit via ExitingBlock. Otherwise return 6340 /// SCEVCouldNotCompute. 6341 const SCEV *ScalarEvolution::getExitCount(const Loop *L, 6342 BasicBlock *ExitingBlock) { 6343 return getBackedgeTakenInfo(L).getExact(ExitingBlock, this); 6344 } 6345 6346 const SCEV * 6347 ScalarEvolution::getPredicatedBackedgeTakenCount(const Loop *L, 6348 SCEVUnionPredicate &Preds) { 6349 return getPredicatedBackedgeTakenInfo(L).getExact(this, &Preds); 6350 } 6351 6352 const SCEV *ScalarEvolution::getBackedgeTakenCount(const Loop *L) { 6353 return getBackedgeTakenInfo(L).getExact(this); 6354 } 6355 6356 /// Similar to getBackedgeTakenCount, except return the least SCEV value that is 6357 /// known never to be less than the actual backedge taken count. 6358 const SCEV *ScalarEvolution::getMaxBackedgeTakenCount(const Loop *L) { 6359 return getBackedgeTakenInfo(L).getMax(this); 6360 } 6361 6362 bool ScalarEvolution::isBackedgeTakenCountMaxOrZero(const Loop *L) { 6363 return getBackedgeTakenInfo(L).isMaxOrZero(this); 6364 } 6365 6366 /// Push PHI nodes in the header of the given loop onto the given Worklist. 6367 static void 6368 PushLoopPHIs(const Loop *L, SmallVectorImpl<Instruction *> &Worklist) { 6369 BasicBlock *Header = L->getHeader(); 6370 6371 // Push all Loop-header PHIs onto the Worklist stack. 6372 for (BasicBlock::iterator I = Header->begin(); 6373 PHINode *PN = dyn_cast<PHINode>(I); ++I) 6374 Worklist.push_back(PN); 6375 } 6376 6377 const ScalarEvolution::BackedgeTakenInfo & 6378 ScalarEvolution::getPredicatedBackedgeTakenInfo(const Loop *L) { 6379 auto &BTI = getBackedgeTakenInfo(L); 6380 if (BTI.hasFullInfo()) 6381 return BTI; 6382 6383 auto Pair = PredicatedBackedgeTakenCounts.insert({L, BackedgeTakenInfo()}); 6384 6385 if (!Pair.second) 6386 return Pair.first->second; 6387 6388 BackedgeTakenInfo Result = 6389 computeBackedgeTakenCount(L, /*AllowPredicates=*/true); 6390 6391 return PredicatedBackedgeTakenCounts.find(L)->second = std::move(Result); 6392 } 6393 6394 const ScalarEvolution::BackedgeTakenInfo & 6395 ScalarEvolution::getBackedgeTakenInfo(const Loop *L) { 6396 // Initially insert an invalid entry for this loop. If the insertion 6397 // succeeds, proceed to actually compute a backedge-taken count and 6398 // update the value. The temporary CouldNotCompute value tells SCEV 6399 // code elsewhere that it shouldn't attempt to request a new 6400 // backedge-taken count, which could result in infinite recursion. 6401 std::pair<DenseMap<const Loop *, BackedgeTakenInfo>::iterator, bool> Pair = 6402 BackedgeTakenCounts.insert({L, BackedgeTakenInfo()}); 6403 if (!Pair.second) 6404 return Pair.first->second; 6405 6406 // computeBackedgeTakenCount may allocate memory for its result. Inserting it 6407 // into the BackedgeTakenCounts map transfers ownership. Otherwise, the result 6408 // must be cleared in this scope. 6409 BackedgeTakenInfo Result = computeBackedgeTakenCount(L); 6410 6411 if (Result.getExact(this) != getCouldNotCompute()) { 6412 assert(isLoopInvariant(Result.getExact(this), L) && 6413 isLoopInvariant(Result.getMax(this), L) && 6414 "Computed backedge-taken count isn't loop invariant for loop!"); 6415 ++NumTripCountsComputed; 6416 } 6417 else if (Result.getMax(this) == getCouldNotCompute() && 6418 isa<PHINode>(L->getHeader()->begin())) { 6419 // Only count loops that have phi nodes as not being computable. 6420 ++NumTripCountsNotComputed; 6421 } 6422 6423 // Now that we know more about the trip count for this loop, forget any 6424 // existing SCEV values for PHI nodes in this loop since they are only 6425 // conservative estimates made without the benefit of trip count 6426 // information. This is similar to the code in forgetLoop, except that 6427 // it handles SCEVUnknown PHI nodes specially. 6428 if (Result.hasAnyInfo()) { 6429 SmallVector<Instruction *, 16> Worklist; 6430 PushLoopPHIs(L, Worklist); 6431 6432 SmallPtrSet<Instruction *, 8> Discovered; 6433 while (!Worklist.empty()) { 6434 Instruction *I = Worklist.pop_back_val(); 6435 6436 ValueExprMapType::iterator It = 6437 ValueExprMap.find_as(static_cast<Value *>(I)); 6438 if (It != ValueExprMap.end()) { 6439 const SCEV *Old = It->second; 6440 6441 // SCEVUnknown for a PHI either means that it has an unrecognized 6442 // structure, or it's a PHI that's in the progress of being computed 6443 // by createNodeForPHI. In the former case, additional loop trip 6444 // count information isn't going to change anything. In the later 6445 // case, createNodeForPHI will perform the necessary updates on its 6446 // own when it gets to that point. 6447 if (!isa<PHINode>(I) || !isa<SCEVUnknown>(Old)) { 6448 eraseValueFromMap(It->first); 6449 forgetMemoizedResults(Old); 6450 } 6451 if (PHINode *PN = dyn_cast<PHINode>(I)) 6452 ConstantEvolutionLoopExitValue.erase(PN); 6453 } 6454 6455 // Since we don't need to invalidate anything for correctness and we're 6456 // only invalidating to make SCEV's results more precise, we get to stop 6457 // early to avoid invalidating too much. This is especially important in 6458 // cases like: 6459 // 6460 // %v = f(pn0, pn1) // pn0 and pn1 used through some other phi node 6461 // loop0: 6462 // %pn0 = phi 6463 // ... 6464 // loop1: 6465 // %pn1 = phi 6466 // ... 6467 // 6468 // where both loop0 and loop1's backedge taken count uses the SCEV 6469 // expression for %v. If we don't have the early stop below then in cases 6470 // like the above, getBackedgeTakenInfo(loop1) will clear out the trip 6471 // count for loop0 and getBackedgeTakenInfo(loop0) will clear out the trip 6472 // count for loop1, effectively nullifying SCEV's trip count cache. 6473 for (auto *U : I->users()) 6474 if (auto *I = dyn_cast<Instruction>(U)) { 6475 auto *LoopForUser = LI.getLoopFor(I->getParent()); 6476 if (LoopForUser && L->contains(LoopForUser) && 6477 Discovered.insert(I).second) 6478 Worklist.push_back(I); 6479 } 6480 } 6481 } 6482 6483 // Re-lookup the insert position, since the call to 6484 // computeBackedgeTakenCount above could result in a 6485 // recusive call to getBackedgeTakenInfo (on a different 6486 // loop), which would invalidate the iterator computed 6487 // earlier. 6488 return BackedgeTakenCounts.find(L)->second = std::move(Result); 6489 } 6490 6491 void ScalarEvolution::forgetLoop(const Loop *L) { 6492 // Drop any stored trip count value. 6493 auto RemoveLoopFromBackedgeMap = 6494 [](DenseMap<const Loop *, BackedgeTakenInfo> &Map, const Loop *L) { 6495 auto BTCPos = Map.find(L); 6496 if (BTCPos != Map.end()) { 6497 BTCPos->second.clear(); 6498 Map.erase(BTCPos); 6499 } 6500 }; 6501 6502 SmallVector<const Loop *, 16> LoopWorklist(1, L); 6503 SmallVector<Instruction *, 32> Worklist; 6504 SmallPtrSet<Instruction *, 16> Visited; 6505 6506 // Iterate over all the loops and sub-loops to drop SCEV information. 6507 while (!LoopWorklist.empty()) { 6508 auto *CurrL = LoopWorklist.pop_back_val(); 6509 6510 RemoveLoopFromBackedgeMap(BackedgeTakenCounts, CurrL); 6511 RemoveLoopFromBackedgeMap(PredicatedBackedgeTakenCounts, CurrL); 6512 6513 // Drop information about predicated SCEV rewrites for this loop. 6514 for (auto I = PredicatedSCEVRewrites.begin(); 6515 I != PredicatedSCEVRewrites.end();) { 6516 std::pair<const SCEV *, const Loop *> Entry = I->first; 6517 if (Entry.second == CurrL) 6518 PredicatedSCEVRewrites.erase(I++); 6519 else 6520 ++I; 6521 } 6522 6523 auto LoopUsersItr = LoopUsers.find(CurrL); 6524 if (LoopUsersItr != LoopUsers.end()) { 6525 for (auto *S : LoopUsersItr->second) 6526 forgetMemoizedResults(S); 6527 LoopUsers.erase(LoopUsersItr); 6528 } 6529 6530 // Drop information about expressions based on loop-header PHIs. 6531 PushLoopPHIs(CurrL, Worklist); 6532 6533 while (!Worklist.empty()) { 6534 Instruction *I = Worklist.pop_back_val(); 6535 if (!Visited.insert(I).second) 6536 continue; 6537 6538 ValueExprMapType::iterator It = 6539 ValueExprMap.find_as(static_cast<Value *>(I)); 6540 if (It != ValueExprMap.end()) { 6541 eraseValueFromMap(It->first); 6542 forgetMemoizedResults(It->second); 6543 if (PHINode *PN = dyn_cast<PHINode>(I)) 6544 ConstantEvolutionLoopExitValue.erase(PN); 6545 } 6546 6547 PushDefUseChildren(I, Worklist); 6548 } 6549 6550 LoopPropertiesCache.erase(CurrL); 6551 // Forget all contained loops too, to avoid dangling entries in the 6552 // ValuesAtScopes map. 6553 LoopWorklist.append(CurrL->begin(), CurrL->end()); 6554 } 6555 } 6556 6557 void ScalarEvolution::forgetValue(Value *V) { 6558 Instruction *I = dyn_cast<Instruction>(V); 6559 if (!I) return; 6560 6561 // Drop information about expressions based on loop-header PHIs. 6562 SmallVector<Instruction *, 16> Worklist; 6563 Worklist.push_back(I); 6564 6565 SmallPtrSet<Instruction *, 8> Visited; 6566 while (!Worklist.empty()) { 6567 I = Worklist.pop_back_val(); 6568 if (!Visited.insert(I).second) 6569 continue; 6570 6571 ValueExprMapType::iterator It = 6572 ValueExprMap.find_as(static_cast<Value *>(I)); 6573 if (It != ValueExprMap.end()) { 6574 eraseValueFromMap(It->first); 6575 forgetMemoizedResults(It->second); 6576 if (PHINode *PN = dyn_cast<PHINode>(I)) 6577 ConstantEvolutionLoopExitValue.erase(PN); 6578 } 6579 6580 PushDefUseChildren(I, Worklist); 6581 } 6582 } 6583 6584 /// Get the exact loop backedge taken count considering all loop exits. A 6585 /// computable result can only be returned for loops with a single exit. 6586 /// Returning the minimum taken count among all exits is incorrect because one 6587 /// of the loop's exit limit's may have been skipped. howFarToZero assumes that 6588 /// the limit of each loop test is never skipped. This is a valid assumption as 6589 /// long as the loop exits via that test. For precise results, it is the 6590 /// caller's responsibility to specify the relevant loop exit using 6591 /// getExact(ExitingBlock, SE). 6592 const SCEV * 6593 ScalarEvolution::BackedgeTakenInfo::getExact(ScalarEvolution *SE, 6594 SCEVUnionPredicate *Preds) const { 6595 // If any exits were not computable, the loop is not computable. 6596 if (!isComplete() || ExitNotTaken.empty()) 6597 return SE->getCouldNotCompute(); 6598 6599 const SCEV *BECount = nullptr; 6600 for (auto &ENT : ExitNotTaken) { 6601 assert(ENT.ExactNotTaken != SE->getCouldNotCompute() && "bad exit SCEV"); 6602 6603 if (!BECount) 6604 BECount = ENT.ExactNotTaken; 6605 else if (BECount != ENT.ExactNotTaken) 6606 return SE->getCouldNotCompute(); 6607 if (Preds && !ENT.hasAlwaysTruePredicate()) 6608 Preds->add(ENT.Predicate.get()); 6609 6610 assert((Preds || ENT.hasAlwaysTruePredicate()) && 6611 "Predicate should be always true!"); 6612 } 6613 6614 assert(BECount && "Invalid not taken count for loop exit"); 6615 return BECount; 6616 } 6617 6618 /// Get the exact not taken count for this loop exit. 6619 const SCEV * 6620 ScalarEvolution::BackedgeTakenInfo::getExact(BasicBlock *ExitingBlock, 6621 ScalarEvolution *SE) const { 6622 for (auto &ENT : ExitNotTaken) 6623 if (ENT.ExitingBlock == ExitingBlock && ENT.hasAlwaysTruePredicate()) 6624 return ENT.ExactNotTaken; 6625 6626 return SE->getCouldNotCompute(); 6627 } 6628 6629 /// getMax - Get the max backedge taken count for the loop. 6630 const SCEV * 6631 ScalarEvolution::BackedgeTakenInfo::getMax(ScalarEvolution *SE) const { 6632 auto PredicateNotAlwaysTrue = [](const ExitNotTakenInfo &ENT) { 6633 return !ENT.hasAlwaysTruePredicate(); 6634 }; 6635 6636 if (any_of(ExitNotTaken, PredicateNotAlwaysTrue) || !getMax()) 6637 return SE->getCouldNotCompute(); 6638 6639 assert((isa<SCEVCouldNotCompute>(getMax()) || isa<SCEVConstant>(getMax())) && 6640 "No point in having a non-constant max backedge taken count!"); 6641 return getMax(); 6642 } 6643 6644 bool ScalarEvolution::BackedgeTakenInfo::isMaxOrZero(ScalarEvolution *SE) const { 6645 auto PredicateNotAlwaysTrue = [](const ExitNotTakenInfo &ENT) { 6646 return !ENT.hasAlwaysTruePredicate(); 6647 }; 6648 return MaxOrZero && !any_of(ExitNotTaken, PredicateNotAlwaysTrue); 6649 } 6650 6651 bool ScalarEvolution::BackedgeTakenInfo::hasOperand(const SCEV *S, 6652 ScalarEvolution *SE) const { 6653 if (getMax() && getMax() != SE->getCouldNotCompute() && 6654 SE->hasOperand(getMax(), S)) 6655 return true; 6656 6657 for (auto &ENT : ExitNotTaken) 6658 if (ENT.ExactNotTaken != SE->getCouldNotCompute() && 6659 SE->hasOperand(ENT.ExactNotTaken, S)) 6660 return true; 6661 6662 return false; 6663 } 6664 6665 ScalarEvolution::ExitLimit::ExitLimit(const SCEV *E) 6666 : ExactNotTaken(E), MaxNotTaken(E) { 6667 assert((isa<SCEVCouldNotCompute>(MaxNotTaken) || 6668 isa<SCEVConstant>(MaxNotTaken)) && 6669 "No point in having a non-constant max backedge taken count!"); 6670 } 6671 6672 ScalarEvolution::ExitLimit::ExitLimit( 6673 const SCEV *E, const SCEV *M, bool MaxOrZero, 6674 ArrayRef<const SmallPtrSetImpl<const SCEVPredicate *> *> PredSetList) 6675 : ExactNotTaken(E), MaxNotTaken(M), MaxOrZero(MaxOrZero) { 6676 assert((isa<SCEVCouldNotCompute>(ExactNotTaken) || 6677 !isa<SCEVCouldNotCompute>(MaxNotTaken)) && 6678 "Exact is not allowed to be less precise than Max"); 6679 assert((isa<SCEVCouldNotCompute>(MaxNotTaken) || 6680 isa<SCEVConstant>(MaxNotTaken)) && 6681 "No point in having a non-constant max backedge taken count!"); 6682 for (auto *PredSet : PredSetList) 6683 for (auto *P : *PredSet) 6684 addPredicate(P); 6685 } 6686 6687 ScalarEvolution::ExitLimit::ExitLimit( 6688 const SCEV *E, const SCEV *M, bool MaxOrZero, 6689 const SmallPtrSetImpl<const SCEVPredicate *> &PredSet) 6690 : ExitLimit(E, M, MaxOrZero, {&PredSet}) { 6691 assert((isa<SCEVCouldNotCompute>(MaxNotTaken) || 6692 isa<SCEVConstant>(MaxNotTaken)) && 6693 "No point in having a non-constant max backedge taken count!"); 6694 } 6695 6696 ScalarEvolution::ExitLimit::ExitLimit(const SCEV *E, const SCEV *M, 6697 bool MaxOrZero) 6698 : ExitLimit(E, M, MaxOrZero, None) { 6699 assert((isa<SCEVCouldNotCompute>(MaxNotTaken) || 6700 isa<SCEVConstant>(MaxNotTaken)) && 6701 "No point in having a non-constant max backedge taken count!"); 6702 } 6703 6704 /// Allocate memory for BackedgeTakenInfo and copy the not-taken count of each 6705 /// computable exit into a persistent ExitNotTakenInfo array. 6706 ScalarEvolution::BackedgeTakenInfo::BackedgeTakenInfo( 6707 SmallVectorImpl<ScalarEvolution::BackedgeTakenInfo::EdgeExitInfo> 6708 &&ExitCounts, 6709 bool Complete, const SCEV *MaxCount, bool MaxOrZero) 6710 : MaxAndComplete(MaxCount, Complete), MaxOrZero(MaxOrZero) { 6711 using EdgeExitInfo = ScalarEvolution::BackedgeTakenInfo::EdgeExitInfo; 6712 6713 ExitNotTaken.reserve(ExitCounts.size()); 6714 std::transform( 6715 ExitCounts.begin(), ExitCounts.end(), std::back_inserter(ExitNotTaken), 6716 [&](const EdgeExitInfo &EEI) { 6717 BasicBlock *ExitBB = EEI.first; 6718 const ExitLimit &EL = EEI.second; 6719 if (EL.Predicates.empty()) 6720 return ExitNotTakenInfo(ExitBB, EL.ExactNotTaken, nullptr); 6721 6722 std::unique_ptr<SCEVUnionPredicate> Predicate(new SCEVUnionPredicate); 6723 for (auto *Pred : EL.Predicates) 6724 Predicate->add(Pred); 6725 6726 return ExitNotTakenInfo(ExitBB, EL.ExactNotTaken, std::move(Predicate)); 6727 }); 6728 assert((isa<SCEVCouldNotCompute>(MaxCount) || isa<SCEVConstant>(MaxCount)) && 6729 "No point in having a non-constant max backedge taken count!"); 6730 } 6731 6732 /// Invalidate this result and free the ExitNotTakenInfo array. 6733 void ScalarEvolution::BackedgeTakenInfo::clear() { 6734 ExitNotTaken.clear(); 6735 } 6736 6737 /// Compute the number of times the backedge of the specified loop will execute. 6738 ScalarEvolution::BackedgeTakenInfo 6739 ScalarEvolution::computeBackedgeTakenCount(const Loop *L, 6740 bool AllowPredicates) { 6741 SmallVector<BasicBlock *, 8> ExitingBlocks; 6742 L->getExitingBlocks(ExitingBlocks); 6743 6744 using EdgeExitInfo = ScalarEvolution::BackedgeTakenInfo::EdgeExitInfo; 6745 6746 SmallVector<EdgeExitInfo, 4> ExitCounts; 6747 bool CouldComputeBECount = true; 6748 BasicBlock *Latch = L->getLoopLatch(); // may be NULL. 6749 const SCEV *MustExitMaxBECount = nullptr; 6750 const SCEV *MayExitMaxBECount = nullptr; 6751 bool MustExitMaxOrZero = false; 6752 6753 // Compute the ExitLimit for each loop exit. Use this to populate ExitCounts 6754 // and compute maxBECount. 6755 // Do a union of all the predicates here. 6756 for (unsigned i = 0, e = ExitingBlocks.size(); i != e; ++i) { 6757 BasicBlock *ExitBB = ExitingBlocks[i]; 6758 ExitLimit EL = computeExitLimit(L, ExitBB, AllowPredicates); 6759 6760 assert((AllowPredicates || EL.Predicates.empty()) && 6761 "Predicated exit limit when predicates are not allowed!"); 6762 6763 // 1. For each exit that can be computed, add an entry to ExitCounts. 6764 // CouldComputeBECount is true only if all exits can be computed. 6765 if (EL.ExactNotTaken == getCouldNotCompute()) 6766 // We couldn't compute an exact value for this exit, so 6767 // we won't be able to compute an exact value for the loop. 6768 CouldComputeBECount = false; 6769 else 6770 ExitCounts.emplace_back(ExitBB, EL); 6771 6772 // 2. Derive the loop's MaxBECount from each exit's max number of 6773 // non-exiting iterations. Partition the loop exits into two kinds: 6774 // LoopMustExits and LoopMayExits. 6775 // 6776 // If the exit dominates the loop latch, it is a LoopMustExit otherwise it 6777 // is a LoopMayExit. If any computable LoopMustExit is found, then 6778 // MaxBECount is the minimum EL.MaxNotTaken of computable 6779 // LoopMustExits. Otherwise, MaxBECount is conservatively the maximum 6780 // EL.MaxNotTaken, where CouldNotCompute is considered greater than any 6781 // computable EL.MaxNotTaken. 6782 if (EL.MaxNotTaken != getCouldNotCompute() && Latch && 6783 DT.dominates(ExitBB, Latch)) { 6784 if (!MustExitMaxBECount) { 6785 MustExitMaxBECount = EL.MaxNotTaken; 6786 MustExitMaxOrZero = EL.MaxOrZero; 6787 } else { 6788 MustExitMaxBECount = 6789 getUMinFromMismatchedTypes(MustExitMaxBECount, EL.MaxNotTaken); 6790 } 6791 } else if (MayExitMaxBECount != getCouldNotCompute()) { 6792 if (!MayExitMaxBECount || EL.MaxNotTaken == getCouldNotCompute()) 6793 MayExitMaxBECount = EL.MaxNotTaken; 6794 else { 6795 MayExitMaxBECount = 6796 getUMaxFromMismatchedTypes(MayExitMaxBECount, EL.MaxNotTaken); 6797 } 6798 } 6799 } 6800 const SCEV *MaxBECount = MustExitMaxBECount ? MustExitMaxBECount : 6801 (MayExitMaxBECount ? MayExitMaxBECount : getCouldNotCompute()); 6802 // The loop backedge will be taken the maximum or zero times if there's 6803 // a single exit that must be taken the maximum or zero times. 6804 bool MaxOrZero = (MustExitMaxOrZero && ExitingBlocks.size() == 1); 6805 return BackedgeTakenInfo(std::move(ExitCounts), CouldComputeBECount, 6806 MaxBECount, MaxOrZero); 6807 } 6808 6809 ScalarEvolution::ExitLimit 6810 ScalarEvolution::computeExitLimit(const Loop *L, BasicBlock *ExitingBlock, 6811 bool AllowPredicates) { 6812 // Okay, we've chosen an exiting block. See what condition causes us to exit 6813 // at this block and remember the exit block and whether all other targets 6814 // lead to the loop header. 6815 bool MustExecuteLoopHeader = true; 6816 BasicBlock *Exit = nullptr; 6817 for (auto *SBB : successors(ExitingBlock)) 6818 if (!L->contains(SBB)) { 6819 if (Exit) // Multiple exit successors. 6820 return getCouldNotCompute(); 6821 Exit = SBB; 6822 } else if (SBB != L->getHeader()) { 6823 MustExecuteLoopHeader = false; 6824 } 6825 6826 // At this point, we know we have a conditional branch that determines whether 6827 // the loop is exited. However, we don't know if the branch is executed each 6828 // time through the loop. If not, then the execution count of the branch will 6829 // not be equal to the trip count of the loop. 6830 // 6831 // Currently we check for this by checking to see if the Exit branch goes to 6832 // the loop header. If so, we know it will always execute the same number of 6833 // times as the loop. We also handle the case where the exit block *is* the 6834 // loop header. This is common for un-rotated loops. 6835 // 6836 // If both of those tests fail, walk up the unique predecessor chain to the 6837 // header, stopping if there is an edge that doesn't exit the loop. If the 6838 // header is reached, the execution count of the branch will be equal to the 6839 // trip count of the loop. 6840 // 6841 // More extensive analysis could be done to handle more cases here. 6842 // 6843 if (!MustExecuteLoopHeader && ExitingBlock != L->getHeader()) { 6844 // The simple checks failed, try climbing the unique predecessor chain 6845 // up to the header. 6846 bool Ok = false; 6847 for (BasicBlock *BB = ExitingBlock; BB; ) { 6848 BasicBlock *Pred = BB->getUniquePredecessor(); 6849 if (!Pred) 6850 return getCouldNotCompute(); 6851 TerminatorInst *PredTerm = Pred->getTerminator(); 6852 for (const BasicBlock *PredSucc : PredTerm->successors()) { 6853 if (PredSucc == BB) 6854 continue; 6855 // If the predecessor has a successor that isn't BB and isn't 6856 // outside the loop, assume the worst. 6857 if (L->contains(PredSucc)) 6858 return getCouldNotCompute(); 6859 } 6860 if (Pred == L->getHeader()) { 6861 Ok = true; 6862 break; 6863 } 6864 BB = Pred; 6865 } 6866 if (!Ok) 6867 return getCouldNotCompute(); 6868 } 6869 6870 bool IsOnlyExit = (L->getExitingBlock() != nullptr); 6871 TerminatorInst *Term = ExitingBlock->getTerminator(); 6872 if (BranchInst *BI = dyn_cast<BranchInst>(Term)) { 6873 assert(BI->isConditional() && "If unconditional, it can't be in loop!"); 6874 // Proceed to the next level to examine the exit condition expression. 6875 return computeExitLimitFromCond( 6876 L, BI->getCondition(), BI->getSuccessor(0), BI->getSuccessor(1), 6877 /*ControlsExit=*/IsOnlyExit, AllowPredicates); 6878 } 6879 6880 if (SwitchInst *SI = dyn_cast<SwitchInst>(Term)) 6881 return computeExitLimitFromSingleExitSwitch(L, SI, Exit, 6882 /*ControlsExit=*/IsOnlyExit); 6883 6884 return getCouldNotCompute(); 6885 } 6886 6887 ScalarEvolution::ExitLimit ScalarEvolution::computeExitLimitFromCond( 6888 const Loop *L, Value *ExitCond, BasicBlock *TBB, BasicBlock *FBB, 6889 bool ControlsExit, bool AllowPredicates) { 6890 ScalarEvolution::ExitLimitCacheTy Cache(L, TBB, FBB, AllowPredicates); 6891 return computeExitLimitFromCondCached(Cache, L, ExitCond, TBB, FBB, 6892 ControlsExit, AllowPredicates); 6893 } 6894 6895 Optional<ScalarEvolution::ExitLimit> 6896 ScalarEvolution::ExitLimitCache::find(const Loop *L, Value *ExitCond, 6897 BasicBlock *TBB, BasicBlock *FBB, 6898 bool ControlsExit, bool AllowPredicates) { 6899 (void)this->L; 6900 (void)this->TBB; 6901 (void)this->FBB; 6902 (void)this->AllowPredicates; 6903 6904 assert(this->L == L && this->TBB == TBB && this->FBB == FBB && 6905 this->AllowPredicates == AllowPredicates && 6906 "Variance in assumed invariant key components!"); 6907 auto Itr = TripCountMap.find({ExitCond, ControlsExit}); 6908 if (Itr == TripCountMap.end()) 6909 return None; 6910 return Itr->second; 6911 } 6912 6913 void ScalarEvolution::ExitLimitCache::insert(const Loop *L, Value *ExitCond, 6914 BasicBlock *TBB, BasicBlock *FBB, 6915 bool ControlsExit, 6916 bool AllowPredicates, 6917 const ExitLimit &EL) { 6918 assert(this->L == L && this->TBB == TBB && this->FBB == FBB && 6919 this->AllowPredicates == AllowPredicates && 6920 "Variance in assumed invariant key components!"); 6921 6922 auto InsertResult = TripCountMap.insert({{ExitCond, ControlsExit}, EL}); 6923 assert(InsertResult.second && "Expected successful insertion!"); 6924 (void)InsertResult; 6925 } 6926 6927 ScalarEvolution::ExitLimit ScalarEvolution::computeExitLimitFromCondCached( 6928 ExitLimitCacheTy &Cache, const Loop *L, Value *ExitCond, BasicBlock *TBB, 6929 BasicBlock *FBB, bool ControlsExit, bool AllowPredicates) { 6930 6931 if (auto MaybeEL = 6932 Cache.find(L, ExitCond, TBB, FBB, ControlsExit, AllowPredicates)) 6933 return *MaybeEL; 6934 6935 ExitLimit EL = computeExitLimitFromCondImpl(Cache, L, ExitCond, TBB, FBB, 6936 ControlsExit, AllowPredicates); 6937 Cache.insert(L, ExitCond, TBB, FBB, ControlsExit, AllowPredicates, EL); 6938 return EL; 6939 } 6940 6941 ScalarEvolution::ExitLimit ScalarEvolution::computeExitLimitFromCondImpl( 6942 ExitLimitCacheTy &Cache, const Loop *L, Value *ExitCond, BasicBlock *TBB, 6943 BasicBlock *FBB, bool ControlsExit, bool AllowPredicates) { 6944 // Check if the controlling expression for this loop is an And or Or. 6945 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(ExitCond)) { 6946 if (BO->getOpcode() == Instruction::And) { 6947 // Recurse on the operands of the and. 6948 bool EitherMayExit = L->contains(TBB); 6949 ExitLimit EL0 = computeExitLimitFromCondCached( 6950 Cache, L, BO->getOperand(0), TBB, FBB, ControlsExit && !EitherMayExit, 6951 AllowPredicates); 6952 ExitLimit EL1 = computeExitLimitFromCondCached( 6953 Cache, L, BO->getOperand(1), TBB, FBB, ControlsExit && !EitherMayExit, 6954 AllowPredicates); 6955 const SCEV *BECount = getCouldNotCompute(); 6956 const SCEV *MaxBECount = getCouldNotCompute(); 6957 if (EitherMayExit) { 6958 // Both conditions must be true for the loop to continue executing. 6959 // Choose the less conservative count. 6960 if (EL0.ExactNotTaken == getCouldNotCompute() || 6961 EL1.ExactNotTaken == getCouldNotCompute()) 6962 BECount = getCouldNotCompute(); 6963 else 6964 BECount = 6965 getUMinFromMismatchedTypes(EL0.ExactNotTaken, EL1.ExactNotTaken); 6966 if (EL0.MaxNotTaken == getCouldNotCompute()) 6967 MaxBECount = EL1.MaxNotTaken; 6968 else if (EL1.MaxNotTaken == getCouldNotCompute()) 6969 MaxBECount = EL0.MaxNotTaken; 6970 else 6971 MaxBECount = 6972 getUMinFromMismatchedTypes(EL0.MaxNotTaken, EL1.MaxNotTaken); 6973 } else { 6974 // Both conditions must be true at the same time for the loop to exit. 6975 // For now, be conservative. 6976 assert(L->contains(FBB) && "Loop block has no successor in loop!"); 6977 if (EL0.MaxNotTaken == EL1.MaxNotTaken) 6978 MaxBECount = EL0.MaxNotTaken; 6979 if (EL0.ExactNotTaken == EL1.ExactNotTaken) 6980 BECount = EL0.ExactNotTaken; 6981 } 6982 6983 // There are cases (e.g. PR26207) where computeExitLimitFromCond is able 6984 // to be more aggressive when computing BECount than when computing 6985 // MaxBECount. In these cases it is possible for EL0.ExactNotTaken and 6986 // EL1.ExactNotTaken to match, but for EL0.MaxNotTaken and EL1.MaxNotTaken 6987 // to not. 6988 if (isa<SCEVCouldNotCompute>(MaxBECount) && 6989 !isa<SCEVCouldNotCompute>(BECount)) 6990 MaxBECount = getConstant(getUnsignedRangeMax(BECount)); 6991 6992 return ExitLimit(BECount, MaxBECount, false, 6993 {&EL0.Predicates, &EL1.Predicates}); 6994 } 6995 if (BO->getOpcode() == Instruction::Or) { 6996 // Recurse on the operands of the or. 6997 bool EitherMayExit = L->contains(FBB); 6998 ExitLimit EL0 = computeExitLimitFromCondCached( 6999 Cache, L, BO->getOperand(0), TBB, FBB, ControlsExit && !EitherMayExit, 7000 AllowPredicates); 7001 ExitLimit EL1 = computeExitLimitFromCondCached( 7002 Cache, L, BO->getOperand(1), TBB, FBB, ControlsExit && !EitherMayExit, 7003 AllowPredicates); 7004 const SCEV *BECount = getCouldNotCompute(); 7005 const SCEV *MaxBECount = getCouldNotCompute(); 7006 if (EitherMayExit) { 7007 // Both conditions must be false for the loop to continue executing. 7008 // Choose the less conservative count. 7009 if (EL0.ExactNotTaken == getCouldNotCompute() || 7010 EL1.ExactNotTaken == getCouldNotCompute()) 7011 BECount = getCouldNotCompute(); 7012 else 7013 BECount = 7014 getUMinFromMismatchedTypes(EL0.ExactNotTaken, EL1.ExactNotTaken); 7015 if (EL0.MaxNotTaken == getCouldNotCompute()) 7016 MaxBECount = EL1.MaxNotTaken; 7017 else if (EL1.MaxNotTaken == getCouldNotCompute()) 7018 MaxBECount = EL0.MaxNotTaken; 7019 else 7020 MaxBECount = 7021 getUMinFromMismatchedTypes(EL0.MaxNotTaken, EL1.MaxNotTaken); 7022 } else { 7023 // Both conditions must be false at the same time for the loop to exit. 7024 // For now, be conservative. 7025 assert(L->contains(TBB) && "Loop block has no successor in loop!"); 7026 if (EL0.MaxNotTaken == EL1.MaxNotTaken) 7027 MaxBECount = EL0.MaxNotTaken; 7028 if (EL0.ExactNotTaken == EL1.ExactNotTaken) 7029 BECount = EL0.ExactNotTaken; 7030 } 7031 7032 return ExitLimit(BECount, MaxBECount, false, 7033 {&EL0.Predicates, &EL1.Predicates}); 7034 } 7035 } 7036 7037 // With an icmp, it may be feasible to compute an exact backedge-taken count. 7038 // Proceed to the next level to examine the icmp. 7039 if (ICmpInst *ExitCondICmp = dyn_cast<ICmpInst>(ExitCond)) { 7040 ExitLimit EL = 7041 computeExitLimitFromICmp(L, ExitCondICmp, TBB, FBB, ControlsExit); 7042 if (EL.hasFullInfo() || !AllowPredicates) 7043 return EL; 7044 7045 // Try again, but use SCEV predicates this time. 7046 return computeExitLimitFromICmp(L, ExitCondICmp, TBB, FBB, ControlsExit, 7047 /*AllowPredicates=*/true); 7048 } 7049 7050 // Check for a constant condition. These are normally stripped out by 7051 // SimplifyCFG, but ScalarEvolution may be used by a pass which wishes to 7052 // preserve the CFG and is temporarily leaving constant conditions 7053 // in place. 7054 if (ConstantInt *CI = dyn_cast<ConstantInt>(ExitCond)) { 7055 if (L->contains(FBB) == !CI->getZExtValue()) 7056 // The backedge is always taken. 7057 return getCouldNotCompute(); 7058 else 7059 // The backedge is never taken. 7060 return getZero(CI->getType()); 7061 } 7062 7063 // If it's not an integer or pointer comparison then compute it the hard way. 7064 return computeExitCountExhaustively(L, ExitCond, !L->contains(TBB)); 7065 } 7066 7067 ScalarEvolution::ExitLimit 7068 ScalarEvolution::computeExitLimitFromICmp(const Loop *L, 7069 ICmpInst *ExitCond, 7070 BasicBlock *TBB, 7071 BasicBlock *FBB, 7072 bool ControlsExit, 7073 bool AllowPredicates) { 7074 // If the condition was exit on true, convert the condition to exit on false 7075 ICmpInst::Predicate Pred; 7076 if (!L->contains(FBB)) 7077 Pred = ExitCond->getPredicate(); 7078 else 7079 Pred = ExitCond->getInversePredicate(); 7080 const ICmpInst::Predicate OriginalPred = Pred; 7081 7082 // Handle common loops like: for (X = "string"; *X; ++X) 7083 if (LoadInst *LI = dyn_cast<LoadInst>(ExitCond->getOperand(0))) 7084 if (Constant *RHS = dyn_cast<Constant>(ExitCond->getOperand(1))) { 7085 ExitLimit ItCnt = 7086 computeLoadConstantCompareExitLimit(LI, RHS, L, Pred); 7087 if (ItCnt.hasAnyInfo()) 7088 return ItCnt; 7089 } 7090 7091 const SCEV *LHS = getSCEV(ExitCond->getOperand(0)); 7092 const SCEV *RHS = getSCEV(ExitCond->getOperand(1)); 7093 7094 // Try to evaluate any dependencies out of the loop. 7095 LHS = getSCEVAtScope(LHS, L); 7096 RHS = getSCEVAtScope(RHS, L); 7097 7098 // At this point, we would like to compute how many iterations of the 7099 // loop the predicate will return true for these inputs. 7100 if (isLoopInvariant(LHS, L) && !isLoopInvariant(RHS, L)) { 7101 // If there is a loop-invariant, force it into the RHS. 7102 std::swap(LHS, RHS); 7103 Pred = ICmpInst::getSwappedPredicate(Pred); 7104 } 7105 7106 // Simplify the operands before analyzing them. 7107 (void)SimplifyICmpOperands(Pred, LHS, RHS); 7108 7109 // If we have a comparison of a chrec against a constant, try to use value 7110 // ranges to answer this query. 7111 if (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(RHS)) 7112 if (const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(LHS)) 7113 if (AddRec->getLoop() == L) { 7114 // Form the constant range. 7115 ConstantRange CompRange = 7116 ConstantRange::makeExactICmpRegion(Pred, RHSC->getAPInt()); 7117 7118 const SCEV *Ret = AddRec->getNumIterationsInRange(CompRange, *this); 7119 if (!isa<SCEVCouldNotCompute>(Ret)) return Ret; 7120 } 7121 7122 switch (Pred) { 7123 case ICmpInst::ICMP_NE: { // while (X != Y) 7124 // Convert to: while (X-Y != 0) 7125 ExitLimit EL = howFarToZero(getMinusSCEV(LHS, RHS), L, ControlsExit, 7126 AllowPredicates); 7127 if (EL.hasAnyInfo()) return EL; 7128 break; 7129 } 7130 case ICmpInst::ICMP_EQ: { // while (X == Y) 7131 // Convert to: while (X-Y == 0) 7132 ExitLimit EL = howFarToNonZero(getMinusSCEV(LHS, RHS), L); 7133 if (EL.hasAnyInfo()) return EL; 7134 break; 7135 } 7136 case ICmpInst::ICMP_SLT: 7137 case ICmpInst::ICMP_ULT: { // while (X < Y) 7138 bool IsSigned = Pred == ICmpInst::ICMP_SLT; 7139 ExitLimit EL = howManyLessThans(LHS, RHS, L, IsSigned, ControlsExit, 7140 AllowPredicates); 7141 if (EL.hasAnyInfo()) return EL; 7142 break; 7143 } 7144 case ICmpInst::ICMP_SGT: 7145 case ICmpInst::ICMP_UGT: { // while (X > Y) 7146 bool IsSigned = Pred == ICmpInst::ICMP_SGT; 7147 ExitLimit EL = 7148 howManyGreaterThans(LHS, RHS, L, IsSigned, ControlsExit, 7149 AllowPredicates); 7150 if (EL.hasAnyInfo()) return EL; 7151 break; 7152 } 7153 default: 7154 break; 7155 } 7156 7157 auto *ExhaustiveCount = 7158 computeExitCountExhaustively(L, ExitCond, !L->contains(TBB)); 7159 7160 if (!isa<SCEVCouldNotCompute>(ExhaustiveCount)) 7161 return ExhaustiveCount; 7162 7163 return computeShiftCompareExitLimit(ExitCond->getOperand(0), 7164 ExitCond->getOperand(1), L, OriginalPred); 7165 } 7166 7167 ScalarEvolution::ExitLimit 7168 ScalarEvolution::computeExitLimitFromSingleExitSwitch(const Loop *L, 7169 SwitchInst *Switch, 7170 BasicBlock *ExitingBlock, 7171 bool ControlsExit) { 7172 assert(!L->contains(ExitingBlock) && "Not an exiting block!"); 7173 7174 // Give up if the exit is the default dest of a switch. 7175 if (Switch->getDefaultDest() == ExitingBlock) 7176 return getCouldNotCompute(); 7177 7178 assert(L->contains(Switch->getDefaultDest()) && 7179 "Default case must not exit the loop!"); 7180 const SCEV *LHS = getSCEVAtScope(Switch->getCondition(), L); 7181 const SCEV *RHS = getConstant(Switch->findCaseDest(ExitingBlock)); 7182 7183 // while (X != Y) --> while (X-Y != 0) 7184 ExitLimit EL = howFarToZero(getMinusSCEV(LHS, RHS), L, ControlsExit); 7185 if (EL.hasAnyInfo()) 7186 return EL; 7187 7188 return getCouldNotCompute(); 7189 } 7190 7191 static ConstantInt * 7192 EvaluateConstantChrecAtConstant(const SCEVAddRecExpr *AddRec, ConstantInt *C, 7193 ScalarEvolution &SE) { 7194 const SCEV *InVal = SE.getConstant(C); 7195 const SCEV *Val = AddRec->evaluateAtIteration(InVal, SE); 7196 assert(isa<SCEVConstant>(Val) && 7197 "Evaluation of SCEV at constant didn't fold correctly?"); 7198 return cast<SCEVConstant>(Val)->getValue(); 7199 } 7200 7201 /// Given an exit condition of 'icmp op load X, cst', try to see if we can 7202 /// compute the backedge execution count. 7203 ScalarEvolution::ExitLimit 7204 ScalarEvolution::computeLoadConstantCompareExitLimit( 7205 LoadInst *LI, 7206 Constant *RHS, 7207 const Loop *L, 7208 ICmpInst::Predicate predicate) { 7209 if (LI->isVolatile()) return getCouldNotCompute(); 7210 7211 // Check to see if the loaded pointer is a getelementptr of a global. 7212 // TODO: Use SCEV instead of manually grubbing with GEPs. 7213 GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(LI->getOperand(0)); 7214 if (!GEP) return getCouldNotCompute(); 7215 7216 // Make sure that it is really a constant global we are gepping, with an 7217 // initializer, and make sure the first IDX is really 0. 7218 GlobalVariable *GV = dyn_cast<GlobalVariable>(GEP->getOperand(0)); 7219 if (!GV || !GV->isConstant() || !GV->hasDefinitiveInitializer() || 7220 GEP->getNumOperands() < 3 || !isa<Constant>(GEP->getOperand(1)) || 7221 !cast<Constant>(GEP->getOperand(1))->isNullValue()) 7222 return getCouldNotCompute(); 7223 7224 // Okay, we allow one non-constant index into the GEP instruction. 7225 Value *VarIdx = nullptr; 7226 std::vector<Constant*> Indexes; 7227 unsigned VarIdxNum = 0; 7228 for (unsigned i = 2, e = GEP->getNumOperands(); i != e; ++i) 7229 if (ConstantInt *CI = dyn_cast<ConstantInt>(GEP->getOperand(i))) { 7230 Indexes.push_back(CI); 7231 } else if (!isa<ConstantInt>(GEP->getOperand(i))) { 7232 if (VarIdx) return getCouldNotCompute(); // Multiple non-constant idx's. 7233 VarIdx = GEP->getOperand(i); 7234 VarIdxNum = i-2; 7235 Indexes.push_back(nullptr); 7236 } 7237 7238 // Loop-invariant loads may be a byproduct of loop optimization. Skip them. 7239 if (!VarIdx) 7240 return getCouldNotCompute(); 7241 7242 // Okay, we know we have a (load (gep GV, 0, X)) comparison with a constant. 7243 // Check to see if X is a loop variant variable value now. 7244 const SCEV *Idx = getSCEV(VarIdx); 7245 Idx = getSCEVAtScope(Idx, L); 7246 7247 // We can only recognize very limited forms of loop index expressions, in 7248 // particular, only affine AddRec's like {C1,+,C2}. 7249 const SCEVAddRecExpr *IdxExpr = dyn_cast<SCEVAddRecExpr>(Idx); 7250 if (!IdxExpr || !IdxExpr->isAffine() || isLoopInvariant(IdxExpr, L) || 7251 !isa<SCEVConstant>(IdxExpr->getOperand(0)) || 7252 !isa<SCEVConstant>(IdxExpr->getOperand(1))) 7253 return getCouldNotCompute(); 7254 7255 unsigned MaxSteps = MaxBruteForceIterations; 7256 for (unsigned IterationNum = 0; IterationNum != MaxSteps; ++IterationNum) { 7257 ConstantInt *ItCst = ConstantInt::get( 7258 cast<IntegerType>(IdxExpr->getType()), IterationNum); 7259 ConstantInt *Val = EvaluateConstantChrecAtConstant(IdxExpr, ItCst, *this); 7260 7261 // Form the GEP offset. 7262 Indexes[VarIdxNum] = Val; 7263 7264 Constant *Result = ConstantFoldLoadThroughGEPIndices(GV->getInitializer(), 7265 Indexes); 7266 if (!Result) break; // Cannot compute! 7267 7268 // Evaluate the condition for this iteration. 7269 Result = ConstantExpr::getICmp(predicate, Result, RHS); 7270 if (!isa<ConstantInt>(Result)) break; // Couldn't decide for sure 7271 if (cast<ConstantInt>(Result)->getValue().isMinValue()) { 7272 ++NumArrayLenItCounts; 7273 return getConstant(ItCst); // Found terminating iteration! 7274 } 7275 } 7276 return getCouldNotCompute(); 7277 } 7278 7279 ScalarEvolution::ExitLimit ScalarEvolution::computeShiftCompareExitLimit( 7280 Value *LHS, Value *RHSV, const Loop *L, ICmpInst::Predicate Pred) { 7281 ConstantInt *RHS = dyn_cast<ConstantInt>(RHSV); 7282 if (!RHS) 7283 return getCouldNotCompute(); 7284 7285 const BasicBlock *Latch = L->getLoopLatch(); 7286 if (!Latch) 7287 return getCouldNotCompute(); 7288 7289 const BasicBlock *Predecessor = L->getLoopPredecessor(); 7290 if (!Predecessor) 7291 return getCouldNotCompute(); 7292 7293 // Return true if V is of the form "LHS `shift_op` <positive constant>". 7294 // Return LHS in OutLHS and shift_opt in OutOpCode. 7295 auto MatchPositiveShift = 7296 [](Value *V, Value *&OutLHS, Instruction::BinaryOps &OutOpCode) { 7297 7298 using namespace PatternMatch; 7299 7300 ConstantInt *ShiftAmt; 7301 if (match(V, m_LShr(m_Value(OutLHS), m_ConstantInt(ShiftAmt)))) 7302 OutOpCode = Instruction::LShr; 7303 else if (match(V, m_AShr(m_Value(OutLHS), m_ConstantInt(ShiftAmt)))) 7304 OutOpCode = Instruction::AShr; 7305 else if (match(V, m_Shl(m_Value(OutLHS), m_ConstantInt(ShiftAmt)))) 7306 OutOpCode = Instruction::Shl; 7307 else 7308 return false; 7309 7310 return ShiftAmt->getValue().isStrictlyPositive(); 7311 }; 7312 7313 // Recognize a "shift recurrence" either of the form %iv or of %iv.shifted in 7314 // 7315 // loop: 7316 // %iv = phi i32 [ %iv.shifted, %loop ], [ %val, %preheader ] 7317 // %iv.shifted = lshr i32 %iv, <positive constant> 7318 // 7319 // Return true on a successful match. Return the corresponding PHI node (%iv 7320 // above) in PNOut and the opcode of the shift operation in OpCodeOut. 7321 auto MatchShiftRecurrence = 7322 [&](Value *V, PHINode *&PNOut, Instruction::BinaryOps &OpCodeOut) { 7323 Optional<Instruction::BinaryOps> PostShiftOpCode; 7324 7325 { 7326 Instruction::BinaryOps OpC; 7327 Value *V; 7328 7329 // If we encounter a shift instruction, "peel off" the shift operation, 7330 // and remember that we did so. Later when we inspect %iv's backedge 7331 // value, we will make sure that the backedge value uses the same 7332 // operation. 7333 // 7334 // Note: the peeled shift operation does not have to be the same 7335 // instruction as the one feeding into the PHI's backedge value. We only 7336 // really care about it being the same *kind* of shift instruction -- 7337 // that's all that is required for our later inferences to hold. 7338 if (MatchPositiveShift(LHS, V, OpC)) { 7339 PostShiftOpCode = OpC; 7340 LHS = V; 7341 } 7342 } 7343 7344 PNOut = dyn_cast<PHINode>(LHS); 7345 if (!PNOut || PNOut->getParent() != L->getHeader()) 7346 return false; 7347 7348 Value *BEValue = PNOut->getIncomingValueForBlock(Latch); 7349 Value *OpLHS; 7350 7351 return 7352 // The backedge value for the PHI node must be a shift by a positive 7353 // amount 7354 MatchPositiveShift(BEValue, OpLHS, OpCodeOut) && 7355 7356 // of the PHI node itself 7357 OpLHS == PNOut && 7358 7359 // and the kind of shift should be match the kind of shift we peeled 7360 // off, if any. 7361 (!PostShiftOpCode.hasValue() || *PostShiftOpCode == OpCodeOut); 7362 }; 7363 7364 PHINode *PN; 7365 Instruction::BinaryOps OpCode; 7366 if (!MatchShiftRecurrence(LHS, PN, OpCode)) 7367 return getCouldNotCompute(); 7368 7369 const DataLayout &DL = getDataLayout(); 7370 7371 // The key rationale for this optimization is that for some kinds of shift 7372 // recurrences, the value of the recurrence "stabilizes" to either 0 or -1 7373 // within a finite number of iterations. If the condition guarding the 7374 // backedge (in the sense that the backedge is taken if the condition is true) 7375 // is false for the value the shift recurrence stabilizes to, then we know 7376 // that the backedge is taken only a finite number of times. 7377 7378 ConstantInt *StableValue = nullptr; 7379 switch (OpCode) { 7380 default: 7381 llvm_unreachable("Impossible case!"); 7382 7383 case Instruction::AShr: { 7384 // {K,ashr,<positive-constant>} stabilizes to signum(K) in at most 7385 // bitwidth(K) iterations. 7386 Value *FirstValue = PN->getIncomingValueForBlock(Predecessor); 7387 KnownBits Known = computeKnownBits(FirstValue, DL, 0, nullptr, 7388 Predecessor->getTerminator(), &DT); 7389 auto *Ty = cast<IntegerType>(RHS->getType()); 7390 if (Known.isNonNegative()) 7391 StableValue = ConstantInt::get(Ty, 0); 7392 else if (Known.isNegative()) 7393 StableValue = ConstantInt::get(Ty, -1, true); 7394 else 7395 return getCouldNotCompute(); 7396 7397 break; 7398 } 7399 case Instruction::LShr: 7400 case Instruction::Shl: 7401 // Both {K,lshr,<positive-constant>} and {K,shl,<positive-constant>} 7402 // stabilize to 0 in at most bitwidth(K) iterations. 7403 StableValue = ConstantInt::get(cast<IntegerType>(RHS->getType()), 0); 7404 break; 7405 } 7406 7407 auto *Result = 7408 ConstantFoldCompareInstOperands(Pred, StableValue, RHS, DL, &TLI); 7409 assert(Result->getType()->isIntegerTy(1) && 7410 "Otherwise cannot be an operand to a branch instruction"); 7411 7412 if (Result->isZeroValue()) { 7413 unsigned BitWidth = getTypeSizeInBits(RHS->getType()); 7414 const SCEV *UpperBound = 7415 getConstant(getEffectiveSCEVType(RHS->getType()), BitWidth); 7416 return ExitLimit(getCouldNotCompute(), UpperBound, false); 7417 } 7418 7419 return getCouldNotCompute(); 7420 } 7421 7422 /// Return true if we can constant fold an instruction of the specified type, 7423 /// assuming that all operands were constants. 7424 static bool CanConstantFold(const Instruction *I) { 7425 if (isa<BinaryOperator>(I) || isa<CmpInst>(I) || 7426 isa<SelectInst>(I) || isa<CastInst>(I) || isa<GetElementPtrInst>(I) || 7427 isa<LoadInst>(I)) 7428 return true; 7429 7430 if (const CallInst *CI = dyn_cast<CallInst>(I)) 7431 if (const Function *F = CI->getCalledFunction()) 7432 return canConstantFoldCallTo(CI, F); 7433 return false; 7434 } 7435 7436 /// Determine whether this instruction can constant evolve within this loop 7437 /// assuming its operands can all constant evolve. 7438 static bool canConstantEvolve(Instruction *I, const Loop *L) { 7439 // An instruction outside of the loop can't be derived from a loop PHI. 7440 if (!L->contains(I)) return false; 7441 7442 if (isa<PHINode>(I)) { 7443 // We don't currently keep track of the control flow needed to evaluate 7444 // PHIs, so we cannot handle PHIs inside of loops. 7445 return L->getHeader() == I->getParent(); 7446 } 7447 7448 // If we won't be able to constant fold this expression even if the operands 7449 // are constants, bail early. 7450 return CanConstantFold(I); 7451 } 7452 7453 /// getConstantEvolvingPHIOperands - Implement getConstantEvolvingPHI by 7454 /// recursing through each instruction operand until reaching a loop header phi. 7455 static PHINode * 7456 getConstantEvolvingPHIOperands(Instruction *UseInst, const Loop *L, 7457 DenseMap<Instruction *, PHINode *> &PHIMap, 7458 unsigned Depth) { 7459 if (Depth > MaxConstantEvolvingDepth) 7460 return nullptr; 7461 7462 // Otherwise, we can evaluate this instruction if all of its operands are 7463 // constant or derived from a PHI node themselves. 7464 PHINode *PHI = nullptr; 7465 for (Value *Op : UseInst->operands()) { 7466 if (isa<Constant>(Op)) continue; 7467 7468 Instruction *OpInst = dyn_cast<Instruction>(Op); 7469 if (!OpInst || !canConstantEvolve(OpInst, L)) return nullptr; 7470 7471 PHINode *P = dyn_cast<PHINode>(OpInst); 7472 if (!P) 7473 // If this operand is already visited, reuse the prior result. 7474 // We may have P != PHI if this is the deepest point at which the 7475 // inconsistent paths meet. 7476 P = PHIMap.lookup(OpInst); 7477 if (!P) { 7478 // Recurse and memoize the results, whether a phi is found or not. 7479 // This recursive call invalidates pointers into PHIMap. 7480 P = getConstantEvolvingPHIOperands(OpInst, L, PHIMap, Depth + 1); 7481 PHIMap[OpInst] = P; 7482 } 7483 if (!P) 7484 return nullptr; // Not evolving from PHI 7485 if (PHI && PHI != P) 7486 return nullptr; // Evolving from multiple different PHIs. 7487 PHI = P; 7488 } 7489 // This is a expression evolving from a constant PHI! 7490 return PHI; 7491 } 7492 7493 /// getConstantEvolvingPHI - Given an LLVM value and a loop, return a PHI node 7494 /// in the loop that V is derived from. We allow arbitrary operations along the 7495 /// way, but the operands of an operation must either be constants or a value 7496 /// derived from a constant PHI. If this expression does not fit with these 7497 /// constraints, return null. 7498 static PHINode *getConstantEvolvingPHI(Value *V, const Loop *L) { 7499 Instruction *I = dyn_cast<Instruction>(V); 7500 if (!I || !canConstantEvolve(I, L)) return nullptr; 7501 7502 if (PHINode *PN = dyn_cast<PHINode>(I)) 7503 return PN; 7504 7505 // Record non-constant instructions contained by the loop. 7506 DenseMap<Instruction *, PHINode *> PHIMap; 7507 return getConstantEvolvingPHIOperands(I, L, PHIMap, 0); 7508 } 7509 7510 /// EvaluateExpression - Given an expression that passes the 7511 /// getConstantEvolvingPHI predicate, evaluate its value assuming the PHI node 7512 /// in the loop has the value PHIVal. If we can't fold this expression for some 7513 /// reason, return null. 7514 static Constant *EvaluateExpression(Value *V, const Loop *L, 7515 DenseMap<Instruction *, Constant *> &Vals, 7516 const DataLayout &DL, 7517 const TargetLibraryInfo *TLI) { 7518 // Convenient constant check, but redundant for recursive calls. 7519 if (Constant *C = dyn_cast<Constant>(V)) return C; 7520 Instruction *I = dyn_cast<Instruction>(V); 7521 if (!I) return nullptr; 7522 7523 if (Constant *C = Vals.lookup(I)) return C; 7524 7525 // An instruction inside the loop depends on a value outside the loop that we 7526 // weren't given a mapping for, or a value such as a call inside the loop. 7527 if (!canConstantEvolve(I, L)) return nullptr; 7528 7529 // An unmapped PHI can be due to a branch or another loop inside this loop, 7530 // or due to this not being the initial iteration through a loop where we 7531 // couldn't compute the evolution of this particular PHI last time. 7532 if (isa<PHINode>(I)) return nullptr; 7533 7534 std::vector<Constant*> Operands(I->getNumOperands()); 7535 7536 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) { 7537 Instruction *Operand = dyn_cast<Instruction>(I->getOperand(i)); 7538 if (!Operand) { 7539 Operands[i] = dyn_cast<Constant>(I->getOperand(i)); 7540 if (!Operands[i]) return nullptr; 7541 continue; 7542 } 7543 Constant *C = EvaluateExpression(Operand, L, Vals, DL, TLI); 7544 Vals[Operand] = C; 7545 if (!C) return nullptr; 7546 Operands[i] = C; 7547 } 7548 7549 if (CmpInst *CI = dyn_cast<CmpInst>(I)) 7550 return ConstantFoldCompareInstOperands(CI->getPredicate(), Operands[0], 7551 Operands[1], DL, TLI); 7552 if (LoadInst *LI = dyn_cast<LoadInst>(I)) { 7553 if (!LI->isVolatile()) 7554 return ConstantFoldLoadFromConstPtr(Operands[0], LI->getType(), DL); 7555 } 7556 return ConstantFoldInstOperands(I, Operands, DL, TLI); 7557 } 7558 7559 7560 // If every incoming value to PN except the one for BB is a specific Constant, 7561 // return that, else return nullptr. 7562 static Constant *getOtherIncomingValue(PHINode *PN, BasicBlock *BB) { 7563 Constant *IncomingVal = nullptr; 7564 7565 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) { 7566 if (PN->getIncomingBlock(i) == BB) 7567 continue; 7568 7569 auto *CurrentVal = dyn_cast<Constant>(PN->getIncomingValue(i)); 7570 if (!CurrentVal) 7571 return nullptr; 7572 7573 if (IncomingVal != CurrentVal) { 7574 if (IncomingVal) 7575 return nullptr; 7576 IncomingVal = CurrentVal; 7577 } 7578 } 7579 7580 return IncomingVal; 7581 } 7582 7583 /// getConstantEvolutionLoopExitValue - If we know that the specified Phi is 7584 /// in the header of its containing loop, we know the loop executes a 7585 /// constant number of times, and the PHI node is just a recurrence 7586 /// involving constants, fold it. 7587 Constant * 7588 ScalarEvolution::getConstantEvolutionLoopExitValue(PHINode *PN, 7589 const APInt &BEs, 7590 const Loop *L) { 7591 auto I = ConstantEvolutionLoopExitValue.find(PN); 7592 if (I != ConstantEvolutionLoopExitValue.end()) 7593 return I->second; 7594 7595 if (BEs.ugt(MaxBruteForceIterations)) 7596 return ConstantEvolutionLoopExitValue[PN] = nullptr; // Not going to evaluate it. 7597 7598 Constant *&RetVal = ConstantEvolutionLoopExitValue[PN]; 7599 7600 DenseMap<Instruction *, Constant *> CurrentIterVals; 7601 BasicBlock *Header = L->getHeader(); 7602 assert(PN->getParent() == Header && "Can't evaluate PHI not in loop header!"); 7603 7604 BasicBlock *Latch = L->getLoopLatch(); 7605 if (!Latch) 7606 return nullptr; 7607 7608 for (auto &I : *Header) { 7609 PHINode *PHI = dyn_cast<PHINode>(&I); 7610 if (!PHI) break; 7611 auto *StartCST = getOtherIncomingValue(PHI, Latch); 7612 if (!StartCST) continue; 7613 CurrentIterVals[PHI] = StartCST; 7614 } 7615 if (!CurrentIterVals.count(PN)) 7616 return RetVal = nullptr; 7617 7618 Value *BEValue = PN->getIncomingValueForBlock(Latch); 7619 7620 // Execute the loop symbolically to determine the exit value. 7621 assert(BEs.getActiveBits() < CHAR_BIT * sizeof(unsigned) && 7622 "BEs is <= MaxBruteForceIterations which is an 'unsigned'!"); 7623 7624 unsigned NumIterations = BEs.getZExtValue(); // must be in range 7625 unsigned IterationNum = 0; 7626 const DataLayout &DL = getDataLayout(); 7627 for (; ; ++IterationNum) { 7628 if (IterationNum == NumIterations) 7629 return RetVal = CurrentIterVals[PN]; // Got exit value! 7630 7631 // Compute the value of the PHIs for the next iteration. 7632 // EvaluateExpression adds non-phi values to the CurrentIterVals map. 7633 DenseMap<Instruction *, Constant *> NextIterVals; 7634 Constant *NextPHI = 7635 EvaluateExpression(BEValue, L, CurrentIterVals, DL, &TLI); 7636 if (!NextPHI) 7637 return nullptr; // Couldn't evaluate! 7638 NextIterVals[PN] = NextPHI; 7639 7640 bool StoppedEvolving = NextPHI == CurrentIterVals[PN]; 7641 7642 // Also evaluate the other PHI nodes. However, we don't get to stop if we 7643 // cease to be able to evaluate one of them or if they stop evolving, 7644 // because that doesn't necessarily prevent us from computing PN. 7645 SmallVector<std::pair<PHINode *, Constant *>, 8> PHIsToCompute; 7646 for (const auto &I : CurrentIterVals) { 7647 PHINode *PHI = dyn_cast<PHINode>(I.first); 7648 if (!PHI || PHI == PN || PHI->getParent() != Header) continue; 7649 PHIsToCompute.emplace_back(PHI, I.second); 7650 } 7651 // We use two distinct loops because EvaluateExpression may invalidate any 7652 // iterators into CurrentIterVals. 7653 for (const auto &I : PHIsToCompute) { 7654 PHINode *PHI = I.first; 7655 Constant *&NextPHI = NextIterVals[PHI]; 7656 if (!NextPHI) { // Not already computed. 7657 Value *BEValue = PHI->getIncomingValueForBlock(Latch); 7658 NextPHI = EvaluateExpression(BEValue, L, CurrentIterVals, DL, &TLI); 7659 } 7660 if (NextPHI != I.second) 7661 StoppedEvolving = false; 7662 } 7663 7664 // If all entries in CurrentIterVals == NextIterVals then we can stop 7665 // iterating, the loop can't continue to change. 7666 if (StoppedEvolving) 7667 return RetVal = CurrentIterVals[PN]; 7668 7669 CurrentIterVals.swap(NextIterVals); 7670 } 7671 } 7672 7673 const SCEV *ScalarEvolution::computeExitCountExhaustively(const Loop *L, 7674 Value *Cond, 7675 bool ExitWhen) { 7676 PHINode *PN = getConstantEvolvingPHI(Cond, L); 7677 if (!PN) return getCouldNotCompute(); 7678 7679 // If the loop is canonicalized, the PHI will have exactly two entries. 7680 // That's the only form we support here. 7681 if (PN->getNumIncomingValues() != 2) return getCouldNotCompute(); 7682 7683 DenseMap<Instruction *, Constant *> CurrentIterVals; 7684 BasicBlock *Header = L->getHeader(); 7685 assert(PN->getParent() == Header && "Can't evaluate PHI not in loop header!"); 7686 7687 BasicBlock *Latch = L->getLoopLatch(); 7688 assert(Latch && "Should follow from NumIncomingValues == 2!"); 7689 7690 for (auto &I : *Header) { 7691 PHINode *PHI = dyn_cast<PHINode>(&I); 7692 if (!PHI) 7693 break; 7694 auto *StartCST = getOtherIncomingValue(PHI, Latch); 7695 if (!StartCST) continue; 7696 CurrentIterVals[PHI] = StartCST; 7697 } 7698 if (!CurrentIterVals.count(PN)) 7699 return getCouldNotCompute(); 7700 7701 // Okay, we find a PHI node that defines the trip count of this loop. Execute 7702 // the loop symbolically to determine when the condition gets a value of 7703 // "ExitWhen". 7704 unsigned MaxIterations = MaxBruteForceIterations; // Limit analysis. 7705 const DataLayout &DL = getDataLayout(); 7706 for (unsigned IterationNum = 0; IterationNum != MaxIterations;++IterationNum){ 7707 auto *CondVal = dyn_cast_or_null<ConstantInt>( 7708 EvaluateExpression(Cond, L, CurrentIterVals, DL, &TLI)); 7709 7710 // Couldn't symbolically evaluate. 7711 if (!CondVal) return getCouldNotCompute(); 7712 7713 if (CondVal->getValue() == uint64_t(ExitWhen)) { 7714 ++NumBruteForceTripCountsComputed; 7715 return getConstant(Type::getInt32Ty(getContext()), IterationNum); 7716 } 7717 7718 // Update all the PHI nodes for the next iteration. 7719 DenseMap<Instruction *, Constant *> NextIterVals; 7720 7721 // Create a list of which PHIs we need to compute. We want to do this before 7722 // calling EvaluateExpression on them because that may invalidate iterators 7723 // into CurrentIterVals. 7724 SmallVector<PHINode *, 8> PHIsToCompute; 7725 for (const auto &I : CurrentIterVals) { 7726 PHINode *PHI = dyn_cast<PHINode>(I.first); 7727 if (!PHI || PHI->getParent() != Header) continue; 7728 PHIsToCompute.push_back(PHI); 7729 } 7730 for (PHINode *PHI : PHIsToCompute) { 7731 Constant *&NextPHI = NextIterVals[PHI]; 7732 if (NextPHI) continue; // Already computed! 7733 7734 Value *BEValue = PHI->getIncomingValueForBlock(Latch); 7735 NextPHI = EvaluateExpression(BEValue, L, CurrentIterVals, DL, &TLI); 7736 } 7737 CurrentIterVals.swap(NextIterVals); 7738 } 7739 7740 // Too many iterations were needed to evaluate. 7741 return getCouldNotCompute(); 7742 } 7743 7744 const SCEV *ScalarEvolution::getSCEVAtScope(const SCEV *V, const Loop *L) { 7745 SmallVector<std::pair<const Loop *, const SCEV *>, 2> &Values = 7746 ValuesAtScopes[V]; 7747 // Check to see if we've folded this expression at this loop before. 7748 for (auto &LS : Values) 7749 if (LS.first == L) 7750 return LS.second ? LS.second : V; 7751 7752 Values.emplace_back(L, nullptr); 7753 7754 // Otherwise compute it. 7755 const SCEV *C = computeSCEVAtScope(V, L); 7756 for (auto &LS : reverse(ValuesAtScopes[V])) 7757 if (LS.first == L) { 7758 LS.second = C; 7759 break; 7760 } 7761 return C; 7762 } 7763 7764 /// This builds up a Constant using the ConstantExpr interface. That way, we 7765 /// will return Constants for objects which aren't represented by a 7766 /// SCEVConstant, because SCEVConstant is restricted to ConstantInt. 7767 /// Returns NULL if the SCEV isn't representable as a Constant. 7768 static Constant *BuildConstantFromSCEV(const SCEV *V) { 7769 switch (static_cast<SCEVTypes>(V->getSCEVType())) { 7770 case scCouldNotCompute: 7771 case scAddRecExpr: 7772 break; 7773 case scConstant: 7774 return cast<SCEVConstant>(V)->getValue(); 7775 case scUnknown: 7776 return dyn_cast<Constant>(cast<SCEVUnknown>(V)->getValue()); 7777 case scSignExtend: { 7778 const SCEVSignExtendExpr *SS = cast<SCEVSignExtendExpr>(V); 7779 if (Constant *CastOp = BuildConstantFromSCEV(SS->getOperand())) 7780 return ConstantExpr::getSExt(CastOp, SS->getType()); 7781 break; 7782 } 7783 case scZeroExtend: { 7784 const SCEVZeroExtendExpr *SZ = cast<SCEVZeroExtendExpr>(V); 7785 if (Constant *CastOp = BuildConstantFromSCEV(SZ->getOperand())) 7786 return ConstantExpr::getZExt(CastOp, SZ->getType()); 7787 break; 7788 } 7789 case scTruncate: { 7790 const SCEVTruncateExpr *ST = cast<SCEVTruncateExpr>(V); 7791 if (Constant *CastOp = BuildConstantFromSCEV(ST->getOperand())) 7792 return ConstantExpr::getTrunc(CastOp, ST->getType()); 7793 break; 7794 } 7795 case scAddExpr: { 7796 const SCEVAddExpr *SA = cast<SCEVAddExpr>(V); 7797 if (Constant *C = BuildConstantFromSCEV(SA->getOperand(0))) { 7798 if (PointerType *PTy = dyn_cast<PointerType>(C->getType())) { 7799 unsigned AS = PTy->getAddressSpace(); 7800 Type *DestPtrTy = Type::getInt8PtrTy(C->getContext(), AS); 7801 C = ConstantExpr::getBitCast(C, DestPtrTy); 7802 } 7803 for (unsigned i = 1, e = SA->getNumOperands(); i != e; ++i) { 7804 Constant *C2 = BuildConstantFromSCEV(SA->getOperand(i)); 7805 if (!C2) return nullptr; 7806 7807 // First pointer! 7808 if (!C->getType()->isPointerTy() && C2->getType()->isPointerTy()) { 7809 unsigned AS = C2->getType()->getPointerAddressSpace(); 7810 std::swap(C, C2); 7811 Type *DestPtrTy = Type::getInt8PtrTy(C->getContext(), AS); 7812 // The offsets have been converted to bytes. We can add bytes to an 7813 // i8* by GEP with the byte count in the first index. 7814 C = ConstantExpr::getBitCast(C, DestPtrTy); 7815 } 7816 7817 // Don't bother trying to sum two pointers. We probably can't 7818 // statically compute a load that results from it anyway. 7819 if (C2->getType()->isPointerTy()) 7820 return nullptr; 7821 7822 if (PointerType *PTy = dyn_cast<PointerType>(C->getType())) { 7823 if (PTy->getElementType()->isStructTy()) 7824 C2 = ConstantExpr::getIntegerCast( 7825 C2, Type::getInt32Ty(C->getContext()), true); 7826 C = ConstantExpr::getGetElementPtr(PTy->getElementType(), C, C2); 7827 } else 7828 C = ConstantExpr::getAdd(C, C2); 7829 } 7830 return C; 7831 } 7832 break; 7833 } 7834 case scMulExpr: { 7835 const SCEVMulExpr *SM = cast<SCEVMulExpr>(V); 7836 if (Constant *C = BuildConstantFromSCEV(SM->getOperand(0))) { 7837 // Don't bother with pointers at all. 7838 if (C->getType()->isPointerTy()) return nullptr; 7839 for (unsigned i = 1, e = SM->getNumOperands(); i != e; ++i) { 7840 Constant *C2 = BuildConstantFromSCEV(SM->getOperand(i)); 7841 if (!C2 || C2->getType()->isPointerTy()) return nullptr; 7842 C = ConstantExpr::getMul(C, C2); 7843 } 7844 return C; 7845 } 7846 break; 7847 } 7848 case scUDivExpr: { 7849 const SCEVUDivExpr *SU = cast<SCEVUDivExpr>(V); 7850 if (Constant *LHS = BuildConstantFromSCEV(SU->getLHS())) 7851 if (Constant *RHS = BuildConstantFromSCEV(SU->getRHS())) 7852 if (LHS->getType() == RHS->getType()) 7853 return ConstantExpr::getUDiv(LHS, RHS); 7854 break; 7855 } 7856 case scSMaxExpr: 7857 case scUMaxExpr: 7858 break; // TODO: smax, umax. 7859 } 7860 return nullptr; 7861 } 7862 7863 const SCEV *ScalarEvolution::computeSCEVAtScope(const SCEV *V, const Loop *L) { 7864 if (isa<SCEVConstant>(V)) return V; 7865 7866 // If this instruction is evolved from a constant-evolving PHI, compute the 7867 // exit value from the loop without using SCEVs. 7868 if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(V)) { 7869 if (Instruction *I = dyn_cast<Instruction>(SU->getValue())) { 7870 const Loop *LI = this->LI[I->getParent()]; 7871 if (LI && LI->getParentLoop() == L) // Looking for loop exit value. 7872 if (PHINode *PN = dyn_cast<PHINode>(I)) 7873 if (PN->getParent() == LI->getHeader()) { 7874 // Okay, there is no closed form solution for the PHI node. Check 7875 // to see if the loop that contains it has a known backedge-taken 7876 // count. If so, we may be able to force computation of the exit 7877 // value. 7878 const SCEV *BackedgeTakenCount = getBackedgeTakenCount(LI); 7879 if (const SCEVConstant *BTCC = 7880 dyn_cast<SCEVConstant>(BackedgeTakenCount)) { 7881 7882 // This trivial case can show up in some degenerate cases where 7883 // the incoming IR has not yet been fully simplified. 7884 if (BTCC->getValue()->isZero()) { 7885 Value *InitValue = nullptr; 7886 bool MultipleInitValues = false; 7887 for (unsigned i = 0; i < PN->getNumIncomingValues(); i++) { 7888 if (!LI->contains(PN->getIncomingBlock(i))) { 7889 if (!InitValue) 7890 InitValue = PN->getIncomingValue(i); 7891 else if (InitValue != PN->getIncomingValue(i)) { 7892 MultipleInitValues = true; 7893 break; 7894 } 7895 } 7896 if (!MultipleInitValues && InitValue) 7897 return getSCEV(InitValue); 7898 } 7899 } 7900 // Okay, we know how many times the containing loop executes. If 7901 // this is a constant evolving PHI node, get the final value at 7902 // the specified iteration number. 7903 Constant *RV = 7904 getConstantEvolutionLoopExitValue(PN, BTCC->getAPInt(), LI); 7905 if (RV) return getSCEV(RV); 7906 } 7907 } 7908 7909 // Okay, this is an expression that we cannot symbolically evaluate 7910 // into a SCEV. Check to see if it's possible to symbolically evaluate 7911 // the arguments into constants, and if so, try to constant propagate the 7912 // result. This is particularly useful for computing loop exit values. 7913 if (CanConstantFold(I)) { 7914 SmallVector<Constant *, 4> Operands; 7915 bool MadeImprovement = false; 7916 for (Value *Op : I->operands()) { 7917 if (Constant *C = dyn_cast<Constant>(Op)) { 7918 Operands.push_back(C); 7919 continue; 7920 } 7921 7922 // If any of the operands is non-constant and if they are 7923 // non-integer and non-pointer, don't even try to analyze them 7924 // with scev techniques. 7925 if (!isSCEVable(Op->getType())) 7926 return V; 7927 7928 const SCEV *OrigV = getSCEV(Op); 7929 const SCEV *OpV = getSCEVAtScope(OrigV, L); 7930 MadeImprovement |= OrigV != OpV; 7931 7932 Constant *C = BuildConstantFromSCEV(OpV); 7933 if (!C) return V; 7934 if (C->getType() != Op->getType()) 7935 C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false, 7936 Op->getType(), 7937 false), 7938 C, Op->getType()); 7939 Operands.push_back(C); 7940 } 7941 7942 // Check to see if getSCEVAtScope actually made an improvement. 7943 if (MadeImprovement) { 7944 Constant *C = nullptr; 7945 const DataLayout &DL = getDataLayout(); 7946 if (const CmpInst *CI = dyn_cast<CmpInst>(I)) 7947 C = ConstantFoldCompareInstOperands(CI->getPredicate(), Operands[0], 7948 Operands[1], DL, &TLI); 7949 else if (const LoadInst *LI = dyn_cast<LoadInst>(I)) { 7950 if (!LI->isVolatile()) 7951 C = ConstantFoldLoadFromConstPtr(Operands[0], LI->getType(), DL); 7952 } else 7953 C = ConstantFoldInstOperands(I, Operands, DL, &TLI); 7954 if (!C) return V; 7955 return getSCEV(C); 7956 } 7957 } 7958 } 7959 7960 // This is some other type of SCEVUnknown, just return it. 7961 return V; 7962 } 7963 7964 if (const SCEVCommutativeExpr *Comm = dyn_cast<SCEVCommutativeExpr>(V)) { 7965 // Avoid performing the look-up in the common case where the specified 7966 // expression has no loop-variant portions. 7967 for (unsigned i = 0, e = Comm->getNumOperands(); i != e; ++i) { 7968 const SCEV *OpAtScope = getSCEVAtScope(Comm->getOperand(i), L); 7969 if (OpAtScope != Comm->getOperand(i)) { 7970 // Okay, at least one of these operands is loop variant but might be 7971 // foldable. Build a new instance of the folded commutative expression. 7972 SmallVector<const SCEV *, 8> NewOps(Comm->op_begin(), 7973 Comm->op_begin()+i); 7974 NewOps.push_back(OpAtScope); 7975 7976 for (++i; i != e; ++i) { 7977 OpAtScope = getSCEVAtScope(Comm->getOperand(i), L); 7978 NewOps.push_back(OpAtScope); 7979 } 7980 if (isa<SCEVAddExpr>(Comm)) 7981 return getAddExpr(NewOps); 7982 if (isa<SCEVMulExpr>(Comm)) 7983 return getMulExpr(NewOps); 7984 if (isa<SCEVSMaxExpr>(Comm)) 7985 return getSMaxExpr(NewOps); 7986 if (isa<SCEVUMaxExpr>(Comm)) 7987 return getUMaxExpr(NewOps); 7988 llvm_unreachable("Unknown commutative SCEV type!"); 7989 } 7990 } 7991 // If we got here, all operands are loop invariant. 7992 return Comm; 7993 } 7994 7995 if (const SCEVUDivExpr *Div = dyn_cast<SCEVUDivExpr>(V)) { 7996 const SCEV *LHS = getSCEVAtScope(Div->getLHS(), L); 7997 const SCEV *RHS = getSCEVAtScope(Div->getRHS(), L); 7998 if (LHS == Div->getLHS() && RHS == Div->getRHS()) 7999 return Div; // must be loop invariant 8000 return getUDivExpr(LHS, RHS); 8001 } 8002 8003 // If this is a loop recurrence for a loop that does not contain L, then we 8004 // are dealing with the final value computed by the loop. 8005 if (const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(V)) { 8006 // First, attempt to evaluate each operand. 8007 // Avoid performing the look-up in the common case where the specified 8008 // expression has no loop-variant portions. 8009 for (unsigned i = 0, e = AddRec->getNumOperands(); i != e; ++i) { 8010 const SCEV *OpAtScope = getSCEVAtScope(AddRec->getOperand(i), L); 8011 if (OpAtScope == AddRec->getOperand(i)) 8012 continue; 8013 8014 // Okay, at least one of these operands is loop variant but might be 8015 // foldable. Build a new instance of the folded commutative expression. 8016 SmallVector<const SCEV *, 8> NewOps(AddRec->op_begin(), 8017 AddRec->op_begin()+i); 8018 NewOps.push_back(OpAtScope); 8019 for (++i; i != e; ++i) 8020 NewOps.push_back(getSCEVAtScope(AddRec->getOperand(i), L)); 8021 8022 const SCEV *FoldedRec = 8023 getAddRecExpr(NewOps, AddRec->getLoop(), 8024 AddRec->getNoWrapFlags(SCEV::FlagNW)); 8025 AddRec = dyn_cast<SCEVAddRecExpr>(FoldedRec); 8026 // The addrec may be folded to a nonrecurrence, for example, if the 8027 // induction variable is multiplied by zero after constant folding. Go 8028 // ahead and return the folded value. 8029 if (!AddRec) 8030 return FoldedRec; 8031 break; 8032 } 8033 8034 // If the scope is outside the addrec's loop, evaluate it by using the 8035 // loop exit value of the addrec. 8036 if (!AddRec->getLoop()->contains(L)) { 8037 // To evaluate this recurrence, we need to know how many times the AddRec 8038 // loop iterates. Compute this now. 8039 const SCEV *BackedgeTakenCount = getBackedgeTakenCount(AddRec->getLoop()); 8040 if (BackedgeTakenCount == getCouldNotCompute()) return AddRec; 8041 8042 // Then, evaluate the AddRec. 8043 return AddRec->evaluateAtIteration(BackedgeTakenCount, *this); 8044 } 8045 8046 return AddRec; 8047 } 8048 8049 if (const SCEVZeroExtendExpr *Cast = dyn_cast<SCEVZeroExtendExpr>(V)) { 8050 const SCEV *Op = getSCEVAtScope(Cast->getOperand(), L); 8051 if (Op == Cast->getOperand()) 8052 return Cast; // must be loop invariant 8053 return getZeroExtendExpr(Op, Cast->getType()); 8054 } 8055 8056 if (const SCEVSignExtendExpr *Cast = dyn_cast<SCEVSignExtendExpr>(V)) { 8057 const SCEV *Op = getSCEVAtScope(Cast->getOperand(), L); 8058 if (Op == Cast->getOperand()) 8059 return Cast; // must be loop invariant 8060 return getSignExtendExpr(Op, Cast->getType()); 8061 } 8062 8063 if (const SCEVTruncateExpr *Cast = dyn_cast<SCEVTruncateExpr>(V)) { 8064 const SCEV *Op = getSCEVAtScope(Cast->getOperand(), L); 8065 if (Op == Cast->getOperand()) 8066 return Cast; // must be loop invariant 8067 return getTruncateExpr(Op, Cast->getType()); 8068 } 8069 8070 llvm_unreachable("Unknown SCEV type!"); 8071 } 8072 8073 const SCEV *ScalarEvolution::getSCEVAtScope(Value *V, const Loop *L) { 8074 return getSCEVAtScope(getSCEV(V), L); 8075 } 8076 8077 /// Finds the minimum unsigned root of the following equation: 8078 /// 8079 /// A * X = B (mod N) 8080 /// 8081 /// where N = 2^BW and BW is the common bit width of A and B. The signedness of 8082 /// A and B isn't important. 8083 /// 8084 /// If the equation does not have a solution, SCEVCouldNotCompute is returned. 8085 static const SCEV *SolveLinEquationWithOverflow(const APInt &A, const SCEV *B, 8086 ScalarEvolution &SE) { 8087 uint32_t BW = A.getBitWidth(); 8088 assert(BW == SE.getTypeSizeInBits(B->getType())); 8089 assert(A != 0 && "A must be non-zero."); 8090 8091 // 1. D = gcd(A, N) 8092 // 8093 // The gcd of A and N may have only one prime factor: 2. The number of 8094 // trailing zeros in A is its multiplicity 8095 uint32_t Mult2 = A.countTrailingZeros(); 8096 // D = 2^Mult2 8097 8098 // 2. Check if B is divisible by D. 8099 // 8100 // B is divisible by D if and only if the multiplicity of prime factor 2 for B 8101 // is not less than multiplicity of this prime factor for D. 8102 if (SE.GetMinTrailingZeros(B) < Mult2) 8103 return SE.getCouldNotCompute(); 8104 8105 // 3. Compute I: the multiplicative inverse of (A / D) in arithmetic 8106 // modulo (N / D). 8107 // 8108 // If D == 1, (N / D) == N == 2^BW, so we need one extra bit to represent 8109 // (N / D) in general. The inverse itself always fits into BW bits, though, 8110 // so we immediately truncate it. 8111 APInt AD = A.lshr(Mult2).zext(BW + 1); // AD = A / D 8112 APInt Mod(BW + 1, 0); 8113 Mod.setBit(BW - Mult2); // Mod = N / D 8114 APInt I = AD.multiplicativeInverse(Mod).trunc(BW); 8115 8116 // 4. Compute the minimum unsigned root of the equation: 8117 // I * (B / D) mod (N / D) 8118 // To simplify the computation, we factor out the divide by D: 8119 // (I * B mod N) / D 8120 const SCEV *D = SE.getConstant(APInt::getOneBitSet(BW, Mult2)); 8121 return SE.getUDivExactExpr(SE.getMulExpr(B, SE.getConstant(I)), D); 8122 } 8123 8124 /// Find the roots of the quadratic equation for the given quadratic chrec 8125 /// {L,+,M,+,N}. This returns either the two roots (which might be the same) or 8126 /// two SCEVCouldNotCompute objects. 8127 static Optional<std::pair<const SCEVConstant *,const SCEVConstant *>> 8128 SolveQuadraticEquation(const SCEVAddRecExpr *AddRec, ScalarEvolution &SE) { 8129 assert(AddRec->getNumOperands() == 3 && "This is not a quadratic chrec!"); 8130 const SCEVConstant *LC = dyn_cast<SCEVConstant>(AddRec->getOperand(0)); 8131 const SCEVConstant *MC = dyn_cast<SCEVConstant>(AddRec->getOperand(1)); 8132 const SCEVConstant *NC = dyn_cast<SCEVConstant>(AddRec->getOperand(2)); 8133 8134 // We currently can only solve this if the coefficients are constants. 8135 if (!LC || !MC || !NC) 8136 return None; 8137 8138 uint32_t BitWidth = LC->getAPInt().getBitWidth(); 8139 const APInt &L = LC->getAPInt(); 8140 const APInt &M = MC->getAPInt(); 8141 const APInt &N = NC->getAPInt(); 8142 APInt Two(BitWidth, 2); 8143 8144 // Convert from chrec coefficients to polynomial coefficients AX^2+BX+C 8145 8146 // The A coefficient is N/2 8147 APInt A = N.sdiv(Two); 8148 8149 // The B coefficient is M-N/2 8150 APInt B = M; 8151 B -= A; // A is the same as N/2. 8152 8153 // The C coefficient is L. 8154 const APInt& C = L; 8155 8156 // Compute the B^2-4ac term. 8157 APInt SqrtTerm = B; 8158 SqrtTerm *= B; 8159 SqrtTerm -= 4 * (A * C); 8160 8161 if (SqrtTerm.isNegative()) { 8162 // The loop is provably infinite. 8163 return None; 8164 } 8165 8166 // Compute sqrt(B^2-4ac). This is guaranteed to be the nearest 8167 // integer value or else APInt::sqrt() will assert. 8168 APInt SqrtVal = SqrtTerm.sqrt(); 8169 8170 // Compute the two solutions for the quadratic formula. 8171 // The divisions must be performed as signed divisions. 8172 APInt NegB = -std::move(B); 8173 APInt TwoA = std::move(A); 8174 TwoA <<= 1; 8175 if (TwoA.isNullValue()) 8176 return None; 8177 8178 LLVMContext &Context = SE.getContext(); 8179 8180 ConstantInt *Solution1 = 8181 ConstantInt::get(Context, (NegB + SqrtVal).sdiv(TwoA)); 8182 ConstantInt *Solution2 = 8183 ConstantInt::get(Context, (NegB - SqrtVal).sdiv(TwoA)); 8184 8185 return std::make_pair(cast<SCEVConstant>(SE.getConstant(Solution1)), 8186 cast<SCEVConstant>(SE.getConstant(Solution2))); 8187 } 8188 8189 ScalarEvolution::ExitLimit 8190 ScalarEvolution::howFarToZero(const SCEV *V, const Loop *L, bool ControlsExit, 8191 bool AllowPredicates) { 8192 8193 // This is only used for loops with a "x != y" exit test. The exit condition 8194 // is now expressed as a single expression, V = x-y. So the exit test is 8195 // effectively V != 0. We know and take advantage of the fact that this 8196 // expression only being used in a comparison by zero context. 8197 8198 SmallPtrSet<const SCEVPredicate *, 4> Predicates; 8199 // If the value is a constant 8200 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(V)) { 8201 // If the value is already zero, the branch will execute zero times. 8202 if (C->getValue()->isZero()) return C; 8203 return getCouldNotCompute(); // Otherwise it will loop infinitely. 8204 } 8205 8206 const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(V); 8207 if (!AddRec && AllowPredicates) 8208 // Try to make this an AddRec using runtime tests, in the first X 8209 // iterations of this loop, where X is the SCEV expression found by the 8210 // algorithm below. 8211 AddRec = convertSCEVToAddRecWithPredicates(V, L, Predicates); 8212 8213 if (!AddRec || AddRec->getLoop() != L) 8214 return getCouldNotCompute(); 8215 8216 // If this is a quadratic (3-term) AddRec {L,+,M,+,N}, find the roots of 8217 // the quadratic equation to solve it. 8218 if (AddRec->isQuadratic() && AddRec->getType()->isIntegerTy()) { 8219 if (auto Roots = SolveQuadraticEquation(AddRec, *this)) { 8220 const SCEVConstant *R1 = Roots->first; 8221 const SCEVConstant *R2 = Roots->second; 8222 // Pick the smallest positive root value. 8223 if (ConstantInt *CB = dyn_cast<ConstantInt>(ConstantExpr::getICmp( 8224 CmpInst::ICMP_ULT, R1->getValue(), R2->getValue()))) { 8225 if (!CB->getZExtValue()) 8226 std::swap(R1, R2); // R1 is the minimum root now. 8227 8228 // We can only use this value if the chrec ends up with an exact zero 8229 // value at this index. When solving for "X*X != 5", for example, we 8230 // should not accept a root of 2. 8231 const SCEV *Val = AddRec->evaluateAtIteration(R1, *this); 8232 if (Val->isZero()) 8233 // We found a quadratic root! 8234 return ExitLimit(R1, R1, false, Predicates); 8235 } 8236 } 8237 return getCouldNotCompute(); 8238 } 8239 8240 // Otherwise we can only handle this if it is affine. 8241 if (!AddRec->isAffine()) 8242 return getCouldNotCompute(); 8243 8244 // If this is an affine expression, the execution count of this branch is 8245 // the minimum unsigned root of the following equation: 8246 // 8247 // Start + Step*N = 0 (mod 2^BW) 8248 // 8249 // equivalent to: 8250 // 8251 // Step*N = -Start (mod 2^BW) 8252 // 8253 // where BW is the common bit width of Start and Step. 8254 8255 // Get the initial value for the loop. 8256 const SCEV *Start = getSCEVAtScope(AddRec->getStart(), L->getParentLoop()); 8257 const SCEV *Step = getSCEVAtScope(AddRec->getOperand(1), L->getParentLoop()); 8258 8259 // For now we handle only constant steps. 8260 // 8261 // TODO: Handle a nonconstant Step given AddRec<NUW>. If the 8262 // AddRec is NUW, then (in an unsigned sense) it cannot be counting up to wrap 8263 // to 0, it must be counting down to equal 0. Consequently, N = Start / -Step. 8264 // We have not yet seen any such cases. 8265 const SCEVConstant *StepC = dyn_cast<SCEVConstant>(Step); 8266 if (!StepC || StepC->getValue()->isZero()) 8267 return getCouldNotCompute(); 8268 8269 // For positive steps (counting up until unsigned overflow): 8270 // N = -Start/Step (as unsigned) 8271 // For negative steps (counting down to zero): 8272 // N = Start/-Step 8273 // First compute the unsigned distance from zero in the direction of Step. 8274 bool CountDown = StepC->getAPInt().isNegative(); 8275 const SCEV *Distance = CountDown ? Start : getNegativeSCEV(Start); 8276 8277 // Handle unitary steps, which cannot wraparound. 8278 // 1*N = -Start; -1*N = Start (mod 2^BW), so: 8279 // N = Distance (as unsigned) 8280 if (StepC->getValue()->isOne() || StepC->getValue()->isMinusOne()) { 8281 APInt MaxBECount = getUnsignedRangeMax(Distance); 8282 8283 // When a loop like "for (int i = 0; i != n; ++i) { /* body */ }" is rotated, 8284 // we end up with a loop whose backedge-taken count is n - 1. Detect this 8285 // case, and see if we can improve the bound. 8286 // 8287 // Explicitly handling this here is necessary because getUnsignedRange 8288 // isn't context-sensitive; it doesn't know that we only care about the 8289 // range inside the loop. 8290 const SCEV *Zero = getZero(Distance->getType()); 8291 const SCEV *One = getOne(Distance->getType()); 8292 const SCEV *DistancePlusOne = getAddExpr(Distance, One); 8293 if (isLoopEntryGuardedByCond(L, ICmpInst::ICMP_NE, DistancePlusOne, Zero)) { 8294 // If Distance + 1 doesn't overflow, we can compute the maximum distance 8295 // as "unsigned_max(Distance + 1) - 1". 8296 ConstantRange CR = getUnsignedRange(DistancePlusOne); 8297 MaxBECount = APIntOps::umin(MaxBECount, CR.getUnsignedMax() - 1); 8298 } 8299 return ExitLimit(Distance, getConstant(MaxBECount), false, Predicates); 8300 } 8301 8302 // If the condition controls loop exit (the loop exits only if the expression 8303 // is true) and the addition is no-wrap we can use unsigned divide to 8304 // compute the backedge count. In this case, the step may not divide the 8305 // distance, but we don't care because if the condition is "missed" the loop 8306 // will have undefined behavior due to wrapping. 8307 if (ControlsExit && AddRec->hasNoSelfWrap() && 8308 loopHasNoAbnormalExits(AddRec->getLoop())) { 8309 const SCEV *Exact = 8310 getUDivExpr(Distance, CountDown ? getNegativeSCEV(Step) : Step); 8311 const SCEV *Max = 8312 Exact == getCouldNotCompute() 8313 ? Exact 8314 : getConstant(getUnsignedRangeMax(Exact)); 8315 return ExitLimit(Exact, Max, false, Predicates); 8316 } 8317 8318 // Solve the general equation. 8319 const SCEV *E = SolveLinEquationWithOverflow(StepC->getAPInt(), 8320 getNegativeSCEV(Start), *this); 8321 const SCEV *M = E == getCouldNotCompute() 8322 ? E 8323 : getConstant(getUnsignedRangeMax(E)); 8324 return ExitLimit(E, M, false, Predicates); 8325 } 8326 8327 ScalarEvolution::ExitLimit 8328 ScalarEvolution::howFarToNonZero(const SCEV *V, const Loop *L) { 8329 // Loops that look like: while (X == 0) are very strange indeed. We don't 8330 // handle them yet except for the trivial case. This could be expanded in the 8331 // future as needed. 8332 8333 // If the value is a constant, check to see if it is known to be non-zero 8334 // already. If so, the backedge will execute zero times. 8335 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(V)) { 8336 if (!C->getValue()->isZero()) 8337 return getZero(C->getType()); 8338 return getCouldNotCompute(); // Otherwise it will loop infinitely. 8339 } 8340 8341 // We could implement others, but I really doubt anyone writes loops like 8342 // this, and if they did, they would already be constant folded. 8343 return getCouldNotCompute(); 8344 } 8345 8346 std::pair<BasicBlock *, BasicBlock *> 8347 ScalarEvolution::getPredecessorWithUniqueSuccessorForBB(BasicBlock *BB) { 8348 // If the block has a unique predecessor, then there is no path from the 8349 // predecessor to the block that does not go through the direct edge 8350 // from the predecessor to the block. 8351 if (BasicBlock *Pred = BB->getSinglePredecessor()) 8352 return {Pred, BB}; 8353 8354 // A loop's header is defined to be a block that dominates the loop. 8355 // If the header has a unique predecessor outside the loop, it must be 8356 // a block that has exactly one successor that can reach the loop. 8357 if (Loop *L = LI.getLoopFor(BB)) 8358 return {L->getLoopPredecessor(), L->getHeader()}; 8359 8360 return {nullptr, nullptr}; 8361 } 8362 8363 /// SCEV structural equivalence is usually sufficient for testing whether two 8364 /// expressions are equal, however for the purposes of looking for a condition 8365 /// guarding a loop, it can be useful to be a little more general, since a 8366 /// front-end may have replicated the controlling expression. 8367 static bool HasSameValue(const SCEV *A, const SCEV *B) { 8368 // Quick check to see if they are the same SCEV. 8369 if (A == B) return true; 8370 8371 auto ComputesEqualValues = [](const Instruction *A, const Instruction *B) { 8372 // Not all instructions that are "identical" compute the same value. For 8373 // instance, two distinct alloca instructions allocating the same type are 8374 // identical and do not read memory; but compute distinct values. 8375 return A->isIdenticalTo(B) && (isa<BinaryOperator>(A) || isa<GetElementPtrInst>(A)); 8376 }; 8377 8378 // Otherwise, if they're both SCEVUnknown, it's possible that they hold 8379 // two different instructions with the same value. Check for this case. 8380 if (const SCEVUnknown *AU = dyn_cast<SCEVUnknown>(A)) 8381 if (const SCEVUnknown *BU = dyn_cast<SCEVUnknown>(B)) 8382 if (const Instruction *AI = dyn_cast<Instruction>(AU->getValue())) 8383 if (const Instruction *BI = dyn_cast<Instruction>(BU->getValue())) 8384 if (ComputesEqualValues(AI, BI)) 8385 return true; 8386 8387 // Otherwise assume they may have a different value. 8388 return false; 8389 } 8390 8391 bool ScalarEvolution::SimplifyICmpOperands(ICmpInst::Predicate &Pred, 8392 const SCEV *&LHS, const SCEV *&RHS, 8393 unsigned Depth) { 8394 bool Changed = false; 8395 8396 // If we hit the max recursion limit bail out. 8397 if (Depth >= 3) 8398 return false; 8399 8400 // Canonicalize a constant to the right side. 8401 if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(LHS)) { 8402 // Check for both operands constant. 8403 if (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(RHS)) { 8404 if (ConstantExpr::getICmp(Pred, 8405 LHSC->getValue(), 8406 RHSC->getValue())->isNullValue()) 8407 goto trivially_false; 8408 else 8409 goto trivially_true; 8410 } 8411 // Otherwise swap the operands to put the constant on the right. 8412 std::swap(LHS, RHS); 8413 Pred = ICmpInst::getSwappedPredicate(Pred); 8414 Changed = true; 8415 } 8416 8417 // If we're comparing an addrec with a value which is loop-invariant in the 8418 // addrec's loop, put the addrec on the left. Also make a dominance check, 8419 // as both operands could be addrecs loop-invariant in each other's loop. 8420 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(RHS)) { 8421 const Loop *L = AR->getLoop(); 8422 if (isLoopInvariant(LHS, L) && properlyDominates(LHS, L->getHeader())) { 8423 std::swap(LHS, RHS); 8424 Pred = ICmpInst::getSwappedPredicate(Pred); 8425 Changed = true; 8426 } 8427 } 8428 8429 // If there's a constant operand, canonicalize comparisons with boundary 8430 // cases, and canonicalize *-or-equal comparisons to regular comparisons. 8431 if (const SCEVConstant *RC = dyn_cast<SCEVConstant>(RHS)) { 8432 const APInt &RA = RC->getAPInt(); 8433 8434 bool SimplifiedByConstantRange = false; 8435 8436 if (!ICmpInst::isEquality(Pred)) { 8437 ConstantRange ExactCR = ConstantRange::makeExactICmpRegion(Pred, RA); 8438 if (ExactCR.isFullSet()) 8439 goto trivially_true; 8440 else if (ExactCR.isEmptySet()) 8441 goto trivially_false; 8442 8443 APInt NewRHS; 8444 CmpInst::Predicate NewPred; 8445 if (ExactCR.getEquivalentICmp(NewPred, NewRHS) && 8446 ICmpInst::isEquality(NewPred)) { 8447 // We were able to convert an inequality to an equality. 8448 Pred = NewPred; 8449 RHS = getConstant(NewRHS); 8450 Changed = SimplifiedByConstantRange = true; 8451 } 8452 } 8453 8454 if (!SimplifiedByConstantRange) { 8455 switch (Pred) { 8456 default: 8457 break; 8458 case ICmpInst::ICMP_EQ: 8459 case ICmpInst::ICMP_NE: 8460 // Fold ((-1) * %a) + %b == 0 (equivalent to %b-%a == 0) into %a == %b. 8461 if (!RA) 8462 if (const SCEVAddExpr *AE = dyn_cast<SCEVAddExpr>(LHS)) 8463 if (const SCEVMulExpr *ME = 8464 dyn_cast<SCEVMulExpr>(AE->getOperand(0))) 8465 if (AE->getNumOperands() == 2 && ME->getNumOperands() == 2 && 8466 ME->getOperand(0)->isAllOnesValue()) { 8467 RHS = AE->getOperand(1); 8468 LHS = ME->getOperand(1); 8469 Changed = true; 8470 } 8471 break; 8472 8473 8474 // The "Should have been caught earlier!" messages refer to the fact 8475 // that the ExactCR.isFullSet() or ExactCR.isEmptySet() check above 8476 // should have fired on the corresponding cases, and canonicalized the 8477 // check to trivially_true or trivially_false. 8478 8479 case ICmpInst::ICMP_UGE: 8480 assert(!RA.isMinValue() && "Should have been caught earlier!"); 8481 Pred = ICmpInst::ICMP_UGT; 8482 RHS = getConstant(RA - 1); 8483 Changed = true; 8484 break; 8485 case ICmpInst::ICMP_ULE: 8486 assert(!RA.isMaxValue() && "Should have been caught earlier!"); 8487 Pred = ICmpInst::ICMP_ULT; 8488 RHS = getConstant(RA + 1); 8489 Changed = true; 8490 break; 8491 case ICmpInst::ICMP_SGE: 8492 assert(!RA.isMinSignedValue() && "Should have been caught earlier!"); 8493 Pred = ICmpInst::ICMP_SGT; 8494 RHS = getConstant(RA - 1); 8495 Changed = true; 8496 break; 8497 case ICmpInst::ICMP_SLE: 8498 assert(!RA.isMaxSignedValue() && "Should have been caught earlier!"); 8499 Pred = ICmpInst::ICMP_SLT; 8500 RHS = getConstant(RA + 1); 8501 Changed = true; 8502 break; 8503 } 8504 } 8505 } 8506 8507 // Check for obvious equality. 8508 if (HasSameValue(LHS, RHS)) { 8509 if (ICmpInst::isTrueWhenEqual(Pred)) 8510 goto trivially_true; 8511 if (ICmpInst::isFalseWhenEqual(Pred)) 8512 goto trivially_false; 8513 } 8514 8515 // If possible, canonicalize GE/LE comparisons to GT/LT comparisons, by 8516 // adding or subtracting 1 from one of the operands. 8517 switch (Pred) { 8518 case ICmpInst::ICMP_SLE: 8519 if (!getSignedRangeMax(RHS).isMaxSignedValue()) { 8520 RHS = getAddExpr(getConstant(RHS->getType(), 1, true), RHS, 8521 SCEV::FlagNSW); 8522 Pred = ICmpInst::ICMP_SLT; 8523 Changed = true; 8524 } else if (!getSignedRangeMin(LHS).isMinSignedValue()) { 8525 LHS = getAddExpr(getConstant(RHS->getType(), (uint64_t)-1, true), LHS, 8526 SCEV::FlagNSW); 8527 Pred = ICmpInst::ICMP_SLT; 8528 Changed = true; 8529 } 8530 break; 8531 case ICmpInst::ICMP_SGE: 8532 if (!getSignedRangeMin(RHS).isMinSignedValue()) { 8533 RHS = getAddExpr(getConstant(RHS->getType(), (uint64_t)-1, true), RHS, 8534 SCEV::FlagNSW); 8535 Pred = ICmpInst::ICMP_SGT; 8536 Changed = true; 8537 } else if (!getSignedRangeMax(LHS).isMaxSignedValue()) { 8538 LHS = getAddExpr(getConstant(RHS->getType(), 1, true), LHS, 8539 SCEV::FlagNSW); 8540 Pred = ICmpInst::ICMP_SGT; 8541 Changed = true; 8542 } 8543 break; 8544 case ICmpInst::ICMP_ULE: 8545 if (!getUnsignedRangeMax(RHS).isMaxValue()) { 8546 RHS = getAddExpr(getConstant(RHS->getType(), 1, true), RHS, 8547 SCEV::FlagNUW); 8548 Pred = ICmpInst::ICMP_ULT; 8549 Changed = true; 8550 } else if (!getUnsignedRangeMin(LHS).isMinValue()) { 8551 LHS = getAddExpr(getConstant(RHS->getType(), (uint64_t)-1, true), LHS); 8552 Pred = ICmpInst::ICMP_ULT; 8553 Changed = true; 8554 } 8555 break; 8556 case ICmpInst::ICMP_UGE: 8557 if (!getUnsignedRangeMin(RHS).isMinValue()) { 8558 RHS = getAddExpr(getConstant(RHS->getType(), (uint64_t)-1, true), RHS); 8559 Pred = ICmpInst::ICMP_UGT; 8560 Changed = true; 8561 } else if (!getUnsignedRangeMax(LHS).isMaxValue()) { 8562 LHS = getAddExpr(getConstant(RHS->getType(), 1, true), LHS, 8563 SCEV::FlagNUW); 8564 Pred = ICmpInst::ICMP_UGT; 8565 Changed = true; 8566 } 8567 break; 8568 default: 8569 break; 8570 } 8571 8572 // TODO: More simplifications are possible here. 8573 8574 // Recursively simplify until we either hit a recursion limit or nothing 8575 // changes. 8576 if (Changed) 8577 return SimplifyICmpOperands(Pred, LHS, RHS, Depth+1); 8578 8579 return Changed; 8580 8581 trivially_true: 8582 // Return 0 == 0. 8583 LHS = RHS = getConstant(ConstantInt::getFalse(getContext())); 8584 Pred = ICmpInst::ICMP_EQ; 8585 return true; 8586 8587 trivially_false: 8588 // Return 0 != 0. 8589 LHS = RHS = getConstant(ConstantInt::getFalse(getContext())); 8590 Pred = ICmpInst::ICMP_NE; 8591 return true; 8592 } 8593 8594 bool ScalarEvolution::isKnownNegative(const SCEV *S) { 8595 return getSignedRangeMax(S).isNegative(); 8596 } 8597 8598 bool ScalarEvolution::isKnownPositive(const SCEV *S) { 8599 return getSignedRangeMin(S).isStrictlyPositive(); 8600 } 8601 8602 bool ScalarEvolution::isKnownNonNegative(const SCEV *S) { 8603 return !getSignedRangeMin(S).isNegative(); 8604 } 8605 8606 bool ScalarEvolution::isKnownNonPositive(const SCEV *S) { 8607 return !getSignedRangeMax(S).isStrictlyPositive(); 8608 } 8609 8610 bool ScalarEvolution::isKnownNonZero(const SCEV *S) { 8611 return isKnownNegative(S) || isKnownPositive(S); 8612 } 8613 8614 bool ScalarEvolution::isKnownPredicate(ICmpInst::Predicate Pred, 8615 const SCEV *LHS, const SCEV *RHS) { 8616 // Canonicalize the inputs first. 8617 (void)SimplifyICmpOperands(Pred, LHS, RHS); 8618 8619 // If LHS or RHS is an addrec, check to see if the condition is true in 8620 // every iteration of the loop. 8621 // If LHS and RHS are both addrec, both conditions must be true in 8622 // every iteration of the loop. 8623 const SCEVAddRecExpr *LAR = dyn_cast<SCEVAddRecExpr>(LHS); 8624 const SCEVAddRecExpr *RAR = dyn_cast<SCEVAddRecExpr>(RHS); 8625 bool LeftGuarded = false; 8626 bool RightGuarded = false; 8627 if (LAR) { 8628 const Loop *L = LAR->getLoop(); 8629 if (isLoopEntryGuardedByCond(L, Pred, LAR->getStart(), RHS) && 8630 isLoopBackedgeGuardedByCond(L, Pred, LAR->getPostIncExpr(*this), RHS)) { 8631 if (!RAR) return true; 8632 LeftGuarded = true; 8633 } 8634 } 8635 if (RAR) { 8636 const Loop *L = RAR->getLoop(); 8637 if (isLoopEntryGuardedByCond(L, Pred, LHS, RAR->getStart()) && 8638 isLoopBackedgeGuardedByCond(L, Pred, LHS, RAR->getPostIncExpr(*this))) { 8639 if (!LAR) return true; 8640 RightGuarded = true; 8641 } 8642 } 8643 if (LeftGuarded && RightGuarded) 8644 return true; 8645 8646 if (isKnownPredicateViaSplitting(Pred, LHS, RHS)) 8647 return true; 8648 8649 // Otherwise see what can be done with known constant ranges. 8650 return isKnownPredicateViaConstantRanges(Pred, LHS, RHS); 8651 } 8652 8653 bool ScalarEvolution::isMonotonicPredicate(const SCEVAddRecExpr *LHS, 8654 ICmpInst::Predicate Pred, 8655 bool &Increasing) { 8656 bool Result = isMonotonicPredicateImpl(LHS, Pred, Increasing); 8657 8658 #ifndef NDEBUG 8659 // Verify an invariant: inverting the predicate should turn a monotonically 8660 // increasing change to a monotonically decreasing one, and vice versa. 8661 bool IncreasingSwapped; 8662 bool ResultSwapped = isMonotonicPredicateImpl( 8663 LHS, ICmpInst::getSwappedPredicate(Pred), IncreasingSwapped); 8664 8665 assert(Result == ResultSwapped && "should be able to analyze both!"); 8666 if (ResultSwapped) 8667 assert(Increasing == !IncreasingSwapped && 8668 "monotonicity should flip as we flip the predicate"); 8669 #endif 8670 8671 return Result; 8672 } 8673 8674 bool ScalarEvolution::isMonotonicPredicateImpl(const SCEVAddRecExpr *LHS, 8675 ICmpInst::Predicate Pred, 8676 bool &Increasing) { 8677 8678 // A zero step value for LHS means the induction variable is essentially a 8679 // loop invariant value. We don't really depend on the predicate actually 8680 // flipping from false to true (for increasing predicates, and the other way 8681 // around for decreasing predicates), all we care about is that *if* the 8682 // predicate changes then it only changes from false to true. 8683 // 8684 // A zero step value in itself is not very useful, but there may be places 8685 // where SCEV can prove X >= 0 but not prove X > 0, so it is helpful to be 8686 // as general as possible. 8687 8688 switch (Pred) { 8689 default: 8690 return false; // Conservative answer 8691 8692 case ICmpInst::ICMP_UGT: 8693 case ICmpInst::ICMP_UGE: 8694 case ICmpInst::ICMP_ULT: 8695 case ICmpInst::ICMP_ULE: 8696 if (!LHS->hasNoUnsignedWrap()) 8697 return false; 8698 8699 Increasing = Pred == ICmpInst::ICMP_UGT || Pred == ICmpInst::ICMP_UGE; 8700 return true; 8701 8702 case ICmpInst::ICMP_SGT: 8703 case ICmpInst::ICMP_SGE: 8704 case ICmpInst::ICMP_SLT: 8705 case ICmpInst::ICMP_SLE: { 8706 if (!LHS->hasNoSignedWrap()) 8707 return false; 8708 8709 const SCEV *Step = LHS->getStepRecurrence(*this); 8710 8711 if (isKnownNonNegative(Step)) { 8712 Increasing = Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_SGE; 8713 return true; 8714 } 8715 8716 if (isKnownNonPositive(Step)) { 8717 Increasing = Pred == ICmpInst::ICMP_SLT || Pred == ICmpInst::ICMP_SLE; 8718 return true; 8719 } 8720 8721 return false; 8722 } 8723 8724 } 8725 8726 llvm_unreachable("switch has default clause!"); 8727 } 8728 8729 bool ScalarEvolution::isLoopInvariantPredicate( 8730 ICmpInst::Predicate Pred, const SCEV *LHS, const SCEV *RHS, const Loop *L, 8731 ICmpInst::Predicate &InvariantPred, const SCEV *&InvariantLHS, 8732 const SCEV *&InvariantRHS) { 8733 8734 // If there is a loop-invariant, force it into the RHS, otherwise bail out. 8735 if (!isLoopInvariant(RHS, L)) { 8736 if (!isLoopInvariant(LHS, L)) 8737 return false; 8738 8739 std::swap(LHS, RHS); 8740 Pred = ICmpInst::getSwappedPredicate(Pred); 8741 } 8742 8743 const SCEVAddRecExpr *ArLHS = dyn_cast<SCEVAddRecExpr>(LHS); 8744 if (!ArLHS || ArLHS->getLoop() != L) 8745 return false; 8746 8747 bool Increasing; 8748 if (!isMonotonicPredicate(ArLHS, Pred, Increasing)) 8749 return false; 8750 8751 // If the predicate "ArLHS `Pred` RHS" monotonically increases from false to 8752 // true as the loop iterates, and the backedge is control dependent on 8753 // "ArLHS `Pred` RHS" == true then we can reason as follows: 8754 // 8755 // * if the predicate was false in the first iteration then the predicate 8756 // is never evaluated again, since the loop exits without taking the 8757 // backedge. 8758 // * if the predicate was true in the first iteration then it will 8759 // continue to be true for all future iterations since it is 8760 // monotonically increasing. 8761 // 8762 // For both the above possibilities, we can replace the loop varying 8763 // predicate with its value on the first iteration of the loop (which is 8764 // loop invariant). 8765 // 8766 // A similar reasoning applies for a monotonically decreasing predicate, by 8767 // replacing true with false and false with true in the above two bullets. 8768 8769 auto P = Increasing ? Pred : ICmpInst::getInversePredicate(Pred); 8770 8771 if (!isLoopBackedgeGuardedByCond(L, P, LHS, RHS)) 8772 return false; 8773 8774 InvariantPred = Pred; 8775 InvariantLHS = ArLHS->getStart(); 8776 InvariantRHS = RHS; 8777 return true; 8778 } 8779 8780 bool ScalarEvolution::isKnownPredicateViaConstantRanges( 8781 ICmpInst::Predicate Pred, const SCEV *LHS, const SCEV *RHS) { 8782 if (HasSameValue(LHS, RHS)) 8783 return ICmpInst::isTrueWhenEqual(Pred); 8784 8785 // This code is split out from isKnownPredicate because it is called from 8786 // within isLoopEntryGuardedByCond. 8787 8788 auto CheckRanges = 8789 [&](const ConstantRange &RangeLHS, const ConstantRange &RangeRHS) { 8790 return ConstantRange::makeSatisfyingICmpRegion(Pred, RangeRHS) 8791 .contains(RangeLHS); 8792 }; 8793 8794 // The check at the top of the function catches the case where the values are 8795 // known to be equal. 8796 if (Pred == CmpInst::ICMP_EQ) 8797 return false; 8798 8799 if (Pred == CmpInst::ICMP_NE) 8800 return CheckRanges(getSignedRange(LHS), getSignedRange(RHS)) || 8801 CheckRanges(getUnsignedRange(LHS), getUnsignedRange(RHS)) || 8802 isKnownNonZero(getMinusSCEV(LHS, RHS)); 8803 8804 if (CmpInst::isSigned(Pred)) 8805 return CheckRanges(getSignedRange(LHS), getSignedRange(RHS)); 8806 8807 return CheckRanges(getUnsignedRange(LHS), getUnsignedRange(RHS)); 8808 } 8809 8810 bool ScalarEvolution::isKnownPredicateViaNoOverflow(ICmpInst::Predicate Pred, 8811 const SCEV *LHS, 8812 const SCEV *RHS) { 8813 // Match Result to (X + Y)<ExpectedFlags> where Y is a constant integer. 8814 // Return Y via OutY. 8815 auto MatchBinaryAddToConst = 8816 [this](const SCEV *Result, const SCEV *X, APInt &OutY, 8817 SCEV::NoWrapFlags ExpectedFlags) { 8818 const SCEV *NonConstOp, *ConstOp; 8819 SCEV::NoWrapFlags FlagsPresent; 8820 8821 if (!splitBinaryAdd(Result, ConstOp, NonConstOp, FlagsPresent) || 8822 !isa<SCEVConstant>(ConstOp) || NonConstOp != X) 8823 return false; 8824 8825 OutY = cast<SCEVConstant>(ConstOp)->getAPInt(); 8826 return (FlagsPresent & ExpectedFlags) == ExpectedFlags; 8827 }; 8828 8829 APInt C; 8830 8831 switch (Pred) { 8832 default: 8833 break; 8834 8835 case ICmpInst::ICMP_SGE: 8836 std::swap(LHS, RHS); 8837 LLVM_FALLTHROUGH; 8838 case ICmpInst::ICMP_SLE: 8839 // X s<= (X + C)<nsw> if C >= 0 8840 if (MatchBinaryAddToConst(RHS, LHS, C, SCEV::FlagNSW) && C.isNonNegative()) 8841 return true; 8842 8843 // (X + C)<nsw> s<= X if C <= 0 8844 if (MatchBinaryAddToConst(LHS, RHS, C, SCEV::FlagNSW) && 8845 !C.isStrictlyPositive()) 8846 return true; 8847 break; 8848 8849 case ICmpInst::ICMP_SGT: 8850 std::swap(LHS, RHS); 8851 LLVM_FALLTHROUGH; 8852 case ICmpInst::ICMP_SLT: 8853 // X s< (X + C)<nsw> if C > 0 8854 if (MatchBinaryAddToConst(RHS, LHS, C, SCEV::FlagNSW) && 8855 C.isStrictlyPositive()) 8856 return true; 8857 8858 // (X + C)<nsw> s< X if C < 0 8859 if (MatchBinaryAddToConst(LHS, RHS, C, SCEV::FlagNSW) && C.isNegative()) 8860 return true; 8861 break; 8862 } 8863 8864 return false; 8865 } 8866 8867 bool ScalarEvolution::isKnownPredicateViaSplitting(ICmpInst::Predicate Pred, 8868 const SCEV *LHS, 8869 const SCEV *RHS) { 8870 if (Pred != ICmpInst::ICMP_ULT || ProvingSplitPredicate) 8871 return false; 8872 8873 // Allowing arbitrary number of activations of isKnownPredicateViaSplitting on 8874 // the stack can result in exponential time complexity. 8875 SaveAndRestore<bool> Restore(ProvingSplitPredicate, true); 8876 8877 // If L >= 0 then I `ult` L <=> I >= 0 && I `slt` L 8878 // 8879 // To prove L >= 0 we use isKnownNonNegative whereas to prove I >= 0 we use 8880 // isKnownPredicate. isKnownPredicate is more powerful, but also more 8881 // expensive; and using isKnownNonNegative(RHS) is sufficient for most of the 8882 // interesting cases seen in practice. We can consider "upgrading" L >= 0 to 8883 // use isKnownPredicate later if needed. 8884 return isKnownNonNegative(RHS) && 8885 isKnownPredicate(CmpInst::ICMP_SGE, LHS, getZero(LHS->getType())) && 8886 isKnownPredicate(CmpInst::ICMP_SLT, LHS, RHS); 8887 } 8888 8889 bool ScalarEvolution::isImpliedViaGuard(BasicBlock *BB, 8890 ICmpInst::Predicate Pred, 8891 const SCEV *LHS, const SCEV *RHS) { 8892 // No need to even try if we know the module has no guards. 8893 if (!HasGuards) 8894 return false; 8895 8896 return any_of(*BB, [&](Instruction &I) { 8897 using namespace llvm::PatternMatch; 8898 8899 Value *Condition; 8900 return match(&I, m_Intrinsic<Intrinsic::experimental_guard>( 8901 m_Value(Condition))) && 8902 isImpliedCond(Pred, LHS, RHS, Condition, false); 8903 }); 8904 } 8905 8906 /// isLoopBackedgeGuardedByCond - Test whether the backedge of the loop is 8907 /// protected by a conditional between LHS and RHS. This is used to 8908 /// to eliminate casts. 8909 bool 8910 ScalarEvolution::isLoopBackedgeGuardedByCond(const Loop *L, 8911 ICmpInst::Predicate Pred, 8912 const SCEV *LHS, const SCEV *RHS) { 8913 // Interpret a null as meaning no loop, where there is obviously no guard 8914 // (interprocedural conditions notwithstanding). 8915 if (!L) return true; 8916 8917 if (isKnownPredicateViaConstantRanges(Pred, LHS, RHS)) 8918 return true; 8919 8920 BasicBlock *Latch = L->getLoopLatch(); 8921 if (!Latch) 8922 return false; 8923 8924 BranchInst *LoopContinuePredicate = 8925 dyn_cast<BranchInst>(Latch->getTerminator()); 8926 if (LoopContinuePredicate && LoopContinuePredicate->isConditional() && 8927 isImpliedCond(Pred, LHS, RHS, 8928 LoopContinuePredicate->getCondition(), 8929 LoopContinuePredicate->getSuccessor(0) != L->getHeader())) 8930 return true; 8931 8932 // We don't want more than one activation of the following loops on the stack 8933 // -- that can lead to O(n!) time complexity. 8934 if (WalkingBEDominatingConds) 8935 return false; 8936 8937 SaveAndRestore<bool> ClearOnExit(WalkingBEDominatingConds, true); 8938 8939 // See if we can exploit a trip count to prove the predicate. 8940 const auto &BETakenInfo = getBackedgeTakenInfo(L); 8941 const SCEV *LatchBECount = BETakenInfo.getExact(Latch, this); 8942 if (LatchBECount != getCouldNotCompute()) { 8943 // We know that Latch branches back to the loop header exactly 8944 // LatchBECount times. This means the backdege condition at Latch is 8945 // equivalent to "{0,+,1} u< LatchBECount". 8946 Type *Ty = LatchBECount->getType(); 8947 auto NoWrapFlags = SCEV::NoWrapFlags(SCEV::FlagNUW | SCEV::FlagNW); 8948 const SCEV *LoopCounter = 8949 getAddRecExpr(getZero(Ty), getOne(Ty), L, NoWrapFlags); 8950 if (isImpliedCond(Pred, LHS, RHS, ICmpInst::ICMP_ULT, LoopCounter, 8951 LatchBECount)) 8952 return true; 8953 } 8954 8955 // Check conditions due to any @llvm.assume intrinsics. 8956 for (auto &AssumeVH : AC.assumptions()) { 8957 if (!AssumeVH) 8958 continue; 8959 auto *CI = cast<CallInst>(AssumeVH); 8960 if (!DT.dominates(CI, Latch->getTerminator())) 8961 continue; 8962 8963 if (isImpliedCond(Pred, LHS, RHS, CI->getArgOperand(0), false)) 8964 return true; 8965 } 8966 8967 // If the loop is not reachable from the entry block, we risk running into an 8968 // infinite loop as we walk up into the dom tree. These loops do not matter 8969 // anyway, so we just return a conservative answer when we see them. 8970 if (!DT.isReachableFromEntry(L->getHeader())) 8971 return false; 8972 8973 if (isImpliedViaGuard(Latch, Pred, LHS, RHS)) 8974 return true; 8975 8976 for (DomTreeNode *DTN = DT[Latch], *HeaderDTN = DT[L->getHeader()]; 8977 DTN != HeaderDTN; DTN = DTN->getIDom()) { 8978 assert(DTN && "should reach the loop header before reaching the root!"); 8979 8980 BasicBlock *BB = DTN->getBlock(); 8981 if (isImpliedViaGuard(BB, Pred, LHS, RHS)) 8982 return true; 8983 8984 BasicBlock *PBB = BB->getSinglePredecessor(); 8985 if (!PBB) 8986 continue; 8987 8988 BranchInst *ContinuePredicate = dyn_cast<BranchInst>(PBB->getTerminator()); 8989 if (!ContinuePredicate || !ContinuePredicate->isConditional()) 8990 continue; 8991 8992 Value *Condition = ContinuePredicate->getCondition(); 8993 8994 // If we have an edge `E` within the loop body that dominates the only 8995 // latch, the condition guarding `E` also guards the backedge. This 8996 // reasoning works only for loops with a single latch. 8997 8998 BasicBlockEdge DominatingEdge(PBB, BB); 8999 if (DominatingEdge.isSingleEdge()) { 9000 // We're constructively (and conservatively) enumerating edges within the 9001 // loop body that dominate the latch. The dominator tree better agree 9002 // with us on this: 9003 assert(DT.dominates(DominatingEdge, Latch) && "should be!"); 9004 9005 if (isImpliedCond(Pred, LHS, RHS, Condition, 9006 BB != ContinuePredicate->getSuccessor(0))) 9007 return true; 9008 } 9009 } 9010 9011 return false; 9012 } 9013 9014 bool 9015 ScalarEvolution::isLoopEntryGuardedByCond(const Loop *L, 9016 ICmpInst::Predicate Pred, 9017 const SCEV *LHS, const SCEV *RHS) { 9018 // Interpret a null as meaning no loop, where there is obviously no guard 9019 // (interprocedural conditions notwithstanding). 9020 if (!L) return false; 9021 9022 if (isKnownPredicateViaConstantRanges(Pred, LHS, RHS)) 9023 return true; 9024 9025 // Starting at the loop predecessor, climb up the predecessor chain, as long 9026 // as there are predecessors that can be found that have unique successors 9027 // leading to the original header. 9028 for (std::pair<BasicBlock *, BasicBlock *> 9029 Pair(L->getLoopPredecessor(), L->getHeader()); 9030 Pair.first; 9031 Pair = getPredecessorWithUniqueSuccessorForBB(Pair.first)) { 9032 9033 if (isImpliedViaGuard(Pair.first, Pred, LHS, RHS)) 9034 return true; 9035 9036 BranchInst *LoopEntryPredicate = 9037 dyn_cast<BranchInst>(Pair.first->getTerminator()); 9038 if (!LoopEntryPredicate || 9039 LoopEntryPredicate->isUnconditional()) 9040 continue; 9041 9042 if (isImpliedCond(Pred, LHS, RHS, 9043 LoopEntryPredicate->getCondition(), 9044 LoopEntryPredicate->getSuccessor(0) != Pair.second)) 9045 return true; 9046 } 9047 9048 // Check conditions due to any @llvm.assume intrinsics. 9049 for (auto &AssumeVH : AC.assumptions()) { 9050 if (!AssumeVH) 9051 continue; 9052 auto *CI = cast<CallInst>(AssumeVH); 9053 if (!DT.dominates(CI, L->getHeader())) 9054 continue; 9055 9056 if (isImpliedCond(Pred, LHS, RHS, CI->getArgOperand(0), false)) 9057 return true; 9058 } 9059 9060 return false; 9061 } 9062 9063 bool ScalarEvolution::isImpliedCond(ICmpInst::Predicate Pred, 9064 const SCEV *LHS, const SCEV *RHS, 9065 Value *FoundCondValue, 9066 bool Inverse) { 9067 if (!PendingLoopPredicates.insert(FoundCondValue).second) 9068 return false; 9069 9070 auto ClearOnExit = 9071 make_scope_exit([&]() { PendingLoopPredicates.erase(FoundCondValue); }); 9072 9073 // Recursively handle And and Or conditions. 9074 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(FoundCondValue)) { 9075 if (BO->getOpcode() == Instruction::And) { 9076 if (!Inverse) 9077 return isImpliedCond(Pred, LHS, RHS, BO->getOperand(0), Inverse) || 9078 isImpliedCond(Pred, LHS, RHS, BO->getOperand(1), Inverse); 9079 } else if (BO->getOpcode() == Instruction::Or) { 9080 if (Inverse) 9081 return isImpliedCond(Pred, LHS, RHS, BO->getOperand(0), Inverse) || 9082 isImpliedCond(Pred, LHS, RHS, BO->getOperand(1), Inverse); 9083 } 9084 } 9085 9086 ICmpInst *ICI = dyn_cast<ICmpInst>(FoundCondValue); 9087 if (!ICI) return false; 9088 9089 // Now that we found a conditional branch that dominates the loop or controls 9090 // the loop latch. Check to see if it is the comparison we are looking for. 9091 ICmpInst::Predicate FoundPred; 9092 if (Inverse) 9093 FoundPred = ICI->getInversePredicate(); 9094 else 9095 FoundPred = ICI->getPredicate(); 9096 9097 const SCEV *FoundLHS = getSCEV(ICI->getOperand(0)); 9098 const SCEV *FoundRHS = getSCEV(ICI->getOperand(1)); 9099 9100 return isImpliedCond(Pred, LHS, RHS, FoundPred, FoundLHS, FoundRHS); 9101 } 9102 9103 bool ScalarEvolution::isImpliedCond(ICmpInst::Predicate Pred, const SCEV *LHS, 9104 const SCEV *RHS, 9105 ICmpInst::Predicate FoundPred, 9106 const SCEV *FoundLHS, 9107 const SCEV *FoundRHS) { 9108 // Balance the types. 9109 if (getTypeSizeInBits(LHS->getType()) < 9110 getTypeSizeInBits(FoundLHS->getType())) { 9111 if (CmpInst::isSigned(Pred)) { 9112 LHS = getSignExtendExpr(LHS, FoundLHS->getType()); 9113 RHS = getSignExtendExpr(RHS, FoundLHS->getType()); 9114 } else { 9115 LHS = getZeroExtendExpr(LHS, FoundLHS->getType()); 9116 RHS = getZeroExtendExpr(RHS, FoundLHS->getType()); 9117 } 9118 } else if (getTypeSizeInBits(LHS->getType()) > 9119 getTypeSizeInBits(FoundLHS->getType())) { 9120 if (CmpInst::isSigned(FoundPred)) { 9121 FoundLHS = getSignExtendExpr(FoundLHS, LHS->getType()); 9122 FoundRHS = getSignExtendExpr(FoundRHS, LHS->getType()); 9123 } else { 9124 FoundLHS = getZeroExtendExpr(FoundLHS, LHS->getType()); 9125 FoundRHS = getZeroExtendExpr(FoundRHS, LHS->getType()); 9126 } 9127 } 9128 9129 // Canonicalize the query to match the way instcombine will have 9130 // canonicalized the comparison. 9131 if (SimplifyICmpOperands(Pred, LHS, RHS)) 9132 if (LHS == RHS) 9133 return CmpInst::isTrueWhenEqual(Pred); 9134 if (SimplifyICmpOperands(FoundPred, FoundLHS, FoundRHS)) 9135 if (FoundLHS == FoundRHS) 9136 return CmpInst::isFalseWhenEqual(FoundPred); 9137 9138 // Check to see if we can make the LHS or RHS match. 9139 if (LHS == FoundRHS || RHS == FoundLHS) { 9140 if (isa<SCEVConstant>(RHS)) { 9141 std::swap(FoundLHS, FoundRHS); 9142 FoundPred = ICmpInst::getSwappedPredicate(FoundPred); 9143 } else { 9144 std::swap(LHS, RHS); 9145 Pred = ICmpInst::getSwappedPredicate(Pred); 9146 } 9147 } 9148 9149 // Check whether the found predicate is the same as the desired predicate. 9150 if (FoundPred == Pred) 9151 return isImpliedCondOperands(Pred, LHS, RHS, FoundLHS, FoundRHS); 9152 9153 // Check whether swapping the found predicate makes it the same as the 9154 // desired predicate. 9155 if (ICmpInst::getSwappedPredicate(FoundPred) == Pred) { 9156 if (isa<SCEVConstant>(RHS)) 9157 return isImpliedCondOperands(Pred, LHS, RHS, FoundRHS, FoundLHS); 9158 else 9159 return isImpliedCondOperands(ICmpInst::getSwappedPredicate(Pred), 9160 RHS, LHS, FoundLHS, FoundRHS); 9161 } 9162 9163 // Unsigned comparison is the same as signed comparison when both the operands 9164 // are non-negative. 9165 if (CmpInst::isUnsigned(FoundPred) && 9166 CmpInst::getSignedPredicate(FoundPred) == Pred && 9167 isKnownNonNegative(FoundLHS) && isKnownNonNegative(FoundRHS)) 9168 return isImpliedCondOperands(Pred, LHS, RHS, FoundLHS, FoundRHS); 9169 9170 // Check if we can make progress by sharpening ranges. 9171 if (FoundPred == ICmpInst::ICMP_NE && 9172 (isa<SCEVConstant>(FoundLHS) || isa<SCEVConstant>(FoundRHS))) { 9173 9174 const SCEVConstant *C = nullptr; 9175 const SCEV *V = nullptr; 9176 9177 if (isa<SCEVConstant>(FoundLHS)) { 9178 C = cast<SCEVConstant>(FoundLHS); 9179 V = FoundRHS; 9180 } else { 9181 C = cast<SCEVConstant>(FoundRHS); 9182 V = FoundLHS; 9183 } 9184 9185 // The guarding predicate tells us that C != V. If the known range 9186 // of V is [C, t), we can sharpen the range to [C + 1, t). The 9187 // range we consider has to correspond to same signedness as the 9188 // predicate we're interested in folding. 9189 9190 APInt Min = ICmpInst::isSigned(Pred) ? 9191 getSignedRangeMin(V) : getUnsignedRangeMin(V); 9192 9193 if (Min == C->getAPInt()) { 9194 // Given (V >= Min && V != Min) we conclude V >= (Min + 1). 9195 // This is true even if (Min + 1) wraps around -- in case of 9196 // wraparound, (Min + 1) < Min, so (V >= Min => V >= (Min + 1)). 9197 9198 APInt SharperMin = Min + 1; 9199 9200 switch (Pred) { 9201 case ICmpInst::ICMP_SGE: 9202 case ICmpInst::ICMP_UGE: 9203 // We know V `Pred` SharperMin. If this implies LHS `Pred` 9204 // RHS, we're done. 9205 if (isImpliedCondOperands(Pred, LHS, RHS, V, 9206 getConstant(SharperMin))) 9207 return true; 9208 LLVM_FALLTHROUGH; 9209 9210 case ICmpInst::ICMP_SGT: 9211 case ICmpInst::ICMP_UGT: 9212 // We know from the range information that (V `Pred` Min || 9213 // V == Min). We know from the guarding condition that !(V 9214 // == Min). This gives us 9215 // 9216 // V `Pred` Min || V == Min && !(V == Min) 9217 // => V `Pred` Min 9218 // 9219 // If V `Pred` Min implies LHS `Pred` RHS, we're done. 9220 9221 if (isImpliedCondOperands(Pred, LHS, RHS, V, getConstant(Min))) 9222 return true; 9223 LLVM_FALLTHROUGH; 9224 9225 default: 9226 // No change 9227 break; 9228 } 9229 } 9230 } 9231 9232 // Check whether the actual condition is beyond sufficient. 9233 if (FoundPred == ICmpInst::ICMP_EQ) 9234 if (ICmpInst::isTrueWhenEqual(Pred)) 9235 if (isImpliedCondOperands(Pred, LHS, RHS, FoundLHS, FoundRHS)) 9236 return true; 9237 if (Pred == ICmpInst::ICMP_NE) 9238 if (!ICmpInst::isTrueWhenEqual(FoundPred)) 9239 if (isImpliedCondOperands(FoundPred, LHS, RHS, FoundLHS, FoundRHS)) 9240 return true; 9241 9242 // Otherwise assume the worst. 9243 return false; 9244 } 9245 9246 bool ScalarEvolution::splitBinaryAdd(const SCEV *Expr, 9247 const SCEV *&L, const SCEV *&R, 9248 SCEV::NoWrapFlags &Flags) { 9249 const auto *AE = dyn_cast<SCEVAddExpr>(Expr); 9250 if (!AE || AE->getNumOperands() != 2) 9251 return false; 9252 9253 L = AE->getOperand(0); 9254 R = AE->getOperand(1); 9255 Flags = AE->getNoWrapFlags(); 9256 return true; 9257 } 9258 9259 Optional<APInt> ScalarEvolution::computeConstantDifference(const SCEV *More, 9260 const SCEV *Less) { 9261 // We avoid subtracting expressions here because this function is usually 9262 // fairly deep in the call stack (i.e. is called many times). 9263 9264 if (isa<SCEVAddRecExpr>(Less) && isa<SCEVAddRecExpr>(More)) { 9265 const auto *LAR = cast<SCEVAddRecExpr>(Less); 9266 const auto *MAR = cast<SCEVAddRecExpr>(More); 9267 9268 if (LAR->getLoop() != MAR->getLoop()) 9269 return None; 9270 9271 // We look at affine expressions only; not for correctness but to keep 9272 // getStepRecurrence cheap. 9273 if (!LAR->isAffine() || !MAR->isAffine()) 9274 return None; 9275 9276 if (LAR->getStepRecurrence(*this) != MAR->getStepRecurrence(*this)) 9277 return None; 9278 9279 Less = LAR->getStart(); 9280 More = MAR->getStart(); 9281 9282 // fall through 9283 } 9284 9285 if (isa<SCEVConstant>(Less) && isa<SCEVConstant>(More)) { 9286 const auto &M = cast<SCEVConstant>(More)->getAPInt(); 9287 const auto &L = cast<SCEVConstant>(Less)->getAPInt(); 9288 return M - L; 9289 } 9290 9291 const SCEV *L, *R; 9292 SCEV::NoWrapFlags Flags; 9293 if (splitBinaryAdd(Less, L, R, Flags)) 9294 if (const auto *LC = dyn_cast<SCEVConstant>(L)) 9295 if (R == More) 9296 return -(LC->getAPInt()); 9297 9298 if (splitBinaryAdd(More, L, R, Flags)) 9299 if (const auto *LC = dyn_cast<SCEVConstant>(L)) 9300 if (R == Less) 9301 return LC->getAPInt(); 9302 9303 return None; 9304 } 9305 9306 bool ScalarEvolution::isImpliedCondOperandsViaNoOverflow( 9307 ICmpInst::Predicate Pred, const SCEV *LHS, const SCEV *RHS, 9308 const SCEV *FoundLHS, const SCEV *FoundRHS) { 9309 if (Pred != CmpInst::ICMP_SLT && Pred != CmpInst::ICMP_ULT) 9310 return false; 9311 9312 const auto *AddRecLHS = dyn_cast<SCEVAddRecExpr>(LHS); 9313 if (!AddRecLHS) 9314 return false; 9315 9316 const auto *AddRecFoundLHS = dyn_cast<SCEVAddRecExpr>(FoundLHS); 9317 if (!AddRecFoundLHS) 9318 return false; 9319 9320 // We'd like to let SCEV reason about control dependencies, so we constrain 9321 // both the inequalities to be about add recurrences on the same loop. This 9322 // way we can use isLoopEntryGuardedByCond later. 9323 9324 const Loop *L = AddRecFoundLHS->getLoop(); 9325 if (L != AddRecLHS->getLoop()) 9326 return false; 9327 9328 // FoundLHS u< FoundRHS u< -C => (FoundLHS + C) u< (FoundRHS + C) ... (1) 9329 // 9330 // FoundLHS s< FoundRHS s< INT_MIN - C => (FoundLHS + C) s< (FoundRHS + C) 9331 // ... (2) 9332 // 9333 // Informal proof for (2), assuming (1) [*]: 9334 // 9335 // We'll also assume (A s< B) <=> ((A + INT_MIN) u< (B + INT_MIN)) ... (3)[**] 9336 // 9337 // Then 9338 // 9339 // FoundLHS s< FoundRHS s< INT_MIN - C 9340 // <=> (FoundLHS + INT_MIN) u< (FoundRHS + INT_MIN) u< -C [ using (3) ] 9341 // <=> (FoundLHS + INT_MIN + C) u< (FoundRHS + INT_MIN + C) [ using (1) ] 9342 // <=> (FoundLHS + INT_MIN + C + INT_MIN) s< 9343 // (FoundRHS + INT_MIN + C + INT_MIN) [ using (3) ] 9344 // <=> FoundLHS + C s< FoundRHS + C 9345 // 9346 // [*]: (1) can be proved by ruling out overflow. 9347 // 9348 // [**]: This can be proved by analyzing all the four possibilities: 9349 // (A s< 0, B s< 0), (A s< 0, B s>= 0), (A s>= 0, B s< 0) and 9350 // (A s>= 0, B s>= 0). 9351 // 9352 // Note: 9353 // Despite (2), "FoundRHS s< INT_MIN - C" does not mean that "FoundRHS + C" 9354 // will not sign underflow. For instance, say FoundLHS = (i8 -128), FoundRHS 9355 // = (i8 -127) and C = (i8 -100). Then INT_MIN - C = (i8 -28), and FoundRHS 9356 // s< (INT_MIN - C). Lack of sign overflow / underflow in "FoundRHS + C" is 9357 // neither necessary nor sufficient to prove "(FoundLHS + C) s< (FoundRHS + 9358 // C)". 9359 9360 Optional<APInt> LDiff = computeConstantDifference(LHS, FoundLHS); 9361 Optional<APInt> RDiff = computeConstantDifference(RHS, FoundRHS); 9362 if (!LDiff || !RDiff || *LDiff != *RDiff) 9363 return false; 9364 9365 if (LDiff->isMinValue()) 9366 return true; 9367 9368 APInt FoundRHSLimit; 9369 9370 if (Pred == CmpInst::ICMP_ULT) { 9371 FoundRHSLimit = -(*RDiff); 9372 } else { 9373 assert(Pred == CmpInst::ICMP_SLT && "Checked above!"); 9374 FoundRHSLimit = APInt::getSignedMinValue(getTypeSizeInBits(RHS->getType())) - *RDiff; 9375 } 9376 9377 // Try to prove (1) or (2), as needed. 9378 return isLoopEntryGuardedByCond(L, Pred, FoundRHS, 9379 getConstant(FoundRHSLimit)); 9380 } 9381 9382 bool ScalarEvolution::isImpliedCondOperands(ICmpInst::Predicate Pred, 9383 const SCEV *LHS, const SCEV *RHS, 9384 const SCEV *FoundLHS, 9385 const SCEV *FoundRHS) { 9386 if (isImpliedCondOperandsViaRanges(Pred, LHS, RHS, FoundLHS, FoundRHS)) 9387 return true; 9388 9389 if (isImpliedCondOperandsViaNoOverflow(Pred, LHS, RHS, FoundLHS, FoundRHS)) 9390 return true; 9391 9392 return isImpliedCondOperandsHelper(Pred, LHS, RHS, 9393 FoundLHS, FoundRHS) || 9394 // ~x < ~y --> x > y 9395 isImpliedCondOperandsHelper(Pred, LHS, RHS, 9396 getNotSCEV(FoundRHS), 9397 getNotSCEV(FoundLHS)); 9398 } 9399 9400 /// If Expr computes ~A, return A else return nullptr 9401 static const SCEV *MatchNotExpr(const SCEV *Expr) { 9402 const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Expr); 9403 if (!Add || Add->getNumOperands() != 2 || 9404 !Add->getOperand(0)->isAllOnesValue()) 9405 return nullptr; 9406 9407 const SCEVMulExpr *AddRHS = dyn_cast<SCEVMulExpr>(Add->getOperand(1)); 9408 if (!AddRHS || AddRHS->getNumOperands() != 2 || 9409 !AddRHS->getOperand(0)->isAllOnesValue()) 9410 return nullptr; 9411 9412 return AddRHS->getOperand(1); 9413 } 9414 9415 /// Is MaybeMaxExpr an SMax or UMax of Candidate and some other values? 9416 template<typename MaxExprType> 9417 static bool IsMaxConsistingOf(const SCEV *MaybeMaxExpr, 9418 const SCEV *Candidate) { 9419 const MaxExprType *MaxExpr = dyn_cast<MaxExprType>(MaybeMaxExpr); 9420 if (!MaxExpr) return false; 9421 9422 return find(MaxExpr->operands(), Candidate) != MaxExpr->op_end(); 9423 } 9424 9425 /// Is MaybeMinExpr an SMin or UMin of Candidate and some other values? 9426 template<typename MaxExprType> 9427 static bool IsMinConsistingOf(ScalarEvolution &SE, 9428 const SCEV *MaybeMinExpr, 9429 const SCEV *Candidate) { 9430 const SCEV *MaybeMaxExpr = MatchNotExpr(MaybeMinExpr); 9431 if (!MaybeMaxExpr) 9432 return false; 9433 9434 return IsMaxConsistingOf<MaxExprType>(MaybeMaxExpr, SE.getNotSCEV(Candidate)); 9435 } 9436 9437 static bool IsKnownPredicateViaAddRecStart(ScalarEvolution &SE, 9438 ICmpInst::Predicate Pred, 9439 const SCEV *LHS, const SCEV *RHS) { 9440 // If both sides are affine addrecs for the same loop, with equal 9441 // steps, and we know the recurrences don't wrap, then we only 9442 // need to check the predicate on the starting values. 9443 9444 if (!ICmpInst::isRelational(Pred)) 9445 return false; 9446 9447 const SCEVAddRecExpr *LAR = dyn_cast<SCEVAddRecExpr>(LHS); 9448 if (!LAR) 9449 return false; 9450 const SCEVAddRecExpr *RAR = dyn_cast<SCEVAddRecExpr>(RHS); 9451 if (!RAR) 9452 return false; 9453 if (LAR->getLoop() != RAR->getLoop()) 9454 return false; 9455 if (!LAR->isAffine() || !RAR->isAffine()) 9456 return false; 9457 9458 if (LAR->getStepRecurrence(SE) != RAR->getStepRecurrence(SE)) 9459 return false; 9460 9461 SCEV::NoWrapFlags NW = ICmpInst::isSigned(Pred) ? 9462 SCEV::FlagNSW : SCEV::FlagNUW; 9463 if (!LAR->getNoWrapFlags(NW) || !RAR->getNoWrapFlags(NW)) 9464 return false; 9465 9466 return SE.isKnownPredicate(Pred, LAR->getStart(), RAR->getStart()); 9467 } 9468 9469 /// Is LHS `Pred` RHS true on the virtue of LHS or RHS being a Min or Max 9470 /// expression? 9471 static bool IsKnownPredicateViaMinOrMax(ScalarEvolution &SE, 9472 ICmpInst::Predicate Pred, 9473 const SCEV *LHS, const SCEV *RHS) { 9474 switch (Pred) { 9475 default: 9476 return false; 9477 9478 case ICmpInst::ICMP_SGE: 9479 std::swap(LHS, RHS); 9480 LLVM_FALLTHROUGH; 9481 case ICmpInst::ICMP_SLE: 9482 return 9483 // min(A, ...) <= A 9484 IsMinConsistingOf<SCEVSMaxExpr>(SE, LHS, RHS) || 9485 // A <= max(A, ...) 9486 IsMaxConsistingOf<SCEVSMaxExpr>(RHS, LHS); 9487 9488 case ICmpInst::ICMP_UGE: 9489 std::swap(LHS, RHS); 9490 LLVM_FALLTHROUGH; 9491 case ICmpInst::ICMP_ULE: 9492 return 9493 // min(A, ...) <= A 9494 IsMinConsistingOf<SCEVUMaxExpr>(SE, LHS, RHS) || 9495 // A <= max(A, ...) 9496 IsMaxConsistingOf<SCEVUMaxExpr>(RHS, LHS); 9497 } 9498 9499 llvm_unreachable("covered switch fell through?!"); 9500 } 9501 9502 bool ScalarEvolution::isImpliedViaOperations(ICmpInst::Predicate Pred, 9503 const SCEV *LHS, const SCEV *RHS, 9504 const SCEV *FoundLHS, 9505 const SCEV *FoundRHS, 9506 unsigned Depth) { 9507 assert(getTypeSizeInBits(LHS->getType()) == 9508 getTypeSizeInBits(RHS->getType()) && 9509 "LHS and RHS have different sizes?"); 9510 assert(getTypeSizeInBits(FoundLHS->getType()) == 9511 getTypeSizeInBits(FoundRHS->getType()) && 9512 "FoundLHS and FoundRHS have different sizes?"); 9513 // We want to avoid hurting the compile time with analysis of too big trees. 9514 if (Depth > MaxSCEVOperationsImplicationDepth) 9515 return false; 9516 // We only want to work with ICMP_SGT comparison so far. 9517 // TODO: Extend to ICMP_UGT? 9518 if (Pred == ICmpInst::ICMP_SLT) { 9519 Pred = ICmpInst::ICMP_SGT; 9520 std::swap(LHS, RHS); 9521 std::swap(FoundLHS, FoundRHS); 9522 } 9523 if (Pred != ICmpInst::ICMP_SGT) 9524 return false; 9525 9526 auto GetOpFromSExt = [&](const SCEV *S) { 9527 if (auto *Ext = dyn_cast<SCEVSignExtendExpr>(S)) 9528 return Ext->getOperand(); 9529 // TODO: If S is a SCEVConstant then you can cheaply "strip" the sext off 9530 // the constant in some cases. 9531 return S; 9532 }; 9533 9534 // Acquire values from extensions. 9535 auto *OrigFoundLHS = FoundLHS; 9536 LHS = GetOpFromSExt(LHS); 9537 FoundLHS = GetOpFromSExt(FoundLHS); 9538 9539 // Is the SGT predicate can be proved trivially or using the found context. 9540 auto IsSGTViaContext = [&](const SCEV *S1, const SCEV *S2) { 9541 return isKnownViaSimpleReasoning(ICmpInst::ICMP_SGT, S1, S2) || 9542 isImpliedViaOperations(ICmpInst::ICMP_SGT, S1, S2, OrigFoundLHS, 9543 FoundRHS, Depth + 1); 9544 }; 9545 9546 if (auto *LHSAddExpr = dyn_cast<SCEVAddExpr>(LHS)) { 9547 // We want to avoid creation of any new non-constant SCEV. Since we are 9548 // going to compare the operands to RHS, we should be certain that we don't 9549 // need any size extensions for this. So let's decline all cases when the 9550 // sizes of types of LHS and RHS do not match. 9551 // TODO: Maybe try to get RHS from sext to catch more cases? 9552 if (getTypeSizeInBits(LHS->getType()) != getTypeSizeInBits(RHS->getType())) 9553 return false; 9554 9555 // Should not overflow. 9556 if (!LHSAddExpr->hasNoSignedWrap()) 9557 return false; 9558 9559 auto *LL = LHSAddExpr->getOperand(0); 9560 auto *LR = LHSAddExpr->getOperand(1); 9561 auto *MinusOne = getNegativeSCEV(getOne(RHS->getType())); 9562 9563 // Checks that S1 >= 0 && S2 > RHS, trivially or using the found context. 9564 auto IsSumGreaterThanRHS = [&](const SCEV *S1, const SCEV *S2) { 9565 return IsSGTViaContext(S1, MinusOne) && IsSGTViaContext(S2, RHS); 9566 }; 9567 // Try to prove the following rule: 9568 // (LHS = LL + LR) && (LL >= 0) && (LR > RHS) => (LHS > RHS). 9569 // (LHS = LL + LR) && (LR >= 0) && (LL > RHS) => (LHS > RHS). 9570 if (IsSumGreaterThanRHS(LL, LR) || IsSumGreaterThanRHS(LR, LL)) 9571 return true; 9572 } else if (auto *LHSUnknownExpr = dyn_cast<SCEVUnknown>(LHS)) { 9573 Value *LL, *LR; 9574 // FIXME: Once we have SDiv implemented, we can get rid of this matching. 9575 9576 using namespace llvm::PatternMatch; 9577 9578 if (match(LHSUnknownExpr->getValue(), m_SDiv(m_Value(LL), m_Value(LR)))) { 9579 // Rules for division. 9580 // We are going to perform some comparisons with Denominator and its 9581 // derivative expressions. In general case, creating a SCEV for it may 9582 // lead to a complex analysis of the entire graph, and in particular it 9583 // can request trip count recalculation for the same loop. This would 9584 // cache as SCEVCouldNotCompute to avoid the infinite recursion. To avoid 9585 // this, we only want to create SCEVs that are constants in this section. 9586 // So we bail if Denominator is not a constant. 9587 if (!isa<ConstantInt>(LR)) 9588 return false; 9589 9590 auto *Denominator = cast<SCEVConstant>(getSCEV(LR)); 9591 9592 // We want to make sure that LHS = FoundLHS / Denominator. If it is so, 9593 // then a SCEV for the numerator already exists and matches with FoundLHS. 9594 auto *Numerator = getExistingSCEV(LL); 9595 if (!Numerator || Numerator->getType() != FoundLHS->getType()) 9596 return false; 9597 9598 // Make sure that the numerator matches with FoundLHS and the denominator 9599 // is positive. 9600 if (!HasSameValue(Numerator, FoundLHS) || !isKnownPositive(Denominator)) 9601 return false; 9602 9603 auto *DTy = Denominator->getType(); 9604 auto *FRHSTy = FoundRHS->getType(); 9605 if (DTy->isPointerTy() != FRHSTy->isPointerTy()) 9606 // One of types is a pointer and another one is not. We cannot extend 9607 // them properly to a wider type, so let us just reject this case. 9608 // TODO: Usage of getEffectiveSCEVType for DTy, FRHSTy etc should help 9609 // to avoid this check. 9610 return false; 9611 9612 // Given that: 9613 // FoundLHS > FoundRHS, LHS = FoundLHS / Denominator, Denominator > 0. 9614 auto *WTy = getWiderType(DTy, FRHSTy); 9615 auto *DenominatorExt = getNoopOrSignExtend(Denominator, WTy); 9616 auto *FoundRHSExt = getNoopOrSignExtend(FoundRHS, WTy); 9617 9618 // Try to prove the following rule: 9619 // (FoundRHS > Denominator - 2) && (RHS <= 0) => (LHS > RHS). 9620 // For example, given that FoundLHS > 2. It means that FoundLHS is at 9621 // least 3. If we divide it by Denominator < 4, we will have at least 1. 9622 auto *DenomMinusTwo = getMinusSCEV(DenominatorExt, getConstant(WTy, 2)); 9623 if (isKnownNonPositive(RHS) && 9624 IsSGTViaContext(FoundRHSExt, DenomMinusTwo)) 9625 return true; 9626 9627 // Try to prove the following rule: 9628 // (FoundRHS > -1 - Denominator) && (RHS < 0) => (LHS > RHS). 9629 // For example, given that FoundLHS > -3. Then FoundLHS is at least -2. 9630 // If we divide it by Denominator > 2, then: 9631 // 1. If FoundLHS is negative, then the result is 0. 9632 // 2. If FoundLHS is non-negative, then the result is non-negative. 9633 // Anyways, the result is non-negative. 9634 auto *MinusOne = getNegativeSCEV(getOne(WTy)); 9635 auto *NegDenomMinusOne = getMinusSCEV(MinusOne, DenominatorExt); 9636 if (isKnownNegative(RHS) && 9637 IsSGTViaContext(FoundRHSExt, NegDenomMinusOne)) 9638 return true; 9639 } 9640 } 9641 9642 return false; 9643 } 9644 9645 bool 9646 ScalarEvolution::isKnownViaSimpleReasoning(ICmpInst::Predicate Pred, 9647 const SCEV *LHS, const SCEV *RHS) { 9648 return isKnownPredicateViaConstantRanges(Pred, LHS, RHS) || 9649 IsKnownPredicateViaMinOrMax(*this, Pred, LHS, RHS) || 9650 IsKnownPredicateViaAddRecStart(*this, Pred, LHS, RHS) || 9651 isKnownPredicateViaNoOverflow(Pred, LHS, RHS); 9652 } 9653 9654 bool 9655 ScalarEvolution::isImpliedCondOperandsHelper(ICmpInst::Predicate Pred, 9656 const SCEV *LHS, const SCEV *RHS, 9657 const SCEV *FoundLHS, 9658 const SCEV *FoundRHS) { 9659 switch (Pred) { 9660 default: llvm_unreachable("Unexpected ICmpInst::Predicate value!"); 9661 case ICmpInst::ICMP_EQ: 9662 case ICmpInst::ICMP_NE: 9663 if (HasSameValue(LHS, FoundLHS) && HasSameValue(RHS, FoundRHS)) 9664 return true; 9665 break; 9666 case ICmpInst::ICMP_SLT: 9667 case ICmpInst::ICMP_SLE: 9668 if (isKnownViaSimpleReasoning(ICmpInst::ICMP_SLE, LHS, FoundLHS) && 9669 isKnownViaSimpleReasoning(ICmpInst::ICMP_SGE, RHS, FoundRHS)) 9670 return true; 9671 break; 9672 case ICmpInst::ICMP_SGT: 9673 case ICmpInst::ICMP_SGE: 9674 if (isKnownViaSimpleReasoning(ICmpInst::ICMP_SGE, LHS, FoundLHS) && 9675 isKnownViaSimpleReasoning(ICmpInst::ICMP_SLE, RHS, FoundRHS)) 9676 return true; 9677 break; 9678 case ICmpInst::ICMP_ULT: 9679 case ICmpInst::ICMP_ULE: 9680 if (isKnownViaSimpleReasoning(ICmpInst::ICMP_ULE, LHS, FoundLHS) && 9681 isKnownViaSimpleReasoning(ICmpInst::ICMP_UGE, RHS, FoundRHS)) 9682 return true; 9683 break; 9684 case ICmpInst::ICMP_UGT: 9685 case ICmpInst::ICMP_UGE: 9686 if (isKnownViaSimpleReasoning(ICmpInst::ICMP_UGE, LHS, FoundLHS) && 9687 isKnownViaSimpleReasoning(ICmpInst::ICMP_ULE, RHS, FoundRHS)) 9688 return true; 9689 break; 9690 } 9691 9692 // Maybe it can be proved via operations? 9693 if (isImpliedViaOperations(Pred, LHS, RHS, FoundLHS, FoundRHS)) 9694 return true; 9695 9696 return false; 9697 } 9698 9699 bool ScalarEvolution::isImpliedCondOperandsViaRanges(ICmpInst::Predicate Pred, 9700 const SCEV *LHS, 9701 const SCEV *RHS, 9702 const SCEV *FoundLHS, 9703 const SCEV *FoundRHS) { 9704 if (!isa<SCEVConstant>(RHS) || !isa<SCEVConstant>(FoundRHS)) 9705 // The restriction on `FoundRHS` be lifted easily -- it exists only to 9706 // reduce the compile time impact of this optimization. 9707 return false; 9708 9709 Optional<APInt> Addend = computeConstantDifference(LHS, FoundLHS); 9710 if (!Addend) 9711 return false; 9712 9713 const APInt &ConstFoundRHS = cast<SCEVConstant>(FoundRHS)->getAPInt(); 9714 9715 // `FoundLHSRange` is the range we know `FoundLHS` to be in by virtue of the 9716 // antecedent "`FoundLHS` `Pred` `FoundRHS`". 9717 ConstantRange FoundLHSRange = 9718 ConstantRange::makeAllowedICmpRegion(Pred, ConstFoundRHS); 9719 9720 // Since `LHS` is `FoundLHS` + `Addend`, we can compute a range for `LHS`: 9721 ConstantRange LHSRange = FoundLHSRange.add(ConstantRange(*Addend)); 9722 9723 // We can also compute the range of values for `LHS` that satisfy the 9724 // consequent, "`LHS` `Pred` `RHS`": 9725 const APInt &ConstRHS = cast<SCEVConstant>(RHS)->getAPInt(); 9726 ConstantRange SatisfyingLHSRange = 9727 ConstantRange::makeSatisfyingICmpRegion(Pred, ConstRHS); 9728 9729 // The antecedent implies the consequent if every value of `LHS` that 9730 // satisfies the antecedent also satisfies the consequent. 9731 return SatisfyingLHSRange.contains(LHSRange); 9732 } 9733 9734 bool ScalarEvolution::doesIVOverflowOnLT(const SCEV *RHS, const SCEV *Stride, 9735 bool IsSigned, bool NoWrap) { 9736 assert(isKnownPositive(Stride) && "Positive stride expected!"); 9737 9738 if (NoWrap) return false; 9739 9740 unsigned BitWidth = getTypeSizeInBits(RHS->getType()); 9741 const SCEV *One = getOne(Stride->getType()); 9742 9743 if (IsSigned) { 9744 APInt MaxRHS = getSignedRangeMax(RHS); 9745 APInt MaxValue = APInt::getSignedMaxValue(BitWidth); 9746 APInt MaxStrideMinusOne = getSignedRangeMax(getMinusSCEV(Stride, One)); 9747 9748 // SMaxRHS + SMaxStrideMinusOne > SMaxValue => overflow! 9749 return (std::move(MaxValue) - MaxStrideMinusOne).slt(MaxRHS); 9750 } 9751 9752 APInt MaxRHS = getUnsignedRangeMax(RHS); 9753 APInt MaxValue = APInt::getMaxValue(BitWidth); 9754 APInt MaxStrideMinusOne = getUnsignedRangeMax(getMinusSCEV(Stride, One)); 9755 9756 // UMaxRHS + UMaxStrideMinusOne > UMaxValue => overflow! 9757 return (std::move(MaxValue) - MaxStrideMinusOne).ult(MaxRHS); 9758 } 9759 9760 bool ScalarEvolution::doesIVOverflowOnGT(const SCEV *RHS, const SCEV *Stride, 9761 bool IsSigned, bool NoWrap) { 9762 if (NoWrap) return false; 9763 9764 unsigned BitWidth = getTypeSizeInBits(RHS->getType()); 9765 const SCEV *One = getOne(Stride->getType()); 9766 9767 if (IsSigned) { 9768 APInt MinRHS = getSignedRangeMin(RHS); 9769 APInt MinValue = APInt::getSignedMinValue(BitWidth); 9770 APInt MaxStrideMinusOne = getSignedRangeMax(getMinusSCEV(Stride, One)); 9771 9772 // SMinRHS - SMaxStrideMinusOne < SMinValue => overflow! 9773 return (std::move(MinValue) + MaxStrideMinusOne).sgt(MinRHS); 9774 } 9775 9776 APInt MinRHS = getUnsignedRangeMin(RHS); 9777 APInt MinValue = APInt::getMinValue(BitWidth); 9778 APInt MaxStrideMinusOne = getUnsignedRangeMax(getMinusSCEV(Stride, One)); 9779 9780 // UMinRHS - UMaxStrideMinusOne < UMinValue => overflow! 9781 return (std::move(MinValue) + MaxStrideMinusOne).ugt(MinRHS); 9782 } 9783 9784 const SCEV *ScalarEvolution::computeBECount(const SCEV *Delta, const SCEV *Step, 9785 bool Equality) { 9786 const SCEV *One = getOne(Step->getType()); 9787 Delta = Equality ? getAddExpr(Delta, Step) 9788 : getAddExpr(Delta, getMinusSCEV(Step, One)); 9789 return getUDivExpr(Delta, Step); 9790 } 9791 9792 const SCEV *ScalarEvolution::computeMaxBECountForLT(const SCEV *Start, 9793 const SCEV *Stride, 9794 const SCEV *End, 9795 unsigned BitWidth, 9796 bool IsSigned) { 9797 9798 assert(!isKnownNonPositive(Stride) && 9799 "Stride is expected strictly positive!"); 9800 // Calculate the maximum backedge count based on the range of values 9801 // permitted by Start, End, and Stride. 9802 const SCEV *MaxBECount; 9803 APInt MinStart = 9804 IsSigned ? getSignedRangeMin(Start) : getUnsignedRangeMin(Start); 9805 9806 APInt StrideForMaxBECount = 9807 IsSigned ? getSignedRangeMin(Stride) : getUnsignedRangeMin(Stride); 9808 9809 // We already know that the stride is positive, so we paper over conservatism 9810 // in our range computation by forcing StrideForMaxBECount to be at least one. 9811 // In theory this is unnecessary, but we expect MaxBECount to be a 9812 // SCEVConstant, and (udiv <constant> 0) is not constant folded by SCEV (there 9813 // is nothing to constant fold it to). 9814 APInt One(BitWidth, 1, IsSigned); 9815 StrideForMaxBECount = APIntOps::smax(One, StrideForMaxBECount); 9816 9817 APInt MaxValue = IsSigned ? APInt::getSignedMaxValue(BitWidth) 9818 : APInt::getMaxValue(BitWidth); 9819 APInt Limit = MaxValue - (StrideForMaxBECount - 1); 9820 9821 // Although End can be a MAX expression we estimate MaxEnd considering only 9822 // the case End = RHS of the loop termination condition. This is safe because 9823 // in the other case (End - Start) is zero, leading to a zero maximum backedge 9824 // taken count. 9825 APInt MaxEnd = IsSigned ? APIntOps::smin(getSignedRangeMax(End), Limit) 9826 : APIntOps::umin(getUnsignedRangeMax(End), Limit); 9827 9828 MaxBECount = computeBECount(getConstant(MaxEnd - MinStart) /* Delta */, 9829 getConstant(StrideForMaxBECount) /* Step */, 9830 false /* Equality */); 9831 9832 return MaxBECount; 9833 } 9834 9835 ScalarEvolution::ExitLimit 9836 ScalarEvolution::howManyLessThans(const SCEV *LHS, const SCEV *RHS, 9837 const Loop *L, bool IsSigned, 9838 bool ControlsExit, bool AllowPredicates) { 9839 SmallPtrSet<const SCEVPredicate *, 4> Predicates; 9840 9841 const SCEVAddRecExpr *IV = dyn_cast<SCEVAddRecExpr>(LHS); 9842 bool PredicatedIV = false; 9843 9844 if (!IV && AllowPredicates) { 9845 // Try to make this an AddRec using runtime tests, in the first X 9846 // iterations of this loop, where X is the SCEV expression found by the 9847 // algorithm below. 9848 IV = convertSCEVToAddRecWithPredicates(LHS, L, Predicates); 9849 PredicatedIV = true; 9850 } 9851 9852 // Avoid weird loops 9853 if (!IV || IV->getLoop() != L || !IV->isAffine()) 9854 return getCouldNotCompute(); 9855 9856 bool NoWrap = ControlsExit && 9857 IV->getNoWrapFlags(IsSigned ? SCEV::FlagNSW : SCEV::FlagNUW); 9858 9859 const SCEV *Stride = IV->getStepRecurrence(*this); 9860 9861 bool PositiveStride = isKnownPositive(Stride); 9862 9863 // Avoid negative or zero stride values. 9864 if (!PositiveStride) { 9865 // We can compute the correct backedge taken count for loops with unknown 9866 // strides if we can prove that the loop is not an infinite loop with side 9867 // effects. Here's the loop structure we are trying to handle - 9868 // 9869 // i = start 9870 // do { 9871 // A[i] = i; 9872 // i += s; 9873 // } while (i < end); 9874 // 9875 // The backedge taken count for such loops is evaluated as - 9876 // (max(end, start + stride) - start - 1) /u stride 9877 // 9878 // The additional preconditions that we need to check to prove correctness 9879 // of the above formula is as follows - 9880 // 9881 // a) IV is either nuw or nsw depending upon signedness (indicated by the 9882 // NoWrap flag). 9883 // b) loop is single exit with no side effects. 9884 // 9885 // 9886 // Precondition a) implies that if the stride is negative, this is a single 9887 // trip loop. The backedge taken count formula reduces to zero in this case. 9888 // 9889 // Precondition b) implies that the unknown stride cannot be zero otherwise 9890 // we have UB. 9891 // 9892 // The positive stride case is the same as isKnownPositive(Stride) returning 9893 // true (original behavior of the function). 9894 // 9895 // We want to make sure that the stride is truly unknown as there are edge 9896 // cases where ScalarEvolution propagates no wrap flags to the 9897 // post-increment/decrement IV even though the increment/decrement operation 9898 // itself is wrapping. The computed backedge taken count may be wrong in 9899 // such cases. This is prevented by checking that the stride is not known to 9900 // be either positive or non-positive. For example, no wrap flags are 9901 // propagated to the post-increment IV of this loop with a trip count of 2 - 9902 // 9903 // unsigned char i; 9904 // for(i=127; i<128; i+=129) 9905 // A[i] = i; 9906 // 9907 if (PredicatedIV || !NoWrap || isKnownNonPositive(Stride) || 9908 !loopHasNoSideEffects(L)) 9909 return getCouldNotCompute(); 9910 } else if (!Stride->isOne() && 9911 doesIVOverflowOnLT(RHS, Stride, IsSigned, NoWrap)) 9912 // Avoid proven overflow cases: this will ensure that the backedge taken 9913 // count will not generate any unsigned overflow. Relaxed no-overflow 9914 // conditions exploit NoWrapFlags, allowing to optimize in presence of 9915 // undefined behaviors like the case of C language. 9916 return getCouldNotCompute(); 9917 9918 ICmpInst::Predicate Cond = IsSigned ? ICmpInst::ICMP_SLT 9919 : ICmpInst::ICMP_ULT; 9920 const SCEV *Start = IV->getStart(); 9921 const SCEV *End = RHS; 9922 // When the RHS is not invariant, we do not know the end bound of the loop and 9923 // cannot calculate the ExactBECount needed by ExitLimit. However, we can 9924 // calculate the MaxBECount, given the start, stride and max value for the end 9925 // bound of the loop (RHS), and the fact that IV does not overflow (which is 9926 // checked above). 9927 if (!isLoopInvariant(RHS, L)) { 9928 const SCEV *MaxBECount = computeMaxBECountForLT( 9929 Start, Stride, RHS, getTypeSizeInBits(LHS->getType()), IsSigned); 9930 return ExitLimit(getCouldNotCompute() /* ExactNotTaken */, MaxBECount, 9931 false /*MaxOrZero*/, Predicates); 9932 } 9933 // If the backedge is taken at least once, then it will be taken 9934 // (End-Start)/Stride times (rounded up to a multiple of Stride), where Start 9935 // is the LHS value of the less-than comparison the first time it is evaluated 9936 // and End is the RHS. 9937 const SCEV *BECountIfBackedgeTaken = 9938 computeBECount(getMinusSCEV(End, Start), Stride, false); 9939 // If the loop entry is guarded by the result of the backedge test of the 9940 // first loop iteration, then we know the backedge will be taken at least 9941 // once and so the backedge taken count is as above. If not then we use the 9942 // expression (max(End,Start)-Start)/Stride to describe the backedge count, 9943 // as if the backedge is taken at least once max(End,Start) is End and so the 9944 // result is as above, and if not max(End,Start) is Start so we get a backedge 9945 // count of zero. 9946 const SCEV *BECount; 9947 if (isLoopEntryGuardedByCond(L, Cond, getMinusSCEV(Start, Stride), RHS)) 9948 BECount = BECountIfBackedgeTaken; 9949 else { 9950 End = IsSigned ? getSMaxExpr(RHS, Start) : getUMaxExpr(RHS, Start); 9951 BECount = computeBECount(getMinusSCEV(End, Start), Stride, false); 9952 } 9953 9954 const SCEV *MaxBECount; 9955 bool MaxOrZero = false; 9956 if (isa<SCEVConstant>(BECount)) 9957 MaxBECount = BECount; 9958 else if (isa<SCEVConstant>(BECountIfBackedgeTaken)) { 9959 // If we know exactly how many times the backedge will be taken if it's 9960 // taken at least once, then the backedge count will either be that or 9961 // zero. 9962 MaxBECount = BECountIfBackedgeTaken; 9963 MaxOrZero = true; 9964 } else { 9965 MaxBECount = computeMaxBECountForLT( 9966 Start, Stride, RHS, getTypeSizeInBits(LHS->getType()), IsSigned); 9967 } 9968 9969 if (isa<SCEVCouldNotCompute>(MaxBECount) && 9970 !isa<SCEVCouldNotCompute>(BECount)) 9971 MaxBECount = getConstant(getUnsignedRangeMax(BECount)); 9972 9973 return ExitLimit(BECount, MaxBECount, MaxOrZero, Predicates); 9974 } 9975 9976 ScalarEvolution::ExitLimit 9977 ScalarEvolution::howManyGreaterThans(const SCEV *LHS, const SCEV *RHS, 9978 const Loop *L, bool IsSigned, 9979 bool ControlsExit, bool AllowPredicates) { 9980 SmallPtrSet<const SCEVPredicate *, 4> Predicates; 9981 // We handle only IV > Invariant 9982 if (!isLoopInvariant(RHS, L)) 9983 return getCouldNotCompute(); 9984 9985 const SCEVAddRecExpr *IV = dyn_cast<SCEVAddRecExpr>(LHS); 9986 if (!IV && AllowPredicates) 9987 // Try to make this an AddRec using runtime tests, in the first X 9988 // iterations of this loop, where X is the SCEV expression found by the 9989 // algorithm below. 9990 IV = convertSCEVToAddRecWithPredicates(LHS, L, Predicates); 9991 9992 // Avoid weird loops 9993 if (!IV || IV->getLoop() != L || !IV->isAffine()) 9994 return getCouldNotCompute(); 9995 9996 bool NoWrap = ControlsExit && 9997 IV->getNoWrapFlags(IsSigned ? SCEV::FlagNSW : SCEV::FlagNUW); 9998 9999 const SCEV *Stride = getNegativeSCEV(IV->getStepRecurrence(*this)); 10000 10001 // Avoid negative or zero stride values 10002 if (!isKnownPositive(Stride)) 10003 return getCouldNotCompute(); 10004 10005 // Avoid proven overflow cases: this will ensure that the backedge taken count 10006 // will not generate any unsigned overflow. Relaxed no-overflow conditions 10007 // exploit NoWrapFlags, allowing to optimize in presence of undefined 10008 // behaviors like the case of C language. 10009 if (!Stride->isOne() && doesIVOverflowOnGT(RHS, Stride, IsSigned, NoWrap)) 10010 return getCouldNotCompute(); 10011 10012 ICmpInst::Predicate Cond = IsSigned ? ICmpInst::ICMP_SGT 10013 : ICmpInst::ICMP_UGT; 10014 10015 const SCEV *Start = IV->getStart(); 10016 const SCEV *End = RHS; 10017 if (!isLoopEntryGuardedByCond(L, Cond, getAddExpr(Start, Stride), RHS)) 10018 End = IsSigned ? getSMinExpr(RHS, Start) : getUMinExpr(RHS, Start); 10019 10020 const SCEV *BECount = computeBECount(getMinusSCEV(Start, End), Stride, false); 10021 10022 APInt MaxStart = IsSigned ? getSignedRangeMax(Start) 10023 : getUnsignedRangeMax(Start); 10024 10025 APInt MinStride = IsSigned ? getSignedRangeMin(Stride) 10026 : getUnsignedRangeMin(Stride); 10027 10028 unsigned BitWidth = getTypeSizeInBits(LHS->getType()); 10029 APInt Limit = IsSigned ? APInt::getSignedMinValue(BitWidth) + (MinStride - 1) 10030 : APInt::getMinValue(BitWidth) + (MinStride - 1); 10031 10032 // Although End can be a MIN expression we estimate MinEnd considering only 10033 // the case End = RHS. This is safe because in the other case (Start - End) 10034 // is zero, leading to a zero maximum backedge taken count. 10035 APInt MinEnd = 10036 IsSigned ? APIntOps::smax(getSignedRangeMin(RHS), Limit) 10037 : APIntOps::umax(getUnsignedRangeMin(RHS), Limit); 10038 10039 10040 const SCEV *MaxBECount = getCouldNotCompute(); 10041 if (isa<SCEVConstant>(BECount)) 10042 MaxBECount = BECount; 10043 else 10044 MaxBECount = computeBECount(getConstant(MaxStart - MinEnd), 10045 getConstant(MinStride), false); 10046 10047 if (isa<SCEVCouldNotCompute>(MaxBECount)) 10048 MaxBECount = BECount; 10049 10050 return ExitLimit(BECount, MaxBECount, false, Predicates); 10051 } 10052 10053 const SCEV *SCEVAddRecExpr::getNumIterationsInRange(const ConstantRange &Range, 10054 ScalarEvolution &SE) const { 10055 if (Range.isFullSet()) // Infinite loop. 10056 return SE.getCouldNotCompute(); 10057 10058 // If the start is a non-zero constant, shift the range to simplify things. 10059 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(getStart())) 10060 if (!SC->getValue()->isZero()) { 10061 SmallVector<const SCEV *, 4> Operands(op_begin(), op_end()); 10062 Operands[0] = SE.getZero(SC->getType()); 10063 const SCEV *Shifted = SE.getAddRecExpr(Operands, getLoop(), 10064 getNoWrapFlags(FlagNW)); 10065 if (const auto *ShiftedAddRec = dyn_cast<SCEVAddRecExpr>(Shifted)) 10066 return ShiftedAddRec->getNumIterationsInRange( 10067 Range.subtract(SC->getAPInt()), SE); 10068 // This is strange and shouldn't happen. 10069 return SE.getCouldNotCompute(); 10070 } 10071 10072 // The only time we can solve this is when we have all constant indices. 10073 // Otherwise, we cannot determine the overflow conditions. 10074 if (any_of(operands(), [](const SCEV *Op) { return !isa<SCEVConstant>(Op); })) 10075 return SE.getCouldNotCompute(); 10076 10077 // Okay at this point we know that all elements of the chrec are constants and 10078 // that the start element is zero. 10079 10080 // First check to see if the range contains zero. If not, the first 10081 // iteration exits. 10082 unsigned BitWidth = SE.getTypeSizeInBits(getType()); 10083 if (!Range.contains(APInt(BitWidth, 0))) 10084 return SE.getZero(getType()); 10085 10086 if (isAffine()) { 10087 // If this is an affine expression then we have this situation: 10088 // Solve {0,+,A} in Range === Ax in Range 10089 10090 // We know that zero is in the range. If A is positive then we know that 10091 // the upper value of the range must be the first possible exit value. 10092 // If A is negative then the lower of the range is the last possible loop 10093 // value. Also note that we already checked for a full range. 10094 APInt A = cast<SCEVConstant>(getOperand(1))->getAPInt(); 10095 APInt End = A.sge(1) ? (Range.getUpper() - 1) : Range.getLower(); 10096 10097 // The exit value should be (End+A)/A. 10098 APInt ExitVal = (End + A).udiv(A); 10099 ConstantInt *ExitValue = ConstantInt::get(SE.getContext(), ExitVal); 10100 10101 // Evaluate at the exit value. If we really did fall out of the valid 10102 // range, then we computed our trip count, otherwise wrap around or other 10103 // things must have happened. 10104 ConstantInt *Val = EvaluateConstantChrecAtConstant(this, ExitValue, SE); 10105 if (Range.contains(Val->getValue())) 10106 return SE.getCouldNotCompute(); // Something strange happened 10107 10108 // Ensure that the previous value is in the range. This is a sanity check. 10109 assert(Range.contains( 10110 EvaluateConstantChrecAtConstant(this, 10111 ConstantInt::get(SE.getContext(), ExitVal - 1), SE)->getValue()) && 10112 "Linear scev computation is off in a bad way!"); 10113 return SE.getConstant(ExitValue); 10114 } else if (isQuadratic()) { 10115 // If this is a quadratic (3-term) AddRec {L,+,M,+,N}, find the roots of the 10116 // quadratic equation to solve it. To do this, we must frame our problem in 10117 // terms of figuring out when zero is crossed, instead of when 10118 // Range.getUpper() is crossed. 10119 SmallVector<const SCEV *, 4> NewOps(op_begin(), op_end()); 10120 NewOps[0] = SE.getNegativeSCEV(SE.getConstant(Range.getUpper())); 10121 const SCEV *NewAddRec = SE.getAddRecExpr(NewOps, getLoop(), FlagAnyWrap); 10122 10123 // Next, solve the constructed addrec 10124 if (auto Roots = 10125 SolveQuadraticEquation(cast<SCEVAddRecExpr>(NewAddRec), SE)) { 10126 const SCEVConstant *R1 = Roots->first; 10127 const SCEVConstant *R2 = Roots->second; 10128 // Pick the smallest positive root value. 10129 if (ConstantInt *CB = dyn_cast<ConstantInt>(ConstantExpr::getICmp( 10130 ICmpInst::ICMP_ULT, R1->getValue(), R2->getValue()))) { 10131 if (!CB->getZExtValue()) 10132 std::swap(R1, R2); // R1 is the minimum root now. 10133 10134 // Make sure the root is not off by one. The returned iteration should 10135 // not be in the range, but the previous one should be. When solving 10136 // for "X*X < 5", for example, we should not return a root of 2. 10137 ConstantInt *R1Val = 10138 EvaluateConstantChrecAtConstant(this, R1->getValue(), SE); 10139 if (Range.contains(R1Val->getValue())) { 10140 // The next iteration must be out of the range... 10141 ConstantInt *NextVal = 10142 ConstantInt::get(SE.getContext(), R1->getAPInt() + 1); 10143 10144 R1Val = EvaluateConstantChrecAtConstant(this, NextVal, SE); 10145 if (!Range.contains(R1Val->getValue())) 10146 return SE.getConstant(NextVal); 10147 return SE.getCouldNotCompute(); // Something strange happened 10148 } 10149 10150 // If R1 was not in the range, then it is a good return value. Make 10151 // sure that R1-1 WAS in the range though, just in case. 10152 ConstantInt *NextVal = 10153 ConstantInt::get(SE.getContext(), R1->getAPInt() - 1); 10154 R1Val = EvaluateConstantChrecAtConstant(this, NextVal, SE); 10155 if (Range.contains(R1Val->getValue())) 10156 return R1; 10157 return SE.getCouldNotCompute(); // Something strange happened 10158 } 10159 } 10160 } 10161 10162 return SE.getCouldNotCompute(); 10163 } 10164 10165 // Return true when S contains at least an undef value. 10166 static inline bool containsUndefs(const SCEV *S) { 10167 return SCEVExprContains(S, [](const SCEV *S) { 10168 if (const auto *SU = dyn_cast<SCEVUnknown>(S)) 10169 return isa<UndefValue>(SU->getValue()); 10170 else if (const auto *SC = dyn_cast<SCEVConstant>(S)) 10171 return isa<UndefValue>(SC->getValue()); 10172 return false; 10173 }); 10174 } 10175 10176 namespace { 10177 10178 // Collect all steps of SCEV expressions. 10179 struct SCEVCollectStrides { 10180 ScalarEvolution &SE; 10181 SmallVectorImpl<const SCEV *> &Strides; 10182 10183 SCEVCollectStrides(ScalarEvolution &SE, SmallVectorImpl<const SCEV *> &S) 10184 : SE(SE), Strides(S) {} 10185 10186 bool follow(const SCEV *S) { 10187 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) 10188 Strides.push_back(AR->getStepRecurrence(SE)); 10189 return true; 10190 } 10191 10192 bool isDone() const { return false; } 10193 }; 10194 10195 // Collect all SCEVUnknown and SCEVMulExpr expressions. 10196 struct SCEVCollectTerms { 10197 SmallVectorImpl<const SCEV *> &Terms; 10198 10199 SCEVCollectTerms(SmallVectorImpl<const SCEV *> &T) : Terms(T) {} 10200 10201 bool follow(const SCEV *S) { 10202 if (isa<SCEVUnknown>(S) || isa<SCEVMulExpr>(S) || 10203 isa<SCEVSignExtendExpr>(S)) { 10204 if (!containsUndefs(S)) 10205 Terms.push_back(S); 10206 10207 // Stop recursion: once we collected a term, do not walk its operands. 10208 return false; 10209 } 10210 10211 // Keep looking. 10212 return true; 10213 } 10214 10215 bool isDone() const { return false; } 10216 }; 10217 10218 // Check if a SCEV contains an AddRecExpr. 10219 struct SCEVHasAddRec { 10220 bool &ContainsAddRec; 10221 10222 SCEVHasAddRec(bool &ContainsAddRec) : ContainsAddRec(ContainsAddRec) { 10223 ContainsAddRec = false; 10224 } 10225 10226 bool follow(const SCEV *S) { 10227 if (isa<SCEVAddRecExpr>(S)) { 10228 ContainsAddRec = true; 10229 10230 // Stop recursion: once we collected a term, do not walk its operands. 10231 return false; 10232 } 10233 10234 // Keep looking. 10235 return true; 10236 } 10237 10238 bool isDone() const { return false; } 10239 }; 10240 10241 // Find factors that are multiplied with an expression that (possibly as a 10242 // subexpression) contains an AddRecExpr. In the expression: 10243 // 10244 // 8 * (100 + %p * %q * (%a + {0, +, 1}_loop)) 10245 // 10246 // "%p * %q" are factors multiplied by the expression "(%a + {0, +, 1}_loop)" 10247 // that contains the AddRec {0, +, 1}_loop. %p * %q are likely to be array size 10248 // parameters as they form a product with an induction variable. 10249 // 10250 // This collector expects all array size parameters to be in the same MulExpr. 10251 // It might be necessary to later add support for collecting parameters that are 10252 // spread over different nested MulExpr. 10253 struct SCEVCollectAddRecMultiplies { 10254 SmallVectorImpl<const SCEV *> &Terms; 10255 ScalarEvolution &SE; 10256 10257 SCEVCollectAddRecMultiplies(SmallVectorImpl<const SCEV *> &T, ScalarEvolution &SE) 10258 : Terms(T), SE(SE) {} 10259 10260 bool follow(const SCEV *S) { 10261 if (auto *Mul = dyn_cast<SCEVMulExpr>(S)) { 10262 bool HasAddRec = false; 10263 SmallVector<const SCEV *, 0> Operands; 10264 for (auto Op : Mul->operands()) { 10265 const SCEVUnknown *Unknown = dyn_cast<SCEVUnknown>(Op); 10266 if (Unknown && !isa<CallInst>(Unknown->getValue())) { 10267 Operands.push_back(Op); 10268 } else if (Unknown) { 10269 HasAddRec = true; 10270 } else { 10271 bool ContainsAddRec; 10272 SCEVHasAddRec ContiansAddRec(ContainsAddRec); 10273 visitAll(Op, ContiansAddRec); 10274 HasAddRec |= ContainsAddRec; 10275 } 10276 } 10277 if (Operands.size() == 0) 10278 return true; 10279 10280 if (!HasAddRec) 10281 return false; 10282 10283 Terms.push_back(SE.getMulExpr(Operands)); 10284 // Stop recursion: once we collected a term, do not walk its operands. 10285 return false; 10286 } 10287 10288 // Keep looking. 10289 return true; 10290 } 10291 10292 bool isDone() const { return false; } 10293 }; 10294 10295 } // end anonymous namespace 10296 10297 /// Find parametric terms in this SCEVAddRecExpr. We first for parameters in 10298 /// two places: 10299 /// 1) The strides of AddRec expressions. 10300 /// 2) Unknowns that are multiplied with AddRec expressions. 10301 void ScalarEvolution::collectParametricTerms(const SCEV *Expr, 10302 SmallVectorImpl<const SCEV *> &Terms) { 10303 SmallVector<const SCEV *, 4> Strides; 10304 SCEVCollectStrides StrideCollector(*this, Strides); 10305 visitAll(Expr, StrideCollector); 10306 10307 DEBUG({ 10308 dbgs() << "Strides:\n"; 10309 for (const SCEV *S : Strides) 10310 dbgs() << *S << "\n"; 10311 }); 10312 10313 for (const SCEV *S : Strides) { 10314 SCEVCollectTerms TermCollector(Terms); 10315 visitAll(S, TermCollector); 10316 } 10317 10318 DEBUG({ 10319 dbgs() << "Terms:\n"; 10320 for (const SCEV *T : Terms) 10321 dbgs() << *T << "\n"; 10322 }); 10323 10324 SCEVCollectAddRecMultiplies MulCollector(Terms, *this); 10325 visitAll(Expr, MulCollector); 10326 } 10327 10328 static bool findArrayDimensionsRec(ScalarEvolution &SE, 10329 SmallVectorImpl<const SCEV *> &Terms, 10330 SmallVectorImpl<const SCEV *> &Sizes) { 10331 int Last = Terms.size() - 1; 10332 const SCEV *Step = Terms[Last]; 10333 10334 // End of recursion. 10335 if (Last == 0) { 10336 if (const SCEVMulExpr *M = dyn_cast<SCEVMulExpr>(Step)) { 10337 SmallVector<const SCEV *, 2> Qs; 10338 for (const SCEV *Op : M->operands()) 10339 if (!isa<SCEVConstant>(Op)) 10340 Qs.push_back(Op); 10341 10342 Step = SE.getMulExpr(Qs); 10343 } 10344 10345 Sizes.push_back(Step); 10346 return true; 10347 } 10348 10349 for (const SCEV *&Term : Terms) { 10350 // Normalize the terms before the next call to findArrayDimensionsRec. 10351 const SCEV *Q, *R; 10352 SCEVDivision::divide(SE, Term, Step, &Q, &R); 10353 10354 // Bail out when GCD does not evenly divide one of the terms. 10355 if (!R->isZero()) 10356 return false; 10357 10358 Term = Q; 10359 } 10360 10361 // Remove all SCEVConstants. 10362 Terms.erase( 10363 remove_if(Terms, [](const SCEV *E) { return isa<SCEVConstant>(E); }), 10364 Terms.end()); 10365 10366 if (Terms.size() > 0) 10367 if (!findArrayDimensionsRec(SE, Terms, Sizes)) 10368 return false; 10369 10370 Sizes.push_back(Step); 10371 return true; 10372 } 10373 10374 // Returns true when one of the SCEVs of Terms contains a SCEVUnknown parameter. 10375 static inline bool containsParameters(SmallVectorImpl<const SCEV *> &Terms) { 10376 for (const SCEV *T : Terms) 10377 if (SCEVExprContains(T, isa<SCEVUnknown, const SCEV *>)) 10378 return true; 10379 return false; 10380 } 10381 10382 // Return the number of product terms in S. 10383 static inline int numberOfTerms(const SCEV *S) { 10384 if (const SCEVMulExpr *Expr = dyn_cast<SCEVMulExpr>(S)) 10385 return Expr->getNumOperands(); 10386 return 1; 10387 } 10388 10389 static const SCEV *removeConstantFactors(ScalarEvolution &SE, const SCEV *T) { 10390 if (isa<SCEVConstant>(T)) 10391 return nullptr; 10392 10393 if (isa<SCEVUnknown>(T)) 10394 return T; 10395 10396 if (const SCEVMulExpr *M = dyn_cast<SCEVMulExpr>(T)) { 10397 SmallVector<const SCEV *, 2> Factors; 10398 for (const SCEV *Op : M->operands()) 10399 if (!isa<SCEVConstant>(Op)) 10400 Factors.push_back(Op); 10401 10402 return SE.getMulExpr(Factors); 10403 } 10404 10405 return T; 10406 } 10407 10408 /// Return the size of an element read or written by Inst. 10409 const SCEV *ScalarEvolution::getElementSize(Instruction *Inst) { 10410 Type *Ty; 10411 if (StoreInst *Store = dyn_cast<StoreInst>(Inst)) 10412 Ty = Store->getValueOperand()->getType(); 10413 else if (LoadInst *Load = dyn_cast<LoadInst>(Inst)) 10414 Ty = Load->getType(); 10415 else 10416 return nullptr; 10417 10418 Type *ETy = getEffectiveSCEVType(PointerType::getUnqual(Ty)); 10419 return getSizeOfExpr(ETy, Ty); 10420 } 10421 10422 void ScalarEvolution::findArrayDimensions(SmallVectorImpl<const SCEV *> &Terms, 10423 SmallVectorImpl<const SCEV *> &Sizes, 10424 const SCEV *ElementSize) { 10425 if (Terms.size() < 1 || !ElementSize) 10426 return; 10427 10428 // Early return when Terms do not contain parameters: we do not delinearize 10429 // non parametric SCEVs. 10430 if (!containsParameters(Terms)) 10431 return; 10432 10433 DEBUG({ 10434 dbgs() << "Terms:\n"; 10435 for (const SCEV *T : Terms) 10436 dbgs() << *T << "\n"; 10437 }); 10438 10439 // Remove duplicates. 10440 array_pod_sort(Terms.begin(), Terms.end()); 10441 Terms.erase(std::unique(Terms.begin(), Terms.end()), Terms.end()); 10442 10443 // Put larger terms first. 10444 std::sort(Terms.begin(), Terms.end(), [](const SCEV *LHS, const SCEV *RHS) { 10445 return numberOfTerms(LHS) > numberOfTerms(RHS); 10446 }); 10447 10448 // Try to divide all terms by the element size. If term is not divisible by 10449 // element size, proceed with the original term. 10450 for (const SCEV *&Term : Terms) { 10451 const SCEV *Q, *R; 10452 SCEVDivision::divide(*this, Term, ElementSize, &Q, &R); 10453 if (!Q->isZero()) 10454 Term = Q; 10455 } 10456 10457 SmallVector<const SCEV *, 4> NewTerms; 10458 10459 // Remove constant factors. 10460 for (const SCEV *T : Terms) 10461 if (const SCEV *NewT = removeConstantFactors(*this, T)) 10462 NewTerms.push_back(NewT); 10463 10464 DEBUG({ 10465 dbgs() << "Terms after sorting:\n"; 10466 for (const SCEV *T : NewTerms) 10467 dbgs() << *T << "\n"; 10468 }); 10469 10470 if (NewTerms.empty() || !findArrayDimensionsRec(*this, NewTerms, Sizes)) { 10471 Sizes.clear(); 10472 return; 10473 } 10474 10475 // The last element to be pushed into Sizes is the size of an element. 10476 Sizes.push_back(ElementSize); 10477 10478 DEBUG({ 10479 dbgs() << "Sizes:\n"; 10480 for (const SCEV *S : Sizes) 10481 dbgs() << *S << "\n"; 10482 }); 10483 } 10484 10485 void ScalarEvolution::computeAccessFunctions( 10486 const SCEV *Expr, SmallVectorImpl<const SCEV *> &Subscripts, 10487 SmallVectorImpl<const SCEV *> &Sizes) { 10488 // Early exit in case this SCEV is not an affine multivariate function. 10489 if (Sizes.empty()) 10490 return; 10491 10492 if (auto *AR = dyn_cast<SCEVAddRecExpr>(Expr)) 10493 if (!AR->isAffine()) 10494 return; 10495 10496 const SCEV *Res = Expr; 10497 int Last = Sizes.size() - 1; 10498 for (int i = Last; i >= 0; i--) { 10499 const SCEV *Q, *R; 10500 SCEVDivision::divide(*this, Res, Sizes[i], &Q, &R); 10501 10502 DEBUG({ 10503 dbgs() << "Res: " << *Res << "\n"; 10504 dbgs() << "Sizes[i]: " << *Sizes[i] << "\n"; 10505 dbgs() << "Res divided by Sizes[i]:\n"; 10506 dbgs() << "Quotient: " << *Q << "\n"; 10507 dbgs() << "Remainder: " << *R << "\n"; 10508 }); 10509 10510 Res = Q; 10511 10512 // Do not record the last subscript corresponding to the size of elements in 10513 // the array. 10514 if (i == Last) { 10515 10516 // Bail out if the remainder is too complex. 10517 if (isa<SCEVAddRecExpr>(R)) { 10518 Subscripts.clear(); 10519 Sizes.clear(); 10520 return; 10521 } 10522 10523 continue; 10524 } 10525 10526 // Record the access function for the current subscript. 10527 Subscripts.push_back(R); 10528 } 10529 10530 // Also push in last position the remainder of the last division: it will be 10531 // the access function of the innermost dimension. 10532 Subscripts.push_back(Res); 10533 10534 std::reverse(Subscripts.begin(), Subscripts.end()); 10535 10536 DEBUG({ 10537 dbgs() << "Subscripts:\n"; 10538 for (const SCEV *S : Subscripts) 10539 dbgs() << *S << "\n"; 10540 }); 10541 } 10542 10543 /// Splits the SCEV into two vectors of SCEVs representing the subscripts and 10544 /// sizes of an array access. Returns the remainder of the delinearization that 10545 /// is the offset start of the array. The SCEV->delinearize algorithm computes 10546 /// the multiples of SCEV coefficients: that is a pattern matching of sub 10547 /// expressions in the stride and base of a SCEV corresponding to the 10548 /// computation of a GCD (greatest common divisor) of base and stride. When 10549 /// SCEV->delinearize fails, it returns the SCEV unchanged. 10550 /// 10551 /// For example: when analyzing the memory access A[i][j][k] in this loop nest 10552 /// 10553 /// void foo(long n, long m, long o, double A[n][m][o]) { 10554 /// 10555 /// for (long i = 0; i < n; i++) 10556 /// for (long j = 0; j < m; j++) 10557 /// for (long k = 0; k < o; k++) 10558 /// A[i][j][k] = 1.0; 10559 /// } 10560 /// 10561 /// the delinearization input is the following AddRec SCEV: 10562 /// 10563 /// AddRec: {{{%A,+,(8 * %m * %o)}<%for.i>,+,(8 * %o)}<%for.j>,+,8}<%for.k> 10564 /// 10565 /// From this SCEV, we are able to say that the base offset of the access is %A 10566 /// because it appears as an offset that does not divide any of the strides in 10567 /// the loops: 10568 /// 10569 /// CHECK: Base offset: %A 10570 /// 10571 /// and then SCEV->delinearize determines the size of some of the dimensions of 10572 /// the array as these are the multiples by which the strides are happening: 10573 /// 10574 /// CHECK: ArrayDecl[UnknownSize][%m][%o] with elements of sizeof(double) bytes. 10575 /// 10576 /// Note that the outermost dimension remains of UnknownSize because there are 10577 /// no strides that would help identifying the size of the last dimension: when 10578 /// the array has been statically allocated, one could compute the size of that 10579 /// dimension by dividing the overall size of the array by the size of the known 10580 /// dimensions: %m * %o * 8. 10581 /// 10582 /// Finally delinearize provides the access functions for the array reference 10583 /// that does correspond to A[i][j][k] of the above C testcase: 10584 /// 10585 /// CHECK: ArrayRef[{0,+,1}<%for.i>][{0,+,1}<%for.j>][{0,+,1}<%for.k>] 10586 /// 10587 /// The testcases are checking the output of a function pass: 10588 /// DelinearizationPass that walks through all loads and stores of a function 10589 /// asking for the SCEV of the memory access with respect to all enclosing 10590 /// loops, calling SCEV->delinearize on that and printing the results. 10591 void ScalarEvolution::delinearize(const SCEV *Expr, 10592 SmallVectorImpl<const SCEV *> &Subscripts, 10593 SmallVectorImpl<const SCEV *> &Sizes, 10594 const SCEV *ElementSize) { 10595 // First step: collect parametric terms. 10596 SmallVector<const SCEV *, 4> Terms; 10597 collectParametricTerms(Expr, Terms); 10598 10599 if (Terms.empty()) 10600 return; 10601 10602 // Second step: find subscript sizes. 10603 findArrayDimensions(Terms, Sizes, ElementSize); 10604 10605 if (Sizes.empty()) 10606 return; 10607 10608 // Third step: compute the access functions for each subscript. 10609 computeAccessFunctions(Expr, Subscripts, Sizes); 10610 10611 if (Subscripts.empty()) 10612 return; 10613 10614 DEBUG({ 10615 dbgs() << "succeeded to delinearize " << *Expr << "\n"; 10616 dbgs() << "ArrayDecl[UnknownSize]"; 10617 for (const SCEV *S : Sizes) 10618 dbgs() << "[" << *S << "]"; 10619 10620 dbgs() << "\nArrayRef"; 10621 for (const SCEV *S : Subscripts) 10622 dbgs() << "[" << *S << "]"; 10623 dbgs() << "\n"; 10624 }); 10625 } 10626 10627 //===----------------------------------------------------------------------===// 10628 // SCEVCallbackVH Class Implementation 10629 //===----------------------------------------------------------------------===// 10630 10631 void ScalarEvolution::SCEVCallbackVH::deleted() { 10632 assert(SE && "SCEVCallbackVH called with a null ScalarEvolution!"); 10633 if (PHINode *PN = dyn_cast<PHINode>(getValPtr())) 10634 SE->ConstantEvolutionLoopExitValue.erase(PN); 10635 SE->eraseValueFromMap(getValPtr()); 10636 // this now dangles! 10637 } 10638 10639 void ScalarEvolution::SCEVCallbackVH::allUsesReplacedWith(Value *V) { 10640 assert(SE && "SCEVCallbackVH called with a null ScalarEvolution!"); 10641 10642 // Forget all the expressions associated with users of the old value, 10643 // so that future queries will recompute the expressions using the new 10644 // value. 10645 Value *Old = getValPtr(); 10646 SmallVector<User *, 16> Worklist(Old->user_begin(), Old->user_end()); 10647 SmallPtrSet<User *, 8> Visited; 10648 while (!Worklist.empty()) { 10649 User *U = Worklist.pop_back_val(); 10650 // Deleting the Old value will cause this to dangle. Postpone 10651 // that until everything else is done. 10652 if (U == Old) 10653 continue; 10654 if (!Visited.insert(U).second) 10655 continue; 10656 if (PHINode *PN = dyn_cast<PHINode>(U)) 10657 SE->ConstantEvolutionLoopExitValue.erase(PN); 10658 SE->eraseValueFromMap(U); 10659 Worklist.insert(Worklist.end(), U->user_begin(), U->user_end()); 10660 } 10661 // Delete the Old value. 10662 if (PHINode *PN = dyn_cast<PHINode>(Old)) 10663 SE->ConstantEvolutionLoopExitValue.erase(PN); 10664 SE->eraseValueFromMap(Old); 10665 // this now dangles! 10666 } 10667 10668 ScalarEvolution::SCEVCallbackVH::SCEVCallbackVH(Value *V, ScalarEvolution *se) 10669 : CallbackVH(V), SE(se) {} 10670 10671 //===----------------------------------------------------------------------===// 10672 // ScalarEvolution Class Implementation 10673 //===----------------------------------------------------------------------===// 10674 10675 ScalarEvolution::ScalarEvolution(Function &F, TargetLibraryInfo &TLI, 10676 AssumptionCache &AC, DominatorTree &DT, 10677 LoopInfo &LI) 10678 : F(F), TLI(TLI), AC(AC), DT(DT), LI(LI), 10679 CouldNotCompute(new SCEVCouldNotCompute()), ValuesAtScopes(64), 10680 LoopDispositions(64), BlockDispositions(64) { 10681 // To use guards for proving predicates, we need to scan every instruction in 10682 // relevant basic blocks, and not just terminators. Doing this is a waste of 10683 // time if the IR does not actually contain any calls to 10684 // @llvm.experimental.guard, so do a quick check and remember this beforehand. 10685 // 10686 // This pessimizes the case where a pass that preserves ScalarEvolution wants 10687 // to _add_ guards to the module when there weren't any before, and wants 10688 // ScalarEvolution to optimize based on those guards. For now we prefer to be 10689 // efficient in lieu of being smart in that rather obscure case. 10690 10691 auto *GuardDecl = F.getParent()->getFunction( 10692 Intrinsic::getName(Intrinsic::experimental_guard)); 10693 HasGuards = GuardDecl && !GuardDecl->use_empty(); 10694 } 10695 10696 ScalarEvolution::ScalarEvolution(ScalarEvolution &&Arg) 10697 : F(Arg.F), HasGuards(Arg.HasGuards), TLI(Arg.TLI), AC(Arg.AC), DT(Arg.DT), 10698 LI(Arg.LI), CouldNotCompute(std::move(Arg.CouldNotCompute)), 10699 ValueExprMap(std::move(Arg.ValueExprMap)), 10700 PendingLoopPredicates(std::move(Arg.PendingLoopPredicates)), 10701 MinTrailingZerosCache(std::move(Arg.MinTrailingZerosCache)), 10702 BackedgeTakenCounts(std::move(Arg.BackedgeTakenCounts)), 10703 PredicatedBackedgeTakenCounts( 10704 std::move(Arg.PredicatedBackedgeTakenCounts)), 10705 ConstantEvolutionLoopExitValue( 10706 std::move(Arg.ConstantEvolutionLoopExitValue)), 10707 ValuesAtScopes(std::move(Arg.ValuesAtScopes)), 10708 LoopDispositions(std::move(Arg.LoopDispositions)), 10709 LoopPropertiesCache(std::move(Arg.LoopPropertiesCache)), 10710 BlockDispositions(std::move(Arg.BlockDispositions)), 10711 UnsignedRanges(std::move(Arg.UnsignedRanges)), 10712 SignedRanges(std::move(Arg.SignedRanges)), 10713 UniqueSCEVs(std::move(Arg.UniqueSCEVs)), 10714 UniquePreds(std::move(Arg.UniquePreds)), 10715 SCEVAllocator(std::move(Arg.SCEVAllocator)), 10716 LoopUsers(std::move(Arg.LoopUsers)), 10717 PredicatedSCEVRewrites(std::move(Arg.PredicatedSCEVRewrites)), 10718 FirstUnknown(Arg.FirstUnknown) { 10719 Arg.FirstUnknown = nullptr; 10720 } 10721 10722 ScalarEvolution::~ScalarEvolution() { 10723 // Iterate through all the SCEVUnknown instances and call their 10724 // destructors, so that they release their references to their values. 10725 for (SCEVUnknown *U = FirstUnknown; U;) { 10726 SCEVUnknown *Tmp = U; 10727 U = U->Next; 10728 Tmp->~SCEVUnknown(); 10729 } 10730 FirstUnknown = nullptr; 10731 10732 ExprValueMap.clear(); 10733 ValueExprMap.clear(); 10734 HasRecMap.clear(); 10735 10736 // Free any extra memory created for ExitNotTakenInfo in the unlikely event 10737 // that a loop had multiple computable exits. 10738 for (auto &BTCI : BackedgeTakenCounts) 10739 BTCI.second.clear(); 10740 for (auto &BTCI : PredicatedBackedgeTakenCounts) 10741 BTCI.second.clear(); 10742 10743 assert(PendingLoopPredicates.empty() && "isImpliedCond garbage"); 10744 assert(!WalkingBEDominatingConds && "isLoopBackedgeGuardedByCond garbage!"); 10745 assert(!ProvingSplitPredicate && "ProvingSplitPredicate garbage!"); 10746 } 10747 10748 bool ScalarEvolution::hasLoopInvariantBackedgeTakenCount(const Loop *L) { 10749 return !isa<SCEVCouldNotCompute>(getBackedgeTakenCount(L)); 10750 } 10751 10752 static void PrintLoopInfo(raw_ostream &OS, ScalarEvolution *SE, 10753 const Loop *L) { 10754 // Print all inner loops first 10755 for (Loop *I : *L) 10756 PrintLoopInfo(OS, SE, I); 10757 10758 OS << "Loop "; 10759 L->getHeader()->printAsOperand(OS, /*PrintType=*/false); 10760 OS << ": "; 10761 10762 SmallVector<BasicBlock *, 8> ExitBlocks; 10763 L->getExitBlocks(ExitBlocks); 10764 if (ExitBlocks.size() != 1) 10765 OS << "<multiple exits> "; 10766 10767 if (SE->hasLoopInvariantBackedgeTakenCount(L)) { 10768 OS << "backedge-taken count is " << *SE->getBackedgeTakenCount(L); 10769 } else { 10770 OS << "Unpredictable backedge-taken count. "; 10771 } 10772 10773 OS << "\n" 10774 "Loop "; 10775 L->getHeader()->printAsOperand(OS, /*PrintType=*/false); 10776 OS << ": "; 10777 10778 if (!isa<SCEVCouldNotCompute>(SE->getMaxBackedgeTakenCount(L))) { 10779 OS << "max backedge-taken count is " << *SE->getMaxBackedgeTakenCount(L); 10780 if (SE->isBackedgeTakenCountMaxOrZero(L)) 10781 OS << ", actual taken count either this or zero."; 10782 } else { 10783 OS << "Unpredictable max backedge-taken count. "; 10784 } 10785 10786 OS << "\n" 10787 "Loop "; 10788 L->getHeader()->printAsOperand(OS, /*PrintType=*/false); 10789 OS << ": "; 10790 10791 SCEVUnionPredicate Pred; 10792 auto PBT = SE->getPredicatedBackedgeTakenCount(L, Pred); 10793 if (!isa<SCEVCouldNotCompute>(PBT)) { 10794 OS << "Predicated backedge-taken count is " << *PBT << "\n"; 10795 OS << " Predicates:\n"; 10796 Pred.print(OS, 4); 10797 } else { 10798 OS << "Unpredictable predicated backedge-taken count. "; 10799 } 10800 OS << "\n"; 10801 10802 if (SE->hasLoopInvariantBackedgeTakenCount(L)) { 10803 OS << "Loop "; 10804 L->getHeader()->printAsOperand(OS, /*PrintType=*/false); 10805 OS << ": "; 10806 OS << "Trip multiple is " << SE->getSmallConstantTripMultiple(L) << "\n"; 10807 } 10808 } 10809 10810 static StringRef loopDispositionToStr(ScalarEvolution::LoopDisposition LD) { 10811 switch (LD) { 10812 case ScalarEvolution::LoopVariant: 10813 return "Variant"; 10814 case ScalarEvolution::LoopInvariant: 10815 return "Invariant"; 10816 case ScalarEvolution::LoopComputable: 10817 return "Computable"; 10818 } 10819 llvm_unreachable("Unknown ScalarEvolution::LoopDisposition kind!"); 10820 } 10821 10822 void ScalarEvolution::print(raw_ostream &OS) const { 10823 // ScalarEvolution's implementation of the print method is to print 10824 // out SCEV values of all instructions that are interesting. Doing 10825 // this potentially causes it to create new SCEV objects though, 10826 // which technically conflicts with the const qualifier. This isn't 10827 // observable from outside the class though, so casting away the 10828 // const isn't dangerous. 10829 ScalarEvolution &SE = *const_cast<ScalarEvolution *>(this); 10830 10831 OS << "Classifying expressions for: "; 10832 F.printAsOperand(OS, /*PrintType=*/false); 10833 OS << "\n"; 10834 for (Instruction &I : instructions(F)) 10835 if (isSCEVable(I.getType()) && !isa<CmpInst>(I)) { 10836 OS << I << '\n'; 10837 OS << " --> "; 10838 const SCEV *SV = SE.getSCEV(&I); 10839 SV->print(OS); 10840 if (!isa<SCEVCouldNotCompute>(SV)) { 10841 OS << " U: "; 10842 SE.getUnsignedRange(SV).print(OS); 10843 OS << " S: "; 10844 SE.getSignedRange(SV).print(OS); 10845 } 10846 10847 const Loop *L = LI.getLoopFor(I.getParent()); 10848 10849 const SCEV *AtUse = SE.getSCEVAtScope(SV, L); 10850 if (AtUse != SV) { 10851 OS << " --> "; 10852 AtUse->print(OS); 10853 if (!isa<SCEVCouldNotCompute>(AtUse)) { 10854 OS << " U: "; 10855 SE.getUnsignedRange(AtUse).print(OS); 10856 OS << " S: "; 10857 SE.getSignedRange(AtUse).print(OS); 10858 } 10859 } 10860 10861 if (L) { 10862 OS << "\t\t" "Exits: "; 10863 const SCEV *ExitValue = SE.getSCEVAtScope(SV, L->getParentLoop()); 10864 if (!SE.isLoopInvariant(ExitValue, L)) { 10865 OS << "<<Unknown>>"; 10866 } else { 10867 OS << *ExitValue; 10868 } 10869 10870 bool First = true; 10871 for (auto *Iter = L; Iter; Iter = Iter->getParentLoop()) { 10872 if (First) { 10873 OS << "\t\t" "LoopDispositions: { "; 10874 First = false; 10875 } else { 10876 OS << ", "; 10877 } 10878 10879 Iter->getHeader()->printAsOperand(OS, /*PrintType=*/false); 10880 OS << ": " << loopDispositionToStr(SE.getLoopDisposition(SV, Iter)); 10881 } 10882 10883 for (auto *InnerL : depth_first(L)) { 10884 if (InnerL == L) 10885 continue; 10886 if (First) { 10887 OS << "\t\t" "LoopDispositions: { "; 10888 First = false; 10889 } else { 10890 OS << ", "; 10891 } 10892 10893 InnerL->getHeader()->printAsOperand(OS, /*PrintType=*/false); 10894 OS << ": " << loopDispositionToStr(SE.getLoopDisposition(SV, InnerL)); 10895 } 10896 10897 OS << " }"; 10898 } 10899 10900 OS << "\n"; 10901 } 10902 10903 OS << "Determining loop execution counts for: "; 10904 F.printAsOperand(OS, /*PrintType=*/false); 10905 OS << "\n"; 10906 for (Loop *I : LI) 10907 PrintLoopInfo(OS, &SE, I); 10908 } 10909 10910 ScalarEvolution::LoopDisposition 10911 ScalarEvolution::getLoopDisposition(const SCEV *S, const Loop *L) { 10912 auto &Values = LoopDispositions[S]; 10913 for (auto &V : Values) { 10914 if (V.getPointer() == L) 10915 return V.getInt(); 10916 } 10917 Values.emplace_back(L, LoopVariant); 10918 LoopDisposition D = computeLoopDisposition(S, L); 10919 auto &Values2 = LoopDispositions[S]; 10920 for (auto &V : make_range(Values2.rbegin(), Values2.rend())) { 10921 if (V.getPointer() == L) { 10922 V.setInt(D); 10923 break; 10924 } 10925 } 10926 return D; 10927 } 10928 10929 ScalarEvolution::LoopDisposition 10930 ScalarEvolution::computeLoopDisposition(const SCEV *S, const Loop *L) { 10931 switch (static_cast<SCEVTypes>(S->getSCEVType())) { 10932 case scConstant: 10933 return LoopInvariant; 10934 case scTruncate: 10935 case scZeroExtend: 10936 case scSignExtend: 10937 return getLoopDisposition(cast<SCEVCastExpr>(S)->getOperand(), L); 10938 case scAddRecExpr: { 10939 const SCEVAddRecExpr *AR = cast<SCEVAddRecExpr>(S); 10940 10941 // If L is the addrec's loop, it's computable. 10942 if (AR->getLoop() == L) 10943 return LoopComputable; 10944 10945 // Add recurrences are never invariant in the function-body (null loop). 10946 if (!L) 10947 return LoopVariant; 10948 10949 // Everything that is not defined at loop entry is variant. 10950 if (DT.dominates(L->getHeader(), AR->getLoop()->getHeader())) 10951 return LoopVariant; 10952 assert(!L->contains(AR->getLoop()) && "Containing loop's header does not" 10953 " dominate the contained loop's header?"); 10954 10955 // This recurrence is invariant w.r.t. L if AR's loop contains L. 10956 if (AR->getLoop()->contains(L)) 10957 return LoopInvariant; 10958 10959 // This recurrence is variant w.r.t. L if any of its operands 10960 // are variant. 10961 for (auto *Op : AR->operands()) 10962 if (!isLoopInvariant(Op, L)) 10963 return LoopVariant; 10964 10965 // Otherwise it's loop-invariant. 10966 return LoopInvariant; 10967 } 10968 case scAddExpr: 10969 case scMulExpr: 10970 case scUMaxExpr: 10971 case scSMaxExpr: { 10972 bool HasVarying = false; 10973 for (auto *Op : cast<SCEVNAryExpr>(S)->operands()) { 10974 LoopDisposition D = getLoopDisposition(Op, L); 10975 if (D == LoopVariant) 10976 return LoopVariant; 10977 if (D == LoopComputable) 10978 HasVarying = true; 10979 } 10980 return HasVarying ? LoopComputable : LoopInvariant; 10981 } 10982 case scUDivExpr: { 10983 const SCEVUDivExpr *UDiv = cast<SCEVUDivExpr>(S); 10984 LoopDisposition LD = getLoopDisposition(UDiv->getLHS(), L); 10985 if (LD == LoopVariant) 10986 return LoopVariant; 10987 LoopDisposition RD = getLoopDisposition(UDiv->getRHS(), L); 10988 if (RD == LoopVariant) 10989 return LoopVariant; 10990 return (LD == LoopInvariant && RD == LoopInvariant) ? 10991 LoopInvariant : LoopComputable; 10992 } 10993 case scUnknown: 10994 // All non-instruction values are loop invariant. All instructions are loop 10995 // invariant if they are not contained in the specified loop. 10996 // Instructions are never considered invariant in the function body 10997 // (null loop) because they are defined within the "loop". 10998 if (auto *I = dyn_cast<Instruction>(cast<SCEVUnknown>(S)->getValue())) 10999 return (L && !L->contains(I)) ? LoopInvariant : LoopVariant; 11000 return LoopInvariant; 11001 case scCouldNotCompute: 11002 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!"); 11003 } 11004 llvm_unreachable("Unknown SCEV kind!"); 11005 } 11006 11007 bool ScalarEvolution::isLoopInvariant(const SCEV *S, const Loop *L) { 11008 return getLoopDisposition(S, L) == LoopInvariant; 11009 } 11010 11011 bool ScalarEvolution::hasComputableLoopEvolution(const SCEV *S, const Loop *L) { 11012 return getLoopDisposition(S, L) == LoopComputable; 11013 } 11014 11015 ScalarEvolution::BlockDisposition 11016 ScalarEvolution::getBlockDisposition(const SCEV *S, const BasicBlock *BB) { 11017 auto &Values = BlockDispositions[S]; 11018 for (auto &V : Values) { 11019 if (V.getPointer() == BB) 11020 return V.getInt(); 11021 } 11022 Values.emplace_back(BB, DoesNotDominateBlock); 11023 BlockDisposition D = computeBlockDisposition(S, BB); 11024 auto &Values2 = BlockDispositions[S]; 11025 for (auto &V : make_range(Values2.rbegin(), Values2.rend())) { 11026 if (V.getPointer() == BB) { 11027 V.setInt(D); 11028 break; 11029 } 11030 } 11031 return D; 11032 } 11033 11034 ScalarEvolution::BlockDisposition 11035 ScalarEvolution::computeBlockDisposition(const SCEV *S, const BasicBlock *BB) { 11036 switch (static_cast<SCEVTypes>(S->getSCEVType())) { 11037 case scConstant: 11038 return ProperlyDominatesBlock; 11039 case scTruncate: 11040 case scZeroExtend: 11041 case scSignExtend: 11042 return getBlockDisposition(cast<SCEVCastExpr>(S)->getOperand(), BB); 11043 case scAddRecExpr: { 11044 // This uses a "dominates" query instead of "properly dominates" query 11045 // to test for proper dominance too, because the instruction which 11046 // produces the addrec's value is a PHI, and a PHI effectively properly 11047 // dominates its entire containing block. 11048 const SCEVAddRecExpr *AR = cast<SCEVAddRecExpr>(S); 11049 if (!DT.dominates(AR->getLoop()->getHeader(), BB)) 11050 return DoesNotDominateBlock; 11051 11052 // Fall through into SCEVNAryExpr handling. 11053 LLVM_FALLTHROUGH; 11054 } 11055 case scAddExpr: 11056 case scMulExpr: 11057 case scUMaxExpr: 11058 case scSMaxExpr: { 11059 const SCEVNAryExpr *NAry = cast<SCEVNAryExpr>(S); 11060 bool Proper = true; 11061 for (const SCEV *NAryOp : NAry->operands()) { 11062 BlockDisposition D = getBlockDisposition(NAryOp, BB); 11063 if (D == DoesNotDominateBlock) 11064 return DoesNotDominateBlock; 11065 if (D == DominatesBlock) 11066 Proper = false; 11067 } 11068 return Proper ? ProperlyDominatesBlock : DominatesBlock; 11069 } 11070 case scUDivExpr: { 11071 const SCEVUDivExpr *UDiv = cast<SCEVUDivExpr>(S); 11072 const SCEV *LHS = UDiv->getLHS(), *RHS = UDiv->getRHS(); 11073 BlockDisposition LD = getBlockDisposition(LHS, BB); 11074 if (LD == DoesNotDominateBlock) 11075 return DoesNotDominateBlock; 11076 BlockDisposition RD = getBlockDisposition(RHS, BB); 11077 if (RD == DoesNotDominateBlock) 11078 return DoesNotDominateBlock; 11079 return (LD == ProperlyDominatesBlock && RD == ProperlyDominatesBlock) ? 11080 ProperlyDominatesBlock : DominatesBlock; 11081 } 11082 case scUnknown: 11083 if (Instruction *I = 11084 dyn_cast<Instruction>(cast<SCEVUnknown>(S)->getValue())) { 11085 if (I->getParent() == BB) 11086 return DominatesBlock; 11087 if (DT.properlyDominates(I->getParent(), BB)) 11088 return ProperlyDominatesBlock; 11089 return DoesNotDominateBlock; 11090 } 11091 return ProperlyDominatesBlock; 11092 case scCouldNotCompute: 11093 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!"); 11094 } 11095 llvm_unreachable("Unknown SCEV kind!"); 11096 } 11097 11098 bool ScalarEvolution::dominates(const SCEV *S, const BasicBlock *BB) { 11099 return getBlockDisposition(S, BB) >= DominatesBlock; 11100 } 11101 11102 bool ScalarEvolution::properlyDominates(const SCEV *S, const BasicBlock *BB) { 11103 return getBlockDisposition(S, BB) == ProperlyDominatesBlock; 11104 } 11105 11106 bool ScalarEvolution::hasOperand(const SCEV *S, const SCEV *Op) const { 11107 return SCEVExprContains(S, [&](const SCEV *Expr) { return Expr == Op; }); 11108 } 11109 11110 bool ScalarEvolution::ExitLimit::hasOperand(const SCEV *S) const { 11111 auto IsS = [&](const SCEV *X) { return S == X; }; 11112 auto ContainsS = [&](const SCEV *X) { 11113 return !isa<SCEVCouldNotCompute>(X) && SCEVExprContains(X, IsS); 11114 }; 11115 return ContainsS(ExactNotTaken) || ContainsS(MaxNotTaken); 11116 } 11117 11118 void 11119 ScalarEvolution::forgetMemoizedResults(const SCEV *S) { 11120 ValuesAtScopes.erase(S); 11121 LoopDispositions.erase(S); 11122 BlockDispositions.erase(S); 11123 UnsignedRanges.erase(S); 11124 SignedRanges.erase(S); 11125 ExprValueMap.erase(S); 11126 HasRecMap.erase(S); 11127 MinTrailingZerosCache.erase(S); 11128 11129 for (auto I = PredicatedSCEVRewrites.begin(); 11130 I != PredicatedSCEVRewrites.end();) { 11131 std::pair<const SCEV *, const Loop *> Entry = I->first; 11132 if (Entry.first == S) 11133 PredicatedSCEVRewrites.erase(I++); 11134 else 11135 ++I; 11136 } 11137 11138 auto RemoveSCEVFromBackedgeMap = 11139 [S, this](DenseMap<const Loop *, BackedgeTakenInfo> &Map) { 11140 for (auto I = Map.begin(), E = Map.end(); I != E;) { 11141 BackedgeTakenInfo &BEInfo = I->second; 11142 if (BEInfo.hasOperand(S, this)) { 11143 BEInfo.clear(); 11144 Map.erase(I++); 11145 } else 11146 ++I; 11147 } 11148 }; 11149 11150 RemoveSCEVFromBackedgeMap(BackedgeTakenCounts); 11151 RemoveSCEVFromBackedgeMap(PredicatedBackedgeTakenCounts); 11152 } 11153 11154 void ScalarEvolution::addToLoopUseLists(const SCEV *S) { 11155 struct FindUsedLoops { 11156 SmallPtrSet<const Loop *, 8> LoopsUsed; 11157 bool follow(const SCEV *S) { 11158 if (auto *AR = dyn_cast<SCEVAddRecExpr>(S)) 11159 LoopsUsed.insert(AR->getLoop()); 11160 return true; 11161 } 11162 11163 bool isDone() const { return false; } 11164 }; 11165 11166 FindUsedLoops F; 11167 SCEVTraversal<FindUsedLoops>(F).visitAll(S); 11168 11169 for (auto *L : F.LoopsUsed) 11170 LoopUsers[L].push_back(S); 11171 } 11172 11173 void ScalarEvolution::verify() const { 11174 ScalarEvolution &SE = *const_cast<ScalarEvolution *>(this); 11175 ScalarEvolution SE2(F, TLI, AC, DT, LI); 11176 11177 SmallVector<Loop *, 8> LoopStack(LI.begin(), LI.end()); 11178 11179 // Map's SCEV expressions from one ScalarEvolution "universe" to another. 11180 struct SCEVMapper : public SCEVRewriteVisitor<SCEVMapper> { 11181 SCEVMapper(ScalarEvolution &SE) : SCEVRewriteVisitor<SCEVMapper>(SE) {} 11182 11183 const SCEV *visitConstant(const SCEVConstant *Constant) { 11184 return SE.getConstant(Constant->getAPInt()); 11185 } 11186 11187 const SCEV *visitUnknown(const SCEVUnknown *Expr) { 11188 return SE.getUnknown(Expr->getValue()); 11189 } 11190 11191 const SCEV *visitCouldNotCompute(const SCEVCouldNotCompute *Expr) { 11192 return SE.getCouldNotCompute(); 11193 } 11194 }; 11195 11196 SCEVMapper SCM(SE2); 11197 11198 while (!LoopStack.empty()) { 11199 auto *L = LoopStack.pop_back_val(); 11200 LoopStack.insert(LoopStack.end(), L->begin(), L->end()); 11201 11202 auto *CurBECount = SCM.visit( 11203 const_cast<ScalarEvolution *>(this)->getBackedgeTakenCount(L)); 11204 auto *NewBECount = SE2.getBackedgeTakenCount(L); 11205 11206 if (CurBECount == SE2.getCouldNotCompute() || 11207 NewBECount == SE2.getCouldNotCompute()) { 11208 // NB! This situation is legal, but is very suspicious -- whatever pass 11209 // change the loop to make a trip count go from could not compute to 11210 // computable or vice-versa *should have* invalidated SCEV. However, we 11211 // choose not to assert here (for now) since we don't want false 11212 // positives. 11213 continue; 11214 } 11215 11216 if (containsUndefs(CurBECount) || containsUndefs(NewBECount)) { 11217 // SCEV treats "undef" as an unknown but consistent value (i.e. it does 11218 // not propagate undef aggressively). This means we can (and do) fail 11219 // verification in cases where a transform makes the trip count of a loop 11220 // go from "undef" to "undef+1" (say). The transform is fine, since in 11221 // both cases the loop iterates "undef" times, but SCEV thinks we 11222 // increased the trip count of the loop by 1 incorrectly. 11223 continue; 11224 } 11225 11226 if (SE.getTypeSizeInBits(CurBECount->getType()) > 11227 SE.getTypeSizeInBits(NewBECount->getType())) 11228 NewBECount = SE2.getZeroExtendExpr(NewBECount, CurBECount->getType()); 11229 else if (SE.getTypeSizeInBits(CurBECount->getType()) < 11230 SE.getTypeSizeInBits(NewBECount->getType())) 11231 CurBECount = SE2.getZeroExtendExpr(CurBECount, NewBECount->getType()); 11232 11233 auto *ConstantDelta = 11234 dyn_cast<SCEVConstant>(SE2.getMinusSCEV(CurBECount, NewBECount)); 11235 11236 if (ConstantDelta && ConstantDelta->getAPInt() != 0) { 11237 dbgs() << "Trip Count Changed!\n"; 11238 dbgs() << "Old: " << *CurBECount << "\n"; 11239 dbgs() << "New: " << *NewBECount << "\n"; 11240 dbgs() << "Delta: " << *ConstantDelta << "\n"; 11241 std::abort(); 11242 } 11243 } 11244 } 11245 11246 bool ScalarEvolution::invalidate( 11247 Function &F, const PreservedAnalyses &PA, 11248 FunctionAnalysisManager::Invalidator &Inv) { 11249 // Invalidate the ScalarEvolution object whenever it isn't preserved or one 11250 // of its dependencies is invalidated. 11251 auto PAC = PA.getChecker<ScalarEvolutionAnalysis>(); 11252 return !(PAC.preserved() || PAC.preservedSet<AllAnalysesOn<Function>>()) || 11253 Inv.invalidate<AssumptionAnalysis>(F, PA) || 11254 Inv.invalidate<DominatorTreeAnalysis>(F, PA) || 11255 Inv.invalidate<LoopAnalysis>(F, PA); 11256 } 11257 11258 AnalysisKey ScalarEvolutionAnalysis::Key; 11259 11260 ScalarEvolution ScalarEvolutionAnalysis::run(Function &F, 11261 FunctionAnalysisManager &AM) { 11262 return ScalarEvolution(F, AM.getResult<TargetLibraryAnalysis>(F), 11263 AM.getResult<AssumptionAnalysis>(F), 11264 AM.getResult<DominatorTreeAnalysis>(F), 11265 AM.getResult<LoopAnalysis>(F)); 11266 } 11267 11268 PreservedAnalyses 11269 ScalarEvolutionPrinterPass::run(Function &F, FunctionAnalysisManager &AM) { 11270 AM.getResult<ScalarEvolutionAnalysis>(F).print(OS); 11271 return PreservedAnalyses::all(); 11272 } 11273 11274 INITIALIZE_PASS_BEGIN(ScalarEvolutionWrapperPass, "scalar-evolution", 11275 "Scalar Evolution Analysis", false, true) 11276 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) 11277 INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass) 11278 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) 11279 INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass) 11280 INITIALIZE_PASS_END(ScalarEvolutionWrapperPass, "scalar-evolution", 11281 "Scalar Evolution Analysis", false, true) 11282 11283 char ScalarEvolutionWrapperPass::ID = 0; 11284 11285 ScalarEvolutionWrapperPass::ScalarEvolutionWrapperPass() : FunctionPass(ID) { 11286 initializeScalarEvolutionWrapperPassPass(*PassRegistry::getPassRegistry()); 11287 } 11288 11289 bool ScalarEvolutionWrapperPass::runOnFunction(Function &F) { 11290 SE.reset(new ScalarEvolution( 11291 F, getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(), 11292 getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F), 11293 getAnalysis<DominatorTreeWrapperPass>().getDomTree(), 11294 getAnalysis<LoopInfoWrapperPass>().getLoopInfo())); 11295 return false; 11296 } 11297 11298 void ScalarEvolutionWrapperPass::releaseMemory() { SE.reset(); } 11299 11300 void ScalarEvolutionWrapperPass::print(raw_ostream &OS, const Module *) const { 11301 SE->print(OS); 11302 } 11303 11304 void ScalarEvolutionWrapperPass::verifyAnalysis() const { 11305 if (!VerifySCEV) 11306 return; 11307 11308 SE->verify(); 11309 } 11310 11311 void ScalarEvolutionWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const { 11312 AU.setPreservesAll(); 11313 AU.addRequiredTransitive<AssumptionCacheTracker>(); 11314 AU.addRequiredTransitive<LoopInfoWrapperPass>(); 11315 AU.addRequiredTransitive<DominatorTreeWrapperPass>(); 11316 AU.addRequiredTransitive<TargetLibraryInfoWrapperPass>(); 11317 } 11318 11319 const SCEVPredicate *ScalarEvolution::getEqualPredicate(const SCEV *LHS, 11320 const SCEV *RHS) { 11321 FoldingSetNodeID ID; 11322 assert(LHS->getType() == RHS->getType() && 11323 "Type mismatch between LHS and RHS"); 11324 // Unique this node based on the arguments 11325 ID.AddInteger(SCEVPredicate::P_Equal); 11326 ID.AddPointer(LHS); 11327 ID.AddPointer(RHS); 11328 void *IP = nullptr; 11329 if (const auto *S = UniquePreds.FindNodeOrInsertPos(ID, IP)) 11330 return S; 11331 SCEVEqualPredicate *Eq = new (SCEVAllocator) 11332 SCEVEqualPredicate(ID.Intern(SCEVAllocator), LHS, RHS); 11333 UniquePreds.InsertNode(Eq, IP); 11334 return Eq; 11335 } 11336 11337 const SCEVPredicate *ScalarEvolution::getWrapPredicate( 11338 const SCEVAddRecExpr *AR, 11339 SCEVWrapPredicate::IncrementWrapFlags AddedFlags) { 11340 FoldingSetNodeID ID; 11341 // Unique this node based on the arguments 11342 ID.AddInteger(SCEVPredicate::P_Wrap); 11343 ID.AddPointer(AR); 11344 ID.AddInteger(AddedFlags); 11345 void *IP = nullptr; 11346 if (const auto *S = UniquePreds.FindNodeOrInsertPos(ID, IP)) 11347 return S; 11348 auto *OF = new (SCEVAllocator) 11349 SCEVWrapPredicate(ID.Intern(SCEVAllocator), AR, AddedFlags); 11350 UniquePreds.InsertNode(OF, IP); 11351 return OF; 11352 } 11353 11354 namespace { 11355 11356 class SCEVPredicateRewriter : public SCEVRewriteVisitor<SCEVPredicateRewriter> { 11357 public: 11358 11359 /// Rewrites \p S in the context of a loop L and the SCEV predication 11360 /// infrastructure. 11361 /// 11362 /// If \p Pred is non-null, the SCEV expression is rewritten to respect the 11363 /// equivalences present in \p Pred. 11364 /// 11365 /// If \p NewPreds is non-null, rewrite is free to add further predicates to 11366 /// \p NewPreds such that the result will be an AddRecExpr. 11367 static const SCEV *rewrite(const SCEV *S, const Loop *L, ScalarEvolution &SE, 11368 SmallPtrSetImpl<const SCEVPredicate *> *NewPreds, 11369 SCEVUnionPredicate *Pred) { 11370 SCEVPredicateRewriter Rewriter(L, SE, NewPreds, Pred); 11371 return Rewriter.visit(S); 11372 } 11373 11374 const SCEV *visitUnknown(const SCEVUnknown *Expr) { 11375 if (Pred) { 11376 auto ExprPreds = Pred->getPredicatesForExpr(Expr); 11377 for (auto *Pred : ExprPreds) 11378 if (const auto *IPred = dyn_cast<SCEVEqualPredicate>(Pred)) 11379 if (IPred->getLHS() == Expr) 11380 return IPred->getRHS(); 11381 } 11382 return convertToAddRecWithPreds(Expr); 11383 } 11384 11385 const SCEV *visitZeroExtendExpr(const SCEVZeroExtendExpr *Expr) { 11386 const SCEV *Operand = visit(Expr->getOperand()); 11387 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Operand); 11388 if (AR && AR->getLoop() == L && AR->isAffine()) { 11389 // This couldn't be folded because the operand didn't have the nuw 11390 // flag. Add the nusw flag as an assumption that we could make. 11391 const SCEV *Step = AR->getStepRecurrence(SE); 11392 Type *Ty = Expr->getType(); 11393 if (addOverflowAssumption(AR, SCEVWrapPredicate::IncrementNUSW)) 11394 return SE.getAddRecExpr(SE.getZeroExtendExpr(AR->getStart(), Ty), 11395 SE.getSignExtendExpr(Step, Ty), L, 11396 AR->getNoWrapFlags()); 11397 } 11398 return SE.getZeroExtendExpr(Operand, Expr->getType()); 11399 } 11400 11401 const SCEV *visitSignExtendExpr(const SCEVSignExtendExpr *Expr) { 11402 const SCEV *Operand = visit(Expr->getOperand()); 11403 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Operand); 11404 if (AR && AR->getLoop() == L && AR->isAffine()) { 11405 // This couldn't be folded because the operand didn't have the nsw 11406 // flag. Add the nssw flag as an assumption that we could make. 11407 const SCEV *Step = AR->getStepRecurrence(SE); 11408 Type *Ty = Expr->getType(); 11409 if (addOverflowAssumption(AR, SCEVWrapPredicate::IncrementNSSW)) 11410 return SE.getAddRecExpr(SE.getSignExtendExpr(AR->getStart(), Ty), 11411 SE.getSignExtendExpr(Step, Ty), L, 11412 AR->getNoWrapFlags()); 11413 } 11414 return SE.getSignExtendExpr(Operand, Expr->getType()); 11415 } 11416 11417 private: 11418 explicit SCEVPredicateRewriter(const Loop *L, ScalarEvolution &SE, 11419 SmallPtrSetImpl<const SCEVPredicate *> *NewPreds, 11420 SCEVUnionPredicate *Pred) 11421 : SCEVRewriteVisitor(SE), NewPreds(NewPreds), Pred(Pred), L(L) {} 11422 11423 bool addOverflowAssumption(const SCEVPredicate *P) { 11424 if (!NewPreds) { 11425 // Check if we've already made this assumption. 11426 return Pred && Pred->implies(P); 11427 } 11428 NewPreds->insert(P); 11429 return true; 11430 } 11431 11432 bool addOverflowAssumption(const SCEVAddRecExpr *AR, 11433 SCEVWrapPredicate::IncrementWrapFlags AddedFlags) { 11434 auto *A = SE.getWrapPredicate(AR, AddedFlags); 11435 return addOverflowAssumption(A); 11436 } 11437 11438 // If \p Expr represents a PHINode, we try to see if it can be represented 11439 // as an AddRec, possibly under a predicate (PHISCEVPred). If it is possible 11440 // to add this predicate as a runtime overflow check, we return the AddRec. 11441 // If \p Expr does not meet these conditions (is not a PHI node, or we 11442 // couldn't create an AddRec for it, or couldn't add the predicate), we just 11443 // return \p Expr. 11444 const SCEV *convertToAddRecWithPreds(const SCEVUnknown *Expr) { 11445 if (!isa<PHINode>(Expr->getValue())) 11446 return Expr; 11447 Optional<std::pair<const SCEV *, SmallVector<const SCEVPredicate *, 3>>> 11448 PredicatedRewrite = SE.createAddRecFromPHIWithCasts(Expr); 11449 if (!PredicatedRewrite) 11450 return Expr; 11451 for (auto *P : PredicatedRewrite->second){ 11452 if (!addOverflowAssumption(P)) 11453 return Expr; 11454 } 11455 return PredicatedRewrite->first; 11456 } 11457 11458 SmallPtrSetImpl<const SCEVPredicate *> *NewPreds; 11459 SCEVUnionPredicate *Pred; 11460 const Loop *L; 11461 }; 11462 11463 } // end anonymous namespace 11464 11465 const SCEV *ScalarEvolution::rewriteUsingPredicate(const SCEV *S, const Loop *L, 11466 SCEVUnionPredicate &Preds) { 11467 return SCEVPredicateRewriter::rewrite(S, L, *this, nullptr, &Preds); 11468 } 11469 11470 const SCEVAddRecExpr *ScalarEvolution::convertSCEVToAddRecWithPredicates( 11471 const SCEV *S, const Loop *L, 11472 SmallPtrSetImpl<const SCEVPredicate *> &Preds) { 11473 SmallPtrSet<const SCEVPredicate *, 4> TransformPreds; 11474 S = SCEVPredicateRewriter::rewrite(S, L, *this, &TransformPreds, nullptr); 11475 auto *AddRec = dyn_cast<SCEVAddRecExpr>(S); 11476 11477 if (!AddRec) 11478 return nullptr; 11479 11480 // Since the transformation was successful, we can now transfer the SCEV 11481 // predicates. 11482 for (auto *P : TransformPreds) 11483 Preds.insert(P); 11484 11485 return AddRec; 11486 } 11487 11488 /// SCEV predicates 11489 SCEVPredicate::SCEVPredicate(const FoldingSetNodeIDRef ID, 11490 SCEVPredicateKind Kind) 11491 : FastID(ID), Kind(Kind) {} 11492 11493 SCEVEqualPredicate::SCEVEqualPredicate(const FoldingSetNodeIDRef ID, 11494 const SCEV *LHS, const SCEV *RHS) 11495 : SCEVPredicate(ID, P_Equal), LHS(LHS), RHS(RHS) { 11496 assert(LHS->getType() == RHS->getType() && "LHS and RHS types don't match"); 11497 assert(LHS != RHS && "LHS and RHS are the same SCEV"); 11498 } 11499 11500 bool SCEVEqualPredicate::implies(const SCEVPredicate *N) const { 11501 const auto *Op = dyn_cast<SCEVEqualPredicate>(N); 11502 11503 if (!Op) 11504 return false; 11505 11506 return Op->LHS == LHS && Op->RHS == RHS; 11507 } 11508 11509 bool SCEVEqualPredicate::isAlwaysTrue() const { return false; } 11510 11511 const SCEV *SCEVEqualPredicate::getExpr() const { return LHS; } 11512 11513 void SCEVEqualPredicate::print(raw_ostream &OS, unsigned Depth) const { 11514 OS.indent(Depth) << "Equal predicate: " << *LHS << " == " << *RHS << "\n"; 11515 } 11516 11517 SCEVWrapPredicate::SCEVWrapPredicate(const FoldingSetNodeIDRef ID, 11518 const SCEVAddRecExpr *AR, 11519 IncrementWrapFlags Flags) 11520 : SCEVPredicate(ID, P_Wrap), AR(AR), Flags(Flags) {} 11521 11522 const SCEV *SCEVWrapPredicate::getExpr() const { return AR; } 11523 11524 bool SCEVWrapPredicate::implies(const SCEVPredicate *N) const { 11525 const auto *Op = dyn_cast<SCEVWrapPredicate>(N); 11526 11527 return Op && Op->AR == AR && setFlags(Flags, Op->Flags) == Flags; 11528 } 11529 11530 bool SCEVWrapPredicate::isAlwaysTrue() const { 11531 SCEV::NoWrapFlags ScevFlags = AR->getNoWrapFlags(); 11532 IncrementWrapFlags IFlags = Flags; 11533 11534 if (ScalarEvolution::setFlags(ScevFlags, SCEV::FlagNSW) == ScevFlags) 11535 IFlags = clearFlags(IFlags, IncrementNSSW); 11536 11537 return IFlags == IncrementAnyWrap; 11538 } 11539 11540 void SCEVWrapPredicate::print(raw_ostream &OS, unsigned Depth) const { 11541 OS.indent(Depth) << *getExpr() << " Added Flags: "; 11542 if (SCEVWrapPredicate::IncrementNUSW & getFlags()) 11543 OS << "<nusw>"; 11544 if (SCEVWrapPredicate::IncrementNSSW & getFlags()) 11545 OS << "<nssw>"; 11546 OS << "\n"; 11547 } 11548 11549 SCEVWrapPredicate::IncrementWrapFlags 11550 SCEVWrapPredicate::getImpliedFlags(const SCEVAddRecExpr *AR, 11551 ScalarEvolution &SE) { 11552 IncrementWrapFlags ImpliedFlags = IncrementAnyWrap; 11553 SCEV::NoWrapFlags StaticFlags = AR->getNoWrapFlags(); 11554 11555 // We can safely transfer the NSW flag as NSSW. 11556 if (ScalarEvolution::setFlags(StaticFlags, SCEV::FlagNSW) == StaticFlags) 11557 ImpliedFlags = IncrementNSSW; 11558 11559 if (ScalarEvolution::setFlags(StaticFlags, SCEV::FlagNUW) == StaticFlags) { 11560 // If the increment is positive, the SCEV NUW flag will also imply the 11561 // WrapPredicate NUSW flag. 11562 if (const auto *Step = dyn_cast<SCEVConstant>(AR->getStepRecurrence(SE))) 11563 if (Step->getValue()->getValue().isNonNegative()) 11564 ImpliedFlags = setFlags(ImpliedFlags, IncrementNUSW); 11565 } 11566 11567 return ImpliedFlags; 11568 } 11569 11570 /// Union predicates don't get cached so create a dummy set ID for it. 11571 SCEVUnionPredicate::SCEVUnionPredicate() 11572 : SCEVPredicate(FoldingSetNodeIDRef(nullptr, 0), P_Union) {} 11573 11574 bool SCEVUnionPredicate::isAlwaysTrue() const { 11575 return all_of(Preds, 11576 [](const SCEVPredicate *I) { return I->isAlwaysTrue(); }); 11577 } 11578 11579 ArrayRef<const SCEVPredicate *> 11580 SCEVUnionPredicate::getPredicatesForExpr(const SCEV *Expr) { 11581 auto I = SCEVToPreds.find(Expr); 11582 if (I == SCEVToPreds.end()) 11583 return ArrayRef<const SCEVPredicate *>(); 11584 return I->second; 11585 } 11586 11587 bool SCEVUnionPredicate::implies(const SCEVPredicate *N) const { 11588 if (const auto *Set = dyn_cast<SCEVUnionPredicate>(N)) 11589 return all_of(Set->Preds, 11590 [this](const SCEVPredicate *I) { return this->implies(I); }); 11591 11592 auto ScevPredsIt = SCEVToPreds.find(N->getExpr()); 11593 if (ScevPredsIt == SCEVToPreds.end()) 11594 return false; 11595 auto &SCEVPreds = ScevPredsIt->second; 11596 11597 return any_of(SCEVPreds, 11598 [N](const SCEVPredicate *I) { return I->implies(N); }); 11599 } 11600 11601 const SCEV *SCEVUnionPredicate::getExpr() const { return nullptr; } 11602 11603 void SCEVUnionPredicate::print(raw_ostream &OS, unsigned Depth) const { 11604 for (auto Pred : Preds) 11605 Pred->print(OS, Depth); 11606 } 11607 11608 void SCEVUnionPredicate::add(const SCEVPredicate *N) { 11609 if (const auto *Set = dyn_cast<SCEVUnionPredicate>(N)) { 11610 for (auto Pred : Set->Preds) 11611 add(Pred); 11612 return; 11613 } 11614 11615 if (implies(N)) 11616 return; 11617 11618 const SCEV *Key = N->getExpr(); 11619 assert(Key && "Only SCEVUnionPredicate doesn't have an " 11620 " associated expression!"); 11621 11622 SCEVToPreds[Key].push_back(N); 11623 Preds.push_back(N); 11624 } 11625 11626 PredicatedScalarEvolution::PredicatedScalarEvolution(ScalarEvolution &SE, 11627 Loop &L) 11628 : SE(SE), L(L) {} 11629 11630 const SCEV *PredicatedScalarEvolution::getSCEV(Value *V) { 11631 const SCEV *Expr = SE.getSCEV(V); 11632 RewriteEntry &Entry = RewriteMap[Expr]; 11633 11634 // If we already have an entry and the version matches, return it. 11635 if (Entry.second && Generation == Entry.first) 11636 return Entry.second; 11637 11638 // We found an entry but it's stale. Rewrite the stale entry 11639 // according to the current predicate. 11640 if (Entry.second) 11641 Expr = Entry.second; 11642 11643 const SCEV *NewSCEV = SE.rewriteUsingPredicate(Expr, &L, Preds); 11644 Entry = {Generation, NewSCEV}; 11645 11646 return NewSCEV; 11647 } 11648 11649 const SCEV *PredicatedScalarEvolution::getBackedgeTakenCount() { 11650 if (!BackedgeCount) { 11651 SCEVUnionPredicate BackedgePred; 11652 BackedgeCount = SE.getPredicatedBackedgeTakenCount(&L, BackedgePred); 11653 addPredicate(BackedgePred); 11654 } 11655 return BackedgeCount; 11656 } 11657 11658 void PredicatedScalarEvolution::addPredicate(const SCEVPredicate &Pred) { 11659 if (Preds.implies(&Pred)) 11660 return; 11661 Preds.add(&Pred); 11662 updateGeneration(); 11663 } 11664 11665 const SCEVUnionPredicate &PredicatedScalarEvolution::getUnionPredicate() const { 11666 return Preds; 11667 } 11668 11669 void PredicatedScalarEvolution::updateGeneration() { 11670 // If the generation number wrapped recompute everything. 11671 if (++Generation == 0) { 11672 for (auto &II : RewriteMap) { 11673 const SCEV *Rewritten = II.second.second; 11674 II.second = {Generation, SE.rewriteUsingPredicate(Rewritten, &L, Preds)}; 11675 } 11676 } 11677 } 11678 11679 void PredicatedScalarEvolution::setNoOverflow( 11680 Value *V, SCEVWrapPredicate::IncrementWrapFlags Flags) { 11681 const SCEV *Expr = getSCEV(V); 11682 const auto *AR = cast<SCEVAddRecExpr>(Expr); 11683 11684 auto ImpliedFlags = SCEVWrapPredicate::getImpliedFlags(AR, SE); 11685 11686 // Clear the statically implied flags. 11687 Flags = SCEVWrapPredicate::clearFlags(Flags, ImpliedFlags); 11688 addPredicate(*SE.getWrapPredicate(AR, Flags)); 11689 11690 auto II = FlagsMap.insert({V, Flags}); 11691 if (!II.second) 11692 II.first->second = SCEVWrapPredicate::setFlags(Flags, II.first->second); 11693 } 11694 11695 bool PredicatedScalarEvolution::hasNoOverflow( 11696 Value *V, SCEVWrapPredicate::IncrementWrapFlags Flags) { 11697 const SCEV *Expr = getSCEV(V); 11698 const auto *AR = cast<SCEVAddRecExpr>(Expr); 11699 11700 Flags = SCEVWrapPredicate::clearFlags( 11701 Flags, SCEVWrapPredicate::getImpliedFlags(AR, SE)); 11702 11703 auto II = FlagsMap.find(V); 11704 11705 if (II != FlagsMap.end()) 11706 Flags = SCEVWrapPredicate::clearFlags(Flags, II->second); 11707 11708 return Flags == SCEVWrapPredicate::IncrementAnyWrap; 11709 } 11710 11711 const SCEVAddRecExpr *PredicatedScalarEvolution::getAsAddRec(Value *V) { 11712 const SCEV *Expr = this->getSCEV(V); 11713 SmallPtrSet<const SCEVPredicate *, 4> NewPreds; 11714 auto *New = SE.convertSCEVToAddRecWithPredicates(Expr, &L, NewPreds); 11715 11716 if (!New) 11717 return nullptr; 11718 11719 for (auto *P : NewPreds) 11720 Preds.add(P); 11721 11722 updateGeneration(); 11723 RewriteMap[SE.getSCEV(V)] = {Generation, New}; 11724 return New; 11725 } 11726 11727 PredicatedScalarEvolution::PredicatedScalarEvolution( 11728 const PredicatedScalarEvolution &Init) 11729 : RewriteMap(Init.RewriteMap), SE(Init.SE), L(Init.L), Preds(Init.Preds), 11730 Generation(Init.Generation), BackedgeCount(Init.BackedgeCount) { 11731 for (const auto &I : Init.FlagsMap) 11732 FlagsMap.insert(I); 11733 } 11734 11735 void PredicatedScalarEvolution::print(raw_ostream &OS, unsigned Depth) const { 11736 // For each block. 11737 for (auto *BB : L.getBlocks()) 11738 for (auto &I : *BB) { 11739 if (!SE.isSCEVable(I.getType())) 11740 continue; 11741 11742 auto *Expr = SE.getSCEV(&I); 11743 auto II = RewriteMap.find(Expr); 11744 11745 if (II == RewriteMap.end()) 11746 continue; 11747 11748 // Don't print things that are not interesting. 11749 if (II->second.second == Expr) 11750 continue; 11751 11752 OS.indent(Depth) << "[PSE]" << I << ":\n"; 11753 OS.indent(Depth + 2) << *Expr << "\n"; 11754 OS.indent(Depth + 2) << "--> " << *II->second.second << "\n"; 11755 } 11756 } 11757