1 //===-- LICM.cpp - Loop Invariant Code Motion Pass ------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This pass performs loop invariant code motion, attempting to remove as much 10 // code from the body of a loop as possible. It does this by either hoisting 11 // code into the preheader block, or by sinking code to the exit blocks if it is 12 // safe. This pass also promotes must-aliased memory locations in the loop to 13 // live in registers, thus hoisting and sinking "invariant" loads and stores. 14 // 15 // Hoisting operations out of loops is a canonicalization transform. It 16 // enables and simplifies subsequent optimizations in the middle-end. 17 // Rematerialization of hoisted instructions to reduce register pressure is the 18 // responsibility of the back-end, which has more accurate information about 19 // register pressure and also handles other optimizations than LICM that 20 // increase live-ranges. 21 // 22 // This pass uses alias analysis for two purposes: 23 // 24 // 1. Moving loop invariant loads and calls out of loops. If we can determine 25 // that a load or call inside of a loop never aliases anything stored to, 26 // we can hoist it or sink it like any other instruction. 27 // 2. Scalar Promotion of Memory - If there is a store instruction inside of 28 // the loop, we try to move the store to happen AFTER the loop instead of 29 // inside of the loop. This can only happen if a few conditions are true: 30 // A. The pointer stored through is loop invariant 31 // B. There are no stores or loads in the loop which _may_ alias the 32 // pointer. There are no calls in the loop which mod/ref the pointer. 33 // If these conditions are true, we can promote the loads and stores in the 34 // loop of the pointer to use a temporary alloca'd variable. We then use 35 // the SSAUpdater to construct the appropriate SSA form for the value. 36 // 37 //===----------------------------------------------------------------------===// 38 39 #include "llvm/Transforms/Scalar/LICM.h" 40 #include "llvm/ADT/SetOperations.h" 41 #include "llvm/ADT/Statistic.h" 42 #include "llvm/Analysis/AliasAnalysis.h" 43 #include "llvm/Analysis/AliasSetTracker.h" 44 #include "llvm/Analysis/BasicAliasAnalysis.h" 45 #include "llvm/Analysis/BlockFrequencyInfo.h" 46 #include "llvm/Analysis/CaptureTracking.h" 47 #include "llvm/Analysis/ConstantFolding.h" 48 #include "llvm/Analysis/GlobalsModRef.h" 49 #include "llvm/Analysis/GuardUtils.h" 50 #include "llvm/Analysis/LazyBlockFrequencyInfo.h" 51 #include "llvm/Analysis/Loads.h" 52 #include "llvm/Analysis/LoopInfo.h" 53 #include "llvm/Analysis/LoopIterator.h" 54 #include "llvm/Analysis/LoopPass.h" 55 #include "llvm/Analysis/MemoryBuiltins.h" 56 #include "llvm/Analysis/MemorySSA.h" 57 #include "llvm/Analysis/MemorySSAUpdater.h" 58 #include "llvm/Analysis/MustExecute.h" 59 #include "llvm/Analysis/OptimizationRemarkEmitter.h" 60 #include "llvm/Analysis/ScalarEvolution.h" 61 #include "llvm/Analysis/ScalarEvolutionAliasAnalysis.h" 62 #include "llvm/Analysis/TargetLibraryInfo.h" 63 #include "llvm/Analysis/ValueTracking.h" 64 #include "llvm/IR/CFG.h" 65 #include "llvm/IR/Constants.h" 66 #include "llvm/IR/DataLayout.h" 67 #include "llvm/IR/DebugInfoMetadata.h" 68 #include "llvm/IR/DerivedTypes.h" 69 #include "llvm/IR/Dominators.h" 70 #include "llvm/IR/Instructions.h" 71 #include "llvm/IR/IntrinsicInst.h" 72 #include "llvm/IR/LLVMContext.h" 73 #include "llvm/IR/Metadata.h" 74 #include "llvm/IR/PatternMatch.h" 75 #include "llvm/IR/PredIteratorCache.h" 76 #include "llvm/InitializePasses.h" 77 #include "llvm/Support/CommandLine.h" 78 #include "llvm/Support/Debug.h" 79 #include "llvm/Support/raw_ostream.h" 80 #include "llvm/Transforms/Scalar.h" 81 #include "llvm/Transforms/Scalar/LoopPassManager.h" 82 #include "llvm/Transforms/Utils/AssumeBundleBuilder.h" 83 #include "llvm/Transforms/Utils/BasicBlockUtils.h" 84 #include "llvm/Transforms/Utils/Local.h" 85 #include "llvm/Transforms/Utils/LoopUtils.h" 86 #include "llvm/Transforms/Utils/SSAUpdater.h" 87 #include <algorithm> 88 #include <utility> 89 using namespace llvm; 90 91 #define DEBUG_TYPE "licm" 92 93 STATISTIC(NumCreatedBlocks, "Number of blocks created"); 94 STATISTIC(NumClonedBranches, "Number of branches cloned"); 95 STATISTIC(NumSunk, "Number of instructions sunk out of loop"); 96 STATISTIC(NumHoisted, "Number of instructions hoisted out of loop"); 97 STATISTIC(NumMovedLoads, "Number of load insts hoisted or sunk"); 98 STATISTIC(NumMovedCalls, "Number of call insts hoisted or sunk"); 99 STATISTIC(NumPromoted, "Number of memory locations promoted to registers"); 100 101 /// Memory promotion is enabled by default. 102 static cl::opt<bool> 103 DisablePromotion("disable-licm-promotion", cl::Hidden, cl::init(false), 104 cl::desc("Disable memory promotion in LICM pass")); 105 106 static cl::opt<bool> ControlFlowHoisting( 107 "licm-control-flow-hoisting", cl::Hidden, cl::init(false), 108 cl::desc("Enable control flow (and PHI) hoisting in LICM")); 109 110 static cl::opt<unsigned> HoistSinkColdnessThreshold( 111 "licm-coldness-threshold", cl::Hidden, cl::init(4), 112 cl::desc("Relative coldness Threshold of hoisting/sinking destination " 113 "block for LICM to be considered beneficial")); 114 115 static cl::opt<uint32_t> MaxNumUsesTraversed( 116 "licm-max-num-uses-traversed", cl::Hidden, cl::init(8), 117 cl::desc("Max num uses visited for identifying load " 118 "invariance in loop using invariant start (default = 8)")); 119 120 // Experimental option to allow imprecision in LICM in pathological cases, in 121 // exchange for faster compile. This is to be removed if MemorySSA starts to 122 // address the same issue. This flag applies only when LICM uses MemorySSA 123 // instead on AliasSetTracker. LICM calls MemorySSAWalker's 124 // getClobberingMemoryAccess, up to the value of the Cap, getting perfect 125 // accuracy. Afterwards, LICM will call into MemorySSA's getDefiningAccess, 126 // which may not be precise, since optimizeUses is capped. The result is 127 // correct, but we may not get as "far up" as possible to get which access is 128 // clobbering the one queried. 129 cl::opt<unsigned> llvm::SetLicmMssaOptCap( 130 "licm-mssa-optimization-cap", cl::init(100), cl::Hidden, 131 cl::desc("Enable imprecision in LICM in pathological cases, in exchange " 132 "for faster compile. Caps the MemorySSA clobbering calls.")); 133 134 // Experimentally, memory promotion carries less importance than sinking and 135 // hoisting. Limit when we do promotion when using MemorySSA, in order to save 136 // compile time. 137 cl::opt<unsigned> llvm::SetLicmMssaNoAccForPromotionCap( 138 "licm-mssa-max-acc-promotion", cl::init(250), cl::Hidden, 139 cl::desc("[LICM & MemorySSA] When MSSA in LICM is disabled, this has no " 140 "effect. When MSSA in LICM is enabled, then this is the maximum " 141 "number of accesses allowed to be present in a loop in order to " 142 "enable memory promotion.")); 143 144 static bool inSubLoop(BasicBlock *BB, Loop *CurLoop, LoopInfo *LI); 145 static bool isNotUsedOrFreeInLoop(const Instruction &I, const Loop *CurLoop, 146 const LoopSafetyInfo *SafetyInfo, 147 TargetTransformInfo *TTI, bool &FreeInLoop, 148 bool LoopNestMode); 149 static void hoist(Instruction &I, const DominatorTree *DT, const Loop *CurLoop, 150 BasicBlock *Dest, ICFLoopSafetyInfo *SafetyInfo, 151 MemorySSAUpdater *MSSAU, ScalarEvolution *SE, 152 OptimizationRemarkEmitter *ORE); 153 static bool sink(Instruction &I, LoopInfo *LI, DominatorTree *DT, 154 BlockFrequencyInfo *BFI, const Loop *CurLoop, 155 ICFLoopSafetyInfo *SafetyInfo, MemorySSAUpdater *MSSAU, 156 OptimizationRemarkEmitter *ORE); 157 static bool isSafeToExecuteUnconditionally(Instruction &Inst, 158 const DominatorTree *DT, 159 const TargetLibraryInfo *TLI, 160 const Loop *CurLoop, 161 const LoopSafetyInfo *SafetyInfo, 162 OptimizationRemarkEmitter *ORE, 163 const Instruction *CtxI = nullptr); 164 static bool pointerInvalidatedByLoop(MemoryLocation MemLoc, 165 AliasSetTracker *CurAST, Loop *CurLoop, 166 AAResults *AA); 167 static bool pointerInvalidatedByLoopWithMSSA(MemorySSA *MSSA, MemoryUse *MU, 168 Loop *CurLoop, Instruction &I, 169 SinkAndHoistLICMFlags &Flags); 170 static bool pointerInvalidatedByBlockWithMSSA(BasicBlock &BB, MemorySSA &MSSA, 171 MemoryUse &MU); 172 static Instruction *cloneInstructionInExitBlock( 173 Instruction &I, BasicBlock &ExitBlock, PHINode &PN, const LoopInfo *LI, 174 const LoopSafetyInfo *SafetyInfo, MemorySSAUpdater *MSSAU); 175 176 static void eraseInstruction(Instruction &I, ICFLoopSafetyInfo &SafetyInfo, 177 MemorySSAUpdater *MSSAU); 178 179 static void moveInstructionBefore(Instruction &I, Instruction &Dest, 180 ICFLoopSafetyInfo &SafetyInfo, 181 MemorySSAUpdater *MSSAU, ScalarEvolution *SE); 182 183 static void foreachMemoryAccess(MemorySSA *MSSA, Loop *L, 184 function_ref<void(Instruction *)> Fn); 185 static SmallVector<SmallSetVector<Value *, 8>, 0> 186 collectPromotionCandidates(MemorySSA *MSSA, AliasAnalysis *AA, Loop *L); 187 188 namespace { 189 struct LoopInvariantCodeMotion { 190 bool runOnLoop(Loop *L, AAResults *AA, LoopInfo *LI, DominatorTree *DT, 191 BlockFrequencyInfo *BFI, TargetLibraryInfo *TLI, 192 TargetTransformInfo *TTI, ScalarEvolution *SE, MemorySSA *MSSA, 193 OptimizationRemarkEmitter *ORE, bool LoopNestMode = false); 194 195 LoopInvariantCodeMotion(unsigned LicmMssaOptCap, 196 unsigned LicmMssaNoAccForPromotionCap) 197 : LicmMssaOptCap(LicmMssaOptCap), 198 LicmMssaNoAccForPromotionCap(LicmMssaNoAccForPromotionCap) {} 199 200 private: 201 unsigned LicmMssaOptCap; 202 unsigned LicmMssaNoAccForPromotionCap; 203 }; 204 205 struct LegacyLICMPass : public LoopPass { 206 static char ID; // Pass identification, replacement for typeid 207 LegacyLICMPass( 208 unsigned LicmMssaOptCap = SetLicmMssaOptCap, 209 unsigned LicmMssaNoAccForPromotionCap = SetLicmMssaNoAccForPromotionCap) 210 : LoopPass(ID), LICM(LicmMssaOptCap, LicmMssaNoAccForPromotionCap) { 211 initializeLegacyLICMPassPass(*PassRegistry::getPassRegistry()); 212 } 213 214 bool runOnLoop(Loop *L, LPPassManager &LPM) override { 215 if (skipLoop(L)) 216 return false; 217 218 LLVM_DEBUG(dbgs() << "Perform LICM on Loop with header at block " 219 << L->getHeader()->getNameOrAsOperand() << "\n"); 220 221 auto *SE = getAnalysisIfAvailable<ScalarEvolutionWrapperPass>(); 222 MemorySSA *MSSA = &getAnalysis<MemorySSAWrapperPass>().getMSSA(); 223 bool hasProfileData = L->getHeader()->getParent()->hasProfileData(); 224 BlockFrequencyInfo *BFI = 225 hasProfileData ? &getAnalysis<LazyBlockFrequencyInfoPass>().getBFI() 226 : nullptr; 227 // For the old PM, we can't use OptimizationRemarkEmitter as an analysis 228 // pass. Function analyses need to be preserved across loop transformations 229 // but ORE cannot be preserved (see comment before the pass definition). 230 OptimizationRemarkEmitter ORE(L->getHeader()->getParent()); 231 return LICM.runOnLoop( 232 L, &getAnalysis<AAResultsWrapperPass>().getAAResults(), 233 &getAnalysis<LoopInfoWrapperPass>().getLoopInfo(), 234 &getAnalysis<DominatorTreeWrapperPass>().getDomTree(), BFI, 235 &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI( 236 *L->getHeader()->getParent()), 237 &getAnalysis<TargetTransformInfoWrapperPass>().getTTI( 238 *L->getHeader()->getParent()), 239 SE ? &SE->getSE() : nullptr, MSSA, &ORE); 240 } 241 242 /// This transformation requires natural loop information & requires that 243 /// loop preheaders be inserted into the CFG... 244 /// 245 void getAnalysisUsage(AnalysisUsage &AU) const override { 246 AU.addPreserved<DominatorTreeWrapperPass>(); 247 AU.addPreserved<LoopInfoWrapperPass>(); 248 AU.addRequired<TargetLibraryInfoWrapperPass>(); 249 AU.addRequired<MemorySSAWrapperPass>(); 250 AU.addPreserved<MemorySSAWrapperPass>(); 251 AU.addRequired<TargetTransformInfoWrapperPass>(); 252 getLoopAnalysisUsage(AU); 253 LazyBlockFrequencyInfoPass::getLazyBFIAnalysisUsage(AU); 254 AU.addPreserved<LazyBlockFrequencyInfoPass>(); 255 AU.addPreserved<LazyBranchProbabilityInfoPass>(); 256 } 257 258 private: 259 LoopInvariantCodeMotion LICM; 260 }; 261 } // namespace 262 263 PreservedAnalyses LICMPass::run(Loop &L, LoopAnalysisManager &AM, 264 LoopStandardAnalysisResults &AR, LPMUpdater &) { 265 if (!AR.MSSA) 266 report_fatal_error("LICM requires MemorySSA (loop-mssa)"); 267 268 // For the new PM, we also can't use OptimizationRemarkEmitter as an analysis 269 // pass. Function analyses need to be preserved across loop transformations 270 // but ORE cannot be preserved (see comment before the pass definition). 271 OptimizationRemarkEmitter ORE(L.getHeader()->getParent()); 272 273 LoopInvariantCodeMotion LICM(LicmMssaOptCap, LicmMssaNoAccForPromotionCap); 274 if (!LICM.runOnLoop(&L, &AR.AA, &AR.LI, &AR.DT, AR.BFI, &AR.TLI, &AR.TTI, 275 &AR.SE, AR.MSSA, &ORE)) 276 return PreservedAnalyses::all(); 277 278 auto PA = getLoopPassPreservedAnalyses(); 279 280 PA.preserve<DominatorTreeAnalysis>(); 281 PA.preserve<LoopAnalysis>(); 282 PA.preserve<MemorySSAAnalysis>(); 283 284 return PA; 285 } 286 287 PreservedAnalyses LNICMPass::run(LoopNest &LN, LoopAnalysisManager &AM, 288 LoopStandardAnalysisResults &AR, 289 LPMUpdater &) { 290 if (!AR.MSSA) 291 report_fatal_error("LNICM requires MemorySSA (loop-mssa)"); 292 293 // For the new PM, we also can't use OptimizationRemarkEmitter as an analysis 294 // pass. Function analyses need to be preserved across loop transformations 295 // but ORE cannot be preserved (see comment before the pass definition). 296 OptimizationRemarkEmitter ORE(LN.getParent()); 297 298 LoopInvariantCodeMotion LICM(LicmMssaOptCap, LicmMssaNoAccForPromotionCap); 299 300 Loop &OutermostLoop = LN.getOutermostLoop(); 301 bool Changed = LICM.runOnLoop(&OutermostLoop, &AR.AA, &AR.LI, &AR.DT, AR.BFI, 302 &AR.TLI, &AR.TTI, &AR.SE, AR.MSSA, &ORE, true); 303 304 if (!Changed) 305 return PreservedAnalyses::all(); 306 307 auto PA = getLoopPassPreservedAnalyses(); 308 309 PA.preserve<DominatorTreeAnalysis>(); 310 PA.preserve<LoopAnalysis>(); 311 PA.preserve<MemorySSAAnalysis>(); 312 313 return PA; 314 } 315 316 char LegacyLICMPass::ID = 0; 317 INITIALIZE_PASS_BEGIN(LegacyLICMPass, "licm", "Loop Invariant Code Motion", 318 false, false) 319 INITIALIZE_PASS_DEPENDENCY(LoopPass) 320 INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass) 321 INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass) 322 INITIALIZE_PASS_DEPENDENCY(MemorySSAWrapperPass) 323 INITIALIZE_PASS_DEPENDENCY(LazyBFIPass) 324 INITIALIZE_PASS_END(LegacyLICMPass, "licm", "Loop Invariant Code Motion", false, 325 false) 326 327 Pass *llvm::createLICMPass() { return new LegacyLICMPass(); } 328 Pass *llvm::createLICMPass(unsigned LicmMssaOptCap, 329 unsigned LicmMssaNoAccForPromotionCap) { 330 return new LegacyLICMPass(LicmMssaOptCap, LicmMssaNoAccForPromotionCap); 331 } 332 333 llvm::SinkAndHoistLICMFlags::SinkAndHoistLICMFlags(bool IsSink, Loop *L, 334 MemorySSA *MSSA) 335 : SinkAndHoistLICMFlags(SetLicmMssaOptCap, SetLicmMssaNoAccForPromotionCap, 336 IsSink, L, MSSA) {} 337 338 llvm::SinkAndHoistLICMFlags::SinkAndHoistLICMFlags( 339 unsigned LicmMssaOptCap, unsigned LicmMssaNoAccForPromotionCap, bool IsSink, 340 Loop *L, MemorySSA *MSSA) 341 : LicmMssaOptCap(LicmMssaOptCap), 342 LicmMssaNoAccForPromotionCap(LicmMssaNoAccForPromotionCap), 343 IsSink(IsSink) { 344 assert(((L != nullptr) == (MSSA != nullptr)) && 345 "Unexpected values for SinkAndHoistLICMFlags"); 346 if (!MSSA) 347 return; 348 349 unsigned AccessCapCount = 0; 350 for (auto *BB : L->getBlocks()) 351 if (const auto *Accesses = MSSA->getBlockAccesses(BB)) 352 for (const auto &MA : *Accesses) { 353 (void)MA; 354 ++AccessCapCount; 355 if (AccessCapCount > LicmMssaNoAccForPromotionCap) { 356 NoOfMemAccTooLarge = true; 357 return; 358 } 359 } 360 } 361 362 /// Hoist expressions out of the specified loop. Note, alias info for inner 363 /// loop is not preserved so it is not a good idea to run LICM multiple 364 /// times on one loop. 365 bool LoopInvariantCodeMotion::runOnLoop( 366 Loop *L, AAResults *AA, LoopInfo *LI, DominatorTree *DT, 367 BlockFrequencyInfo *BFI, TargetLibraryInfo *TLI, TargetTransformInfo *TTI, 368 ScalarEvolution *SE, MemorySSA *MSSA, OptimizationRemarkEmitter *ORE, 369 bool LoopNestMode) { 370 bool Changed = false; 371 372 assert(L->isLCSSAForm(*DT) && "Loop is not in LCSSA form."); 373 374 // If this loop has metadata indicating that LICM is not to be performed then 375 // just exit. 376 if (hasDisableLICMTransformsHint(L)) { 377 return false; 378 } 379 380 // Don't sink stores from loops with coroutine suspend instructions. 381 // LICM would sink instructions into the default destination of 382 // the coroutine switch. The default destination of the switch is to 383 // handle the case where the coroutine is suspended, by which point the 384 // coroutine frame may have been destroyed. No instruction can be sunk there. 385 // FIXME: This would unfortunately hurt the performance of coroutines, however 386 // there is currently no general solution for this. Similar issues could also 387 // potentially happen in other passes where instructions are being moved 388 // across that edge. 389 bool HasCoroSuspendInst = llvm::any_of(L->getBlocks(), [](BasicBlock *BB) { 390 return llvm::any_of(*BB, [](Instruction &I) { 391 IntrinsicInst *II = dyn_cast<IntrinsicInst>(&I); 392 return II && II->getIntrinsicID() == Intrinsic::coro_suspend; 393 }); 394 }); 395 396 MemorySSAUpdater MSSAU(MSSA); 397 SinkAndHoistLICMFlags Flags(LicmMssaOptCap, LicmMssaNoAccForPromotionCap, 398 /*IsSink=*/true, L, MSSA); 399 400 // Get the preheader block to move instructions into... 401 BasicBlock *Preheader = L->getLoopPreheader(); 402 403 // Compute loop safety information. 404 ICFLoopSafetyInfo SafetyInfo; 405 SafetyInfo.computeLoopSafetyInfo(L); 406 407 // We want to visit all of the instructions in this loop... that are not parts 408 // of our subloops (they have already had their invariants hoisted out of 409 // their loop, into this loop, so there is no need to process the BODIES of 410 // the subloops). 411 // 412 // Traverse the body of the loop in depth first order on the dominator tree so 413 // that we are guaranteed to see definitions before we see uses. This allows 414 // us to sink instructions in one pass, without iteration. After sinking 415 // instructions, we perform another pass to hoist them out of the loop. 416 if (L->hasDedicatedExits()) 417 Changed |= LoopNestMode 418 ? sinkRegionForLoopNest(DT->getNode(L->getHeader()), AA, LI, 419 DT, BFI, TLI, TTI, L, &MSSAU, 420 &SafetyInfo, Flags, ORE) 421 : sinkRegion(DT->getNode(L->getHeader()), AA, LI, DT, BFI, 422 TLI, TTI, L, &MSSAU, &SafetyInfo, Flags, ORE); 423 Flags.setIsSink(false); 424 if (Preheader) 425 Changed |= hoistRegion(DT->getNode(L->getHeader()), AA, LI, DT, BFI, TLI, L, 426 &MSSAU, SE, &SafetyInfo, Flags, ORE, LoopNestMode); 427 428 // Now that all loop invariants have been removed from the loop, promote any 429 // memory references to scalars that we can. 430 // Don't sink stores from loops without dedicated block exits. Exits 431 // containing indirect branches are not transformed by loop simplify, 432 // make sure we catch that. An additional load may be generated in the 433 // preheader for SSA updater, so also avoid sinking when no preheader 434 // is available. 435 if (!DisablePromotion && Preheader && L->hasDedicatedExits() && 436 !Flags.tooManyMemoryAccesses() && !HasCoroSuspendInst) { 437 // Figure out the loop exits and their insertion points 438 SmallVector<BasicBlock *, 8> ExitBlocks; 439 L->getUniqueExitBlocks(ExitBlocks); 440 441 // We can't insert into a catchswitch. 442 bool HasCatchSwitch = llvm::any_of(ExitBlocks, [](BasicBlock *Exit) { 443 return isa<CatchSwitchInst>(Exit->getTerminator()); 444 }); 445 446 if (!HasCatchSwitch) { 447 SmallVector<Instruction *, 8> InsertPts; 448 SmallVector<MemoryAccess *, 8> MSSAInsertPts; 449 InsertPts.reserve(ExitBlocks.size()); 450 MSSAInsertPts.reserve(ExitBlocks.size()); 451 for (BasicBlock *ExitBlock : ExitBlocks) { 452 InsertPts.push_back(&*ExitBlock->getFirstInsertionPt()); 453 MSSAInsertPts.push_back(nullptr); 454 } 455 456 PredIteratorCache PIC; 457 458 // Promoting one set of accesses may make the pointers for another set 459 // loop invariant, so run this in a loop (with the MaybePromotable set 460 // decreasing in size over time). 461 bool Promoted = false; 462 bool LocalPromoted; 463 do { 464 LocalPromoted = false; 465 for (const SmallSetVector<Value *, 8> &PointerMustAliases : 466 collectPromotionCandidates(MSSA, AA, L)) { 467 LocalPromoted |= promoteLoopAccessesToScalars( 468 PointerMustAliases, ExitBlocks, InsertPts, MSSAInsertPts, PIC, 469 LI, DT, TLI, L, &MSSAU, &SafetyInfo, ORE); 470 } 471 Promoted |= LocalPromoted; 472 } while (LocalPromoted); 473 474 // Once we have promoted values across the loop body we have to 475 // recursively reform LCSSA as any nested loop may now have values defined 476 // within the loop used in the outer loop. 477 // FIXME: This is really heavy handed. It would be a bit better to use an 478 // SSAUpdater strategy during promotion that was LCSSA aware and reformed 479 // it as it went. 480 if (Promoted) 481 formLCSSARecursively(*L, *DT, LI, SE); 482 483 Changed |= Promoted; 484 } 485 } 486 487 // Check that neither this loop nor its parent have had LCSSA broken. LICM is 488 // specifically moving instructions across the loop boundary and so it is 489 // especially in need of sanity checking here. 490 assert(L->isLCSSAForm(*DT) && "Loop not left in LCSSA form after LICM!"); 491 assert((L->isOutermost() || L->getParentLoop()->isLCSSAForm(*DT)) && 492 "Parent loop not left in LCSSA form after LICM!"); 493 494 if (VerifyMemorySSA) 495 MSSA->verifyMemorySSA(); 496 497 if (Changed && SE) 498 SE->forgetLoopDispositions(L); 499 return Changed; 500 } 501 502 /// Walk the specified region of the CFG (defined by all blocks dominated by 503 /// the specified block, and that are in the current loop) in reverse depth 504 /// first order w.r.t the DominatorTree. This allows us to visit uses before 505 /// definitions, allowing us to sink a loop body in one pass without iteration. 506 /// 507 bool llvm::sinkRegion(DomTreeNode *N, AAResults *AA, LoopInfo *LI, 508 DominatorTree *DT, BlockFrequencyInfo *BFI, 509 TargetLibraryInfo *TLI, TargetTransformInfo *TTI, 510 Loop *CurLoop, MemorySSAUpdater *MSSAU, 511 ICFLoopSafetyInfo *SafetyInfo, 512 SinkAndHoistLICMFlags &Flags, 513 OptimizationRemarkEmitter *ORE, Loop *OutermostLoop) { 514 515 // Verify inputs. 516 assert(N != nullptr && AA != nullptr && LI != nullptr && DT != nullptr && 517 CurLoop != nullptr && MSSAU != nullptr && SafetyInfo != nullptr && 518 "Unexpected input to sinkRegion."); 519 520 // We want to visit children before parents. We will enque all the parents 521 // before their children in the worklist and process the worklist in reverse 522 // order. 523 SmallVector<DomTreeNode *, 16> Worklist = collectChildrenInLoop(N, CurLoop); 524 525 bool Changed = false; 526 for (DomTreeNode *DTN : reverse(Worklist)) { 527 BasicBlock *BB = DTN->getBlock(); 528 // Only need to process the contents of this block if it is not part of a 529 // subloop (which would already have been processed). 530 if (inSubLoop(BB, CurLoop, LI)) 531 continue; 532 533 for (BasicBlock::iterator II = BB->end(); II != BB->begin();) { 534 Instruction &I = *--II; 535 536 // The instruction is not used in the loop if it is dead. In this case, 537 // we just delete it instead of sinking it. 538 if (isInstructionTriviallyDead(&I, TLI)) { 539 LLVM_DEBUG(dbgs() << "LICM deleting dead inst: " << I << '\n'); 540 salvageKnowledge(&I); 541 salvageDebugInfo(I); 542 ++II; 543 eraseInstruction(I, *SafetyInfo, MSSAU); 544 Changed = true; 545 continue; 546 } 547 548 // Check to see if we can sink this instruction to the exit blocks 549 // of the loop. We can do this if the all users of the instruction are 550 // outside of the loop. In this case, it doesn't even matter if the 551 // operands of the instruction are loop invariant. 552 // 553 bool FreeInLoop = false; 554 bool LoopNestMode = OutermostLoop != nullptr; 555 if (!I.mayHaveSideEffects() && 556 isNotUsedOrFreeInLoop(I, LoopNestMode ? OutermostLoop : CurLoop, 557 SafetyInfo, TTI, FreeInLoop, LoopNestMode) && 558 canSinkOrHoistInst(I, AA, DT, CurLoop, /*CurAST*/nullptr, MSSAU, true, 559 &Flags, ORE)) { 560 if (sink(I, LI, DT, BFI, CurLoop, SafetyInfo, MSSAU, ORE)) { 561 if (!FreeInLoop) { 562 ++II; 563 salvageDebugInfo(I); 564 eraseInstruction(I, *SafetyInfo, MSSAU); 565 } 566 Changed = true; 567 } 568 } 569 } 570 } 571 if (VerifyMemorySSA) 572 MSSAU->getMemorySSA()->verifyMemorySSA(); 573 return Changed; 574 } 575 576 bool llvm::sinkRegionForLoopNest( 577 DomTreeNode *N, AAResults *AA, LoopInfo *LI, DominatorTree *DT, 578 BlockFrequencyInfo *BFI, TargetLibraryInfo *TLI, TargetTransformInfo *TTI, 579 Loop *CurLoop, MemorySSAUpdater *MSSAU, ICFLoopSafetyInfo *SafetyInfo, 580 SinkAndHoistLICMFlags &Flags, OptimizationRemarkEmitter *ORE) { 581 582 bool Changed = false; 583 SmallPriorityWorklist<Loop *, 4> Worklist; 584 Worklist.insert(CurLoop); 585 appendLoopsToWorklist(*CurLoop, Worklist); 586 while (!Worklist.empty()) { 587 Loop *L = Worklist.pop_back_val(); 588 Changed |= sinkRegion(DT->getNode(L->getHeader()), AA, LI, DT, BFI, TLI, 589 TTI, L, MSSAU, SafetyInfo, Flags, ORE, CurLoop); 590 } 591 return Changed; 592 } 593 594 namespace { 595 // This is a helper class for hoistRegion to make it able to hoist control flow 596 // in order to be able to hoist phis. The way this works is that we initially 597 // start hoisting to the loop preheader, and when we see a loop invariant branch 598 // we make note of this. When we then come to hoist an instruction that's 599 // conditional on such a branch we duplicate the branch and the relevant control 600 // flow, then hoist the instruction into the block corresponding to its original 601 // block in the duplicated control flow. 602 class ControlFlowHoister { 603 private: 604 // Information about the loop we are hoisting from 605 LoopInfo *LI; 606 DominatorTree *DT; 607 Loop *CurLoop; 608 MemorySSAUpdater *MSSAU; 609 610 // A map of blocks in the loop to the block their instructions will be hoisted 611 // to. 612 DenseMap<BasicBlock *, BasicBlock *> HoistDestinationMap; 613 614 // The branches that we can hoist, mapped to the block that marks a 615 // convergence point of their control flow. 616 DenseMap<BranchInst *, BasicBlock *> HoistableBranches; 617 618 public: 619 ControlFlowHoister(LoopInfo *LI, DominatorTree *DT, Loop *CurLoop, 620 MemorySSAUpdater *MSSAU) 621 : LI(LI), DT(DT), CurLoop(CurLoop), MSSAU(MSSAU) {} 622 623 void registerPossiblyHoistableBranch(BranchInst *BI) { 624 // We can only hoist conditional branches with loop invariant operands. 625 if (!ControlFlowHoisting || !BI->isConditional() || 626 !CurLoop->hasLoopInvariantOperands(BI)) 627 return; 628 629 // The branch destinations need to be in the loop, and we don't gain 630 // anything by duplicating conditional branches with duplicate successors, 631 // as it's essentially the same as an unconditional branch. 632 BasicBlock *TrueDest = BI->getSuccessor(0); 633 BasicBlock *FalseDest = BI->getSuccessor(1); 634 if (!CurLoop->contains(TrueDest) || !CurLoop->contains(FalseDest) || 635 TrueDest == FalseDest) 636 return; 637 638 // We can hoist BI if one branch destination is the successor of the other, 639 // or both have common successor which we check by seeing if the 640 // intersection of their successors is non-empty. 641 // TODO: This could be expanded to allowing branches where both ends 642 // eventually converge to a single block. 643 SmallPtrSet<BasicBlock *, 4> TrueDestSucc, FalseDestSucc; 644 TrueDestSucc.insert(succ_begin(TrueDest), succ_end(TrueDest)); 645 FalseDestSucc.insert(succ_begin(FalseDest), succ_end(FalseDest)); 646 BasicBlock *CommonSucc = nullptr; 647 if (TrueDestSucc.count(FalseDest)) { 648 CommonSucc = FalseDest; 649 } else if (FalseDestSucc.count(TrueDest)) { 650 CommonSucc = TrueDest; 651 } else { 652 set_intersect(TrueDestSucc, FalseDestSucc); 653 // If there's one common successor use that. 654 if (TrueDestSucc.size() == 1) 655 CommonSucc = *TrueDestSucc.begin(); 656 // If there's more than one pick whichever appears first in the block list 657 // (we can't use the value returned by TrueDestSucc.begin() as it's 658 // unpredicatable which element gets returned). 659 else if (!TrueDestSucc.empty()) { 660 Function *F = TrueDest->getParent(); 661 auto IsSucc = [&](BasicBlock &BB) { return TrueDestSucc.count(&BB); }; 662 auto It = llvm::find_if(*F, IsSucc); 663 assert(It != F->end() && "Could not find successor in function"); 664 CommonSucc = &*It; 665 } 666 } 667 // The common successor has to be dominated by the branch, as otherwise 668 // there will be some other path to the successor that will not be 669 // controlled by this branch so any phi we hoist would be controlled by the 670 // wrong condition. This also takes care of avoiding hoisting of loop back 671 // edges. 672 // TODO: In some cases this could be relaxed if the successor is dominated 673 // by another block that's been hoisted and we can guarantee that the 674 // control flow has been replicated exactly. 675 if (CommonSucc && DT->dominates(BI, CommonSucc)) 676 HoistableBranches[BI] = CommonSucc; 677 } 678 679 bool canHoistPHI(PHINode *PN) { 680 // The phi must have loop invariant operands. 681 if (!ControlFlowHoisting || !CurLoop->hasLoopInvariantOperands(PN)) 682 return false; 683 // We can hoist phis if the block they are in is the target of hoistable 684 // branches which cover all of the predecessors of the block. 685 SmallPtrSet<BasicBlock *, 8> PredecessorBlocks; 686 BasicBlock *BB = PN->getParent(); 687 for (BasicBlock *PredBB : predecessors(BB)) 688 PredecessorBlocks.insert(PredBB); 689 // If we have less predecessor blocks than predecessors then the phi will 690 // have more than one incoming value for the same block which we can't 691 // handle. 692 // TODO: This could be handled be erasing some of the duplicate incoming 693 // values. 694 if (PredecessorBlocks.size() != pred_size(BB)) 695 return false; 696 for (auto &Pair : HoistableBranches) { 697 if (Pair.second == BB) { 698 // Which blocks are predecessors via this branch depends on if the 699 // branch is triangle-like or diamond-like. 700 if (Pair.first->getSuccessor(0) == BB) { 701 PredecessorBlocks.erase(Pair.first->getParent()); 702 PredecessorBlocks.erase(Pair.first->getSuccessor(1)); 703 } else if (Pair.first->getSuccessor(1) == BB) { 704 PredecessorBlocks.erase(Pair.first->getParent()); 705 PredecessorBlocks.erase(Pair.first->getSuccessor(0)); 706 } else { 707 PredecessorBlocks.erase(Pair.first->getSuccessor(0)); 708 PredecessorBlocks.erase(Pair.first->getSuccessor(1)); 709 } 710 } 711 } 712 // PredecessorBlocks will now be empty if for every predecessor of BB we 713 // found a hoistable branch source. 714 return PredecessorBlocks.empty(); 715 } 716 717 BasicBlock *getOrCreateHoistedBlock(BasicBlock *BB) { 718 if (!ControlFlowHoisting) 719 return CurLoop->getLoopPreheader(); 720 // If BB has already been hoisted, return that 721 if (HoistDestinationMap.count(BB)) 722 return HoistDestinationMap[BB]; 723 724 // Check if this block is conditional based on a pending branch 725 auto HasBBAsSuccessor = 726 [&](DenseMap<BranchInst *, BasicBlock *>::value_type &Pair) { 727 return BB != Pair.second && (Pair.first->getSuccessor(0) == BB || 728 Pair.first->getSuccessor(1) == BB); 729 }; 730 auto It = llvm::find_if(HoistableBranches, HasBBAsSuccessor); 731 732 // If not involved in a pending branch, hoist to preheader 733 BasicBlock *InitialPreheader = CurLoop->getLoopPreheader(); 734 if (It == HoistableBranches.end()) { 735 LLVM_DEBUG(dbgs() << "LICM using " 736 << InitialPreheader->getNameOrAsOperand() 737 << " as hoist destination for " 738 << BB->getNameOrAsOperand() << "\n"); 739 HoistDestinationMap[BB] = InitialPreheader; 740 return InitialPreheader; 741 } 742 BranchInst *BI = It->first; 743 assert(std::find_if(++It, HoistableBranches.end(), HasBBAsSuccessor) == 744 HoistableBranches.end() && 745 "BB is expected to be the target of at most one branch"); 746 747 LLVMContext &C = BB->getContext(); 748 BasicBlock *TrueDest = BI->getSuccessor(0); 749 BasicBlock *FalseDest = BI->getSuccessor(1); 750 BasicBlock *CommonSucc = HoistableBranches[BI]; 751 BasicBlock *HoistTarget = getOrCreateHoistedBlock(BI->getParent()); 752 753 // Create hoisted versions of blocks that currently don't have them 754 auto CreateHoistedBlock = [&](BasicBlock *Orig) { 755 if (HoistDestinationMap.count(Orig)) 756 return HoistDestinationMap[Orig]; 757 BasicBlock *New = 758 BasicBlock::Create(C, Orig->getName() + ".licm", Orig->getParent()); 759 HoistDestinationMap[Orig] = New; 760 DT->addNewBlock(New, HoistTarget); 761 if (CurLoop->getParentLoop()) 762 CurLoop->getParentLoop()->addBasicBlockToLoop(New, *LI); 763 ++NumCreatedBlocks; 764 LLVM_DEBUG(dbgs() << "LICM created " << New->getName() 765 << " as hoist destination for " << Orig->getName() 766 << "\n"); 767 return New; 768 }; 769 BasicBlock *HoistTrueDest = CreateHoistedBlock(TrueDest); 770 BasicBlock *HoistFalseDest = CreateHoistedBlock(FalseDest); 771 BasicBlock *HoistCommonSucc = CreateHoistedBlock(CommonSucc); 772 773 // Link up these blocks with branches. 774 if (!HoistCommonSucc->getTerminator()) { 775 // The new common successor we've generated will branch to whatever that 776 // hoist target branched to. 777 BasicBlock *TargetSucc = HoistTarget->getSingleSuccessor(); 778 assert(TargetSucc && "Expected hoist target to have a single successor"); 779 HoistCommonSucc->moveBefore(TargetSucc); 780 BranchInst::Create(TargetSucc, HoistCommonSucc); 781 } 782 if (!HoistTrueDest->getTerminator()) { 783 HoistTrueDest->moveBefore(HoistCommonSucc); 784 BranchInst::Create(HoistCommonSucc, HoistTrueDest); 785 } 786 if (!HoistFalseDest->getTerminator()) { 787 HoistFalseDest->moveBefore(HoistCommonSucc); 788 BranchInst::Create(HoistCommonSucc, HoistFalseDest); 789 } 790 791 // If BI is being cloned to what was originally the preheader then 792 // HoistCommonSucc will now be the new preheader. 793 if (HoistTarget == InitialPreheader) { 794 // Phis in the loop header now need to use the new preheader. 795 InitialPreheader->replaceSuccessorsPhiUsesWith(HoistCommonSucc); 796 MSSAU->wireOldPredecessorsToNewImmediatePredecessor( 797 HoistTarget->getSingleSuccessor(), HoistCommonSucc, {HoistTarget}); 798 // The new preheader dominates the loop header. 799 DomTreeNode *PreheaderNode = DT->getNode(HoistCommonSucc); 800 DomTreeNode *HeaderNode = DT->getNode(CurLoop->getHeader()); 801 DT->changeImmediateDominator(HeaderNode, PreheaderNode); 802 // The preheader hoist destination is now the new preheader, with the 803 // exception of the hoist destination of this branch. 804 for (auto &Pair : HoistDestinationMap) 805 if (Pair.second == InitialPreheader && Pair.first != BI->getParent()) 806 Pair.second = HoistCommonSucc; 807 } 808 809 // Now finally clone BI. 810 ReplaceInstWithInst( 811 HoistTarget->getTerminator(), 812 BranchInst::Create(HoistTrueDest, HoistFalseDest, BI->getCondition())); 813 ++NumClonedBranches; 814 815 assert(CurLoop->getLoopPreheader() && 816 "Hoisting blocks should not have destroyed preheader"); 817 return HoistDestinationMap[BB]; 818 } 819 }; 820 } // namespace 821 822 // Hoisting/sinking instruction out of a loop isn't always beneficial. It's only 823 // only worthwhile if the destination block is actually colder than current 824 // block. 825 static bool worthSinkOrHoistInst(Instruction &I, BasicBlock *DstBlock, 826 OptimizationRemarkEmitter *ORE, 827 BlockFrequencyInfo *BFI) { 828 // Check block frequency only when runtime profile is available 829 // to avoid pathological cases. With static profile, lean towards 830 // hosting because it helps canonicalize the loop for vectorizer. 831 if (!DstBlock->getParent()->hasProfileData()) 832 return true; 833 834 if (!HoistSinkColdnessThreshold || !BFI) 835 return true; 836 837 BasicBlock *SrcBlock = I.getParent(); 838 if (BFI->getBlockFreq(DstBlock).getFrequency() / HoistSinkColdnessThreshold > 839 BFI->getBlockFreq(SrcBlock).getFrequency()) { 840 ORE->emit([&]() { 841 return OptimizationRemarkMissed(DEBUG_TYPE, "SinkHoistInst", &I) 842 << "failed to sink or hoist instruction because containing block " 843 "has lower frequency than destination block"; 844 }); 845 return false; 846 } 847 848 return true; 849 } 850 851 /// Walk the specified region of the CFG (defined by all blocks dominated by 852 /// the specified block, and that are in the current loop) in depth first 853 /// order w.r.t the DominatorTree. This allows us to visit definitions before 854 /// uses, allowing us to hoist a loop body in one pass without iteration. 855 /// 856 bool llvm::hoistRegion(DomTreeNode *N, AAResults *AA, LoopInfo *LI, 857 DominatorTree *DT, BlockFrequencyInfo *BFI, 858 TargetLibraryInfo *TLI, Loop *CurLoop, 859 MemorySSAUpdater *MSSAU, ScalarEvolution *SE, 860 ICFLoopSafetyInfo *SafetyInfo, 861 SinkAndHoistLICMFlags &Flags, 862 OptimizationRemarkEmitter *ORE, bool LoopNestMode) { 863 // Verify inputs. 864 assert(N != nullptr && AA != nullptr && LI != nullptr && DT != nullptr && 865 CurLoop != nullptr && MSSAU != nullptr && SafetyInfo != nullptr && 866 "Unexpected input to hoistRegion."); 867 868 ControlFlowHoister CFH(LI, DT, CurLoop, MSSAU); 869 870 // Keep track of instructions that have been hoisted, as they may need to be 871 // re-hoisted if they end up not dominating all of their uses. 872 SmallVector<Instruction *, 16> HoistedInstructions; 873 874 // For PHI hoisting to work we need to hoist blocks before their successors. 875 // We can do this by iterating through the blocks in the loop in reverse 876 // post-order. 877 LoopBlocksRPO Worklist(CurLoop); 878 Worklist.perform(LI); 879 bool Changed = false; 880 for (BasicBlock *BB : Worklist) { 881 // Only need to process the contents of this block if it is not part of a 882 // subloop (which would already have been processed). 883 if (!LoopNestMode && inSubLoop(BB, CurLoop, LI)) 884 continue; 885 886 for (Instruction &I : llvm::make_early_inc_range(*BB)) { 887 // Try constant folding this instruction. If all the operands are 888 // constants, it is technically hoistable, but it would be better to 889 // just fold it. 890 if (Constant *C = ConstantFoldInstruction( 891 &I, I.getModule()->getDataLayout(), TLI)) { 892 LLVM_DEBUG(dbgs() << "LICM folding inst: " << I << " --> " << *C 893 << '\n'); 894 // FIXME MSSA: Such replacements may make accesses unoptimized (D51960). 895 I.replaceAllUsesWith(C); 896 if (isInstructionTriviallyDead(&I, TLI)) 897 eraseInstruction(I, *SafetyInfo, MSSAU); 898 Changed = true; 899 continue; 900 } 901 902 // Try hoisting the instruction out to the preheader. We can only do 903 // this if all of the operands of the instruction are loop invariant and 904 // if it is safe to hoist the instruction. We also check block frequency 905 // to make sure instruction only gets hoisted into colder blocks. 906 // TODO: It may be safe to hoist if we are hoisting to a conditional block 907 // and we have accurately duplicated the control flow from the loop header 908 // to that block. 909 if (CurLoop->hasLoopInvariantOperands(&I) && 910 canSinkOrHoistInst(I, AA, DT, CurLoop, /*CurAST*/ nullptr, MSSAU, 911 true, &Flags, ORE) && 912 worthSinkOrHoistInst(I, CurLoop->getLoopPreheader(), ORE, BFI) && 913 isSafeToExecuteUnconditionally( 914 I, DT, TLI, CurLoop, SafetyInfo, ORE, 915 CurLoop->getLoopPreheader()->getTerminator())) { 916 hoist(I, DT, CurLoop, CFH.getOrCreateHoistedBlock(BB), SafetyInfo, 917 MSSAU, SE, ORE); 918 HoistedInstructions.push_back(&I); 919 Changed = true; 920 continue; 921 } 922 923 // Attempt to remove floating point division out of the loop by 924 // converting it to a reciprocal multiplication. 925 if (I.getOpcode() == Instruction::FDiv && I.hasAllowReciprocal() && 926 CurLoop->isLoopInvariant(I.getOperand(1))) { 927 auto Divisor = I.getOperand(1); 928 auto One = llvm::ConstantFP::get(Divisor->getType(), 1.0); 929 auto ReciprocalDivisor = BinaryOperator::CreateFDiv(One, Divisor); 930 ReciprocalDivisor->setFastMathFlags(I.getFastMathFlags()); 931 SafetyInfo->insertInstructionTo(ReciprocalDivisor, I.getParent()); 932 ReciprocalDivisor->insertBefore(&I); 933 934 auto Product = 935 BinaryOperator::CreateFMul(I.getOperand(0), ReciprocalDivisor); 936 Product->setFastMathFlags(I.getFastMathFlags()); 937 SafetyInfo->insertInstructionTo(Product, I.getParent()); 938 Product->insertAfter(&I); 939 I.replaceAllUsesWith(Product); 940 eraseInstruction(I, *SafetyInfo, MSSAU); 941 942 hoist(*ReciprocalDivisor, DT, CurLoop, CFH.getOrCreateHoistedBlock(BB), 943 SafetyInfo, MSSAU, SE, ORE); 944 HoistedInstructions.push_back(ReciprocalDivisor); 945 Changed = true; 946 continue; 947 } 948 949 auto IsInvariantStart = [&](Instruction &I) { 950 using namespace PatternMatch; 951 return I.use_empty() && 952 match(&I, m_Intrinsic<Intrinsic::invariant_start>()); 953 }; 954 auto MustExecuteWithoutWritesBefore = [&](Instruction &I) { 955 return SafetyInfo->isGuaranteedToExecute(I, DT, CurLoop) && 956 SafetyInfo->doesNotWriteMemoryBefore(I, CurLoop); 957 }; 958 if ((IsInvariantStart(I) || isGuard(&I)) && 959 CurLoop->hasLoopInvariantOperands(&I) && 960 MustExecuteWithoutWritesBefore(I)) { 961 hoist(I, DT, CurLoop, CFH.getOrCreateHoistedBlock(BB), SafetyInfo, 962 MSSAU, SE, ORE); 963 HoistedInstructions.push_back(&I); 964 Changed = true; 965 continue; 966 } 967 968 if (PHINode *PN = dyn_cast<PHINode>(&I)) { 969 if (CFH.canHoistPHI(PN)) { 970 // Redirect incoming blocks first to ensure that we create hoisted 971 // versions of those blocks before we hoist the phi. 972 for (unsigned int i = 0; i < PN->getNumIncomingValues(); ++i) 973 PN->setIncomingBlock( 974 i, CFH.getOrCreateHoistedBlock(PN->getIncomingBlock(i))); 975 hoist(*PN, DT, CurLoop, CFH.getOrCreateHoistedBlock(BB), SafetyInfo, 976 MSSAU, SE, ORE); 977 assert(DT->dominates(PN, BB) && "Conditional PHIs not expected"); 978 Changed = true; 979 continue; 980 } 981 } 982 983 // Remember possibly hoistable branches so we can actually hoist them 984 // later if needed. 985 if (BranchInst *BI = dyn_cast<BranchInst>(&I)) 986 CFH.registerPossiblyHoistableBranch(BI); 987 } 988 } 989 990 // If we hoisted instructions to a conditional block they may not dominate 991 // their uses that weren't hoisted (such as phis where some operands are not 992 // loop invariant). If so make them unconditional by moving them to their 993 // immediate dominator. We iterate through the instructions in reverse order 994 // which ensures that when we rehoist an instruction we rehoist its operands, 995 // and also keep track of where in the block we are rehoisting to to make sure 996 // that we rehoist instructions before the instructions that use them. 997 Instruction *HoistPoint = nullptr; 998 if (ControlFlowHoisting) { 999 for (Instruction *I : reverse(HoistedInstructions)) { 1000 if (!llvm::all_of(I->uses(), 1001 [&](Use &U) { return DT->dominates(I, U); })) { 1002 BasicBlock *Dominator = 1003 DT->getNode(I->getParent())->getIDom()->getBlock(); 1004 if (!HoistPoint || !DT->dominates(HoistPoint->getParent(), Dominator)) { 1005 if (HoistPoint) 1006 assert(DT->dominates(Dominator, HoistPoint->getParent()) && 1007 "New hoist point expected to dominate old hoist point"); 1008 HoistPoint = Dominator->getTerminator(); 1009 } 1010 LLVM_DEBUG(dbgs() << "LICM rehoisting to " 1011 << HoistPoint->getParent()->getNameOrAsOperand() 1012 << ": " << *I << "\n"); 1013 moveInstructionBefore(*I, *HoistPoint, *SafetyInfo, MSSAU, SE); 1014 HoistPoint = I; 1015 Changed = true; 1016 } 1017 } 1018 } 1019 if (VerifyMemorySSA) 1020 MSSAU->getMemorySSA()->verifyMemorySSA(); 1021 1022 // Now that we've finished hoisting make sure that LI and DT are still 1023 // valid. 1024 #ifdef EXPENSIVE_CHECKS 1025 if (Changed) { 1026 assert(DT->verify(DominatorTree::VerificationLevel::Fast) && 1027 "Dominator tree verification failed"); 1028 LI->verify(*DT); 1029 } 1030 #endif 1031 1032 return Changed; 1033 } 1034 1035 // Return true if LI is invariant within scope of the loop. LI is invariant if 1036 // CurLoop is dominated by an invariant.start representing the same memory 1037 // location and size as the memory location LI loads from, and also the 1038 // invariant.start has no uses. 1039 static bool isLoadInvariantInLoop(LoadInst *LI, DominatorTree *DT, 1040 Loop *CurLoop) { 1041 Value *Addr = LI->getOperand(0); 1042 const DataLayout &DL = LI->getModule()->getDataLayout(); 1043 const TypeSize LocSizeInBits = DL.getTypeSizeInBits(LI->getType()); 1044 1045 // It is not currently possible for clang to generate an invariant.start 1046 // intrinsic with scalable vector types because we don't support thread local 1047 // sizeless types and we don't permit sizeless types in structs or classes. 1048 // Furthermore, even if support is added for this in future the intrinsic 1049 // itself is defined to have a size of -1 for variable sized objects. This 1050 // makes it impossible to verify if the intrinsic envelops our region of 1051 // interest. For example, both <vscale x 32 x i8> and <vscale x 16 x i8> 1052 // types would have a -1 parameter, but the former is clearly double the size 1053 // of the latter. 1054 if (LocSizeInBits.isScalable()) 1055 return false; 1056 1057 // if the type is i8 addrspace(x)*, we know this is the type of 1058 // llvm.invariant.start operand 1059 auto *PtrInt8Ty = PointerType::get(Type::getInt8Ty(LI->getContext()), 1060 LI->getPointerAddressSpace()); 1061 unsigned BitcastsVisited = 0; 1062 // Look through bitcasts until we reach the i8* type (this is invariant.start 1063 // operand type). 1064 while (Addr->getType() != PtrInt8Ty) { 1065 auto *BC = dyn_cast<BitCastInst>(Addr); 1066 // Avoid traversing high number of bitcast uses. 1067 if (++BitcastsVisited > MaxNumUsesTraversed || !BC) 1068 return false; 1069 Addr = BC->getOperand(0); 1070 } 1071 1072 unsigned UsesVisited = 0; 1073 // Traverse all uses of the load operand value, to see if invariant.start is 1074 // one of the uses, and whether it dominates the load instruction. 1075 for (auto *U : Addr->users()) { 1076 // Avoid traversing for Load operand with high number of users. 1077 if (++UsesVisited > MaxNumUsesTraversed) 1078 return false; 1079 IntrinsicInst *II = dyn_cast<IntrinsicInst>(U); 1080 // If there are escaping uses of invariant.start instruction, the load maybe 1081 // non-invariant. 1082 if (!II || II->getIntrinsicID() != Intrinsic::invariant_start || 1083 !II->use_empty()) 1084 continue; 1085 ConstantInt *InvariantSize = cast<ConstantInt>(II->getArgOperand(0)); 1086 // The intrinsic supports having a -1 argument for variable sized objects 1087 // so we should check for that here. 1088 if (InvariantSize->isNegative()) 1089 continue; 1090 uint64_t InvariantSizeInBits = InvariantSize->getSExtValue() * 8; 1091 // Confirm the invariant.start location size contains the load operand size 1092 // in bits. Also, the invariant.start should dominate the load, and we 1093 // should not hoist the load out of a loop that contains this dominating 1094 // invariant.start. 1095 if (LocSizeInBits.getFixedSize() <= InvariantSizeInBits && 1096 DT->properlyDominates(II->getParent(), CurLoop->getHeader())) 1097 return true; 1098 } 1099 1100 return false; 1101 } 1102 1103 namespace { 1104 /// Return true if-and-only-if we know how to (mechanically) both hoist and 1105 /// sink a given instruction out of a loop. Does not address legality 1106 /// concerns such as aliasing or speculation safety. 1107 bool isHoistableAndSinkableInst(Instruction &I) { 1108 // Only these instructions are hoistable/sinkable. 1109 return (isa<LoadInst>(I) || isa<StoreInst>(I) || isa<CallInst>(I) || 1110 isa<FenceInst>(I) || isa<CastInst>(I) || isa<UnaryOperator>(I) || 1111 isa<BinaryOperator>(I) || isa<SelectInst>(I) || 1112 isa<GetElementPtrInst>(I) || isa<CmpInst>(I) || 1113 isa<InsertElementInst>(I) || isa<ExtractElementInst>(I) || 1114 isa<ShuffleVectorInst>(I) || isa<ExtractValueInst>(I) || 1115 isa<InsertValueInst>(I) || isa<FreezeInst>(I)); 1116 } 1117 /// Return true if all of the alias sets within this AST are known not to 1118 /// contain a Mod, or if MSSA knows there are no MemoryDefs in the loop. 1119 bool isReadOnly(AliasSetTracker *CurAST, const MemorySSAUpdater *MSSAU, 1120 const Loop *L) { 1121 if (CurAST) { 1122 for (AliasSet &AS : *CurAST) { 1123 if (!AS.isForwardingAliasSet() && AS.isMod()) { 1124 return false; 1125 } 1126 } 1127 return true; 1128 } else { /*MSSAU*/ 1129 for (auto *BB : L->getBlocks()) 1130 if (MSSAU->getMemorySSA()->getBlockDefs(BB)) 1131 return false; 1132 return true; 1133 } 1134 } 1135 1136 /// Return true if I is the only Instruction with a MemoryAccess in L. 1137 bool isOnlyMemoryAccess(const Instruction *I, const Loop *L, 1138 const MemorySSAUpdater *MSSAU) { 1139 for (auto *BB : L->getBlocks()) 1140 if (auto *Accs = MSSAU->getMemorySSA()->getBlockAccesses(BB)) { 1141 int NotAPhi = 0; 1142 for (const auto &Acc : *Accs) { 1143 if (isa<MemoryPhi>(&Acc)) 1144 continue; 1145 const auto *MUD = cast<MemoryUseOrDef>(&Acc); 1146 if (MUD->getMemoryInst() != I || NotAPhi++ == 1) 1147 return false; 1148 } 1149 } 1150 return true; 1151 } 1152 } 1153 1154 bool llvm::canSinkOrHoistInst(Instruction &I, AAResults *AA, DominatorTree *DT, 1155 Loop *CurLoop, AliasSetTracker *CurAST, 1156 MemorySSAUpdater *MSSAU, 1157 bool TargetExecutesOncePerLoop, 1158 SinkAndHoistLICMFlags *Flags, 1159 OptimizationRemarkEmitter *ORE) { 1160 assert(((CurAST != nullptr) ^ (MSSAU != nullptr)) && 1161 "Either AliasSetTracker or MemorySSA should be initialized."); 1162 1163 // If we don't understand the instruction, bail early. 1164 if (!isHoistableAndSinkableInst(I)) 1165 return false; 1166 1167 MemorySSA *MSSA = MSSAU ? MSSAU->getMemorySSA() : nullptr; 1168 if (MSSA) 1169 assert(Flags != nullptr && "Flags cannot be null."); 1170 1171 // Loads have extra constraints we have to verify before we can hoist them. 1172 if (LoadInst *LI = dyn_cast<LoadInst>(&I)) { 1173 if (!LI->isUnordered()) 1174 return false; // Don't sink/hoist volatile or ordered atomic loads! 1175 1176 // Loads from constant memory are always safe to move, even if they end up 1177 // in the same alias set as something that ends up being modified. 1178 if (AA->pointsToConstantMemory(LI->getOperand(0))) 1179 return true; 1180 if (LI->hasMetadata(LLVMContext::MD_invariant_load)) 1181 return true; 1182 1183 if (LI->isAtomic() && !TargetExecutesOncePerLoop) 1184 return false; // Don't risk duplicating unordered loads 1185 1186 // This checks for an invariant.start dominating the load. 1187 if (isLoadInvariantInLoop(LI, DT, CurLoop)) 1188 return true; 1189 1190 bool Invalidated; 1191 if (CurAST) 1192 Invalidated = pointerInvalidatedByLoop(MemoryLocation::get(LI), CurAST, 1193 CurLoop, AA); 1194 else 1195 Invalidated = pointerInvalidatedByLoopWithMSSA( 1196 MSSA, cast<MemoryUse>(MSSA->getMemoryAccess(LI)), CurLoop, I, *Flags); 1197 // Check loop-invariant address because this may also be a sinkable load 1198 // whose address is not necessarily loop-invariant. 1199 if (ORE && Invalidated && CurLoop->isLoopInvariant(LI->getPointerOperand())) 1200 ORE->emit([&]() { 1201 return OptimizationRemarkMissed( 1202 DEBUG_TYPE, "LoadWithLoopInvariantAddressInvalidated", LI) 1203 << "failed to move load with loop-invariant address " 1204 "because the loop may invalidate its value"; 1205 }); 1206 1207 return !Invalidated; 1208 } else if (CallInst *CI = dyn_cast<CallInst>(&I)) { 1209 // Don't sink or hoist dbg info; it's legal, but not useful. 1210 if (isa<DbgInfoIntrinsic>(I)) 1211 return false; 1212 1213 // Don't sink calls which can throw. 1214 if (CI->mayThrow()) 1215 return false; 1216 1217 // Convergent attribute has been used on operations that involve 1218 // inter-thread communication which results are implicitly affected by the 1219 // enclosing control flows. It is not safe to hoist or sink such operations 1220 // across control flow. 1221 if (CI->isConvergent()) 1222 return false; 1223 1224 using namespace PatternMatch; 1225 if (match(CI, m_Intrinsic<Intrinsic::assume>())) 1226 // Assumes don't actually alias anything or throw 1227 return true; 1228 1229 if (match(CI, m_Intrinsic<Intrinsic::experimental_widenable_condition>())) 1230 // Widenable conditions don't actually alias anything or throw 1231 return true; 1232 1233 // Handle simple cases by querying alias analysis. 1234 FunctionModRefBehavior Behavior = AA->getModRefBehavior(CI); 1235 if (Behavior == FMRB_DoesNotAccessMemory) 1236 return true; 1237 if (AAResults::onlyReadsMemory(Behavior)) { 1238 // A readonly argmemonly function only reads from memory pointed to by 1239 // it's arguments with arbitrary offsets. If we can prove there are no 1240 // writes to this memory in the loop, we can hoist or sink. 1241 if (AAResults::onlyAccessesArgPointees(Behavior)) { 1242 // TODO: expand to writeable arguments 1243 for (Value *Op : CI->args()) 1244 if (Op->getType()->isPointerTy()) { 1245 bool Invalidated; 1246 if (CurAST) 1247 Invalidated = pointerInvalidatedByLoop( 1248 MemoryLocation::getBeforeOrAfter(Op), CurAST, CurLoop, AA); 1249 else 1250 Invalidated = pointerInvalidatedByLoopWithMSSA( 1251 MSSA, cast<MemoryUse>(MSSA->getMemoryAccess(CI)), CurLoop, I, 1252 *Flags); 1253 if (Invalidated) 1254 return false; 1255 } 1256 return true; 1257 } 1258 1259 // If this call only reads from memory and there are no writes to memory 1260 // in the loop, we can hoist or sink the call as appropriate. 1261 if (isReadOnly(CurAST, MSSAU, CurLoop)) 1262 return true; 1263 } 1264 1265 // FIXME: This should use mod/ref information to see if we can hoist or 1266 // sink the call. 1267 1268 return false; 1269 } else if (auto *FI = dyn_cast<FenceInst>(&I)) { 1270 // Fences alias (most) everything to provide ordering. For the moment, 1271 // just give up if there are any other memory operations in the loop. 1272 if (CurAST) { 1273 auto Begin = CurAST->begin(); 1274 assert(Begin != CurAST->end() && "must contain FI"); 1275 if (std::next(Begin) != CurAST->end()) 1276 // constant memory for instance, TODO: handle better 1277 return false; 1278 auto *UniqueI = Begin->getUniqueInstruction(); 1279 if (!UniqueI) 1280 // other memory op, give up 1281 return false; 1282 (void)FI; // suppress unused variable warning 1283 assert(UniqueI == FI && "AS must contain FI"); 1284 return true; 1285 } else // MSSAU 1286 return isOnlyMemoryAccess(FI, CurLoop, MSSAU); 1287 } else if (auto *SI = dyn_cast<StoreInst>(&I)) { 1288 if (!SI->isUnordered()) 1289 return false; // Don't sink/hoist volatile or ordered atomic store! 1290 1291 // We can only hoist a store that we can prove writes a value which is not 1292 // read or overwritten within the loop. For those cases, we fallback to 1293 // load store promotion instead. TODO: We can extend this to cases where 1294 // there is exactly one write to the location and that write dominates an 1295 // arbitrary number of reads in the loop. 1296 if (CurAST) { 1297 auto &AS = CurAST->getAliasSetFor(MemoryLocation::get(SI)); 1298 1299 if (AS.isRef() || !AS.isMustAlias()) 1300 // Quick exit test, handled by the full path below as well. 1301 return false; 1302 auto *UniqueI = AS.getUniqueInstruction(); 1303 if (!UniqueI) 1304 // other memory op, give up 1305 return false; 1306 assert(UniqueI == SI && "AS must contain SI"); 1307 return true; 1308 } else { // MSSAU 1309 if (isOnlyMemoryAccess(SI, CurLoop, MSSAU)) 1310 return true; 1311 // If there are more accesses than the Promotion cap or no "quota" to 1312 // check clobber, then give up as we're not walking a list that long. 1313 if (Flags->tooManyMemoryAccesses() || Flags->tooManyClobberingCalls()) 1314 return false; 1315 // If there are interfering Uses (i.e. their defining access is in the 1316 // loop), or ordered loads (stored as Defs!), don't move this store. 1317 // Could do better here, but this is conservatively correct. 1318 // TODO: Cache set of Uses on the first walk in runOnLoop, update when 1319 // moving accesses. Can also extend to dominating uses. 1320 auto *SIMD = MSSA->getMemoryAccess(SI); 1321 for (auto *BB : CurLoop->getBlocks()) 1322 if (auto *Accesses = MSSA->getBlockAccesses(BB)) { 1323 for (const auto &MA : *Accesses) 1324 if (const auto *MU = dyn_cast<MemoryUse>(&MA)) { 1325 auto *MD = MU->getDefiningAccess(); 1326 if (!MSSA->isLiveOnEntryDef(MD) && 1327 CurLoop->contains(MD->getBlock())) 1328 return false; 1329 // Disable hoisting past potentially interfering loads. Optimized 1330 // Uses may point to an access outside the loop, as getClobbering 1331 // checks the previous iteration when walking the backedge. 1332 // FIXME: More precise: no Uses that alias SI. 1333 if (!Flags->getIsSink() && !MSSA->dominates(SIMD, MU)) 1334 return false; 1335 } else if (const auto *MD = dyn_cast<MemoryDef>(&MA)) { 1336 if (auto *LI = dyn_cast<LoadInst>(MD->getMemoryInst())) { 1337 (void)LI; // Silence warning. 1338 assert(!LI->isUnordered() && "Expected unordered load"); 1339 return false; 1340 } 1341 // Any call, while it may not be clobbering SI, it may be a use. 1342 if (auto *CI = dyn_cast<CallInst>(MD->getMemoryInst())) { 1343 // Check if the call may read from the memory location written 1344 // to by SI. Check CI's attributes and arguments; the number of 1345 // such checks performed is limited above by NoOfMemAccTooLarge. 1346 ModRefInfo MRI = AA->getModRefInfo(CI, MemoryLocation::get(SI)); 1347 if (isModOrRefSet(MRI)) 1348 return false; 1349 } 1350 } 1351 } 1352 auto *Source = MSSA->getSkipSelfWalker()->getClobberingMemoryAccess(SI); 1353 Flags->incrementClobberingCalls(); 1354 // If there are no clobbering Defs in the loop, store is safe to hoist. 1355 return MSSA->isLiveOnEntryDef(Source) || 1356 !CurLoop->contains(Source->getBlock()); 1357 } 1358 } 1359 1360 assert(!I.mayReadOrWriteMemory() && "unhandled aliasing"); 1361 1362 // We've established mechanical ability and aliasing, it's up to the caller 1363 // to check fault safety 1364 return true; 1365 } 1366 1367 /// Returns true if a PHINode is a trivially replaceable with an 1368 /// Instruction. 1369 /// This is true when all incoming values are that instruction. 1370 /// This pattern occurs most often with LCSSA PHI nodes. 1371 /// 1372 static bool isTriviallyReplaceablePHI(const PHINode &PN, const Instruction &I) { 1373 for (const Value *IncValue : PN.incoming_values()) 1374 if (IncValue != &I) 1375 return false; 1376 1377 return true; 1378 } 1379 1380 /// Return true if the instruction is free in the loop. 1381 static bool isFreeInLoop(const Instruction &I, const Loop *CurLoop, 1382 const TargetTransformInfo *TTI) { 1383 1384 if (const GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(&I)) { 1385 if (TTI->getUserCost(GEP, TargetTransformInfo::TCK_SizeAndLatency) != 1386 TargetTransformInfo::TCC_Free) 1387 return false; 1388 // For a GEP, we cannot simply use getUserCost because currently it 1389 // optimistically assume that a GEP will fold into addressing mode 1390 // regardless of its users. 1391 const BasicBlock *BB = GEP->getParent(); 1392 for (const User *U : GEP->users()) { 1393 const Instruction *UI = cast<Instruction>(U); 1394 if (CurLoop->contains(UI) && 1395 (BB != UI->getParent() || 1396 (!isa<StoreInst>(UI) && !isa<LoadInst>(UI)))) 1397 return false; 1398 } 1399 return true; 1400 } else 1401 return TTI->getUserCost(&I, TargetTransformInfo::TCK_SizeAndLatency) == 1402 TargetTransformInfo::TCC_Free; 1403 } 1404 1405 /// Return true if the only users of this instruction are outside of 1406 /// the loop. If this is true, we can sink the instruction to the exit 1407 /// blocks of the loop. 1408 /// 1409 /// We also return true if the instruction could be folded away in lowering. 1410 /// (e.g., a GEP can be folded into a load as an addressing mode in the loop). 1411 static bool isNotUsedOrFreeInLoop(const Instruction &I, const Loop *CurLoop, 1412 const LoopSafetyInfo *SafetyInfo, 1413 TargetTransformInfo *TTI, bool &FreeInLoop, 1414 bool LoopNestMode) { 1415 const auto &BlockColors = SafetyInfo->getBlockColors(); 1416 bool IsFree = isFreeInLoop(I, CurLoop, TTI); 1417 for (const User *U : I.users()) { 1418 const Instruction *UI = cast<Instruction>(U); 1419 if (const PHINode *PN = dyn_cast<PHINode>(UI)) { 1420 const BasicBlock *BB = PN->getParent(); 1421 // We cannot sink uses in catchswitches. 1422 if (isa<CatchSwitchInst>(BB->getTerminator())) 1423 return false; 1424 1425 // We need to sink a callsite to a unique funclet. Avoid sinking if the 1426 // phi use is too muddled. 1427 if (isa<CallInst>(I)) 1428 if (!BlockColors.empty() && 1429 BlockColors.find(const_cast<BasicBlock *>(BB))->second.size() != 1) 1430 return false; 1431 1432 if (LoopNestMode) { 1433 while (isa<PHINode>(UI) && UI->hasOneUser() && 1434 UI->getNumOperands() == 1) { 1435 if (!CurLoop->contains(UI)) 1436 break; 1437 UI = cast<Instruction>(UI->user_back()); 1438 } 1439 } 1440 } 1441 1442 if (CurLoop->contains(UI)) { 1443 if (IsFree) { 1444 FreeInLoop = true; 1445 continue; 1446 } 1447 return false; 1448 } 1449 } 1450 return true; 1451 } 1452 1453 static Instruction *cloneInstructionInExitBlock( 1454 Instruction &I, BasicBlock &ExitBlock, PHINode &PN, const LoopInfo *LI, 1455 const LoopSafetyInfo *SafetyInfo, MemorySSAUpdater *MSSAU) { 1456 Instruction *New; 1457 if (auto *CI = dyn_cast<CallInst>(&I)) { 1458 const auto &BlockColors = SafetyInfo->getBlockColors(); 1459 1460 // Sinking call-sites need to be handled differently from other 1461 // instructions. The cloned call-site needs a funclet bundle operand 1462 // appropriate for its location in the CFG. 1463 SmallVector<OperandBundleDef, 1> OpBundles; 1464 for (unsigned BundleIdx = 0, BundleEnd = CI->getNumOperandBundles(); 1465 BundleIdx != BundleEnd; ++BundleIdx) { 1466 OperandBundleUse Bundle = CI->getOperandBundleAt(BundleIdx); 1467 if (Bundle.getTagID() == LLVMContext::OB_funclet) 1468 continue; 1469 1470 OpBundles.emplace_back(Bundle); 1471 } 1472 1473 if (!BlockColors.empty()) { 1474 const ColorVector &CV = BlockColors.find(&ExitBlock)->second; 1475 assert(CV.size() == 1 && "non-unique color for exit block!"); 1476 BasicBlock *BBColor = CV.front(); 1477 Instruction *EHPad = BBColor->getFirstNonPHI(); 1478 if (EHPad->isEHPad()) 1479 OpBundles.emplace_back("funclet", EHPad); 1480 } 1481 1482 New = CallInst::Create(CI, OpBundles); 1483 } else { 1484 New = I.clone(); 1485 } 1486 1487 ExitBlock.getInstList().insert(ExitBlock.getFirstInsertionPt(), New); 1488 if (!I.getName().empty()) 1489 New->setName(I.getName() + ".le"); 1490 1491 if (MSSAU && MSSAU->getMemorySSA()->getMemoryAccess(&I)) { 1492 // Create a new MemoryAccess and let MemorySSA set its defining access. 1493 MemoryAccess *NewMemAcc = MSSAU->createMemoryAccessInBB( 1494 New, nullptr, New->getParent(), MemorySSA::Beginning); 1495 if (NewMemAcc) { 1496 if (auto *MemDef = dyn_cast<MemoryDef>(NewMemAcc)) 1497 MSSAU->insertDef(MemDef, /*RenameUses=*/true); 1498 else { 1499 auto *MemUse = cast<MemoryUse>(NewMemAcc); 1500 MSSAU->insertUse(MemUse, /*RenameUses=*/true); 1501 } 1502 } 1503 } 1504 1505 // Build LCSSA PHI nodes for any in-loop operands (if legal). Note that 1506 // this is particularly cheap because we can rip off the PHI node that we're 1507 // replacing for the number and blocks of the predecessors. 1508 // OPT: If this shows up in a profile, we can instead finish sinking all 1509 // invariant instructions, and then walk their operands to re-establish 1510 // LCSSA. That will eliminate creating PHI nodes just to nuke them when 1511 // sinking bottom-up. 1512 for (Use &Op : New->operands()) 1513 if (LI->wouldBeOutOfLoopUseRequiringLCSSA(Op.get(), PN.getParent())) { 1514 auto *OInst = cast<Instruction>(Op.get()); 1515 PHINode *OpPN = 1516 PHINode::Create(OInst->getType(), PN.getNumIncomingValues(), 1517 OInst->getName() + ".lcssa", &ExitBlock.front()); 1518 for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i) 1519 OpPN->addIncoming(OInst, PN.getIncomingBlock(i)); 1520 Op = OpPN; 1521 } 1522 return New; 1523 } 1524 1525 static void eraseInstruction(Instruction &I, ICFLoopSafetyInfo &SafetyInfo, 1526 MemorySSAUpdater *MSSAU) { 1527 if (MSSAU) 1528 MSSAU->removeMemoryAccess(&I); 1529 SafetyInfo.removeInstruction(&I); 1530 I.eraseFromParent(); 1531 } 1532 1533 static void moveInstructionBefore(Instruction &I, Instruction &Dest, 1534 ICFLoopSafetyInfo &SafetyInfo, 1535 MemorySSAUpdater *MSSAU, 1536 ScalarEvolution *SE) { 1537 SafetyInfo.removeInstruction(&I); 1538 SafetyInfo.insertInstructionTo(&I, Dest.getParent()); 1539 I.moveBefore(&Dest); 1540 if (MSSAU) 1541 if (MemoryUseOrDef *OldMemAcc = cast_or_null<MemoryUseOrDef>( 1542 MSSAU->getMemorySSA()->getMemoryAccess(&I))) 1543 MSSAU->moveToPlace(OldMemAcc, Dest.getParent(), 1544 MemorySSA::BeforeTerminator); 1545 if (SE) 1546 SE->forgetValue(&I); 1547 } 1548 1549 static Instruction *sinkThroughTriviallyReplaceablePHI( 1550 PHINode *TPN, Instruction *I, LoopInfo *LI, 1551 SmallDenseMap<BasicBlock *, Instruction *, 32> &SunkCopies, 1552 const LoopSafetyInfo *SafetyInfo, const Loop *CurLoop, 1553 MemorySSAUpdater *MSSAU) { 1554 assert(isTriviallyReplaceablePHI(*TPN, *I) && 1555 "Expect only trivially replaceable PHI"); 1556 BasicBlock *ExitBlock = TPN->getParent(); 1557 Instruction *New; 1558 auto It = SunkCopies.find(ExitBlock); 1559 if (It != SunkCopies.end()) 1560 New = It->second; 1561 else 1562 New = SunkCopies[ExitBlock] = cloneInstructionInExitBlock( 1563 *I, *ExitBlock, *TPN, LI, SafetyInfo, MSSAU); 1564 return New; 1565 } 1566 1567 static bool canSplitPredecessors(PHINode *PN, LoopSafetyInfo *SafetyInfo) { 1568 BasicBlock *BB = PN->getParent(); 1569 if (!BB->canSplitPredecessors()) 1570 return false; 1571 // It's not impossible to split EHPad blocks, but if BlockColors already exist 1572 // it require updating BlockColors for all offspring blocks accordingly. By 1573 // skipping such corner case, we can make updating BlockColors after splitting 1574 // predecessor fairly simple. 1575 if (!SafetyInfo->getBlockColors().empty() && BB->getFirstNonPHI()->isEHPad()) 1576 return false; 1577 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) { 1578 BasicBlock *BBPred = *PI; 1579 if (isa<IndirectBrInst>(BBPred->getTerminator()) || 1580 isa<CallBrInst>(BBPred->getTerminator())) 1581 return false; 1582 } 1583 return true; 1584 } 1585 1586 static void splitPredecessorsOfLoopExit(PHINode *PN, DominatorTree *DT, 1587 LoopInfo *LI, const Loop *CurLoop, 1588 LoopSafetyInfo *SafetyInfo, 1589 MemorySSAUpdater *MSSAU) { 1590 #ifndef NDEBUG 1591 SmallVector<BasicBlock *, 32> ExitBlocks; 1592 CurLoop->getUniqueExitBlocks(ExitBlocks); 1593 SmallPtrSet<BasicBlock *, 32> ExitBlockSet(ExitBlocks.begin(), 1594 ExitBlocks.end()); 1595 #endif 1596 BasicBlock *ExitBB = PN->getParent(); 1597 assert(ExitBlockSet.count(ExitBB) && "Expect the PHI is in an exit block."); 1598 1599 // Split predecessors of the loop exit to make instructions in the loop are 1600 // exposed to exit blocks through trivially replaceable PHIs while keeping the 1601 // loop in the canonical form where each predecessor of each exit block should 1602 // be contained within the loop. For example, this will convert the loop below 1603 // from 1604 // 1605 // LB1: 1606 // %v1 = 1607 // br %LE, %LB2 1608 // LB2: 1609 // %v2 = 1610 // br %LE, %LB1 1611 // LE: 1612 // %p = phi [%v1, %LB1], [%v2, %LB2] <-- non-trivially replaceable 1613 // 1614 // to 1615 // 1616 // LB1: 1617 // %v1 = 1618 // br %LE.split, %LB2 1619 // LB2: 1620 // %v2 = 1621 // br %LE.split2, %LB1 1622 // LE.split: 1623 // %p1 = phi [%v1, %LB1] <-- trivially replaceable 1624 // br %LE 1625 // LE.split2: 1626 // %p2 = phi [%v2, %LB2] <-- trivially replaceable 1627 // br %LE 1628 // LE: 1629 // %p = phi [%p1, %LE.split], [%p2, %LE.split2] 1630 // 1631 const auto &BlockColors = SafetyInfo->getBlockColors(); 1632 SmallSetVector<BasicBlock *, 8> PredBBs(pred_begin(ExitBB), pred_end(ExitBB)); 1633 while (!PredBBs.empty()) { 1634 BasicBlock *PredBB = *PredBBs.begin(); 1635 assert(CurLoop->contains(PredBB) && 1636 "Expect all predecessors are in the loop"); 1637 if (PN->getBasicBlockIndex(PredBB) >= 0) { 1638 BasicBlock *NewPred = SplitBlockPredecessors( 1639 ExitBB, PredBB, ".split.loop.exit", DT, LI, MSSAU, true); 1640 // Since we do not allow splitting EH-block with BlockColors in 1641 // canSplitPredecessors(), we can simply assign predecessor's color to 1642 // the new block. 1643 if (!BlockColors.empty()) 1644 // Grab a reference to the ColorVector to be inserted before getting the 1645 // reference to the vector we are copying because inserting the new 1646 // element in BlockColors might cause the map to be reallocated. 1647 SafetyInfo->copyColors(NewPred, PredBB); 1648 } 1649 PredBBs.remove(PredBB); 1650 } 1651 } 1652 1653 /// When an instruction is found to only be used outside of the loop, this 1654 /// function moves it to the exit blocks and patches up SSA form as needed. 1655 /// This method is guaranteed to remove the original instruction from its 1656 /// position, and may either delete it or move it to outside of the loop. 1657 /// 1658 static bool sink(Instruction &I, LoopInfo *LI, DominatorTree *DT, 1659 BlockFrequencyInfo *BFI, const Loop *CurLoop, 1660 ICFLoopSafetyInfo *SafetyInfo, MemorySSAUpdater *MSSAU, 1661 OptimizationRemarkEmitter *ORE) { 1662 bool Changed = false; 1663 LLVM_DEBUG(dbgs() << "LICM sinking instruction: " << I << "\n"); 1664 1665 // Iterate over users to be ready for actual sinking. Replace users via 1666 // unreachable blocks with undef and make all user PHIs trivially replaceable. 1667 SmallPtrSet<Instruction *, 8> VisitedUsers; 1668 for (Value::user_iterator UI = I.user_begin(), UE = I.user_end(); UI != UE;) { 1669 auto *User = cast<Instruction>(*UI); 1670 Use &U = UI.getUse(); 1671 ++UI; 1672 1673 if (VisitedUsers.count(User) || CurLoop->contains(User)) 1674 continue; 1675 1676 if (!DT->isReachableFromEntry(User->getParent())) { 1677 U = UndefValue::get(I.getType()); 1678 Changed = true; 1679 continue; 1680 } 1681 1682 // The user must be a PHI node. 1683 PHINode *PN = cast<PHINode>(User); 1684 1685 // Surprisingly, instructions can be used outside of loops without any 1686 // exits. This can only happen in PHI nodes if the incoming block is 1687 // unreachable. 1688 BasicBlock *BB = PN->getIncomingBlock(U); 1689 if (!DT->isReachableFromEntry(BB)) { 1690 U = UndefValue::get(I.getType()); 1691 Changed = true; 1692 continue; 1693 } 1694 1695 VisitedUsers.insert(PN); 1696 if (isTriviallyReplaceablePHI(*PN, I)) 1697 continue; 1698 1699 if (!canSplitPredecessors(PN, SafetyInfo)) 1700 return Changed; 1701 1702 // Split predecessors of the PHI so that we can make users trivially 1703 // replaceable. 1704 splitPredecessorsOfLoopExit(PN, DT, LI, CurLoop, SafetyInfo, MSSAU); 1705 1706 // Should rebuild the iterators, as they may be invalidated by 1707 // splitPredecessorsOfLoopExit(). 1708 UI = I.user_begin(); 1709 UE = I.user_end(); 1710 } 1711 1712 if (VisitedUsers.empty()) 1713 return Changed; 1714 1715 ORE->emit([&]() { 1716 return OptimizationRemark(DEBUG_TYPE, "InstSunk", &I) 1717 << "sinking " << ore::NV("Inst", &I); 1718 }); 1719 if (isa<LoadInst>(I)) 1720 ++NumMovedLoads; 1721 else if (isa<CallInst>(I)) 1722 ++NumMovedCalls; 1723 ++NumSunk; 1724 1725 #ifndef NDEBUG 1726 SmallVector<BasicBlock *, 32> ExitBlocks; 1727 CurLoop->getUniqueExitBlocks(ExitBlocks); 1728 SmallPtrSet<BasicBlock *, 32> ExitBlockSet(ExitBlocks.begin(), 1729 ExitBlocks.end()); 1730 #endif 1731 1732 // Clones of this instruction. Don't create more than one per exit block! 1733 SmallDenseMap<BasicBlock *, Instruction *, 32> SunkCopies; 1734 1735 // If this instruction is only used outside of the loop, then all users are 1736 // PHI nodes in exit blocks due to LCSSA form. Just RAUW them with clones of 1737 // the instruction. 1738 // First check if I is worth sinking for all uses. Sink only when it is worth 1739 // across all uses. 1740 SmallSetVector<User*, 8> Users(I.user_begin(), I.user_end()); 1741 SmallVector<PHINode *, 8> ExitPNs; 1742 for (auto *UI : Users) { 1743 auto *User = cast<Instruction>(UI); 1744 1745 if (CurLoop->contains(User)) 1746 continue; 1747 1748 PHINode *PN = cast<PHINode>(User); 1749 assert(ExitBlockSet.count(PN->getParent()) && 1750 "The LCSSA PHI is not in an exit block!"); 1751 if (!worthSinkOrHoistInst(I, PN->getParent(), ORE, BFI)) { 1752 return Changed; 1753 } 1754 1755 ExitPNs.push_back(PN); 1756 } 1757 1758 for (auto *PN : ExitPNs) { 1759 1760 // The PHI must be trivially replaceable. 1761 Instruction *New = sinkThroughTriviallyReplaceablePHI( 1762 PN, &I, LI, SunkCopies, SafetyInfo, CurLoop, MSSAU); 1763 PN->replaceAllUsesWith(New); 1764 eraseInstruction(*PN, *SafetyInfo, nullptr); 1765 Changed = true; 1766 } 1767 return Changed; 1768 } 1769 1770 /// When an instruction is found to only use loop invariant operands that 1771 /// is safe to hoist, this instruction is called to do the dirty work. 1772 /// 1773 static void hoist(Instruction &I, const DominatorTree *DT, const Loop *CurLoop, 1774 BasicBlock *Dest, ICFLoopSafetyInfo *SafetyInfo, 1775 MemorySSAUpdater *MSSAU, ScalarEvolution *SE, 1776 OptimizationRemarkEmitter *ORE) { 1777 LLVM_DEBUG(dbgs() << "LICM hoisting to " << Dest->getNameOrAsOperand() << ": " 1778 << I << "\n"); 1779 ORE->emit([&]() { 1780 return OptimizationRemark(DEBUG_TYPE, "Hoisted", &I) << "hoisting " 1781 << ore::NV("Inst", &I); 1782 }); 1783 1784 // Metadata can be dependent on conditions we are hoisting above. 1785 // Conservatively strip all metadata on the instruction unless we were 1786 // guaranteed to execute I if we entered the loop, in which case the metadata 1787 // is valid in the loop preheader. 1788 // Similarly, If I is a call and it is not guaranteed to execute in the loop, 1789 // then moving to the preheader means we should strip attributes on the call 1790 // that can cause UB since we may be hoisting above conditions that allowed 1791 // inferring those attributes. They may not be valid at the preheader. 1792 if ((I.hasMetadataOtherThanDebugLoc() || isa<CallInst>(I)) && 1793 // The check on hasMetadataOtherThanDebugLoc is to prevent us from burning 1794 // time in isGuaranteedToExecute if we don't actually have anything to 1795 // drop. It is a compile time optimization, not required for correctness. 1796 !SafetyInfo->isGuaranteedToExecute(I, DT, CurLoop)) 1797 I.dropUndefImplyingAttrsAndUnknownMetadata(); 1798 1799 if (isa<PHINode>(I)) 1800 // Move the new node to the end of the phi list in the destination block. 1801 moveInstructionBefore(I, *Dest->getFirstNonPHI(), *SafetyInfo, MSSAU, SE); 1802 else 1803 // Move the new node to the destination block, before its terminator. 1804 moveInstructionBefore(I, *Dest->getTerminator(), *SafetyInfo, MSSAU, SE); 1805 1806 I.updateLocationAfterHoist(); 1807 1808 if (isa<LoadInst>(I)) 1809 ++NumMovedLoads; 1810 else if (isa<CallInst>(I)) 1811 ++NumMovedCalls; 1812 ++NumHoisted; 1813 } 1814 1815 /// Only sink or hoist an instruction if it is not a trapping instruction, 1816 /// or if the instruction is known not to trap when moved to the preheader. 1817 /// or if it is a trapping instruction and is guaranteed to execute. 1818 static bool isSafeToExecuteUnconditionally(Instruction &Inst, 1819 const DominatorTree *DT, 1820 const TargetLibraryInfo *TLI, 1821 const Loop *CurLoop, 1822 const LoopSafetyInfo *SafetyInfo, 1823 OptimizationRemarkEmitter *ORE, 1824 const Instruction *CtxI) { 1825 if (isSafeToSpeculativelyExecute(&Inst, CtxI, DT, TLI)) 1826 return true; 1827 1828 bool GuaranteedToExecute = 1829 SafetyInfo->isGuaranteedToExecute(Inst, DT, CurLoop); 1830 1831 if (!GuaranteedToExecute) { 1832 auto *LI = dyn_cast<LoadInst>(&Inst); 1833 if (LI && CurLoop->isLoopInvariant(LI->getPointerOperand())) 1834 ORE->emit([&]() { 1835 return OptimizationRemarkMissed( 1836 DEBUG_TYPE, "LoadWithLoopInvariantAddressCondExecuted", LI) 1837 << "failed to hoist load with loop-invariant address " 1838 "because load is conditionally executed"; 1839 }); 1840 } 1841 1842 return GuaranteedToExecute; 1843 } 1844 1845 namespace { 1846 class LoopPromoter : public LoadAndStorePromoter { 1847 Value *SomePtr; // Designated pointer to store to. 1848 const SmallSetVector<Value *, 8> &PointerMustAliases; 1849 SmallVectorImpl<BasicBlock *> &LoopExitBlocks; 1850 SmallVectorImpl<Instruction *> &LoopInsertPts; 1851 SmallVectorImpl<MemoryAccess *> &MSSAInsertPts; 1852 PredIteratorCache &PredCache; 1853 MemorySSAUpdater *MSSAU; 1854 LoopInfo &LI; 1855 DebugLoc DL; 1856 int Alignment; 1857 bool UnorderedAtomic; 1858 AAMDNodes AATags; 1859 ICFLoopSafetyInfo &SafetyInfo; 1860 1861 // We're about to add a use of V in a loop exit block. Insert an LCSSA phi 1862 // (if legal) if doing so would add an out-of-loop use to an instruction 1863 // defined in-loop. 1864 Value *maybeInsertLCSSAPHI(Value *V, BasicBlock *BB) const { 1865 if (!LI.wouldBeOutOfLoopUseRequiringLCSSA(V, BB)) 1866 return V; 1867 1868 Instruction *I = cast<Instruction>(V); 1869 // We need to create an LCSSA PHI node for the incoming value and 1870 // store that. 1871 PHINode *PN = PHINode::Create(I->getType(), PredCache.size(BB), 1872 I->getName() + ".lcssa", &BB->front()); 1873 for (BasicBlock *Pred : PredCache.get(BB)) 1874 PN->addIncoming(I, Pred); 1875 return PN; 1876 } 1877 1878 public: 1879 LoopPromoter(Value *SP, ArrayRef<const Instruction *> Insts, SSAUpdater &S, 1880 const SmallSetVector<Value *, 8> &PMA, 1881 SmallVectorImpl<BasicBlock *> &LEB, 1882 SmallVectorImpl<Instruction *> &LIP, 1883 SmallVectorImpl<MemoryAccess *> &MSSAIP, PredIteratorCache &PIC, 1884 MemorySSAUpdater *MSSAU, LoopInfo &li, DebugLoc dl, 1885 int alignment, bool UnorderedAtomic, const AAMDNodes &AATags, 1886 ICFLoopSafetyInfo &SafetyInfo) 1887 : LoadAndStorePromoter(Insts, S), SomePtr(SP), PointerMustAliases(PMA), 1888 LoopExitBlocks(LEB), LoopInsertPts(LIP), MSSAInsertPts(MSSAIP), 1889 PredCache(PIC), MSSAU(MSSAU), LI(li), DL(std::move(dl)), 1890 Alignment(alignment), UnorderedAtomic(UnorderedAtomic), AATags(AATags), 1891 SafetyInfo(SafetyInfo) {} 1892 1893 bool isInstInList(Instruction *I, 1894 const SmallVectorImpl<Instruction *> &) const override { 1895 Value *Ptr; 1896 if (LoadInst *LI = dyn_cast<LoadInst>(I)) 1897 Ptr = LI->getOperand(0); 1898 else 1899 Ptr = cast<StoreInst>(I)->getPointerOperand(); 1900 return PointerMustAliases.count(Ptr); 1901 } 1902 1903 void doExtraRewritesBeforeFinalDeletion() override { 1904 // Insert stores after in the loop exit blocks. Each exit block gets a 1905 // store of the live-out values that feed them. Since we've already told 1906 // the SSA updater about the defs in the loop and the preheader 1907 // definition, it is all set and we can start using it. 1908 for (unsigned i = 0, e = LoopExitBlocks.size(); i != e; ++i) { 1909 BasicBlock *ExitBlock = LoopExitBlocks[i]; 1910 Value *LiveInValue = SSA.GetValueInMiddleOfBlock(ExitBlock); 1911 LiveInValue = maybeInsertLCSSAPHI(LiveInValue, ExitBlock); 1912 Value *Ptr = maybeInsertLCSSAPHI(SomePtr, ExitBlock); 1913 Instruction *InsertPos = LoopInsertPts[i]; 1914 StoreInst *NewSI = new StoreInst(LiveInValue, Ptr, InsertPos); 1915 if (UnorderedAtomic) 1916 NewSI->setOrdering(AtomicOrdering::Unordered); 1917 NewSI->setAlignment(Align(Alignment)); 1918 NewSI->setDebugLoc(DL); 1919 if (AATags) 1920 NewSI->setAAMetadata(AATags); 1921 1922 MemoryAccess *MSSAInsertPoint = MSSAInsertPts[i]; 1923 MemoryAccess *NewMemAcc; 1924 if (!MSSAInsertPoint) { 1925 NewMemAcc = MSSAU->createMemoryAccessInBB( 1926 NewSI, nullptr, NewSI->getParent(), MemorySSA::Beginning); 1927 } else { 1928 NewMemAcc = 1929 MSSAU->createMemoryAccessAfter(NewSI, nullptr, MSSAInsertPoint); 1930 } 1931 MSSAInsertPts[i] = NewMemAcc; 1932 MSSAU->insertDef(cast<MemoryDef>(NewMemAcc), true); 1933 // FIXME: true for safety, false may still be correct. 1934 } 1935 } 1936 1937 void instructionDeleted(Instruction *I) const override { 1938 SafetyInfo.removeInstruction(I); 1939 MSSAU->removeMemoryAccess(I); 1940 } 1941 }; 1942 1943 bool isNotCapturedBeforeOrInLoop(const Value *V, const Loop *L, 1944 DominatorTree *DT) { 1945 // We can perform the captured-before check against any instruction in the 1946 // loop header, as the loop header is reachable from any instruction inside 1947 // the loop. 1948 // TODO: ReturnCaptures=true shouldn't be necessary here. 1949 return !PointerMayBeCapturedBefore(V, /* ReturnCaptures */ true, 1950 /* StoreCaptures */ true, 1951 L->getHeader()->getTerminator(), DT); 1952 } 1953 1954 /// Return true iff we can prove that a caller of this function can not inspect 1955 /// the contents of the provided object in a well defined program. 1956 bool isKnownNonEscaping(Value *Object, const Loop *L, 1957 const TargetLibraryInfo *TLI, DominatorTree *DT) { 1958 if (isa<AllocaInst>(Object)) 1959 // Since the alloca goes out of scope, we know the caller can't retain a 1960 // reference to it and be well defined. Thus, we don't need to check for 1961 // capture. 1962 return true; 1963 1964 // For all other objects we need to know that the caller can't possibly 1965 // have gotten a reference to the object. There are two components of 1966 // that: 1967 // 1) Object can't be escaped by this function. This is what 1968 // PointerMayBeCaptured checks. 1969 // 2) Object can't have been captured at definition site. For this, we 1970 // need to know the return value is noalias. At the moment, we use a 1971 // weaker condition and handle only AllocLikeFunctions (which are 1972 // known to be noalias). TODO 1973 return isAllocLikeFn(Object, TLI) && 1974 isNotCapturedBeforeOrInLoop(Object, L, DT); 1975 } 1976 1977 } // namespace 1978 1979 /// Try to promote memory values to scalars by sinking stores out of the 1980 /// loop and moving loads to before the loop. We do this by looping over 1981 /// the stores in the loop, looking for stores to Must pointers which are 1982 /// loop invariant. 1983 /// 1984 bool llvm::promoteLoopAccessesToScalars( 1985 const SmallSetVector<Value *, 8> &PointerMustAliases, 1986 SmallVectorImpl<BasicBlock *> &ExitBlocks, 1987 SmallVectorImpl<Instruction *> &InsertPts, 1988 SmallVectorImpl<MemoryAccess *> &MSSAInsertPts, PredIteratorCache &PIC, 1989 LoopInfo *LI, DominatorTree *DT, const TargetLibraryInfo *TLI, 1990 Loop *CurLoop, MemorySSAUpdater *MSSAU, ICFLoopSafetyInfo *SafetyInfo, 1991 OptimizationRemarkEmitter *ORE) { 1992 // Verify inputs. 1993 assert(LI != nullptr && DT != nullptr && CurLoop != nullptr && 1994 SafetyInfo != nullptr && 1995 "Unexpected Input to promoteLoopAccessesToScalars"); 1996 1997 Value *SomePtr = *PointerMustAliases.begin(); 1998 BasicBlock *Preheader = CurLoop->getLoopPreheader(); 1999 2000 // It is not safe to promote a load/store from the loop if the load/store is 2001 // conditional. For example, turning: 2002 // 2003 // for () { if (c) *P += 1; } 2004 // 2005 // into: 2006 // 2007 // tmp = *P; for () { if (c) tmp +=1; } *P = tmp; 2008 // 2009 // is not safe, because *P may only be valid to access if 'c' is true. 2010 // 2011 // The safety property divides into two parts: 2012 // p1) The memory may not be dereferenceable on entry to the loop. In this 2013 // case, we can't insert the required load in the preheader. 2014 // p2) The memory model does not allow us to insert a store along any dynamic 2015 // path which did not originally have one. 2016 // 2017 // If at least one store is guaranteed to execute, both properties are 2018 // satisfied, and promotion is legal. 2019 // 2020 // This, however, is not a necessary condition. Even if no store/load is 2021 // guaranteed to execute, we can still establish these properties. 2022 // We can establish (p1) by proving that hoisting the load into the preheader 2023 // is safe (i.e. proving dereferenceability on all paths through the loop). We 2024 // can use any access within the alias set to prove dereferenceability, 2025 // since they're all must alias. 2026 // 2027 // There are two ways establish (p2): 2028 // a) Prove the location is thread-local. In this case the memory model 2029 // requirement does not apply, and stores are safe to insert. 2030 // b) Prove a store dominates every exit block. In this case, if an exit 2031 // blocks is reached, the original dynamic path would have taken us through 2032 // the store, so inserting a store into the exit block is safe. Note that this 2033 // is different from the store being guaranteed to execute. For instance, 2034 // if an exception is thrown on the first iteration of the loop, the original 2035 // store is never executed, but the exit blocks are not executed either. 2036 2037 bool DereferenceableInPH = false; 2038 bool SafeToInsertStore = false; 2039 2040 SmallVector<Instruction *, 64> LoopUses; 2041 2042 // We start with an alignment of one and try to find instructions that allow 2043 // us to prove better alignment. 2044 Align Alignment; 2045 // Keep track of which types of access we see 2046 bool SawUnorderedAtomic = false; 2047 bool SawNotAtomic = false; 2048 AAMDNodes AATags; 2049 2050 const DataLayout &MDL = Preheader->getModule()->getDataLayout(); 2051 2052 bool IsKnownThreadLocalObject = false; 2053 if (SafetyInfo->anyBlockMayThrow()) { 2054 // If a loop can throw, we have to insert a store along each unwind edge. 2055 // That said, we can't actually make the unwind edge explicit. Therefore, 2056 // we have to prove that the store is dead along the unwind edge. We do 2057 // this by proving that the caller can't have a reference to the object 2058 // after return and thus can't possibly load from the object. 2059 Value *Object = getUnderlyingObject(SomePtr); 2060 if (!isKnownNonEscaping(Object, CurLoop, TLI, DT)) 2061 return false; 2062 // Subtlety: Alloca's aren't visible to callers, but *are* potentially 2063 // visible to other threads if captured and used during their lifetimes. 2064 IsKnownThreadLocalObject = !isa<AllocaInst>(Object); 2065 } 2066 2067 // Check that all of the pointers in the alias set have the same type. We 2068 // cannot (yet) promote a memory location that is loaded and stored in 2069 // different sizes. While we are at it, collect alignment and AA info. 2070 for (Value *ASIV : PointerMustAliases) { 2071 // Check that all of the pointers in the alias set have the same type. We 2072 // cannot (yet) promote a memory location that is loaded and stored in 2073 // different sizes. 2074 if (SomePtr->getType() != ASIV->getType()) 2075 return false; 2076 2077 for (User *U : ASIV->users()) { 2078 // Ignore instructions that are outside the loop. 2079 Instruction *UI = dyn_cast<Instruction>(U); 2080 if (!UI || !CurLoop->contains(UI)) 2081 continue; 2082 2083 // If there is an non-load/store instruction in the loop, we can't promote 2084 // it. 2085 if (LoadInst *Load = dyn_cast<LoadInst>(UI)) { 2086 if (!Load->isUnordered()) 2087 return false; 2088 2089 SawUnorderedAtomic |= Load->isAtomic(); 2090 SawNotAtomic |= !Load->isAtomic(); 2091 2092 Align InstAlignment = Load->getAlign(); 2093 2094 // Note that proving a load safe to speculate requires proving 2095 // sufficient alignment at the target location. Proving it guaranteed 2096 // to execute does as well. Thus we can increase our guaranteed 2097 // alignment as well. 2098 if (!DereferenceableInPH || (InstAlignment > Alignment)) 2099 if (isSafeToExecuteUnconditionally(*Load, DT, TLI, CurLoop, 2100 SafetyInfo, ORE, 2101 Preheader->getTerminator())) { 2102 DereferenceableInPH = true; 2103 Alignment = std::max(Alignment, InstAlignment); 2104 } 2105 } else if (const StoreInst *Store = dyn_cast<StoreInst>(UI)) { 2106 // Stores *of* the pointer are not interesting, only stores *to* the 2107 // pointer. 2108 if (UI->getOperand(1) != ASIV) 2109 continue; 2110 if (!Store->isUnordered()) 2111 return false; 2112 2113 SawUnorderedAtomic |= Store->isAtomic(); 2114 SawNotAtomic |= !Store->isAtomic(); 2115 2116 // If the store is guaranteed to execute, both properties are satisfied. 2117 // We may want to check if a store is guaranteed to execute even if we 2118 // already know that promotion is safe, since it may have higher 2119 // alignment than any other guaranteed stores, in which case we can 2120 // raise the alignment on the promoted store. 2121 Align InstAlignment = Store->getAlign(); 2122 2123 if (!DereferenceableInPH || !SafeToInsertStore || 2124 (InstAlignment > Alignment)) { 2125 if (SafetyInfo->isGuaranteedToExecute(*UI, DT, CurLoop)) { 2126 DereferenceableInPH = true; 2127 SafeToInsertStore = true; 2128 Alignment = std::max(Alignment, InstAlignment); 2129 } 2130 } 2131 2132 // If a store dominates all exit blocks, it is safe to sink. 2133 // As explained above, if an exit block was executed, a dominating 2134 // store must have been executed at least once, so we are not 2135 // introducing stores on paths that did not have them. 2136 // Note that this only looks at explicit exit blocks. If we ever 2137 // start sinking stores into unwind edges (see above), this will break. 2138 if (!SafeToInsertStore) 2139 SafeToInsertStore = llvm::all_of(ExitBlocks, [&](BasicBlock *Exit) { 2140 return DT->dominates(Store->getParent(), Exit); 2141 }); 2142 2143 // If the store is not guaranteed to execute, we may still get 2144 // deref info through it. 2145 if (!DereferenceableInPH) { 2146 DereferenceableInPH = isDereferenceableAndAlignedPointer( 2147 Store->getPointerOperand(), Store->getValueOperand()->getType(), 2148 Store->getAlign(), MDL, Preheader->getTerminator(), DT, TLI); 2149 } 2150 } else 2151 return false; // Not a load or store. 2152 2153 // Merge the AA tags. 2154 if (LoopUses.empty()) { 2155 // On the first load/store, just take its AA tags. 2156 AATags = UI->getAAMetadata(); 2157 } else if (AATags) { 2158 AATags = AATags.merge(UI->getAAMetadata()); 2159 } 2160 2161 LoopUses.push_back(UI); 2162 } 2163 } 2164 2165 // If we found both an unordered atomic instruction and a non-atomic memory 2166 // access, bail. We can't blindly promote non-atomic to atomic since we 2167 // might not be able to lower the result. We can't downgrade since that 2168 // would violate memory model. Also, align 0 is an error for atomics. 2169 if (SawUnorderedAtomic && SawNotAtomic) 2170 return false; 2171 2172 // If we're inserting an atomic load in the preheader, we must be able to 2173 // lower it. We're only guaranteed to be able to lower naturally aligned 2174 // atomics. 2175 auto *SomePtrElemType = SomePtr->getType()->getPointerElementType(); 2176 if (SawUnorderedAtomic && 2177 Alignment < MDL.getTypeStoreSize(SomePtrElemType)) 2178 return false; 2179 2180 // If we couldn't prove we can hoist the load, bail. 2181 if (!DereferenceableInPH) 2182 return false; 2183 2184 // We know we can hoist the load, but don't have a guaranteed store. 2185 // Check whether the location is thread-local. If it is, then we can insert 2186 // stores along paths which originally didn't have them without violating the 2187 // memory model. 2188 if (!SafeToInsertStore) { 2189 if (IsKnownThreadLocalObject) 2190 SafeToInsertStore = true; 2191 else { 2192 Value *Object = getUnderlyingObject(SomePtr); 2193 SafeToInsertStore = 2194 (isAllocLikeFn(Object, TLI) || isa<AllocaInst>(Object)) && 2195 isNotCapturedBeforeOrInLoop(Object, CurLoop, DT); 2196 } 2197 } 2198 2199 // If we've still failed to prove we can sink the store, give up. 2200 if (!SafeToInsertStore) 2201 return false; 2202 2203 // Otherwise, this is safe to promote, lets do it! 2204 LLVM_DEBUG(dbgs() << "LICM: Promoting value stored to in loop: " << *SomePtr 2205 << '\n'); 2206 ORE->emit([&]() { 2207 return OptimizationRemark(DEBUG_TYPE, "PromoteLoopAccessesToScalar", 2208 LoopUses[0]) 2209 << "Moving accesses to memory location out of the loop"; 2210 }); 2211 ++NumPromoted; 2212 2213 // Look at all the loop uses, and try to merge their locations. 2214 std::vector<const DILocation *> LoopUsesLocs; 2215 for (auto U : LoopUses) 2216 LoopUsesLocs.push_back(U->getDebugLoc().get()); 2217 auto DL = DebugLoc(DILocation::getMergedLocations(LoopUsesLocs)); 2218 2219 // We use the SSAUpdater interface to insert phi nodes as required. 2220 SmallVector<PHINode *, 16> NewPHIs; 2221 SSAUpdater SSA(&NewPHIs); 2222 LoopPromoter Promoter(SomePtr, LoopUses, SSA, PointerMustAliases, ExitBlocks, 2223 InsertPts, MSSAInsertPts, PIC, MSSAU, *LI, DL, 2224 Alignment.value(), SawUnorderedAtomic, AATags, 2225 *SafetyInfo); 2226 2227 // Set up the preheader to have a definition of the value. It is the live-out 2228 // value from the preheader that uses in the loop will use. 2229 LoadInst *PreheaderLoad = new LoadInst( 2230 SomePtr->getType()->getPointerElementType(), SomePtr, 2231 SomePtr->getName() + ".promoted", Preheader->getTerminator()); 2232 if (SawUnorderedAtomic) 2233 PreheaderLoad->setOrdering(AtomicOrdering::Unordered); 2234 PreheaderLoad->setAlignment(Alignment); 2235 PreheaderLoad->setDebugLoc(DebugLoc()); 2236 if (AATags) 2237 PreheaderLoad->setAAMetadata(AATags); 2238 SSA.AddAvailableValue(Preheader, PreheaderLoad); 2239 2240 MemoryAccess *PreheaderLoadMemoryAccess = MSSAU->createMemoryAccessInBB( 2241 PreheaderLoad, nullptr, PreheaderLoad->getParent(), MemorySSA::End); 2242 MemoryUse *NewMemUse = cast<MemoryUse>(PreheaderLoadMemoryAccess); 2243 MSSAU->insertUse(NewMemUse, /*RenameUses=*/true); 2244 2245 if (VerifyMemorySSA) 2246 MSSAU->getMemorySSA()->verifyMemorySSA(); 2247 // Rewrite all the loads in the loop and remember all the definitions from 2248 // stores in the loop. 2249 Promoter.run(LoopUses); 2250 2251 if (VerifyMemorySSA) 2252 MSSAU->getMemorySSA()->verifyMemorySSA(); 2253 // If the SSAUpdater didn't use the load in the preheader, just zap it now. 2254 if (PreheaderLoad->use_empty()) 2255 eraseInstruction(*PreheaderLoad, *SafetyInfo, MSSAU); 2256 2257 return true; 2258 } 2259 2260 static void foreachMemoryAccess(MemorySSA *MSSA, Loop *L, 2261 function_ref<void(Instruction *)> Fn) { 2262 for (const BasicBlock *BB : L->blocks()) 2263 if (const auto *Accesses = MSSA->getBlockAccesses(BB)) 2264 for (const auto &Access : *Accesses) 2265 if (const auto *MUD = dyn_cast<MemoryUseOrDef>(&Access)) 2266 Fn(MUD->getMemoryInst()); 2267 } 2268 2269 static SmallVector<SmallSetVector<Value *, 8>, 0> 2270 collectPromotionCandidates(MemorySSA *MSSA, AliasAnalysis *AA, Loop *L) { 2271 AliasSetTracker AST(*AA); 2272 2273 auto IsPotentiallyPromotable = [L](const Instruction *I) { 2274 if (const auto *SI = dyn_cast<StoreInst>(I)) 2275 return L->isLoopInvariant(SI->getPointerOperand()); 2276 if (const auto *LI = dyn_cast<LoadInst>(I)) 2277 return L->isLoopInvariant(LI->getPointerOperand()); 2278 return false; 2279 }; 2280 2281 // Populate AST with potentially promotable accesses and remove them from 2282 // MaybePromotable, so they will not be checked again on the next iteration. 2283 SmallPtrSet<Value *, 16> AttemptingPromotion; 2284 foreachMemoryAccess(MSSA, L, [&](Instruction *I) { 2285 if (IsPotentiallyPromotable(I)) { 2286 AttemptingPromotion.insert(I); 2287 AST.add(I); 2288 } 2289 }); 2290 2291 // We're only interested in must-alias sets that contain a mod. 2292 SmallVector<const AliasSet *, 8> Sets; 2293 for (AliasSet &AS : AST) 2294 if (!AS.isForwardingAliasSet() && AS.isMod() && AS.isMustAlias()) 2295 Sets.push_back(&AS); 2296 2297 if (Sets.empty()) 2298 return {}; // Nothing to promote... 2299 2300 // Discard any sets for which there is an aliasing non-promotable access. 2301 foreachMemoryAccess(MSSA, L, [&](Instruction *I) { 2302 if (AttemptingPromotion.contains(I)) 2303 return; 2304 2305 llvm::erase_if(Sets, [&](const AliasSet *AS) { 2306 return AS->aliasesUnknownInst(I, *AA); 2307 }); 2308 }); 2309 2310 SmallVector<SmallSetVector<Value *, 8>, 0> Result; 2311 for (const AliasSet *Set : Sets) { 2312 SmallSetVector<Value *, 8> PointerMustAliases; 2313 for (const auto &ASI : *Set) 2314 PointerMustAliases.insert(ASI.getValue()); 2315 Result.push_back(std::move(PointerMustAliases)); 2316 } 2317 2318 return Result; 2319 } 2320 2321 static bool pointerInvalidatedByLoop(MemoryLocation MemLoc, 2322 AliasSetTracker *CurAST, Loop *CurLoop, 2323 AAResults *AA) { 2324 return CurAST->getAliasSetFor(MemLoc).isMod(); 2325 } 2326 2327 bool pointerInvalidatedByLoopWithMSSA(MemorySSA *MSSA, MemoryUse *MU, 2328 Loop *CurLoop, Instruction &I, 2329 SinkAndHoistLICMFlags &Flags) { 2330 // For hoisting, use the walker to determine safety 2331 if (!Flags.getIsSink()) { 2332 MemoryAccess *Source; 2333 // See declaration of SetLicmMssaOptCap for usage details. 2334 if (Flags.tooManyClobberingCalls()) 2335 Source = MU->getDefiningAccess(); 2336 else { 2337 Source = MSSA->getSkipSelfWalker()->getClobberingMemoryAccess(MU); 2338 Flags.incrementClobberingCalls(); 2339 } 2340 return !MSSA->isLiveOnEntryDef(Source) && 2341 CurLoop->contains(Source->getBlock()); 2342 } 2343 2344 // For sinking, we'd need to check all Defs below this use. The getClobbering 2345 // call will look on the backedge of the loop, but will check aliasing with 2346 // the instructions on the previous iteration. 2347 // For example: 2348 // for (i ... ) 2349 // load a[i] ( Use (LoE) 2350 // store a[i] ( 1 = Def (2), with 2 = Phi for the loop. 2351 // i++; 2352 // The load sees no clobbering inside the loop, as the backedge alias check 2353 // does phi translation, and will check aliasing against store a[i-1]. 2354 // However sinking the load outside the loop, below the store is incorrect. 2355 2356 // For now, only sink if there are no Defs in the loop, and the existing ones 2357 // precede the use and are in the same block. 2358 // FIXME: Increase precision: Safe to sink if Use post dominates the Def; 2359 // needs PostDominatorTreeAnalysis. 2360 // FIXME: More precise: no Defs that alias this Use. 2361 if (Flags.tooManyMemoryAccesses()) 2362 return true; 2363 for (auto *BB : CurLoop->getBlocks()) 2364 if (pointerInvalidatedByBlockWithMSSA(*BB, *MSSA, *MU)) 2365 return true; 2366 // When sinking, the source block may not be part of the loop so check it. 2367 if (!CurLoop->contains(&I)) 2368 return pointerInvalidatedByBlockWithMSSA(*I.getParent(), *MSSA, *MU); 2369 2370 return false; 2371 } 2372 2373 bool pointerInvalidatedByBlockWithMSSA(BasicBlock &BB, MemorySSA &MSSA, 2374 MemoryUse &MU) { 2375 if (const auto *Accesses = MSSA.getBlockDefs(&BB)) 2376 for (const auto &MA : *Accesses) 2377 if (const auto *MD = dyn_cast<MemoryDef>(&MA)) 2378 if (MU.getBlock() != MD->getBlock() || !MSSA.locallyDominates(MD, &MU)) 2379 return true; 2380 return false; 2381 } 2382 2383 /// Little predicate that returns true if the specified basic block is in 2384 /// a subloop of the current one, not the current one itself. 2385 /// 2386 static bool inSubLoop(BasicBlock *BB, Loop *CurLoop, LoopInfo *LI) { 2387 assert(CurLoop->contains(BB) && "Only valid if BB is IN the loop"); 2388 return LI->getLoopFor(BB) != CurLoop; 2389 } 2390