1 //===-- LICM.cpp - Loop Invariant Code Motion Pass ------------------------===// 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 pass performs loop invariant code motion, attempting to remove as much 11 // code from the body of a loop as possible. It does this by either hoisting 12 // code into the preheader block, or by sinking code to the exit blocks if it is 13 // safe. This pass also promotes must-aliased memory locations in the loop to 14 // live in registers, thus hoisting and sinking "invariant" loads and stores. 15 // 16 // This pass uses alias analysis for two purposes: 17 // 18 // 1. Moving loop invariant loads and calls out of loops. If we can determine 19 // that a load or call inside of a loop never aliases anything stored to, 20 // we can hoist it or sink it like any other instruction. 21 // 2. Scalar Promotion of Memory - If there is a store instruction inside of 22 // the loop, we try to move the store to happen AFTER the loop instead of 23 // inside of the loop. This can only happen if a few conditions are true: 24 // A. The pointer stored through is loop invariant 25 // B. There are no stores or loads in the loop which _may_ alias the 26 // pointer. There are no calls in the loop which mod/ref the pointer. 27 // If these conditions are true, we can promote the loads and stores in the 28 // loop of the pointer to use a temporary alloca'd variable. We then use 29 // the SSAUpdater to construct the appropriate SSA form for the value. 30 // 31 //===----------------------------------------------------------------------===// 32 33 #include "llvm/Transforms/Scalar/LICM.h" 34 #include "llvm/ADT/Statistic.h" 35 #include "llvm/Analysis/AliasAnalysis.h" 36 #include "llvm/Analysis/AliasSetTracker.h" 37 #include "llvm/Analysis/BasicAliasAnalysis.h" 38 #include "llvm/Analysis/CaptureTracking.h" 39 #include "llvm/Analysis/ConstantFolding.h" 40 #include "llvm/Analysis/GlobalsModRef.h" 41 #include "llvm/Analysis/Loads.h" 42 #include "llvm/Analysis/LoopInfo.h" 43 #include "llvm/Analysis/LoopPass.h" 44 #include "llvm/Analysis/MemoryBuiltins.h" 45 #include "llvm/Analysis/OptimizationDiagnosticInfo.h" 46 #include "llvm/Analysis/ScalarEvolution.h" 47 #include "llvm/Analysis/ScalarEvolutionAliasAnalysis.h" 48 #include "llvm/Analysis/TargetLibraryInfo.h" 49 #include "llvm/Analysis/ValueTracking.h" 50 #include "llvm/IR/CFG.h" 51 #include "llvm/IR/Constants.h" 52 #include "llvm/IR/DataLayout.h" 53 #include "llvm/IR/DerivedTypes.h" 54 #include "llvm/IR/Dominators.h" 55 #include "llvm/IR/Instructions.h" 56 #include "llvm/IR/IntrinsicInst.h" 57 #include "llvm/IR/LLVMContext.h" 58 #include "llvm/IR/Metadata.h" 59 #include "llvm/IR/PredIteratorCache.h" 60 #include "llvm/Support/CommandLine.h" 61 #include "llvm/Support/Debug.h" 62 #include "llvm/Support/raw_ostream.h" 63 #include "llvm/Transforms/Scalar.h" 64 #include "llvm/Transforms/Scalar/LoopPassManager.h" 65 #include "llvm/Transforms/Utils/Local.h" 66 #include "llvm/Transforms/Utils/LoopUtils.h" 67 #include "llvm/Transforms/Utils/SSAUpdater.h" 68 #include <algorithm> 69 #include <utility> 70 using namespace llvm; 71 72 #define DEBUG_TYPE "licm" 73 74 STATISTIC(NumSunk, "Number of instructions sunk out of loop"); 75 STATISTIC(NumHoisted, "Number of instructions hoisted out of loop"); 76 STATISTIC(NumMovedLoads, "Number of load insts hoisted or sunk"); 77 STATISTIC(NumMovedCalls, "Number of call insts hoisted or sunk"); 78 STATISTIC(NumPromoted, "Number of memory locations promoted to registers"); 79 80 /// Memory promotion is enabled by default. 81 static cl::opt<bool> 82 DisablePromotion("disable-licm-promotion", cl::Hidden, cl::init(false), 83 cl::desc("Disable memory promotion in LICM pass")); 84 85 static cl::opt<uint32_t> MaxNumUsesTraversed( 86 "licm-max-num-uses-traversed", cl::Hidden, cl::init(8), 87 cl::desc("Max num uses visited for identifying load " 88 "invariance in loop using invariant start (default = 8)")); 89 90 static bool inSubLoop(BasicBlock *BB, Loop *CurLoop, LoopInfo *LI); 91 static bool isNotUsedInLoop(const Instruction &I, const Loop *CurLoop, 92 const LoopSafetyInfo *SafetyInfo); 93 static bool hoist(Instruction &I, const DominatorTree *DT, const Loop *CurLoop, 94 const LoopSafetyInfo *SafetyInfo, 95 OptimizationRemarkEmitter *ORE); 96 static bool sink(Instruction &I, const LoopInfo *LI, const DominatorTree *DT, 97 const Loop *CurLoop, AliasSetTracker *CurAST, 98 const LoopSafetyInfo *SafetyInfo, 99 OptimizationRemarkEmitter *ORE); 100 static bool isSafeToExecuteUnconditionally(Instruction &Inst, 101 const DominatorTree *DT, 102 const Loop *CurLoop, 103 const LoopSafetyInfo *SafetyInfo, 104 OptimizationRemarkEmitter *ORE, 105 const Instruction *CtxI = nullptr); 106 static bool pointerInvalidatedByLoop(Value *V, uint64_t Size, 107 const AAMDNodes &AAInfo, 108 AliasSetTracker *CurAST); 109 static Instruction * 110 CloneInstructionInExitBlock(Instruction &I, BasicBlock &ExitBlock, PHINode &PN, 111 const LoopInfo *LI, 112 const LoopSafetyInfo *SafetyInfo); 113 114 namespace { 115 struct LoopInvariantCodeMotion { 116 bool runOnLoop(Loop *L, AliasAnalysis *AA, LoopInfo *LI, DominatorTree *DT, 117 TargetLibraryInfo *TLI, ScalarEvolution *SE, 118 OptimizationRemarkEmitter *ORE, bool DeleteAST); 119 120 DenseMap<Loop *, AliasSetTracker *> &getLoopToAliasSetMap() { 121 return LoopToAliasSetMap; 122 } 123 124 private: 125 DenseMap<Loop *, AliasSetTracker *> LoopToAliasSetMap; 126 127 AliasSetTracker *collectAliasInfoForLoop(Loop *L, LoopInfo *LI, 128 AliasAnalysis *AA); 129 }; 130 131 struct LegacyLICMPass : public LoopPass { 132 static char ID; // Pass identification, replacement for typeid 133 LegacyLICMPass() : LoopPass(ID) { 134 initializeLegacyLICMPassPass(*PassRegistry::getPassRegistry()); 135 } 136 137 bool runOnLoop(Loop *L, LPPassManager &LPM) override { 138 if (skipLoop(L)) { 139 // If we have run LICM on a previous loop but now we are skipping 140 // (because we've hit the opt-bisect limit), we need to clear the 141 // loop alias information. 142 for (auto <AS : LICM.getLoopToAliasSetMap()) 143 delete LTAS.second; 144 LICM.getLoopToAliasSetMap().clear(); 145 return false; 146 } 147 148 auto *SE = getAnalysisIfAvailable<ScalarEvolutionWrapperPass>(); 149 // For the old PM, we can't use OptimizationRemarkEmitter as an analysis 150 // pass. Function analyses need to be preserved across loop transformations 151 // but ORE cannot be preserved (see comment before the pass definition). 152 OptimizationRemarkEmitter ORE(L->getHeader()->getParent()); 153 return LICM.runOnLoop(L, 154 &getAnalysis<AAResultsWrapperPass>().getAAResults(), 155 &getAnalysis<LoopInfoWrapperPass>().getLoopInfo(), 156 &getAnalysis<DominatorTreeWrapperPass>().getDomTree(), 157 &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(), 158 SE ? &SE->getSE() : nullptr, &ORE, false); 159 } 160 161 /// This transformation requires natural loop information & requires that 162 /// loop preheaders be inserted into the CFG... 163 /// 164 void getAnalysisUsage(AnalysisUsage &AU) const override { 165 AU.setPreservesCFG(); 166 AU.addRequired<TargetLibraryInfoWrapperPass>(); 167 getLoopAnalysisUsage(AU); 168 } 169 170 using llvm::Pass::doFinalization; 171 172 bool doFinalization() override { 173 assert(LICM.getLoopToAliasSetMap().empty() && 174 "Didn't free loop alias sets"); 175 return false; 176 } 177 178 private: 179 LoopInvariantCodeMotion LICM; 180 181 /// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info. 182 void cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, 183 Loop *L) override; 184 185 /// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias 186 /// set. 187 void deleteAnalysisValue(Value *V, Loop *L) override; 188 189 /// Simple Analysis hook. Delete loop L from alias set map. 190 void deleteAnalysisLoop(Loop *L) override; 191 }; 192 } // namespace 193 194 PreservedAnalyses LICMPass::run(Loop &L, LoopAnalysisManager &AM, 195 LoopStandardAnalysisResults &AR, LPMUpdater &) { 196 const auto &FAM = 197 AM.getResult<FunctionAnalysisManagerLoopProxy>(L, AR).getManager(); 198 Function *F = L.getHeader()->getParent(); 199 200 auto *ORE = FAM.getCachedResult<OptimizationRemarkEmitterAnalysis>(*F); 201 // FIXME: This should probably be optional rather than required. 202 if (!ORE) 203 report_fatal_error("LICM: OptimizationRemarkEmitterAnalysis not " 204 "cached at a higher level"); 205 206 LoopInvariantCodeMotion LICM; 207 if (!LICM.runOnLoop(&L, &AR.AA, &AR.LI, &AR.DT, &AR.TLI, &AR.SE, ORE, true)) 208 return PreservedAnalyses::all(); 209 210 auto PA = getLoopPassPreservedAnalyses(); 211 PA.preserveSet<CFGAnalyses>(); 212 return PA; 213 } 214 215 char LegacyLICMPass::ID = 0; 216 INITIALIZE_PASS_BEGIN(LegacyLICMPass, "licm", "Loop Invariant Code Motion", 217 false, false) 218 INITIALIZE_PASS_DEPENDENCY(LoopPass) 219 INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass) 220 INITIALIZE_PASS_END(LegacyLICMPass, "licm", "Loop Invariant Code Motion", false, 221 false) 222 223 Pass *llvm::createLICMPass() { return new LegacyLICMPass(); } 224 225 /// Hoist expressions out of the specified loop. Note, alias info for inner 226 /// loop is not preserved so it is not a good idea to run LICM multiple 227 /// times on one loop. 228 /// We should delete AST for inner loops in the new pass manager to avoid 229 /// memory leak. 230 /// 231 bool LoopInvariantCodeMotion::runOnLoop(Loop *L, AliasAnalysis *AA, 232 LoopInfo *LI, DominatorTree *DT, 233 TargetLibraryInfo *TLI, 234 ScalarEvolution *SE, 235 OptimizationRemarkEmitter *ORE, 236 bool DeleteAST) { 237 bool Changed = false; 238 239 assert(L->isLCSSAForm(*DT) && "Loop is not in LCSSA form."); 240 241 AliasSetTracker *CurAST = collectAliasInfoForLoop(L, LI, AA); 242 243 // Get the preheader block to move instructions into... 244 BasicBlock *Preheader = L->getLoopPreheader(); 245 246 // Compute loop safety information. 247 LoopSafetyInfo SafetyInfo; 248 computeLoopSafetyInfo(&SafetyInfo, L); 249 250 // We want to visit all of the instructions in this loop... that are not parts 251 // of our subloops (they have already had their invariants hoisted out of 252 // their loop, into this loop, so there is no need to process the BODIES of 253 // the subloops). 254 // 255 // Traverse the body of the loop in depth first order on the dominator tree so 256 // that we are guaranteed to see definitions before we see uses. This allows 257 // us to sink instructions in one pass, without iteration. After sinking 258 // instructions, we perform another pass to hoist them out of the loop. 259 // 260 if (L->hasDedicatedExits()) 261 Changed |= sinkRegion(DT->getNode(L->getHeader()), AA, LI, DT, TLI, L, 262 CurAST, &SafetyInfo, ORE); 263 if (Preheader) 264 Changed |= hoistRegion(DT->getNode(L->getHeader()), AA, LI, DT, TLI, L, 265 CurAST, &SafetyInfo, ORE); 266 267 // Now that all loop invariants have been removed from the loop, promote any 268 // memory references to scalars that we can. 269 // Don't sink stores from loops without dedicated block exits. Exits 270 // containing indirect branches are not transformed by loop simplify, 271 // make sure we catch that. An additional load may be generated in the 272 // preheader for SSA updater, so also avoid sinking when no preheader 273 // is available. 274 if (!DisablePromotion && Preheader && L->hasDedicatedExits()) { 275 // Figure out the loop exits and their insertion points 276 SmallVector<BasicBlock *, 8> ExitBlocks; 277 L->getUniqueExitBlocks(ExitBlocks); 278 279 // We can't insert into a catchswitch. 280 bool HasCatchSwitch = llvm::any_of(ExitBlocks, [](BasicBlock *Exit) { 281 return isa<CatchSwitchInst>(Exit->getTerminator()); 282 }); 283 284 if (!HasCatchSwitch) { 285 SmallVector<Instruction *, 8> InsertPts; 286 InsertPts.reserve(ExitBlocks.size()); 287 for (BasicBlock *ExitBlock : ExitBlocks) 288 InsertPts.push_back(&*ExitBlock->getFirstInsertionPt()); 289 290 PredIteratorCache PIC; 291 292 bool Promoted = false; 293 294 // Loop over all of the alias sets in the tracker object. 295 for (AliasSet &AS : *CurAST) { 296 // We can promote this alias set if it has a store, if it is a "Must" 297 // alias set, if the pointer is loop invariant, and if we are not 298 // eliminating any volatile loads or stores. 299 if (AS.isForwardingAliasSet() || !AS.isMod() || !AS.isMustAlias() || 300 AS.isVolatile() || !L->isLoopInvariant(AS.begin()->getValue())) 301 continue; 302 303 assert( 304 !AS.empty() && 305 "Must alias set should have at least one pointer element in it!"); 306 307 SmallSetVector<Value *, 8> PointerMustAliases; 308 for (const auto &ASI : AS) 309 PointerMustAliases.insert(ASI.getValue()); 310 311 Promoted |= promoteLoopAccessesToScalars(PointerMustAliases, ExitBlocks, 312 InsertPts, PIC, LI, DT, TLI, L, 313 CurAST, &SafetyInfo, ORE); 314 } 315 316 // Once we have promoted values across the loop body we have to 317 // recursively reform LCSSA as any nested loop may now have values defined 318 // within the loop used in the outer loop. 319 // FIXME: This is really heavy handed. It would be a bit better to use an 320 // SSAUpdater strategy during promotion that was LCSSA aware and reformed 321 // it as it went. 322 if (Promoted) 323 formLCSSARecursively(*L, *DT, LI, SE); 324 325 Changed |= Promoted; 326 } 327 } 328 329 // Check that neither this loop nor its parent have had LCSSA broken. LICM is 330 // specifically moving instructions across the loop boundary and so it is 331 // especially in need of sanity checking here. 332 assert(L->isLCSSAForm(*DT) && "Loop not left in LCSSA form after LICM!"); 333 assert((!L->getParentLoop() || L->getParentLoop()->isLCSSAForm(*DT)) && 334 "Parent loop not left in LCSSA form after LICM!"); 335 336 // If this loop is nested inside of another one, save the alias information 337 // for when we process the outer loop. 338 if (L->getParentLoop() && !DeleteAST) 339 LoopToAliasSetMap[L] = CurAST; 340 else 341 delete CurAST; 342 343 if (Changed && SE) 344 SE->forgetLoopDispositions(L); 345 return Changed; 346 } 347 348 /// Walk the specified region of the CFG (defined by all blocks dominated by 349 /// the specified block, and that are in the current loop) in reverse depth 350 /// first order w.r.t the DominatorTree. This allows us to visit uses before 351 /// definitions, allowing us to sink a loop body in one pass without iteration. 352 /// 353 bool llvm::sinkRegion(DomTreeNode *N, AliasAnalysis *AA, LoopInfo *LI, 354 DominatorTree *DT, TargetLibraryInfo *TLI, Loop *CurLoop, 355 AliasSetTracker *CurAST, LoopSafetyInfo *SafetyInfo, 356 OptimizationRemarkEmitter *ORE) { 357 358 // Verify inputs. 359 assert(N != nullptr && AA != nullptr && LI != nullptr && DT != nullptr && 360 CurLoop != nullptr && CurAST != nullptr && SafetyInfo != nullptr && 361 "Unexpected input to sinkRegion"); 362 363 // We want to visit children before parents. We will enque all the parents 364 // before their children in the worklist and process the worklist in reverse 365 // order. 366 SmallVector<DomTreeNode *, 16> Worklist = collectChildrenInLoop(N, CurLoop); 367 368 bool Changed = false; 369 for (DomTreeNode *DTN : reverse(Worklist)) { 370 BasicBlock *BB = DTN->getBlock(); 371 // Only need to process the contents of this block if it is not part of a 372 // subloop (which would already have been processed). 373 if (inSubLoop(BB, CurLoop, LI)) 374 continue; 375 376 for (BasicBlock::iterator II = BB->end(); II != BB->begin();) { 377 Instruction &I = *--II; 378 379 // If the instruction is dead, we would try to sink it because it isn't 380 // used in the loop, instead, just delete it. 381 if (isInstructionTriviallyDead(&I, TLI)) { 382 DEBUG(dbgs() << "LICM deleting dead inst: " << I << '\n'); 383 ++II; 384 CurAST->deleteValue(&I); 385 I.eraseFromParent(); 386 Changed = true; 387 continue; 388 } 389 390 // Check to see if we can sink this instruction to the exit blocks 391 // of the loop. We can do this if the all users of the instruction are 392 // outside of the loop. In this case, it doesn't even matter if the 393 // operands of the instruction are loop invariant. 394 // 395 if (isNotUsedInLoop(I, CurLoop, SafetyInfo) && 396 canSinkOrHoistInst(I, AA, DT, CurLoop, CurAST, SafetyInfo, ORE)) { 397 ++II; 398 Changed |= sink(I, LI, DT, CurLoop, CurAST, SafetyInfo, ORE); 399 } 400 } 401 } 402 return Changed; 403 } 404 405 /// Walk the specified region of the CFG (defined by all blocks dominated by 406 /// the specified block, and that are in the current loop) in depth first 407 /// order w.r.t the DominatorTree. This allows us to visit definitions before 408 /// uses, allowing us to hoist a loop body in one pass without iteration. 409 /// 410 bool llvm::hoistRegion(DomTreeNode *N, AliasAnalysis *AA, LoopInfo *LI, 411 DominatorTree *DT, TargetLibraryInfo *TLI, Loop *CurLoop, 412 AliasSetTracker *CurAST, LoopSafetyInfo *SafetyInfo, 413 OptimizationRemarkEmitter *ORE) { 414 // Verify inputs. 415 assert(N != nullptr && AA != nullptr && LI != nullptr && DT != nullptr && 416 CurLoop != nullptr && CurAST != nullptr && SafetyInfo != nullptr && 417 "Unexpected input to hoistRegion"); 418 419 // We want to visit parents before children. We will enque all the parents 420 // before their children in the worklist and process the worklist in order. 421 SmallVector<DomTreeNode *, 16> Worklist = collectChildrenInLoop(N, CurLoop); 422 423 bool Changed = false; 424 for (DomTreeNode *DTN : Worklist) { 425 BasicBlock *BB = DTN->getBlock(); 426 // Only need to process the contents of this block if it is not part of a 427 // subloop (which would already have been processed). 428 if (!inSubLoop(BB, CurLoop, LI)) 429 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E;) { 430 Instruction &I = *II++; 431 // Try constant folding this instruction. If all the operands are 432 // constants, it is technically hoistable, but it would be better to 433 // just fold it. 434 if (Constant *C = ConstantFoldInstruction( 435 &I, I.getModule()->getDataLayout(), TLI)) { 436 DEBUG(dbgs() << "LICM folding inst: " << I << " --> " << *C << '\n'); 437 CurAST->copyValue(&I, C); 438 I.replaceAllUsesWith(C); 439 if (isInstructionTriviallyDead(&I, TLI)) { 440 CurAST->deleteValue(&I); 441 I.eraseFromParent(); 442 } 443 Changed = true; 444 continue; 445 } 446 447 // Attempt to remove floating point division out of the loop by 448 // converting it to a reciprocal multiplication. 449 if (I.getOpcode() == Instruction::FDiv && 450 CurLoop->isLoopInvariant(I.getOperand(1)) && 451 I.hasAllowReciprocal()) { 452 auto Divisor = I.getOperand(1); 453 auto One = llvm::ConstantFP::get(Divisor->getType(), 1.0); 454 auto ReciprocalDivisor = BinaryOperator::CreateFDiv(One, Divisor); 455 ReciprocalDivisor->setFastMathFlags(I.getFastMathFlags()); 456 ReciprocalDivisor->insertBefore(&I); 457 458 auto Product = 459 BinaryOperator::CreateFMul(I.getOperand(0), ReciprocalDivisor); 460 Product->setFastMathFlags(I.getFastMathFlags()); 461 Product->insertAfter(&I); 462 I.replaceAllUsesWith(Product); 463 I.eraseFromParent(); 464 465 hoist(*ReciprocalDivisor, DT, CurLoop, SafetyInfo, ORE); 466 Changed = true; 467 continue; 468 } 469 470 // Try hoisting the instruction out to the preheader. We can only do 471 // this if all of the operands of the instruction are loop invariant and 472 // if it is safe to hoist the instruction. 473 // 474 if (CurLoop->hasLoopInvariantOperands(&I) && 475 canSinkOrHoistInst(I, AA, DT, CurLoop, CurAST, SafetyInfo, ORE) && 476 isSafeToExecuteUnconditionally( 477 I, DT, CurLoop, SafetyInfo, ORE, 478 CurLoop->getLoopPreheader()->getTerminator())) 479 Changed |= hoist(I, DT, CurLoop, SafetyInfo, ORE); 480 } 481 } 482 483 return Changed; 484 } 485 486 /// Computes loop safety information, checks loop body & header 487 /// for the possibility of may throw exception. 488 /// 489 void llvm::computeLoopSafetyInfo(LoopSafetyInfo *SafetyInfo, Loop *CurLoop) { 490 assert(CurLoop != nullptr && "CurLoop cant be null"); 491 BasicBlock *Header = CurLoop->getHeader(); 492 // Setting default safety values. 493 SafetyInfo->MayThrow = false; 494 SafetyInfo->HeaderMayThrow = false; 495 // Iterate over header and compute safety info. 496 for (BasicBlock::iterator I = Header->begin(), E = Header->end(); 497 (I != E) && !SafetyInfo->HeaderMayThrow; ++I) 498 SafetyInfo->HeaderMayThrow |= 499 !isGuaranteedToTransferExecutionToSuccessor(&*I); 500 501 SafetyInfo->MayThrow = SafetyInfo->HeaderMayThrow; 502 // Iterate over loop instructions and compute safety info. 503 // Skip header as it has been computed and stored in HeaderMayThrow. 504 // The first block in loopinfo.Blocks is guaranteed to be the header. 505 assert(Header == *CurLoop->getBlocks().begin() && 506 "First block must be header"); 507 for (Loop::block_iterator BB = std::next(CurLoop->block_begin()), 508 BBE = CurLoop->block_end(); 509 (BB != BBE) && !SafetyInfo->MayThrow; ++BB) 510 for (BasicBlock::iterator I = (*BB)->begin(), E = (*BB)->end(); 511 (I != E) && !SafetyInfo->MayThrow; ++I) 512 SafetyInfo->MayThrow |= !isGuaranteedToTransferExecutionToSuccessor(&*I); 513 514 // Compute funclet colors if we might sink/hoist in a function with a funclet 515 // personality routine. 516 Function *Fn = CurLoop->getHeader()->getParent(); 517 if (Fn->hasPersonalityFn()) 518 if (Constant *PersonalityFn = Fn->getPersonalityFn()) 519 if (isFuncletEHPersonality(classifyEHPersonality(PersonalityFn))) 520 SafetyInfo->BlockColors = colorEHFunclets(*Fn); 521 } 522 523 // Return true if LI is invariant within scope of the loop. LI is invariant if 524 // CurLoop is dominated by an invariant.start representing the same memory 525 // location and size as the memory location LI loads from, and also the 526 // invariant.start has no uses. 527 static bool isLoadInvariantInLoop(LoadInst *LI, DominatorTree *DT, 528 Loop *CurLoop) { 529 Value *Addr = LI->getOperand(0); 530 const DataLayout &DL = LI->getModule()->getDataLayout(); 531 const uint32_t LocSizeInBits = DL.getTypeSizeInBits( 532 cast<PointerType>(Addr->getType())->getElementType()); 533 534 // if the type is i8 addrspace(x)*, we know this is the type of 535 // llvm.invariant.start operand 536 auto *PtrInt8Ty = PointerType::get(Type::getInt8Ty(LI->getContext()), 537 LI->getPointerAddressSpace()); 538 unsigned BitcastsVisited = 0; 539 // Look through bitcasts until we reach the i8* type (this is invariant.start 540 // operand type). 541 while (Addr->getType() != PtrInt8Ty) { 542 auto *BC = dyn_cast<BitCastInst>(Addr); 543 // Avoid traversing high number of bitcast uses. 544 if (++BitcastsVisited > MaxNumUsesTraversed || !BC) 545 return false; 546 Addr = BC->getOperand(0); 547 } 548 549 unsigned UsesVisited = 0; 550 // Traverse all uses of the load operand value, to see if invariant.start is 551 // one of the uses, and whether it dominates the load instruction. 552 for (auto *U : Addr->users()) { 553 // Avoid traversing for Load operand with high number of users. 554 if (++UsesVisited > MaxNumUsesTraversed) 555 return false; 556 IntrinsicInst *II = dyn_cast<IntrinsicInst>(U); 557 // If there are escaping uses of invariant.start instruction, the load maybe 558 // non-invariant. 559 if (!II || II->getIntrinsicID() != Intrinsic::invariant_start || 560 !II->use_empty()) 561 continue; 562 unsigned InvariantSizeInBits = 563 cast<ConstantInt>(II->getArgOperand(0))->getSExtValue() * 8; 564 // Confirm the invariant.start location size contains the load operand size 565 // in bits. Also, the invariant.start should dominate the load, and we 566 // should not hoist the load out of a loop that contains this dominating 567 // invariant.start. 568 if (LocSizeInBits <= InvariantSizeInBits && 569 DT->properlyDominates(II->getParent(), CurLoop->getHeader())) 570 return true; 571 } 572 573 return false; 574 } 575 576 bool llvm::canSinkOrHoistInst(Instruction &I, AAResults *AA, DominatorTree *DT, 577 Loop *CurLoop, AliasSetTracker *CurAST, 578 LoopSafetyInfo *SafetyInfo, 579 OptimizationRemarkEmitter *ORE) { 580 // Loads have extra constraints we have to verify before we can hoist them. 581 if (LoadInst *LI = dyn_cast<LoadInst>(&I)) { 582 if (!LI->isUnordered()) 583 return false; // Don't hoist volatile/atomic loads! 584 585 // Loads from constant memory are always safe to move, even if they end up 586 // in the same alias set as something that ends up being modified. 587 if (AA->pointsToConstantMemory(LI->getOperand(0))) 588 return true; 589 if (LI->getMetadata(LLVMContext::MD_invariant_load)) 590 return true; 591 592 // This checks for an invariant.start dominating the load. 593 if (isLoadInvariantInLoop(LI, DT, CurLoop)) 594 return true; 595 596 // Don't hoist loads which have may-aliased stores in loop. 597 uint64_t Size = 0; 598 if (LI->getType()->isSized()) 599 Size = I.getModule()->getDataLayout().getTypeStoreSize(LI->getType()); 600 601 AAMDNodes AAInfo; 602 LI->getAAMetadata(AAInfo); 603 604 bool Invalidated = 605 pointerInvalidatedByLoop(LI->getOperand(0), Size, AAInfo, CurAST); 606 // Check loop-invariant address because this may also be a sinkable load 607 // whose address is not necessarily loop-invariant. 608 if (ORE && Invalidated && CurLoop->isLoopInvariant(LI->getPointerOperand())) 609 ORE->emit(OptimizationRemarkMissed( 610 DEBUG_TYPE, "LoadWithLoopInvariantAddressInvalidated", LI) 611 << "failed to move load with loop-invariant address " 612 "because the loop may invalidate its value"); 613 614 return !Invalidated; 615 } else if (CallInst *CI = dyn_cast<CallInst>(&I)) { 616 // Don't sink or hoist dbg info; it's legal, but not useful. 617 if (isa<DbgInfoIntrinsic>(I)) 618 return false; 619 620 // Don't sink calls which can throw. 621 if (CI->mayThrow()) 622 return false; 623 624 // Handle simple cases by querying alias analysis. 625 FunctionModRefBehavior Behavior = AA->getModRefBehavior(CI); 626 if (Behavior == FMRB_DoesNotAccessMemory) 627 return true; 628 if (AliasAnalysis::onlyReadsMemory(Behavior)) { 629 // A readonly argmemonly function only reads from memory pointed to by 630 // it's arguments with arbitrary offsets. If we can prove there are no 631 // writes to this memory in the loop, we can hoist or sink. 632 if (AliasAnalysis::onlyAccessesArgPointees(Behavior)) { 633 for (Value *Op : CI->arg_operands()) 634 if (Op->getType()->isPointerTy() && 635 pointerInvalidatedByLoop(Op, MemoryLocation::UnknownSize, 636 AAMDNodes(), CurAST)) 637 return false; 638 return true; 639 } 640 // If this call only reads from memory and there are no writes to memory 641 // in the loop, we can hoist or sink the call as appropriate. 642 bool FoundMod = false; 643 for (AliasSet &AS : *CurAST) { 644 if (!AS.isForwardingAliasSet() && AS.isMod()) { 645 FoundMod = true; 646 break; 647 } 648 } 649 if (!FoundMod) 650 return true; 651 } 652 653 // FIXME: This should use mod/ref information to see if we can hoist or 654 // sink the call. 655 656 return false; 657 } 658 659 // Only these instructions are hoistable/sinkable. 660 if (!isa<BinaryOperator>(I) && !isa<CastInst>(I) && !isa<SelectInst>(I) && 661 !isa<GetElementPtrInst>(I) && !isa<CmpInst>(I) && 662 !isa<InsertElementInst>(I) && !isa<ExtractElementInst>(I) && 663 !isa<ShuffleVectorInst>(I) && !isa<ExtractValueInst>(I) && 664 !isa<InsertValueInst>(I)) 665 return false; 666 667 // SafetyInfo is nullptr if we are checking for sinking from preheader to 668 // loop body. It will be always safe as there is no speculative execution. 669 if (!SafetyInfo) 670 return true; 671 672 // TODO: Plumb the context instruction through to make hoisting and sinking 673 // more powerful. Hoisting of loads already works due to the special casing 674 // above. 675 return isSafeToExecuteUnconditionally(I, DT, CurLoop, SafetyInfo, nullptr); 676 } 677 678 /// Returns true if a PHINode is a trivially replaceable with an 679 /// Instruction. 680 /// This is true when all incoming values are that instruction. 681 /// This pattern occurs most often with LCSSA PHI nodes. 682 /// 683 static bool isTriviallyReplacablePHI(const PHINode &PN, const Instruction &I) { 684 for (const Value *IncValue : PN.incoming_values()) 685 if (IncValue != &I) 686 return false; 687 688 return true; 689 } 690 691 /// Return true if the only users of this instruction are outside of 692 /// the loop. If this is true, we can sink the instruction to the exit 693 /// blocks of the loop. 694 /// 695 static bool isNotUsedInLoop(const Instruction &I, const Loop *CurLoop, 696 const LoopSafetyInfo *SafetyInfo) { 697 const auto &BlockColors = SafetyInfo->BlockColors; 698 for (const User *U : I.users()) { 699 const Instruction *UI = cast<Instruction>(U); 700 if (const PHINode *PN = dyn_cast<PHINode>(UI)) { 701 const BasicBlock *BB = PN->getParent(); 702 // We cannot sink uses in catchswitches. 703 if (isa<CatchSwitchInst>(BB->getTerminator())) 704 return false; 705 706 // We need to sink a callsite to a unique funclet. Avoid sinking if the 707 // phi use is too muddled. 708 if (isa<CallInst>(I)) 709 if (!BlockColors.empty() && 710 BlockColors.find(const_cast<BasicBlock *>(BB))->second.size() != 1) 711 return false; 712 713 // A PHI node where all of the incoming values are this instruction are 714 // special -- they can just be RAUW'ed with the instruction and thus 715 // don't require a use in the predecessor. This is a particular important 716 // special case because it is the pattern found in LCSSA form. 717 if (isTriviallyReplacablePHI(*PN, I)) { 718 if (CurLoop->contains(PN)) 719 return false; 720 else 721 continue; 722 } 723 724 // Otherwise, PHI node uses occur in predecessor blocks if the incoming 725 // values. Check for such a use being inside the loop. 726 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) 727 if (PN->getIncomingValue(i) == &I) 728 if (CurLoop->contains(PN->getIncomingBlock(i))) 729 return false; 730 731 continue; 732 } 733 734 if (CurLoop->contains(UI)) 735 return false; 736 } 737 return true; 738 } 739 740 static Instruction * 741 CloneInstructionInExitBlock(Instruction &I, BasicBlock &ExitBlock, PHINode &PN, 742 const LoopInfo *LI, 743 const LoopSafetyInfo *SafetyInfo) { 744 Instruction *New; 745 if (auto *CI = dyn_cast<CallInst>(&I)) { 746 const auto &BlockColors = SafetyInfo->BlockColors; 747 748 // Sinking call-sites need to be handled differently from other 749 // instructions. The cloned call-site needs a funclet bundle operand 750 // appropriate for it's location in the CFG. 751 SmallVector<OperandBundleDef, 1> OpBundles; 752 for (unsigned BundleIdx = 0, BundleEnd = CI->getNumOperandBundles(); 753 BundleIdx != BundleEnd; ++BundleIdx) { 754 OperandBundleUse Bundle = CI->getOperandBundleAt(BundleIdx); 755 if (Bundle.getTagID() == LLVMContext::OB_funclet) 756 continue; 757 758 OpBundles.emplace_back(Bundle); 759 } 760 761 if (!BlockColors.empty()) { 762 const ColorVector &CV = BlockColors.find(&ExitBlock)->second; 763 assert(CV.size() == 1 && "non-unique color for exit block!"); 764 BasicBlock *BBColor = CV.front(); 765 Instruction *EHPad = BBColor->getFirstNonPHI(); 766 if (EHPad->isEHPad()) 767 OpBundles.emplace_back("funclet", EHPad); 768 } 769 770 New = CallInst::Create(CI, OpBundles); 771 } else { 772 New = I.clone(); 773 } 774 775 ExitBlock.getInstList().insert(ExitBlock.getFirstInsertionPt(), New); 776 if (!I.getName().empty()) 777 New->setName(I.getName() + ".le"); 778 779 // Build LCSSA PHI nodes for any in-loop operands. Note that this is 780 // particularly cheap because we can rip off the PHI node that we're 781 // replacing for the number and blocks of the predecessors. 782 // OPT: If this shows up in a profile, we can instead finish sinking all 783 // invariant instructions, and then walk their operands to re-establish 784 // LCSSA. That will eliminate creating PHI nodes just to nuke them when 785 // sinking bottom-up. 786 for (User::op_iterator OI = New->op_begin(), OE = New->op_end(); OI != OE; 787 ++OI) 788 if (Instruction *OInst = dyn_cast<Instruction>(*OI)) 789 if (Loop *OLoop = LI->getLoopFor(OInst->getParent())) 790 if (!OLoop->contains(&PN)) { 791 PHINode *OpPN = 792 PHINode::Create(OInst->getType(), PN.getNumIncomingValues(), 793 OInst->getName() + ".lcssa", &ExitBlock.front()); 794 for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i) 795 OpPN->addIncoming(OInst, PN.getIncomingBlock(i)); 796 *OI = OpPN; 797 } 798 return New; 799 } 800 801 /// When an instruction is found to only be used outside of the loop, this 802 /// function moves it to the exit blocks and patches up SSA form as needed. 803 /// This method is guaranteed to remove the original instruction from its 804 /// position, and may either delete it or move it to outside of the loop. 805 /// 806 static bool sink(Instruction &I, const LoopInfo *LI, const DominatorTree *DT, 807 const Loop *CurLoop, AliasSetTracker *CurAST, 808 const LoopSafetyInfo *SafetyInfo, 809 OptimizationRemarkEmitter *ORE) { 810 DEBUG(dbgs() << "LICM sinking instruction: " << I << "\n"); 811 ORE->emit(OptimizationRemark(DEBUG_TYPE, "InstSunk", &I) 812 << "sinking " << ore::NV("Inst", &I)); 813 bool Changed = false; 814 if (isa<LoadInst>(I)) 815 ++NumMovedLoads; 816 else if (isa<CallInst>(I)) 817 ++NumMovedCalls; 818 ++NumSunk; 819 Changed = true; 820 821 #ifndef NDEBUG 822 SmallVector<BasicBlock *, 32> ExitBlocks; 823 CurLoop->getUniqueExitBlocks(ExitBlocks); 824 SmallPtrSet<BasicBlock *, 32> ExitBlockSet(ExitBlocks.begin(), 825 ExitBlocks.end()); 826 #endif 827 828 // Clones of this instruction. Don't create more than one per exit block! 829 SmallDenseMap<BasicBlock *, Instruction *, 32> SunkCopies; 830 831 // If this instruction is only used outside of the loop, then all users are 832 // PHI nodes in exit blocks due to LCSSA form. Just RAUW them with clones of 833 // the instruction. 834 while (!I.use_empty()) { 835 Value::user_iterator UI = I.user_begin(); 836 auto *User = cast<Instruction>(*UI); 837 if (!DT->isReachableFromEntry(User->getParent())) { 838 User->replaceUsesOfWith(&I, UndefValue::get(I.getType())); 839 continue; 840 } 841 // The user must be a PHI node. 842 PHINode *PN = cast<PHINode>(User); 843 844 // Surprisingly, instructions can be used outside of loops without any 845 // exits. This can only happen in PHI nodes if the incoming block is 846 // unreachable. 847 Use &U = UI.getUse(); 848 BasicBlock *BB = PN->getIncomingBlock(U); 849 if (!DT->isReachableFromEntry(BB)) { 850 U = UndefValue::get(I.getType()); 851 continue; 852 } 853 854 BasicBlock *ExitBlock = PN->getParent(); 855 assert(ExitBlockSet.count(ExitBlock) && 856 "The LCSSA PHI is not in an exit block!"); 857 858 Instruction *New; 859 auto It = SunkCopies.find(ExitBlock); 860 if (It != SunkCopies.end()) 861 New = It->second; 862 else 863 New = SunkCopies[ExitBlock] = 864 CloneInstructionInExitBlock(I, *ExitBlock, *PN, LI, SafetyInfo); 865 866 PN->replaceAllUsesWith(New); 867 PN->eraseFromParent(); 868 } 869 870 CurAST->deleteValue(&I); 871 I.eraseFromParent(); 872 return Changed; 873 } 874 875 /// When an instruction is found to only use loop invariant operands that 876 /// is safe to hoist, this instruction is called to do the dirty work. 877 /// 878 static bool hoist(Instruction &I, const DominatorTree *DT, const Loop *CurLoop, 879 const LoopSafetyInfo *SafetyInfo, 880 OptimizationRemarkEmitter *ORE) { 881 auto *Preheader = CurLoop->getLoopPreheader(); 882 DEBUG(dbgs() << "LICM hoisting to " << Preheader->getName() << ": " << I 883 << "\n"); 884 ORE->emit(OptimizationRemark(DEBUG_TYPE, "Hoisted", &I) 885 << "hoisting " << ore::NV("Inst", &I)); 886 887 // Metadata can be dependent on conditions we are hoisting above. 888 // Conservatively strip all metadata on the instruction unless we were 889 // guaranteed to execute I if we entered the loop, in which case the metadata 890 // is valid in the loop preheader. 891 if (I.hasMetadataOtherThanDebugLoc() && 892 // The check on hasMetadataOtherThanDebugLoc is to prevent us from burning 893 // time in isGuaranteedToExecute if we don't actually have anything to 894 // drop. It is a compile time optimization, not required for correctness. 895 !isGuaranteedToExecute(I, DT, CurLoop, SafetyInfo)) 896 I.dropUnknownNonDebugMetadata(); 897 898 // Move the new node to the Preheader, before its terminator. 899 I.moveBefore(Preheader->getTerminator()); 900 901 // Do not retain debug locations when we are moving instructions to different 902 // basic blocks, because we want to avoid jumpy line tables. Calls, however, 903 // need to retain their debug locs because they may be inlined. 904 // FIXME: How do we retain source locations without causing poor debugging 905 // behavior? 906 if (!isa<CallInst>(I)) 907 I.setDebugLoc(DebugLoc()); 908 909 if (isa<LoadInst>(I)) 910 ++NumMovedLoads; 911 else if (isa<CallInst>(I)) 912 ++NumMovedCalls; 913 ++NumHoisted; 914 return true; 915 } 916 917 /// Only sink or hoist an instruction if it is not a trapping instruction, 918 /// or if the instruction is known not to trap when moved to the preheader. 919 /// or if it is a trapping instruction and is guaranteed to execute. 920 static bool isSafeToExecuteUnconditionally(Instruction &Inst, 921 const DominatorTree *DT, 922 const Loop *CurLoop, 923 const LoopSafetyInfo *SafetyInfo, 924 OptimizationRemarkEmitter *ORE, 925 const Instruction *CtxI) { 926 if (isSafeToSpeculativelyExecute(&Inst, CtxI, DT)) 927 return true; 928 929 bool GuaranteedToExecute = 930 isGuaranteedToExecute(Inst, DT, CurLoop, SafetyInfo); 931 932 if (!GuaranteedToExecute) { 933 auto *LI = dyn_cast<LoadInst>(&Inst); 934 if (LI && CurLoop->isLoopInvariant(LI->getPointerOperand())) 935 ORE->emit(OptimizationRemarkMissed( 936 DEBUG_TYPE, "LoadWithLoopInvariantAddressCondExecuted", LI) 937 << "failed to hoist load with loop-invariant address " 938 "because load is conditionally executed"); 939 } 940 941 return GuaranteedToExecute; 942 } 943 944 namespace { 945 class LoopPromoter : public LoadAndStorePromoter { 946 Value *SomePtr; // Designated pointer to store to. 947 const SmallSetVector<Value *, 8> &PointerMustAliases; 948 SmallVectorImpl<BasicBlock *> &LoopExitBlocks; 949 SmallVectorImpl<Instruction *> &LoopInsertPts; 950 PredIteratorCache &PredCache; 951 AliasSetTracker &AST; 952 LoopInfo &LI; 953 DebugLoc DL; 954 int Alignment; 955 bool UnorderedAtomic; 956 AAMDNodes AATags; 957 958 Value *maybeInsertLCSSAPHI(Value *V, BasicBlock *BB) const { 959 if (Instruction *I = dyn_cast<Instruction>(V)) 960 if (Loop *L = LI.getLoopFor(I->getParent())) 961 if (!L->contains(BB)) { 962 // We need to create an LCSSA PHI node for the incoming value and 963 // store that. 964 PHINode *PN = PHINode::Create(I->getType(), PredCache.size(BB), 965 I->getName() + ".lcssa", &BB->front()); 966 for (BasicBlock *Pred : PredCache.get(BB)) 967 PN->addIncoming(I, Pred); 968 return PN; 969 } 970 return V; 971 } 972 973 public: 974 LoopPromoter(Value *SP, ArrayRef<const Instruction *> Insts, SSAUpdater &S, 975 const SmallSetVector<Value *, 8> &PMA, 976 SmallVectorImpl<BasicBlock *> &LEB, 977 SmallVectorImpl<Instruction *> &LIP, PredIteratorCache &PIC, 978 AliasSetTracker &ast, LoopInfo &li, DebugLoc dl, int alignment, 979 bool UnorderedAtomic, const AAMDNodes &AATags) 980 : LoadAndStorePromoter(Insts, S), SomePtr(SP), PointerMustAliases(PMA), 981 LoopExitBlocks(LEB), LoopInsertPts(LIP), PredCache(PIC), AST(ast), 982 LI(li), DL(std::move(dl)), Alignment(alignment), 983 UnorderedAtomic(UnorderedAtomic), AATags(AATags) {} 984 985 bool isInstInList(Instruction *I, 986 const SmallVectorImpl<Instruction *> &) const override { 987 Value *Ptr; 988 if (LoadInst *LI = dyn_cast<LoadInst>(I)) 989 Ptr = LI->getOperand(0); 990 else 991 Ptr = cast<StoreInst>(I)->getPointerOperand(); 992 return PointerMustAliases.count(Ptr); 993 } 994 995 void doExtraRewritesBeforeFinalDeletion() const override { 996 // Insert stores after in the loop exit blocks. Each exit block gets a 997 // store of the live-out values that feed them. Since we've already told 998 // the SSA updater about the defs in the loop and the preheader 999 // definition, it is all set and we can start using it. 1000 for (unsigned i = 0, e = LoopExitBlocks.size(); i != e; ++i) { 1001 BasicBlock *ExitBlock = LoopExitBlocks[i]; 1002 Value *LiveInValue = SSA.GetValueInMiddleOfBlock(ExitBlock); 1003 LiveInValue = maybeInsertLCSSAPHI(LiveInValue, ExitBlock); 1004 Value *Ptr = maybeInsertLCSSAPHI(SomePtr, ExitBlock); 1005 Instruction *InsertPos = LoopInsertPts[i]; 1006 StoreInst *NewSI = new StoreInst(LiveInValue, Ptr, InsertPos); 1007 if (UnorderedAtomic) 1008 NewSI->setOrdering(AtomicOrdering::Unordered); 1009 NewSI->setAlignment(Alignment); 1010 NewSI->setDebugLoc(DL); 1011 if (AATags) 1012 NewSI->setAAMetadata(AATags); 1013 } 1014 } 1015 1016 void replaceLoadWithValue(LoadInst *LI, Value *V) const override { 1017 // Update alias analysis. 1018 AST.copyValue(LI, V); 1019 } 1020 void instructionDeleted(Instruction *I) const override { AST.deleteValue(I); } 1021 }; 1022 } // namespace 1023 1024 /// Try to promote memory values to scalars by sinking stores out of the 1025 /// loop and moving loads to before the loop. We do this by looping over 1026 /// the stores in the loop, looking for stores to Must pointers which are 1027 /// loop invariant. 1028 /// 1029 bool llvm::promoteLoopAccessesToScalars( 1030 const SmallSetVector<Value *, 8> &PointerMustAliases, 1031 SmallVectorImpl<BasicBlock *> &ExitBlocks, 1032 SmallVectorImpl<Instruction *> &InsertPts, PredIteratorCache &PIC, 1033 LoopInfo *LI, DominatorTree *DT, const TargetLibraryInfo *TLI, 1034 Loop *CurLoop, AliasSetTracker *CurAST, LoopSafetyInfo *SafetyInfo, 1035 OptimizationRemarkEmitter *ORE) { 1036 // Verify inputs. 1037 assert(LI != nullptr && DT != nullptr && CurLoop != nullptr && 1038 CurAST != nullptr && SafetyInfo != nullptr && 1039 "Unexpected Input to promoteLoopAccessesToScalars"); 1040 1041 Value *SomePtr = *PointerMustAliases.begin(); 1042 BasicBlock *Preheader = CurLoop->getLoopPreheader(); 1043 1044 // It isn't safe to promote a load/store from the loop if the load/store is 1045 // conditional. For example, turning: 1046 // 1047 // for () { if (c) *P += 1; } 1048 // 1049 // into: 1050 // 1051 // tmp = *P; for () { if (c) tmp +=1; } *P = tmp; 1052 // 1053 // is not safe, because *P may only be valid to access if 'c' is true. 1054 // 1055 // The safety property divides into two parts: 1056 // p1) The memory may not be dereferenceable on entry to the loop. In this 1057 // case, we can't insert the required load in the preheader. 1058 // p2) The memory model does not allow us to insert a store along any dynamic 1059 // path which did not originally have one. 1060 // 1061 // If at least one store is guaranteed to execute, both properties are 1062 // satisfied, and promotion is legal. 1063 // 1064 // This, however, is not a necessary condition. Even if no store/load is 1065 // guaranteed to execute, we can still establish these properties. 1066 // We can establish (p1) by proving that hoisting the load into the preheader 1067 // is safe (i.e. proving dereferenceability on all paths through the loop). We 1068 // can use any access within the alias set to prove dereferenceability, 1069 // since they're all must alias. 1070 // 1071 // There are two ways establish (p2): 1072 // a) Prove the location is thread-local. In this case the memory model 1073 // requirement does not apply, and stores are safe to insert. 1074 // b) Prove a store dominates every exit block. In this case, if an exit 1075 // blocks is reached, the original dynamic path would have taken us through 1076 // the store, so inserting a store into the exit block is safe. Note that this 1077 // is different from the store being guaranteed to execute. For instance, 1078 // if an exception is thrown on the first iteration of the loop, the original 1079 // store is never executed, but the exit blocks are not executed either. 1080 1081 bool DereferenceableInPH = false; 1082 bool SafeToInsertStore = false; 1083 1084 SmallVector<Instruction *, 64> LoopUses; 1085 1086 // We start with an alignment of one and try to find instructions that allow 1087 // us to prove better alignment. 1088 unsigned Alignment = 1; 1089 // Keep track of which types of access we see 1090 bool SawUnorderedAtomic = false; 1091 bool SawNotAtomic = false; 1092 AAMDNodes AATags; 1093 1094 const DataLayout &MDL = Preheader->getModule()->getDataLayout(); 1095 1096 // Do we know this object does not escape ? 1097 bool IsKnownNonEscapingObject = false; 1098 if (SafetyInfo->MayThrow) { 1099 // If a loop can throw, we have to insert a store along each unwind edge. 1100 // That said, we can't actually make the unwind edge explicit. Therefore, 1101 // we have to prove that the store is dead along the unwind edge. 1102 // 1103 // If the underlying object is not an alloca, nor a pointer that does not 1104 // escape, then we can not effectively prove that the store is dead along 1105 // the unwind edge. i.e. the caller of this function could have ways to 1106 // access the pointed object. 1107 Value *Object = GetUnderlyingObject(SomePtr, MDL); 1108 // If this is a base pointer we do not understand, simply bail. 1109 // We only handle alloca and return value from alloc-like fn right now. 1110 if (!isa<AllocaInst>(Object)) { 1111 if (!isAllocLikeFn(Object, TLI)) 1112 return false; 1113 // If this is an alloc like fn. There are more constraints we need to 1114 // verify. More specifically, we must make sure that the pointer can not 1115 // escape. 1116 // 1117 // NOTE: PointerMayBeCaptured is not enough as the pointer may have 1118 // escaped even though its not captured by the enclosing function. 1119 // Standard allocation functions like malloc, calloc, and operator new 1120 // return values which can be assumed not to have previously escaped. 1121 if (PointerMayBeCaptured(Object, true, true)) 1122 return false; 1123 IsKnownNonEscapingObject = true; 1124 } 1125 } 1126 1127 // Check that all of the pointers in the alias set have the same type. We 1128 // cannot (yet) promote a memory location that is loaded and stored in 1129 // different sizes. While we are at it, collect alignment and AA info. 1130 for (Value *ASIV : PointerMustAliases) { 1131 // Check that all of the pointers in the alias set have the same type. We 1132 // cannot (yet) promote a memory location that is loaded and stored in 1133 // different sizes. 1134 if (SomePtr->getType() != ASIV->getType()) 1135 return false; 1136 1137 for (User *U : ASIV->users()) { 1138 // Ignore instructions that are outside the loop. 1139 Instruction *UI = dyn_cast<Instruction>(U); 1140 if (!UI || !CurLoop->contains(UI)) 1141 continue; 1142 1143 // If there is an non-load/store instruction in the loop, we can't promote 1144 // it. 1145 if (LoadInst *Load = dyn_cast<LoadInst>(UI)) { 1146 assert(!Load->isVolatile() && "AST broken"); 1147 if (!Load->isUnordered()) 1148 return false; 1149 1150 SawUnorderedAtomic |= Load->isAtomic(); 1151 SawNotAtomic |= !Load->isAtomic(); 1152 1153 if (!DereferenceableInPH) 1154 DereferenceableInPH = isSafeToExecuteUnconditionally( 1155 *Load, DT, CurLoop, SafetyInfo, ORE, Preheader->getTerminator()); 1156 } else if (const StoreInst *Store = dyn_cast<StoreInst>(UI)) { 1157 // Stores *of* the pointer are not interesting, only stores *to* the 1158 // pointer. 1159 if (UI->getOperand(1) != ASIV) 1160 continue; 1161 assert(!Store->isVolatile() && "AST broken"); 1162 if (!Store->isUnordered()) 1163 return false; 1164 1165 SawUnorderedAtomic |= Store->isAtomic(); 1166 SawNotAtomic |= !Store->isAtomic(); 1167 1168 // If the store is guaranteed to execute, both properties are satisfied. 1169 // We may want to check if a store is guaranteed to execute even if we 1170 // already know that promotion is safe, since it may have higher 1171 // alignment than any other guaranteed stores, in which case we can 1172 // raise the alignment on the promoted store. 1173 unsigned InstAlignment = Store->getAlignment(); 1174 if (!InstAlignment) 1175 InstAlignment = 1176 MDL.getABITypeAlignment(Store->getValueOperand()->getType()); 1177 1178 if (!DereferenceableInPH || !SafeToInsertStore || 1179 (InstAlignment > Alignment)) { 1180 if (isGuaranteedToExecute(*UI, DT, CurLoop, SafetyInfo)) { 1181 DereferenceableInPH = true; 1182 SafeToInsertStore = true; 1183 Alignment = std::max(Alignment, InstAlignment); 1184 } 1185 } 1186 1187 // If a store dominates all exit blocks, it is safe to sink. 1188 // As explained above, if an exit block was executed, a dominating 1189 // store must have been been executed at least once, so we are not 1190 // introducing stores on paths that did not have them. 1191 // Note that this only looks at explicit exit blocks. If we ever 1192 // start sinking stores into unwind edges (see above), this will break. 1193 if (!SafeToInsertStore) 1194 SafeToInsertStore = llvm::all_of(ExitBlocks, [&](BasicBlock *Exit) { 1195 return DT->dominates(Store->getParent(), Exit); 1196 }); 1197 1198 // If the store is not guaranteed to execute, we may still get 1199 // deref info through it. 1200 if (!DereferenceableInPH) { 1201 DereferenceableInPH = isDereferenceableAndAlignedPointer( 1202 Store->getPointerOperand(), Store->getAlignment(), MDL, 1203 Preheader->getTerminator(), DT); 1204 } 1205 } else 1206 return false; // Not a load or store. 1207 1208 // Merge the AA tags. 1209 if (LoopUses.empty()) { 1210 // On the first load/store, just take its AA tags. 1211 UI->getAAMetadata(AATags); 1212 } else if (AATags) { 1213 UI->getAAMetadata(AATags, /* Merge = */ true); 1214 } 1215 1216 LoopUses.push_back(UI); 1217 } 1218 } 1219 1220 // If we found both an unordered atomic instruction and a non-atomic memory 1221 // access, bail. We can't blindly promote non-atomic to atomic since we 1222 // might not be able to lower the result. We can't downgrade since that 1223 // would violate memory model. Also, align 0 is an error for atomics. 1224 if (SawUnorderedAtomic && SawNotAtomic) 1225 return false; 1226 1227 // If we couldn't prove we can hoist the load, bail. 1228 if (!DereferenceableInPH) 1229 return false; 1230 1231 // We know we can hoist the load, but don't have a guaranteed store. 1232 // Check whether the location is thread-local. If it is, then we can insert 1233 // stores along paths which originally didn't have them without violating the 1234 // memory model. 1235 if (!SafeToInsertStore) { 1236 // If this is a known non-escaping object, it is safe to insert the stores. 1237 if (IsKnownNonEscapingObject) 1238 SafeToInsertStore = true; 1239 else { 1240 Value *Object = GetUnderlyingObject(SomePtr, MDL); 1241 SafeToInsertStore = 1242 (isAllocLikeFn(Object, TLI) || isa<AllocaInst>(Object)) && 1243 !PointerMayBeCaptured(Object, true, true); 1244 } 1245 } 1246 1247 // If we've still failed to prove we can sink the store, give up. 1248 if (!SafeToInsertStore) 1249 return false; 1250 1251 // Otherwise, this is safe to promote, lets do it! 1252 DEBUG(dbgs() << "LICM: Promoting value stored to in loop: " << *SomePtr 1253 << '\n'); 1254 ORE->emit( 1255 OptimizationRemark(DEBUG_TYPE, "PromoteLoopAccessesToScalar", LoopUses[0]) 1256 << "Moving accesses to memory location out of the loop"); 1257 ++NumPromoted; 1258 1259 // Grab a debug location for the inserted loads/stores; given that the 1260 // inserted loads/stores have little relation to the original loads/stores, 1261 // this code just arbitrarily picks a location from one, since any debug 1262 // location is better than none. 1263 DebugLoc DL = LoopUses[0]->getDebugLoc(); 1264 1265 // We use the SSAUpdater interface to insert phi nodes as required. 1266 SmallVector<PHINode *, 16> NewPHIs; 1267 SSAUpdater SSA(&NewPHIs); 1268 LoopPromoter Promoter(SomePtr, LoopUses, SSA, PointerMustAliases, ExitBlocks, 1269 InsertPts, PIC, *CurAST, *LI, DL, Alignment, 1270 SawUnorderedAtomic, AATags); 1271 1272 // Set up the preheader to have a definition of the value. It is the live-out 1273 // value from the preheader that uses in the loop will use. 1274 LoadInst *PreheaderLoad = new LoadInst( 1275 SomePtr, SomePtr->getName() + ".promoted", Preheader->getTerminator()); 1276 if (SawUnorderedAtomic) 1277 PreheaderLoad->setOrdering(AtomicOrdering::Unordered); 1278 PreheaderLoad->setAlignment(Alignment); 1279 PreheaderLoad->setDebugLoc(DL); 1280 if (AATags) 1281 PreheaderLoad->setAAMetadata(AATags); 1282 SSA.AddAvailableValue(Preheader, PreheaderLoad); 1283 1284 // Rewrite all the loads in the loop and remember all the definitions from 1285 // stores in the loop. 1286 Promoter.run(LoopUses); 1287 1288 // If the SSAUpdater didn't use the load in the preheader, just zap it now. 1289 if (PreheaderLoad->use_empty()) 1290 PreheaderLoad->eraseFromParent(); 1291 1292 return true; 1293 } 1294 1295 /// Returns an owning pointer to an alias set which incorporates aliasing info 1296 /// from L and all subloops of L. 1297 /// FIXME: In new pass manager, there is no helper function to handle loop 1298 /// analysis such as cloneBasicBlockAnalysis, so the AST needs to be recomputed 1299 /// from scratch for every loop. Hook up with the helper functions when 1300 /// available in the new pass manager to avoid redundant computation. 1301 AliasSetTracker * 1302 LoopInvariantCodeMotion::collectAliasInfoForLoop(Loop *L, LoopInfo *LI, 1303 AliasAnalysis *AA) { 1304 AliasSetTracker *CurAST = nullptr; 1305 SmallVector<Loop *, 4> RecomputeLoops; 1306 for (Loop *InnerL : L->getSubLoops()) { 1307 auto MapI = LoopToAliasSetMap.find(InnerL); 1308 // If the AST for this inner loop is missing it may have been merged into 1309 // some other loop's AST and then that loop unrolled, and so we need to 1310 // recompute it. 1311 if (MapI == LoopToAliasSetMap.end()) { 1312 RecomputeLoops.push_back(InnerL); 1313 continue; 1314 } 1315 AliasSetTracker *InnerAST = MapI->second; 1316 1317 if (CurAST != nullptr) { 1318 // What if InnerLoop was modified by other passes ? 1319 CurAST->add(*InnerAST); 1320 1321 // Once we've incorporated the inner loop's AST into ours, we don't need 1322 // the subloop's anymore. 1323 delete InnerAST; 1324 } else { 1325 CurAST = InnerAST; 1326 } 1327 LoopToAliasSetMap.erase(MapI); 1328 } 1329 if (CurAST == nullptr) 1330 CurAST = new AliasSetTracker(*AA); 1331 1332 auto mergeLoop = [&](Loop *L) { 1333 // Loop over the body of this loop, looking for calls, invokes, and stores. 1334 for (BasicBlock *BB : L->blocks()) 1335 CurAST->add(*BB); // Incorporate the specified basic block 1336 }; 1337 1338 // Add everything from the sub loops that are no longer directly available. 1339 for (Loop *InnerL : RecomputeLoops) 1340 mergeLoop(InnerL); 1341 1342 // And merge in this loop. 1343 mergeLoop(L); 1344 1345 return CurAST; 1346 } 1347 1348 /// Simple analysis hook. Clone alias set info. 1349 /// 1350 void LegacyLICMPass::cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, 1351 Loop *L) { 1352 AliasSetTracker *AST = LICM.getLoopToAliasSetMap().lookup(L); 1353 if (!AST) 1354 return; 1355 1356 AST->copyValue(From, To); 1357 } 1358 1359 /// Simple Analysis hook. Delete value V from alias set 1360 /// 1361 void LegacyLICMPass::deleteAnalysisValue(Value *V, Loop *L) { 1362 AliasSetTracker *AST = LICM.getLoopToAliasSetMap().lookup(L); 1363 if (!AST) 1364 return; 1365 1366 AST->deleteValue(V); 1367 } 1368 1369 /// Simple Analysis hook. Delete value L from alias set map. 1370 /// 1371 void LegacyLICMPass::deleteAnalysisLoop(Loop *L) { 1372 AliasSetTracker *AST = LICM.getLoopToAliasSetMap().lookup(L); 1373 if (!AST) 1374 return; 1375 1376 delete AST; 1377 LICM.getLoopToAliasSetMap().erase(L); 1378 } 1379 1380 /// Return true if the body of this loop may store into the memory 1381 /// location pointed to by V. 1382 /// 1383 static bool pointerInvalidatedByLoop(Value *V, uint64_t Size, 1384 const AAMDNodes &AAInfo, 1385 AliasSetTracker *CurAST) { 1386 // Check to see if any of the basic blocks in CurLoop invalidate *V. 1387 return CurAST->getAliasSetForPointer(V, Size, AAInfo).isMod(); 1388 } 1389 1390 /// Little predicate that returns true if the specified basic block is in 1391 /// a subloop of the current one, not the current one itself. 1392 /// 1393 static bool inSubLoop(BasicBlock *BB, Loop *CurLoop, LoopInfo *LI) { 1394 assert(CurLoop->contains(BB) && "Only valid if BB is IN the loop"); 1395 return LI->getLoopFor(BB) != CurLoop; 1396 } 1397