LLVM 24.0.0git
Compiler.h
Go to the documentation of this file.
1//===-- llvm/Support/Compiler.h - Compiler abstraction support --*- 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 several macros, based on the current compiler. This allows
10// use of compiler-specific features in a way that remains portable. This header
11// can be included from either C or C++.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_SUPPORT_COMPILER_H
16#define LLVM_SUPPORT_COMPILER_H
17
18#include "llvm/Config/llvm-config.h"
19
20#include <stddef.h>
21
22#if defined(_MSC_VER)
23#include <sal.h>
24#endif
25
26#ifndef __has_feature
27# define __has_feature(x) 0
28#endif
29
30#ifndef __has_extension
31# define __has_extension(x) 0
32#endif
33
34#ifndef __has_attribute
35# define __has_attribute(x) 0
36#endif
37
38#ifndef __has_builtin
39# define __has_builtin(x) 0
40#endif
41
42#ifndef __has_warning
43# define __has_warning(x) 0
44#endif
45
46// Only use __has_cpp_attribute in C++ mode. GCC defines __has_cpp_attribute in
47// C mode, but the :: in __has_cpp_attribute(scoped::attribute) is invalid.
48#ifndef LLVM_HAS_CPP_ATTRIBUTE
49#if defined(__cplusplus) && defined(__has_cpp_attribute)
50# define LLVM_HAS_CPP_ATTRIBUTE(x) __has_cpp_attribute(x)
51#else
52# define LLVM_HAS_CPP_ATTRIBUTE(x) 0
53#endif
54#endif
55
56/// \macro LLVM_GNUC_PREREQ
57/// Extend the default __GNUC_PREREQ even if glibc's features.h isn't
58/// available.
59#ifndef LLVM_GNUC_PREREQ
60# if defined(__GNUC__) && defined(__GNUC_MINOR__) && defined(__GNUC_PATCHLEVEL__)
61# define LLVM_GNUC_PREREQ(maj, min, patch) \
62 ((__GNUC__ << 20) + (__GNUC_MINOR__ << 10) + __GNUC_PATCHLEVEL__ >= \
63 ((maj) << 20) + ((min) << 10) + (patch))
64# elif defined(__GNUC__) && defined(__GNUC_MINOR__)
65# define LLVM_GNUC_PREREQ(maj, min, patch) \
66 ((__GNUC__ << 20) + (__GNUC_MINOR__ << 10) >= ((maj) << 20) + ((min) << 10))
67# else
68# define LLVM_GNUC_PREREQ(maj, min, patch) 0
69# endif
70#endif
71
72/// \macro LLVM_MSC_PREREQ
73/// Is the compiler MSVC of at least the specified version?
74/// The common \param version values to check for are:
75/// * 1910: VS2017, version 15.1 & 15.2
76/// * 1911: VS2017, version 15.3 & 15.4
77/// * 1912: VS2017, version 15.5
78/// * 1913: VS2017, version 15.6
79/// * 1914: VS2017, version 15.7
80/// * 1915: VS2017, version 15.8
81/// * 1916: VS2017, version 15.9
82/// * 1920: VS2019, version 16.0
83/// * 1921: VS2019, version 16.1
84/// * 1922: VS2019, version 16.2
85/// * 1923: VS2019, version 16.3
86/// * 1924: VS2019, version 16.4
87/// * 1925: VS2019, version 16.5
88/// * 1926: VS2019, version 16.6
89/// * 1927: VS2019, version 16.7
90/// * 1928: VS2019, version 16.8 + 16.9
91/// * 1929: VS2019, version 16.10 + 16.11
92/// * 1930: VS2022, version 17.0
93#ifdef _MSC_VER
94#define LLVM_MSC_PREREQ(version) (_MSC_VER >= (version))
95
96// We require at least VS 2019.
97#if !defined(LLVM_FORCE_USE_OLD_TOOLCHAIN)
98#if !LLVM_MSC_PREREQ(1920)
99#error LLVM requires at least VS 2019.
100#endif
101#endif
102
103#else
104#define LLVM_MSC_PREREQ(version) 0
105#endif
106
107/// LLVM_LIBRARY_VISIBILITY - If a class marked with this attribute is linked
108/// into a shared library, then the class should be private to the library and
109/// not accessible from outside it. Can also be used to mark variables and
110/// functions, making them private to any shared library they are linked into.
111/// On PE/COFF targets, library visibility is the default, so this isn't needed.
112///
113/// LLVM_EXTERNAL_VISIBILITY - classes, functions, and variables marked with
114/// this attribute will be made public and visible outside of any shared library
115/// they are linked in to.
116
117#if LLVM_HAS_CPP_ATTRIBUTE(gnu::visibility) && defined(__GNUC__) && \
118 !defined(__clang__)
119#define LLVM_ATTRIBUTE_VISIBILITY_HIDDEN [[gnu::visibility("hidden")]]
120#define LLVM_ATTRIBUTE_VISIBILITY_DEFAULT [[gnu::visibility("default")]]
121#elif __has_attribute(visibility)
122#define LLVM_ATTRIBUTE_VISIBILITY_HIDDEN __attribute__((visibility("hidden")))
123#define LLVM_ATTRIBUTE_VISIBILITY_DEFAULT __attribute__((visibility("default")))
124#else
125#define LLVM_ATTRIBUTE_VISIBILITY_HIDDEN
126#define LLVM_ATTRIBUTE_VISIBILITY_DEFAULT
127#endif
128
129#if defined(LLVM_BUILD_LLVM_DYLIB) || defined(LLVM_BUILD_SHARED_LIBS)
130#define LLVM_EXTERNAL_VISIBILITY LLVM_ATTRIBUTE_VISIBILITY_DEFAULT
131#else
132#define LLVM_EXTERNAL_VISIBILITY
133#endif
134
135#if (!(defined(_WIN32) || defined(__CYGWIN__)) || \
136 ((defined(__MINGW32__) || defined(__CYGWIN__)) && defined(__clang__)))
137#define LLVM_LIBRARY_VISIBILITY LLVM_ATTRIBUTE_VISIBILITY_HIDDEN
138// Clang compilers older then 15 do not support gnu style attributes on
139// namespaces.
140#if defined(__clang__) && __clang_major__ < 15
141#define LLVM_LIBRARY_VISIBILITY_NAMESPACE [[gnu::visibility("hidden")]]
142#else
143#define LLVM_LIBRARY_VISIBILITY_NAMESPACE LLVM_ATTRIBUTE_VISIBILITY_HIDDEN
144#endif
145#define LLVM_ALWAYS_EXPORT LLVM_ATTRIBUTE_VISIBILITY_DEFAULT
146#elif defined(_WIN32)
147#define LLVM_ALWAYS_EXPORT __declspec(dllexport)
148#define LLVM_LIBRARY_VISIBILITY
149#define LLVM_LIBRARY_VISIBILITY_NAMESPACE
150#else
151#define LLVM_LIBRARY_VISIBILITY
152#define LLVM_ALWAYS_EXPORT
153#define LLVM_LIBRARY_VISIBILITY_NAMESPACE
154#endif
155
156/// LLVM_ABI is the main export/visibility macro to mark something as explicitly
157/// exported when llvm is built as a shared library with everything else that is
158/// unannotated will have internal visibility.
159///
160/// LLVM_ABI_EXPORT is for the special case for things like plugin symbol
161/// declarations or definitions where we don't want the macro to be switching
162/// between dllexport and dllimport on windows based on what codebase is being
163/// built, it will only be dllexport. For non windows platforms this macro
164/// behaves the same as LLVM_ABI.
165///
166/// LLVM_EXPORT_TEMPLATE is used on explicit template instantiations in source
167/// files that were declared extern in a header. This macro is only set as a
168/// compiler export attribute on windows, on other platforms it does nothing.
169///
170/// LLVM_TEMPLATE_ABI is for annotating extern template declarations in headers
171/// for both functions and classes. On windows its turned in to dllimport for
172/// library consumers, for other platforms its a default visibility attribute.
173///
174/// LLVM_ABI_FOR_TEST is for annotating symbols that are exported from a
175/// library-internal header solely so that unit tests can link against them.
176/// Symbols in LLVM's public headers are part of the LLVM public interface and
177/// should use LLVM_ABI. LLVM_ABI_FOR_TEST is reserved for internal headers,
178/// whose symbols could be conditionally excluded when not building tests in the
179/// future.
180///
181#ifndef LLVM_ABI_GENERATING_ANNOTATIONS
182// Marker to add to classes or functions in public headers that should not have
183// export macros added to them by the clang tool
184#define LLVM_ABI_NOT_EXPORTED
185// TODO(https://github.com/llvm/llvm-project/issues/145406): eliminate need for
186// two preprocessor definitions to gate LLVM_ABI macro definitions.
187#if defined(LLVM_ENABLE_LLVM_EXPORT_ANNOTATIONS) && !defined(LLVM_BUILD_STATIC)
188#if defined(_WIN32) && !defined(__MINGW32__)
189#if defined(LLVM_EXPORTS)
190#define LLVM_ABI __declspec(dllexport)
191#define LLVM_TEMPLATE_ABI
192#define LLVM_EXPORT_TEMPLATE __declspec(dllexport)
193#else
194#define LLVM_ABI __declspec(dllimport)
195#define LLVM_TEMPLATE_ABI __declspec(dllimport)
196#define LLVM_EXPORT_TEMPLATE
197#endif
198#define LLVM_ABI_EXPORT __declspec(dllexport)
199#elif __has_attribute(visibility)
200#if defined(__ELF__) || defined(__MINGW32__) || defined(_AIX) || \
201 defined(__MVS__) || defined(__CYGWIN__)
202#define LLVM_ABI __attribute__((visibility("default")))
203#define LLVM_TEMPLATE_ABI LLVM_ABI
204#define LLVM_EXPORT_TEMPLATE
205#define LLVM_ABI_EXPORT LLVM_ABI
206#elif defined(__MACH__) || defined(__WASM__) || defined(__EMSCRIPTEN__)
207#define LLVM_ABI __attribute__((visibility("default")))
208#define LLVM_TEMPLATE_ABI
209#define LLVM_EXPORT_TEMPLATE
210#define LLVM_ABI_EXPORT LLVM_ABI
211#endif
212#endif
213#endif
214#if !defined(LLVM_ABI)
215#define LLVM_ABI
216#define LLVM_TEMPLATE_ABI
217#define LLVM_EXPORT_TEMPLATE
218#define LLVM_ABI_EXPORT
219#endif
220#define LLVM_ABI_FOR_TEST LLVM_ABI
221#endif
222
223#if defined(__GNUC__)
224#define LLVM_PREFETCH(addr, rw, locality) __builtin_prefetch(addr, rw, locality)
225#else
226#define LLVM_PREFETCH(addr, rw, locality)
227#endif
228
229#if __has_attribute(uninitialized)
230#define LLVM_ATTRIBUTE_UNINITIALIZED __attribute__((uninitialized))
231#else
232#define LLVM_ATTRIBUTE_UNINITIALIZED
233#endif
234
235#if __has_attribute(used)
236#define LLVM_ATTRIBUTE_USED __attribute__((__used__))
237#else
238#define LLVM_ATTRIBUTE_USED
239#endif
240
241#if __has_attribute(warn_unused)
242#define LLVM_ATTRIBUTE_WARN_UNUSED __attribute__((warn_unused))
243#else
244#define LLVM_ATTRIBUTE_WARN_UNUSED
245#endif
246
247// Only enabled for clang:
248// See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99587
249// GCC may produce "warning: 'retain' attribute ignored" (despite
250// __has_attribute(retain) being 1).
251#if defined(__clang__) && __has_attribute(retain)
252#define LLVM_ATTRIBUTE_RETAIN __attribute__((__retain__))
253#else
254#define LLVM_ATTRIBUTE_RETAIN
255#endif
256
257#if defined(__clang__)
258#define LLVM_DEPRECATED(MSG, FIX) __attribute__((deprecated(MSG, FIX)))
259#else
260#define LLVM_DEPRECATED(MSG, FIX) [[deprecated(MSG)]]
261#endif
262
263// clang-format off
264#if defined(__clang__) || defined(__GNUC__)
265#define LLVM_SUPPRESS_DEPRECATED_DECLARATIONS_PUSH \
266 _Pragma("GCC diagnostic push") \
267 _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
268#define LLVM_SUPPRESS_DEPRECATED_DECLARATIONS_POP \
269 _Pragma("GCC diagnostic pop")
270#elif defined(_MSC_VER)
271#define LLVM_SUPPRESS_DEPRECATED_DECLARATIONS_PUSH \
272 _Pragma("warning(push)") \
273 _Pragma("warning(disable : 4996)")
274#define LLVM_SUPPRESS_DEPRECATED_DECLARATIONS_POP \
275 _Pragma("warning(pop)")
276#else
277#define LLVM_SUPPRESS_DEPRECATED_DECLARATIONS_PUSH
278#define LLVM_SUPPRESS_DEPRECATED_DECLARATIONS_POP
279#endif
280// clang-format on
281
282// Indicate that a non-static, non-const C++ member function reinitializes
283// the entire object to a known state, independent of the previous state of
284// the object.
285//
286// The clang-tidy check bugprone-use-after-move recognizes this attribute as a
287// marker that a moved-from object has left the indeterminate state and can be
288// reused.
289#if LLVM_HAS_CPP_ATTRIBUTE(clang::reinitializes)
290#define LLVM_ATTRIBUTE_REINITIALIZES [[clang::reinitializes]]
291#else
292#define LLVM_ATTRIBUTE_REINITIALIZES
293#endif
294
295// Some compilers warn about unused functions. When a function is sometimes
296// used or not depending on build settings (e.g. a function only called from
297// within "assert"), this attribute can be used to suppress such warnings.
298//
299// However, it shouldn't be used for unused *variables*, as those have a much
300// more portable solution:
301// (void)unused_var_name;
302// Prefer cast-to-void wherever it is sufficient.
303#if __has_attribute(unused)
304#define LLVM_ATTRIBUTE_UNUSED __attribute__((__unused__))
305#else
306#define LLVM_ATTRIBUTE_UNUSED
307#endif
308
309// FIXME: Provide this for PE/COFF targets.
310#if __has_attribute(weak) && !defined(__MINGW32__) && !defined(__CYGWIN__) && \
311 !defined(_WIN32)
312#define LLVM_ATTRIBUTE_WEAK __attribute__((__weak__))
313#else
314#define LLVM_ATTRIBUTE_WEAK
315#endif
316
317// Prior to clang 3.2, clang did not accept any spelling of
318// __has_attribute(const), so assume it is supported.
319#if defined(__clang__) || defined(__GNUC__)
320// aka 'CONST' but following LLVM Conventions.
321#define LLVM_READNONE __attribute__((__const__))
322#else
323#define LLVM_READNONE
324#endif
325
326#if __has_attribute(pure) || defined(__GNUC__)
327// aka 'PURE' but following LLVM Conventions.
328#define LLVM_READONLY __attribute__((__pure__))
329#else
330#define LLVM_READONLY
331#endif
332
333#if __has_attribute(minsize)
334#define LLVM_ATTRIBUTE_MINSIZE __attribute__((minsize))
335#else
336#define LLVM_ATTRIBUTE_MINSIZE
337#endif
338
339#if __has_builtin(__builtin_expect) || defined(__GNUC__)
340#define LLVM_LIKELY(EXPR) __builtin_expect((bool)(EXPR), true)
341#define LLVM_UNLIKELY(EXPR) __builtin_expect((bool)(EXPR), false)
342#else
343#define LLVM_LIKELY(EXPR) (EXPR)
344#define LLVM_UNLIKELY(EXPR) (EXPR)
345#endif
346
347/// LLVM_ATTRIBUTE_NOINLINE - On compilers where we have a directive to do so,
348/// mark a method "not for inlining".
349#if __has_attribute(noinline)
350#define LLVM_ATTRIBUTE_NOINLINE __attribute__((noinline))
351#elif defined(_MSC_VER)
352#define LLVM_ATTRIBUTE_NOINLINE __declspec(noinline)
353#else
354#define LLVM_ATTRIBUTE_NOINLINE
355#endif
356
357/// LLVM_ATTRIBUTE_ALWAYS_INLINE - On compilers where we have a directive to do
358/// so, mark a method "always inline" because it is performance sensitive.
359#if __has_attribute(always_inline)
360#define LLVM_ATTRIBUTE_ALWAYS_INLINE inline __attribute__((always_inline))
361#elif defined(_MSC_VER)
362#define LLVM_ATTRIBUTE_ALWAYS_INLINE __forceinline
363#else
364#define LLVM_ATTRIBUTE_ALWAYS_INLINE inline
365#endif
366
367/// LLVM_ATTRIBUTE_ALWAYS_INLINE_UNLESS_DEBUG - Like
368/// LLVM_ATTRIBUTE_ALWAYS_INLINE but disabled in debug builds to avoid stack
369/// overflow with deep recursion.
370#if defined(NDEBUG)
371#define LLVM_ATTRIBUTE_ALWAYS_INLINE_UNLESS_DEBUG LLVM_ATTRIBUTE_ALWAYS_INLINE
372#else
373#define LLVM_ATTRIBUTE_ALWAYS_INLINE_UNLESS_DEBUG inline
374#endif
375
376/// LLVM_ATTRIBUTE_NO_DEBUG - On compilers where we have a directive to do
377/// so, mark a method "no debug" because debug info makes the debugger
378/// experience worse.
379#if __has_attribute(nodebug)
380#define LLVM_ATTRIBUTE_NODEBUG __attribute__((nodebug))
381#else
382#define LLVM_ATTRIBUTE_NODEBUG
383#endif
384
385#if __has_attribute(returns_nonnull)
386#define LLVM_ATTRIBUTE_RETURNS_NONNULL __attribute__((returns_nonnull))
387#elif defined(_MSC_VER)
388#define LLVM_ATTRIBUTE_RETURNS_NONNULL _Ret_notnull_
389#else
390#define LLVM_ATTRIBUTE_RETURNS_NONNULL
391#endif
392
393/// LLVM_ATTRIBUTE_RESTRICT - Annotates a pointer to tell the compiler that
394/// it is not aliased in the current scope.
395#if defined(__clang__) || defined(__GNUC__) || defined(_MSC_VER)
396#define LLVM_ATTRIBUTE_RESTRICT __restrict
397#else
398#define LLVM_ATTRIBUTE_RESTRICT
399#endif
400
401/// \macro LLVM_ATTRIBUTE_RETURNS_NOALIAS Used to mark a function as returning a
402/// pointer that does not alias any other valid pointer.
403#ifdef __GNUC__
404#define LLVM_ATTRIBUTE_RETURNS_NOALIAS __attribute__((__malloc__))
405#elif defined(_MSC_VER)
406#define LLVM_ATTRIBUTE_RETURNS_NOALIAS __declspec(restrict)
407#else
408#define LLVM_ATTRIBUTE_RETURNS_NOALIAS
409#endif
410
411/// LLVM_FALLTHROUGH - Mark fallthrough cases in switch statements.
412#if defined(__cplusplus) && __cplusplus > 201402L && LLVM_HAS_CPP_ATTRIBUTE(fallthrough)
413#define LLVM_FALLTHROUGH [[fallthrough]]
414#elif LLVM_HAS_CPP_ATTRIBUTE(gnu::fallthrough)
415#define LLVM_FALLTHROUGH [[gnu::fallthrough]]
416#elif __has_attribute(fallthrough)
417#define LLVM_FALLTHROUGH __attribute__((fallthrough))
418#elif LLVM_HAS_CPP_ATTRIBUTE(clang::fallthrough)
419#define LLVM_FALLTHROUGH [[clang::fallthrough]]
420#else
421#define LLVM_FALLTHROUGH
422#endif
423
424/// LLVM_REQUIRE_CONSTANT_INITIALIZATION - Apply this to globals to ensure that
425/// they are constant initialized.
426#if LLVM_HAS_CPP_ATTRIBUTE(clang::require_constant_initialization)
427#define LLVM_REQUIRE_CONSTANT_INITIALIZATION \
428 [[clang::require_constant_initialization]]
429#else
430#define LLVM_REQUIRE_CONSTANT_INITIALIZATION
431#endif
432
433/// LLVM_GSL_OWNER - Apply this to owning classes like SmallVector to enable
434/// lifetime warnings.
435#if LLVM_HAS_CPP_ATTRIBUTE(gsl::Owner)
436#define LLVM_GSL_OWNER [[gsl::Owner]]
437#else
438#define LLVM_GSL_OWNER
439#endif
440
441/// LLVM_GSL_POINTER - Apply this to non-owning classes like
442/// StringRef to enable lifetime warnings.
443#if LLVM_HAS_CPP_ATTRIBUTE(gsl::Pointer)
444#define LLVM_GSL_POINTER [[gsl::Pointer]]
445#else
446#define LLVM_GSL_POINTER
447#endif
448
449#if LLVM_HAS_CPP_ATTRIBUTE(clang::lifetimebound)
450#define LLVM_LIFETIME_BOUND [[clang::lifetimebound]]
451#else
452#define LLVM_LIFETIME_BOUND
453#endif
454
455#if LLVM_HAS_CPP_ATTRIBUTE(nodiscard) >= 201907L
456#define LLVM_CTOR_NODISCARD [[nodiscard]]
457#else
458#define LLVM_CTOR_NODISCARD
459#endif
460
461// Macro to suppress the MSVC warning C4848:
462// "support for attribute [[msvc::no_unique_address]] in C++17 and earlier
463// is a vendor extension".
464// This warning is removed in versions >= 19.43.
465#if !defined(_MSC_VER) || _MSC_VER >= 1943 || defined(__clang__)
466#define LLVM_SUPPRESS_MSVC_ATTR_IS_VENDOR_EXT_PUSH
467#define LLVM_SUPPRESS_MSVC_ATTR_IS_VENDOR_EXT_POP
468#else // MSVC < 19.43
469#define LLVM_SUPPRESS_MSVC_ATTR_IS_VENDOR_EXT_PUSH \
470 _Pragma("warning(push)") _Pragma("warning(disable : 4848)")
471#define LLVM_SUPPRESS_MSVC_ATTR_IS_VENDOR_EXT_POP _Pragma("warning(pop)")
472#endif
473
474#if LLVM_HAS_CPP_ATTRIBUTE(no_unique_address)
475#define LLVM_NO_UNIQUE_ADDRESS [[no_unique_address]]
476#elif LLVM_HAS_CPP_ATTRIBUTE(msvc::no_unique_address)
477#define LLVM_NO_UNIQUE_ADDRESS \
478 LLVM_SUPPRESS_MSVC_ATTR_IS_VENDOR_EXT_PUSH \
479 [[msvc::no_unique_address]] LLVM_SUPPRESS_MSVC_ATTR_IS_VENDOR_EXT_POP
480#else
481#define LLVM_NO_UNIQUE_ADDRESS
482#endif
483
484/// LLVM_EXTENSION - Support compilers where we have a keyword to suppress
485/// pedantic diagnostics.
486#ifdef __GNUC__
487#define LLVM_EXTENSION __extension__
488#else
489#define LLVM_EXTENSION
490#endif
491
492/// LLVM_BUILTIN_UNREACHABLE - On compilers which support it, expands
493/// to an expression which states that it is undefined behavior for the
494/// compiler to reach this point. Otherwise is not defined.
495///
496/// '#else' is intentionally left out so that other macro logic (e.g.,
497/// LLVM_ASSUME_ALIGNED and llvm_unreachable()) can detect whether
498/// LLVM_BUILTIN_UNREACHABLE has a definition.
499#if __has_builtin(__builtin_unreachable) || defined(__GNUC__)
500# define LLVM_BUILTIN_UNREACHABLE __builtin_unreachable()
501#elif defined(_MSC_VER)
502# define LLVM_BUILTIN_UNREACHABLE __assume(false)
503#endif
504
505/// LLVM_BUILTIN_TRAP - On compilers which support it, expands to an expression
506/// which causes the program to exit abnormally.
507#if __has_builtin(__builtin_trap) || defined(__GNUC__)
508# define LLVM_BUILTIN_TRAP __builtin_trap()
509#elif defined(_MSC_VER)
510// The __debugbreak intrinsic is supported by MSVC, does not require forward
511// declarations involving platform-specific typedefs (unlike RaiseException),
512// results in a call to vectored exception handlers, and encodes to a short
513// instruction that still causes the trapping behavior we want.
514# define LLVM_BUILTIN_TRAP __debugbreak()
515#else
516# define LLVM_BUILTIN_TRAP *(volatile int*)0x11 = 0
517#endif
518
519/// LLVM_BUILTIN_DEBUGTRAP - On compilers which support it, expands to
520/// an expression which causes the program to break while running
521/// under a debugger.
522#if __has_builtin(__builtin_debugtrap)
523# define LLVM_BUILTIN_DEBUGTRAP __builtin_debugtrap()
524#elif defined(_MSC_VER)
525// The __debugbreak intrinsic is supported by MSVC and breaks while
526// running under the debugger, and also supports invoking a debugger
527// when the OS is configured appropriately.
528# define LLVM_BUILTIN_DEBUGTRAP __debugbreak()
529#else
530// Just continue execution when built with compilers that have no
531// support. This is a debugging aid and not intended to force the
532// program to abort if encountered.
533# define LLVM_BUILTIN_DEBUGTRAP
534#endif
535
536/// \macro LLVM_ASSUME_ALIGNED
537/// Returns a pointer with an assumed alignment.
538#if __has_builtin(__builtin_assume_aligned) || defined(__GNUC__)
539# define LLVM_ASSUME_ALIGNED(p, a) __builtin_assume_aligned(p, a)
540#elif defined(LLVM_BUILTIN_UNREACHABLE)
541# define LLVM_ASSUME_ALIGNED(p, a) \
542 (((uintptr_t(p) % (a)) == 0) ? (p) : (LLVM_BUILTIN_UNREACHABLE, (p)))
543#else
544# define LLVM_ASSUME_ALIGNED(p, a) (p)
545#endif
546
547/// \macro LLVM_PACKED
548/// Used to specify a packed structure.
549/// LLVM_PACKED(
550/// struct A {
551/// int i;
552/// int j;
553/// int k;
554/// long long l;
555/// });
556///
557/// LLVM_PACKED_START
558/// struct B {
559/// int i;
560/// int j;
561/// int k;
562/// long long l;
563/// };
564/// LLVM_PACKED_END
565#ifdef _MSC_VER
566# define LLVM_PACKED(d) __pragma(pack(push, 1)) d __pragma(pack(pop))
567# define LLVM_PACKED_START __pragma(pack(push, 1))
568# define LLVM_PACKED_END __pragma(pack(pop))
569#else
570# define LLVM_PACKED(d) d __attribute__((packed))
571# define LLVM_PACKED_START _Pragma("pack(push, 1)")
572# define LLVM_PACKED_END _Pragma("pack(pop)")
573#endif
574
575/// \macro LLVM_MEMORY_SANITIZER_BUILD
576/// Whether LLVM itself is built with MemorySanitizer instrumentation.
577#if __has_feature(memory_sanitizer)
578# define LLVM_MEMORY_SANITIZER_BUILD 1
579# include <sanitizer/msan_interface.h>
580# define LLVM_NO_SANITIZE_MEMORY_ATTRIBUTE __attribute__((no_sanitize_memory))
581#else
582# define LLVM_MEMORY_SANITIZER_BUILD 0
583# define __msan_allocated_memory(p, size)
584# define __msan_unpoison(p, size)
585# define LLVM_NO_SANITIZE_MEMORY_ATTRIBUTE
586#endif
587
588/// \macro LLVM_ADDRESS_SANITIZER_BUILD
589/// Whether LLVM itself is built with AddressSanitizer instrumentation.
590#if __has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
591# define LLVM_ADDRESS_SANITIZER_BUILD 1
592#if __has_include(<sanitizer/asan_interface.h>)
593# include <sanitizer/asan_interface.h>
594#else
595// These declarations exist to support ASan with MSVC. If MSVC eventually ships
596// asan_interface.h in their headers, then we can remove this.
597#ifdef __cplusplus
598extern "C" {
599#endif
600void __asan_poison_memory_region(void const volatile *addr, size_t size);
601void __asan_unpoison_memory_region(void const volatile *addr, size_t size);
602#ifdef __cplusplus
603} // extern "C"
604#endif
605#endif
606#else
607# define LLVM_ADDRESS_SANITIZER_BUILD 0
608# define __asan_poison_memory_region(p, size)
609# define __asan_unpoison_memory_region(p, size)
610#endif
611
612/// \macro LLVM_HWADDRESS_SANITIZER_BUILD
613/// Whether LLVM itself is built with HWAddressSanitizer instrumentation.
614#if __has_feature(hwaddress_sanitizer)
615#define LLVM_HWADDRESS_SANITIZER_BUILD 1
616#else
617#define LLVM_HWADDRESS_SANITIZER_BUILD 0
618#endif
619
620/// \macro LLVM_THREAD_SANITIZER_BUILD
621/// Whether LLVM itself is built with ThreadSanitizer instrumentation.
622#if __has_feature(thread_sanitizer) || defined(__SANITIZE_THREAD__)
623# define LLVM_THREAD_SANITIZER_BUILD 1
624#else
625# define LLVM_THREAD_SANITIZER_BUILD 0
626#endif
627
628#if LLVM_THREAD_SANITIZER_BUILD
629// Thread Sanitizer is a tool that finds races in code.
630// See http://code.google.com/p/data-race-test/wiki/DynamicAnnotations .
631// tsan detects these exact functions by name.
632#ifdef __cplusplus
633extern "C" {
634#endif
635void AnnotateHappensAfter(const char *file, int line, const volatile void *cv);
636void AnnotateHappensBefore(const char *file, int line, const volatile void *cv);
637void AnnotateIgnoreWritesBegin(const char *file, int line);
638void AnnotateIgnoreWritesEnd(const char *file, int line);
639#ifdef __cplusplus
640}
641#endif
642
643// This marker is used to define a happens-before arc. The race detector will
644// infer an arc from the begin to the end when they share the same pointer
645// argument.
646# define TsanHappensBefore(cv) AnnotateHappensBefore(__FILE__, __LINE__, cv)
647
648// This marker defines the destination of a happens-before arc.
649# define TsanHappensAfter(cv) AnnotateHappensAfter(__FILE__, __LINE__, cv)
650
651// Ignore any races on writes between here and the next TsanIgnoreWritesEnd.
652# define TsanIgnoreWritesBegin() AnnotateIgnoreWritesBegin(__FILE__, __LINE__)
653
654// Resume checking for racy writes.
655# define TsanIgnoreWritesEnd() AnnotateIgnoreWritesEnd(__FILE__, __LINE__)
656#else
657# define TsanHappensBefore(cv)
658# define TsanHappensAfter(cv)
659# define TsanIgnoreWritesBegin()
660# define TsanIgnoreWritesEnd()
661#endif
662
663/// \macro LLVM_NO_SANITIZE
664/// Disable a particular sanitizer for a function.
665#if __has_attribute(no_sanitize)
666#define LLVM_NO_SANITIZE(KIND) __attribute__((no_sanitize(KIND)))
667#else
668#define LLVM_NO_SANITIZE(KIND)
669#endif
670
671/// Mark debug helper function definitions like dump() that should not be
672/// stripped from debug builds.
673/// Note that you should also surround dump() functions with
674/// `#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)` so they do always
675/// get stripped in release builds.
676// FIXME: Move this to a private config.h as it's not usable in public headers.
677#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
678#define LLVM_DUMP_METHOD \
679 LLVM_ATTRIBUTE_NOINLINE LLVM_ATTRIBUTE_USED LLVM_ATTRIBUTE_RETAIN
680#else
681#define LLVM_DUMP_METHOD LLVM_ATTRIBUTE_NOINLINE
682#endif
683
684/// \macro LLVM_PRETTY_FUNCTION
685/// Gets a user-friendly looking function signature for the current scope
686/// using the best available method on each platform. The exact format of the
687/// resulting string is implementation specific and non-portable, so this should
688/// only be used, for example, for logging or diagnostics.
689#if defined(_MSC_VER)
690#define LLVM_PRETTY_FUNCTION __FUNCSIG__
691#elif defined(__GNUC__) || defined(__clang__)
692#define LLVM_PRETTY_FUNCTION __PRETTY_FUNCTION__
693#else
694#define LLVM_PRETTY_FUNCTION __func__
695#endif
696
697/// \macro LLVM_THREAD_LOCAL
698/// A thread-local storage specifier which can be used with globals,
699/// extern globals, and static globals.
700///
701/// This is essentially an extremely restricted analog to C++11's thread_local
702/// support. It uses thread_local if available, falling back on gcc __thread
703/// if not. __thread doesn't support many of the C++11 thread_local's
704/// features. You should only use this for PODs that you can statically
705/// initialize to some constant value. In almost all circumstances this is most
706/// appropriate for use with a pointer, integer, or small aggregation of
707/// pointers and integers.
708#if LLVM_ENABLE_THREADS
709#if __has_feature(cxx_thread_local) || defined(_MSC_VER)
710#define LLVM_THREAD_LOCAL thread_local
711#else
712// Clang, GCC, and other compatible compilers used __thread prior to C++11 and
713// we only need the restricted functionality that provides.
714#define LLVM_THREAD_LOCAL __thread
715#endif
716#else // !LLVM_ENABLE_THREADS
717// If threading is disabled entirely, this compiles to nothing and you get
718// a normal global variable.
719#define LLVM_THREAD_LOCAL
720#endif
721
722/// \macro LLVM_ENABLE_EXCEPTIONS
723/// Whether LLVM is built with exception support.
724#if __has_feature(cxx_exceptions)
725#define LLVM_ENABLE_EXCEPTIONS 1
726#elif defined(__GNUC__) && defined(__EXCEPTIONS)
727#define LLVM_ENABLE_EXCEPTIONS 1
728#elif defined(_MSC_VER) && defined(_CPPUNWIND)
729#define LLVM_ENABLE_EXCEPTIONS 1
730#endif
731
732/// \macro LLVM_NO_PROFILE_INSTRUMENT_FUNCTION
733/// Disable the profile instrument for a function.
734#if __has_attribute(no_profile_instrument_function)
735#define LLVM_NO_PROFILE_INSTRUMENT_FUNCTION \
736 __attribute__((no_profile_instrument_function))
737#else
738#define LLVM_NO_PROFILE_INSTRUMENT_FUNCTION
739#endif
740
741/// \macro LLVM_PREFERRED_TYPE
742/// Adjust type of bit-field in debug info.
743#if __has_attribute(preferred_type)
744#define LLVM_PREFERRED_TYPE(T) __attribute__((preferred_type(T)))
745#else
746#define LLVM_PREFERRED_TYPE(T)
747#endif
748
749#if LLVM_HAS_CPP_ATTRIBUTE(clang::ptrauth_vtable_pointer) && \
750 (defined(__PTRAUTH__) || __has_feature(ptrauth_calls))
751#define LLVM_MOVABLE_POLYMORPHIC_TYPE \
752 [[clang::ptrauth_vtable_pointer(default_key, no_address_discrimination, \
753 default_extra_discrimination)]]
754#else
755#define LLVM_MOVABLE_POLYMORPHIC_TYPE
756#endif
757
758/// \macro LLVM_VIRTUAL_ANCHOR_FUNCTION
759/// This macro is used to adhere to LLVM's policy that each class with a vtable
760/// must have at least one out-of-line virtual function. This macro allows us
761/// to declare such a function in `final` classes without triggering a warning.
762// clang-format off
763// Autoformatting makes this look awful.
764#if defined(__clang__)
765 // Make sure this is only parsed if __clang__ is defined
766 #if __has_warning("-Wunnecessary-virtual-specifier")
767 #define LLVM_DECLARE_VIRTUAL_ANCHOR_FUNCTION() \
768 _Pragma("clang diagnostic push") \
769 _Pragma("clang diagnostic ignored \"-Wunnecessary-virtual-specifier\"") \
770 virtual void anchor() \
771 _Pragma("clang diagnostic pop")
772 #else // __has_warning
773 #define LLVM_DECLARE_VIRTUAL_ANCHOR_FUNCTION() \
774 virtual void anchor()
775 #endif
776#else // defined(__clang__)
777 #define LLVM_DECLARE_VIRTUAL_ANCHOR_FUNCTION() \
778 virtual void anchor()
779#endif
780// clang-format on
781
782/// \macro LLVM_IS_X86
783/// Whether the target architecture is x86 / x86-64.
784#if defined(__x86_64__) || defined(__i386__)
785#define LLVM_IS_X86 1
786#else
787#define LLVM_IS_X86 0
788#endif
789
790/// \macro LLVM_TARGET_SSE42
791/// Function attribute to compile a function with SSE4.2 enabled.
792#if defined(__has_attribute) && __has_attribute(target)
793#define LLVM_TARGET_SSE42 __attribute__((target("sse4.2")))
794#else
795#define LLVM_TARGET_SSE42
796#endif
797
798#if __has_builtin(__builtin_cpu_supports) && \
799 (defined(__linux__) || defined(__APPLE__))
800#define LLVM_CPU_SUPPORTS(feature) __builtin_cpu_supports(feature)
801#else
802#define LLVM_CPU_SUPPORTS(feature) 0
803#endif
804
805/// \macro LLVM_CPU_SUPPORTS_SSE42
806/// Expands to true if the runtime cpu supports SSE4.2, or if compiled with
807/// SSE4.2 enabled.
808#if defined(__SSE4_2__)
809#define LLVM_CPU_SUPPORTS_SSE42 1
810#else
811#define LLVM_CPU_SUPPORTS_SSE42 LLVM_CPU_SUPPORTS("sse4.2")
812#endif
813
814#endif
#define __asan_poison_memory_region(p, size)
Definition Compiler.h:608
#define __asan_unpoison_memory_region(p, size)
Definition Compiler.h:609
dot regions Print regions of function to dot file(with no function bodies)"