1 //===- LoopPassManager.cpp - Loop pass management -------------------------===// 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 #include "llvm/Transforms/Scalar/LoopPassManager.h" 10 #include "llvm/Analysis/AssumptionCache.h" 11 #include "llvm/Analysis/BasicAliasAnalysis.h" 12 #include "llvm/Analysis/BlockFrequencyInfo.h" 13 #include "llvm/Analysis/GlobalsModRef.h" 14 #include "llvm/Analysis/MemorySSA.h" 15 #include "llvm/Analysis/ScalarEvolutionAliasAnalysis.h" 16 #include "llvm/Analysis/TargetLibraryInfo.h" 17 #include "llvm/Support/Debug.h" 18 #include "llvm/Support/TimeProfiler.h" 19 20 using namespace llvm; 21 22 namespace llvm { 23 24 /// Explicitly specialize the pass manager's run method to handle loop nest 25 /// structure updates. 26 PreservedAnalyses 27 PassManager<Loop, LoopAnalysisManager, LoopStandardAnalysisResults &, 28 LPMUpdater &>::run(Loop &L, LoopAnalysisManager &AM, 29 LoopStandardAnalysisResults &AR, LPMUpdater &U) { 30 // Runs loop-nest passes only when the current loop is a top-level one. 31 PreservedAnalyses PA = (L.isOutermost() && !LoopNestPasses.empty()) 32 ? runWithLoopNestPasses(L, AM, AR, U) 33 : runWithoutLoopNestPasses(L, AM, AR, U); 34 35 // Invalidation for the current loop should be handled above, and other loop 36 // analysis results shouldn't be impacted by runs over this loop. Therefore, 37 // the remaining analysis results in the AnalysisManager are preserved. We 38 // mark this with a set so that we don't need to inspect each one 39 // individually. 40 // FIXME: This isn't correct! This loop and all nested loops' analyses should 41 // be preserved, but unrolling should invalidate the parent loop's analyses. 42 PA.preserveSet<AllAnalysesOn<Loop>>(); 43 44 return PA; 45 } 46 47 void PassManager<Loop, LoopAnalysisManager, LoopStandardAnalysisResults &, 48 LPMUpdater &>::printPipeline(raw_ostream &OS, 49 function_ref<StringRef(StringRef)> 50 MapClassName2PassName) { 51 for (unsigned Idx = 0, Size = LoopPasses.size(); Idx != Size; ++Idx) { 52 auto *P = LoopPasses[Idx].get(); 53 P->printPipeline(OS, MapClassName2PassName); 54 if (Idx + 1 < Size) 55 OS << ","; 56 } 57 } 58 59 // Run both loop passes and loop-nest passes on top-level loop \p L. 60 PreservedAnalyses 61 LoopPassManager::runWithLoopNestPasses(Loop &L, LoopAnalysisManager &AM, 62 LoopStandardAnalysisResults &AR, 63 LPMUpdater &U) { 64 assert(L.isOutermost() && 65 "Loop-nest passes should only run on top-level loops."); 66 PreservedAnalyses PA = PreservedAnalyses::all(); 67 68 // Request PassInstrumentation from analysis manager, will use it to run 69 // instrumenting callbacks for the passes later. 70 PassInstrumentation PI = AM.getResult<PassInstrumentationAnalysis>(L, AR); 71 72 unsigned LoopPassIndex = 0, LoopNestPassIndex = 0; 73 74 // `LoopNestPtr` points to the `LoopNest` object for the current top-level 75 // loop and `IsLoopNestPtrValid` indicates whether the pointer is still valid. 76 // The `LoopNest` object will have to be re-constructed if the pointer is 77 // invalid when encountering a loop-nest pass. 78 std::unique_ptr<LoopNest> LoopNestPtr; 79 bool IsLoopNestPtrValid = false; 80 81 for (size_t I = 0, E = IsLoopNestPass.size(); I != E; ++I) { 82 Optional<PreservedAnalyses> PassPA; 83 if (!IsLoopNestPass[I]) { 84 // The `I`-th pass is a loop pass. 85 auto &Pass = LoopPasses[LoopPassIndex++]; 86 PassPA = runSinglePass(L, Pass, AM, AR, U, PI); 87 } else { 88 // The `I`-th pass is a loop-nest pass. 89 auto &Pass = LoopNestPasses[LoopNestPassIndex++]; 90 91 // If the loop-nest object calculated before is no longer valid, 92 // re-calculate it here before running the loop-nest pass. 93 if (!IsLoopNestPtrValid) { 94 LoopNestPtr = LoopNest::getLoopNest(L, AR.SE); 95 IsLoopNestPtrValid = true; 96 } 97 PassPA = runSinglePass(*LoopNestPtr, Pass, AM, AR, U, PI); 98 } 99 100 // `PassPA` is `None` means that the before-pass callbacks in 101 // `PassInstrumentation` return false. The pass does not run in this case, 102 // so we can skip the following procedure. 103 if (!PassPA) 104 continue; 105 106 // If the loop was deleted, abort the run and return to the outer walk. 107 if (U.skipCurrentLoop()) { 108 PA.intersect(std::move(*PassPA)); 109 break; 110 } 111 112 // Update the analysis manager as each pass runs and potentially 113 // invalidates analyses. 114 AM.invalidate(L, *PassPA); 115 116 // Finally, we intersect the final preserved analyses to compute the 117 // aggregate preserved set for this pass manager. 118 PA.intersect(std::move(*PassPA)); 119 120 // Check if the current pass preserved the loop-nest object or not. 121 IsLoopNestPtrValid &= PassPA->getChecker<LoopNestAnalysis>().preserved(); 122 123 // After running the loop pass, the parent loop might change and we need to 124 // notify the updater, otherwise U.ParentL might gets outdated and triggers 125 // assertion failures in addSiblingLoops and addChildLoops. 126 U.setParentLoop(L.getParentLoop()); 127 } 128 return PA; 129 } 130 131 // Run all loop passes on loop \p L. Loop-nest passes don't run either because 132 // \p L is not a top-level one or simply because there are no loop-nest passes 133 // in the pass manager at all. 134 PreservedAnalyses 135 LoopPassManager::runWithoutLoopNestPasses(Loop &L, LoopAnalysisManager &AM, 136 LoopStandardAnalysisResults &AR, 137 LPMUpdater &U) { 138 PreservedAnalyses PA = PreservedAnalyses::all(); 139 140 // Request PassInstrumentation from analysis manager, will use it to run 141 // instrumenting callbacks for the passes later. 142 PassInstrumentation PI = AM.getResult<PassInstrumentationAnalysis>(L, AR); 143 for (auto &Pass : LoopPasses) { 144 Optional<PreservedAnalyses> PassPA = runSinglePass(L, Pass, AM, AR, U, PI); 145 146 // `PassPA` is `None` means that the before-pass callbacks in 147 // `PassInstrumentation` return false. The pass does not run in this case, 148 // so we can skip the following procedure. 149 if (!PassPA) 150 continue; 151 152 // If the loop was deleted, abort the run and return to the outer walk. 153 if (U.skipCurrentLoop()) { 154 PA.intersect(std::move(*PassPA)); 155 break; 156 } 157 158 // Update the analysis manager as each pass runs and potentially 159 // invalidates analyses. 160 AM.invalidate(L, *PassPA); 161 162 // Finally, we intersect the final preserved analyses to compute the 163 // aggregate preserved set for this pass manager. 164 PA.intersect(std::move(*PassPA)); 165 166 // After running the loop pass, the parent loop might change and we need to 167 // notify the updater, otherwise U.ParentL might gets outdated and triggers 168 // assertion failures in addSiblingLoops and addChildLoops. 169 U.setParentLoop(L.getParentLoop()); 170 } 171 return PA; 172 } 173 } // namespace llvm 174 175 void FunctionToLoopPassAdaptor::printPipeline( 176 raw_ostream &OS, function_ref<StringRef(StringRef)> MapClassName2PassName) { 177 OS << (UseMemorySSA ? "loop-mssa(" : "loop("); 178 Pass->printPipeline(OS, MapClassName2PassName); 179 OS << ")"; 180 } 181 PreservedAnalyses FunctionToLoopPassAdaptor::run(Function &F, 182 FunctionAnalysisManager &AM) { 183 // Before we even compute any loop analyses, first run a miniature function 184 // pass pipeline to put loops into their canonical form. Note that we can 185 // directly build up function analyses after this as the function pass 186 // manager handles all the invalidation at that layer. 187 PassInstrumentation PI = AM.getResult<PassInstrumentationAnalysis>(F); 188 189 PreservedAnalyses PA = PreservedAnalyses::all(); 190 // Check the PassInstrumentation's BeforePass callbacks before running the 191 // canonicalization pipeline. 192 if (PI.runBeforePass<Function>(LoopCanonicalizationFPM, F)) { 193 PA = LoopCanonicalizationFPM.run(F, AM); 194 PI.runAfterPass<Function>(LoopCanonicalizationFPM, F, PA); 195 } 196 197 // Get the loop structure for this function 198 LoopInfo &LI = AM.getResult<LoopAnalysis>(F); 199 200 // If there are no loops, there is nothing to do here. 201 if (LI.empty()) 202 return PA; 203 204 // Get the analysis results needed by loop passes. 205 MemorySSA *MSSA = 206 UseMemorySSA ? (&AM.getResult<MemorySSAAnalysis>(F).getMSSA()) : nullptr; 207 BlockFrequencyInfo *BFI = UseBlockFrequencyInfo && F.hasProfileData() 208 ? (&AM.getResult<BlockFrequencyAnalysis>(F)) 209 : nullptr; 210 LoopStandardAnalysisResults LAR = {AM.getResult<AAManager>(F), 211 AM.getResult<AssumptionAnalysis>(F), 212 AM.getResult<DominatorTreeAnalysis>(F), 213 AM.getResult<LoopAnalysis>(F), 214 AM.getResult<ScalarEvolutionAnalysis>(F), 215 AM.getResult<TargetLibraryAnalysis>(F), 216 AM.getResult<TargetIRAnalysis>(F), 217 BFI, 218 MSSA}; 219 220 // Setup the loop analysis manager from its proxy. It is important that 221 // this is only done when there are loops to process and we have built the 222 // LoopStandardAnalysisResults object. The loop analyses cached in this 223 // manager have access to those analysis results and so it must invalidate 224 // itself when they go away. 225 auto &LAMFP = AM.getResult<LoopAnalysisManagerFunctionProxy>(F); 226 if (UseMemorySSA) 227 LAMFP.markMSSAUsed(); 228 LoopAnalysisManager &LAM = LAMFP.getManager(); 229 230 // A postorder worklist of loops to process. 231 SmallPriorityWorklist<Loop *, 4> Worklist; 232 233 // Register the worklist and loop analysis manager so that loop passes can 234 // update them when they mutate the loop nest structure. 235 LPMUpdater Updater(Worklist, LAM, LoopNestMode); 236 237 // Add the loop nests in the reverse order of LoopInfo. See method 238 // declaration. 239 if (!LoopNestMode) { 240 appendLoopsToWorklist(LI, Worklist); 241 } else { 242 for (Loop *L : LI) 243 Worklist.insert(L); 244 } 245 246 #ifndef NDEBUG 247 PI.pushBeforeNonSkippedPassCallback([&LAR, &LI](StringRef PassID, Any IR) { 248 if (isSpecialPass(PassID, {"PassManager"})) 249 return; 250 assert(any_isa<const Loop *>(IR) || any_isa<const LoopNest *>(IR)); 251 const Loop *L = any_isa<const Loop *>(IR) 252 ? any_cast<const Loop *>(IR) 253 : &any_cast<const LoopNest *>(IR)->getOutermostLoop(); 254 assert(L && "Loop should be valid for printing"); 255 256 // Verify the loop structure and LCSSA form before visiting the loop. 257 L->verifyLoop(); 258 assert(L->isRecursivelyLCSSAForm(LAR.DT, LI) && 259 "Loops must remain in LCSSA form!"); 260 }); 261 #endif 262 263 do { 264 Loop *L = Worklist.pop_back_val(); 265 assert(!(LoopNestMode && L->getParentLoop()) && 266 "L should be a top-level loop in loop-nest mode."); 267 268 // Reset the update structure for this loop. 269 Updater.CurrentL = L; 270 Updater.SkipCurrentLoop = false; 271 272 #ifndef NDEBUG 273 // Save a parent loop pointer for asserts. 274 Updater.ParentL = L->getParentLoop(); 275 #endif 276 // Check the PassInstrumentation's BeforePass callbacks before running the 277 // pass, skip its execution completely if asked to (callback returns 278 // false). 279 if (!PI.runBeforePass<Loop>(*Pass, *L)) 280 continue; 281 282 PreservedAnalyses PassPA; 283 { 284 TimeTraceScope TimeScope(Pass->name()); 285 PassPA = Pass->run(*L, LAM, LAR, Updater); 286 } 287 288 // Do not pass deleted Loop into the instrumentation. 289 if (Updater.skipCurrentLoop()) 290 PI.runAfterPassInvalidated<Loop>(*Pass, PassPA); 291 else 292 PI.runAfterPass<Loop>(*Pass, *L, PassPA); 293 294 if (LAR.MSSA && !PassPA.getChecker<MemorySSAAnalysis>().preserved()) 295 report_fatal_error("Loop pass manager using MemorySSA contains a pass " 296 "that does not preserve MemorySSA"); 297 298 #ifndef NDEBUG 299 // LoopAnalysisResults should always be valid. 300 // Note that we don't LAR.SE.verify() because that can change observed SE 301 // queries. See PR44815. 302 if (VerifyDomInfo) 303 LAR.DT.verify(); 304 if (VerifyLoopInfo) 305 LAR.LI.verify(LAR.DT); 306 if (LAR.MSSA && VerifyMemorySSA) 307 LAR.MSSA->verifyMemorySSA(); 308 #endif 309 310 // If the loop hasn't been deleted, we need to handle invalidation here. 311 if (!Updater.skipCurrentLoop()) 312 // We know that the loop pass couldn't have invalidated any other 313 // loop's analyses (that's the contract of a loop pass), so directly 314 // handle the loop analysis manager's invalidation here. 315 LAM.invalidate(*L, PassPA); 316 317 // Then intersect the preserved set so that invalidation of module 318 // analyses will eventually occur when the module pass completes. 319 PA.intersect(std::move(PassPA)); 320 } while (!Worklist.empty()); 321 322 #ifndef NDEBUG 323 PI.popBeforeNonSkippedPassCallback(); 324 #endif 325 326 // By definition we preserve the proxy. We also preserve all analyses on 327 // Loops. This precludes *any* invalidation of loop analyses by the proxy, 328 // but that's OK because we've taken care to invalidate analyses in the 329 // loop analysis manager incrementally above. 330 PA.preserveSet<AllAnalysesOn<Loop>>(); 331 PA.preserve<LoopAnalysisManagerFunctionProxy>(); 332 // We also preserve the set of standard analyses. 333 PA.preserve<DominatorTreeAnalysis>(); 334 PA.preserve<LoopAnalysis>(); 335 PA.preserve<ScalarEvolutionAnalysis>(); 336 if (UseBlockFrequencyInfo && F.hasProfileData()) 337 PA.preserve<BlockFrequencyAnalysis>(); 338 if (UseMemorySSA) 339 PA.preserve<MemorySSAAnalysis>(); 340 return PA; 341 } 342 343 PrintLoopPass::PrintLoopPass() : OS(dbgs()) {} 344 PrintLoopPass::PrintLoopPass(raw_ostream &OS, const std::string &Banner) 345 : OS(OS), Banner(Banner) {} 346 347 PreservedAnalyses PrintLoopPass::run(Loop &L, LoopAnalysisManager &, 348 LoopStandardAnalysisResults &, 349 LPMUpdater &) { 350 printLoop(L, OS, Banner); 351 return PreservedAnalyses::all(); 352 } 353