LLVM  8.0.1
LoopPassManager.cpp
Go to the documentation of this file.
1 //===- LoopPassManager.cpp - Loop pass management -------------------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
11 #include "llvm/Analysis/LoopInfo.h"
12 
13 using namespace llvm;
14 
15 // Explicit template instantiations and specialization defininitions for core
16 // template typedefs.
17 namespace llvm {
18 template class PassManager<Loop, LoopAnalysisManager,
20 
21 /// Explicitly specialize the pass manager's run method to handle loop nest
22 /// structure updates.
23 template <>
25 PassManager<Loop, LoopAnalysisManager, LoopStandardAnalysisResults &,
26  LPMUpdater &>::run(Loop &L, LoopAnalysisManager &AM,
27  LoopStandardAnalysisResults &AR, LPMUpdater &U) {
29 
30  if (DebugLogging)
31  dbgs() << "Starting Loop pass manager run.\n";
32 
33  // Request PassInstrumentation from analysis manager, will use it to run
34  // instrumenting callbacks for the passes later.
36  for (auto &Pass : Passes) {
37  if (DebugLogging)
38  dbgs() << "Running pass: " << Pass->name() << " on " << L;
39 
40  // Check the PassInstrumentation's BeforePass callbacks before running the
41  // pass, skip its execution completely if asked to (callback returns false).
42  if (!PI.runBeforePass<Loop>(*Pass, L))
43  continue;
44 
45  PreservedAnalyses PassPA = Pass->run(L, AM, AR, U);
46 
47  // do not pass deleted Loop into the instrumentation
48  if (U.skipCurrentLoop())
49  PI.runAfterPassInvalidated<Loop>(*Pass);
50  else
51  PI.runAfterPass<Loop>(*Pass, L);
52 
53  // If the loop was deleted, abort the run and return to the outer walk.
54  if (U.skipCurrentLoop()) {
55  PA.intersect(std::move(PassPA));
56  break;
57  }
58 
59 #ifndef NDEBUG
60  // Verify the loop structure and LCSSA form before visiting the loop.
61  L.verifyLoop();
62  assert(L.isRecursivelyLCSSAForm(AR.DT, AR.LI) &&
63  "Loops must remain in LCSSA form!");
64 #endif
65 
66  // Update the analysis manager as each pass runs and potentially
67  // invalidates analyses.
68  AM.invalidate(L, PassPA);
69 
70  // Finally, we intersect the final preserved analyses to compute the
71  // aggregate preserved set for this pass manager.
72  PA.intersect(std::move(PassPA));
73 
74  // FIXME: Historically, the pass managers all called the LLVM context's
75  // yield function here. We don't have a generic way to acquire the
76  // context and it isn't yet clear what the right pattern is for yielding
77  // in the new pass manager so it is currently omitted.
78  // ...getContext().yield();
79  }
80 
81  // Invalidation for the current loop should be handled above, and other loop
82  // analysis results shouldn't be impacted by runs over this loop. Therefore,
83  // the remaining analysis results in the AnalysisManager are preserved. We
84  // mark this with a set so that we don't need to inspect each one
85  // individually.
86  // FIXME: This isn't correct! This loop and all nested loops' analyses should
87  // be preserved, but unrolling should invalidate the parent loop's analyses.
89 
90  if (DebugLogging)
91  dbgs() << "Finished Loop pass manager run.\n";
92 
93  return PA;
94 }
95 }
96 
98 PrintLoopPass::PrintLoopPass(raw_ostream &OS, const std::string &Banner)
99  : OS(OS), Banner(Banner) {}
100 
103  LPMUpdater &) {
104  printLoop(L, OS, Banner);
105  return PreservedAnalyses::all();
106 }
Pass interface - Implemented by all &#39;passes&#39;.
Definition: Pass.h:81
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
Definition: PassManager.h:770
This class represents lattice values for constants.
Definition: AllocatorList.h:24
This header provides classes for managing a pipeline of passes over loops in LLVM IR...
void intersect(const PreservedAnalyses &Arg)
Intersect this set with another in place.
Definition: PassManager.h:226
The adaptor from a function pass to a loop pass computes these analyses and makes them available to t...
bool skipCurrentLoop() const
This can be queried by loop passes which run other loop passes (like pass managers) to know whether t...
bool runBeforePass(const PassT &Pass, const IRUnitT &IR) const
BeforePass instrumentation point - takes Pass instance to be executed and constant reference to IR it...
AnalysisManager< Loop, LoopStandardAnalysisResults & > LoopAnalysisManager
The loop analysis manager.
A set of analyses that are preserved following a run of a transformation pass.
Definition: PassManager.h:154
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition: PassManager.h:160
Pseudo-analysis pass that exposes the PassInstrumentation to pass managers.
Definition: PassManager.h:575
This class provides an interface for updating the loop pass manager based on mutations to the loop ne...
print lazy value Lazy Value Info Printer Pass
void runAfterPass(const PassT &Pass, const IRUnitT &IR) const
AfterPass instrumentation point - takes Pass instance that has just been executed and constant refere...
void runAfterPassInvalidated(const PassT &Pass) const
AfterPassInvalidated instrumentation point - takes Pass instance that has just been executed...
void invalidate(IRUnitT &IR)
Invalidate a specific analysis pass for an IR module.
Definition: PassManager.h:842
PreservedAnalyses run(Loop &L, LoopAnalysisManager &, LoopStandardAnalysisResults &, LPMUpdater &)
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:133
Manages a sequence of passes over a particular unit of IR.
Definition: PassManager.h:458
Represents a single loop in the control flow graph.
Definition: LoopInfo.h:465
void preserveSet()
Mark an analysis set as preserved.
Definition: PassManager.h:190
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This templated class represents "all analyses that operate over <a particular IR unit>" (e...
Definition: PassManager.h:92
This class implements an extremely fast bulk output stream that can only output to a stream...
Definition: raw_ostream.h:46
A container for analyses that lazily runs them and caches their results.
This class provides instrumentation entry points for the Pass Manager, doing calls to callbacks regis...
void printLoop(Loop &L, raw_ostream &OS, const std::string &Banner="")
Function to print a loop&#39;s contents as LLVM&#39;s text IR assembly.
Definition: LoopInfo.cpp:690