2003-09-30 20:37:50 +02:00
|
|
|
//===- llvm/Pass.h - Base class for Passes ----------------------*- C++ -*-===//
|
2005-04-21 22:19:05 +02:00
|
|
|
//
|
2003-10-20 22:19:47 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:59:42 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 22:19:05 +02:00
|
|
|
//
|
2003-10-20 22:19:47 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-10-15 19:31:51 +02:00
|
|
|
//
|
2001-10-18 22:19:09 +02:00
|
|
|
// This file defines a base class that indicates that a specified class is a
|
2001-10-15 19:31:51 +02:00
|
|
|
// transformation pass implementation.
|
|
|
|
//
|
2005-03-16 04:54:50 +01:00
|
|
|
// Passes are designed this way so that it is possible to run passes in a cache
|
2002-01-21 08:31:00 +01:00
|
|
|
// and organizationally optimal order without having to specify it at the front
|
|
|
|
// end. This allows arbitrary passes to be strung together and have them
|
|
|
|
// executed as effeciently as possible.
|
2001-10-15 19:31:51 +02:00
|
|
|
//
|
2002-01-21 08:31:00 +01:00
|
|
|
// Passes should extend one of the classes below, depending on the guarantees
|
|
|
|
// that it can make about what will be modified as it is run. For example, most
|
2002-04-27 08:56:12 +02:00
|
|
|
// global optimizations should derive from FunctionPass, because they do not add
|
2002-04-28 22:46:05 +02:00
|
|
|
// or delete functions, they operate on the internals of the function.
|
2001-10-15 19:31:51 +02:00
|
|
|
//
|
2002-07-23 19:59:55 +02:00
|
|
|
// Note that this file #includes PassSupport.h and PassAnalysisSupport.h (at the
|
|
|
|
// bottom), so the APIs exposed by these files are also automatically available
|
|
|
|
// to all users of this file.
|
|
|
|
//
|
2001-10-15 19:31:51 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2001-10-18 22:19:09 +02:00
|
|
|
#ifndef LLVM_PASS_H
|
|
|
|
#define LLVM_PASS_H
|
2001-10-15 19:31:51 +02:00
|
|
|
|
2010-04-03 01:17:14 +02:00
|
|
|
#include <string>
|
2003-11-11 23:41:34 +01:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2004-10-27 18:14:51 +02:00
|
|
|
class BasicBlock;
|
2002-03-23 23:51:58 +01:00
|
|
|
class Function;
|
2002-01-31 00:20:39 +01:00
|
|
|
class Module;
|
2002-04-27 08:56:12 +02:00
|
|
|
class AnalysisUsage;
|
2002-07-23 19:59:55 +02:00
|
|
|
class PassInfo;
|
2002-09-25 23:59:11 +02:00
|
|
|
class ImmutablePass;
|
2007-01-08 20:29:38 +01:00
|
|
|
class PMStack;
|
2007-01-05 23:47:07 +01:00
|
|
|
class AnalysisResolver;
|
2007-01-11 01:19:00 +01:00
|
|
|
class PMDataManager;
|
2009-08-23 08:03:38 +02:00
|
|
|
class raw_ostream;
|
2009-10-08 19:00:02 +02:00
|
|
|
class StringRef;
|
2002-01-21 08:31:00 +01:00
|
|
|
|
2002-07-27 03:12:17 +02:00
|
|
|
// AnalysisID - Use the PassInfo to identify a pass...
|
2010-08-06 20:33:48 +02:00
|
|
|
typedef const void* AnalysisID;
|
2002-07-27 03:12:17 +02:00
|
|
|
|
2007-01-17 21:30:17 +01:00
|
|
|
/// Different types of internal pass managers. External pass managers
|
|
|
|
/// (PassManager and FunctionPassManager) are not represented here.
|
|
|
|
/// Ordering of pass manager types is important here.
|
|
|
|
enum PassManagerType {
|
|
|
|
PMT_Unknown = 0,
|
2010-02-12 22:54:28 +01:00
|
|
|
PMT_ModulePassManager = 1, ///< MPPassManager
|
|
|
|
PMT_CallGraphPassManager, ///< CGPassManager
|
|
|
|
PMT_FunctionPassManager, ///< FPPassManager
|
|
|
|
PMT_LoopPassManager, ///< LPPassManager
|
2010-10-20 03:54:44 +02:00
|
|
|
PMT_RegionPassManager, ///< RGPassManager
|
2010-02-12 22:54:28 +01:00
|
|
|
PMT_BasicBlockPassManager, ///< BBPassManager
|
2007-03-06 02:55:46 +01:00
|
|
|
PMT_Last
|
2007-01-17 21:30:17 +01:00
|
|
|
};
|
|
|
|
|
2010-01-22 07:03:06 +01:00
|
|
|
// Different types of passes.
|
|
|
|
enum PassKind {
|
|
|
|
PT_BasicBlock,
|
2010-10-20 03:54:44 +02:00
|
|
|
PT_Region,
|
2010-01-22 07:03:06 +01:00
|
|
|
PT_Loop,
|
|
|
|
PT_Function,
|
|
|
|
PT_CallGraphSCC,
|
|
|
|
PT_Module,
|
|
|
|
PT_PassManager
|
|
|
|
};
|
2010-10-20 03:54:44 +02:00
|
|
|
|
2001-10-15 19:31:51 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-08-26 00:54:55 +02:00
|
|
|
/// Pass interface - Implemented by all 'passes'. Subclass this if you are an
|
|
|
|
/// interprocedural optimization or you do not fit into any of the more
|
|
|
|
/// constrained passes described below.
|
|
|
|
///
|
2002-01-31 00:20:39 +01:00
|
|
|
class Pass {
|
2007-01-05 23:47:07 +01:00
|
|
|
AnalysisResolver *Resolver; // Used to resolve analysis
|
2010-08-06 20:33:48 +02:00
|
|
|
const void *PassID;
|
2010-01-22 07:03:06 +01:00
|
|
|
PassKind Kind;
|
2002-07-29 23:01:19 +02:00
|
|
|
void operator=(const Pass&); // DO NOT IMPLEMENT
|
|
|
|
Pass(const Pass &); // DO NOT IMPLEMENT
|
2009-07-02 22:23:41 +02:00
|
|
|
|
2002-01-31 00:20:39 +01:00
|
|
|
public:
|
2010-08-06 20:33:48 +02:00
|
|
|
explicit Pass(PassKind K, char &pid);
|
2007-04-26 23:33:42 +02:00
|
|
|
virtual ~Pass();
|
2002-01-31 00:20:39 +01:00
|
|
|
|
2010-01-22 07:03:06 +01:00
|
|
|
|
|
|
|
PassKind getPassKind() const { return Kind; }
|
|
|
|
|
2002-08-26 00:54:55 +02:00
|
|
|
/// getPassName - Return a nice clean name for a pass. This usually
|
|
|
|
/// implemented in terms of the name that is registered by one of the
|
2008-03-14 19:27:04 +01:00
|
|
|
/// Registration templates, but can be overloaded directly.
|
2002-08-26 00:54:55 +02:00
|
|
|
///
|
2002-04-29 16:57:45 +02:00
|
|
|
virtual const char *getPassName() const;
|
2002-01-21 08:31:00 +01:00
|
|
|
|
2010-08-06 20:33:48 +02:00
|
|
|
/// getPassID - Return the PassID number that corresponds to this pass.
|
|
|
|
virtual AnalysisID getPassID() const {
|
|
|
|
return PassID;
|
|
|
|
}
|
2002-07-23 19:59:55 +02:00
|
|
|
|
2002-08-26 00:54:55 +02:00
|
|
|
/// print - Print out the internal state of the pass. This is called by
|
|
|
|
/// Analyze to print out the contents of an analysis. Otherwise it is not
|
2003-08-18 16:43:39 +02:00
|
|
|
/// necessary to implement this method. Beware that the module pointer MAY be
|
2002-08-26 00:54:55 +02:00
|
|
|
/// null. This automatically forwards to a virtual function that does not
|
|
|
|
/// provide the Module* in case the analysis doesn't need it it can just be
|
|
|
|
/// ignored.
|
|
|
|
///
|
2009-08-23 08:03:38 +02:00
|
|
|
virtual void print(raw_ostream &O, const Module *M) const;
|
2009-08-03 03:02:24 +02:00
|
|
|
void dump() const; // dump - Print to stderr.
|
2002-07-27 03:12:17 +02:00
|
|
|
|
2010-04-03 01:17:14 +02:00
|
|
|
/// createPrinterPass - Get a Pass appropriate to print the IR this
|
|
|
|
/// pass operates one (Module, Function or MachineFunction).
|
|
|
|
virtual Pass *createPrinterPass(raw_ostream &O,
|
|
|
|
const std::string &Banner) const = 0;
|
|
|
|
|
2007-03-06 02:06:16 +01:00
|
|
|
/// Each pass is responsible for assigning a pass manager to itself.
|
|
|
|
/// PMS is the stack of available pass manager.
|
2008-05-19 22:15:12 +02:00
|
|
|
virtual void assignPassManager(PMStack &,
|
2010-08-07 03:25:32 +02:00
|
|
|
PassManagerType) {}
|
2007-03-06 02:06:16 +01:00
|
|
|
/// Check if available pass managers are suitable for this pass or not.
|
2009-12-14 20:43:09 +01:00
|
|
|
virtual void preparePassManager(PMStack &);
|
2007-04-16 20:51:25 +02:00
|
|
|
|
|
|
|
/// Return what kind of Pass Manager can manage this pass.
|
2009-12-14 20:43:09 +01:00
|
|
|
virtual PassManagerType getPotentialPassManagerType() const;
|
2007-03-06 02:06:16 +01:00
|
|
|
|
2007-01-05 23:47:07 +01:00
|
|
|
// Access AnalysisResolver
|
2010-06-21 20:46:45 +02:00
|
|
|
void setResolver(AnalysisResolver *AR);
|
|
|
|
AnalysisResolver *getResolver() const { return Resolver; }
|
2002-07-27 03:12:17 +02:00
|
|
|
|
2002-08-26 00:54:55 +02:00
|
|
|
/// getAnalysisUsage - This function should be overriden by passes that need
|
|
|
|
/// analysis information to do their job. If a pass specifies that it uses a
|
|
|
|
/// particular analysis result to this function, it can then use the
|
|
|
|
/// getAnalysis<AnalysisType>() function, below.
|
|
|
|
///
|
2009-12-14 20:43:09 +01:00
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &) const;
|
2002-01-31 00:20:39 +01:00
|
|
|
|
2002-08-26 00:54:55 +02:00
|
|
|
/// releaseMemory() - This member can be implemented by a pass if it wants to
|
|
|
|
/// be able to release its memory when it is no longer needed. The default
|
|
|
|
/// behavior of passes is to hold onto memory for the entire duration of their
|
|
|
|
/// lifetime (which is the entire compile time). For pipelined passes, this
|
|
|
|
/// is not a big deal because that memory gets recycled every time the pass is
|
|
|
|
/// invoked on another program unit. For IP passes, it is more important to
|
|
|
|
/// free memory when it is unused.
|
|
|
|
///
|
|
|
|
/// Optionally implement this function to release pass memory when it is no
|
|
|
|
/// longer used.
|
|
|
|
///
|
2009-12-14 20:43:09 +01:00
|
|
|
virtual void releaseMemory();
|
2002-01-31 19:32:27 +01:00
|
|
|
|
2010-01-20 20:26:14 +01:00
|
|
|
/// getAdjustedAnalysisPointer - This method is used when a pass implements
|
|
|
|
/// an analysis interface through multiple inheritance. If needed, it should
|
|
|
|
/// override this to adjust the this pointer as needed for the specified pass
|
|
|
|
/// info.
|
2010-08-06 20:33:48 +02:00
|
|
|
virtual void *getAdjustedAnalysisPointer(AnalysisID ID);
|
2010-06-21 20:46:45 +02:00
|
|
|
virtual ImmutablePass *getAsImmutablePass();
|
|
|
|
virtual PMDataManager *getAsPMDataManager();
|
2010-01-20 20:26:14 +01:00
|
|
|
|
2007-07-19 07:36:09 +02:00
|
|
|
/// verifyAnalysis() - This member can be implemented by a analysis pass to
|
|
|
|
/// check state of analysis information.
|
2009-12-14 20:43:09 +01:00
|
|
|
virtual void verifyAnalysis() const;
|
2007-07-19 07:36:09 +02:00
|
|
|
|
2002-01-31 00:20:39 +01:00
|
|
|
// dumpPassStructure - Implement the -debug-passes=PassStructure option
|
2010-08-19 03:29:07 +02:00
|
|
|
virtual void dumpPassStructure(unsigned Offset = 0);
|
2002-01-31 00:20:39 +01:00
|
|
|
|
2002-08-21 19:08:37 +02:00
|
|
|
// lookupPassInfo - Return the pass info object for the specified pass class,
|
|
|
|
// or null if it is not known.
|
2010-08-06 20:33:48 +02:00
|
|
|
static const PassInfo *lookupPassInfo(const void *TI);
|
2002-08-21 19:08:37 +02:00
|
|
|
|
2009-10-08 19:00:02 +02:00
|
|
|
// lookupPassInfo - Return the pass info object for the pass with the given
|
|
|
|
// argument string, or null if it is not known.
|
2010-07-20 10:26:15 +02:00
|
|
|
static const PassInfo *lookupPassInfo(StringRef Arg);
|
2009-10-08 19:00:02 +02:00
|
|
|
|
2009-01-28 14:14:17 +01:00
|
|
|
/// getAnalysisIfAvailable<AnalysisType>() - Subclasses use this function to
|
|
|
|
/// get analysis information that might be around, for example to update it.
|
|
|
|
/// This is different than getAnalysis in that it can fail (if the analysis
|
|
|
|
/// results haven't been computed), so should only be used if you can handle
|
|
|
|
/// the case when the analysis is not available. This method is often used by
|
|
|
|
/// transformation APIs to update analysis results for a pass automatically as
|
|
|
|
/// the transform is performed.
|
2002-09-06 04:14:47 +02:00
|
|
|
///
|
2009-01-28 14:14:17 +01:00
|
|
|
template<typename AnalysisType> AnalysisType *
|
|
|
|
getAnalysisIfAvailable() const; // Defined in PassAnalysisSupport.h
|
2002-09-06 04:14:47 +02:00
|
|
|
|
2003-03-21 22:41:02 +01:00
|
|
|
/// mustPreserveAnalysisID - This method serves the same function as
|
2009-01-28 14:14:17 +01:00
|
|
|
/// getAnalysisIfAvailable, but works if you just have an AnalysisID. This
|
2003-03-21 22:41:02 +01:00
|
|
|
/// obviously cannot give you a properly typed instance of the class if you
|
2009-01-28 14:14:17 +01:00
|
|
|
/// don't have the class name available (use getAnalysisIfAvailable if you
|
|
|
|
/// do), but it can tell you if you need to preserve the pass at least.
|
2003-03-21 22:41:02 +01:00
|
|
|
///
|
2010-08-06 20:33:48 +02:00
|
|
|
bool mustPreserveAnalysisID(char &AID) const;
|
2003-03-21 22:41:02 +01:00
|
|
|
|
2002-08-26 00:54:55 +02:00
|
|
|
/// getAnalysis<AnalysisType>() - This function is used by subclasses to get
|
|
|
|
/// to the analysis information that they claim to use by overriding the
|
|
|
|
/// getAnalysisUsage function.
|
|
|
|
///
|
2002-01-31 00:20:39 +01:00
|
|
|
template<typename AnalysisType>
|
2006-12-13 01:23:44 +01:00
|
|
|
AnalysisType &getAnalysis() const; // Defined in PassAnalysisSupport.h
|
2002-08-30 22:19:49 +02:00
|
|
|
|
2007-04-16 22:56:24 +02:00
|
|
|
template<typename AnalysisType>
|
2009-09-01 20:29:01 +02:00
|
|
|
AnalysisType &getAnalysis(Function &F); // Defined in PassAnalysisSupport.h
|
2007-04-16 22:56:24 +02:00
|
|
|
|
2002-08-30 22:19:49 +02:00
|
|
|
template<typename AnalysisType>
|
2010-08-06 20:33:48 +02:00
|
|
|
AnalysisType &getAnalysisID(AnalysisID PI) const;
|
2007-04-16 20:51:25 +02:00
|
|
|
|
2007-04-16 22:56:24 +02:00
|
|
|
template<typename AnalysisType>
|
2010-08-06 20:33:48 +02:00
|
|
|
AnalysisType &getAnalysisID(AnalysisID PI, Function &F);
|
2002-01-21 08:31:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-09-20 06:48:05 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// ModulePass class - This class is used to implement unstructured
|
2005-03-16 04:54:50 +01:00
|
|
|
/// interprocedural optimizations and analyses. ModulePasses may do anything
|
2004-09-20 06:48:05 +02:00
|
|
|
/// they want to the program.
|
|
|
|
///
|
2004-10-27 18:14:51 +02:00
|
|
|
class ModulePass : public Pass {
|
|
|
|
public:
|
2010-04-03 01:17:14 +02:00
|
|
|
/// createPrinterPass - Get a module printer pass.
|
|
|
|
Pass *createPrinterPass(raw_ostream &O, const std::string &Banner) const;
|
|
|
|
|
2004-09-20 06:48:05 +02:00
|
|
|
/// runOnModule - Virtual method overriden by subclasses to process the module
|
|
|
|
/// being operated on.
|
|
|
|
virtual bool runOnModule(Module &M) = 0;
|
|
|
|
|
2007-01-17 21:30:17 +01:00
|
|
|
virtual void assignPassManager(PMStack &PMS,
|
2010-08-07 03:25:32 +02:00
|
|
|
PassManagerType T);
|
2007-04-16 20:51:25 +02:00
|
|
|
|
|
|
|
/// Return what kind of Pass Manager can manage this pass.
|
2009-12-14 20:43:09 +01:00
|
|
|
virtual PassManagerType getPotentialPassManagerType() const;
|
2007-04-16 20:51:25 +02:00
|
|
|
|
2010-08-06 20:33:48 +02:00
|
|
|
explicit ModulePass(char &pid) : Pass(PT_Module, pid) {}
|
2006-12-22 23:49:00 +01:00
|
|
|
// Force out-of-line virtual method.
|
|
|
|
virtual ~ModulePass();
|
2004-09-20 06:48:05 +02:00
|
|
|
};
|
2002-09-25 23:59:11 +02:00
|
|
|
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// ImmutablePass class - This class is used to provide information that does
|
|
|
|
/// not need to be run. This is useful for things like target information and
|
|
|
|
/// "basic" versions of AnalysisGroups.
|
|
|
|
///
|
2004-10-27 18:14:51 +02:00
|
|
|
class ImmutablePass : public ModulePass {
|
|
|
|
public:
|
2003-02-26 20:10:28 +01:00
|
|
|
/// initializePass - This method may be overriden by immutable passes to allow
|
|
|
|
/// them to perform various initialization actions they require. This is
|
|
|
|
/// primarily because an ImmutablePass can "require" another ImmutablePass,
|
|
|
|
/// and if it does, the overloaded version of initializePass may get access to
|
|
|
|
/// these passes with getAnalysis<>.
|
|
|
|
///
|
2009-12-14 20:43:09 +01:00
|
|
|
virtual void initializePass();
|
2002-09-25 23:59:11 +02:00
|
|
|
|
2010-01-22 05:55:08 +01:00
|
|
|
virtual ImmutablePass *getAsImmutablePass() { return this; }
|
|
|
|
|
2003-02-26 20:10:28 +01:00
|
|
|
/// ImmutablePasses are never run.
|
|
|
|
///
|
2008-05-19 22:15:12 +02:00
|
|
|
bool runOnModule(Module &) { return false; }
|
2002-09-25 23:59:11 +02:00
|
|
|
|
2010-08-06 20:33:48 +02:00
|
|
|
explicit ImmutablePass(char &pid)
|
2008-03-19 22:56:59 +01:00
|
|
|
: ModulePass(pid) {}
|
2007-10-08 05:45:44 +02:00
|
|
|
|
2006-12-22 23:49:00 +01:00
|
|
|
// Force out-of-line virtual method.
|
|
|
|
virtual ~ImmutablePass();
|
2002-09-25 23:59:11 +02:00
|
|
|
};
|
|
|
|
|
2002-01-21 08:31:00 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-08-26 00:54:55 +02:00
|
|
|
/// FunctionPass class - This class is used to implement most global
|
|
|
|
/// optimizations. Optimizations should subclass this class if they meet the
|
|
|
|
/// following constraints:
|
|
|
|
///
|
2003-05-03 05:31:06 +02:00
|
|
|
/// 1. Optimizations are organized globally, i.e., a function at a time
|
2002-08-26 00:54:55 +02:00
|
|
|
/// 2. Optimizing a function does not cause the addition or removal of any
|
|
|
|
/// functions in the module
|
|
|
|
///
|
2007-01-26 01:23:00 +01:00
|
|
|
class FunctionPass : public Pass {
|
2004-10-27 18:14:51 +02:00
|
|
|
public:
|
2010-08-06 20:33:48 +02:00
|
|
|
explicit FunctionPass(char &pid) : Pass(PT_Function, pid) {}
|
2007-05-02 22:38:25 +02:00
|
|
|
|
2010-04-03 01:17:14 +02:00
|
|
|
/// createPrinterPass - Get a function printer pass.
|
|
|
|
Pass *createPrinterPass(raw_ostream &O, const std::string &Banner) const;
|
|
|
|
|
2002-08-26 00:54:55 +02:00
|
|
|
/// doInitialization - Virtual method overridden by subclasses to do
|
2003-08-18 16:43:39 +02:00
|
|
|
/// any necessary per-module initialization.
|
2002-08-26 00:54:55 +02:00
|
|
|
///
|
2009-12-14 20:43:09 +01:00
|
|
|
virtual bool doInitialization(Module &);
|
2009-07-22 02:24:57 +02:00
|
|
|
|
2002-08-26 00:54:55 +02:00
|
|
|
/// runOnFunction - Virtual method overriden by subclasses to do the
|
|
|
|
/// per-function processing of the pass.
|
|
|
|
///
|
2002-06-25 18:12:52 +02:00
|
|
|
virtual bool runOnFunction(Function &F) = 0;
|
2001-10-15 19:31:51 +02:00
|
|
|
|
2002-08-26 00:54:55 +02:00
|
|
|
/// doFinalization - Virtual method overriden by subclasses to do any post
|
|
|
|
/// processing needed after all passes have run.
|
|
|
|
///
|
2009-12-14 20:43:09 +01:00
|
|
|
virtual bool doFinalization(Module &);
|
2001-10-15 19:31:51 +02:00
|
|
|
|
2007-01-17 21:30:17 +01:00
|
|
|
virtual void assignPassManager(PMStack &PMS,
|
2010-08-07 03:25:32 +02:00
|
|
|
PassManagerType T);
|
2007-04-16 20:51:25 +02:00
|
|
|
|
|
|
|
/// Return what kind of Pass Manager can manage this pass.
|
2009-12-14 20:43:09 +01:00
|
|
|
virtual PassManagerType getPotentialPassManagerType() const;
|
2002-01-21 08:31:00 +01:00
|
|
|
};
|
2001-10-15 19:31:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2002-01-21 08:31:00 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-08-26 00:54:55 +02:00
|
|
|
/// BasicBlockPass class - This class is used to implement most local
|
|
|
|
/// optimizations. Optimizations should subclass this class if they
|
|
|
|
/// meet the following constraints:
|
|
|
|
/// 1. Optimizations are local, operating on either a basic block or
|
|
|
|
/// instruction at a time.
|
|
|
|
/// 2. Optimizations do not modify the CFG of the contained function, or any
|
|
|
|
/// other basic block in the function.
|
2005-03-16 04:54:50 +01:00
|
|
|
/// 3. Optimizations conform to all of the constraints of FunctionPasses.
|
2002-08-26 00:54:55 +02:00
|
|
|
///
|
2007-01-26 00:23:25 +01:00
|
|
|
class BasicBlockPass : public Pass {
|
2006-01-04 18:21:23 +01:00
|
|
|
public:
|
2010-08-06 20:33:48 +02:00
|
|
|
explicit BasicBlockPass(char &pid) : Pass(PT_BasicBlock, pid) {}
|
2007-05-02 22:38:25 +02:00
|
|
|
|
2010-04-03 01:17:14 +02:00
|
|
|
/// createPrinterPass - Get a function printer pass.
|
|
|
|
Pass *createPrinterPass(raw_ostream &O, const std::string &Banner) const;
|
|
|
|
|
2002-09-12 19:06:43 +02:00
|
|
|
/// doInitialization - Virtual method overridden by subclasses to do
|
2003-08-18 16:43:39 +02:00
|
|
|
/// any necessary per-module initialization.
|
2002-09-12 19:06:43 +02:00
|
|
|
///
|
2009-12-14 20:43:09 +01:00
|
|
|
virtual bool doInitialization(Module &);
|
2002-09-12 19:06:43 +02:00
|
|
|
|
|
|
|
/// doInitialization - Virtual method overridden by BasicBlockPass subclasses
|
2003-08-18 16:43:39 +02:00
|
|
|
/// to do any necessary per-function initialization.
|
2002-09-12 19:06:43 +02:00
|
|
|
///
|
2009-12-14 20:43:09 +01:00
|
|
|
virtual bool doInitialization(Function &);
|
2002-09-12 19:06:43 +02:00
|
|
|
|
2002-08-26 00:54:55 +02:00
|
|
|
/// runOnBasicBlock - Virtual method overriden by subclasses to do the
|
|
|
|
/// per-basicblock processing of the pass.
|
|
|
|
///
|
2002-06-25 18:12:52 +02:00
|
|
|
virtual bool runOnBasicBlock(BasicBlock &BB) = 0;
|
2001-10-15 19:31:51 +02:00
|
|
|
|
2002-09-12 19:06:43 +02:00
|
|
|
/// doFinalization - Virtual method overriden by BasicBlockPass subclasses to
|
|
|
|
/// do any post processing needed after all passes have run.
|
2002-08-26 00:54:55 +02:00
|
|
|
///
|
2009-12-14 20:43:09 +01:00
|
|
|
virtual bool doFinalization(Function &);
|
2002-09-12 19:06:43 +02:00
|
|
|
|
|
|
|
/// doFinalization - Virtual method overriden by subclasses to do any post
|
|
|
|
/// processing needed after all passes have run.
|
|
|
|
///
|
2009-12-14 20:43:09 +01:00
|
|
|
virtual bool doFinalization(Module &);
|
2002-09-12 19:06:43 +02:00
|
|
|
|
2007-01-17 21:30:17 +01:00
|
|
|
virtual void assignPassManager(PMStack &PMS,
|
2010-08-07 03:25:32 +02:00
|
|
|
PassManagerType T);
|
2007-04-16 20:51:25 +02:00
|
|
|
|
|
|
|
/// Return what kind of Pass Manager can manage this pass.
|
2009-12-14 20:43:09 +01:00
|
|
|
virtual PassManagerType getPotentialPassManagerType() const;
|
2007-01-11 02:10:25 +01:00
|
|
|
};
|
|
|
|
|
2004-08-24 19:52:35 +02:00
|
|
|
/// If the user specifies the -time-passes argument on an LLVM tool command line
|
|
|
|
/// then the value of this boolean will be true, otherwise false.
|
|
|
|
/// @brief This is the storage for the -time-passes option.
|
|
|
|
extern bool TimePassesIsEnabled;
|
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2002-07-23 19:59:55 +02:00
|
|
|
// Include support files that contain important APIs commonly used by Passes,
|
2003-05-03 05:31:06 +02:00
|
|
|
// but that we want to separate out to make it easier to read the header files.
|
2002-04-27 08:56:12 +02:00
|
|
|
//
|
2002-07-23 19:59:55 +02:00
|
|
|
#include "llvm/PassSupport.h"
|
|
|
|
#include "llvm/PassAnalysisSupport.h"
|
2002-01-31 00:20:39 +01:00
|
|
|
|
2001-10-15 19:31:51 +02:00
|
|
|
#endif
|