LLVM 17.0.0git
|
#include "llvm/ADT/StringRef.h"
#include "llvm/PassInfo.h"
#include "llvm/PassRegistry.h"
#include "llvm/Support/Error.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 | |
namespace | 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<class PassName , std::enable_if_t< std::is_default_constructible< PassName >{}, bool > = true> | |
Pass * | llvm::callDefaultCtor () |
#define INITIALIZE_AG_DEPENDENCY | ( | depName | ) | initialize##depName##AnalysisGroup(Registry); |
Definition at line 56 of file PassSupport.h.
Definition at line 168 of file PassSupport.h.
#define INITIALIZE_AG_PASS_BEGIN | ( | passName, | |
agName, | |||
arg, | |||
n, | |||
cfg, | |||
analysis, | |||
def | |||
) |
Definition at line 188 of file PassSupport.h.
#define INITIALIZE_AG_PASS_END | ( | passName, | |
agName, | |||
arg, | |||
n, | |||
cfg, | |||
analysis, | |||
def | |||
) |
Definition at line 193 of file PassSupport.h.
#define INITIALIZE_ANALYSIS_GROUP | ( | agName, | |
name, | |||
defaultPass | |||
) |
Definition at line 154 of file PassSupport.h.
Definition at line 38 of file PassSupport.h.
#define INITIALIZE_PASS_BEGIN | ( | passName, | |
arg, | |||
name, | |||
cfg, | |||
analysis | |||
) | static void *initialize##passName##PassOnce(PassRegistry &Registry) { |
Definition at line 52 of file PassSupport.h.
#define INITIALIZE_PASS_DEPENDENCY | ( | depName | ) | initialize##depName##Pass(Registry); |
Definition at line 55 of file PassSupport.h.
Definition at line 59 of file PassSupport.h.
Definition at line 72 of file PassSupport.h.