|
LLVM
4.0.0
|
#include "Pass.h"#include "llvm/InitializePasses.h"#include "llvm/PassInfo.h"#include "llvm/PassRegistry.h"#include "llvm/Support/Atomic.h"#include "llvm/Support/Threading.h"#include <functional>Go to the source code of this file.
Classes | |
| struct | llvm::RegisterPass< passName > |
| RegisterPass<t> template - This template class is used to notify the system that a Pass is available for use, and registers it into the internal database maintained by the PassManager. More... | |
| class | llvm::RegisterAGBase |
| RegisterAnalysisGroup - Register a Pass as a member of an analysis group. More... | |
| struct | llvm::RegisterAnalysisGroup< Interface, Default > |
| struct | llvm::PassRegistrationListener |
| PassRegistrationListener class - This class is meant to be derived from by clients that are interested in which passes get registered and unregistered at runtime (which can be because of the RegisterPass constructors being run as the program starts up, or may be because a shared object just got loaded). More... | |
Namespaces | |
| llvm | |
| Compute iterated dominance frontiers using a linear time algorithm. | |
Macros | |
| #define | INITIALIZE_PASS(passName, arg, name, cfg, analysis) |
| #define | INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis) static void *initialize##passName##PassOnce(PassRegistry &Registry) { |
| #define | INITIALIZE_PASS_DEPENDENCY(depName) initialize##depName##Pass(Registry); |
| #define | INITIALIZE_AG_DEPENDENCY(depName) initialize##depName##AnalysisGroup(Registry); |
| #define | INITIALIZE_PASS_END(passName, arg, name, cfg, analysis) |
| #define | INITIALIZE_PASS_WITH_OPTIONS(PassName, Arg, Name, Cfg, Analysis) |
| #define | INITIALIZE_PASS_WITH_OPTIONS_BEGIN(PassName, Arg, Name, Cfg, Analysis) |
| #define | INITIALIZE_ANALYSIS_GROUP(agName, name, defaultPass) |
| #define | INITIALIZE_AG_PASS(passName, agName, arg, name, cfg, analysis, def) |
| #define | INITIALIZE_AG_PASS_BEGIN(passName, agName, arg, n, cfg, analysis, def) |
| #define | INITIALIZE_AG_PASS_END(passName, agName, arg, n, cfg, analysis, def) |
Functions | |
| template<typename PassName > | |
| Pass * | llvm::callDefaultCtor () |
| template<typename PassName > | |
| Pass * | llvm::callTargetMachineCtor (TargetMachine *TM) |
| #define INITIALIZE_AG_DEPENDENCY | ( | depName | ) | initialize##depName##AnalysisGroup(Registry); |
Definition at line 54 of file PassSupport.h.
Definition at line 162 of file PassSupport.h.
| #define INITIALIZE_AG_PASS_BEGIN | ( | passName, | |
| agName, | |||
| arg, | |||
| n, | |||
| cfg, | |||
| analysis, | |||
| def | |||
| ) |
Definition at line 182 of file PassSupport.h.
| #define INITIALIZE_AG_PASS_END | ( | passName, | |
| agName, | |||
| arg, | |||
| n, | |||
| cfg, | |||
| analysis, | |||
| def | |||
| ) |
Definition at line 187 of file PassSupport.h.
| #define INITIALIZE_ANALYSIS_GROUP | ( | agName, | |
| name, | |||
| defaultPass | |||
| ) |
Definition at line 148 of file PassSupport.h.
Definition at line 36 of file PassSupport.h.
| #define INITIALIZE_PASS_BEGIN | ( | passName, | |
| arg, | |||
| name, | |||
| cfg, | |||
| analysis | |||
| ) | static void *initialize##passName##PassOnce(PassRegistry &Registry) { |
Definition at line 50 of file PassSupport.h.
| #define INITIALIZE_PASS_DEPENDENCY | ( | depName | ) | initialize##depName##Pass(Registry); |
Definition at line 53 of file PassSupport.h.
Referenced by llvm::initializeLazyBFIPassPass(), llvm::initializeLazyBPIPassPass(), and llvm::initializeLoopPassPass().
Definition at line 57 of file PassSupport.h.
Definition at line 70 of file PassSupport.h.
Definition at line 75 of file PassSupport.h.
1.8.6