LLVM 19.0.0git
Public Types | Public Member Functions | List of all members
llvm::AAManager Class Reference

A manager for alias analyses. More...

#include "llvm/Analysis/AliasAnalysis.h"

Inheritance diagram for llvm::AAManager:
Inheritance graph
[legend]

Public Types

using Result = AAResults
 

Public Member Functions

template<typename AnalysisT >
void registerFunctionAnalysis ()
 Register a specific AA result.
 
template<typename AnalysisT >
void registerModuleAnalysis ()
 Register a specific AA result.
 
Result run (Function &F, FunctionAnalysisManager &AM)
 
- Public Member Functions inherited from llvm::PassInfoMixin< DerivedT >
void printPipeline (raw_ostream &OS, function_ref< StringRef(StringRef)> MapClassName2PassName)
 

Additional Inherited Members

- Static Public Member Functions inherited from llvm::AnalysisInfoMixin< AAManager >
static AnalysisKeyID ()
 Returns an opaque, unique ID for this analysis type.
 
- Static Public Member Functions inherited from llvm::PassInfoMixin< DerivedT >
static StringRef name ()
 Gets the name of the pass we are mixed into.
 

Detailed Description

A manager for alias analyses.

This class can have analyses registered with it and when run, it will run all of them and aggregate their results into single AA results interface that dispatches across all of the alias analysis results available.

Note that the order in which analyses are registered is very significant. That is the order in which the results will be aggregated and queried.

This manager effectively wraps the AnalysisManager for registering alias analyses. When you register your alias analysis with this manager, it will ensure the analysis itself is registered with its AnalysisManager.

The result of this analysis is only invalidated if one of the particular aggregated AA results end up being invalidated. This removes the need to explicitly preserve the results of AAManager. Note that analyses should no longer be registered once the AAManager is run.

Definition at line 912 of file AliasAnalysis.h.

Member Typedef Documentation

◆ Result

Definition at line 914 of file AliasAnalysis.h.

Member Function Documentation

◆ registerFunctionAnalysis()

template<typename AnalysisT >
void llvm::AAManager::registerFunctionAnalysis ( )
inline

◆ registerModuleAnalysis()

template<typename AnalysisT >
void llvm::AAManager::registerModuleAnalysis ( )
inline

Register a specific AA result.

Definition at line 922 of file AliasAnalysis.h.

Referenced by llvm::PassBuilder::buildDefaultAAPipeline().

◆ run()

AAManager::Result AAManager::run ( Function F,
FunctionAnalysisManager AM 
)

The documentation for this class was generated from the following files: