eliminate a bunch of dynamic_cast's.
[oota-llvm.git] / include / llvm / Pass.h
1 //===- llvm/Pass.h - Base class for Passes ----------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines a base class that indicates that a specified class is a
11 // transformation pass implementation.
12 //
13 // Passes are designed this way so that it is possible to run passes in a cache
14 // and organizationally optimal order without having to specify it at the front
15 // end.  This allows arbitrary passes to be strung together and have them
16 // executed as effeciently as possible.
17 //
18 // Passes should extend one of the classes below, depending on the guarantees
19 // that it can make about what will be modified as it is run.  For example, most
20 // global optimizations should derive from FunctionPass, because they do not add
21 // or delete functions, they operate on the internals of the function.
22 //
23 // Note that this file #includes PassSupport.h and PassAnalysisSupport.h (at the
24 // bottom), so the APIs exposed by these files are also automatically available
25 // to all users of this file.
26 //
27 //===----------------------------------------------------------------------===//
28
29 #ifndef LLVM_PASS_H
30 #define LLVM_PASS_H
31
32 #include "llvm/System/DataTypes.h"
33 #include <cassert>
34 #include <utility>
35 #include <vector>
36
37 namespace llvm {
38
39 class BasicBlock;
40 class Function;
41 class Module;
42 class AnalysisUsage;
43 class PassInfo;
44 class ImmutablePass;
45 class PMStack;
46 class AnalysisResolver;
47 class PMDataManager;
48 class raw_ostream;
49 class StringRef;
50
51 // AnalysisID - Use the PassInfo to identify a pass...
52 typedef const PassInfo* AnalysisID;
53
54 /// Different types of internal pass managers. External pass managers
55 /// (PassManager and FunctionPassManager) are not represented here.
56 /// Ordering of pass manager types is important here.
57 enum PassManagerType {
58   PMT_Unknown = 0,
59   PMT_ModulePassManager = 1, /// MPPassManager 
60   PMT_CallGraphPassManager,  /// CGPassManager
61   PMT_FunctionPassManager,   /// FPPassManager
62   PMT_LoopPassManager,       /// LPPassManager
63   PMT_BasicBlockPassManager, /// BBPassManager
64   PMT_Last
65 };
66
67 //===----------------------------------------------------------------------===//
68 /// Pass interface - Implemented by all 'passes'.  Subclass this if you are an
69 /// interprocedural optimization or you do not fit into any of the more
70 /// constrained passes described below.
71 ///
72 class Pass {
73   AnalysisResolver *Resolver;  // Used to resolve analysis
74   intptr_t PassID;
75
76   void operator=(const Pass&);  // DO NOT IMPLEMENT
77   Pass(const Pass &);           // DO NOT IMPLEMENT
78   
79 public:
80   explicit Pass(intptr_t pid) : Resolver(0), PassID(pid) {
81     assert(pid && "pid cannot be 0");
82   }
83   explicit Pass(const void *pid) : Resolver(0), PassID((intptr_t)pid) {
84     assert(pid && "pid cannot be 0"); 
85   }
86   virtual ~Pass();
87
88   /// getPassName - Return a nice clean name for a pass.  This usually
89   /// implemented in terms of the name that is registered by one of the
90   /// Registration templates, but can be overloaded directly.
91   ///
92   virtual const char *getPassName() const;
93
94   /// getPassInfo - Return the PassInfo data structure that corresponds to this
95   /// pass...  If the pass has not been registered, this will return null.
96   ///
97   const PassInfo *getPassInfo() const;
98
99   /// print - Print out the internal state of the pass.  This is called by
100   /// Analyze to print out the contents of an analysis.  Otherwise it is not
101   /// necessary to implement this method.  Beware that the module pointer MAY be
102   /// null.  This automatically forwards to a virtual function that does not
103   /// provide the Module* in case the analysis doesn't need it it can just be
104   /// ignored.
105   ///
106   virtual void print(raw_ostream &O, const Module *M) const;
107   void dump() const; // dump - Print to stderr.
108
109   /// Each pass is responsible for assigning a pass manager to itself.
110   /// PMS is the stack of available pass manager. 
111   virtual void assignPassManager(PMStack &, 
112                                  PassManagerType = PMT_Unknown) {}
113   /// Check if available pass managers are suitable for this pass or not.
114   virtual void preparePassManager(PMStack &);
115   
116   ///  Return what kind of Pass Manager can manage this pass.
117   virtual PassManagerType getPotentialPassManagerType() const;
118
119   // Access AnalysisResolver
120   inline void setResolver(AnalysisResolver *AR) { 
121     assert (!Resolver && "Resolver is already set");
122     Resolver = AR; 
123   }
124   inline AnalysisResolver *getResolver() { 
125     return Resolver; 
126   }
127
128   /// getAnalysisUsage - This function should be overriden by passes that need
129   /// analysis information to do their job.  If a pass specifies that it uses a
130   /// particular analysis result to this function, it can then use the
131   /// getAnalysis<AnalysisType>() function, below.
132   ///
133   virtual void getAnalysisUsage(AnalysisUsage &) const;
134
135   /// releaseMemory() - This member can be implemented by a pass if it wants to
136   /// be able to release its memory when it is no longer needed.  The default
137   /// behavior of passes is to hold onto memory for the entire duration of their
138   /// lifetime (which is the entire compile time).  For pipelined passes, this
139   /// is not a big deal because that memory gets recycled every time the pass is
140   /// invoked on another program unit.  For IP passes, it is more important to
141   /// free memory when it is unused.
142   ///
143   /// Optionally implement this function to release pass memory when it is no
144   /// longer used.
145   ///
146   virtual void releaseMemory();
147
148   /// getAdjustedAnalysisPointer - This method is used when a pass implements
149   /// an analysis interface through multiple inheritance.  If needed, it should
150   /// override this to adjust the this pointer as needed for the specified pass
151   /// info.
152   virtual void *getAdjustedAnalysisPointer(const PassInfo *PI) {
153     return this;
154   }
155   virtual ImmutablePass *getAsImmutablePass() { return 0; }
156   virtual PMDataManager *getAsPMDataManager() { return 0; }
157   
158   /// verifyAnalysis() - This member can be implemented by a analysis pass to
159   /// check state of analysis information. 
160   virtual void verifyAnalysis() const;
161
162   // dumpPassStructure - Implement the -debug-passes=PassStructure option
163   virtual void dumpPassStructure(unsigned Offset = 0);
164
165   template<typename AnalysisClass>
166   static const PassInfo *getClassPassInfo() {
167     return lookupPassInfo(intptr_t(&AnalysisClass::ID));
168   }
169
170   // lookupPassInfo - Return the pass info object for the specified pass class,
171   // or null if it is not known.
172   static const PassInfo *lookupPassInfo(intptr_t TI);
173
174   // lookupPassInfo - Return the pass info object for the pass with the given
175   // argument string, or null if it is not known.
176   static const PassInfo *lookupPassInfo(StringRef Arg);
177
178   /// getAnalysisIfAvailable<AnalysisType>() - Subclasses use this function to
179   /// get analysis information that might be around, for example to update it.
180   /// This is different than getAnalysis in that it can fail (if the analysis
181   /// results haven't been computed), so should only be used if you can handle
182   /// the case when the analysis is not available.  This method is often used by
183   /// transformation APIs to update analysis results for a pass automatically as
184   /// the transform is performed.
185   ///
186   template<typename AnalysisType> AnalysisType *
187     getAnalysisIfAvailable() const; // Defined in PassAnalysisSupport.h
188
189   /// mustPreserveAnalysisID - This method serves the same function as
190   /// getAnalysisIfAvailable, but works if you just have an AnalysisID.  This
191   /// obviously cannot give you a properly typed instance of the class if you
192   /// don't have the class name available (use getAnalysisIfAvailable if you
193   /// do), but it can tell you if you need to preserve the pass at least.
194   ///
195   bool mustPreserveAnalysisID(const PassInfo *AnalysisID) const;
196
197   /// getAnalysis<AnalysisType>() - This function is used by subclasses to get
198   /// to the analysis information that they claim to use by overriding the
199   /// getAnalysisUsage function.
200   ///
201   template<typename AnalysisType>
202   AnalysisType &getAnalysis() const; // Defined in PassAnalysisSupport.h
203
204   template<typename AnalysisType>
205   AnalysisType &getAnalysis(Function &F); // Defined in PassAnalysisSupport.h
206
207   template<typename AnalysisType>
208   AnalysisType &getAnalysisID(const PassInfo *PI) const;
209
210   template<typename AnalysisType>
211   AnalysisType &getAnalysisID(const PassInfo *PI, Function &F);
212 };
213
214
215 //===----------------------------------------------------------------------===//
216 /// ModulePass class - This class is used to implement unstructured
217 /// interprocedural optimizations and analyses.  ModulePasses may do anything
218 /// they want to the program.
219 ///
220 class ModulePass : public Pass {
221 public:
222   /// runOnModule - Virtual method overriden by subclasses to process the module
223   /// being operated on.
224   virtual bool runOnModule(Module &M) = 0;
225
226   virtual void assignPassManager(PMStack &PMS, 
227                                  PassManagerType T = PMT_ModulePassManager);
228
229   ///  Return what kind of Pass Manager can manage this pass.
230   virtual PassManagerType getPotentialPassManagerType() const;
231
232   explicit ModulePass(intptr_t pid) : Pass(pid) {}
233   explicit ModulePass(const void *pid) : Pass(pid) {}
234   // Force out-of-line virtual method.
235   virtual ~ModulePass();
236 };
237
238
239 //===----------------------------------------------------------------------===//
240 /// ImmutablePass class - This class is used to provide information that does
241 /// not need to be run.  This is useful for things like target information and
242 /// "basic" versions of AnalysisGroups.
243 ///
244 class ImmutablePass : public ModulePass {
245 public:
246   /// initializePass - This method may be overriden by immutable passes to allow
247   /// them to perform various initialization actions they require.  This is
248   /// primarily because an ImmutablePass can "require" another ImmutablePass,
249   /// and if it does, the overloaded version of initializePass may get access to
250   /// these passes with getAnalysis<>.
251   ///
252   virtual void initializePass();
253
254   virtual ImmutablePass *getAsImmutablePass() { return this; }
255
256   /// ImmutablePasses are never run.
257   ///
258   bool runOnModule(Module &) { return false; }
259
260   explicit ImmutablePass(intptr_t pid) : ModulePass(pid) {}
261   explicit ImmutablePass(const void *pid) 
262   : ModulePass(pid) {}
263   
264   // Force out-of-line virtual method.
265   virtual ~ImmutablePass();
266 };
267
268 //===----------------------------------------------------------------------===//
269 /// FunctionPass class - This class is used to implement most global
270 /// optimizations.  Optimizations should subclass this class if they meet the
271 /// following constraints:
272 ///
273 ///  1. Optimizations are organized globally, i.e., a function at a time
274 ///  2. Optimizing a function does not cause the addition or removal of any
275 ///     functions in the module
276 ///
277 class FunctionPass : public Pass {
278 public:
279   explicit FunctionPass(intptr_t pid) : Pass(pid) {}
280   explicit FunctionPass(const void *pid) : Pass(pid) {}
281
282   /// doInitialization - Virtual method overridden by subclasses to do
283   /// any necessary per-module initialization.
284   ///
285   virtual bool doInitialization(Module &);
286   
287   /// runOnFunction - Virtual method overriden by subclasses to do the
288   /// per-function processing of the pass.
289   ///
290   virtual bool runOnFunction(Function &F) = 0;
291
292   /// doFinalization - Virtual method overriden by subclasses to do any post
293   /// processing needed after all passes have run.
294   ///
295   virtual bool doFinalization(Module &);
296
297   /// runOnModule - On a module, we run this pass by initializing,
298   /// ronOnFunction'ing once for every function in the module, then by
299   /// finalizing.
300   ///
301   virtual bool runOnModule(Module &M);
302
303   /// run - On a function, we simply initialize, run the function, then
304   /// finalize.
305   ///
306   bool run(Function &F);
307
308   virtual void assignPassManager(PMStack &PMS, 
309                                  PassManagerType T = PMT_FunctionPassManager);
310
311   ///  Return what kind of Pass Manager can manage this pass.
312   virtual PassManagerType getPotentialPassManagerType() const;
313 };
314
315
316
317 //===----------------------------------------------------------------------===//
318 /// BasicBlockPass class - This class is used to implement most local
319 /// optimizations.  Optimizations should subclass this class if they
320 /// meet the following constraints:
321 ///   1. Optimizations are local, operating on either a basic block or
322 ///      instruction at a time.
323 ///   2. Optimizations do not modify the CFG of the contained function, or any
324 ///      other basic block in the function.
325 ///   3. Optimizations conform to all of the constraints of FunctionPasses.
326 ///
327 class BasicBlockPass : public Pass {
328 public:
329   explicit BasicBlockPass(intptr_t pid) : Pass(pid) {}
330   explicit BasicBlockPass(const void *pid) : Pass(pid) {}
331
332   /// doInitialization - Virtual method overridden by subclasses to do
333   /// any necessary per-module initialization.
334   ///
335   virtual bool doInitialization(Module &);
336
337   /// doInitialization - Virtual method overridden by BasicBlockPass subclasses
338   /// to do any necessary per-function initialization.
339   ///
340   virtual bool doInitialization(Function &);
341
342   /// runOnBasicBlock - Virtual method overriden by subclasses to do the
343   /// per-basicblock processing of the pass.
344   ///
345   virtual bool runOnBasicBlock(BasicBlock &BB) = 0;
346
347   /// doFinalization - Virtual method overriden by BasicBlockPass subclasses to
348   /// do any post processing needed after all passes have run.
349   ///
350   virtual bool doFinalization(Function &);
351
352   /// doFinalization - Virtual method overriden by subclasses to do any post
353   /// processing needed after all passes have run.
354   ///
355   virtual bool doFinalization(Module &);
356
357
358   // To run this pass on a function, we simply call runOnBasicBlock once for
359   // each function.
360   //
361   bool runOnFunction(Function &F);
362
363   virtual void assignPassManager(PMStack &PMS, 
364                                  PassManagerType T = PMT_BasicBlockPassManager);
365
366   ///  Return what kind of Pass Manager can manage this pass.
367   virtual PassManagerType getPotentialPassManagerType() const;
368 };
369
370 /// If the user specifies the -time-passes argument on an LLVM tool command line
371 /// then the value of this boolean will be true, otherwise false.
372 /// @brief This is the storage for the -time-passes option.
373 extern bool TimePassesIsEnabled;
374
375 } // End llvm namespace
376
377 // Include support files that contain important APIs commonly used by Passes,
378 // but that we want to separate out to make it easier to read the header files.
379 //
380 #include "llvm/PassSupport.h"
381 #include "llvm/PassAnalysisSupport.h"
382
383 #endif