1 //===-- SimplifyIndVar.cpp - Induction variable simplification ------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file implements induction variable simplification. It does 10 // not define any actual pass or policy, but provides a single function to 11 // simplify a loop's induction variables based on ScalarEvolution. 12 // 13 //===----------------------------------------------------------------------===// 14 15 #include "llvm/Transforms/Utils/SimplifyIndVar.h" 16 #include "llvm/ADT/STLExtras.h" 17 #include "llvm/ADT/SmallVector.h" 18 #include "llvm/ADT/Statistic.h" 19 #include "llvm/Analysis/LoopInfo.h" 20 #include "llvm/IR/DataLayout.h" 21 #include "llvm/IR/Dominators.h" 22 #include "llvm/IR/IRBuilder.h" 23 #include "llvm/IR/Instructions.h" 24 #include "llvm/IR/IntrinsicInst.h" 25 #include "llvm/IR/PatternMatch.h" 26 #include "llvm/Support/Debug.h" 27 #include "llvm/Support/raw_ostream.h" 28 #include "llvm/Transforms/Utils/Local.h" 29 #include "llvm/Transforms/Utils/ScalarEvolutionExpander.h" 30 31 using namespace llvm; 32 33 #define DEBUG_TYPE "indvars" 34 35 STATISTIC(NumElimIdentity, "Number of IV identities eliminated"); 36 STATISTIC(NumElimOperand, "Number of IV operands folded into a use"); 37 STATISTIC(NumFoldedUser, "Number of IV users folded into a constant"); 38 STATISTIC(NumElimRem , "Number of IV remainder operations eliminated"); 39 STATISTIC( 40 NumSimplifiedSDiv, 41 "Number of IV signed division operations converted to unsigned division"); 42 STATISTIC( 43 NumSimplifiedSRem, 44 "Number of IV signed remainder operations converted to unsigned remainder"); 45 STATISTIC(NumElimCmp , "Number of IV comparisons eliminated"); 46 47 namespace { 48 /// This is a utility for simplifying induction variables 49 /// based on ScalarEvolution. It is the primary instrument of the 50 /// IndvarSimplify pass, but it may also be directly invoked to cleanup after 51 /// other loop passes that preserve SCEV. 52 class SimplifyIndvar { 53 Loop *L; 54 LoopInfo *LI; 55 ScalarEvolution *SE; 56 DominatorTree *DT; 57 const TargetTransformInfo *TTI; 58 SCEVExpander &Rewriter; 59 SmallVectorImpl<WeakTrackingVH> &DeadInsts; 60 61 bool Changed; 62 63 public: 64 SimplifyIndvar(Loop *Loop, ScalarEvolution *SE, DominatorTree *DT, 65 LoopInfo *LI, const TargetTransformInfo *TTI, 66 SCEVExpander &Rewriter, 67 SmallVectorImpl<WeakTrackingVH> &Dead) 68 : L(Loop), LI(LI), SE(SE), DT(DT), TTI(TTI), Rewriter(Rewriter), 69 DeadInsts(Dead), Changed(false) { 70 assert(LI && "IV simplification requires LoopInfo"); 71 } 72 73 bool hasChanged() const { return Changed; } 74 75 /// Iteratively perform simplification on a worklist of users of the 76 /// specified induction variable. This is the top-level driver that applies 77 /// all simplifications to users of an IV. 78 void simplifyUsers(PHINode *CurrIV, IVVisitor *V = nullptr); 79 80 Value *foldIVUser(Instruction *UseInst, Instruction *IVOperand); 81 82 bool eliminateIdentitySCEV(Instruction *UseInst, Instruction *IVOperand); 83 bool replaceIVUserWithLoopInvariant(Instruction *UseInst); 84 85 bool eliminateOverflowIntrinsic(WithOverflowInst *WO); 86 bool eliminateSaturatingIntrinsic(SaturatingInst *SI); 87 bool eliminateTrunc(TruncInst *TI); 88 bool eliminateIVUser(Instruction *UseInst, Instruction *IVOperand); 89 bool makeIVComparisonInvariant(ICmpInst *ICmp, Value *IVOperand); 90 void eliminateIVComparison(ICmpInst *ICmp, Value *IVOperand); 91 void simplifyIVRemainder(BinaryOperator *Rem, Value *IVOperand, 92 bool IsSigned); 93 void replaceRemWithNumerator(BinaryOperator *Rem); 94 void replaceRemWithNumeratorOrZero(BinaryOperator *Rem); 95 void replaceSRemWithURem(BinaryOperator *Rem); 96 bool eliminateSDiv(BinaryOperator *SDiv); 97 bool strengthenOverflowingOperation(BinaryOperator *OBO, Value *IVOperand); 98 bool strengthenRightShift(BinaryOperator *BO, Value *IVOperand); 99 }; 100 } 101 102 /// Fold an IV operand into its use. This removes increments of an 103 /// aligned IV when used by a instruction that ignores the low bits. 104 /// 105 /// IVOperand is guaranteed SCEVable, but UseInst may not be. 106 /// 107 /// Return the operand of IVOperand for this induction variable if IVOperand can 108 /// be folded (in case more folding opportunities have been exposed). 109 /// Otherwise return null. 110 Value *SimplifyIndvar::foldIVUser(Instruction *UseInst, Instruction *IVOperand) { 111 Value *IVSrc = nullptr; 112 const unsigned OperIdx = 0; 113 const SCEV *FoldedExpr = nullptr; 114 bool MustDropExactFlag = false; 115 switch (UseInst->getOpcode()) { 116 default: 117 return nullptr; 118 case Instruction::UDiv: 119 case Instruction::LShr: 120 // We're only interested in the case where we know something about 121 // the numerator and have a constant denominator. 122 if (IVOperand != UseInst->getOperand(OperIdx) || 123 !isa<ConstantInt>(UseInst->getOperand(1))) 124 return nullptr; 125 126 // Attempt to fold a binary operator with constant operand. 127 // e.g. ((I + 1) >> 2) => I >> 2 128 if (!isa<BinaryOperator>(IVOperand) 129 || !isa<ConstantInt>(IVOperand->getOperand(1))) 130 return nullptr; 131 132 IVSrc = IVOperand->getOperand(0); 133 // IVSrc must be the (SCEVable) IV, since the other operand is const. 134 assert(SE->isSCEVable(IVSrc->getType()) && "Expect SCEVable IV operand"); 135 136 ConstantInt *D = cast<ConstantInt>(UseInst->getOperand(1)); 137 if (UseInst->getOpcode() == Instruction::LShr) { 138 // Get a constant for the divisor. See createSCEV. 139 uint32_t BitWidth = cast<IntegerType>(UseInst->getType())->getBitWidth(); 140 if (D->getValue().uge(BitWidth)) 141 return nullptr; 142 143 D = ConstantInt::get(UseInst->getContext(), 144 APInt::getOneBitSet(BitWidth, D->getZExtValue())); 145 } 146 FoldedExpr = SE->getUDivExpr(SE->getSCEV(IVSrc), SE->getSCEV(D)); 147 // We might have 'exact' flag set at this point which will no longer be 148 // correct after we make the replacement. 149 if (UseInst->isExact() && 150 SE->getSCEV(IVSrc) != SE->getMulExpr(FoldedExpr, SE->getSCEV(D))) 151 MustDropExactFlag = true; 152 } 153 // We have something that might fold it's operand. Compare SCEVs. 154 if (!SE->isSCEVable(UseInst->getType())) 155 return nullptr; 156 157 // Bypass the operand if SCEV can prove it has no effect. 158 if (SE->getSCEV(UseInst) != FoldedExpr) 159 return nullptr; 160 161 LLVM_DEBUG(dbgs() << "INDVARS: Eliminated IV operand: " << *IVOperand 162 << " -> " << *UseInst << '\n'); 163 164 UseInst->setOperand(OperIdx, IVSrc); 165 assert(SE->getSCEV(UseInst) == FoldedExpr && "bad SCEV with folded oper"); 166 167 if (MustDropExactFlag) 168 UseInst->dropPoisonGeneratingFlags(); 169 170 ++NumElimOperand; 171 Changed = true; 172 if (IVOperand->use_empty()) 173 DeadInsts.emplace_back(IVOperand); 174 return IVSrc; 175 } 176 177 bool SimplifyIndvar::makeIVComparisonInvariant(ICmpInst *ICmp, 178 Value *IVOperand) { 179 unsigned IVOperIdx = 0; 180 ICmpInst::Predicate Pred = ICmp->getPredicate(); 181 if (IVOperand != ICmp->getOperand(0)) { 182 // Swapped 183 assert(IVOperand == ICmp->getOperand(1) && "Can't find IVOperand"); 184 IVOperIdx = 1; 185 Pred = ICmpInst::getSwappedPredicate(Pred); 186 } 187 188 // Get the SCEVs for the ICmp operands (in the specific context of the 189 // current loop) 190 const Loop *ICmpLoop = LI->getLoopFor(ICmp->getParent()); 191 const SCEV *S = SE->getSCEVAtScope(ICmp->getOperand(IVOperIdx), ICmpLoop); 192 const SCEV *X = SE->getSCEVAtScope(ICmp->getOperand(1 - IVOperIdx), ICmpLoop); 193 194 ICmpInst::Predicate InvariantPredicate; 195 const SCEV *InvariantLHS, *InvariantRHS; 196 197 auto *PN = dyn_cast<PHINode>(IVOperand); 198 if (!PN) 199 return false; 200 if (!SE->isLoopInvariantPredicate(Pred, S, X, L, InvariantPredicate, 201 InvariantLHS, InvariantRHS)) 202 return false; 203 204 // Rewrite the comparison to a loop invariant comparison if it can be done 205 // cheaply, where cheaply means "we don't need to emit any new 206 // instructions". 207 208 SmallDenseMap<const SCEV*, Value*> CheapExpansions; 209 CheapExpansions[S] = ICmp->getOperand(IVOperIdx); 210 CheapExpansions[X] = ICmp->getOperand(1 - IVOperIdx); 211 212 // TODO: Support multiple entry loops? (We currently bail out of these in 213 // the IndVarSimplify pass) 214 if (auto *BB = L->getLoopPredecessor()) { 215 const int Idx = PN->getBasicBlockIndex(BB); 216 if (Idx >= 0) { 217 Value *Incoming = PN->getIncomingValue(Idx); 218 const SCEV *IncomingS = SE->getSCEV(Incoming); 219 CheapExpansions[IncomingS] = Incoming; 220 } 221 } 222 Value *NewLHS = CheapExpansions[InvariantLHS]; 223 Value *NewRHS = CheapExpansions[InvariantRHS]; 224 225 if (!NewLHS) 226 if (auto *ConstLHS = dyn_cast<SCEVConstant>(InvariantLHS)) 227 NewLHS = ConstLHS->getValue(); 228 if (!NewRHS) 229 if (auto *ConstRHS = dyn_cast<SCEVConstant>(InvariantRHS)) 230 NewRHS = ConstRHS->getValue(); 231 232 if (!NewLHS || !NewRHS) 233 // We could not find an existing value to replace either LHS or RHS. 234 // Generating new instructions has subtler tradeoffs, so avoid doing that 235 // for now. 236 return false; 237 238 LLVM_DEBUG(dbgs() << "INDVARS: Simplified comparison: " << *ICmp << '\n'); 239 ICmp->setPredicate(InvariantPredicate); 240 ICmp->setOperand(0, NewLHS); 241 ICmp->setOperand(1, NewRHS); 242 return true; 243 } 244 245 /// SimplifyIVUsers helper for eliminating useless 246 /// comparisons against an induction variable. 247 void SimplifyIndvar::eliminateIVComparison(ICmpInst *ICmp, Value *IVOperand) { 248 unsigned IVOperIdx = 0; 249 ICmpInst::Predicate Pred = ICmp->getPredicate(); 250 ICmpInst::Predicate OriginalPred = Pred; 251 if (IVOperand != ICmp->getOperand(0)) { 252 // Swapped 253 assert(IVOperand == ICmp->getOperand(1) && "Can't find IVOperand"); 254 IVOperIdx = 1; 255 Pred = ICmpInst::getSwappedPredicate(Pred); 256 } 257 258 // Get the SCEVs for the ICmp operands (in the specific context of the 259 // current loop) 260 const Loop *ICmpLoop = LI->getLoopFor(ICmp->getParent()); 261 const SCEV *S = SE->getSCEVAtScope(ICmp->getOperand(IVOperIdx), ICmpLoop); 262 const SCEV *X = SE->getSCEVAtScope(ICmp->getOperand(1 - IVOperIdx), ICmpLoop); 263 264 // If the condition is always true or always false, replace it with 265 // a constant value. 266 if (SE->isKnownPredicate(Pred, S, X)) { 267 ICmp->replaceAllUsesWith(ConstantInt::getTrue(ICmp->getContext())); 268 DeadInsts.emplace_back(ICmp); 269 LLVM_DEBUG(dbgs() << "INDVARS: Eliminated comparison: " << *ICmp << '\n'); 270 } else if (SE->isKnownPredicate(ICmpInst::getInversePredicate(Pred), S, X)) { 271 ICmp->replaceAllUsesWith(ConstantInt::getFalse(ICmp->getContext())); 272 DeadInsts.emplace_back(ICmp); 273 LLVM_DEBUG(dbgs() << "INDVARS: Eliminated comparison: " << *ICmp << '\n'); 274 } else if (makeIVComparisonInvariant(ICmp, IVOperand)) { 275 // fallthrough to end of function 276 } else if (ICmpInst::isSigned(OriginalPred) && 277 SE->isKnownNonNegative(S) && SE->isKnownNonNegative(X)) { 278 // If we were unable to make anything above, all we can is to canonicalize 279 // the comparison hoping that it will open the doors for other 280 // optimizations. If we find out that we compare two non-negative values, 281 // we turn the instruction's predicate to its unsigned version. Note that 282 // we cannot rely on Pred here unless we check if we have swapped it. 283 assert(ICmp->getPredicate() == OriginalPred && "Predicate changed?"); 284 LLVM_DEBUG(dbgs() << "INDVARS: Turn to unsigned comparison: " << *ICmp 285 << '\n'); 286 ICmp->setPredicate(ICmpInst::getUnsignedPredicate(OriginalPred)); 287 } else 288 return; 289 290 ++NumElimCmp; 291 Changed = true; 292 } 293 294 bool SimplifyIndvar::eliminateSDiv(BinaryOperator *SDiv) { 295 // Get the SCEVs for the ICmp operands. 296 auto *N = SE->getSCEV(SDiv->getOperand(0)); 297 auto *D = SE->getSCEV(SDiv->getOperand(1)); 298 299 // Simplify unnecessary loops away. 300 const Loop *L = LI->getLoopFor(SDiv->getParent()); 301 N = SE->getSCEVAtScope(N, L); 302 D = SE->getSCEVAtScope(D, L); 303 304 // Replace sdiv by udiv if both of the operands are non-negative 305 if (SE->isKnownNonNegative(N) && SE->isKnownNonNegative(D)) { 306 auto *UDiv = BinaryOperator::Create( 307 BinaryOperator::UDiv, SDiv->getOperand(0), SDiv->getOperand(1), 308 SDiv->getName() + ".udiv", SDiv); 309 UDiv->setIsExact(SDiv->isExact()); 310 SDiv->replaceAllUsesWith(UDiv); 311 LLVM_DEBUG(dbgs() << "INDVARS: Simplified sdiv: " << *SDiv << '\n'); 312 ++NumSimplifiedSDiv; 313 Changed = true; 314 DeadInsts.push_back(SDiv); 315 return true; 316 } 317 318 return false; 319 } 320 321 // i %s n -> i %u n if i >= 0 and n >= 0 322 void SimplifyIndvar::replaceSRemWithURem(BinaryOperator *Rem) { 323 auto *N = Rem->getOperand(0), *D = Rem->getOperand(1); 324 auto *URem = BinaryOperator::Create(BinaryOperator::URem, N, D, 325 Rem->getName() + ".urem", Rem); 326 Rem->replaceAllUsesWith(URem); 327 LLVM_DEBUG(dbgs() << "INDVARS: Simplified srem: " << *Rem << '\n'); 328 ++NumSimplifiedSRem; 329 Changed = true; 330 DeadInsts.emplace_back(Rem); 331 } 332 333 // i % n --> i if i is in [0,n). 334 void SimplifyIndvar::replaceRemWithNumerator(BinaryOperator *Rem) { 335 Rem->replaceAllUsesWith(Rem->getOperand(0)); 336 LLVM_DEBUG(dbgs() << "INDVARS: Simplified rem: " << *Rem << '\n'); 337 ++NumElimRem; 338 Changed = true; 339 DeadInsts.emplace_back(Rem); 340 } 341 342 // (i+1) % n --> (i+1)==n?0:(i+1) if i is in [0,n). 343 void SimplifyIndvar::replaceRemWithNumeratorOrZero(BinaryOperator *Rem) { 344 auto *T = Rem->getType(); 345 auto *N = Rem->getOperand(0), *D = Rem->getOperand(1); 346 ICmpInst *ICmp = new ICmpInst(Rem, ICmpInst::ICMP_EQ, N, D); 347 SelectInst *Sel = 348 SelectInst::Create(ICmp, ConstantInt::get(T, 0), N, "iv.rem", Rem); 349 Rem->replaceAllUsesWith(Sel); 350 LLVM_DEBUG(dbgs() << "INDVARS: Simplified rem: " << *Rem << '\n'); 351 ++NumElimRem; 352 Changed = true; 353 DeadInsts.emplace_back(Rem); 354 } 355 356 /// SimplifyIVUsers helper for eliminating useless remainder operations 357 /// operating on an induction variable or replacing srem by urem. 358 void SimplifyIndvar::simplifyIVRemainder(BinaryOperator *Rem, Value *IVOperand, 359 bool IsSigned) { 360 auto *NValue = Rem->getOperand(0); 361 auto *DValue = Rem->getOperand(1); 362 // We're only interested in the case where we know something about 363 // the numerator, unless it is a srem, because we want to replace srem by urem 364 // in general. 365 bool UsedAsNumerator = IVOperand == NValue; 366 if (!UsedAsNumerator && !IsSigned) 367 return; 368 369 const SCEV *N = SE->getSCEV(NValue); 370 371 // Simplify unnecessary loops away. 372 const Loop *ICmpLoop = LI->getLoopFor(Rem->getParent()); 373 N = SE->getSCEVAtScope(N, ICmpLoop); 374 375 bool IsNumeratorNonNegative = !IsSigned || SE->isKnownNonNegative(N); 376 377 // Do not proceed if the Numerator may be negative 378 if (!IsNumeratorNonNegative) 379 return; 380 381 const SCEV *D = SE->getSCEV(DValue); 382 D = SE->getSCEVAtScope(D, ICmpLoop); 383 384 if (UsedAsNumerator) { 385 auto LT = IsSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT; 386 if (SE->isKnownPredicate(LT, N, D)) { 387 replaceRemWithNumerator(Rem); 388 return; 389 } 390 391 auto *T = Rem->getType(); 392 const auto *NLessOne = SE->getMinusSCEV(N, SE->getOne(T)); 393 if (SE->isKnownPredicate(LT, NLessOne, D)) { 394 replaceRemWithNumeratorOrZero(Rem); 395 return; 396 } 397 } 398 399 // Try to replace SRem with URem, if both N and D are known non-negative. 400 // Since we had already check N, we only need to check D now 401 if (!IsSigned || !SE->isKnownNonNegative(D)) 402 return; 403 404 replaceSRemWithURem(Rem); 405 } 406 407 static bool willNotOverflow(ScalarEvolution *SE, Instruction::BinaryOps BinOp, 408 bool Signed, const SCEV *LHS, const SCEV *RHS) { 409 const SCEV *(ScalarEvolution::*Operation)(const SCEV *, const SCEV *, 410 SCEV::NoWrapFlags, unsigned); 411 switch (BinOp) { 412 default: 413 llvm_unreachable("Unsupported binary op"); 414 case Instruction::Add: 415 Operation = &ScalarEvolution::getAddExpr; 416 break; 417 case Instruction::Sub: 418 Operation = &ScalarEvolution::getMinusSCEV; 419 break; 420 case Instruction::Mul: 421 Operation = &ScalarEvolution::getMulExpr; 422 break; 423 } 424 425 const SCEV *(ScalarEvolution::*Extension)(const SCEV *, Type *, unsigned) = 426 Signed ? &ScalarEvolution::getSignExtendExpr 427 : &ScalarEvolution::getZeroExtendExpr; 428 429 // Check ext(LHS op RHS) == ext(LHS) op ext(RHS) 430 auto *NarrowTy = cast<IntegerType>(LHS->getType()); 431 auto *WideTy = 432 IntegerType::get(NarrowTy->getContext(), NarrowTy->getBitWidth() * 2); 433 434 const SCEV *A = 435 (SE->*Extension)((SE->*Operation)(LHS, RHS, SCEV::FlagAnyWrap, 0), 436 WideTy, 0); 437 const SCEV *B = 438 (SE->*Operation)((SE->*Extension)(LHS, WideTy, 0), 439 (SE->*Extension)(RHS, WideTy, 0), SCEV::FlagAnyWrap, 0); 440 return A == B; 441 } 442 443 bool SimplifyIndvar::eliminateOverflowIntrinsic(WithOverflowInst *WO) { 444 const SCEV *LHS = SE->getSCEV(WO->getLHS()); 445 const SCEV *RHS = SE->getSCEV(WO->getRHS()); 446 if (!willNotOverflow(SE, WO->getBinaryOp(), WO->isSigned(), LHS, RHS)) 447 return false; 448 449 // Proved no overflow, nuke the overflow check and, if possible, the overflow 450 // intrinsic as well. 451 452 BinaryOperator *NewResult = BinaryOperator::Create( 453 WO->getBinaryOp(), WO->getLHS(), WO->getRHS(), "", WO); 454 455 if (WO->isSigned()) 456 NewResult->setHasNoSignedWrap(true); 457 else 458 NewResult->setHasNoUnsignedWrap(true); 459 460 SmallVector<ExtractValueInst *, 4> ToDelete; 461 462 for (auto *U : WO->users()) { 463 if (auto *EVI = dyn_cast<ExtractValueInst>(U)) { 464 if (EVI->getIndices()[0] == 1) 465 EVI->replaceAllUsesWith(ConstantInt::getFalse(WO->getContext())); 466 else { 467 assert(EVI->getIndices()[0] == 0 && "Only two possibilities!"); 468 EVI->replaceAllUsesWith(NewResult); 469 } 470 ToDelete.push_back(EVI); 471 } 472 } 473 474 for (auto *EVI : ToDelete) 475 EVI->eraseFromParent(); 476 477 if (WO->use_empty()) 478 WO->eraseFromParent(); 479 480 Changed = true; 481 return true; 482 } 483 484 bool SimplifyIndvar::eliminateSaturatingIntrinsic(SaturatingInst *SI) { 485 const SCEV *LHS = SE->getSCEV(SI->getLHS()); 486 const SCEV *RHS = SE->getSCEV(SI->getRHS()); 487 if (!willNotOverflow(SE, SI->getBinaryOp(), SI->isSigned(), LHS, RHS)) 488 return false; 489 490 BinaryOperator *BO = BinaryOperator::Create( 491 SI->getBinaryOp(), SI->getLHS(), SI->getRHS(), SI->getName(), SI); 492 if (SI->isSigned()) 493 BO->setHasNoSignedWrap(); 494 else 495 BO->setHasNoUnsignedWrap(); 496 497 SI->replaceAllUsesWith(BO); 498 DeadInsts.emplace_back(SI); 499 Changed = true; 500 return true; 501 } 502 503 bool SimplifyIndvar::eliminateTrunc(TruncInst *TI) { 504 // It is always legal to replace 505 // icmp <pred> i32 trunc(iv), n 506 // with 507 // icmp <pred> i64 sext(trunc(iv)), sext(n), if pred is signed predicate. 508 // Or with 509 // icmp <pred> i64 zext(trunc(iv)), zext(n), if pred is unsigned predicate. 510 // Or with either of these if pred is an equality predicate. 511 // 512 // If we can prove that iv == sext(trunc(iv)) or iv == zext(trunc(iv)) for 513 // every comparison which uses trunc, it means that we can replace each of 514 // them with comparison of iv against sext/zext(n). We no longer need trunc 515 // after that. 516 // 517 // TODO: Should we do this if we can widen *some* comparisons, but not all 518 // of them? Sometimes it is enough to enable other optimizations, but the 519 // trunc instruction will stay in the loop. 520 Value *IV = TI->getOperand(0); 521 Type *IVTy = IV->getType(); 522 const SCEV *IVSCEV = SE->getSCEV(IV); 523 const SCEV *TISCEV = SE->getSCEV(TI); 524 525 // Check if iv == zext(trunc(iv)) and if iv == sext(trunc(iv)). If so, we can 526 // get rid of trunc 527 bool DoesSExtCollapse = false; 528 bool DoesZExtCollapse = false; 529 if (IVSCEV == SE->getSignExtendExpr(TISCEV, IVTy)) 530 DoesSExtCollapse = true; 531 if (IVSCEV == SE->getZeroExtendExpr(TISCEV, IVTy)) 532 DoesZExtCollapse = true; 533 534 // If neither sext nor zext does collapse, it is not profitable to do any 535 // transform. Bail. 536 if (!DoesSExtCollapse && !DoesZExtCollapse) 537 return false; 538 539 // Collect users of the trunc that look like comparisons against invariants. 540 // Bail if we find something different. 541 SmallVector<ICmpInst *, 4> ICmpUsers; 542 for (auto *U : TI->users()) { 543 // We don't care about users in unreachable blocks. 544 if (isa<Instruction>(U) && 545 !DT->isReachableFromEntry(cast<Instruction>(U)->getParent())) 546 continue; 547 ICmpInst *ICI = dyn_cast<ICmpInst>(U); 548 if (!ICI) return false; 549 assert(L->contains(ICI->getParent()) && "LCSSA form broken?"); 550 if (!(ICI->getOperand(0) == TI && L->isLoopInvariant(ICI->getOperand(1))) && 551 !(ICI->getOperand(1) == TI && L->isLoopInvariant(ICI->getOperand(0)))) 552 return false; 553 // If we cannot get rid of trunc, bail. 554 if (ICI->isSigned() && !DoesSExtCollapse) 555 return false; 556 if (ICI->isUnsigned() && !DoesZExtCollapse) 557 return false; 558 // For equality, either signed or unsigned works. 559 ICmpUsers.push_back(ICI); 560 } 561 562 auto CanUseZExt = [&](ICmpInst *ICI) { 563 // Unsigned comparison can be widened as unsigned. 564 if (ICI->isUnsigned()) 565 return true; 566 // Is it profitable to do zext? 567 if (!DoesZExtCollapse) 568 return false; 569 // For equality, we can safely zext both parts. 570 if (ICI->isEquality()) 571 return true; 572 // Otherwise we can only use zext when comparing two non-negative or two 573 // negative values. But in practice, we will never pass DoesZExtCollapse 574 // check for a negative value, because zext(trunc(x)) is non-negative. So 575 // it only make sense to check for non-negativity here. 576 const SCEV *SCEVOP1 = SE->getSCEV(ICI->getOperand(0)); 577 const SCEV *SCEVOP2 = SE->getSCEV(ICI->getOperand(1)); 578 return SE->isKnownNonNegative(SCEVOP1) && SE->isKnownNonNegative(SCEVOP2); 579 }; 580 // Replace all comparisons against trunc with comparisons against IV. 581 for (auto *ICI : ICmpUsers) { 582 bool IsSwapped = L->isLoopInvariant(ICI->getOperand(0)); 583 auto *Op1 = IsSwapped ? ICI->getOperand(0) : ICI->getOperand(1); 584 Instruction *Ext = nullptr; 585 // For signed/unsigned predicate, replace the old comparison with comparison 586 // of immediate IV against sext/zext of the invariant argument. If we can 587 // use either sext or zext (i.e. we are dealing with equality predicate), 588 // then prefer zext as a more canonical form. 589 // TODO: If we see a signed comparison which can be turned into unsigned, 590 // we can do it here for canonicalization purposes. 591 ICmpInst::Predicate Pred = ICI->getPredicate(); 592 if (IsSwapped) Pred = ICmpInst::getSwappedPredicate(Pred); 593 if (CanUseZExt(ICI)) { 594 assert(DoesZExtCollapse && "Unprofitable zext?"); 595 Ext = new ZExtInst(Op1, IVTy, "zext", ICI); 596 Pred = ICmpInst::getUnsignedPredicate(Pred); 597 } else { 598 assert(DoesSExtCollapse && "Unprofitable sext?"); 599 Ext = new SExtInst(Op1, IVTy, "sext", ICI); 600 assert(Pred == ICmpInst::getSignedPredicate(Pred) && "Must be signed!"); 601 } 602 bool Changed; 603 L->makeLoopInvariant(Ext, Changed); 604 (void)Changed; 605 ICmpInst *NewICI = new ICmpInst(ICI, Pred, IV, Ext); 606 ICI->replaceAllUsesWith(NewICI); 607 DeadInsts.emplace_back(ICI); 608 } 609 610 // Trunc no longer needed. 611 TI->replaceAllUsesWith(UndefValue::get(TI->getType())); 612 DeadInsts.emplace_back(TI); 613 return true; 614 } 615 616 /// Eliminate an operation that consumes a simple IV and has no observable 617 /// side-effect given the range of IV values. IVOperand is guaranteed SCEVable, 618 /// but UseInst may not be. 619 bool SimplifyIndvar::eliminateIVUser(Instruction *UseInst, 620 Instruction *IVOperand) { 621 if (ICmpInst *ICmp = dyn_cast<ICmpInst>(UseInst)) { 622 eliminateIVComparison(ICmp, IVOperand); 623 return true; 624 } 625 if (BinaryOperator *Bin = dyn_cast<BinaryOperator>(UseInst)) { 626 bool IsSRem = Bin->getOpcode() == Instruction::SRem; 627 if (IsSRem || Bin->getOpcode() == Instruction::URem) { 628 simplifyIVRemainder(Bin, IVOperand, IsSRem); 629 return true; 630 } 631 632 if (Bin->getOpcode() == Instruction::SDiv) 633 return eliminateSDiv(Bin); 634 } 635 636 if (auto *WO = dyn_cast<WithOverflowInst>(UseInst)) 637 if (eliminateOverflowIntrinsic(WO)) 638 return true; 639 640 if (auto *SI = dyn_cast<SaturatingInst>(UseInst)) 641 if (eliminateSaturatingIntrinsic(SI)) 642 return true; 643 644 if (auto *TI = dyn_cast<TruncInst>(UseInst)) 645 if (eliminateTrunc(TI)) 646 return true; 647 648 if (eliminateIdentitySCEV(UseInst, IVOperand)) 649 return true; 650 651 return false; 652 } 653 654 static Instruction *GetLoopInvariantInsertPosition(Loop *L, Instruction *Hint) { 655 if (auto *BB = L->getLoopPreheader()) 656 return BB->getTerminator(); 657 658 return Hint; 659 } 660 661 /// Replace the UseInst with a loop invariant expression if it is safe. 662 bool SimplifyIndvar::replaceIVUserWithLoopInvariant(Instruction *I) { 663 if (!SE->isSCEVable(I->getType())) 664 return false; 665 666 // Get the symbolic expression for this instruction. 667 const SCEV *S = SE->getSCEV(I); 668 669 if (!SE->isLoopInvariant(S, L)) 670 return false; 671 672 // Do not generate something ridiculous even if S is loop invariant. 673 if (Rewriter.isHighCostExpansion(S, L, SCEVCheapExpansionBudget, TTI, I)) 674 return false; 675 676 auto *IP = GetLoopInvariantInsertPosition(L, I); 677 678 if (!isSafeToExpandAt(S, IP, *SE)) { 679 LLVM_DEBUG(dbgs() << "INDVARS: Can not replace IV user: " << *I 680 << " with non-speculable loop invariant: " << *S << '\n'); 681 return false; 682 } 683 684 auto *Invariant = Rewriter.expandCodeFor(S, I->getType(), IP); 685 686 I->replaceAllUsesWith(Invariant); 687 LLVM_DEBUG(dbgs() << "INDVARS: Replace IV user: " << *I 688 << " with loop invariant: " << *S << '\n'); 689 ++NumFoldedUser; 690 Changed = true; 691 DeadInsts.emplace_back(I); 692 return true; 693 } 694 695 /// Eliminate any operation that SCEV can prove is an identity function. 696 bool SimplifyIndvar::eliminateIdentitySCEV(Instruction *UseInst, 697 Instruction *IVOperand) { 698 if (!SE->isSCEVable(UseInst->getType()) || 699 (UseInst->getType() != IVOperand->getType()) || 700 (SE->getSCEV(UseInst) != SE->getSCEV(IVOperand))) 701 return false; 702 703 // getSCEV(X) == getSCEV(Y) does not guarantee that X and Y are related in the 704 // dominator tree, even if X is an operand to Y. For instance, in 705 // 706 // %iv = phi i32 {0,+,1} 707 // br %cond, label %left, label %merge 708 // 709 // left: 710 // %X = add i32 %iv, 0 711 // br label %merge 712 // 713 // merge: 714 // %M = phi (%X, %iv) 715 // 716 // getSCEV(%M) == getSCEV(%X) == {0,+,1}, but %X does not dominate %M, and 717 // %M.replaceAllUsesWith(%X) would be incorrect. 718 719 if (isa<PHINode>(UseInst)) 720 // If UseInst is not a PHI node then we know that IVOperand dominates 721 // UseInst directly from the legality of SSA. 722 if (!DT || !DT->dominates(IVOperand, UseInst)) 723 return false; 724 725 if (!LI->replacementPreservesLCSSAForm(UseInst, IVOperand)) 726 return false; 727 728 LLVM_DEBUG(dbgs() << "INDVARS: Eliminated identity: " << *UseInst << '\n'); 729 730 UseInst->replaceAllUsesWith(IVOperand); 731 ++NumElimIdentity; 732 Changed = true; 733 DeadInsts.emplace_back(UseInst); 734 return true; 735 } 736 737 /// Annotate BO with nsw / nuw if it provably does not signed-overflow / 738 /// unsigned-overflow. Returns true if anything changed, false otherwise. 739 bool SimplifyIndvar::strengthenOverflowingOperation(BinaryOperator *BO, 740 Value *IVOperand) { 741 // Fastpath: we don't have any work to do if `BO` is `nuw` and `nsw`. 742 if (BO->hasNoUnsignedWrap() && BO->hasNoSignedWrap()) 743 return false; 744 745 if (BO->getOpcode() != Instruction::Add && 746 BO->getOpcode() != Instruction::Sub && 747 BO->getOpcode() != Instruction::Mul) 748 return false; 749 750 const SCEV *LHS = SE->getSCEV(BO->getOperand(0)); 751 const SCEV *RHS = SE->getSCEV(BO->getOperand(1)); 752 bool Changed = false; 753 754 if (!BO->hasNoUnsignedWrap() && 755 willNotOverflow(SE, BO->getOpcode(), /* Signed */ false, LHS, RHS)) { 756 BO->setHasNoUnsignedWrap(); 757 SE->forgetValue(BO); 758 Changed = true; 759 } 760 761 if (!BO->hasNoSignedWrap() && 762 willNotOverflow(SE, BO->getOpcode(), /* Signed */ true, LHS, RHS)) { 763 BO->setHasNoSignedWrap(); 764 SE->forgetValue(BO); 765 Changed = true; 766 } 767 768 return Changed; 769 } 770 771 /// Annotate the Shr in (X << IVOperand) >> C as exact using the 772 /// information from the IV's range. Returns true if anything changed, false 773 /// otherwise. 774 bool SimplifyIndvar::strengthenRightShift(BinaryOperator *BO, 775 Value *IVOperand) { 776 using namespace llvm::PatternMatch; 777 778 if (BO->getOpcode() == Instruction::Shl) { 779 bool Changed = false; 780 ConstantRange IVRange = SE->getUnsignedRange(SE->getSCEV(IVOperand)); 781 for (auto *U : BO->users()) { 782 const APInt *C; 783 if (match(U, 784 m_AShr(m_Shl(m_Value(), m_Specific(IVOperand)), m_APInt(C))) || 785 match(U, 786 m_LShr(m_Shl(m_Value(), m_Specific(IVOperand)), m_APInt(C)))) { 787 BinaryOperator *Shr = cast<BinaryOperator>(U); 788 if (!Shr->isExact() && IVRange.getUnsignedMin().uge(*C)) { 789 Shr->setIsExact(true); 790 Changed = true; 791 } 792 } 793 } 794 return Changed; 795 } 796 797 return false; 798 } 799 800 /// Add all uses of Def to the current IV's worklist. 801 static void pushIVUsers( 802 Instruction *Def, Loop *L, 803 SmallPtrSet<Instruction*,16> &Simplified, 804 SmallVectorImpl< std::pair<Instruction*,Instruction*> > &SimpleIVUsers) { 805 806 for (User *U : Def->users()) { 807 Instruction *UI = cast<Instruction>(U); 808 809 // Avoid infinite or exponential worklist processing. 810 // Also ensure unique worklist users. 811 // If Def is a LoopPhi, it may not be in the Simplified set, so check for 812 // self edges first. 813 if (UI == Def) 814 continue; 815 816 // Only change the current Loop, do not change the other parts (e.g. other 817 // Loops). 818 if (!L->contains(UI)) 819 continue; 820 821 // Do not push the same instruction more than once. 822 if (!Simplified.insert(UI).second) 823 continue; 824 825 SimpleIVUsers.push_back(std::make_pair(UI, Def)); 826 } 827 } 828 829 /// Return true if this instruction generates a simple SCEV 830 /// expression in terms of that IV. 831 /// 832 /// This is similar to IVUsers' isInteresting() but processes each instruction 833 /// non-recursively when the operand is already known to be a simpleIVUser. 834 /// 835 static bool isSimpleIVUser(Instruction *I, const Loop *L, ScalarEvolution *SE) { 836 if (!SE->isSCEVable(I->getType())) 837 return false; 838 839 // Get the symbolic expression for this instruction. 840 const SCEV *S = SE->getSCEV(I); 841 842 // Only consider affine recurrences. 843 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S); 844 if (AR && AR->getLoop() == L) 845 return true; 846 847 return false; 848 } 849 850 /// Iteratively perform simplification on a worklist of users 851 /// of the specified induction variable. Each successive simplification may push 852 /// more users which may themselves be candidates for simplification. 853 /// 854 /// This algorithm does not require IVUsers analysis. Instead, it simplifies 855 /// instructions in-place during analysis. Rather than rewriting induction 856 /// variables bottom-up from their users, it transforms a chain of IVUsers 857 /// top-down, updating the IR only when it encounters a clear optimization 858 /// opportunity. 859 /// 860 /// Once DisableIVRewrite is default, LSR will be the only client of IVUsers. 861 /// 862 void SimplifyIndvar::simplifyUsers(PHINode *CurrIV, IVVisitor *V) { 863 if (!SE->isSCEVable(CurrIV->getType())) 864 return; 865 866 // Instructions processed by SimplifyIndvar for CurrIV. 867 SmallPtrSet<Instruction*,16> Simplified; 868 869 // Use-def pairs if IV users waiting to be processed for CurrIV. 870 SmallVector<std::pair<Instruction*, Instruction*>, 8> SimpleIVUsers; 871 872 // Push users of the current LoopPhi. In rare cases, pushIVUsers may be 873 // called multiple times for the same LoopPhi. This is the proper thing to 874 // do for loop header phis that use each other. 875 pushIVUsers(CurrIV, L, Simplified, SimpleIVUsers); 876 877 while (!SimpleIVUsers.empty()) { 878 std::pair<Instruction*, Instruction*> UseOper = 879 SimpleIVUsers.pop_back_val(); 880 Instruction *UseInst = UseOper.first; 881 882 // If a user of the IndVar is trivially dead, we prefer just to mark it dead 883 // rather than try to do some complex analysis or transformation (such as 884 // widening) basing on it. 885 // TODO: Propagate TLI and pass it here to handle more cases. 886 if (isInstructionTriviallyDead(UseInst, /* TLI */ nullptr)) { 887 DeadInsts.emplace_back(UseInst); 888 continue; 889 } 890 891 // Bypass back edges to avoid extra work. 892 if (UseInst == CurrIV) continue; 893 894 // Try to replace UseInst with a loop invariant before any other 895 // simplifications. 896 if (replaceIVUserWithLoopInvariant(UseInst)) 897 continue; 898 899 Instruction *IVOperand = UseOper.second; 900 for (unsigned N = 0; IVOperand; ++N) { 901 assert(N <= Simplified.size() && "runaway iteration"); 902 903 Value *NewOper = foldIVUser(UseInst, IVOperand); 904 if (!NewOper) 905 break; // done folding 906 IVOperand = dyn_cast<Instruction>(NewOper); 907 } 908 if (!IVOperand) 909 continue; 910 911 if (eliminateIVUser(UseInst, IVOperand)) { 912 pushIVUsers(IVOperand, L, Simplified, SimpleIVUsers); 913 continue; 914 } 915 916 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(UseInst)) { 917 if ((isa<OverflowingBinaryOperator>(BO) && 918 strengthenOverflowingOperation(BO, IVOperand)) || 919 (isa<ShlOperator>(BO) && strengthenRightShift(BO, IVOperand))) { 920 // re-queue uses of the now modified binary operator and fall 921 // through to the checks that remain. 922 pushIVUsers(IVOperand, L, Simplified, SimpleIVUsers); 923 } 924 } 925 926 CastInst *Cast = dyn_cast<CastInst>(UseInst); 927 if (V && Cast) { 928 V->visitCast(Cast); 929 continue; 930 } 931 if (isSimpleIVUser(UseInst, L, SE)) { 932 pushIVUsers(UseInst, L, Simplified, SimpleIVUsers); 933 } 934 } 935 } 936 937 namespace llvm { 938 939 void IVVisitor::anchor() { } 940 941 /// Simplify instructions that use this induction variable 942 /// by using ScalarEvolution to analyze the IV's recurrence. 943 bool simplifyUsersOfIV(PHINode *CurrIV, ScalarEvolution *SE, DominatorTree *DT, 944 LoopInfo *LI, const TargetTransformInfo *TTI, 945 SmallVectorImpl<WeakTrackingVH> &Dead, 946 SCEVExpander &Rewriter, IVVisitor *V) { 947 SimplifyIndvar SIV(LI->getLoopFor(CurrIV->getParent()), SE, DT, LI, TTI, 948 Rewriter, Dead); 949 SIV.simplifyUsers(CurrIV, V); 950 return SIV.hasChanged(); 951 } 952 953 /// Simplify users of induction variables within this 954 /// loop. This does not actually change or add IVs. 955 bool simplifyLoopIVs(Loop *L, ScalarEvolution *SE, DominatorTree *DT, 956 LoopInfo *LI, const TargetTransformInfo *TTI, 957 SmallVectorImpl<WeakTrackingVH> &Dead) { 958 SCEVExpander Rewriter(*SE, SE->getDataLayout(), "indvars"); 959 #ifndef NDEBUG 960 Rewriter.setDebugType(DEBUG_TYPE); 961 #endif 962 bool Changed = false; 963 for (BasicBlock::iterator I = L->getHeader()->begin(); isa<PHINode>(I); ++I) { 964 Changed |= 965 simplifyUsersOfIV(cast<PHINode>(I), SE, DT, LI, TTI, Dead, Rewriter); 966 } 967 return Changed; 968 } 969 970 } // namespace llvm 971