mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
allow updating the MPM, so that you can use one FunctionPAssManager with
multiple ModuleProviders, e.g. with the JIT. llvm-svn: 52796
This commit is contained in:
parent
407d3b820b
commit
865a98fba9
@ -95,6 +95,12 @@ public:
|
||||
/// doFinalization - Run all of the finalizers for the function passes.
|
||||
///
|
||||
bool doFinalization();
|
||||
|
||||
/// getModuleProvider - Return the module provider that this passmanager is
|
||||
/// currently using. This is the module provider that it uses when a function
|
||||
/// is optimized that is non-resident in the module.
|
||||
ModuleProvider *getModuleProvider() const { return MP; }
|
||||
void setModuleProvider(ModuleProvider *NewMP) { MP = NewMP; }
|
||||
|
||||
private:
|
||||
FunctionPassManagerImpl *FPM;
|
||||
|
Loading…
x
Reference in New Issue
Block a user