LLVM 19.0.0git
PassSupport.h
Go to the documentation of this file.
1//===- llvm/PassSupport.h - Pass Support code -------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file defines stuff that is used to define and "use" Passes. This file
10// is automatically #included by Pass.h, so:
11//
12// NO .CPP FILES SHOULD INCLUDE THIS FILE DIRECTLY
13//
14// Instead, #include Pass.h.
15//
16// This file defines Pass registration code and classes used for it.
17//
18//===----------------------------------------------------------------------===//
19
20#if !defined(LLVM_PASS_H) || defined(LLVM_PASSSUPPORT_H)
21#error "Do not include <PassSupport.h>; include <Pass.h> instead"
22#endif
23
24#ifndef LLVM_PASSSUPPORT_H
25#define LLVM_PASSSUPPORT_H
26
27#include "llvm/ADT/StringRef.h"
28#include "llvm/PassInfo.h"
29#include "llvm/PassRegistry.h"
30#include "llvm/Support/Error.h"
32#include <functional>
33
34namespace llvm {
35
36class Pass;
37
38#define INITIALIZE_PASS(passName, arg, name, cfg, analysis) \
39 static void *initialize##passName##PassOnce(PassRegistry &Registry) { \
40 PassInfo *PI = new PassInfo( \
41 name, arg, &passName::ID, \
42 PassInfo::NormalCtor_t(callDefaultCtor<passName>), cfg, analysis); \
43 Registry.registerPass(*PI, true); \
44 return PI; \
45 } \
46 static llvm::once_flag Initialize##passName##PassFlag; \
47 void llvm::initialize##passName##Pass(PassRegistry &Registry) { \
48 llvm::call_once(Initialize##passName##PassFlag, \
49 initialize##passName##PassOnce, std::ref(Registry)); \
50 }
51
52#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis) \
53 static void *initialize##passName##PassOnce(PassRegistry &Registry) {
54
55#define INITIALIZE_PASS_DEPENDENCY(depName) initialize##depName##Pass(Registry);
56#define INITIALIZE_AG_DEPENDENCY(depName) \
57 initialize##depName##AnalysisGroup(Registry);
58
59#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis) \
60 PassInfo *PI = new PassInfo( \
61 name, arg, &passName::ID, \
62 PassInfo::NormalCtor_t(callDefaultCtor<passName>), cfg, analysis); \
63 Registry.registerPass(*PI, true); \
64 return PI; \
65 } \
66 static llvm::once_flag Initialize##passName##PassFlag; \
67 void llvm::initialize##passName##Pass(PassRegistry &Registry) { \
68 llvm::call_once(Initialize##passName##PassFlag, \
69 initialize##passName##PassOnce, std::ref(Registry)); \
70 }
71
72#define INITIALIZE_PASS_WITH_OPTIONS(PassName, Arg, Name, Cfg, Analysis) \
73 INITIALIZE_PASS_BEGIN(PassName, Arg, Name, Cfg, Analysis) \
74 PassName::registerOptions(); \
75 INITIALIZE_PASS_END(PassName, Arg, Name, Cfg, Analysis)
76
77#define INITIALIZE_PASS_WITH_OPTIONS_BEGIN(PassName, Arg, Name, Cfg, Analysis) \
78 INITIALIZE_PASS_BEGIN(PassName, Arg, Name, Cfg, Analysis) \
79 PassName::registerOptions();
80
81template <
82 class PassName,
83 std::enable_if_t<std::is_default_constructible<PassName>{}, bool> = true>
85 return new PassName();
86}
87
88template <
89 class PassName,
90 std::enable_if_t<!std::is_default_constructible<PassName>{}, bool> = true>
92 // Some codegen passes should only be testable via
93 // `llc -{start|stop}-{before|after}=<passname>`, not via `opt -<passname>`.
94 report_fatal_error("target-specific codegen-only pass");
95}
96
97//===---------------------------------------------------------------------------
98/// RegisterPass<t> template - This template class is used to notify the system
99/// that a Pass is available for use, and registers it into the internal
100/// database maintained by the PassManager. Unless this template is used, opt,
101/// for example will not be able to see the pass and attempts to create the pass
102/// will fail. This template is used in the follow manner (at global scope, in
103/// your .cpp file):
104///
105/// static RegisterPass<YourPassClassName> tmp("passopt", "My Pass Name");
106///
107/// This statement will cause your pass to be created by calling the default
108/// constructor exposed by the pass.
109template <typename passName> struct RegisterPass : public PassInfo {
110 // Register Pass using default constructor...
112 bool is_analysis = false)
113 : PassInfo(Name, PassArg, &passName::ID,
115 is_analysis) {
117 }
118};
119
120/// RegisterAnalysisGroup - Register a Pass as a member of an analysis _group_.
121/// Analysis groups are used to define an interface (which need not derive from
122/// Pass) that is required by passes to do their job. Analysis Groups differ
123/// from normal analyses because any available implementation of the group will
124/// be used if it is available.
125///
126/// If no analysis implementing the interface is available, a default
127/// implementation is created and added. A pass registers itself as the default
128/// implementation by specifying 'true' as the second template argument of this
129/// class.
130///
131/// In addition to registering itself as an analysis group member, a pass must
132/// register itself normally as well. Passes may be members of multiple groups
133/// and may still be "required" specifically by name.
134///
135/// The actual interface may also be registered as well (by not specifying the
136/// second template argument). The interface should be registered to associate
137/// a nice name with the interface.
138class RegisterAGBase : public PassInfo {
139public:
140 RegisterAGBase(StringRef Name, const void *InterfaceID,
141 const void *PassID = nullptr, bool isDefault = false);
142};
143
144template <typename Interface, bool Default = false>
147 : RegisterAGBase(RPB.getPassName(), &Interface::ID, RPB.getTypeInfo(),
148 Default) {}
149
150 explicit RegisterAnalysisGroup(const char *Name)
151 : RegisterAGBase(Name, &Interface::ID) {}
152};
153
154#define INITIALIZE_ANALYSIS_GROUP(agName, name, defaultPass) \
155 static void *initialize##agName##AnalysisGroupOnce(PassRegistry &Registry) { \
156 initialize##defaultPass##Pass(Registry); \
157 PassInfo *AI = new PassInfo(name, &agName::ID); \
158 Registry.registerAnalysisGroup(&agName::ID, 0, *AI, false, true); \
159 return AI; \
160 } \
161 static llvm::once_flag Initialize##agName##AnalysisGroupFlag; \
162 void llvm::initialize##agName##AnalysisGroup(PassRegistry &Registry) { \
163 llvm::call_once(Initialize##agName##AnalysisGroupFlag, \
164 initialize##agName##AnalysisGroupOnce, \
165 std::ref(Registry)); \
166 }
167
168#define INITIALIZE_AG_PASS(passName, agName, arg, name, cfg, analysis, def) \
169 static void *initialize##passName##PassOnce(PassRegistry &Registry) { \
170 if (!def) \
171 initialize##agName##AnalysisGroup(Registry); \
172 PassInfo *PI = new PassInfo( \
173 name, arg, &passName::ID, \
174 PassInfo::NormalCtor_t(callDefaultCtor<passName>), cfg, analysis); \
175 Registry.registerPass(*PI, true); \
176 \
177 PassInfo *AI = new PassInfo(name, &agName::ID); \
178 Registry.registerAnalysisGroup(&agName::ID, &passName::ID, *AI, def, \
179 true); \
180 return AI; \
181 } \
182 static llvm::once_flag Initialize##passName##PassFlag; \
183 void llvm::initialize##passName##Pass(PassRegistry &Registry) { \
184 llvm::call_once(Initialize##passName##PassFlag, \
185 initialize##passName##PassOnce, std::ref(Registry)); \
186 }
187
188#define INITIALIZE_AG_PASS_BEGIN(passName, agName, arg, n, cfg, analysis, def) \
189 static void *initialize##passName##PassOnce(PassRegistry &Registry) { \
190 if (!def) \
191 initialize##agName##AnalysisGroup(Registry);
192
193#define INITIALIZE_AG_PASS_END(passName, agName, arg, n, cfg, analysis, def) \
194 PassInfo *PI = new PassInfo( \
195 n, arg, &passName::ID, \
196 PassInfo::NormalCtor_t(callDefaultCtor<passName>), cfg, analysis); \
197 Registry.registerPass(*PI, true); \
198 \
199 PassInfo *AI = new PassInfo(n, &agName::ID); \
200 Registry.registerAnalysisGroup(&agName::ID, &passName::ID, *AI, def, true); \
201 return AI; \
202 } \
203 static llvm::once_flag Initialize##passName##PassFlag; \
204 void llvm::initialize##passName##Pass(PassRegistry &Registry) { \
205 llvm::call_once(Initialize##passName##PassFlag, \
206 initialize##passName##PassOnce, std::ref(Registry)); \
207 }
208
209//===---------------------------------------------------------------------------
210/// PassRegistrationListener class - This class is meant to be derived from by
211/// clients that are interested in which passes get registered and unregistered
212/// at runtime (which can be because of the RegisterPass constructors being run
213/// as the program starts up, or may be because a shared object just got
214/// loaded).
217 virtual ~PassRegistrationListener() = default;
218
219 /// Callback functions - These functions are invoked whenever a pass is loaded
220 /// or removed from the current executable.
221 virtual void passRegistered(const PassInfo *) {}
222
223 /// enumeratePasses - Iterate over the registered passes, calling the
224 /// passEnumerate callback on each PassInfo object.
225 void enumeratePasses();
226
227 /// passEnumerate - Callback function invoked when someone calls
228 /// enumeratePasses on this PassRegistrationListener object.
229 virtual void passEnumerate(const PassInfo *) {}
230};
231
232} // end namespace llvm
233
234#endif // LLVM_PASSSUPPORT_H
aarch64 AArch64 CCMP Pass
std::string Name
static cl::opt< bool > CFGOnly("dot-mcfg-only", cl::init(false), cl::Hidden, cl::desc("Print only the CFG without blocks body"))
static const char PassName[]
PassInfo class - An instance of this class exists for every pass known by the system,...
Definition: PassInfo.h:30
Pass *(*)() NormalCtor_t
Definition: PassInfo.h:32
StringRef getPassName() const
getPassName - Return the friendly name for the pass, never returns null
Definition: PassInfo.h:62
const void * getTypeInfo() const
getTypeInfo - Return the id object for the pass... TODO : Rename
Definition: PassInfo.h:71
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
void registerPass(const PassInfo &PI, bool ShouldFree=false)
registerPass - Register a pass (by means of its PassInfo) with the registry.
Pass interface - Implemented by all 'passes'.
Definition: Pass.h:94
RegisterAnalysisGroup - Register a Pass as a member of an analysis group.
Definition: PassSupport.h:138
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
Pass * callDefaultCtor()
Definition: PassSupport.h:84
void report_fatal_error(Error Err, bool gen_crash_diag=true)
Report a serious error, calling any installed error handler.
Definition: Error.cpp:156
@ Default
The result values are uniform if and only if all operands are uniform.
PassRegistrationListener class - This class is meant to be derived from by clients that are intereste...
Definition: PassSupport.h:215
virtual void passRegistered(const PassInfo *)
Callback functions - These functions are invoked whenever a pass is loaded or removed from the curren...
Definition: PassSupport.h:221
virtual void passEnumerate(const PassInfo *)
passEnumerate - Callback function invoked when someone calls enumeratePasses on this PassRegistration...
Definition: PassSupport.h:229
void enumeratePasses()
enumeratePasses - Iterate over the registered passes, calling the passEnumerate callback on each Pass...
Definition: Pass.cpp:226
virtual ~PassRegistrationListener()=default
RegisterAnalysisGroup(const char *Name)
Definition: PassSupport.h:150
RegisterAnalysisGroup(PassInfo &RPB)
Definition: PassSupport.h:146
RegisterPass<t> template - This template class is used to notify the system that a Pass is available ...
Definition: PassSupport.h:109
RegisterPass(StringRef PassArg, StringRef Name, bool CFGOnly=false, bool is_analysis=false)
Definition: PassSupport.h:111