From e9ef41a47d2ee637b6aed5d018c4d90019d987ac Mon Sep 17 00:00:00 2001 From: Owen Anderson Date: Wed, 6 Oct 2010 21:02:27 +0000 Subject: [PATCH] Hide analysis group registration behind a macro, just like pass registration. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115835 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/PassSupport.h | 7 +++++++ lib/Analysis/AliasAnalysis.cpp | 2 +- lib/Analysis/IPA/CallGraph.cpp | 2 +- lib/Analysis/ProfileInfo.cpp | 2 +- lib/CodeGen/RegisterCoalescer.cpp | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/include/llvm/PassSupport.h b/include/llvm/PassSupport.h index ac61eb6a073..2c17ddd217a 100644 --- a/include/llvm/PassSupport.h +++ b/include/llvm/PassSupport.h @@ -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##_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, \ diff --git a/lib/Analysis/AliasAnalysis.cpp b/lib/Analysis/AliasAnalysis.cpp index b9cd5a69203..79ccabe88e1 100644 --- a/lib/Analysis/AliasAnalysis.cpp +++ b/lib/Analysis/AliasAnalysis.cpp @@ -36,7 +36,7 @@ using namespace llvm; // Register the AliasAnalysis interface, providing a nice name to refer to. -static RegisterAnalysisGroup Z("Alias Analysis"); +INITIALIZE_ANALYSIS_GROUP(AliasAnalysis, "Alias Analysis"); char AliasAnalysis::ID = 0; //===----------------------------------------------------------------------===// diff --git a/lib/Analysis/IPA/CallGraph.cpp b/lib/Analysis/IPA/CallGraph.cpp index b3635283fda..d3d3af3fdf9 100644 --- a/lib/Analysis/IPA/CallGraph.cpp +++ b/lib/Analysis/IPA/CallGraph.cpp @@ -171,7 +171,7 @@ private: } //End anonymous namespace -static RegisterAnalysisGroup X("Call Graph"); +INITIALIZE_ANALYSIS_GROUP(CallGraph, "Call Graph"); INITIALIZE_AG_PASS(BasicCallGraph, CallGraph, "basiccg", "Basic CallGraph Construction", false, true, true); diff --git a/lib/Analysis/ProfileInfo.cpp b/lib/Analysis/ProfileInfo.cpp index fc7f28662c0..9d10f4e9243 100644 --- a/lib/Analysis/ProfileInfo.cpp +++ b/lib/Analysis/ProfileInfo.cpp @@ -25,7 +25,7 @@ using namespace llvm; // Register the ProfileInfo interface, providing a nice name to refer to. -static RegisterAnalysisGroup Z("Profile Information"); +INITIALIZE_ANALYSIS_GROUP(ProfileInfo, "Profile Information"); namespace llvm { diff --git a/lib/CodeGen/RegisterCoalescer.cpp b/lib/CodeGen/RegisterCoalescer.cpp index 02b5539f0f4..b97a3a09414 100644 --- a/lib/CodeGen/RegisterCoalescer.cpp +++ b/lib/CodeGen/RegisterCoalescer.cpp @@ -24,7 +24,7 @@ using namespace llvm; // Register the RegisterCoalescer interface, providing a nice name to refer to. -static RegisterAnalysisGroup Z("Register Coalescer"); +INITIALIZE_ANALYSIS_GROUP(RegisterCoalescer, "Register Coalescer"); char RegisterCoalescer::ID = 0; // RegisterCoalescer destructor: DO NOT move this to the header file