aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-12-01 22:36:43 +0000
committerChris Lattner <sabre@nondot.org>2006-12-01 22:36:43 +0000
commitcb90249ecb66ac88a20439daec6576e4726b1a60 (patch)
treecb10533ec7deecb9e4241cd9e2372174a6fe1360
parentfcb5df8f2cdf6ced4c33150cd5d315b53be66714 (diff)
pass cfgonly up the ctor instead of calling an explicit method.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32105 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/PassSupport.h28
1 files changed, 6 insertions, 22 deletions
diff --git a/include/llvm/PassSupport.h b/include/llvm/PassSupport.h
index 9f5bc55f9c..16419d7b7a 100644
--- a/include/llvm/PassSupport.h
+++ b/include/llvm/PassSupport.h
@@ -48,9 +48,9 @@ public:
/// PassInfo ctor - Do not call this directly, this should only be invoked
/// through RegisterPass.
PassInfo(const char *name, const char *arg, const std::type_info &ti,
- Pass *(*normal)() = 0)
+ Pass *(*normal)() = 0, bool isCFGOnly = false)
: PassName(name), PassArgument(arg), TypeInfo(ti),
- IsCFGOnlyPass(false), IsAnalysisGroup(false), NormalCtor(normal) {
+ IsCFGOnlyPass(isCFGOnly), IsAnalysisGroup(false), NormalCtor(normal) {
}
/// getPassName - Return the friendly name for the pass, never returns null
@@ -77,7 +77,6 @@ public:
/// isCFGOnlyPass - return true if this pass only looks at the CFG for the
/// function.
bool isCFGOnlyPass() const { return IsCFGOnlyPass; }
- void SetIsCFGOnlyPass() { IsCFGOnlyPass = true; }
/// getNormalCtor - Return a pointer to a function, that when called, creates
/// an instance of the pass and returns it. This pointer may be null if there
@@ -131,8 +130,7 @@ public:
/// must be called, create a global constructor function (which takes the
/// arguments you need and returns a Pass*) and register your pass like this:
///
-/// Pass *createMyPass(foo &opt) { return new MyPass(opt); }
-/// static RegisterPass<PassClassName> tmp("passopt", "My Name", createMyPass);
+/// static RegisterPass<PassClassName> tmp("passopt", "My Name");
///
struct RegisterPassBase {
/// getPassInfo - Get the pass info for the registered class...
@@ -140,8 +138,8 @@ struct RegisterPassBase {
const PassInfo *getPassInfo() const { return &PIObj; }
RegisterPassBase(const char *Name, const char *Arg, const std::type_info &TI,
- Pass *(*NormalCtor)() = 0)
- : PIObj(Name, Arg, TI, NormalCtor) {
+ Pass *(*NormalCtor)() = 0, bool CFGOnly = false)
+ : PIObj(Name, Arg, TI, NormalCtor, CFGOnly) {
registerPass();
}
RegisterPassBase(const std::type_info &TI)
@@ -150,24 +148,11 @@ struct RegisterPassBase {
// the pass.
PIObj.SetIsAnalysisGroup();
}
-
- ~RegisterPassBase() { // Intentionally non-virtual.
- // Analysis groups are registered/unregistered by their dtor.
- if (!PIObj.isAnalysisGroup())
- unregisterPass();
- }
protected:
PassInfo PIObj; // The PassInfo object for this pass
void registerPass();
void unregisterPass();
-
- /// setOnlyUsesCFG - Notice that this pass only depends on the CFG, so
- /// transformations that do not modify the CFG do not invalidate this pass.
- ///
- void setOnlyUsesCFG() {
- PIObj.SetIsCFGOnlyPass();
- }
};
template<typename PassName>
@@ -179,8 +164,7 @@ struct RegisterPass : public RegisterPassBase {
// Register Pass using default constructor...
RegisterPass(const char *PassArg, const char *Name, bool CFGOnly = false)
: RegisterPassBase(Name, PassArg, typeid(PassName),
- callDefaultCtor<PassName>) {
- if (CFGOnly) setOnlyUsesCFG();
+ callDefaultCtor<PassName>, CFGOnly) {
}
};