xref: /freebsd/contrib/llvm-project/llvm/include/llvm/IR/LegacyPassManagers.h (revision 1165fc9a526630487a1feb63daef65c5aee1a583)
1 //===- LegacyPassManagers.h - Legacy Pass Infrastructure --------*- C++ -*-===//
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 file declares the LLVM Pass Manager infrastructure.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #ifndef LLVM_IR_LEGACYPASSMANAGERS_H
14 #define LLVM_IR_LEGACYPASSMANAGERS_H
15 
16 #include "llvm/ADT/DenseMap.h"
17 #include "llvm/ADT/FoldingSet.h"
18 #include "llvm/ADT/SmallPtrSet.h"
19 #include "llvm/ADT/SmallVector.h"
20 #include "llvm/Pass.h"
21 #include <vector>
22 
23 //===----------------------------------------------------------------------===//
24 // Overview:
25 // The Pass Manager Infrastructure manages passes. It's responsibilities are:
26 //
27 //   o Manage optimization pass execution order
28 //   o Make required Analysis information available before pass P is run
29 //   o Release memory occupied by dead passes
30 //   o If Analysis information is dirtied by a pass then regenerate Analysis
31 //     information before it is consumed by another pass.
32 //
33 // Pass Manager Infrastructure uses multiple pass managers.  They are
34 // PassManager, FunctionPassManager, MPPassManager, FPPassManager, BBPassManager.
35 // This class hierarchy uses multiple inheritance but pass managers do not
36 // derive from another pass manager.
37 //
38 // PassManager and FunctionPassManager are two top-level pass manager that
39 // represents the external interface of this entire pass manager infrastucture.
40 //
41 // Important classes :
42 //
43 // [o] class PMTopLevelManager;
44 //
45 // Two top level managers, PassManager and FunctionPassManager, derive from
46 // PMTopLevelManager. PMTopLevelManager manages information used by top level
47 // managers such as last user info.
48 //
49 // [o] class PMDataManager;
50 //
51 // PMDataManager manages information, e.g. list of available analysis info,
52 // used by a pass manager to manage execution order of passes. It also provides
53 // a place to implement common pass manager APIs. All pass managers derive from
54 // PMDataManager.
55 //
56 // [o] class FunctionPassManager;
57 //
58 // This is a external interface used to manage FunctionPasses. This
59 // interface relies on FunctionPassManagerImpl to do all the tasks.
60 //
61 // [o] class FunctionPassManagerImpl : public ModulePass, PMDataManager,
62 //                                     public PMTopLevelManager;
63 //
64 // FunctionPassManagerImpl is a top level manager. It manages FPPassManagers
65 //
66 // [o] class FPPassManager : public ModulePass, public PMDataManager;
67 //
68 // FPPassManager manages FunctionPasses and BBPassManagers
69 //
70 // [o] class MPPassManager : public Pass, public PMDataManager;
71 //
72 // MPPassManager manages ModulePasses and FPPassManagers
73 //
74 // [o] class PassManager;
75 //
76 // This is a external interface used by various tools to manages passes. It
77 // relies on PassManagerImpl to do all the tasks.
78 //
79 // [o] class PassManagerImpl : public Pass, public PMDataManager,
80 //                             public PMTopLevelManager
81 //
82 // PassManagerImpl is a top level pass manager responsible for managing
83 // MPPassManagers.
84 //===----------------------------------------------------------------------===//
85 
86 #include "llvm/Support/PrettyStackTrace.h"
87 
88 namespace llvm {
89 template <typename T> class ArrayRef;
90 class Module;
91 class StringRef;
92 class Value;
93 class PMDataManager;
94 
95 // enums for debugging strings
96 enum PassDebuggingString {
97   EXECUTION_MSG, // "Executing Pass '" + PassName
98   MODIFICATION_MSG, // "Made Modification '" + PassName
99   FREEING_MSG, // " Freeing Pass '" + PassName
100   ON_FUNCTION_MSG, // "' on Function '" + FunctionName + "'...\n"
101   ON_MODULE_MSG, // "' on Module '" + ModuleName + "'...\n"
102   ON_REGION_MSG, // "' on Region '" + Msg + "'...\n'"
103   ON_LOOP_MSG, // "' on Loop '" + Msg + "'...\n'"
104   ON_CG_MSG // "' on Call Graph Nodes '" + Msg + "'...\n'"
105 };
106 
107 /// PassManagerPrettyStackEntry - This is used to print informative information
108 /// about what pass is running when/if a stack trace is generated.
109 class PassManagerPrettyStackEntry : public PrettyStackTraceEntry {
110   Pass *P;
111   Value *V;
112   Module *M;
113 
114 public:
115   explicit PassManagerPrettyStackEntry(Pass *p)
116     : P(p), V(nullptr), M(nullptr) {}  // When P is releaseMemory'd.
117   PassManagerPrettyStackEntry(Pass *p, Value &v)
118     : P(p), V(&v), M(nullptr) {} // When P is run on V
119   PassManagerPrettyStackEntry(Pass *p, Module &m)
120     : P(p), V(nullptr), M(&m) {} // When P is run on M
121 
122   /// print - Emit information about this stack frame to OS.
123   void print(raw_ostream &OS) const override;
124 };
125 
126 //===----------------------------------------------------------------------===//
127 // PMStack
128 //
129 /// PMStack - This class implements a stack data structure of PMDataManager
130 /// pointers.
131 ///
132 /// Top level pass managers (see PassManager.cpp) maintain active Pass Managers
133 /// using PMStack. Each Pass implements assignPassManager() to connect itself
134 /// with appropriate manager. assignPassManager() walks PMStack to find
135 /// suitable manager.
136 class PMStack {
137 public:
138   typedef std::vector<PMDataManager *>::const_reverse_iterator iterator;
139   iterator begin() const { return S.rbegin(); }
140   iterator end() const { return S.rend(); }
141 
142   void pop();
143   PMDataManager *top() const { return S.back(); }
144   void push(PMDataManager *PM);
145   bool empty() const { return S.empty(); }
146 
147   void dump() const;
148 
149 private:
150   std::vector<PMDataManager *> S;
151 };
152 
153 //===----------------------------------------------------------------------===//
154 // PMTopLevelManager
155 //
156 /// PMTopLevelManager manages LastUser info and collects common APIs used by
157 /// top level pass managers.
158 class PMTopLevelManager {
159 protected:
160   explicit PMTopLevelManager(PMDataManager *PMDM);
161 
162   unsigned getNumContainedManagers() const {
163     return (unsigned)PassManagers.size();
164   }
165 
166   void initializeAllAnalysisInfo();
167 
168 private:
169   virtual PMDataManager *getAsPMDataManager() = 0;
170   virtual PassManagerType getTopLevelPassManagerType() = 0;
171 
172 public:
173   /// Schedule pass P for execution. Make sure that passes required by
174   /// P are run before P is run. Update analysis info maintained by
175   /// the manager. Remove dead passes. This is a recursive function.
176   void schedulePass(Pass *P);
177 
178   /// Set pass P as the last user of the given analysis passes.
179   void setLastUser(ArrayRef<Pass*> AnalysisPasses, Pass *P);
180 
181   /// Collect passes whose last user is P
182   void collectLastUses(SmallVectorImpl<Pass *> &LastUses, Pass *P);
183 
184   /// Find the pass that implements Analysis AID. Search immutable
185   /// passes and all pass managers. If desired pass is not found
186   /// then return NULL.
187   Pass *findAnalysisPass(AnalysisID AID);
188 
189   /// Retrieve the PassInfo for an analysis.
190   const PassInfo *findAnalysisPassInfo(AnalysisID AID) const;
191 
192   /// Find analysis usage information for the pass P.
193   AnalysisUsage *findAnalysisUsage(Pass *P);
194 
195   virtual ~PMTopLevelManager();
196 
197   /// Add immutable pass and initialize it.
198   void addImmutablePass(ImmutablePass *P);
199 
200   inline SmallVectorImpl<ImmutablePass *>& getImmutablePasses() {
201     return ImmutablePasses;
202   }
203 
204   void addPassManager(PMDataManager *Manager) {
205     PassManagers.push_back(Manager);
206   }
207 
208   // Add Manager into the list of managers that are not directly
209   // maintained by this top level pass manager
210   inline void addIndirectPassManager(PMDataManager *Manager) {
211     IndirectPassManagers.push_back(Manager);
212   }
213 
214   // Print passes managed by this top level manager.
215   void dumpPasses() const;
216   void dumpArguments() const;
217 
218   // Active Pass Managers
219   PMStack activeStack;
220 
221 protected:
222   /// Collection of pass managers
223   SmallVector<PMDataManager *, 8> PassManagers;
224 
225 private:
226   /// Collection of pass managers that are not directly maintained
227   /// by this pass manager
228   SmallVector<PMDataManager *, 8> IndirectPassManagers;
229 
230   // Map to keep track of last user of the analysis pass.
231   // LastUser->second is the last user of Lastuser->first.
232   // This is kept in sync with InversedLastUser.
233   DenseMap<Pass *, Pass *> LastUser;
234 
235   // Map to keep track of passes that are last used by a pass.
236   // This is kept in sync with LastUser.
237   DenseMap<Pass *, SmallPtrSet<Pass *, 8> > InversedLastUser;
238 
239   /// Immutable passes are managed by top level manager.
240   SmallVector<ImmutablePass *, 16> ImmutablePasses;
241 
242   /// Map from ID to immutable passes.
243   SmallDenseMap<AnalysisID, ImmutablePass *, 8> ImmutablePassMap;
244 
245 
246   /// A wrapper around AnalysisUsage for the purpose of uniqueing.  The wrapper
247   /// is used to avoid needing to make AnalysisUsage itself a folding set node.
248   struct AUFoldingSetNode : public FoldingSetNode {
249     AnalysisUsage AU;
250     AUFoldingSetNode(const AnalysisUsage &AU) : AU(AU) {}
251     void Profile(FoldingSetNodeID &ID) const {
252       Profile(ID, AU);
253     }
254     static void Profile(FoldingSetNodeID &ID, const AnalysisUsage &AU) {
255       // TODO: We could consider sorting the dependency arrays within the
256       // AnalysisUsage (since they are conceptually unordered).
257       ID.AddBoolean(AU.getPreservesAll());
258       auto ProfileVec = [&](const SmallVectorImpl<AnalysisID>& Vec) {
259         ID.AddInteger(Vec.size());
260         for(AnalysisID AID : Vec)
261           ID.AddPointer(AID);
262       };
263       ProfileVec(AU.getRequiredSet());
264       ProfileVec(AU.getRequiredTransitiveSet());
265       ProfileVec(AU.getPreservedSet());
266       ProfileVec(AU.getUsedSet());
267     }
268   };
269 
270   // Contains all of the unique combinations of AnalysisUsage.  This is helpful
271   // when we have multiple instances of the same pass since they'll usually
272   // have the same analysis usage and can share storage.
273   FoldingSet<AUFoldingSetNode> UniqueAnalysisUsages;
274 
275   // Allocator used for allocating UAFoldingSetNodes.  This handles deletion of
276   // all allocated nodes in one fell swoop.
277   SpecificBumpPtrAllocator<AUFoldingSetNode> AUFoldingSetNodeAllocator;
278 
279   // Maps from a pass to it's associated entry in UniqueAnalysisUsages.  Does
280   // not own the storage associated with either key or value..
281   DenseMap<Pass *, AnalysisUsage*> AnUsageMap;
282 
283   /// Collection of PassInfo objects found via analysis IDs and in this top
284   /// level manager. This is used to memoize queries to the pass registry.
285   /// FIXME: This is an egregious hack because querying the pass registry is
286   /// either slow or racy.
287   mutable DenseMap<AnalysisID, const PassInfo *> AnalysisPassInfos;
288 };
289 
290 //===----------------------------------------------------------------------===//
291 // PMDataManager
292 
293 /// PMDataManager provides the common place to manage the analysis data
294 /// used by pass managers.
295 class PMDataManager {
296 public:
297   explicit PMDataManager() : TPM(nullptr), Depth(0) {
298     initializeAnalysisInfo();
299   }
300 
301   virtual ~PMDataManager();
302 
303   virtual Pass *getAsPass() = 0;
304 
305   /// Augment AvailableAnalysis by adding analysis made available by pass P.
306   void recordAvailableAnalysis(Pass *P);
307 
308   /// verifyPreservedAnalysis -- Verify analysis presreved by pass P.
309   void verifyPreservedAnalysis(Pass *P);
310 
311   /// Remove Analysis that is not preserved by the pass
312   void removeNotPreservedAnalysis(Pass *P);
313 
314   /// Remove dead passes used by P.
315   void removeDeadPasses(Pass *P, StringRef Msg,
316                         enum PassDebuggingString);
317 
318   /// Remove P.
319   void freePass(Pass *P, StringRef Msg,
320                 enum PassDebuggingString);
321 
322   /// Add pass P into the PassVector. Update
323   /// AvailableAnalysis appropriately if ProcessAnalysis is true.
324   void add(Pass *P, bool ProcessAnalysis = true);
325 
326   /// Add RequiredPass into list of lower level passes required by pass P.
327   /// RequiredPass is run on the fly by Pass Manager when P requests it
328   /// through getAnalysis interface.
329   virtual void addLowerLevelRequiredPass(Pass *P, Pass *RequiredPass);
330 
331   virtual std::tuple<Pass *, bool> getOnTheFlyPass(Pass *P, AnalysisID PI,
332                                                    Function &F);
333 
334   /// Initialize available analysis information.
335   void initializeAnalysisInfo() {
336     AvailableAnalysis.clear();
337     for (auto &IA : InheritedAnalysis)
338       IA = nullptr;
339   }
340 
341   // Return true if P preserves high level analysis used by other
342   // passes that are managed by this manager.
343   bool preserveHigherLevelAnalysis(Pass *P);
344 
345   /// Populate UsedPasses with analysis pass that are used or required by pass
346   /// P and are available. Populate ReqPassNotAvailable with analysis pass that
347   /// are required by pass P but are not available.
348   void collectRequiredAndUsedAnalyses(
349       SmallVectorImpl<Pass *> &UsedPasses,
350       SmallVectorImpl<AnalysisID> &ReqPassNotAvailable, Pass *P);
351 
352   /// All Required analyses should be available to the pass as it runs!  Here
353   /// we fill in the AnalysisImpls member of the pass so that it can
354   /// successfully use the getAnalysis() method to retrieve the
355   /// implementations it needs.
356   void initializeAnalysisImpl(Pass *P);
357 
358   /// Find the pass that implements Analysis AID. If desired pass is not found
359   /// then return NULL.
360   Pass *findAnalysisPass(AnalysisID AID, bool Direction);
361 
362   // Access toplevel manager
363   PMTopLevelManager *getTopLevelManager() { return TPM; }
364   void setTopLevelManager(PMTopLevelManager *T) { TPM = T; }
365 
366   unsigned getDepth() const { return Depth; }
367   void setDepth(unsigned newDepth) { Depth = newDepth; }
368 
369   // Print routines used by debug-pass
370   void dumpLastUses(Pass *P, unsigned Offset) const;
371   void dumpPassArguments() const;
372   void dumpPassInfo(Pass *P, enum PassDebuggingString S1,
373                     enum PassDebuggingString S2, StringRef Msg);
374   void dumpRequiredSet(const Pass *P) const;
375   void dumpPreservedSet(const Pass *P) const;
376   void dumpUsedSet(const Pass *P) const;
377 
378   unsigned getNumContainedPasses() const {
379     return (unsigned)PassVector.size();
380   }
381 
382   virtual PassManagerType getPassManagerType() const {
383     assert ( 0 && "Invalid use of getPassManagerType");
384     return PMT_Unknown;
385   }
386 
387   DenseMap<AnalysisID, Pass*> *getAvailableAnalysis() {
388     return &AvailableAnalysis;
389   }
390 
391   // Collect AvailableAnalysis from all the active Pass Managers.
392   void populateInheritedAnalysis(PMStack &PMS) {
393     unsigned Index = 0;
394     for (PMDataManager *PMDM : PMS)
395       InheritedAnalysis[Index++] = PMDM->getAvailableAnalysis();
396   }
397 
398   /// Set the initial size of the module if the user has specified that they
399   /// want remarks for size.
400   /// Returns 0 if the remark was not requested.
401   unsigned initSizeRemarkInfo(
402       Module &M,
403       StringMap<std::pair<unsigned, unsigned>> &FunctionToInstrCount);
404 
405   /// Emit a remark signifying that the number of IR instructions in the module
406   /// changed.
407   /// \p F is optionally passed by passes which run on Functions, and thus
408   /// always know whether or not a non-empty function is available.
409   ///
410   /// \p FunctionToInstrCount maps the name of a \p Function to a pair. The
411   /// first member of the pair is the IR count of the \p Function before running
412   /// \p P, and the second member is the IR count of the \p Function after
413   /// running \p P.
414   void emitInstrCountChangedRemark(
415       Pass *P, Module &M, int64_t Delta, unsigned CountBefore,
416       StringMap<std::pair<unsigned, unsigned>> &FunctionToInstrCount,
417       Function *F = nullptr);
418 
419 protected:
420   // Top level manager.
421   PMTopLevelManager *TPM;
422 
423   // Collection of pass that are managed by this manager
424   SmallVector<Pass *, 16> PassVector;
425 
426   // Collection of Analysis provided by Parent pass manager and
427   // used by current pass manager. At at time there can not be more
428   // then PMT_Last active pass mangers.
429   DenseMap<AnalysisID, Pass *> *InheritedAnalysis[PMT_Last];
430 
431   /// isPassDebuggingExecutionsOrMore - Return true if -debug-pass=Executions
432   /// or higher is specified.
433   bool isPassDebuggingExecutionsOrMore() const;
434 
435 private:
436   void dumpAnalysisUsage(StringRef Msg, const Pass *P,
437                          const AnalysisUsage::VectorType &Set) const;
438 
439   // Set of available Analysis. This information is used while scheduling
440   // pass. If a pass requires an analysis which is not available then
441   // the required analysis pass is scheduled to run before the pass itself is
442   // scheduled to run.
443   DenseMap<AnalysisID, Pass*> AvailableAnalysis;
444 
445   // Collection of higher level analysis used by the pass managed by
446   // this manager.
447   SmallVector<Pass *, 16> HigherLevelAnalysis;
448 
449   unsigned Depth;
450 };
451 
452 //===----------------------------------------------------------------------===//
453 // FPPassManager
454 //
455 /// FPPassManager manages BBPassManagers and FunctionPasses.
456 /// It batches all function passes and basic block pass managers together and
457 /// sequence them to process one function at a time before processing next
458 /// function.
459 class FPPassManager : public ModulePass, public PMDataManager {
460 public:
461   static char ID;
462   explicit FPPassManager() : ModulePass(ID) {}
463 
464   /// run - Execute all of the passes scheduled for execution.  Keep track of
465   /// whether any of the passes modifies the module, and if so, return true.
466   bool runOnFunction(Function &F);
467   bool runOnModule(Module &M) override;
468 
469   /// cleanup - After running all passes, clean up pass manager cache.
470   void cleanup();
471 
472   /// doInitialization - Overrides ModulePass doInitialization for global
473   /// initialization tasks
474   ///
475   using ModulePass::doInitialization;
476 
477   /// doInitialization - Run all of the initializers for the function passes.
478   ///
479   bool doInitialization(Module &M) override;
480 
481   /// doFinalization - Overrides ModulePass doFinalization for global
482   /// finalization tasks
483   ///
484   using ModulePass::doFinalization;
485 
486   /// doFinalization - Run all of the finalizers for the function passes.
487   ///
488   bool doFinalization(Module &M) override;
489 
490   PMDataManager *getAsPMDataManager() override { return this; }
491   Pass *getAsPass() override { return this; }
492 
493   /// Pass Manager itself does not invalidate any analysis info.
494   void getAnalysisUsage(AnalysisUsage &Info) const override {
495     Info.setPreservesAll();
496   }
497 
498   // Print passes managed by this manager
499   void dumpPassStructure(unsigned Offset) override;
500 
501   StringRef getPassName() const override { return "Function Pass Manager"; }
502 
503   FunctionPass *getContainedPass(unsigned N) {
504     assert ( N < PassVector.size() && "Pass number out of range!");
505     FunctionPass *FP = static_cast<FunctionPass *>(PassVector[N]);
506     return FP;
507   }
508 
509   PassManagerType getPassManagerType() const override {
510     return PMT_FunctionPassManager;
511   }
512 };
513 
514 }
515 
516 #endif
517