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