|
LLVM
3.7.0
|
Template for the abstract base class used to dispatch polymorphically over pass objects. More...
#include <PassManagerInternal.h>
Public Member Functions | |
| virtual | ~PassConcept () |
| virtual PreservedAnalyses | run (IRUnitT &IR, AnalysisManager< IRUnitT > *AM)=0 |
| The polymorphic API which runs the pass over a given IR entity. More... | |
| virtual StringRef | name ()=0 |
| Polymorphic method to access the name of a pass. More... | |
Template for the abstract base class used to dispatch polymorphically over pass objects.
Definition at line 34 of file PassManagerInternal.h.
|
inlinevirtual |
Definition at line 36 of file PassManagerInternal.h.
|
pure virtual |
Polymorphic method to access the name of a pass.
Implemented in llvm::detail::PassModel< IRUnitT, PassT, PreservedAnalysesT, false >, and llvm::detail::PassModel< IRUnitT, PassT, PreservedAnalysesT, true >.
|
pure virtual |
The polymorphic API which runs the pass over a given IR entity.
Note that actual pass object can omit the analysis manager argument if desired. Also that the analysis manager may be null if there is no analysis manager in the pass pipeline.
Implemented in llvm::detail::PassModel< IRUnitT, PassT, PreservedAnalysesT, false >, and llvm::detail::PassModel< IRUnitT, PassT, PreservedAnalysesT, true >.
1.8.6