forked from OSchip/llvm-project
Hide analysis group registration behind a macro, just like pass registration.
llvm-svn: 115835
This commit is contained in:
parent
284fa417ec
commit
ad8134f03b
|
@ -210,6 +210,13 @@ struct RegisterAnalysisGroup : public RegisterAGBase {
|
|||
}
|
||||
};
|
||||
|
||||
#define INITIALIZE_ANALYSIS_GROUP(agName, name) \
|
||||
void initialize##agName##AnalysisGroup(PassRegistry &Registry) { \
|
||||
PassInfo *AI = new PassInfo(name, & agName :: ID); \
|
||||
Registry.registerAnalysisGroup(& agName ::ID, 0, *AI, false); \
|
||||
} \
|
||||
static RegisterAnalysisGroup<agName> agName##_info (name)
|
||||
|
||||
#define INITIALIZE_AG_PASS(passName, agName, arg, name, cfg, analysis, def) \
|
||||
void initialize##passName##Pass(PassRegistry &Registry) { \
|
||||
PassInfo *PI = new PassInfo(name, arg, & passName ::ID, \
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
using namespace llvm;
|
||||
|
||||
// Register the AliasAnalysis interface, providing a nice name to refer to.
|
||||
static RegisterAnalysisGroup<AliasAnalysis> Z("Alias Analysis");
|
||||
INITIALIZE_ANALYSIS_GROUP(AliasAnalysis, "Alias Analysis");
|
||||
char AliasAnalysis::ID = 0;
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
|
|
@ -171,7 +171,7 @@ private:
|
|||
|
||||
} //End anonymous namespace
|
||||
|
||||
static RegisterAnalysisGroup<CallGraph> X("Call Graph");
|
||||
INITIALIZE_ANALYSIS_GROUP(CallGraph, "Call Graph");
|
||||
INITIALIZE_AG_PASS(BasicCallGraph, CallGraph, "basiccg",
|
||||
"Basic CallGraph Construction", false, true, true);
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
using namespace llvm;
|
||||
|
||||
// Register the ProfileInfo interface, providing a nice name to refer to.
|
||||
static RegisterAnalysisGroup<ProfileInfo> Z("Profile Information");
|
||||
INITIALIZE_ANALYSIS_GROUP(ProfileInfo, "Profile Information");
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
using namespace llvm;
|
||||
|
||||
// Register the RegisterCoalescer interface, providing a nice name to refer to.
|
||||
static RegisterAnalysisGroup<RegisterCoalescer> Z("Register Coalescer");
|
||||
INITIALIZE_ANALYSIS_GROUP(RegisterCoalescer, "Register Coalescer");
|
||||
char RegisterCoalescer::ID = 0;
|
||||
|
||||
// RegisterCoalescer destructor: DO NOT move this to the header file
|
||||
|
|
Loading…
Reference in New Issue