From e253385b108cd946b1ac150302f246d3b218be77 Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Sat, 11 Nov 2006 01:51:02 +0000 Subject: [PATCH] Code refactoring. Move common code into CommonPassManagerImpl :) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31667 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/PassManager.cpp | 90 +++++++++++++++++--------------------- 1 file changed, 41 insertions(+), 49 deletions(-) diff --git a/lib/VMCore/PassManager.cpp b/lib/VMCore/PassManager.cpp index 1e52403399d..599f4b08c92 100644 --- a/lib/VMCore/PassManager.cpp +++ b/lib/VMCore/PassManager.cpp @@ -50,12 +50,27 @@ public: /// Remove dead passes void removeDeadPasses() { /* TODO : Implement */ } + /// Add pass P into the PassVector. Update RequiredAnalysis and + /// AvailableAnalysis appropriately + void addPassToManager (Pass *P); + + inline std::vector::iterator passVectorBegin() { + return PassVector.begin(); + } + + inline std::vector::iterator passVectorEnd() { + return PassVector.end(); + } + private: // Analysis required by the passes managed by this manager std::vector RequiredAnalysis; // set of available Analysis std::set AvailableAnalysis; + + // Collection of pass that are managed by this manager + std::vector PassVector; }; /// BasicBlockPassManager_New manages BasicBlockPass. It batches all the @@ -74,8 +89,6 @@ public: bool runOnFunction(Function &F); private: - // Collection of pass that are managed by this manager - std::vector PassVector; }; /// FunctionPassManagerImpl_New manages FunctionPasses and BasicBlockPassManagers. @@ -106,9 +119,6 @@ public: bool runOnModule(Module &M); private: - // Collection of pass that are manged by this manager - std::vector PassVector; - // Active Pass Managers BasicBlockPassManager_New *activeBBPassManager; }; @@ -129,9 +139,6 @@ public: bool runOnModule(Module &M); private: - // Collection of pass that are managed by this manager - std::vector PassVector; - // Active Pass Manager FunctionPassManagerImpl_New *activeFunctionPassManager; }; @@ -163,9 +170,6 @@ private: // Collection of pass managers std::vector PassManagers; - // Collection of pass that are not yet scheduled - std::vector PassVector; - // Active Pass Manager ModulePassManager_New *activeManager; }; @@ -243,7 +247,6 @@ void CommonPassManagerImpl::removeNotPreservedAnalysis(Pass *P) { for (std::set::iterator I = AvailableAnalysis.begin(), E = AvailableAnalysis.end(); I != E; ++I ) { - AnalysisID AID = *I; if (std::find(PreservedSet.begin(), PreservedSet.end(), *I) == PreservedSet.end()) { // Remove this analysis @@ -253,6 +256,21 @@ void CommonPassManagerImpl::removeNotPreservedAnalysis(Pass *P) { } } +/// Add pass P into the PassVector. Update RequiredAnalysis and +/// AvailableAnalysis appropriately +void CommonPassManagerImpl::addPassToManager (Pass *P) { + + // Take a note of analysis required and made available by this pass + noteDownRequiredAnalysis(P); + noteDownAvailableAnalysis(P); + + // Add pass + PassVector.push_back(P); + + // Remove the analysis not preserved by this pass + removeNotPreservedAnalysis(P); +} + /// BasicBlockPassManager implementation /// Add pass P into PassVector and return true. If this pass is not @@ -269,15 +287,7 @@ BasicBlockPassManager_New::addPass(Pass *P) { if (!manageablePass(P)) return false; - // Take a note of analysis required and made available by this pass - noteDownRequiredAnalysis(P); - noteDownAvailableAnalysis(P); - - // Add pass - PassVector.push_back(BP); - - // Remove the analysis not preserved by this pass - removeNotPreservedAnalysis(P); + addPassToManager (BP); return true; } @@ -290,8 +300,8 @@ BasicBlockPassManager_New::runOnFunction(Function &F) { bool Changed = false; for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) - for (std::vector::iterator itr = PassVector.begin(), - e = PassVector.end(); itr != e; ++itr) { + for (std::vector::iterator itr = passVectorBegin(), + e = passVectorEnd(); itr != e; ++itr) { Pass *P = *itr; BasicBlockPass *BP = dynamic_cast(P); Changed |= BP->runOnBasicBlock(*I); @@ -340,8 +350,7 @@ FunctionPassManagerImpl_New::addPass(Pass *P) { || !activeBBPassManager->addPass(BP)) { activeBBPassManager = new BasicBlockPassManager_New(); - - PassVector.push_back(activeBBPassManager); + addPassToManager(activeBBPassManager); if (!activeBBPassManager->addPass(BP)) assert(0 && "Unable to add Pass"); } @@ -357,15 +366,7 @@ FunctionPassManagerImpl_New::addPass(Pass *P) { if (!manageablePass(P)) return false; - // Take a note of analysis required and made available by this pass - noteDownRequiredAnalysis(P); - noteDownAvailableAnalysis(P); - - PassVector.push_back(FP); - - // Remove the analysis not preserved by this pass - removeNotPreservedAnalysis(P); - + addPassToManager (FP); activeBBPassManager = NULL; return true; } @@ -378,8 +379,8 @@ FunctionPassManagerImpl_New::runOnModule(Module &M) { bool Changed = false; for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) - for (std::vector::iterator itr = PassVector.begin(), - e = PassVector.end(); itr != e; ++itr) { + for (std::vector::iterator itr = passVectorBegin(), + e = passVectorEnd(); itr != e; ++itr) { Pass *P = *itr; FunctionPass *FP = dynamic_cast(P); Changed |= FP->runOnFunction(*I); @@ -405,8 +406,7 @@ ModulePassManager_New::addPass(Pass *P) { || !activeFunctionPassManager->addPass(P)) { activeFunctionPassManager = new FunctionPassManagerImpl_New(); - - PassVector.push_back(activeFunctionPassManager); + addPassToManager(activeFunctionPassManager); if (!activeFunctionPassManager->addPass(FP)) assert(0 && "Unable to add pass"); } @@ -422,15 +422,7 @@ ModulePassManager_New::addPass(Pass *P) { if (!manageablePass(P)) return false; - // Take a note of analysis required and made available by this pass - noteDownRequiredAnalysis(P); - noteDownAvailableAnalysis(P); - - PassVector.push_back(MP); - - // Remove the analysis not preserved by this pass - removeNotPreservedAnalysis(P); - + addPassToManager(MP); activeFunctionPassManager = NULL; return true; } @@ -442,8 +434,8 @@ ModulePassManager_New::addPass(Pass *P) { bool ModulePassManager_New::runOnModule(Module &M) { bool Changed = false; - for (std::vector::iterator itr = PassVector.begin(), - e = PassVector.end(); itr != e; ++itr) { + for (std::vector::iterator itr = passVectorBegin(), + e = passVectorEnd(); itr != e; ++itr) { Pass *P = *itr; ModulePass *MP = dynamic_cast(P); Changed |= MP->runOnModule(M);