1// -*- C++ -*- 2//===--------------------------- __config ---------------------------------===// 3// 4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 5// See https://llvm.org/LICENSE.txt for license information. 6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7// 8//===----------------------------------------------------------------------===// 9 10#ifndef _LIBCPP_CONFIG 11#define _LIBCPP_CONFIG 12 13#if defined(_MSC_VER) && !defined(__clang__) 14# if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) 15# define _LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER 16# endif 17#endif 18 19#ifndef _LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER 20#pragma GCC system_header 21#endif 22 23#ifdef __cplusplus 24 25#ifdef __GNUC__ 26# define _GNUC_VER (__GNUC__ * 100 + __GNUC_MINOR__) 27// The _GNUC_VER_NEW macro better represents the new GCC versioning scheme 28// introduced in GCC 5.0. 29# define _GNUC_VER_NEW (_GNUC_VER * 10 + __GNUC_PATCHLEVEL__) 30#else 31# define _GNUC_VER 0 32# define _GNUC_VER_NEW 0 33#endif 34 35#define _LIBCPP_VERSION 13000 36 37#ifndef _LIBCPP_ABI_VERSION 38# define _LIBCPP_ABI_VERSION 1 39#endif 40 41#if __STDC_HOSTED__ == 0 42# define _LIBCPP_FREESTANDING 43#endif 44 45#ifndef _LIBCPP_STD_VER 46# if __cplusplus <= 201103L 47# define _LIBCPP_STD_VER 11 48# elif __cplusplus <= 201402L 49# define _LIBCPP_STD_VER 14 50# elif __cplusplus <= 201703L 51# define _LIBCPP_STD_VER 17 52# elif __cplusplus <= 202002L 53# define _LIBCPP_STD_VER 20 54# else 55# define _LIBCPP_STD_VER 21 // current year, or date of c++2b ratification 56# endif 57#endif // _LIBCPP_STD_VER 58 59#if defined(__ELF__) 60# define _LIBCPP_OBJECT_FORMAT_ELF 1 61#elif defined(__MACH__) 62# define _LIBCPP_OBJECT_FORMAT_MACHO 1 63#elif defined(_WIN32) 64# define _LIBCPP_OBJECT_FORMAT_COFF 1 65#elif defined(__wasm__) 66# define _LIBCPP_OBJECT_FORMAT_WASM 1 67#else 68 // ... add new file formats here ... 69#endif 70 71#if defined(_LIBCPP_ABI_UNSTABLE) || _LIBCPP_ABI_VERSION >= 2 72// Change short string representation so that string data starts at offset 0, 73// improving its alignment in some cases. 74# define _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT 75// Fix deque iterator type in order to support incomplete types. 76# define _LIBCPP_ABI_INCOMPLETE_TYPES_IN_DEQUE 77// Fix undefined behavior in how std::list stores its linked nodes. 78# define _LIBCPP_ABI_LIST_REMOVE_NODE_POINTER_UB 79// Fix undefined behavior in how __tree stores its end and parent nodes. 80# define _LIBCPP_ABI_TREE_REMOVE_NODE_POINTER_UB 81// Fix undefined behavior in how __hash_table stores its pointer types. 82# define _LIBCPP_ABI_FIX_UNORDERED_NODE_POINTER_UB 83# define _LIBCPP_ABI_FORWARD_LIST_REMOVE_NODE_POINTER_UB 84# define _LIBCPP_ABI_FIX_UNORDERED_CONTAINER_SIZE_TYPE 85// Don't use a nullptr_t simulation type in C++03 instead using C++11 nullptr 86// provided under the alternate keyword __nullptr, which changes the mangling 87// of nullptr_t. This option is ABI incompatible with GCC in C++03 mode. 88# define _LIBCPP_ABI_ALWAYS_USE_CXX11_NULLPTR 89// Define the `pointer_safety` enum as a C++11 strongly typed enumeration 90// instead of as a class simulating an enum. If this option is enabled 91// `pointer_safety` and `get_pointer_safety()` will no longer be available 92// in C++03. 93# define _LIBCPP_ABI_POINTER_SAFETY_ENUM_TYPE 94// Define a key function for `bad_function_call` in the library, to centralize 95// its vtable and typeinfo to libc++ rather than having all other libraries 96// using that class define their own copies. 97# define _LIBCPP_ABI_BAD_FUNCTION_CALL_KEY_FUNCTION 98// Enable optimized version of __do_get_(un)signed which avoids redundant copies. 99# define _LIBCPP_ABI_OPTIMIZED_LOCALE_NUM_GET 100// Use the smallest possible integer type to represent the index of the variant. 101// Previously libc++ used "unsigned int" exclusively. 102# define _LIBCPP_ABI_VARIANT_INDEX_TYPE_OPTIMIZATION 103// Unstable attempt to provide a more optimized std::function 104# define _LIBCPP_ABI_OPTIMIZED_FUNCTION 105// All the regex constants must be distinct and nonzero. 106# define _LIBCPP_ABI_REGEX_CONSTANTS_NONZERO 107// Re-worked external template instantiations for std::string with a focus on 108// performance and fast-path inlining. 109# define _LIBCPP_ABI_STRING_OPTIMIZED_EXTERNAL_INSTANTIATION 110// Enable clang::trivial_abi on std::unique_ptr. 111# define _LIBCPP_ABI_ENABLE_UNIQUE_PTR_TRIVIAL_ABI 112// Enable clang::trivial_abi on std::shared_ptr and std::weak_ptr 113# define _LIBCPP_ABI_ENABLE_SHARED_PTR_TRIVIAL_ABI 114#elif _LIBCPP_ABI_VERSION == 1 115# if !defined(_LIBCPP_OBJECT_FORMAT_COFF) 116// Enable compiling copies of now inline methods into the dylib to support 117// applications compiled against older libraries. This is unnecessary with 118// COFF dllexport semantics, since dllexport forces a non-inline definition 119// of inline functions to be emitted anyway. Our own non-inline copy would 120// conflict with the dllexport-emitted copy, so we disable it. 121# define _LIBCPP_DEPRECATED_ABI_LEGACY_LIBRARY_DEFINITIONS_FOR_INLINE_FUNCTIONS 122# endif 123// Feature macros for disabling pre ABI v1 features. All of these options 124// are deprecated. 125# if defined(__FreeBSD__) 126# define _LIBCPP_DEPRECATED_ABI_DISABLE_PAIR_TRIVIAL_COPY_CTOR 127# endif 128#endif 129 130#if defined(_LIBCPP_BUILDING_LIBRARY) || defined(_LIBCPP_ABI_UNSTABLE) || _LIBCPP_ABI_VERSION >= 2 131// Enable additional explicit instantiations of iostreams components. This 132// reduces the number of weak definitions generated in programs that use 133// iostreams by providing a single strong definition in the shared library. 134# define _LIBCPP_ABI_ENABLE_ADDITIONAL_IOSTREAM_EXPLICIT_INSTANTIATIONS_1 135#endif 136 137#define _LIBCPP_CONCAT1(_LIBCPP_X,_LIBCPP_Y) _LIBCPP_X##_LIBCPP_Y 138#define _LIBCPP_CONCAT(_LIBCPP_X,_LIBCPP_Y) _LIBCPP_CONCAT1(_LIBCPP_X,_LIBCPP_Y) 139 140#ifndef _LIBCPP_ABI_NAMESPACE 141# define _LIBCPP_ABI_NAMESPACE _LIBCPP_CONCAT(__,_LIBCPP_ABI_VERSION) 142#endif 143 144#if __cplusplus < 201103L 145#define _LIBCPP_CXX03_LANG 146#endif 147 148#ifndef __has_attribute 149#define __has_attribute(__x) 0 150#endif 151 152#ifndef __has_builtin 153#define __has_builtin(__x) 0 154#endif 155 156#ifndef __has_extension 157#define __has_extension(__x) 0 158#endif 159 160#ifndef __has_feature 161#define __has_feature(__x) 0 162#endif 163 164#ifndef __has_cpp_attribute 165#define __has_cpp_attribute(__x) 0 166#endif 167 168// '__is_identifier' returns '0' if '__x' is a reserved identifier provided by 169// the compiler and '1' otherwise. 170#ifndef __is_identifier 171#define __is_identifier(__x) 1 172#endif 173 174#ifndef __has_declspec_attribute 175#define __has_declspec_attribute(__x) 0 176#endif 177 178#define __has_keyword(__x) !(__is_identifier(__x)) 179 180#ifndef __has_include 181#define __has_include(...) 0 182#endif 183 184#if defined(__clang__) 185# define _LIBCPP_COMPILER_CLANG 186# ifndef __apple_build_version__ 187# define _LIBCPP_CLANG_VER (__clang_major__ * 100 + __clang_minor__) 188# endif 189#elif defined(__GNUC__) 190# define _LIBCPP_COMPILER_GCC 191#elif defined(_MSC_VER) 192# define _LIBCPP_COMPILER_MSVC 193#elif defined(__IBMCPP__) 194# define _LIBCPP_COMPILER_IBM 195#endif 196 197#if defined(_LIBCPP_COMPILER_GCC) && __cplusplus < 201103L 198#error "libc++ does not support using GCC with C++03. Please enable C++11" 199#endif 200 201// FIXME: ABI detection should be done via compiler builtin macros. This 202// is just a placeholder until Clang implements such macros. For now assume 203// that Windows compilers pretending to be MSVC++ target the Microsoft ABI, 204// and allow the user to explicitly specify the ABI to handle cases where this 205// heuristic falls short. 206#if defined(_LIBCPP_ABI_FORCE_ITANIUM) && defined(_LIBCPP_ABI_FORCE_MICROSOFT) 207# error "Only one of _LIBCPP_ABI_FORCE_ITANIUM and _LIBCPP_ABI_FORCE_MICROSOFT can be defined" 208#elif defined(_LIBCPP_ABI_FORCE_ITANIUM) 209# define _LIBCPP_ABI_ITANIUM 210#elif defined(_LIBCPP_ABI_FORCE_MICROSOFT) 211# define _LIBCPP_ABI_MICROSOFT 212#else 213# if defined(_WIN32) && defined(_MSC_VER) 214# define _LIBCPP_ABI_MICROSOFT 215# else 216# define _LIBCPP_ABI_ITANIUM 217# endif 218#endif 219 220#if defined(_LIBCPP_ABI_MICROSOFT) && !defined(_LIBCPP_NO_VCRUNTIME) 221# define _LIBCPP_ABI_VCRUNTIME 222#endif 223 224// Need to detect which libc we're using if we're on Linux. 225#if defined(__linux__) 226# include <features.h> 227# if defined(__GLIBC_PREREQ) 228# define _LIBCPP_GLIBC_PREREQ(a, b) __GLIBC_PREREQ(a, b) 229# else 230# define _LIBCPP_GLIBC_PREREQ(a, b) 0 231# endif // defined(__GLIBC_PREREQ) 232#endif // defined(__linux__) 233 234#ifdef __LITTLE_ENDIAN__ 235# if __LITTLE_ENDIAN__ 236# define _LIBCPP_LITTLE_ENDIAN 237# endif // __LITTLE_ENDIAN__ 238#endif // __LITTLE_ENDIAN__ 239 240#ifdef __BIG_ENDIAN__ 241# if __BIG_ENDIAN__ 242# define _LIBCPP_BIG_ENDIAN 243# endif // __BIG_ENDIAN__ 244#endif // __BIG_ENDIAN__ 245 246#ifdef __BYTE_ORDER__ 247# if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ 248# define _LIBCPP_LITTLE_ENDIAN 249# elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ 250# define _LIBCPP_BIG_ENDIAN 251# endif // __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ 252#endif // __BYTE_ORDER__ 253 254#ifdef __FreeBSD__ 255# include <sys/endian.h> 256# include <osreldate.h> 257# if _BYTE_ORDER == _LITTLE_ENDIAN 258# define _LIBCPP_LITTLE_ENDIAN 259# else // _BYTE_ORDER == _LITTLE_ENDIAN 260# define _LIBCPP_BIG_ENDIAN 261# endif // _BYTE_ORDER == _LITTLE_ENDIAN 262# ifndef __LONG_LONG_SUPPORTED 263# define _LIBCPP_HAS_NO_LONG_LONG 264# endif // __LONG_LONG_SUPPORTED 265#endif // __FreeBSD__ 266 267#if defined(__NetBSD__) || defined(__OpenBSD__) 268# include <sys/endian.h> 269# if _BYTE_ORDER == _LITTLE_ENDIAN 270# define _LIBCPP_LITTLE_ENDIAN 271# else // _BYTE_ORDER == _LITTLE_ENDIAN 272# define _LIBCPP_BIG_ENDIAN 273# endif // _BYTE_ORDER == _LITTLE_ENDIAN 274#endif // defined(__NetBSD__) || defined(__OpenBSD__) 275 276#if defined(_WIN32) 277# define _LIBCPP_WIN32API 278# define _LIBCPP_LITTLE_ENDIAN 279# define _LIBCPP_SHORT_WCHAR 1 280// Both MinGW and native MSVC provide a "MSVC"-like environment 281# define _LIBCPP_MSVCRT_LIKE 282// If mingw not explicitly detected, assume using MS C runtime only if 283// a MS compatibility version is specified. 284# if defined(_MSC_VER) && !defined(__MINGW32__) 285# define _LIBCPP_MSVCRT // Using Microsoft's C Runtime library 286# endif 287# if (defined(_M_AMD64) || defined(__x86_64__)) || (defined(_M_ARM) || defined(__arm__)) 288# define _LIBCPP_HAS_BITSCAN64 289# endif 290# define _LIBCPP_HAS_OPEN_WITH_WCHAR 291# if defined(_LIBCPP_MSVCRT) 292# define _LIBCPP_HAS_QUICK_EXIT 293# endif 294 295// Some CRT APIs are unavailable to store apps 296# if defined(WINAPI_FAMILY) 297# include <winapifamily.h> 298# if !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) && \ 299 (!defined(WINAPI_PARTITION_SYSTEM) || \ 300 !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_SYSTEM)) 301# define _LIBCPP_WINDOWS_STORE_APP 302# endif 303# endif 304#endif // defined(_WIN32) 305 306#ifdef __sun__ 307# include <sys/isa_defs.h> 308# ifdef _LITTLE_ENDIAN 309# define _LIBCPP_LITTLE_ENDIAN 310# else 311# define _LIBCPP_BIG_ENDIAN 312# endif 313#endif // __sun__ 314 315#if defined(__OpenBSD__) || defined(__CloudABI__) 316 // Certain architectures provide arc4random(). Prefer using 317 // arc4random() over /dev/{u,}random to make it possible to obtain 318 // random data even when using sandboxing mechanisms such as chroots, 319 // Capsicum, etc. 320# define _LIBCPP_USING_ARC4_RANDOM 321#elif defined(__Fuchsia__) || defined(__wasi__) 322# define _LIBCPP_USING_GETENTROPY 323#elif defined(__native_client__) 324 // NaCl's sandbox (which PNaCl also runs in) doesn't allow filesystem access, 325 // including accesses to the special files under /dev. C++11's 326 // std::random_device is instead exposed through a NaCl syscall. 327# define _LIBCPP_USING_NACL_RANDOM 328#elif defined(_LIBCPP_WIN32API) 329# define _LIBCPP_USING_WIN32_RANDOM 330#else 331# define _LIBCPP_USING_DEV_RANDOM 332#endif 333 334#if !defined(_LIBCPP_LITTLE_ENDIAN) && !defined(_LIBCPP_BIG_ENDIAN) 335# include <endian.h> 336# if __BYTE_ORDER == __LITTLE_ENDIAN 337# define _LIBCPP_LITTLE_ENDIAN 338# elif __BYTE_ORDER == __BIG_ENDIAN 339# define _LIBCPP_BIG_ENDIAN 340# else // __BYTE_ORDER == __BIG_ENDIAN 341# error unable to determine endian 342# endif 343#endif // !defined(_LIBCPP_LITTLE_ENDIAN) && !defined(_LIBCPP_BIG_ENDIAN) 344 345#if __has_attribute(__no_sanitize__) && !defined(_LIBCPP_COMPILER_GCC) 346# define _LIBCPP_NO_CFI __attribute__((__no_sanitize__("cfi"))) 347#else 348# define _LIBCPP_NO_CFI 349#endif 350 351#if __ISO_C_VISIBLE >= 2011 || __cplusplus >= 201103L 352# if defined(__FreeBSD__) 353# define _LIBCPP_HAS_ALIGNED_ALLOC 354# define _LIBCPP_HAS_QUICK_EXIT 355# if __FreeBSD_version >= 1300064 || \ 356 (__FreeBSD_version >= 1201504 && __FreeBSD_version < 1300000) 357# define _LIBCPP_HAS_TIMESPEC_GET 358# endif 359# elif defined(__BIONIC__) 360# if __ANDROID_API__ >= 21 361# define _LIBCPP_HAS_QUICK_EXIT 362# endif 363# if __ANDROID_API__ >= 28 364# define _LIBCPP_HAS_ALIGNED_ALLOC 365# endif 366# if __ANDROID_API__ >= 29 367# define _LIBCPP_HAS_TIMESPEC_GET 368# endif 369# elif defined(__Fuchsia__) || defined(__wasi__) || defined(__NetBSD__) 370# define _LIBCPP_HAS_ALIGNED_ALLOC 371# define _LIBCPP_HAS_QUICK_EXIT 372# define _LIBCPP_HAS_TIMESPEC_GET 373# elif defined(__OpenBSD__) 374# define _LIBCPP_HAS_ALIGNED_ALLOC 375# define _LIBCPP_HAS_TIMESPEC_GET 376# elif defined(__linux__) 377# if !defined(_LIBCPP_HAS_MUSL_LIBC) 378# if _LIBCPP_GLIBC_PREREQ(2, 15) || defined(__BIONIC__) 379# define _LIBCPP_HAS_QUICK_EXIT 380# endif 381# if _LIBCPP_GLIBC_PREREQ(2, 17) 382# define _LIBCPP_HAS_ALIGNED_ALLOC 383# define _LIBCPP_HAS_TIMESPEC_GET 384# endif 385# else // defined(_LIBCPP_HAS_MUSL_LIBC) 386# define _LIBCPP_HAS_ALIGNED_ALLOC 387# define _LIBCPP_HAS_QUICK_EXIT 388# define _LIBCPP_HAS_TIMESPEC_GET 389# endif 390# elif defined(__APPLE__) 391 // timespec_get and aligned_alloc were introduced in macOS 10.15 and 392 // aligned releases 393# if (__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ >= 101500 || \ 394 __ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__ >= 130000 || \ 395 __ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__ >= 130000 || \ 396 __ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__ >= 60000) 397# define _LIBCPP_HAS_ALIGNED_ALLOC 398# define _LIBCPP_HAS_TIMESPEC_GET 399# endif 400# endif // __APPLE__ 401#endif 402 403#ifndef _LIBCPP_CXX03_LANG 404# define _LIBCPP_ALIGNOF(_Tp) alignof(_Tp) 405#elif defined(_LIBCPP_COMPILER_CLANG) 406# define _LIBCPP_ALIGNOF(_Tp) _Alignof(_Tp) 407#else 408# error "We don't know a correct way to implement alignof(T) in C++03 outside of Clang" 409#endif 410 411#define _LIBCPP_PREFERRED_ALIGNOF(_Tp) __alignof(_Tp) 412 413#if defined(_LIBCPP_COMPILER_CLANG) 414 415#if defined(_LIBCPP_ALTERNATE_STRING_LAYOUT) 416# error _LIBCPP_ALTERNATE_STRING_LAYOUT is deprecated, please use _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT instead 417#endif 418#if defined(__APPLE__) && !defined(__i386__) && !defined(__x86_64__) && \ 419 (!defined(__arm__) || __ARM_ARCH_7K__ >= 2) 420# define _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT 421#endif 422 423#if __has_feature(cxx_alignas) 424# define _ALIGNAS_TYPE(x) alignas(x) 425# define _ALIGNAS(x) alignas(x) 426#else 427# define _ALIGNAS_TYPE(x) __attribute__((__aligned__(_LIBCPP_ALIGNOF(x)))) 428# define _ALIGNAS(x) __attribute__((__aligned__(x))) 429#endif 430 431#if __cplusplus < 201103L 432typedef __char16_t char16_t; 433typedef __char32_t char32_t; 434#endif 435 436#if !__has_feature(cxx_exceptions) 437# define _LIBCPP_NO_EXCEPTIONS 438#endif 439 440#if !(__has_feature(cxx_strong_enums)) 441#define _LIBCPP_HAS_NO_STRONG_ENUMS 442#endif 443 444#if __has_feature(cxx_attributes) 445# define _LIBCPP_NORETURN [[noreturn]] 446#else 447# define _LIBCPP_NORETURN __attribute__ ((noreturn)) 448#endif 449 450#if !(__has_feature(cxx_nullptr)) 451# if (__has_extension(cxx_nullptr) || __has_keyword(__nullptr)) && defined(_LIBCPP_ABI_ALWAYS_USE_CXX11_NULLPTR) 452# define nullptr __nullptr 453# else 454# define _LIBCPP_HAS_NO_NULLPTR 455# endif 456#endif 457 458// Objective-C++ features (opt-in) 459#if __has_feature(objc_arc) 460#define _LIBCPP_HAS_OBJC_ARC 461#endif 462 463#if __has_feature(objc_arc_weak) 464#define _LIBCPP_HAS_OBJC_ARC_WEAK 465#endif 466 467#if __has_extension(blocks) 468# define _LIBCPP_HAS_EXTENSION_BLOCKS 469#endif 470 471#if defined(_LIBCPP_HAS_EXTENSION_BLOCKS) && defined(__APPLE__) 472# define _LIBCPP_HAS_BLOCKS_RUNTIME 473#endif 474 475#if !(__has_feature(cxx_relaxed_constexpr)) 476#define _LIBCPP_HAS_NO_CXX14_CONSTEXPR 477#endif 478 479#if !(__has_feature(cxx_variable_templates)) 480#define _LIBCPP_HAS_NO_VARIABLE_TEMPLATES 481#endif 482 483#if !(__has_feature(cxx_noexcept)) 484#define _LIBCPP_HAS_NO_NOEXCEPT 485#endif 486 487#if !defined(_LIBCPP_HAS_NO_ASAN) && !__has_feature(address_sanitizer) 488#define _LIBCPP_HAS_NO_ASAN 489#endif 490 491// Allow for build-time disabling of unsigned integer sanitization 492#if !defined(_LIBCPP_DISABLE_UBSAN_UNSIGNED_INTEGER_CHECK) && __has_attribute(no_sanitize) 493#define _LIBCPP_DISABLE_UBSAN_UNSIGNED_INTEGER_CHECK __attribute__((__no_sanitize__("unsigned-integer-overflow"))) 494#endif 495 496#if __has_builtin(__builtin_launder) 497#define _LIBCPP_COMPILER_HAS_BUILTIN_LAUNDER 498#endif 499 500#if __has_builtin(__builtin_constant_p) 501#define _LIBCPP_COMPILER_HAS_BUILTIN_CONSTANT_P 502#endif 503 504#if !__is_identifier(__has_unique_object_representations) 505#define _LIBCPP_HAS_UNIQUE_OBJECT_REPRESENTATIONS 506#endif 507 508#define _LIBCPP_ALWAYS_INLINE __attribute__ ((__always_inline__)) 509 510// Literal operators ""d and ""y are supported starting with LLVM Clang 8 and AppleClang 10.0.1 511#if (defined(_LIBCPP_CLANG_VER) && _LIBCPP_CLANG_VER < 800) || \ 512 (defined(__apple_build_version__) && __apple_build_version__ < 10010000) 513#define _LIBCPP_HAS_NO_CXX20_CHRONO_LITERALS 514#endif 515 516#define _LIBCPP_DISABLE_EXTENSION_WARNING __extension__ 517 518#elif defined(_LIBCPP_COMPILER_GCC) 519 520#define _ALIGNAS(x) __attribute__((__aligned__(x))) 521#define _ALIGNAS_TYPE(x) __attribute__((__aligned__(_LIBCPP_ALIGNOF(x)))) 522 523#define _LIBCPP_NORETURN __attribute__((noreturn)) 524 525#if !__EXCEPTIONS 526# define _LIBCPP_NO_EXCEPTIONS 527#endif 528 529// Determine if GCC supports relaxed constexpr 530#if !defined(__cpp_constexpr) || __cpp_constexpr < 201304L 531#define _LIBCPP_HAS_NO_CXX14_CONSTEXPR 532#endif 533 534// GCC 5 supports variable templates 535#if !defined(__cpp_variable_templates) || __cpp_variable_templates < 201304L 536#define _LIBCPP_HAS_NO_VARIABLE_TEMPLATES 537#endif 538 539#if !defined(__cpp_concepts) || __cpp_concepts < 201907L 540#define _LIBCPP_HAS_NO_CONCEPTS 541#endif 542 543#if !defined(_LIBCPP_HAS_NO_ASAN) && !defined(__SANITIZE_ADDRESS__) 544#define _LIBCPP_HAS_NO_ASAN 545#endif 546 547#if _GNUC_VER >= 700 548#define _LIBCPP_COMPILER_HAS_BUILTIN_LAUNDER 549#define _LIBCPP_COMPILER_HAS_BUILTIN_CONSTANT_P 550#define _LIBCPP_HAS_UNIQUE_OBJECT_REPRESENTATIONS 551#endif 552 553#define _LIBCPP_ALWAYS_INLINE __attribute__ ((__always_inline__)) 554 555#define _LIBCPP_DISABLE_EXTENSION_WARNING __extension__ 556 557#elif defined(_LIBCPP_COMPILER_MSVC) 558 559#define _LIBCPP_TOSTRING2(x) #x 560#define _LIBCPP_TOSTRING(x) _LIBCPP_TOSTRING2(x) 561#define _LIBCPP_WARNING(x) __pragma(message(__FILE__ "(" _LIBCPP_TOSTRING(__LINE__) ") : warning note: " x)) 562 563#if _MSC_VER < 1900 564#error "MSVC versions prior to Visual Studio 2015 are not supported" 565#endif 566 567#define _LIBCPP_HAS_NO_CXX14_CONSTEXPR 568#define _LIBCPP_HAS_NO_VARIABLE_TEMPLATES 569#define __alignof__ __alignof 570#define _LIBCPP_NORETURN __declspec(noreturn) 571#define _ALIGNAS(x) __declspec(align(x)) 572#define _ALIGNAS_TYPE(x) alignas(x) 573 574#define _LIBCPP_WEAK 575 576#define _LIBCPP_HAS_NO_ASAN 577 578#define _LIBCPP_ALWAYS_INLINE __forceinline 579 580#define _LIBCPP_HAS_NO_VECTOR_EXTENSION 581 582#define _LIBCPP_DISABLE_EXTENSION_WARNING 583 584#elif defined(_LIBCPP_COMPILER_IBM) 585 586#define _ALIGNAS(x) __attribute__((__aligned__(x))) 587#define _ALIGNAS_TYPE(x) __attribute__((__aligned__(_LIBCPP_ALIGNOF(x)))) 588#define _ATTRIBUTE(x) __attribute__((x)) 589#define _LIBCPP_NORETURN __attribute__((noreturn)) 590 591#define _LIBCPP_HAS_NO_UNICODE_CHARS 592#define _LIBCPP_HAS_NO_VARIABLE_TEMPLATES 593 594#if defined(_AIX) 595#define __MULTILOCALE_API 596#endif 597 598#define _LIBCPP_HAS_NO_ASAN 599 600#define _LIBCPP_ALWAYS_INLINE __attribute__ ((__always_inline__)) 601 602#define _LIBCPP_HAS_NO_VECTOR_EXTENSION 603 604#define _LIBCPP_DISABLE_EXTENSION_WARNING 605 606#endif // _LIBCPP_COMPILER_[CLANG|GCC|MSVC|IBM] 607 608#if defined(_LIBCPP_OBJECT_FORMAT_COFF) 609 610#ifdef _DLL 611# define _LIBCPP_CRT_FUNC __declspec(dllimport) 612#else 613# define _LIBCPP_CRT_FUNC 614#endif 615 616#if defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) 617# define _LIBCPP_DLL_VIS 618# define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS 619# define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS 620# define _LIBCPP_OVERRIDABLE_FUNC_VIS 621# define _LIBCPP_EXPORTED_FROM_ABI 622#elif defined(_LIBCPP_BUILDING_LIBRARY) 623# define _LIBCPP_DLL_VIS __declspec(dllexport) 624# if defined(__MINGW32__) 625# define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS _LIBCPP_DLL_VIS 626# define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS 627# else 628# define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS 629# define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS _LIBCPP_DLL_VIS 630# endif 631# define _LIBCPP_OVERRIDABLE_FUNC_VIS _LIBCPP_DLL_VIS 632# define _LIBCPP_EXPORTED_FROM_ABI __declspec(dllexport) 633#else 634# define _LIBCPP_DLL_VIS __declspec(dllimport) 635# define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS _LIBCPP_DLL_VIS 636# define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS 637# define _LIBCPP_OVERRIDABLE_FUNC_VIS 638# define _LIBCPP_EXPORTED_FROM_ABI __declspec(dllimport) 639#endif 640 641#define _LIBCPP_TYPE_VIS _LIBCPP_DLL_VIS 642#define _LIBCPP_FUNC_VIS _LIBCPP_DLL_VIS 643#define _LIBCPP_EXCEPTION_ABI _LIBCPP_DLL_VIS 644#define _LIBCPP_HIDDEN 645#define _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS 646#define _LIBCPP_TEMPLATE_VIS 647#define _LIBCPP_ENUM_VIS 648 649#endif // defined(_LIBCPP_OBJECT_FORMAT_COFF) 650 651#ifndef _LIBCPP_HIDDEN 652# if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) 653# define _LIBCPP_HIDDEN __attribute__ ((__visibility__("hidden"))) 654# else 655# define _LIBCPP_HIDDEN 656# endif 657#endif 658 659#ifndef _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS 660# if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) 661// The inline should be removed once PR32114 is resolved 662# define _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS inline _LIBCPP_HIDDEN 663# else 664# define _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS 665# endif 666#endif 667 668#ifndef _LIBCPP_FUNC_VIS 669# if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) 670# define _LIBCPP_FUNC_VIS __attribute__ ((__visibility__("default"))) 671# else 672# define _LIBCPP_FUNC_VIS 673# endif 674#endif 675 676#ifndef _LIBCPP_TYPE_VIS 677# if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) 678# define _LIBCPP_TYPE_VIS __attribute__ ((__visibility__("default"))) 679# else 680# define _LIBCPP_TYPE_VIS 681# endif 682#endif 683 684#ifndef _LIBCPP_TEMPLATE_VIS 685# if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) 686# if __has_attribute(__type_visibility__) 687# define _LIBCPP_TEMPLATE_VIS __attribute__ ((__type_visibility__("default"))) 688# else 689# define _LIBCPP_TEMPLATE_VIS __attribute__ ((__visibility__("default"))) 690# endif 691# else 692# define _LIBCPP_TEMPLATE_VIS 693# endif 694#endif 695 696#ifndef _LIBCPP_EXPORTED_FROM_ABI 697# if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) 698# define _LIBCPP_EXPORTED_FROM_ABI __attribute__((__visibility__("default"))) 699# else 700# define _LIBCPP_EXPORTED_FROM_ABI 701# endif 702#endif 703 704#ifndef _LIBCPP_OVERRIDABLE_FUNC_VIS 705#define _LIBCPP_OVERRIDABLE_FUNC_VIS _LIBCPP_FUNC_VIS 706#endif 707 708#ifndef _LIBCPP_EXCEPTION_ABI 709# if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) 710# define _LIBCPP_EXCEPTION_ABI __attribute__ ((__visibility__("default"))) 711# else 712# define _LIBCPP_EXCEPTION_ABI 713# endif 714#endif 715 716#ifndef _LIBCPP_ENUM_VIS 717# if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) && __has_attribute(__type_visibility__) 718# define _LIBCPP_ENUM_VIS __attribute__ ((__type_visibility__("default"))) 719# else 720# define _LIBCPP_ENUM_VIS 721# endif 722#endif 723 724#ifndef _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS 725# if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) 726# define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS __attribute__ ((__visibility__("default"))) 727# else 728# define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS 729# endif 730#endif 731 732#ifndef _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS 733#define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS 734#endif 735 736#if __has_attribute(internal_linkage) 737# define _LIBCPP_INTERNAL_LINKAGE __attribute__ ((internal_linkage)) 738#else 739# define _LIBCPP_INTERNAL_LINKAGE _LIBCPP_ALWAYS_INLINE 740#endif 741 742#if __has_attribute(exclude_from_explicit_instantiation) 743# define _LIBCPP_EXCLUDE_FROM_EXPLICIT_INSTANTIATION __attribute__ ((__exclude_from_explicit_instantiation__)) 744#else 745 // Try to approximate the effect of exclude_from_explicit_instantiation 746 // (which is that entities are not assumed to be provided by explicit 747 // template instantiations in the dylib) by always inlining those entities. 748# define _LIBCPP_EXCLUDE_FROM_EXPLICIT_INSTANTIATION _LIBCPP_ALWAYS_INLINE 749#endif 750 751#ifndef _LIBCPP_HIDE_FROM_ABI_PER_TU 752# ifndef _LIBCPP_HIDE_FROM_ABI_PER_TU_BY_DEFAULT 753# define _LIBCPP_HIDE_FROM_ABI_PER_TU 0 754# else 755# define _LIBCPP_HIDE_FROM_ABI_PER_TU 1 756# endif 757#endif 758 759#ifndef _LIBCPP_HIDE_FROM_ABI 760# if _LIBCPP_HIDE_FROM_ABI_PER_TU 761# define _LIBCPP_HIDE_FROM_ABI _LIBCPP_HIDDEN _LIBCPP_INTERNAL_LINKAGE 762# else 763# define _LIBCPP_HIDE_FROM_ABI _LIBCPP_HIDDEN _LIBCPP_EXCLUDE_FROM_EXPLICIT_INSTANTIATION 764# endif 765#endif 766 767#ifdef _LIBCPP_BUILDING_LIBRARY 768# if _LIBCPP_ABI_VERSION > 1 769# define _LIBCPP_HIDE_FROM_ABI_AFTER_V1 _LIBCPP_HIDE_FROM_ABI 770# else 771# define _LIBCPP_HIDE_FROM_ABI_AFTER_V1 772# endif 773#else 774# define _LIBCPP_HIDE_FROM_ABI_AFTER_V1 _LIBCPP_HIDE_FROM_ABI 775#endif 776 777// Just so we can migrate to the new macros gradually. 778#define _LIBCPP_INLINE_VISIBILITY _LIBCPP_HIDE_FROM_ABI 779 780// Inline namespaces are available in Clang/GCC/MSVC regardless of C++ dialect. 781#define _LIBCPP_BEGIN_NAMESPACE_STD namespace std { inline namespace _LIBCPP_ABI_NAMESPACE { 782#define _LIBCPP_END_NAMESPACE_STD } } 783#define _VSTD std::_LIBCPP_ABI_NAMESPACE 784_LIBCPP_BEGIN_NAMESPACE_STD _LIBCPP_END_NAMESPACE_STD 785 786#if _LIBCPP_STD_VER >= 17 787#define _LIBCPP_BEGIN_NAMESPACE_FILESYSTEM \ 788 _LIBCPP_BEGIN_NAMESPACE_STD inline namespace __fs { namespace filesystem { 789#else 790#define _LIBCPP_BEGIN_NAMESPACE_FILESYSTEM \ 791 _LIBCPP_BEGIN_NAMESPACE_STD namespace __fs { namespace filesystem { 792#endif 793 794#define _LIBCPP_END_NAMESPACE_FILESYSTEM \ 795 _LIBCPP_END_NAMESPACE_STD } } 796 797#define _VSTD_FS _VSTD::__fs::filesystem 798 799#ifndef _LIBCPP_PREFERRED_OVERLOAD 800# if __has_attribute(__enable_if__) 801# define _LIBCPP_PREFERRED_OVERLOAD __attribute__ ((__enable_if__(true, ""))) 802# endif 803#endif 804 805#ifndef _LIBCPP_HAS_NO_NOEXCEPT 806# define _NOEXCEPT noexcept 807# define _NOEXCEPT_(x) noexcept(x) 808#else 809# define _NOEXCEPT throw() 810# define _NOEXCEPT_(x) 811#endif 812 813#ifdef _LIBCPP_HAS_NO_UNICODE_CHARS 814typedef unsigned short char16_t; 815typedef unsigned int char32_t; 816#endif // _LIBCPP_HAS_NO_UNICODE_CHARS 817 818#ifndef __SIZEOF_INT128__ 819#define _LIBCPP_HAS_NO_INT128 820#endif 821 822#ifdef _LIBCPP_CXX03_LANG 823# define static_assert(...) _Static_assert(__VA_ARGS__) 824# define decltype(...) __decltype(__VA_ARGS__) 825#endif // _LIBCPP_CXX03_LANG 826 827#ifdef _LIBCPP_CXX03_LANG 828# define _LIBCPP_CONSTEXPR 829#else 830# define _LIBCPP_CONSTEXPR constexpr 831#endif 832 833#ifndef __cpp_consteval 834# define _LIBCPP_CONSTEVAL _LIBCPP_CONSTEXPR 835#else 836# define _LIBCPP_CONSTEVAL consteval 837#endif 838 839#ifdef _LIBCPP_CXX03_LANG 840# define _LIBCPP_DEFAULT {} 841#else 842# define _LIBCPP_DEFAULT = default; 843#endif 844 845#ifdef _LIBCPP_CXX03_LANG 846# define _LIBCPP_EQUAL_DELETE 847#else 848# define _LIBCPP_EQUAL_DELETE = delete 849#endif 850 851#ifdef __GNUC__ 852# define _LIBCPP_NOALIAS __attribute__((__malloc__)) 853#else 854# define _LIBCPP_NOALIAS 855#endif 856 857#if __has_feature(cxx_explicit_conversions) || defined(__IBMCPP__) || \ 858 (!defined(_LIBCPP_CXX03_LANG) && defined(__GNUC__)) // All supported GCC versions 859# define _LIBCPP_EXPLICIT explicit 860#else 861# define _LIBCPP_EXPLICIT 862#endif 863 864#ifdef _LIBCPP_HAS_NO_STRONG_ENUMS 865# define _LIBCPP_DECLARE_STRONG_ENUM(x) struct _LIBCPP_TYPE_VIS x { enum __lx 866# define _LIBCPP_DECLARE_STRONG_ENUM_EPILOG(x) \ 867 __lx __v_; \ 868 _LIBCPP_INLINE_VISIBILITY x(__lx __v) : __v_(__v) {} \ 869 _LIBCPP_INLINE_VISIBILITY explicit x(int __v) : __v_(static_cast<__lx>(__v)) {} \ 870 _LIBCPP_INLINE_VISIBILITY operator int() const {return __v_;} \ 871 }; 872#else // _LIBCPP_HAS_NO_STRONG_ENUMS 873# define _LIBCPP_DECLARE_STRONG_ENUM(x) enum class _LIBCPP_ENUM_VIS x 874# define _LIBCPP_DECLARE_STRONG_ENUM_EPILOG(x) 875#endif // _LIBCPP_HAS_NO_STRONG_ENUMS 876 877// _LIBCPP_DEBUG potential values: 878// - undefined: No assertions. This is the default. 879// - 0: Basic assertions 880// - 1: Basic assertions + iterator validity checks. 881#if !defined(_LIBCPP_DEBUG) 882# define _LIBCPP_DEBUG_LEVEL 0 883#elif _LIBCPP_DEBUG == 0 884# define _LIBCPP_DEBUG_LEVEL 1 885#elif _LIBCPP_DEBUG == 1 886# define _LIBCPP_DEBUG_LEVEL 2 887#else 888# error Supported values for _LIBCPP_DEBUG are 0 and 1 889#endif 890 891// _LIBCPP_DEBUG_LEVEL is always defined to one of [0, 1, 2] at this point 892#if _LIBCPP_DEBUG_LEVEL >= 1 && !defined(_LIBCPP_DISABLE_EXTERN_TEMPLATE) 893# define _LIBCPP_EXTERN_TEMPLATE(...) 894#endif 895 896#ifdef _LIBCPP_DISABLE_EXTERN_TEMPLATE 897# define _LIBCPP_EXTERN_TEMPLATE(...) 898# define _LIBCPP_EXTERN_TEMPLATE_EVEN_IN_DEBUG_MODE(...) 899#endif 900 901#ifndef _LIBCPP_EXTERN_TEMPLATE 902#define _LIBCPP_EXTERN_TEMPLATE(...) extern template __VA_ARGS__; 903#endif 904 905// When the Debug mode is enabled, we disable extern declarations because we 906// don't want to use the functions compiled in the library, which might not 907// have had the debug mode enabled when built. However, some extern declarations 908// need to be used, because code correctness depends on it (several instances 909// in the <locale>). Those special declarations are declared with 910// _LIBCPP_EXTERN_TEMPLATE_EVEN_IN_DEBUG_MODE, which is enabled even 911// when the debug mode is enabled. 912#ifndef _LIBCPP_EXTERN_TEMPLATE_EVEN_IN_DEBUG_MODE 913# define _LIBCPP_EXTERN_TEMPLATE_EVEN_IN_DEBUG_MODE(...) extern template __VA_ARGS__; 914#endif 915 916#ifndef _LIBCPP_EXTERN_TEMPLATE_DEFINE 917#define _LIBCPP_EXTERN_TEMPLATE_DEFINE(...) template __VA_ARGS__; 918#endif 919 920#if defined(__APPLE__) || defined(__FreeBSD__) || defined(_LIBCPP_MSVCRT_LIKE) || \ 921 defined(__sun__) || defined(__NetBSD__) || defined(__CloudABI__) 922#define _LIBCPP_LOCALE__L_EXTENSIONS 1 923#endif 924 925#if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) 926// Most unix variants have catopen. These are the specific ones that don't. 927# if !defined(__BIONIC__) && !defined(_NEWLIB_VERSION) 928# define _LIBCPP_HAS_CATOPEN 1 929# endif 930#endif 931 932#ifdef __FreeBSD__ 933#define _DECLARE_C99_LDBL_MATH 1 934#endif 935 936// If we are getting operator new from the MSVC CRT, then allocation overloads 937// for align_val_t were added in 19.12, aka VS 2017 version 15.3. 938#if defined(_LIBCPP_MSVCRT) && defined(_MSC_VER) && _MSC_VER < 1912 939# define _LIBCPP_HAS_NO_LIBRARY_ALIGNED_ALLOCATION 940#elif defined(_LIBCPP_ABI_VCRUNTIME) && !defined(__cpp_aligned_new) 941 // We're deferring to Microsoft's STL to provide aligned new et al. We don't 942 // have it unless the language feature test macro is defined. 943# define _LIBCPP_HAS_NO_LIBRARY_ALIGNED_ALLOCATION 944#elif defined(__MVS__) 945# define _LIBCPP_HAS_NO_LIBRARY_ALIGNED_ALLOCATION 946#endif 947 948#if defined(__APPLE__) 949# if !defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && \ 950 defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) 951# define __MAC_OS_X_VERSION_MIN_REQUIRED __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ 952# endif 953#endif // defined(__APPLE__) 954 955#if !defined(_LIBCPP_HAS_NO_ALIGNED_ALLOCATION) && \ 956 (defined(_LIBCPP_HAS_NO_LIBRARY_ALIGNED_ALLOCATION) || \ 957 (!defined(__cpp_aligned_new) || __cpp_aligned_new < 201606)) 958# define _LIBCPP_HAS_NO_ALIGNED_ALLOCATION 959#endif 960 961#if defined(__APPLE__) || defined(__FreeBSD__) 962#define _LIBCPP_HAS_DEFAULTRUNELOCALE 963#endif 964 965#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__sun__) 966#define _LIBCPP_WCTYPE_IS_MASK 967#endif 968 969#if _LIBCPP_STD_VER <= 17 || !defined(__cpp_char8_t) 970#define _LIBCPP_NO_HAS_CHAR8_T 971#endif 972 973// Deprecation macros. 974// 975// Deprecations warnings are always enabled, except when users explicitly opt-out 976// by defining _LIBCPP_DISABLE_DEPRECATION_WARNINGS. 977#if !defined(_LIBCPP_DISABLE_DEPRECATION_WARNINGS) 978# if __has_attribute(deprecated) 979# define _LIBCPP_DEPRECATED __attribute__ ((deprecated)) 980# elif _LIBCPP_STD_VER > 11 981# define _LIBCPP_DEPRECATED [[deprecated]] 982# else 983# define _LIBCPP_DEPRECATED 984# endif 985#else 986# define _LIBCPP_DEPRECATED 987#endif 988 989#if !defined(_LIBCPP_CXX03_LANG) 990# define _LIBCPP_DEPRECATED_IN_CXX11 _LIBCPP_DEPRECATED 991#else 992# define _LIBCPP_DEPRECATED_IN_CXX11 993#endif 994 995#if _LIBCPP_STD_VER >= 14 996# define _LIBCPP_DEPRECATED_IN_CXX14 _LIBCPP_DEPRECATED 997#else 998# define _LIBCPP_DEPRECATED_IN_CXX14 999#endif 1000 1001#if _LIBCPP_STD_VER >= 17 1002# define _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_DEPRECATED 1003#else 1004# define _LIBCPP_DEPRECATED_IN_CXX17 1005#endif 1006 1007#if _LIBCPP_STD_VER > 17 1008# define _LIBCPP_DEPRECATED_IN_CXX20 _LIBCPP_DEPRECATED 1009#else 1010# define _LIBCPP_DEPRECATED_IN_CXX20 1011#endif 1012 1013#if !defined(_LIBCPP_NO_HAS_CHAR8_T) 1014# define _LIBCPP_DEPRECATED_WITH_CHAR8_T _LIBCPP_DEPRECATED 1015#else 1016# define _LIBCPP_DEPRECATED_WITH_CHAR8_T 1017#endif 1018 1019// Macros to enter and leave a state where deprecation warnings are suppressed. 1020#if !defined(_LIBCPP_SUPPRESS_DEPRECATED_PUSH) && \ 1021 (defined(_LIBCPP_COMPILER_CLANG) || defined(_LIBCPP_COMPILER_GCC)) 1022# define _LIBCPP_SUPPRESS_DEPRECATED_PUSH \ 1023 _Pragma("GCC diagnostic push") \ 1024 _Pragma("GCC diagnostic ignored \"-Wdeprecated\"") 1025# define _LIBCPP_SUPPRESS_DEPRECATED_POP \ 1026 _Pragma("GCC diagnostic pop") 1027#endif 1028#if !defined(_LIBCPP_SUPPRESS_DEPRECATED_PUSH) 1029# define _LIBCPP_SUPPRESS_DEPRECATED_PUSH 1030# define _LIBCPP_SUPPRESS_DEPRECATED_POP 1031#endif 1032 1033#if _LIBCPP_STD_VER <= 11 1034# define _LIBCPP_EXPLICIT_AFTER_CXX11 1035#else 1036# define _LIBCPP_EXPLICIT_AFTER_CXX11 explicit 1037#endif 1038 1039#if _LIBCPP_STD_VER > 11 && !defined(_LIBCPP_HAS_NO_CXX14_CONSTEXPR) 1040# define _LIBCPP_CONSTEXPR_AFTER_CXX11 constexpr 1041#else 1042# define _LIBCPP_CONSTEXPR_AFTER_CXX11 1043#endif 1044 1045#if _LIBCPP_STD_VER > 14 && !defined(_LIBCPP_HAS_NO_CXX14_CONSTEXPR) 1046# define _LIBCPP_CONSTEXPR_AFTER_CXX14 constexpr 1047#else 1048# define _LIBCPP_CONSTEXPR_AFTER_CXX14 1049#endif 1050 1051#if _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_CXX14_CONSTEXPR) 1052# define _LIBCPP_CONSTEXPR_AFTER_CXX17 constexpr 1053#else 1054# define _LIBCPP_CONSTEXPR_AFTER_CXX17 1055#endif 1056 1057// The _LIBCPP_NODISCARD_ATTRIBUTE should only be used to define other 1058// NODISCARD macros to the correct attribute. 1059#if __has_cpp_attribute(nodiscard) || defined(_LIBCPP_COMPILER_MSVC) 1060# define _LIBCPP_NODISCARD_ATTRIBUTE [[nodiscard]] 1061#elif defined(_LIBCPP_COMPILER_CLANG) && !defined(_LIBCPP_CXX03_LANG) 1062# define _LIBCPP_NODISCARD_ATTRIBUTE [[clang::warn_unused_result]] 1063#else 1064// We can't use GCC's [[gnu::warn_unused_result]] and 1065// __attribute__((warn_unused_result)), because GCC does not silence them via 1066// (void) cast. 1067# define _LIBCPP_NODISCARD_ATTRIBUTE 1068#endif 1069 1070// _LIBCPP_NODISCARD_EXT may be used to apply [[nodiscard]] to entities not 1071// specified as such as an extension. 1072#if defined(_LIBCPP_ENABLE_NODISCARD) && !defined(_LIBCPP_DISABLE_NODISCARD_EXT) 1073# define _LIBCPP_NODISCARD_EXT _LIBCPP_NODISCARD_ATTRIBUTE 1074#else 1075# define _LIBCPP_NODISCARD_EXT 1076#endif 1077 1078#if !defined(_LIBCPP_DISABLE_NODISCARD_AFTER_CXX17) && \ 1079 (_LIBCPP_STD_VER > 17 || defined(_LIBCPP_ENABLE_NODISCARD)) 1080# define _LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_NODISCARD_ATTRIBUTE 1081#else 1082# define _LIBCPP_NODISCARD_AFTER_CXX17 1083#endif 1084 1085#if _LIBCPP_STD_VER > 14 && defined(__cpp_inline_variables) && (__cpp_inline_variables >= 201606L) 1086# define _LIBCPP_INLINE_VAR inline 1087#else 1088# define _LIBCPP_INLINE_VAR 1089#endif 1090 1091#ifndef _LIBCPP_CONSTEXPR_IF_NODEBUG 1092#if defined(_LIBCPP_DEBUG) || defined(_LIBCPP_HAS_NO_CXX14_CONSTEXPR) 1093#define _LIBCPP_CONSTEXPR_IF_NODEBUG 1094#else 1095#define _LIBCPP_CONSTEXPR_IF_NODEBUG constexpr 1096#endif 1097#endif 1098 1099#if __has_attribute(no_destroy) 1100# define _LIBCPP_NO_DESTROY __attribute__((__no_destroy__)) 1101#else 1102# define _LIBCPP_NO_DESTROY 1103#endif 1104 1105#ifndef _LIBCPP_HAS_NO_ASAN 1106extern "C" _LIBCPP_FUNC_VIS void __sanitizer_annotate_contiguous_container( 1107 const void *, const void *, const void *, const void *); 1108#endif 1109 1110// Try to find out if RTTI is disabled. 1111#if defined(_LIBCPP_COMPILER_CLANG) && !__has_feature(cxx_rtti) 1112# define _LIBCPP_NO_RTTI 1113#elif defined(__GNUC__) && !defined(__GXX_RTTI) 1114# define _LIBCPP_NO_RTTI 1115#elif defined(_LIBCPP_COMPILER_MSVC) && !defined(_CPPRTTI) 1116# define _LIBCPP_NO_RTTI 1117#endif 1118 1119#ifndef _LIBCPP_WEAK 1120#define _LIBCPP_WEAK __attribute__((__weak__)) 1121#endif 1122 1123// Thread API 1124#if !defined(_LIBCPP_HAS_NO_THREADS) && \ 1125 !defined(_LIBCPP_HAS_THREAD_API_PTHREAD) && \ 1126 !defined(_LIBCPP_HAS_THREAD_API_WIN32) && \ 1127 !defined(_LIBCPP_HAS_THREAD_API_EXTERNAL) 1128# if defined(__FreeBSD__) || \ 1129 defined(__wasi__) || \ 1130 defined(__NetBSD__) || \ 1131 defined(__OpenBSD__) || \ 1132 defined(__NuttX__) || \ 1133 defined(__linux__) || \ 1134 defined(__GNU__) || \ 1135 defined(__APPLE__) || \ 1136 defined(__CloudABI__) || \ 1137 defined(__sun__) || \ 1138 defined(__MVS__) || \ 1139 (defined(__MINGW32__) && __has_include(<pthread.h>)) 1140# define _LIBCPP_HAS_THREAD_API_PTHREAD 1141# elif defined(__Fuchsia__) 1142 // TODO(44575): Switch to C11 thread API when possible. 1143# define _LIBCPP_HAS_THREAD_API_PTHREAD 1144# elif defined(_LIBCPP_WIN32API) 1145# define _LIBCPP_HAS_THREAD_API_WIN32 1146# else 1147# error "No thread API" 1148# endif // _LIBCPP_HAS_THREAD_API 1149#endif // _LIBCPP_HAS_NO_THREADS 1150 1151#if defined(_LIBCPP_HAS_THREAD_API_PTHREAD) 1152#if defined(__ANDROID__) && __ANDROID_API__ >= 30 1153#define _LIBCPP_HAS_COND_CLOCKWAIT 1154#elif defined(_LIBCPP_GLIBC_PREREQ) 1155#if _LIBCPP_GLIBC_PREREQ(2, 30) 1156#define _LIBCPP_HAS_COND_CLOCKWAIT 1157#endif 1158#endif 1159#endif 1160 1161#if defined(_LIBCPP_HAS_NO_THREADS) && defined(_LIBCPP_HAS_THREAD_API_PTHREAD) 1162#error _LIBCPP_HAS_THREAD_API_PTHREAD may only be defined when \ 1163 _LIBCPP_HAS_NO_THREADS is not defined. 1164#endif 1165 1166#if defined(_LIBCPP_HAS_NO_THREADS) && defined(_LIBCPP_HAS_THREAD_API_EXTERNAL) 1167#error _LIBCPP_HAS_THREAD_API_EXTERNAL may not be defined when \ 1168 _LIBCPP_HAS_NO_THREADS is defined. 1169#endif 1170 1171#if defined(_LIBCPP_HAS_NO_MONOTONIC_CLOCK) && !defined(_LIBCPP_HAS_NO_THREADS) 1172#error _LIBCPP_HAS_NO_MONOTONIC_CLOCK may only be defined when \ 1173 _LIBCPP_HAS_NO_THREADS is defined. 1174#endif 1175 1176#if !defined(_LIBCPP_HAS_NO_THREADS) && !defined(__STDCPP_THREADS__) 1177#define __STDCPP_THREADS__ 1 1178#endif 1179 1180// The glibc and Bionic implementation of pthreads implements 1181// pthread_mutex_destroy as nop for regular mutexes. Additionally, Win32 1182// mutexes have no destroy mechanism. 1183// 1184// This optimization can't be performed on Apple platforms, where 1185// pthread_mutex_destroy can allow the kernel to release resources. 1186// See https://llvm.org/D64298 for details. 1187// 1188// TODO(EricWF): Enable this optimization on Bionic after speaking to their 1189// respective stakeholders. 1190#if (defined(_LIBCPP_HAS_THREAD_API_PTHREAD) && defined(__GLIBC__)) \ 1191 || (defined(_LIBCPP_HAS_THREAD_API_C11) && defined(__Fuchsia__)) \ 1192 || defined(_LIBCPP_HAS_THREAD_API_WIN32) 1193# define _LIBCPP_HAS_TRIVIAL_MUTEX_DESTRUCTION 1194#endif 1195 1196// Destroying a condvar is a nop on Windows. 1197// 1198// This optimization can't be performed on Apple platforms, where 1199// pthread_cond_destroy can allow the kernel to release resources. 1200// See https://llvm.org/D64298 for details. 1201// 1202// TODO(EricWF): This is potentially true for some pthread implementations 1203// as well. 1204#if (defined(_LIBCPP_HAS_THREAD_API_C11) && defined(__Fuchsia__)) || \ 1205 defined(_LIBCPP_HAS_THREAD_API_WIN32) 1206# define _LIBCPP_HAS_TRIVIAL_CONDVAR_DESTRUCTION 1207#endif 1208 1209// Systems that use capability-based security (FreeBSD with Capsicum, 1210// Nuxi CloudABI) may only provide local filesystem access (using *at()). 1211// Functions like open(), rename(), unlink() and stat() should not be 1212// used, as they attempt to access the global filesystem namespace. 1213#ifdef __CloudABI__ 1214#define _LIBCPP_HAS_NO_GLOBAL_FILESYSTEM_NAMESPACE 1215#endif 1216 1217// CloudABI is intended for running networked services. Processes do not 1218// have standard input and output channels. 1219#ifdef __CloudABI__ 1220#define _LIBCPP_HAS_NO_STDIN 1221#define _LIBCPP_HAS_NO_STDOUT 1222#endif 1223 1224// Some systems do not provide gets() in their C library, for security reasons. 1225#ifndef _LIBCPP_C_HAS_NO_GETS 1226# if defined(_LIBCPP_MSVCRT) || \ 1227 (defined(__FreeBSD_version) && __FreeBSD_version >= 1300043) || \ 1228 defined(__OpenBSD__) 1229# define _LIBCPP_C_HAS_NO_GETS 1230# endif 1231#endif 1232 1233#if defined(__BIONIC__) || defined(__CloudABI__) || defined(__NuttX__) || \ 1234 defined(__Fuchsia__) || defined(__wasi__) || defined(_LIBCPP_HAS_MUSL_LIBC) || \ 1235 defined(__MVS__) || defined(__OpenBSD__) 1236#define _LIBCPP_PROVIDES_DEFAULT_RUNE_TABLE 1237#endif 1238 1239// Thread-unsafe functions such as strtok() and localtime() 1240// are not available. 1241#ifdef __CloudABI__ 1242#define _LIBCPP_HAS_NO_THREAD_UNSAFE_C_FUNCTIONS 1243#endif 1244 1245#if __has_feature(cxx_atomic) || __has_extension(c_atomic) || __has_keyword(_Atomic) 1246# define _LIBCPP_HAS_C_ATOMIC_IMP 1247#elif defined(_LIBCPP_COMPILER_GCC) 1248# define _LIBCPP_HAS_GCC_ATOMIC_IMP 1249#endif 1250 1251#if (!defined(_LIBCPP_HAS_C_ATOMIC_IMP) && \ 1252 !defined(_LIBCPP_HAS_GCC_ATOMIC_IMP) && \ 1253 !defined(_LIBCPP_HAS_EXTERNAL_ATOMIC_IMP)) \ 1254 || defined(_LIBCPP_HAS_NO_THREADS) 1255# define _LIBCPP_HAS_NO_ATOMIC_HEADER 1256#else 1257# ifndef _LIBCPP_ATOMIC_FLAG_TYPE 1258# define _LIBCPP_ATOMIC_FLAG_TYPE bool 1259# endif 1260# ifdef _LIBCPP_FREESTANDING 1261# define _LIBCPP_ATOMIC_ONLY_USE_BUILTINS 1262# endif 1263#endif 1264 1265#ifndef _LIBCPP_DISABLE_UBSAN_UNSIGNED_INTEGER_CHECK 1266#define _LIBCPP_DISABLE_UBSAN_UNSIGNED_INTEGER_CHECK 1267#endif 1268 1269#if defined(_LIBCPP_ENABLE_THREAD_SAFETY_ANNOTATIONS) 1270# if defined(__clang__) && __has_attribute(acquire_capability) 1271// Work around the attribute handling in clang. When both __declspec and 1272// __attribute__ are present, the processing goes awry preventing the definition 1273// of the types. 1274# if !defined(_LIBCPP_OBJECT_FORMAT_COFF) 1275# define _LIBCPP_HAS_THREAD_SAFETY_ANNOTATIONS 1276# endif 1277# endif 1278#endif 1279 1280#ifndef _LIBCPP_THREAD_SAFETY_ANNOTATION 1281# ifdef _LIBCPP_HAS_THREAD_SAFETY_ANNOTATIONS 1282# define _LIBCPP_THREAD_SAFETY_ANNOTATION(x) __attribute__((x)) 1283# else 1284# define _LIBCPP_THREAD_SAFETY_ANNOTATION(x) 1285# endif 1286#endif // _LIBCPP_THREAD_SAFETY_ANNOTATION 1287 1288#if __has_attribute(require_constant_initialization) 1289# define _LIBCPP_SAFE_STATIC __attribute__((__require_constant_initialization__)) 1290#else 1291# define _LIBCPP_SAFE_STATIC 1292#endif 1293 1294#if !__has_builtin(__builtin_addressof) && _GNUC_VER < 700 1295#define _LIBCPP_HAS_NO_BUILTIN_ADDRESSOF 1296#endif 1297 1298#if !__has_builtin(__builtin_is_constant_evaluated) && _GNUC_VER < 900 1299#define _LIBCPP_HAS_NO_BUILTIN_IS_CONSTANT_EVALUATED 1300#endif 1301 1302#if !defined(_LIBCPP_HAS_NO_OFF_T_FUNCTIONS) 1303# if defined(_LIBCPP_MSVCRT) || defined(_NEWLIB_VERSION) 1304# define _LIBCPP_HAS_NO_OFF_T_FUNCTIONS 1305# endif 1306#endif 1307 1308#if __has_attribute(diagnose_if) && !defined(_LIBCPP_DISABLE_ADDITIONAL_DIAGNOSTICS) 1309# define _LIBCPP_DIAGNOSE_WARNING(...) \ 1310 __attribute__((diagnose_if(__VA_ARGS__, "warning"))) 1311# define _LIBCPP_DIAGNOSE_ERROR(...) \ 1312 __attribute__((diagnose_if(__VA_ARGS__, "error"))) 1313#else 1314# define _LIBCPP_DIAGNOSE_WARNING(...) 1315# define _LIBCPP_DIAGNOSE_ERROR(...) 1316#endif 1317 1318// Use a function like macro to imply that it must be followed by a semicolon 1319#if __cplusplus > 201402L && __has_cpp_attribute(fallthrough) 1320# define _LIBCPP_FALLTHROUGH() [[fallthrough]] 1321#elif __has_cpp_attribute(clang::fallthrough) 1322# define _LIBCPP_FALLTHROUGH() [[clang::fallthrough]] 1323#elif __has_attribute(fallthrough) || _GNUC_VER >= 700 1324# define _LIBCPP_FALLTHROUGH() __attribute__((__fallthrough__)) 1325#else 1326# define _LIBCPP_FALLTHROUGH() ((void)0) 1327#endif 1328 1329#if __has_attribute(__nodebug__) 1330#define _LIBCPP_NODEBUG __attribute__((__nodebug__)) 1331#else 1332#define _LIBCPP_NODEBUG 1333#endif 1334 1335#ifndef _LIBCPP_NODEBUG_TYPE 1336#if __has_attribute(__nodebug__) && \ 1337 (defined(_LIBCPP_CLANG_VER) && _LIBCPP_CLANG_VER >= 900) 1338#define _LIBCPP_NODEBUG_TYPE __attribute__((nodebug)) 1339#else 1340#define _LIBCPP_NODEBUG_TYPE 1341#endif 1342#endif // !defined(_LIBCPP_NODEBUG_TYPE) 1343 1344#if __has_attribute(__preferred_name__) 1345#define _LIBCPP_PREFERRED_NAME(x) __attribute__((__preferred_name__(x))) 1346#else 1347#define _LIBCPP_PREFERRED_NAME(x) 1348#endif 1349 1350#if defined(_LIBCPP_ABI_MICROSOFT) && \ 1351 (defined(_LIBCPP_COMPILER_MSVC) || __has_declspec_attribute(empty_bases)) 1352# define _LIBCPP_DECLSPEC_EMPTY_BASES __declspec(empty_bases) 1353#else 1354# define _LIBCPP_DECLSPEC_EMPTY_BASES 1355#endif 1356 1357#if defined(_LIBCPP_ENABLE_CXX17_REMOVED_FEATURES) 1358#define _LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR 1359#define _LIBCPP_ENABLE_CXX17_REMOVED_UNEXPECTED_FUNCTIONS 1360#define _LIBCPP_ENABLE_CXX17_REMOVED_RANDOM_SHUFFLE 1361#define _LIBCPP_ENABLE_CXX17_REMOVED_BINDERS 1362#endif // _LIBCPP_ENABLE_CXX17_REMOVED_FEATURES 1363 1364#if !defined(__cpp_deduction_guides) || __cpp_deduction_guides < 201611 1365#define _LIBCPP_HAS_NO_DEDUCTION_GUIDES 1366#endif 1367 1368#if !__has_keyword(__is_aggregate) && (_GNUC_VER_NEW < 7001) 1369#define _LIBCPP_HAS_NO_IS_AGGREGATE 1370#endif 1371 1372#if !defined(__cpp_coroutines) || __cpp_coroutines < 201703L 1373#define _LIBCPP_HAS_NO_COROUTINES 1374#endif 1375 1376#if !defined(__cpp_impl_three_way_comparison) || __cpp_impl_three_way_comparison < 201907L 1377#define _LIBCPP_HAS_NO_SPACESHIP_OPERATOR 1378#endif 1379 1380#if defined(_LIBCPP_COMPILER_IBM) 1381#define _LIBCPP_HAS_NO_PRAGMA_PUSH_POP_MACRO 1382#endif 1383 1384#if defined(_LIBCPP_HAS_NO_PRAGMA_PUSH_POP_MACRO) 1385# define _LIBCPP_PUSH_MACROS 1386# define _LIBCPP_POP_MACROS 1387#else 1388 // Don't warn about macro conflicts when we can restore them at the 1389 // end of the header. 1390# ifndef _LIBCPP_DISABLE_MACRO_CONFLICT_WARNINGS 1391# define _LIBCPP_DISABLE_MACRO_CONFLICT_WARNINGS 1392# endif 1393# if defined(_LIBCPP_COMPILER_MSVC) 1394# define _LIBCPP_PUSH_MACROS \ 1395 __pragma(push_macro("min")) \ 1396 __pragma(push_macro("max")) 1397# define _LIBCPP_POP_MACROS \ 1398 __pragma(pop_macro("min")) \ 1399 __pragma(pop_macro("max")) 1400# else 1401# define _LIBCPP_PUSH_MACROS \ 1402 _Pragma("push_macro(\"min\")") \ 1403 _Pragma("push_macro(\"max\")") 1404# define _LIBCPP_POP_MACROS \ 1405 _Pragma("pop_macro(\"min\")") \ 1406 _Pragma("pop_macro(\"max\")") 1407# endif 1408#endif // defined(_LIBCPP_HAS_NO_PRAGMA_PUSH_POP_MACRO) 1409 1410#ifndef _LIBCPP_NO_AUTO_LINK 1411# if defined(_LIBCPP_ABI_MICROSOFT) && !defined(_LIBCPP_BUILDING_LIBRARY) 1412# if defined(_DLL) 1413# pragma comment(lib, "c++.lib") 1414# else 1415# pragma comment(lib, "libc++.lib") 1416# endif 1417# endif // defined(_LIBCPP_ABI_MICROSOFT) && !defined(_LIBCPP_BUILDING_LIBRARY) 1418#endif // _LIBCPP_NO_AUTO_LINK 1419 1420#define _LIBCPP_UNUSED_VAR(x) ((void)(x)) 1421 1422// Configures the fopen close-on-exec mode character, if any. This string will 1423// be appended to any mode string used by fstream for fopen/fdopen. 1424// 1425// Not all platforms support this, but it helps avoid fd-leaks on platforms that 1426// do. 1427#if defined(__BIONIC__) 1428# define _LIBCPP_FOPEN_CLOEXEC_MODE "e" 1429#else 1430# define _LIBCPP_FOPEN_CLOEXEC_MODE 1431#endif 1432 1433#ifdef _LIBCPP_COMPILER_HAS_BUILTIN_CONSTANT_P 1434#define _LIBCPP_BUILTIN_CONSTANT_P(x) __builtin_constant_p(x) 1435#else 1436#define _LIBCPP_BUILTIN_CONSTANT_P(x) false 1437#endif 1438 1439// Support for _FILE_OFFSET_BITS=64 landed gradually in Android, so the full set 1440// of functions used in cstdio may not be available for low API levels when 1441// using 64-bit file offsets on LP32. 1442#if defined(__BIONIC__) && defined(__USE_FILE_OFFSET64) && __ANDROID_API__ < 24 1443#define _LIBCPP_HAS_NO_FGETPOS_FSETPOS 1444#endif 1445 1446#if __has_attribute(init_priority) 1447# define _LIBCPP_INIT_PRIORITY_MAX __attribute__((init_priority(101))) 1448#else 1449# define _LIBCPP_INIT_PRIORITY_MAX 1450#endif 1451 1452#endif // __cplusplus 1453 1454#endif // _LIBCPP_CONFIG 1455