forked from OSchip/llvm-project
[PM] Make the function pass manager more regular.
The FunctionPassManager is now itself a function pass. When run over a function, it runs all N of its passes over that function. This is the 1:N mapping in the pass dimension only. This allows it to be used in either a ModulePassManager or potentially some other manager that works on IR units which are supersets of Functions. This commit also adds the obvious adaptor to map from a module pass to a function pass, running the function pass across every function in the module. The test has been updated to use this new pattern. llvm-svn: 195192
This commit is contained in:
parent
babe749125
commit
d895e29e88
|
@ -189,7 +189,7 @@ public:
|
||||||
Passes.push_back(new FunctionPassModel<FunctionPassT>(llvm_move(Pass)));
|
Passes.push_back(new FunctionPassModel<FunctionPassT>(llvm_move(Pass)));
|
||||||
}
|
}
|
||||||
|
|
||||||
bool run(Module *M);
|
bool run(Function *F);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// Pull in the concept type and model template specialized for functions.
|
// Pull in the concept type and model template specialized for functions.
|
||||||
|
@ -204,6 +204,36 @@ private:
|
||||||
std::vector<polymorphic_ptr<FunctionPassConcept> > Passes;
|
std::vector<polymorphic_ptr<FunctionPassConcept> > Passes;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/// \brief Trivial adaptor that maps from a module to its functions.
|
||||||
|
///
|
||||||
|
/// Designed to allow composition of a FunctionPass(Manager) and a
|
||||||
|
/// ModulePassManager.
|
||||||
|
template <typename FunctionPassT>
|
||||||
|
class ModuleToFunctionPassAdaptor {
|
||||||
|
public:
|
||||||
|
explicit ModuleToFunctionPassAdaptor(FunctionPassT Pass)
|
||||||
|
: Pass(llvm_move(Pass)) {}
|
||||||
|
|
||||||
|
/// \brief Runs the function pass across every function in the module.
|
||||||
|
bool run(Module *M) {
|
||||||
|
bool Changed = false;
|
||||||
|
for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
|
||||||
|
Changed |= Pass.run(I);
|
||||||
|
return Changed;
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
FunctionPassT Pass;
|
||||||
|
};
|
||||||
|
|
||||||
|
/// \brief A function to deduce a function pass type and wrap it in the
|
||||||
|
/// templated adaptor.
|
||||||
|
template <typename FunctionPassT>
|
||||||
|
ModuleToFunctionPassAdaptor<FunctionPassT>
|
||||||
|
createModuleToFunctionPassAdaptor(FunctionPassT Pass) {
|
||||||
|
return ModuleToFunctionPassAdaptor<FunctionPassT>(llvm_move(Pass));
|
||||||
|
}
|
||||||
|
|
||||||
/// \brief A module analysis pass manager with lazy running and caching of
|
/// \brief A module analysis pass manager with lazy running and caching of
|
||||||
/// results.
|
/// results.
|
||||||
class ModuleAnalysisManager {
|
class ModuleAnalysisManager {
|
||||||
|
|
|
@ -53,15 +53,14 @@ void ModuleAnalysisManager::invalidateImpl(void *PassID, Module *M) {
|
||||||
ModuleAnalysisResults.erase(PassID);
|
ModuleAnalysisResults.erase(PassID);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool FunctionPassManager::run(Module *M) {
|
bool FunctionPassManager::run(Function *F) {
|
||||||
bool Changed = false;
|
bool Changed = false;
|
||||||
for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
|
for (unsigned Idx = 0, Size = Passes.size(); Idx != Size; ++Idx)
|
||||||
for (unsigned Idx = 0, Size = Passes.size(); Idx != Size; ++Idx)
|
if (Passes[Idx]->run(F)) {
|
||||||
if (Passes[Idx]->run(I)) {
|
Changed = true;
|
||||||
Changed = true;
|
if (AM)
|
||||||
if (AM)
|
AM->invalidateAll(F);
|
||||||
AM->invalidateAll(I);
|
}
|
||||||
}
|
|
||||||
return Changed;
|
return Changed;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -120,7 +120,7 @@ TEST_F(PassManagerTest, Basic) {
|
||||||
int FunctionPassRunCount = 0;
|
int FunctionPassRunCount = 0;
|
||||||
int AnalyzedInstrCount = 0;
|
int AnalyzedInstrCount = 0;
|
||||||
FPM.addPass(TestFunctionPass(AM, FunctionPassRunCount, AnalyzedInstrCount));
|
FPM.addPass(TestFunctionPass(AM, FunctionPassRunCount, AnalyzedInstrCount));
|
||||||
MPM.addPass(FPM);
|
MPM.addPass(createModuleToFunctionPassAdaptor(FPM));
|
||||||
|
|
||||||
MPM.run(M.get());
|
MPM.run(M.get());
|
||||||
EXPECT_EQ(1, ModulePassRunCount);
|
EXPECT_EQ(1, ModulePassRunCount);
|
||||||
|
|
Loading…
Reference in New Issue