LLVM
15.0.0git
|
#include "llvm/ADT/StringRef.h"
#include "llvm/PassInfo.h"
#include "llvm/PassRegistry.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 | |
This is an optimization pass for GlobalISel generic memory operations. | |
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 () |
#define INITIALIZE_AG_DEPENDENCY | ( | depName | ) | initialize##depName##AnalysisGroup(Registry); |
Definition at line 55 of file PassSupport.h.
Definition at line 153 of file PassSupport.h.
Definition at line 173 of file PassSupport.h.
Definition at line 178 of file PassSupport.h.
#define INITIALIZE_ANALYSIS_GROUP | ( | agName, | |
name, | |||
defaultPass | |||
) |
Definition at line 139 of file PassSupport.h.
Definition at line 37 of file PassSupport.h.
#define INITIALIZE_PASS_BEGIN | ( | passName, | |
arg, | |||
name, | |||
cfg, | |||
analysis | |||
) | static void *initialize##passName##PassOnce(PassRegistry &Registry) { |
Definition at line 51 of file PassSupport.h.
#define INITIALIZE_PASS_DEPENDENCY | ( | depName | ) | initialize##depName##Pass(Registry); |
Definition at line 54 of file PassSupport.h.
Definition at line 58 of file PassSupport.h.