|
LLVM
3.7.0
|
#include "Pass.h"#include "llvm/InitializePasses.h"#include "llvm/PassInfo.h"#include "llvm/PassRegistry.h"#include "llvm/Support/Atomic.h"#include "llvm/Support/Valgrind.h"#include <vector>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 | CALL_ONCE_INITIALIZATION(function) |
| #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 CALL_ONCE_INITIALIZATION | ( | function | ) |
Definition at line 36 of file PassSupport.h.
Referenced by llvm::initializeHexagonCFGOptimizerPass(), llvm::initializeHexagonDAGToDAGISelPass(), llvm::initializeHexagonExpandCondsetsPass(), llvm::initializeHexagonExpandPredSpillCodePass(), and llvm::initializePPCDAGToDAGISelPass().
| #define INITIALIZE_AG_DEPENDENCY | ( | depName | ) | initialize##depName##AnalysisGroup(Registry); |
Definition at line 72 of file PassSupport.h.
| #define INITIALIZE_AG_PASS | ( | passName, | |
| agName, | |||
| arg, | |||
| name, | |||
| cfg, | |||
| analysis, | |||
| def | |||
| ) |
Definition at line 184 of file PassSupport.h.
| #define INITIALIZE_AG_PASS_BEGIN | ( | passName, | |
| agName, | |||
| arg, | |||
| n, | |||
| cfg, | |||
| analysis, | |||
| def | |||
| ) |
Definition at line 201 of file PassSupport.h.
| #define INITIALIZE_AG_PASS_END | ( | passName, | |
| agName, | |||
| arg, | |||
| n, | |||
| cfg, | |||
| analysis, | |||
| def | |||
| ) |
Definition at line 205 of file PassSupport.h.
| #define INITIALIZE_ANALYSIS_GROUP | ( | agName, | |
| name, | |||
| defaultPass | |||
| ) |
Definition at line 172 of file PassSupport.h.
| #define INITIALIZE_PASS | ( | passName, | |
| arg, | |||
| name, | |||
| cfg, | |||
| analysis | |||
| ) |
Definition at line 56 of file PassSupport.h.
| #define INITIALIZE_PASS_BEGIN | ( | passName, | |
| arg, | |||
| name, | |||
| cfg, | |||
| analysis | |||
| ) | static void* initialize##passName##PassOnce(PassRegistry &Registry) { |
Definition at line 67 of file PassSupport.h.
| #define INITIALIZE_PASS_DEPENDENCY | ( | depName | ) | initialize##depName##Pass(Registry); |
Definition at line 70 of file PassSupport.h.
| #define INITIALIZE_PASS_END | ( | passName, | |
| arg, | |||
| name, | |||
| cfg, | |||
| analysis | |||
| ) |
Definition at line 75 of file PassSupport.h.
| #define INITIALIZE_PASS_WITH_OPTIONS | ( | PassName, | |
| Arg, | |||
| Name, | |||
| Cfg, | |||
| Analysis | |||
| ) |
Definition at line 85 of file PassSupport.h.
| #define INITIALIZE_PASS_WITH_OPTIONS_BEGIN | ( | PassName, | |
| Arg, | |||
| Name, | |||
| Cfg, | |||
| Analysis | |||
| ) |
Definition at line 90 of file PassSupport.h.
1.8.6