LLVM 22.0.0git
LLVMContext.h
Go to the documentation of this file.
1//===- llvm/LLVMContext.h - Class for managing "global" state ---*- 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 declares LLVMContext, a container of "global" state in LLVM, such
10// as the global type and constant uniquing tables.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_IR_LLVMCONTEXT_H
15#define LLVM_IR_LLVMCONTEXT_H
16
17#include "llvm-c/Types.h"
21#include <cstdint>
22#include <memory>
23#include <optional>
24#include <string>
25
26namespace llvm {
27
28class DiagnosticInfo;
29enum DiagnosticSeverity : char;
30class Function;
31class Instruction;
32class LLVMContextImpl;
33class Module;
34class OptPassGate;
35template <typename T> class SmallVectorImpl;
36template <typename T> class StringMapEntry;
37class StringRef;
38class Twine;
40
41namespace remarks {
42class RemarkStreamer;
43}
44
45namespace SyncScope {
46
47typedef uint8_t ID;
48
49/// Known synchronization scope IDs, which always have the same value. All
50/// synchronization scope IDs that LLVM has special knowledge of are listed
51/// here. Additionally, this scheme allows LLVM to efficiently check for
52/// specific synchronization scope ID without comparing strings.
53enum {
54 /// Synchronized with respect to signal handlers executing in the same thread.
56
57 /// Synchronized with respect to all concurrently executing threads.
59};
60
61} // end namespace SyncScope
62
63/// This is an important class for using LLVM in a threaded context. It
64/// (opaquely) owns and manages the core "global" data of LLVM's core
65/// infrastructure, including the type and constant uniquing tables.
66/// LLVMContext itself provides no locking guarantees, so you should be careful
67/// to have one context per thread.
69public:
72 LLVMContext(const LLVMContext &) = delete;
73 LLVMContext &operator=(const LLVMContext &) = delete;
75
76 // Pinned metadata names, which always have the same value. This is a
77 // compile-time performance optimization, not a correctness optimization.
78 enum : unsigned {
79#define LLVM_FIXED_MD_KIND(EnumID, Name, Value) EnumID = Value,
80#include "llvm/IR/FixedMetadataKinds.def"
81#undef LLVM_FIXED_MD_KIND
82 };
83
84 /// Known operand bundle tag IDs, which always have the same value. All
85 /// operand bundle tags that LLVM has special knowledge of are listed here.
86 /// Additionally, this scheme allows LLVM to efficiently check for specific
87 /// operand bundle tags without comparing strings. Keep this in sync with
88 /// LLVMContext::LLVMContext().
89 enum : unsigned {
90 OB_deopt = 0, // "deopt"
91 OB_funclet = 1, // "funclet"
92 OB_gc_transition = 2, // "gc-transition"
93 OB_cfguardtarget = 3, // "cfguardtarget"
94 OB_preallocated = 4, // "preallocated"
95 OB_gc_live = 5, // "gc-live"
96 OB_clang_arc_attachedcall = 6, // "clang.arc.attachedcall"
97 OB_ptrauth = 7, // "ptrauth"
98 OB_kcfi = 8, // "kcfi"
99 OB_convergencectrl = 9, // "convergencectrl"
100 OB_align = 10, // "align"
101 OB_deactivation_symbol = 11, // "deactivation-symbol"
103 };
104
105 /// getMDKindID - Return a unique non-zero ID for the specified metadata kind.
106 /// This ID is uniqued across modules in the current LLVMContext.
107 LLVM_ABI unsigned getMDKindID(StringRef Name) const;
108
109 /// getMDKindNames - Populate client supplied SmallVector with the name for
110 /// custom metadata IDs registered in this LLVMContext.
112
113 /// getOperandBundleTags - Populate client supplied SmallVector with the
114 /// bundle tags registered in this LLVMContext. The bundle tags are ordered
115 /// by increasing bundle IDs.
116 /// \see LLVMContext::getOperandBundleTagID
118
119 /// getOrInsertBundleTag - Returns the Tag to use for an operand bundle of
120 /// name TagName.
122 getOrInsertBundleTag(StringRef TagName) const;
123
124 /// getOperandBundleTagID - Maps a bundle tag to an integer ID. Every bundle
125 /// tag registered with an LLVMContext has an unique ID.
127
128 /// getOrInsertSyncScopeID - Maps synchronization scope name to
129 /// synchronization scope ID. Every synchronization scope registered with
130 /// LLVMContext has unique ID except pre-defined ones.
132
133 /// getSyncScopeNames - Populates client supplied SmallVector with
134 /// synchronization scope names registered with LLVMContext. Synchronization
135 /// scope names are ordered by increasing synchronization scope IDs.
137
138 /// getSyncScopeName - Returns the name of a SyncScope::ID
139 /// registered with LLVMContext, if any.
140 LLVM_ABI std::optional<StringRef> getSyncScopeName(SyncScope::ID Id) const;
141
142 /// Define the GC for a function
143 LLVM_ABI void setGC(const Function &Fn, std::string GCName);
144
145 /// Return the GC for a function
146 LLVM_ABI const std::string &getGC(const Function &Fn);
147
148 /// Remove the GC for a function
149 LLVM_ABI void deleteGC(const Function &Fn);
150
151 /// Return true if the Context runtime configuration is set to discard all
152 /// value names. When true, only GlobalValue names will be available in the
153 /// IR.
155
156 /// Set the Context runtime configuration to discard all value name (but
157 /// GlobalValue). Clients can use this flag to save memory and runtime,
158 /// especially in release mode.
159 LLVM_ABI void setDiscardValueNames(bool Discard);
160
161 /// Whether there is a string map for uniquing debug info
162 /// identifiers across the context. Off by default.
166
167 /// generateMachineFunctionNum - Get a unique number for MachineFunction
168 /// that associated with the given Function.
170
171 /// Defines the type of a yield callback.
172 /// \see LLVMContext::setYieldCallback.
173 using YieldCallbackTy = void (*)(LLVMContext *Context, void *OpaqueHandle);
174
175 /// setDiagnosticHandlerCallBack - This method sets a handler call back
176 /// that is invoked when the backend needs to report anything to the user.
177 /// The first argument is a function pointer and the second is a context pointer
178 /// that gets passed into the DiagHandler. The third argument should be set to
179 /// true if the handler only expects enabled diagnostics.
180 ///
181 /// LLVMContext doesn't take ownership or interpret either of these
182 /// pointers.
185 void *DiagContext = nullptr, bool RespectFilters = false);
186
187 /// setDiagnosticHandler - This method sets unique_ptr to object of
188 /// DiagnosticHandler to provide custom diagnostic handling. The first
189 /// argument is unique_ptr of object of type DiagnosticHandler or a derived
190 /// of that. The second argument should be set to true if the handler only
191 /// expects enabled diagnostics.
192 ///
193 /// Ownership of this pointer is moved to LLVMContextImpl.
194 LLVM_ABI void setDiagnosticHandler(std::unique_ptr<DiagnosticHandler> &&DH,
195 bool RespectFilters = false);
196
197 /// getDiagnosticHandlerCallBack - Return the diagnostic handler call back set by
198 /// setDiagnosticHandlerCallBack.
201
202 /// getDiagnosticContext - Return the diagnostic context set by
203 /// setDiagnosticContext.
204 LLVM_ABI void *getDiagnosticContext() const;
205
206 /// getDiagHandlerPtr - Returns const raw pointer of DiagnosticHandler set by
207 /// setDiagnosticHandler.
209
210 /// getDiagnosticHandler - transfers ownership of DiagnosticHandler unique_ptr
211 /// to caller.
212 LLVM_ABI std::unique_ptr<DiagnosticHandler> getDiagnosticHandler();
213
214 /// Return if a code hotness metric should be included in optimization
215 /// diagnostics.
217 /// Set if a code hotness metric should be included in optimization
218 /// diagnostics.
219 LLVM_ABI void setDiagnosticsHotnessRequested(bool Requested);
220
222 LLVM_ABI void setMisExpectWarningRequested(bool Requested);
223 LLVM_ABI void
224 setDiagnosticsMisExpectTolerance(std::optional<uint32_t> Tolerance);
226
227 /// Return the minimum hotness value a diagnostic would need in order
228 /// to be included in optimization diagnostics.
229 ///
230 /// Three possible return values:
231 /// 0 - threshold is disabled. Everything will be printed out.
232 /// positive int - threshold is set.
233 /// UINT64_MAX - threshold is not yet set, and needs to be synced from
234 /// profile summary. Note that in case of missing profile
235 /// summary, threshold will be kept at "MAX", effectively
236 /// suppresses all remarks output.
238
239 /// Set the minimum hotness value a diagnostic needs in order to be
240 /// included in optimization diagnostics.
241 LLVM_ABI void
242 setDiagnosticsHotnessThreshold(std::optional<uint64_t> Threshold);
243
244 /// Return if hotness threshold is requested from PSI.
246
247 /// The "main remark streamer" used by all the specialized remark streamers.
248 /// This streamer keeps generic remark metadata in memory throughout the life
249 /// of the LLVMContext. This metadata may be emitted in a section in object
250 /// files depending on the format requirements.
251 ///
252 /// All specialized remark streamers should convert remarks to
253 /// llvm::remarks::Remark and emit them through this streamer.
257 std::unique_ptr<remarks::RemarkStreamer> MainRemarkStreamer);
258
259 /// The "LLVM remark streamer" used by LLVM to serialize remark diagnostics
260 /// comming from IR and MIR passes.
261 ///
262 /// If it does not exist, diagnostics are not saved in a file but only emitted
263 /// via the diagnostic handler.
266 LLVM_ABI void
267 setLLVMRemarkStreamer(std::unique_ptr<LLVMRemarkStreamer> RemarkStreamer);
268
269 /// Get the prefix that should be printed in front of a diagnostic of
270 /// the given \p Severity
271 LLVM_ABI static const char *
273
274 /// Report a message to the currently installed diagnostic handler.
275 ///
276 /// This function returns, in particular in the case of error reporting
277 /// (DI.Severity == \a DS_Error), so the caller should leave the compilation
278 /// process in a self-consistent state, even though the generated code
279 /// need not be correct.
280 ///
281 /// The diagnostic message will be implicitly prefixed with a severity keyword
282 /// according to \p DI.getSeverity(), i.e., "error: " for \a DS_Error,
283 /// "warning: " for \a DS_Warning, and "note: " for \a DS_Note.
284 LLVM_ABI void diagnose(const DiagnosticInfo &DI);
285
286 /// Registers a yield callback with the given context.
287 ///
288 /// The yield callback function may be called by LLVM to transfer control back
289 /// to the client that invoked the LLVM compilation. This can be used to yield
290 /// control of the thread, or perform periodic work needed by the client.
291 /// There is no guaranteed frequency at which callbacks must occur; in fact,
292 /// the client is not guaranteed to ever receive this callback. It is at the
293 /// sole discretion of LLVM to do so and only if it can guarantee that
294 /// suspending the thread won't block any forward progress in other LLVM
295 /// contexts in the same process.
296 ///
297 /// At a suspend point, the state of the current LLVM context is intentionally
298 /// undefined. No assumptions about it can or should be made. Only LLVM
299 /// context API calls that explicitly state that they can be used during a
300 /// yield callback are allowed to be used. Any other API calls into the
301 /// context are not supported until the yield callback function returns
302 /// control to LLVM. Other LLVM contexts are unaffected by this restriction.
303 LLVM_ABI void setYieldCallback(YieldCallbackTy Callback, void *OpaqueHandle);
304
305 /// Calls the yield callback (if applicable).
306 ///
307 /// This transfers control of the current thread back to the client, which may
308 /// suspend the current thread. Only call this method when LLVM doesn't hold
309 /// any global mutex or cannot block the execution in another LLVM context.
310 LLVM_ABI void yield();
311
312 /// emitError - Emit an error message to the currently installed error handler
313 /// with optional location information. This function returns, so code should
314 /// be prepared to drop the erroneous construct on the floor and "not crash".
315 /// The generated code need not be correct. The error message will be
316 /// implicitly prefixed with "error: " and should not end with a ".".
317 LLVM_ABI void emitError(const Instruction *I, const Twine &ErrorStr);
318 LLVM_ABI void emitError(const Twine &ErrorStr);
319
320 /// Access the object which can disable optional passes and individual
321 /// optimizations at compile time.
323
324 /// Set the object which can disable optional passes and individual
325 /// optimizations at compile time.
326 ///
327 /// The lifetime of the object must be guaranteed to extend as long as the
328 /// LLVMContext is used by compilation.
330
331 /// Get or set the current "default" target CPU (target-cpu function
332 /// attribute). The intent is that compiler frontends will set this to a value
333 /// that reflects the attribute that a function would get "by default" without
334 /// any specific function attributes, and compiler passes will attach the
335 /// attribute to newly created functions that are not associated with a
336 /// particular function, such as global initializers.
337 /// Function::createWithDefaultAttr() will create functions with this
338 /// attribute. This function should only be called by passes that run at
339 /// compile time and not by the backend or LTO passes.
342
343 /// Similar to {get,set}DefaultTargetCPU() but for default target-features.
346
347 /// Key Instructions: update the highest number atom group emitted for any
348 /// function.
350
351 /// Key Instructions: get the next free atom group number and increment
352 /// the global tracker.
354
355private:
356 // Module needs access to the add/removeModule methods.
357 friend class Module;
358
359 /// addModule - Register a module as being instantiated in this context. If
360 /// the context is deleted, the module will be deleted as well.
361 void addModule(Module*);
362
363 /// removeModule - Unregister a module from this context.
364 void removeModule(Module *);
365};
366
367// Create wrappers for C Binding types (see CBindingWrapping.h).
369
370/* Specialized opaque context conversions.
371 */
373 return reinterpret_cast<LLVMContext**>(Tys);
374}
375
376inline LLVMContextRef *wrap(const LLVMContext **Tys) {
377 return reinterpret_cast<LLVMContextRef*>(const_cast<LLVMContext**>(Tys));
378}
379
380} // end namespace llvm
381
382#endif // LLVM_IR_LLVMCONTEXT_H
always inline
#define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref)
#define LLVM_ABI
Definition Compiler.h:213
#define I(x, y, z)
Definition MD5.cpp:57
#define G(x, y, z)
Definition MD5.cpp:55
static void DiagHandler(const SMDiagnostic &Diag, void *Context)
This is the base abstract class for diagnostic reporting in the backend.
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
LLVM_ABI uint64_t incNextDILocationAtomGroup()
Key Instructions: get the next free atom group number and increment the global tracker.
LLVM_ABI void setMisExpectWarningRequested(bool Requested)
LLVM_ABI std::optional< StringRef > getSyncScopeName(SyncScope::ID Id) const
getSyncScopeName - Returns the name of a SyncScope::ID registered with LLVMContext,...
LLVM_ABI remarks::RemarkStreamer * getMainRemarkStreamer()
The "main remark streamer" used by all the specialized remark streamers.
LLVM_ABI uint32_t getOperandBundleTagID(StringRef Tag) const
getOperandBundleTagID - Maps a bundle tag to an integer ID.
friend class Module
LLVM_ABI void disableDebugTypeODRUniquing()
LLVM_ABI void setYieldCallback(YieldCallbackTy Callback, void *OpaqueHandle)
Registers a yield callback with the given context.
LLVM_ABI void deleteGC(const Function &Fn)
Remove the GC for a function.
LLVM_ABI const std::string & getGC(const Function &Fn)
Return the GC for a function.
LLVM_ABI DiagnosticHandler::DiagnosticHandlerTy getDiagnosticHandlerCallBack() const
getDiagnosticHandlerCallBack - Return the diagnostic handler call back set by setDiagnosticHandlerCal...
LLVM_ABI void setLLVMRemarkStreamer(std::unique_ptr< LLVMRemarkStreamer > RemarkStreamer)
LLVM_ABI unsigned getMDKindID(StringRef Name) const
getMDKindID - Return a unique non-zero ID for the specified metadata kind.
LLVM_ABI void emitError(const Instruction *I, const Twine &ErrorStr)
emitError - Emit an error message to the currently installed error handler with optional location inf...
static LLVM_ABI const char * getDiagnosticMessagePrefix(DiagnosticSeverity Severity)
Get the prefix that should be printed in front of a diagnostic of the given Severity.
LLVM_ABI void enableDebugTypeODRUniquing()
LLVM_ABI ~LLVMContext()
LLVM_ABI std::unique_ptr< DiagnosticHandler > getDiagnosticHandler()
getDiagnosticHandler - transfers ownership of DiagnosticHandler unique_ptr to caller.
LLVM_ABI void setDefaultTargetCPU(StringRef CPU)
LLVM_ABI LLVMContext()
LLVM_ABI bool getDiagnosticsHotnessRequested() const
Return if a code hotness metric should be included in optimization diagnostics.
LLVM_ABI bool getMisExpectWarningRequested() const
LLVM_ABI void yield()
Calls the yield callback (if applicable).
LLVM_ABI void setDiagnosticsHotnessThreshold(std::optional< uint64_t > Threshold)
Set the minimum hotness value a diagnostic needs in order to be included in optimization diagnostics.
LLVM_ABI void setMainRemarkStreamer(std::unique_ptr< remarks::RemarkStreamer > MainRemarkStreamer)
LLVM_ABI bool isDiagnosticsHotnessThresholdSetFromPSI() const
Return if hotness threshold is requested from PSI.
LLVM_ABI void setOptPassGate(OptPassGate &)
Set the object which can disable optional passes and individual optimizations at compile time.
LLVM_ABI StringMapEntry< uint32_t > * getOrInsertBundleTag(StringRef TagName) const
getOrInsertBundleTag - Returns the Tag to use for an operand bundle of name TagName.
LLVMContext & operator=(const LLVMContext &)=delete
LLVM_ABI void setDiagnosticsHotnessRequested(bool Requested)
Set if a code hotness metric should be included in optimization diagnostics.
LLVM_ABI void setGC(const Function &Fn, std::string GCName)
Define the GC for a function.
LLVM_ABI bool shouldDiscardValueNames() const
Return true if the Context runtime configuration is set to discard all value names.
void(*)(LLVMContext *Context, void *OpaqueHandle) YieldCallbackTy
Defines the type of a yield callback.
LLVM_ABI bool isODRUniquingDebugTypes() const
Whether there is a string map for uniquing debug info identifiers across the context.
LLVM_ABI unsigned generateMachineFunctionNum(Function &)
generateMachineFunctionNum - Get a unique number for MachineFunction that associated with the given F...
LLVM_ABI StringRef getDefaultTargetFeatures()
Similar to {get,set}DefaultTargetCPU() but for default target-features.
LLVM_ABI void setDiagnosticsMisExpectTolerance(std::optional< uint32_t > Tolerance)
LLVMContextImpl *const pImpl
Definition LLVMContext.h:70
LLVMContext(const LLVMContext &)=delete
LLVM_ABI void diagnose(const DiagnosticInfo &DI)
Report a message to the currently installed diagnostic handler.
LLVM_ABI void getOperandBundleTags(SmallVectorImpl< StringRef > &Result) const
getOperandBundleTags - Populate client supplied SmallVector with the bundle tags registered in this L...
LLVM_ABI void setDiagnosticHandlerCallBack(DiagnosticHandler::DiagnosticHandlerTy DiagHandler, void *DiagContext=nullptr, bool RespectFilters=false)
setDiagnosticHandlerCallBack - This method sets a handler call back that is invoked when the backend ...
LLVM_ABI void setDiscardValueNames(bool Discard)
Set the Context runtime configuration to discard all value name (but GlobalValue).
LLVM_ABI StringRef getDefaultTargetCPU()
Get or set the current "default" target CPU (target-cpu function attribute).
LLVM_ABI void getMDKindNames(SmallVectorImpl< StringRef > &Result) const
getMDKindNames - Populate client supplied SmallVector with the name for custom metadata IDs registere...
LLVM_ABI void * getDiagnosticContext() const
getDiagnosticContext - Return the diagnostic context set by setDiagnosticContext.
LLVM_ABI void updateDILocationAtomGroupWaterline(uint64_t G)
Key Instructions: update the highest number atom group emitted for any function.
LLVM_ABI SyncScope::ID getOrInsertSyncScopeID(StringRef SSN)
getOrInsertSyncScopeID - Maps synchronization scope name to synchronization scope ID.
LLVM_ABI uint64_t getDiagnosticsHotnessThreshold() const
Return the minimum hotness value a diagnostic would need in order to be included in optimization diag...
LLVM_ABI void setDefaultTargetFeatures(StringRef Features)
LLVM_ABI const DiagnosticHandler * getDiagHandlerPtr() const
getDiagHandlerPtr - Returns const raw pointer of DiagnosticHandler set by setDiagnosticHandler.
LLVM_ABI void setDiagnosticHandler(std::unique_ptr< DiagnosticHandler > &&DH, bool RespectFilters=false)
setDiagnosticHandler - This method sets unique_ptr to object of DiagnosticHandler to provide custom d...
LLVM_ABI OptPassGate & getOptPassGate() const
Access the object which can disable optional passes and individual optimizations at compile time.
LLVM_ABI LLVMRemarkStreamer * getLLVMRemarkStreamer()
The "LLVM remark streamer" used by LLVM to serialize remark diagnostics comming from IR and MIR passe...
LLVM_ABI void getSyncScopeNames(SmallVectorImpl< StringRef > &SSNs) const
getSyncScopeNames - Populates client supplied SmallVector with synchronization scope names registered...
LLVM_ABI uint32_t getDiagnosticsMisExpectTolerance() const
Streamer for LLVM remarks which has logic for dealing with DiagnosticInfo objects.
A Module instance is used to store all the information related to an LLVM module.
Definition Module.h:67
Extensions to this class implement mechanisms to disable passes and individual optimizations at compi...
Definition OptBisect.h:26
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
StringMapEntry - This is used to represent one value that is inserted into a StringMap.
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition Twine.h:82
struct LLVMOpaqueContext * LLVMContextRef
The top-level container for all LLVM global data.
Definition Types.h:53
@ SingleThread
Synchronized with respect to signal handlers executing in the same thread.
Definition LLVMContext.h:55
@ System
Synchronized with respect to all concurrently executing threads.
Definition LLVMContext.h:58
This is an optimization pass for GlobalISel generic memory operations.
Attribute unwrap(LLVMAttributeRef Attr)
Definition Attributes.h:351
DiagnosticSeverity
Defines the different supported severity of a diagnostic.
LLVMAttributeRef wrap(Attribute Attr)
Definition Attributes.h:346
This is the base class for diagnostic handling in LLVM.
void(*)(const DiagnosticInfo *DI, void *Context) DiagnosticHandlerTy