Struct llvm_plugin::FunctionAnalysisManager
source · pub struct FunctionAnalysisManager { /* private fields */ }
Expand description
Struct allowing to query the pass manager for the result of analyses on function IR.
Implementations§
source§impl FunctionAnalysisManager
impl FunctionAnalysisManager
sourcepub fn get_result<A>(&self, function: &FunctionValue<'_>) -> &A::Resultwhere
A: LlvmFunctionAnalysis,
pub fn get_result<A>(&self, function: &FunctionValue<'_>) -> &A::Resultwhere
A: LlvmFunctionAnalysis,
Returns the result of the analysis on a given function IR.
If the result is not in cache, the pass manager will execute the analysis pass. Otherwise, the result is directly returned from cache.
§Panics
Panics if the given analysis wasn’t registered, or if this function was called within the given analysis itself.
sourcepub fn get_cached_result<A>(
&self,
function: &FunctionValue<'_>
) -> Option<&A::Result>where
A: LlvmFunctionAnalysis,
pub fn get_cached_result<A>(
&self,
function: &FunctionValue<'_>
) -> Option<&A::Result>where
A: LlvmFunctionAnalysis,
Returns the result of the analysis on a given function IR.
If the result is not in cache, None
is returned. Otherwise,
the result is directly returned from cache.
This function never triggers the execution of an analysis.
§Panics
Panics if the given analysis wasn’t registered, or if this function was called within the given analysis itself.
sourcepub fn register_pass<T>(&mut self, pass: T)where
T: LlvmFunctionAnalysis,
pub fn register_pass<T>(&mut self, pass: T)where
T: LlvmFunctionAnalysis,
Register an analysis pass to the analysis manager.
§Panics
Panics if the given analysis was already registered.