LLVM 23.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#define ATTR(Name, Str) OB_##Name,
91#include "llvm/IR/BundleAttributes.def"
92 OB_deopt, // "deopt"
93 OB_funclet, // "funclet"
94 OB_gc_transition, // "gc-transition"
95 OB_cfguardtarget, // "cfguardtarget"
96 OB_preallocated, // "preallocated"
97 OB_gc_live, // "gc-live"
98 OB_clang_arc_attachedcall, // "clang.arc.attachedcall"
99 OB_ptrauth, // "ptrauth"
100 OB_kcfi, // "kcfi"
101 OB_convergencectrl, // "convergencectrl"
102 OB_deactivation_symbol, // "deactivation-symbol"
104 };
105
106 /// getMDKindID - Return a unique non-zero ID for the specified metadata kind.
107 /// This ID is uniqued across modules in the current LLVMContext.
108 LLVM_ABI unsigned getMDKindID(StringRef Name) const;
109
110 /// getMDKindNames - Populate client supplied SmallVector with the name for
111 /// custom metadata IDs registered in this LLVMContext.
113
114 /// getOperandBundleTags - Populate client supplied SmallVector with the
115 /// bundle tags registered in this LLVMContext. The bundle tags are ordered
116 /// by increasing bundle IDs.
117 /// \see LLVMContext::getOperandBundleTagID
119
120 /// getOrInsertBundleTag - Returns the Tag to use for an operand bundle of
121 /// name TagName.
123 getOrInsertBundleTag(StringRef TagName) const;
124
125 /// getOperandBundleTagID - Maps a bundle tag to an integer ID. Every bundle
126 /// tag registered with an LLVMContext has an unique ID.
128
129 /// getOrInsertSyncScopeID - Maps synchronization scope name to
130 /// synchronization scope ID. Every synchronization scope registered with
131 /// LLVMContext has unique ID except pre-defined ones.
133
134 /// getSyncScopeNames - Populates client supplied SmallVector with
135 /// synchronization scope names registered with LLVMContext. Synchronization
136 /// scope names are ordered by increasing synchronization scope IDs.
138
139 /// getSyncScopeName - Returns the name of a SyncScope::ID
140 /// registered with LLVMContext, if any.
141 LLVM_ABI std::optional<StringRef> getSyncScopeName(SyncScope::ID Id) const;
142
143 /// Define the GC for a function
144 LLVM_ABI void setGC(const Function &Fn, std::string GCName);
145
146 /// Return the GC for a function
147 LLVM_ABI const std::string &getGC(const Function &Fn);
148
149 /// Remove the GC for a function
150 LLVM_ABI void deleteGC(const Function &Fn);
151
152 /// Return true if the Context runtime configuration is set to discard all
153 /// value names. When true, only GlobalValue names will be available in the
154 /// IR.
156
157 /// Set the Context runtime configuration to discard all value name (but
158 /// GlobalValue). Clients can use this flag to save memory and runtime,
159 /// especially in release mode.
160 LLVM_ABI void setDiscardValueNames(bool Discard);
161
162 /// Whether there is a string map for uniquing debug info
163 /// identifiers across the context. Off by default.
167
168 /// generateMachineFunctionNum - Get a unique number for MachineFunction
169 /// that associated with the given Function.
171
172 /// Defines the type of a yield callback.
173 /// \see LLVMContext::setYieldCallback.
174 using YieldCallbackTy = void (*)(LLVMContext *Context, void *OpaqueHandle);
175
176 /// setDiagnosticHandlerCallBack - This method sets a handler call back
177 /// that is invoked when the backend needs to report anything to the user.
178 /// The first argument is a function pointer and the second is a context pointer
179 /// that gets passed into the DiagHandler. The third argument should be set to
180 /// true if the handler only expects enabled diagnostics.
181 ///
182 /// LLVMContext doesn't take ownership or interpret either of these
183 /// pointers.
186 void *DiagContext = nullptr, bool RespectFilters = false);
187
188 /// setDiagnosticHandler - This method sets unique_ptr to object of
189 /// DiagnosticHandler to provide custom diagnostic handling. The first
190 /// argument is unique_ptr of object of type DiagnosticHandler or a derived
191 /// of that. The second argument should be set to true if the handler only
192 /// expects enabled diagnostics.
193 ///
194 /// Ownership of this pointer is moved to LLVMContextImpl.
195 LLVM_ABI void setDiagnosticHandler(std::unique_ptr<DiagnosticHandler> &&DH,
196 bool RespectFilters = false);
197
198 /// getDiagnosticHandlerCallBack - Return the diagnostic handler call back set by
199 /// setDiagnosticHandlerCallBack.
202
203 /// getDiagnosticContext - Return the diagnostic context set by
204 /// setDiagnosticContext.
205 LLVM_ABI void *getDiagnosticContext() const;
206
207 /// getDiagHandlerPtr - Returns const raw pointer of DiagnosticHandler set by
208 /// setDiagnosticHandler.
210
211 /// getDiagnosticHandler - transfers ownership of DiagnosticHandler unique_ptr
212 /// to caller.
213 LLVM_ABI std::unique_ptr<DiagnosticHandler> getDiagnosticHandler();
214
215 /// Return if a code hotness metric should be included in optimization
216 /// diagnostics.
218 /// Set if a code hotness metric should be included in optimization
219 /// diagnostics.
220 LLVM_ABI void setDiagnosticsHotnessRequested(bool Requested);
221
223 LLVM_ABI void setMisExpectWarningRequested(bool Requested);
224 LLVM_ABI void
225 setDiagnosticsMisExpectTolerance(std::optional<uint32_t> Tolerance);
227
228 /// Return the minimum hotness value a diagnostic would need in order
229 /// to be included in optimization diagnostics.
230 ///
231 /// Three possible return values:
232 /// 0 - threshold is disabled. Everything will be printed out.
233 /// positive int - threshold is set.
234 /// UINT64_MAX - threshold is not yet set, and needs to be synced from
235 /// profile summary. Note that in case of missing profile
236 /// summary, threshold will be kept at "MAX", effectively
237 /// suppresses all remarks output.
239
240 /// Set the minimum hotness value a diagnostic needs in order to be
241 /// included in optimization diagnostics.
242 LLVM_ABI void
243 setDiagnosticsHotnessThreshold(std::optional<uint64_t> Threshold);
244
245 /// Return if hotness threshold is requested from PSI.
247
248 /// The "main remark streamer" used by all the specialized remark streamers.
249 /// This streamer keeps generic remark metadata in memory throughout the life
250 /// of the LLVMContext. This metadata may be emitted in a section in object
251 /// files depending on the format requirements.
252 ///
253 /// All specialized remark streamers should convert remarks to
254 /// llvm::remarks::Remark and emit them through this streamer.
258 std::unique_ptr<remarks::RemarkStreamer> MainRemarkStreamer);
259
260 /// The "LLVM remark streamer" used by LLVM to serialize remark diagnostics
261 /// comming from IR and MIR passes.
262 ///
263 /// If it does not exist, diagnostics are not saved in a file but only emitted
264 /// via the diagnostic handler.
267 LLVM_ABI void
268 setLLVMRemarkStreamer(std::unique_ptr<LLVMRemarkStreamer> RemarkStreamer);
269
270 /// Get the prefix that should be printed in front of a diagnostic of
271 /// the given \p Severity
272 LLVM_ABI static const char *
274
275 /// Report a message to the currently installed diagnostic handler.
276 ///
277 /// This function returns, in particular in the case of error reporting
278 /// (DI.Severity == \a DS_Error), so the caller should leave the compilation
279 /// process in a self-consistent state, even though the generated code
280 /// need not be correct.
281 ///
282 /// The diagnostic message will be implicitly prefixed with a severity keyword
283 /// according to \p DI.getSeverity(), i.e., "error: " for \a DS_Error,
284 /// "warning: " for \a DS_Warning, and "note: " for \a DS_Note.
285 LLVM_ABI void diagnose(const DiagnosticInfo &DI);
286
287 /// Registers a yield callback with the given context.
288 ///
289 /// The yield callback function may be called by LLVM to transfer control back
290 /// to the client that invoked the LLVM compilation. This can be used to yield
291 /// control of the thread, or perform periodic work needed by the client.
292 /// There is no guaranteed frequency at which callbacks must occur; in fact,
293 /// the client is not guaranteed to ever receive this callback. It is at the
294 /// sole discretion of LLVM to do so and only if it can guarantee that
295 /// suspending the thread won't block any forward progress in other LLVM
296 /// contexts in the same process.
297 ///
298 /// At a suspend point, the state of the current LLVM context is intentionally
299 /// undefined. No assumptions about it can or should be made. Only LLVM
300 /// context API calls that explicitly state that they can be used during a
301 /// yield callback are allowed to be used. Any other API calls into the
302 /// context are not supported until the yield callback function returns
303 /// control to LLVM. Other LLVM contexts are unaffected by this restriction.
304 LLVM_ABI void setYieldCallback(YieldCallbackTy Callback, void *OpaqueHandle);
305
306 /// Calls the yield callback (if applicable).
307 ///
308 /// This transfers control of the current thread back to the client, which may
309 /// suspend the current thread. Only call this method when LLVM doesn't hold
310 /// any global mutex or cannot block the execution in another LLVM context.
311 LLVM_ABI void yield();
312
313 /// emitError - Emit an error message to the currently installed error handler
314 /// with optional location information. This function returns, so code should
315 /// be prepared to drop the erroneous construct on the floor and "not crash".
316 /// The generated code need not be correct. The error message will be
317 /// implicitly prefixed with "error: " and should not end with a ".".
318 LLVM_ABI void emitError(const Instruction *I, const Twine &ErrorStr);
319 LLVM_ABI void emitError(const Twine &ErrorStr);
320
321 /// Access the object which can disable optional passes and individual
322 /// optimizations at compile time.
324
325 /// Set the object which can disable optional passes and individual
326 /// optimizations at compile time.
327 ///
328 /// The lifetime of the object must be guaranteed to extend as long as the
329 /// LLVMContext is used by compilation.
331
332 /// Get or set the current "default" target CPU (target-cpu function
333 /// attribute). The intent is that compiler frontends will set this to a value
334 /// that reflects the attribute that a function would get "by default" without
335 /// any specific function attributes, and compiler passes will attach the
336 /// attribute to newly created functions that are not associated with a
337 /// particular function, such as global initializers.
338 /// Function::createWithDefaultAttr() will create functions with this
339 /// attribute. This function should only be called by passes that run at
340 /// compile time and not by the backend or LTO passes.
343
344 /// Similar to {get,set}DefaultTargetCPU() but for default target-features.
347
348 /// Key Instructions: update the highest number atom group emitted for any
349 /// function.
351
352 /// Key Instructions: get the next free atom group number and increment
353 /// the global tracker.
355
356private:
357 // Module needs access to the add/removeModule methods.
358 friend class Module;
359
360 /// addModule - Register a module as being instantiated in this context. If
361 /// the context is deleted, the module will be deleted as well.
362 void addModule(Module*);
363
364 /// removeModule - Unregister a module from this context.
365 void removeModule(Module *);
366};
367
368// Create wrappers for C Binding types (see CBindingWrapping.h).
370
371/* Specialized opaque context conversions.
372 */
374 return reinterpret_cast<LLVMContext**>(Tys);
375}
376
377inline LLVMContextRef *wrap(const LLVMContext **Tys) {
378 return reinterpret_cast<LLVMContextRef*>(const_cast<LLVMContext**>(Tys));
379}
380
381/// Get the deprecated global context for use by the C API.
383
384} // end namespace llvm
385
386#endif // LLVM_IR_LLVMCONTEXT_H
always inline
#define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref)
#define LLVM_ABI
Definition Compiler.h:215
#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.
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
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.
LLVM_ABI LLVMContextRef getGlobalContextForCAPI()
Get the deprecated global context for use by the C API.
Definition Core.cpp:100
Attribute unwrap(LLVMAttributeRef Attr)
Definition Attributes.h:397
DiagnosticSeverity
Defines the different supported severity of a diagnostic.
LLVMAttributeRef wrap(Attribute Attr)
Definition Attributes.h:392
This is the base class for diagnostic handling in LLVM.
void(*)(const DiagnosticInfo *DI, void *Context) DiagnosticHandlerTy