PassSupport.h revision ada23c05f5ebc94ea4630283e993270f19809ae9
1//===- llvm/PassSupport.h - Pass Support code -------------------*- C++ -*-===//
2//
3// This file defines stuff that is used to define and "use" Passes.  This file
4// is automatically #included by Pass.h, so:
5//
6//           NO .CPP FILES SHOULD INCLUDE THIS FILE DIRECTLY
7//
8// Instead, #include Pass.h.
9//
10// This file defines Pass registration code and classes used for it.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_PASS_SUPPORT_H
15#define LLVM_PASS_SUPPORT_H
16
17// No need to include Pass.h, we are being included by it!
18
19class TargetData;
20class TargetMachine;
21
22//===---------------------------------------------------------------------------
23/// PassInfo class - An instance of this class exists for every pass known by
24/// the system, and can be obtained from a live Pass by calling its
25/// getPassInfo() method.  These objects are set up by the RegisterPass<>
26/// template, defined below.
27///
28class PassInfo {
29  const char           *PassName;      // Nice name for Pass
30  const char           *PassArgument;  // Command Line argument to run this pass
31  const std::type_info &TypeInfo;      // type_info object for this Pass class
32  unsigned char PassType;              // Set of enums values below...
33  std::vector<const PassInfo*> ItfImpl;// Interfaces implemented by this pass
34
35  Pass *(*NormalCtor)();               // No argument ctor
36  Pass *(*DataCtor)(const TargetData&);// Ctor taking TargetData object...
37
38public:
39  /// PassType - Define symbolic constants that can be used to test to see if
40  /// this pass should be listed by analyze or opt.  Passes can use none, one or
41  /// many of these flags or'd together.  It is not legal to combine the
42  /// AnalysisGroup flag with others.
43  ///
44  enum {
45    Analysis = 1, Optimization = 2, LLC = 4, AnalysisGroup = 8
46  };
47
48  /// PassInfo ctor - Do not call this directly, this should only be invoked
49  /// through RegisterPass.
50  PassInfo(const char *name, const char *arg, const std::type_info &ti,
51           unsigned pt, Pass *(*normal)(), Pass *(*data)(const TargetData &))
52    : PassName(name), PassArgument(arg), TypeInfo(ti), PassType(pt),
53      NormalCtor(normal), DataCtor(data) {
54  }
55
56  /// getPassName - Return the friendly name for the pass, never returns null
57  ///
58  const char *getPassName() const { return PassName; }
59  void setPassName(const char *Name) { PassName = Name; }
60
61  /// getPassArgument - Return the command line option that may be passed to
62  /// 'opt' that will cause this pass to be run.  This will return null if there
63  /// is no argument.
64  ///
65  const char *getPassArgument() const { return PassArgument; }
66
67  /// getTypeInfo - Return the type_info object for the pass...
68  ///
69  const std::type_info &getTypeInfo() const { return TypeInfo; }
70
71  /// getPassType - Return the PassType of a pass.  Note that this can be
72  /// several different types or'd together.  This is _strictly_ for use by opt,
73  /// analyze and llc for deciding which passes to use as command line options.
74  ///
75  unsigned getPassType() const { return PassType; }
76
77  /// getNormalCtor - Return a pointer to a function, that when called, creates
78  /// an instance of the pass and returns it.  This pointer may be null if there
79  /// is no default constructor for the pass.
80  ///
81  Pass *(*getNormalCtor() const)() {
82    return NormalCtor;
83  }
84  void setNormalCtor(Pass *(*Ctor)()) {
85    NormalCtor = Ctor;
86  }
87
88  /// createPass() - Use this method to create an instance of this pass.
89  Pass *createPass() const {
90    assert((PassType != AnalysisGroup || NormalCtor) &&
91           "No default implementation found for analysis group!");
92    assert(NormalCtor &&
93           "Cannot call createPass on PassInfo without default ctor!");
94    return NormalCtor();
95  }
96
97  /// getDataCtor - Return a pointer to a function that creates an instance of
98  /// the pass and returns it.  This returns a constructor for a version of the
99  /// pass that takes a TArgetData object as a parameter.
100  ///
101  Pass *(*getDataCtor() const)(const TargetData &) {
102    return DataCtor;
103  }
104
105  /// addInterfaceImplemented - This method is called when this pass is
106  /// registered as a member of an analysis group with the RegisterAnalysisGroup
107  /// template.
108  ///
109  void addInterfaceImplemented(const PassInfo *ItfPI) {
110    ItfImpl.push_back(ItfPI);
111  }
112
113  /// getInterfacesImplemented - Return a list of all of the analysis group
114  /// interfaces implemented by this pass.
115  ///
116  const std::vector<const PassInfo*> &getInterfacesImplemented() const {
117    return ItfImpl;
118  }
119};
120
121
122//===---------------------------------------------------------------------------
123/// RegisterPass<t> template - This template class is used to notify the system
124/// that a Pass is available for use, and registers it into the internal
125/// database maintained by the PassManager.  Unless this template is used, opt,
126/// for example will not be able to see the pass and attempts to create the pass
127/// will fail. This template is used in the follow manner (at global scope, in
128/// your .cpp file):
129///
130/// static RegisterPass<YourPassClassName> tmp("passopt", "My Pass Name");
131///
132/// This statement will cause your pass to be created by calling the default
133/// constructor exposed by the pass.  If you have a different constructor that
134/// must be called, create a global constructor function (which takes the
135/// arguments you need and returns a Pass*) and register your pass like this:
136///
137/// Pass *createMyPass(foo &opt) { return new MyPass(opt); }
138/// static RegisterPass<PassClassName> tmp("passopt", "My Name", createMyPass);
139///
140struct RegisterPassBase {
141  /// getPassInfo - Get the pass info for the registered class...
142  ///
143  const PassInfo *getPassInfo() const { return PIObj; }
144
145  RegisterPassBase() : PIObj(0) {}
146  ~RegisterPassBase() {   // Intentionally non-virtual...
147    if (PIObj) unregisterPass(PIObj);
148  }
149
150protected:
151  PassInfo *PIObj;       // The PassInfo object for this pass
152  void registerPass(PassInfo *);
153  void unregisterPass(PassInfo *);
154
155  /// setPreservesCFG - Notice that this pass only depends on the CFG, so
156  /// transformations that do not modify the CFG do not invalidate this pass.
157  ///
158  void setPreservesCFG();
159};
160
161template<typename PassName>
162Pass *callDefaultCtor() { return new PassName(); }
163
164template<typename PassName>
165struct RegisterPass : public RegisterPassBase {
166
167  // Register Pass using default constructor...
168  RegisterPass(const char *PassArg, const char *Name, unsigned PassTy = 0) {
169    registerPass(new PassInfo(Name, PassArg, typeid(PassName), PassTy,
170                              callDefaultCtor<PassName>, 0));
171  }
172
173  // Register Pass using default constructor explicitly...
174  RegisterPass(const char *PassArg, const char *Name, unsigned PassTy,
175               Pass *(*ctor)()) {
176    registerPass(new PassInfo(Name, PassArg, typeid(PassName), PassTy, ctor,0));
177  }
178
179  // Register Pass using TargetData constructor...
180  RegisterPass(const char *PassArg, const char *Name, unsigned PassTy,
181               Pass *(*datactor)(const TargetData &)) {
182    registerPass(new PassInfo(Name, PassArg, typeid(PassName), PassTy,
183                              0, datactor));
184  }
185
186  // Generic constructor version that has an unknown ctor type...
187  template<typename CtorType>
188  RegisterPass(const char *PassArg, const char *Name, unsigned PassTy,
189               CtorType *Fn) {
190    registerPass(new PassInfo(Name, PassArg, typeid(PassName), PassTy, 0, 0));
191  }
192};
193
194/// RegisterOpt - Register something that is to show up in Opt, this is just a
195/// shortcut for specifying RegisterPass...
196///
197template<typename PassName>
198struct RegisterOpt : public RegisterPassBase {
199  RegisterOpt(const char *PassArg, const char *Name) {
200    registerPass(new PassInfo(Name, PassArg, typeid(PassName),
201                              PassInfo::Optimization,
202                              callDefaultCtor<PassName>, 0));
203  }
204
205  /// Register Pass using default constructor explicitly...
206  ///
207  RegisterOpt(const char *PassArg, const char *Name, Pass *(*ctor)()) {
208    registerPass(new PassInfo(Name, PassArg, typeid(PassName),
209                              PassInfo::Optimization, ctor, 0));
210  }
211
212  /// Register Pass using TargetData constructor...
213  ///
214  RegisterOpt(const char *PassArg, const char *Name,
215               Pass *(*datactor)(const TargetData &)) {
216    registerPass(new PassInfo(Name, PassArg, typeid(PassName),
217                              PassInfo::Optimization, 0, datactor));
218  }
219};
220
221/// RegisterAnalysis - Register something that is to show up in Analysis, this
222/// is just a shortcut for specifying RegisterPass...  Analyses take a special
223/// argument that, when set to true, tells the system that the analysis ONLY
224/// depends on the shape of the CFG, so if a transformation preserves the CFG
225/// that the analysis is not invalidated.
226///
227template<typename PassName>
228struct RegisterAnalysis : public RegisterPassBase {
229  RegisterAnalysis(const char *PassArg, const char *Name,
230                   bool CFGOnly = false) {
231    registerPass(new PassInfo(Name, PassArg, typeid(PassName),
232                              PassInfo::Analysis,
233                              callDefaultCtor<PassName>, 0));
234    if (CFGOnly)
235      setPreservesCFG();
236  }
237};
238
239/// RegisterLLC - Register something that is to show up in LLC, this is just a
240/// shortcut for specifying RegisterPass...
241///
242template<typename PassName>
243struct RegisterLLC : public RegisterPassBase {
244  RegisterLLC(const char *PassArg, const char *Name) {
245    registerPass(new PassInfo(Name, PassArg, typeid(PassName),
246                              PassInfo::LLC,
247                              callDefaultCtor<PassName>, 0));
248  }
249
250  /// Register Pass using default constructor explicitly...
251  ///
252  RegisterLLC(const char *PassArg, const char *Name, Pass *(*ctor)()) {
253    registerPass(new PassInfo(Name, PassArg, typeid(PassName),
254                              PassInfo::LLC, ctor, 0));
255  }
256
257  /// Register Pass using TargetData constructor...
258  ///
259  RegisterLLC(const char *PassArg, const char *Name,
260               Pass *(*datactor)(const TargetData &)) {
261    registerPass(new PassInfo(Name, PassArg, typeid(PassName),
262                              PassInfo::LLC, 0, datactor));
263  }
264
265  /// Register Pass using TargetMachine constructor...
266  ///
267  RegisterLLC(const char *PassArg, const char *Name,
268               Pass *(*datactor)(TargetMachine &)) {
269    registerPass(new PassInfo(Name, PassArg, typeid(PassName),
270                              PassInfo::LLC, 0, 0));
271  }
272};
273
274
275/// RegisterAnalysisGroup - Register a Pass as a member of an analysis _group_.
276/// Analysis groups are used to define an interface (which need not derive from
277/// Pass) that is required by passes to do their job.  Analysis Groups differ
278/// from normal analyses because any available implementation of the group will
279/// be used if it is available.
280///
281/// If no analysis implementing the interface is available, a default
282/// implementation is created and added.  A pass registers itself as the default
283/// implementation by specifying 'true' as the third template argument of this
284/// class.
285///
286/// In addition to registering itself as an analysis group member, a pass must
287/// register itself normally as well.  Passes may be members of multiple groups
288/// and may still be "required" specifically by name.
289///
290/// The actual interface may also be registered as well (by not specifying the
291/// second template argument).  The interface should be registered to associate
292/// a nice name with the interface.
293///
294class RegisterAGBase : public RegisterPassBase {
295  PassInfo *InterfaceInfo;
296  const PassInfo *ImplementationInfo;
297  bool isDefaultImplementation;
298protected:
299  RegisterAGBase(const std::type_info &Interface,
300                 const std::type_info *Pass = 0,
301                 bool isDefault = false);
302  void setGroupName(const char *Name);
303public:
304  ~RegisterAGBase();
305};
306
307
308template<typename Interface, typename DefaultImplementationPass = void,
309         bool Default = false>
310struct RegisterAnalysisGroup : public RegisterAGBase {
311  RegisterAnalysisGroup() : RegisterAGBase(typeid(Interface),
312                                           &typeid(DefaultImplementationPass),
313                                           Default) {
314  }
315};
316
317/// Define a specialization of RegisterAnalysisGroup that is used to set the
318/// name for the analysis group.
319///
320template<typename Interface>
321struct RegisterAnalysisGroup<Interface, void, false> : public RegisterAGBase {
322  RegisterAnalysisGroup(const char *Name)
323    : RegisterAGBase(typeid(Interface)) {
324    setGroupName(Name);
325  }
326};
327
328
329
330//===---------------------------------------------------------------------------
331/// PassRegistrationListener class - This class is meant to be derived from by
332/// clients that are interested in which passes get registered and unregistered
333/// at runtime (which can be because of the RegisterPass constructors being run
334/// as the program starts up, or may be because a shared object just got
335/// loaded).  Deriving from the PassRegistationListener class automatically
336/// registers your object to receive callbacks indicating when passes are loaded
337/// and removed.
338///
339struct PassRegistrationListener {
340
341  /// PassRegistrationListener ctor - Add the current object to the list of
342  /// PassRegistrationListeners...
343  PassRegistrationListener();
344
345  /// dtor - Remove object from list of listeners...
346  ///
347  virtual ~PassRegistrationListener();
348
349  /// Callback functions - These functions are invoked whenever a pass is loaded
350  /// or removed from the current executable.
351  ///
352  virtual void passRegistered(const PassInfo *P) {}
353  virtual void passUnregistered(const PassInfo *P) {}
354
355  /// enumeratePasses - Iterate over the registered passes, calling the
356  /// passEnumerate callback on each PassInfo object.
357  ///
358  void enumeratePasses();
359
360  /// passEnumerate - Callback function invoked when someone calls
361  /// enumeratePasses on this PassRegistrationListener object.
362  ///
363  virtual void passEnumerate(const PassInfo *P) {}
364};
365
366
367//===---------------------------------------------------------------------------
368/// IncludeFile class - This class is used as a hack to make sure that the
369/// implementation of a header file is included into a tool that uses the
370/// header.  This is solely to overcome problems linking .a files and not
371/// getting the implementation of passes we need.
372///
373struct IncludeFile {
374  IncludeFile(void *);
375};
376#endif
377