[llvm-commits] CVS: llvm/include/llvm/PassManager.h
Devang Patel
dpatel at apple.com
Wed Nov 8 02:30:15 PST 2006
Changes in directory llvm/include/llvm:
PassManager.h updated: 1.24 -> 1.25
---
Log message:
Split PassManager_New into PassManager_New and PassManagerImpl_New.
PassManagerImpl_New implements the pass manager.
PassManager_New is the public interface.
---
Diffs of the changes: (+6 -14)
PassManager.h | 20 ++++++--------------
1 files changed, 6 insertions(+), 14 deletions(-)
Index: llvm/include/llvm/PassManager.h
diff -u llvm/include/llvm/PassManager.h:1.24 llvm/include/llvm/PassManager.h:1.25
--- llvm/include/llvm/PassManager.h:1.24 Wed Nov 8 04:05:38 2006
+++ llvm/include/llvm/PassManager.h Wed Nov 8 04:29:57 2006
@@ -89,6 +89,7 @@
};
class ModulePassManager_New;
+class PassManagerImpl_New;
/// PassManagerAnalysisHelper helps pass manager analysis required by
/// the managed passes. It provides methods to add/remove analysis
@@ -127,6 +128,8 @@
public:
+ PassManager_New();
+
/// add - Add a pass to the queue of passes to run. This passes ownership of
/// the Pass to the PassManager. When the PassManager is destroyed, the pass
/// will be destroyed as well, so there is no need to delete the pass. This
@@ -138,22 +141,11 @@
bool run(Module &M);
private:
-
- /// Add a pass into a passmanager queue. This is used by schedulePasses
- bool addPass(Pass *p);
- /// Schedule all passes collected in pass queue using add(). Add all the
- /// schedule passes into various manager's queue using addPass().
- void schedulePasses();
+ /// PassManagerImpl_New is the actual class. PassManager_New is just the
+ /// wraper to publish simple pass manager interface
+ PassManagerImpl_New *PM;
- // Collection of pass managers
- std::vector<ModulePassManager_New *> PassManagers;
-
- // Collection of pass that are not yet scheduled
- std::vector<Pass *> PassVector;
-
- // Active Pass Manager
- ModulePassManager_New *activeManager;
};
} // End llvm namespace
More information about the llvm-commits
mailing list