Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | // -*- C++ -*- |
Louis Dionne | 9bd9388 | 2021-11-17 16:25:01 -0500 | [diff] [blame] | 2 | //===----------------------------------------------------------------------===// |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3 | // |
Chandler Carruth | d201210 | 2019-01-19 10:56:40 +0000 | [diff] [blame] | 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 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #ifndef _LIBCPP_CONFIG |
| 11 | #define _LIBCPP_CONFIG |
| 12 | |
Louis Dionne | 94870d8 | 2020-06-26 12:08:59 -0400 | [diff] [blame] | 13 | #include <__config_site> |
| 14 | |
Eric Fiselier | a80af82 | 2015-11-06 06:30:12 +0000 | [diff] [blame] | 15 | #if defined(_MSC_VER) && !defined(__clang__) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 16 | # if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) |
| 17 | # define _LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER |
| 18 | # endif |
Saleem Abdulrasool | f154c77 | 2017-01-29 18:16:33 +0000 | [diff] [blame] | 19 | #endif |
Eric Fiselier | a80af82 | 2015-11-06 06:30:12 +0000 | [diff] [blame] | 20 | |
| 21 | #ifndef _LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER |
Arthur O'Dwyer | 6eeaa00 | 2022-02-01 20:16:40 -0500 | [diff] [blame] | 22 | # pragma GCC system_header |
Howard Hinnant | aaaa52b | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 23 | #endif |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 24 | |
Eric Fiselier | a80af82 | 2015-11-06 06:30:12 +0000 | [diff] [blame] | 25 | #ifdef __cplusplus |
| 26 | |
Tom Stellard | 688b1e2 | 2022-02-01 23:29:29 -0800 | [diff] [blame] | 27 | #define _LIBCPP_VERSION 15000 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 28 | |
Nikolas Klauser | a66d4db | 2022-02-04 14:28:19 +0100 | [diff] [blame] | 29 | #ifdef _LIBCPP_ABI_UNSTABLE |
| 30 | # define _LIBCPP_ABI_VERSION 2 |
| 31 | #endif |
| 32 | |
Eric Fiselier | fa1f1c1 | 2019-06-26 00:05:14 +0000 | [diff] [blame] | 33 | #ifndef _LIBCPP_ABI_VERSION |
| 34 | # define _LIBCPP_ABI_VERSION 1 |
| 35 | #endif |
| 36 | |
hyd-dev | b987b45 | 2020-09-02 12:22:29 -0400 | [diff] [blame] | 37 | #if __STDC_HOSTED__ == 0 |
Davide Italiano | 011f80a | 2019-03-05 18:40:49 +0000 | [diff] [blame] | 38 | # define _LIBCPP_FREESTANDING |
| 39 | #endif |
| 40 | |
Eric Fiselier | 02cea5e | 2018-07-27 03:07:09 +0000 | [diff] [blame] | 41 | #ifndef _LIBCPP_STD_VER |
| 42 | # if __cplusplus <= 201103L |
| 43 | # define _LIBCPP_STD_VER 11 |
| 44 | # elif __cplusplus <= 201402L |
| 45 | # define _LIBCPP_STD_VER 14 |
| 46 | # elif __cplusplus <= 201703L |
| 47 | # define _LIBCPP_STD_VER 17 |
Marek Kurdej | 24b4c51 | 2021-01-07 12:29:04 +0100 | [diff] [blame] | 48 | # elif __cplusplus <= 202002L |
| 49 | # define _LIBCPP_STD_VER 20 |
Eric Fiselier | 02cea5e | 2018-07-27 03:07:09 +0000 | [diff] [blame] | 50 | # else |
Nikolas Klauser | a66d4db | 2022-02-04 14:28:19 +0100 | [diff] [blame] | 51 | # define _LIBCPP_STD_VER 22 // current year, or date of c++2b ratification |
Eric Fiselier | 02cea5e | 2018-07-27 03:07:09 +0000 | [diff] [blame] | 52 | # endif |
Louis Dionne | 2b1ceaa | 2021-04-20 12:03:32 -0400 | [diff] [blame] | 53 | #endif // _LIBCPP_STD_VER |
Eric Fiselier | 02cea5e | 2018-07-27 03:07:09 +0000 | [diff] [blame] | 54 | |
Shoaib Meenai | 5c2d401 | 2017-04-12 19:56:37 +0000 | [diff] [blame] | 55 | #if defined(__ELF__) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 56 | # define _LIBCPP_OBJECT_FORMAT_ELF 1 |
Shoaib Meenai | 5c2d401 | 2017-04-12 19:56:37 +0000 | [diff] [blame] | 57 | #elif defined(__MACH__) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 58 | # define _LIBCPP_OBJECT_FORMAT_MACHO 1 |
Shoaib Meenai | 5c2d401 | 2017-04-12 19:56:37 +0000 | [diff] [blame] | 59 | #elif defined(_WIN32) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 60 | # define _LIBCPP_OBJECT_FORMAT_COFF 1 |
Sam Clegg | fe39b0b | 2017-12-16 18:59:50 +0000 | [diff] [blame] | 61 | #elif defined(__wasm__) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 62 | # define _LIBCPP_OBJECT_FORMAT_WASM 1 |
Shoaib Meenai | 5c2d401 | 2017-04-12 19:56:37 +0000 | [diff] [blame] | 63 | #else |
Louis Dionne | 64dcd86 | 2020-11-17 13:17:40 -0500 | [diff] [blame] | 64 | // ... add new file formats here ... |
Shoaib Meenai | 5c2d401 | 2017-04-12 19:56:37 +0000 | [diff] [blame] | 65 | #endif |
| 66 | |
Nikolas Klauser | a66d4db | 2022-02-04 14:28:19 +0100 | [diff] [blame] | 67 | #if _LIBCPP_ABI_VERSION >= 2 |
Shoaib Meenai | 4bdf437 | 2016-09-12 20:14:44 +0000 | [diff] [blame] | 68 | // Change short string representation so that string data starts at offset 0, |
Evgeniy Stepanov | c299de2 | 2015-11-06 22:02:29 +0000 | [diff] [blame] | 69 | // improving its alignment in some cases. |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 70 | # define _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT |
Evgeniy Stepanov | c299de2 | 2015-11-06 22:02:29 +0000 | [diff] [blame] | 71 | // Fix deque iterator type in order to support incomplete types. |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 72 | # define _LIBCPP_ABI_INCOMPLETE_TYPES_IN_DEQUE |
Nico Weber | d31c3ab | 2017-07-22 15:16:42 +0000 | [diff] [blame] | 73 | // Fix undefined behavior in how std::list stores its linked nodes. |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 74 | # define _LIBCPP_ABI_LIST_REMOVE_NODE_POINTER_UB |
Eric Fiselier | 70f5f87 | 2016-07-19 17:56:20 +0000 | [diff] [blame] | 75 | // Fix undefined behavior in how __tree stores its end and parent nodes. |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 76 | # define _LIBCPP_ABI_TREE_REMOVE_NODE_POINTER_UB |
Nico Weber | d31c3ab | 2017-07-22 15:16:42 +0000 | [diff] [blame] | 77 | // Fix undefined behavior in how __hash_table stores its pointer types. |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 78 | # define _LIBCPP_ABI_FIX_UNORDERED_NODE_POINTER_UB |
| 79 | # define _LIBCPP_ABI_FORWARD_LIST_REMOVE_NODE_POINTER_UB |
| 80 | # define _LIBCPP_ABI_FIX_UNORDERED_CONTAINER_SIZE_TYPE |
Shoaib Meenai | c130eaf | 2017-03-28 19:33:31 +0000 | [diff] [blame] | 81 | // Define a key function for `bad_function_call` in the library, to centralize |
| 82 | // its vtable and typeinfo to libc++ rather than having all other libraries |
| 83 | // using that class define their own copies. |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 84 | # define _LIBCPP_ABI_BAD_FUNCTION_CALL_KEY_FUNCTION |
Konstantin Varlamov | d96c2d2 | 2021-11-15 12:40:55 -0800 | [diff] [blame] | 85 | // Override the default return value of exception::what() for |
| 86 | // bad_function_call::what() with a string that is specific to |
| 87 | // bad_function_call (see http://wg21.link/LWG2233). This is an ABI break |
| 88 | // because it changes the vtable layout of bad_function_call. |
| 89 | # define _LIBCPP_ABI_BAD_FUNCTION_CALL_GOOD_WHAT_MESSAGE |
Aditya Kumar | aa86618 | 2017-06-14 23:17:45 +0000 | [diff] [blame] | 90 | // Enable optimized version of __do_get_(un)signed which avoids redundant copies. |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 91 | # define _LIBCPP_ABI_OPTIMIZED_LOCALE_NUM_GET |
Arthur O'Dwyer | f5486c8 | 2021-05-25 14:34:18 -0400 | [diff] [blame] | 92 | // In C++20 and later, don't derive std::plus from std::binary_function, |
| 93 | // nor std::negate from std::unary_function. |
| 94 | # define _LIBCPP_ABI_NO_BINDER_BASES |
Louis Dionne | 8762e2b | 2021-05-25 18:15:58 -0400 | [diff] [blame] | 95 | // Give reverse_iterator<T> one data member of type T, not two. |
| 96 | // Also, in C++17 and later, don't derive iterator types from std::iterator. |
| 97 | # define _LIBCPP_ABI_NO_ITERATOR_BASES |
Eric Fiselier | caccc7b | 2017-11-19 04:19:44 +0000 | [diff] [blame] | 98 | // Use the smallest possible integer type to represent the index of the variant. |
Louis Dionne | a8548af | 2019-03-20 17:05:52 +0000 | [diff] [blame] | 99 | // Previously libc++ used "unsigned int" exclusively. |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 100 | # define _LIBCPP_ABI_VARIANT_INDEX_TYPE_OPTIMIZATION |
Eric Fiselier | f2e6436 | 2018-12-11 00:14:34 +0000 | [diff] [blame] | 101 | // Unstable attempt to provide a more optimized std::function |
| 102 | # define _LIBCPP_ABI_OPTIMIZED_FUNCTION |
Marshall Clow | 88a3087 | 2019-03-28 17:30:23 +0000 | [diff] [blame] | 103 | // All the regex constants must be distinct and nonzero. |
| 104 | # define _LIBCPP_ABI_REGEX_CONSTANTS_NONZERO |
Arthur O'Dwyer | 0a5557f | 2021-04-20 22:08:00 -0400 | [diff] [blame] | 105 | // Use raw pointers, not wrapped ones, for std::span's iterator type. |
| 106 | # define _LIBCPP_ABI_SPAN_POINTER_ITERATORS |
Martijn Vels | b17d580 | 2020-03-02 10:11:35 -0500 | [diff] [blame] | 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 |
Vy Nguyen | e369bd9 | 2020-07-13 12:34:37 -0400 | [diff] [blame] | 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 |
Louis Dionne | 1eb0c9d | 2021-12-21 11:49:04 -0500 | [diff] [blame] | 114 | // std::random_device holds some state when it uses an implementation that gets |
| 115 | // entropy from a file (see _LIBCPP_USING_DEV_RANDOM). When switching from this |
| 116 | // implementation to another one on a platform that has already shipped |
| 117 | // std::random_device, one needs to retain the same object layout to remain ABI |
| 118 | // compatible. This switch removes these workarounds for platforms that don't care |
| 119 | // about ABI compatibility. |
| 120 | # define _LIBCPP_ABI_NO_RANDOM_DEVICE_COMPATIBILITY_LAYOUT |
Nikolas Klauser | f89bb93 | 2022-01-24 19:44:34 +0100 | [diff] [blame] | 121 | // Remove basic_string common base |
Nikolas Klauser | a2453e8 | 2022-02-02 20:15:40 +0100 | [diff] [blame] | 122 | # define _LIBCPP_ABI_DO_NOT_EXPORT_BASIC_STRING_COMMON |
Nikolas Klauser | 129974f | 2022-02-03 23:09:37 +0100 | [diff] [blame] | 123 | // Remove vector base class |
| 124 | # define _LIBCPP_ABI_DO_NOT_EXPORT_VECTOR_BASE_COMMON |
Eric Fiselier | 08f7fe8 | 2016-07-18 01:58:37 +0000 | [diff] [blame] | 125 | #elif _LIBCPP_ABI_VERSION == 1 |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 126 | # if !defined(_LIBCPP_OBJECT_FORMAT_COFF) |
Eric Fiselier | 9884857 | 2017-01-17 03:16:26 +0000 | [diff] [blame] | 127 | // Enable compiling copies of now inline methods into the dylib to support |
Shoaib Meenai | 5c2d401 | 2017-04-12 19:56:37 +0000 | [diff] [blame] | 128 | // applications compiled against older libraries. This is unnecessary with |
| 129 | // COFF dllexport semantics, since dllexport forces a non-inline definition |
| 130 | // of inline functions to be emitted anyway. Our own non-inline copy would |
| 131 | // conflict with the dllexport-emitted copy, so we disable it. |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 132 | # define _LIBCPP_DEPRECATED_ABI_LEGACY_LIBRARY_DEFINITIONS_FOR_INLINE_FUNCTIONS |
| 133 | # endif |
Eric Fiselier | 08f7fe8 | 2016-07-18 01:58:37 +0000 | [diff] [blame] | 134 | // Feature macros for disabling pre ABI v1 features. All of these options |
| 135 | // are deprecated. |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 136 | # if defined(__FreeBSD__) |
| 137 | # define _LIBCPP_DEPRECATED_ABI_DISABLE_PAIR_TRIVIAL_COPY_CTOR |
| 138 | # endif |
Eric Fiselier | 08f7fe8 | 2016-07-18 01:58:37 +0000 | [diff] [blame] | 139 | #endif |
| 140 | |
Nikolas Klauser | a66d4db | 2022-02-04 14:28:19 +0100 | [diff] [blame] | 141 | #if defined(_LIBCPP_BUILDING_LIBRARY) || _LIBCPP_ABI_VERSION >= 2 |
Louis Dionne | 8a79be6 | 2020-10-21 11:11:45 -0400 | [diff] [blame] | 142 | // Enable additional explicit instantiations of iostreams components. This |
| 143 | // reduces the number of weak definitions generated in programs that use |
| 144 | // iostreams by providing a single strong definition in the shared library. |
| 145 | # define _LIBCPP_ABI_ENABLE_ADDITIONAL_IOSTREAM_EXPLICIT_INSTANTIATIONS_1 |
Konstantin Varlamov | d96c2d2 | 2021-11-15 12:40:55 -0800 | [diff] [blame] | 146 | |
| 147 | // Define a key function for `bad_function_call` in the library, to centralize |
| 148 | // its vtable and typeinfo to libc++ rather than having all other libraries |
| 149 | // using that class define their own copies. |
| 150 | # define _LIBCPP_ABI_BAD_FUNCTION_CALL_KEY_FUNCTION |
Louis Dionne | 8a79be6 | 2020-10-21 11:11:45 -0400 | [diff] [blame] | 151 | #endif |
| 152 | |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 153 | #define _LIBCPP_CONCAT1(_LIBCPP_X,_LIBCPP_Y) _LIBCPP_X##_LIBCPP_Y |
| 154 | #define _LIBCPP_CONCAT(_LIBCPP_X,_LIBCPP_Y) _LIBCPP_CONCAT1(_LIBCPP_X,_LIBCPP_Y) |
| 155 | |
Eric Fiselier | b33778a | 2018-10-30 21:44:53 +0000 | [diff] [blame] | 156 | #ifndef _LIBCPP_ABI_NAMESPACE |
| 157 | # define _LIBCPP_ABI_NAMESPACE _LIBCPP_CONCAT(__,_LIBCPP_ABI_VERSION) |
| 158 | #endif |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 159 | |
Eric Fiselier | c6f17cc | 2016-09-25 03:34:28 +0000 | [diff] [blame] | 160 | #if __cplusplus < 201103L |
| 161 | #define _LIBCPP_CXX03_LANG |
| 162 | #endif |
Eric Fiselier | 86fcc92 | 2015-07-10 20:26:38 +0000 | [diff] [blame] | 163 | |
| 164 | #ifndef __has_attribute |
| 165 | #define __has_attribute(__x) 0 |
| 166 | #endif |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 167 | |
Eric Fiselier | 86fcc92 | 2015-07-10 20:26:38 +0000 | [diff] [blame] | 168 | #ifndef __has_builtin |
| 169 | #define __has_builtin(__x) 0 |
| 170 | #endif |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 171 | |
Eric Fiselier | 8020b6c | 2015-08-19 17:21:46 +0000 | [diff] [blame] | 172 | #ifndef __has_extension |
| 173 | #define __has_extension(__x) 0 |
| 174 | #endif |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 175 | |
Eric Fiselier | 86fcc92 | 2015-07-10 20:26:38 +0000 | [diff] [blame] | 176 | #ifndef __has_feature |
| 177 | #define __has_feature(__x) 0 |
| 178 | #endif |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 179 | |
Marshall Clow | 2a5c421 | 2017-11-14 22:26:50 +0000 | [diff] [blame] | 180 | #ifndef __has_cpp_attribute |
| 181 | #define __has_cpp_attribute(__x) 0 |
| 182 | #endif |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 183 | |
Eric Fiselier | 86fcc92 | 2015-07-10 20:26:38 +0000 | [diff] [blame] | 184 | // '__is_identifier' returns '0' if '__x' is a reserved identifier provided by |
| 185 | // the compiler and '1' otherwise. |
| 186 | #ifndef __is_identifier |
| 187 | #define __is_identifier(__x) 1 |
| 188 | #endif |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 189 | |
Eric Fiselier | e3cec5f | 2017-01-16 21:15:08 +0000 | [diff] [blame] | 190 | #ifndef __has_declspec_attribute |
| 191 | #define __has_declspec_attribute(__x) 0 |
| 192 | #endif |
Eric Fiselier | 86fcc92 | 2015-07-10 20:26:38 +0000 | [diff] [blame] | 193 | |
Eric Fiselier | ba72507 | 2017-01-14 04:27:58 +0000 | [diff] [blame] | 194 | #define __has_keyword(__x) !(__is_identifier(__x)) |
| 195 | |
Alexander Richardson | ba1b59e | 2018-07-24 12:40:56 +0000 | [diff] [blame] | 196 | #ifndef __has_include |
| 197 | #define __has_include(...) 0 |
Eric Fiselier | d8a6c89 | 2017-05-10 21:34:58 +0000 | [diff] [blame] | 198 | #endif |
| 199 | |
Marek Kurdej | f319792 | 2021-04-01 08:29:55 +0200 | [diff] [blame] | 200 | #if defined(__apple_build_version__) |
| 201 | # define _LIBCPP_COMPILER_CLANG_BASED |
| 202 | # define _LIBCPP_APPLE_CLANG_VER (__apple_build_version__ / 10000) |
| 203 | #elif defined(__clang__) |
| 204 | # define _LIBCPP_COMPILER_CLANG_BASED |
| 205 | # define _LIBCPP_CLANG_VER (__clang_major__ * 100 + __clang_minor__) |
Eric Fiselier | 8fbccea | 2017-01-06 21:42:58 +0000 | [diff] [blame] | 206 | #elif defined(__GNUC__) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 207 | # define _LIBCPP_COMPILER_GCC |
Eric Fiselier | 8fbccea | 2017-01-06 21:42:58 +0000 | [diff] [blame] | 208 | #elif defined(_MSC_VER) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 209 | # define _LIBCPP_COMPILER_MSVC |
Eric Fiselier | 8fbccea | 2017-01-06 21:42:58 +0000 | [diff] [blame] | 210 | #elif defined(__IBMCPP__) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 211 | # define _LIBCPP_COMPILER_IBM |
Eric Fiselier | 8fbccea | 2017-01-06 21:42:58 +0000 | [diff] [blame] | 212 | #endif |
| 213 | |
Eric Fiselier | 75c0556 | 2019-06-13 00:37:25 +0000 | [diff] [blame] | 214 | #if defined(_LIBCPP_COMPILER_GCC) && __cplusplus < 201103L |
| 215 | #error "libc++ does not support using GCC with C++03. Please enable C++11" |
| 216 | #endif |
| 217 | |
Eric Fiselier | a6d9634 | 2017-01-07 02:43:58 +0000 | [diff] [blame] | 218 | // FIXME: ABI detection should be done via compiler builtin macros. This |
| 219 | // is just a placeholder until Clang implements such macros. For now assume |
Shoaib Meenai | 69cebe7 | 2017-10-04 23:44:38 +0000 | [diff] [blame] | 220 | // that Windows compilers pretending to be MSVC++ target the Microsoft ABI, |
| 221 | // and allow the user to explicitly specify the ABI to handle cases where this |
| 222 | // heuristic falls short. |
Shoaib Meenai | 56943f8 | 2017-10-05 02:18:08 +0000 | [diff] [blame] | 223 | #if defined(_LIBCPP_ABI_FORCE_ITANIUM) && defined(_LIBCPP_ABI_FORCE_MICROSOFT) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 224 | # error "Only one of _LIBCPP_ABI_FORCE_ITANIUM and _LIBCPP_ABI_FORCE_MICROSOFT can be defined" |
Shoaib Meenai | 56943f8 | 2017-10-05 02:18:08 +0000 | [diff] [blame] | 225 | #elif defined(_LIBCPP_ABI_FORCE_ITANIUM) |
Shoaib Meenai | 69cebe7 | 2017-10-04 23:44:38 +0000 | [diff] [blame] | 226 | # define _LIBCPP_ABI_ITANIUM |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 227 | #elif defined(_LIBCPP_ABI_FORCE_MICROSOFT) |
| 228 | # define _LIBCPP_ABI_MICROSOFT |
| 229 | #else |
| 230 | # if defined(_WIN32) && defined(_MSC_VER) |
| 231 | # define _LIBCPP_ABI_MICROSOFT |
| 232 | # else |
| 233 | # define _LIBCPP_ABI_ITANIUM |
| 234 | # endif |
Eric Fiselier | a6d9634 | 2017-01-07 02:43:58 +0000 | [diff] [blame] | 235 | #endif |
| 236 | |
Eric Fiselier | 85f6633 | 2019-03-05 01:57:01 +0000 | [diff] [blame] | 237 | #if defined(_LIBCPP_ABI_MICROSOFT) && !defined(_LIBCPP_NO_VCRUNTIME) |
| 238 | # define _LIBCPP_ABI_VCRUNTIME |
| 239 | #endif |
| 240 | |
Dan Albert | 21800dc | 2016-09-19 18:00:45 +0000 | [diff] [blame] | 241 | // Need to detect which libc we're using if we're on Linux. |
| 242 | #if defined(__linux__) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 243 | # include <features.h> |
| 244 | # if defined(__GLIBC_PREREQ) |
| 245 | # define _LIBCPP_GLIBC_PREREQ(a, b) __GLIBC_PREREQ(a, b) |
| 246 | # else |
| 247 | # define _LIBCPP_GLIBC_PREREQ(a, b) 0 |
| 248 | # endif // defined(__GLIBC_PREREQ) |
Dan Albert | 21800dc | 2016-09-19 18:00:45 +0000 | [diff] [blame] | 249 | #endif // defined(__linux__) |
Eric Fiselier | 86fcc92 | 2015-07-10 20:26:38 +0000 | [diff] [blame] | 250 | |
Muiez Ahmed | 38aa787 | 2022-01-14 11:35:53 -0500 | [diff] [blame] | 251 | #if defined(__MVS__) |
| 252 | # include <features.h> // for __NATIVE_ASCII_F |
| 253 | #endif |
| 254 | |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 255 | #ifdef __LITTLE_ENDIAN__ |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 256 | # if __LITTLE_ENDIAN__ |
| 257 | # define _LIBCPP_LITTLE_ENDIAN |
| 258 | # endif // __LITTLE_ENDIAN__ |
Louis Dionne | 2b1ceaa | 2021-04-20 12:03:32 -0400 | [diff] [blame] | 259 | #endif // __LITTLE_ENDIAN__ |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 260 | |
| 261 | #ifdef __BIG_ENDIAN__ |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 262 | # if __BIG_ENDIAN__ |
| 263 | # define _LIBCPP_BIG_ENDIAN |
| 264 | # endif // __BIG_ENDIAN__ |
Louis Dionne | 2b1ceaa | 2021-04-20 12:03:32 -0400 | [diff] [blame] | 265 | #endif // __BIG_ENDIAN__ |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 266 | |
Dan Albert | 98d9779 | 2015-09-16 18:10:47 +0000 | [diff] [blame] | 267 | #ifdef __BYTE_ORDER__ |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 268 | # if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ |
| 269 | # define _LIBCPP_LITTLE_ENDIAN |
| 270 | # elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ |
| 271 | # define _LIBCPP_BIG_ENDIAN |
| 272 | # endif // __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ |
Dan Albert | 98d9779 | 2015-09-16 18:10:47 +0000 | [diff] [blame] | 273 | #endif // __BYTE_ORDER__ |
| 274 | |
David Chisnall | 93008f0 | 2010-08-11 16:27:20 +0000 | [diff] [blame] | 275 | #ifdef __FreeBSD__ |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 276 | # include <sys/endian.h> |
Dimitry Andric | 5600c9b | 2019-10-19 10:59:23 +0000 | [diff] [blame] | 277 | # include <osreldate.h> |
David Chisnall | 93008f0 | 2010-08-11 16:27:20 +0000 | [diff] [blame] | 278 | # if _BYTE_ORDER == _LITTLE_ENDIAN |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 279 | # define _LIBCPP_LITTLE_ENDIAN |
| 280 | # else // _BYTE_ORDER == _LITTLE_ENDIAN |
| 281 | # define _LIBCPP_BIG_ENDIAN |
| 282 | # endif // _BYTE_ORDER == _LITTLE_ENDIAN |
Louis Dionne | 2b1ceaa | 2021-04-20 12:03:32 -0400 | [diff] [blame] | 283 | #endif // __FreeBSD__ |
David Chisnall | 93008f0 | 2010-08-11 16:27:20 +0000 | [diff] [blame] | 284 | |
Brad Smith | f6f5509 | 2021-01-12 14:16:15 -0500 | [diff] [blame] | 285 | #if defined(__NetBSD__) || defined(__OpenBSD__) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 286 | # include <sys/endian.h> |
Joerg Sonnenberger | 153e416 | 2013-05-17 21:17:34 +0000 | [diff] [blame] | 287 | # if _BYTE_ORDER == _LITTLE_ENDIAN |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 288 | # define _LIBCPP_LITTLE_ENDIAN |
| 289 | # else // _BYTE_ORDER == _LITTLE_ENDIAN |
| 290 | # define _LIBCPP_BIG_ENDIAN |
| 291 | # endif // _BYTE_ORDER == _LITTLE_ENDIAN |
Louis Dionne | 2b1ceaa | 2021-04-20 12:03:32 -0400 | [diff] [blame] | 292 | #endif // defined(__NetBSD__) || defined(__OpenBSD__) |
Joerg Sonnenberger | 153e416 | 2013-05-17 21:17:34 +0000 | [diff] [blame] | 293 | |
Saleem Abdulrasool | ee302e4 | 2017-01-03 21:53:51 +0000 | [diff] [blame] | 294 | #if defined(_WIN32) |
Eric Fiselier | bb999f9 | 2017-05-31 22:14:05 +0000 | [diff] [blame] | 295 | # define _LIBCPP_WIN32API |
Eric Fiselier | e9cc592 | 2017-10-17 13:16:01 +0000 | [diff] [blame] | 296 | # define _LIBCPP_LITTLE_ENDIAN |
Saleem Abdulrasool | ee302e4 | 2017-01-03 21:53:51 +0000 | [diff] [blame] | 297 | # define _LIBCPP_SHORT_WCHAR 1 |
Louis Dionne | a8548af | 2019-03-20 17:05:52 +0000 | [diff] [blame] | 298 | // Both MinGW and native MSVC provide a "MSVC"-like environment |
Eric Fiselier | bb999f9 | 2017-05-31 22:14:05 +0000 | [diff] [blame] | 299 | # define _LIBCPP_MSVCRT_LIKE |
Bruno Cardoso Lopes | 9157268 | 2017-07-17 21:52:31 +0000 | [diff] [blame] | 300 | // If mingw not explicitly detected, assume using MS C runtime only if |
| 301 | // a MS compatibility version is specified. |
| 302 | # if defined(_MSC_VER) && !defined(__MINGW32__) |
Howard Hinnant | 8ad7091 | 2013-09-17 01:34:47 +0000 | [diff] [blame] | 303 | # define _LIBCPP_MSVCRT // Using Microsoft's C Runtime library |
| 304 | # endif |
Saleem Abdulrasool | 32300ca | 2017-01-04 01:53:24 +0000 | [diff] [blame] | 305 | # if (defined(_M_AMD64) || defined(__x86_64__)) || (defined(_M_ARM) || defined(__arm__)) |
| 306 | # define _LIBCPP_HAS_BITSCAN64 |
| 307 | # endif |
Peter Collingbourne | 63ebbd7 | 2018-01-23 02:07:27 +0000 | [diff] [blame] | 308 | # define _LIBCPP_HAS_OPEN_WITH_WCHAR |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 309 | # if defined(_LIBCPP_MSVCRT) |
| 310 | # define _LIBCPP_HAS_QUICK_EXIT |
| 311 | # endif |
Shoaib Meenai | e2ce360 | 2017-04-06 04:47:49 +0000 | [diff] [blame] | 312 | |
| 313 | // Some CRT APIs are unavailable to store apps |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 314 | # if defined(WINAPI_FAMILY) |
| 315 | # include <winapifamily.h> |
| 316 | # if !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) && \ |
| 317 | (!defined(WINAPI_PARTITION_SYSTEM) || \ |
| 318 | !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_SYSTEM)) |
| 319 | # define _LIBCPP_WINDOWS_STORE_APP |
| 320 | # endif |
| 321 | # endif |
Saleem Abdulrasool | ee302e4 | 2017-01-03 21:53:51 +0000 | [diff] [blame] | 322 | #endif // defined(_WIN32) |
Howard Hinnant | 34bad2a | 2011-05-13 17:16:06 +0000 | [diff] [blame] | 323 | |
David Chisnall | 8074c34 | 2012-02-29 13:05:08 +0000 | [diff] [blame] | 324 | #ifdef __sun__ |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 325 | # include <sys/isa_defs.h> |
| 326 | # ifdef _LITTLE_ENDIAN |
| 327 | # define _LIBCPP_LITTLE_ENDIAN |
| 328 | # else |
| 329 | # define _LIBCPP_BIG_ENDIAN |
| 330 | # endif |
David Chisnall | 8074c34 | 2012-02-29 13:05:08 +0000 | [diff] [blame] | 331 | #endif // __sun__ |
| 332 | |
Xing Xue | 50b0eb4 | 2021-09-09 16:20:36 -0400 | [diff] [blame] | 333 | #if defined(_AIX) && !defined(__64BIT__) |
| 334 | // The size of wchar is 2 byte on 32-bit mode on AIX. |
| 335 | # define _LIBCPP_SHORT_WCHAR 1 |
| 336 | #endif |
| 337 | |
Louis Dionne | 6225396 | 2021-12-21 16:50:34 -0500 | [diff] [blame] | 338 | // Libc++ supports various implementations of std::random_device. |
| 339 | // |
| 340 | // _LIBCPP_USING_DEV_RANDOM |
| 341 | // Read entropy from the given file, by default `/dev/urandom`. |
| 342 | // If a token is provided, it is assumed to be the path to a file |
| 343 | // to read entropy from. This is the default behavior if nothing |
| 344 | // else is specified. This implementation requires storing state |
| 345 | // inside `std::random_device`. |
| 346 | // |
| 347 | // _LIBCPP_USING_ARC4_RANDOM |
| 348 | // Use arc4random(). This allows obtaining random data even when |
| 349 | // using sandboxing mechanisms. On some platforms like Apple, this |
| 350 | // is the recommended source of entropy for user-space programs. |
| 351 | // When this option is used, the token passed to `std::random_device`'s |
| 352 | // constructor *must* be "/dev/urandom" -- anything else is an error. |
| 353 | // |
| 354 | // _LIBCPP_USING_GETENTROPY |
| 355 | // Use getentropy(). |
| 356 | // When this option is used, the token passed to `std::random_device`'s |
| 357 | // constructor *must* be "/dev/urandom" -- anything else is an error. |
| 358 | // |
Roland McGrath | dea0448 | 2022-01-02 11:53:53 -0800 | [diff] [blame] | 359 | // _LIBCPP_USING_FUCHSIA_CPRNG |
| 360 | // Use Fuchsia's zx_cprng_draw() system call, which is specified to |
| 361 | // deliver high-quality entropy and cannot fail. |
| 362 | // When this option is used, the token passed to `std::random_device`'s |
| 363 | // constructor *must* be "/dev/urandom" -- anything else is an error. |
| 364 | // |
Louis Dionne | 6225396 | 2021-12-21 16:50:34 -0500 | [diff] [blame] | 365 | // _LIBCPP_USING_NACL_RANDOM |
| 366 | // NaCl's sandbox (which PNaCl also runs in) doesn't allow filesystem access, |
| 367 | // including accesses to the special files under `/dev`. This implementation |
| 368 | // uses the NaCL syscall `nacl_secure_random_init()` to get entropy. |
| 369 | // When this option is used, the token passed to `std::random_device`'s |
| 370 | // constructor *must* be "/dev/urandom" -- anything else is an error. |
| 371 | // |
| 372 | // _LIBCPP_USING_WIN32_RANDOM |
| 373 | // Use rand_s(), for use on Windows. |
| 374 | // When this option is used, the token passed to `std::random_device`'s |
| 375 | // constructor *must* be "/dev/urandom" -- anything else is an error. |
Louis Dionne | 1eb0c9d | 2021-12-21 11:49:04 -0500 | [diff] [blame] | 376 | #if defined(__OpenBSD__) || defined(__APPLE__) |
Louis Dionne | 6225396 | 2021-12-21 16:50:34 -0500 | [diff] [blame] | 377 | # define _LIBCPP_USING_ARC4_RANDOM |
Roland McGrath | dea0448 | 2022-01-02 11:53:53 -0800 | [diff] [blame] | 378 | #elif defined(__wasi__) |
Louis Dionne | 6225396 | 2021-12-21 16:50:34 -0500 | [diff] [blame] | 379 | # define _LIBCPP_USING_GETENTROPY |
Roland McGrath | dea0448 | 2022-01-02 11:53:53 -0800 | [diff] [blame] | 380 | #elif defined(__Fuchsia__) |
| 381 | # define _LIBCPP_USING_FUCHSIA_CPRNG |
Louis Dionne | 6225396 | 2021-12-21 16:50:34 -0500 | [diff] [blame] | 382 | #elif defined(__native_client__) |
| 383 | # define _LIBCPP_USING_NACL_RANDOM |
| 384 | #elif defined(_LIBCPP_WIN32API) |
| 385 | # define _LIBCPP_USING_WIN32_RANDOM |
| 386 | #else |
| 387 | # define _LIBCPP_USING_DEV_RANDOM |
| 388 | #endif |
| 389 | |
Eric Fiselier | e9cc592 | 2017-10-17 13:16:01 +0000 | [diff] [blame] | 390 | #if !defined(_LIBCPP_LITTLE_ENDIAN) && !defined(_LIBCPP_BIG_ENDIAN) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 391 | # include <endian.h> |
| 392 | # if __BYTE_ORDER == __LITTLE_ENDIAN |
| 393 | # define _LIBCPP_LITTLE_ENDIAN |
| 394 | # elif __BYTE_ORDER == __BIG_ENDIAN |
| 395 | # define _LIBCPP_BIG_ENDIAN |
| 396 | # else // __BYTE_ORDER == __BIG_ENDIAN |
| 397 | # error unable to determine endian |
| 398 | # endif |
Louis Dionne | 2b1ceaa | 2021-04-20 12:03:32 -0400 | [diff] [blame] | 399 | #endif // !defined(_LIBCPP_LITTLE_ENDIAN) && !defined(_LIBCPP_BIG_ENDIAN) |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 400 | |
Eric Fiselier | 02cba00 | 2017-06-15 03:50:02 +0000 | [diff] [blame] | 401 | #if __has_attribute(__no_sanitize__) && !defined(_LIBCPP_COMPILER_GCC) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 402 | # define _LIBCPP_NO_CFI __attribute__((__no_sanitize__("cfi"))) |
Evgeniy Stepanov | 076b237 | 2016-02-10 21:53:28 +0000 | [diff] [blame] | 403 | #else |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 404 | # define _LIBCPP_NO_CFI |
Evgeniy Stepanov | 076b237 | 2016-02-10 21:53:28 +0000 | [diff] [blame] | 405 | #endif |
| 406 | |
Louis Dionne | 29c6d37 | 2021-08-17 11:23:48 -0400 | [diff] [blame] | 407 | // If the compiler supports using_if_exists, pretend we have those functions and they'll |
| 408 | // be picked up if the C library provides them. |
| 409 | // |
| 410 | // TODO: Once we drop support for Clang 12, we can assume the compiler supports using_if_exists |
| 411 | // for platforms that don't have a conforming C11 library, so we can drop this whole thing. |
| 412 | #if __has_attribute(using_if_exists) |
| 413 | # define _LIBCPP_HAS_TIMESPEC_GET |
| 414 | # define _LIBCPP_HAS_QUICK_EXIT |
| 415 | # define _LIBCPP_HAS_ALIGNED_ALLOC |
| 416 | #else |
Marek Kurdej | f319792 | 2021-04-01 08:29:55 +0200 | [diff] [blame] | 417 | #if (defined(__ISO_C_VISIBLE) && (__ISO_C_VISIBLE >= 2011)) || __cplusplus >= 201103L |
Louis Dionne | 234dd43 | 2018-08-15 00:16:41 +0000 | [diff] [blame] | 418 | # if defined(__FreeBSD__) |
Dan Albert | 1d3cfad | 2019-11-18 12:16:45 -0800 | [diff] [blame] | 419 | # define _LIBCPP_HAS_ALIGNED_ALLOC |
Louis Dionne | 234dd43 | 2018-08-15 00:16:41 +0000 | [diff] [blame] | 420 | # define _LIBCPP_HAS_QUICK_EXIT |
Dimitry Andric | e022a03 | 2020-01-30 08:00:28 +0100 | [diff] [blame] | 421 | # if __FreeBSD_version >= 1300064 || \ |
| 422 | (__FreeBSD_version >= 1201504 && __FreeBSD_version < 1300000) |
| 423 | # define _LIBCPP_HAS_TIMESPEC_GET |
| 424 | # endif |
Dan Albert | 1d3cfad | 2019-11-18 12:16:45 -0800 | [diff] [blame] | 425 | # elif defined(__BIONIC__) |
Dan Albert | 1d3cfad | 2019-11-18 12:16:45 -0800 | [diff] [blame] | 426 | # if __ANDROID_API__ >= 21 |
| 427 | # define _LIBCPP_HAS_QUICK_EXIT |
| 428 | # endif |
| 429 | # if __ANDROID_API__ >= 28 |
| 430 | # define _LIBCPP_HAS_ALIGNED_ALLOC |
| 431 | # endif |
| 432 | # if __ANDROID_API__ >= 29 |
| 433 | # define _LIBCPP_HAS_TIMESPEC_GET |
| 434 | # endif |
Michał Górny | f042625 | 2019-12-14 14:17:19 +0100 | [diff] [blame] | 435 | # elif defined(__Fuchsia__) || defined(__wasi__) || defined(__NetBSD__) |
Dan Albert | 1d3cfad | 2019-11-18 12:16:45 -0800 | [diff] [blame] | 436 | # define _LIBCPP_HAS_ALIGNED_ALLOC |
Louis Dionne | 234dd43 | 2018-08-15 00:16:41 +0000 | [diff] [blame] | 437 | # define _LIBCPP_HAS_QUICK_EXIT |
Marshall Clow | a6a55a8 | 2018-08-15 21:19:08 +0000 | [diff] [blame] | 438 | # define _LIBCPP_HAS_TIMESPEC_GET |
Brad Smith | f6f5509 | 2021-01-12 14:16:15 -0500 | [diff] [blame] | 439 | # elif defined(__OpenBSD__) |
| 440 | # define _LIBCPP_HAS_ALIGNED_ALLOC |
| 441 | # define _LIBCPP_HAS_TIMESPEC_GET |
Louis Dionne | 234dd43 | 2018-08-15 00:16:41 +0000 | [diff] [blame] | 442 | # elif defined(__linux__) |
| 443 | # if !defined(_LIBCPP_HAS_MUSL_LIBC) |
| 444 | # if _LIBCPP_GLIBC_PREREQ(2, 15) || defined(__BIONIC__) |
| 445 | # define _LIBCPP_HAS_QUICK_EXIT |
| 446 | # endif |
| 447 | # if _LIBCPP_GLIBC_PREREQ(2, 17) |
Dan Albert | 1d3cfad | 2019-11-18 12:16:45 -0800 | [diff] [blame] | 448 | # define _LIBCPP_HAS_ALIGNED_ALLOC |
Marshall Clow | a6a55a8 | 2018-08-15 21:19:08 +0000 | [diff] [blame] | 449 | # define _LIBCPP_HAS_TIMESPEC_GET |
Louis Dionne | 234dd43 | 2018-08-15 00:16:41 +0000 | [diff] [blame] | 450 | # endif |
| 451 | # else // defined(_LIBCPP_HAS_MUSL_LIBC) |
Dan Albert | 1d3cfad | 2019-11-18 12:16:45 -0800 | [diff] [blame] | 452 | # define _LIBCPP_HAS_ALIGNED_ALLOC |
Louis Dionne | 234dd43 | 2018-08-15 00:16:41 +0000 | [diff] [blame] | 453 | # define _LIBCPP_HAS_QUICK_EXIT |
Marshall Clow | a6a55a8 | 2018-08-15 21:19:08 +0000 | [diff] [blame] | 454 | # define _LIBCPP_HAS_TIMESPEC_GET |
Louis Dionne | 234dd43 | 2018-08-15 00:16:41 +0000 | [diff] [blame] | 455 | # endif |
Martin Storsjö | 8a174e7 | 2021-05-31 09:32:51 +0000 | [diff] [blame] | 456 | # elif defined(_LIBCPP_MSVCRT) |
| 457 | // Using Microsoft's C Runtime library, not MinGW |
| 458 | # define _LIBCPP_HAS_TIMESPEC_GET |
Louis Dionne | 5b74729 | 2020-07-27 14:25:03 -0400 | [diff] [blame] | 459 | # elif defined(__APPLE__) |
| 460 | // timespec_get and aligned_alloc were introduced in macOS 10.15 and |
| 461 | // aligned releases |
Marek Kurdej | 126213e | 2021-04-02 10:31:18 +0200 | [diff] [blame] | 462 | # if ((defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ >= 101500) || \ |
| 463 | (defined(__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__ >= 130000) || \ |
| 464 | (defined(__ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__ >= 130000) || \ |
| 465 | (defined(__ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__ >= 60000)) |
Louis Dionne | 5b74729 | 2020-07-27 14:25:03 -0400 | [diff] [blame] | 466 | # define _LIBCPP_HAS_ALIGNED_ALLOC |
Raphael Isemann | 46c3ac5 | 2020-09-02 09:25:31 +0200 | [diff] [blame] | 467 | # define _LIBCPP_HAS_TIMESPEC_GET |
Louis Dionne | 5b74729 | 2020-07-27 14:25:03 -0400 | [diff] [blame] | 468 | # endif |
| 469 | # endif // __APPLE__ |
Louis Dionne | 234dd43 | 2018-08-15 00:16:41 +0000 | [diff] [blame] | 470 | #endif |
Louis Dionne | 29c6d37 | 2021-08-17 11:23:48 -0400 | [diff] [blame] | 471 | #endif // __has_attribute(using_if_exists) |
Louis Dionne | 234dd43 | 2018-08-15 00:16:41 +0000 | [diff] [blame] | 472 | |
Eric Fiselier | 0f0ed9d | 2019-01-16 01:51:12 +0000 | [diff] [blame] | 473 | #ifndef _LIBCPP_CXX03_LANG |
| 474 | # define _LIBCPP_ALIGNOF(_Tp) alignof(_Tp) |
Marek Kurdej | f319792 | 2021-04-01 08:29:55 +0200 | [diff] [blame] | 475 | #elif defined(_LIBCPP_COMPILER_CLANG_BASED) |
Eric Fiselier | 0f0ed9d | 2019-01-16 01:51:12 +0000 | [diff] [blame] | 476 | # define _LIBCPP_ALIGNOF(_Tp) _Alignof(_Tp) |
| 477 | #else |
Louis Dionne | 72707bf | 2020-09-02 12:29:42 -0400 | [diff] [blame] | 478 | # error "We don't know a correct way to implement alignof(T) in C++03 outside of Clang" |
Eric Fiselier | 0f0ed9d | 2019-01-16 01:51:12 +0000 | [diff] [blame] | 479 | #endif |
| 480 | |
| 481 | #define _LIBCPP_PREFERRED_ALIGNOF(_Tp) __alignof(_Tp) |
| 482 | |
Marek Kurdej | f319792 | 2021-04-01 08:29:55 +0200 | [diff] [blame] | 483 | #if defined(_LIBCPP_COMPILER_CLANG_BASED) |
Howard Hinnant | aa87c0f | 2010-08-10 20:48:29 +0000 | [diff] [blame] | 484 | |
Louis Dionne | 3f34693 | 2020-06-25 16:31:14 -0400 | [diff] [blame] | 485 | #if defined(_LIBCPP_ALTERNATE_STRING_LAYOUT) |
| 486 | # error _LIBCPP_ALTERNATE_STRING_LAYOUT is deprecated, please use _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT instead |
| 487 | #endif |
| 488 | #if defined(__APPLE__) && !defined(__i386__) && !defined(__x86_64__) && \ |
| 489 | (!defined(__arm__) || __ARM_ARCH_7K__ >= 2) |
| 490 | # define _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT |
Tim Northover | ffc9593 | 2014-03-30 11:34:22 +0000 | [diff] [blame] | 491 | #endif |
| 492 | |
Howard Hinnant | aaaa52b | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 493 | #if __has_feature(cxx_alignas) |
Howard Hinnant | 62cad69 | 2012-05-31 19:31:14 +0000 | [diff] [blame] | 494 | # define _ALIGNAS_TYPE(x) alignas(x) |
Howard Hinnant | aaaa52b | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 495 | # define _ALIGNAS(x) alignas(x) |
| 496 | #else |
Eric Fiselier | 0f0ed9d | 2019-01-16 01:51:12 +0000 | [diff] [blame] | 497 | # define _ALIGNAS_TYPE(x) __attribute__((__aligned__(_LIBCPP_ALIGNOF(x)))) |
Howard Hinnant | aaaa52b | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 498 | # define _ALIGNAS(x) __attribute__((__aligned__(x))) |
| 499 | #endif |
| 500 | |
Marshall Clow | 2b12c31 | 2014-02-22 15:13:48 +0000 | [diff] [blame] | 501 | #if __cplusplus < 201103L |
Howard Hinnant | 31cd14f | 2010-09-16 23:27:26 +0000 | [diff] [blame] | 502 | typedef __char16_t char16_t; |
| 503 | typedef __char32_t char32_t; |
Howard Hinnant | 8e6a398 | 2010-09-07 20:31:18 +0000 | [diff] [blame] | 504 | #endif |
Howard Hinnant | 74279a5 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 505 | |
Louis Dionne | 94c6eda | 2020-07-03 13:46:41 -0400 | [diff] [blame] | 506 | #if !__has_feature(cxx_exceptions) |
| 507 | # define _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | aa87c0f | 2010-08-10 20:48:29 +0000 | [diff] [blame] | 508 | #endif |
| 509 | |
Howard Hinnant | 09bc0c9 | 2011-12-02 19:36:40 +0000 | [diff] [blame] | 510 | #if !(__has_feature(cxx_strong_enums)) |
| 511 | #define _LIBCPP_HAS_NO_STRONG_ENUMS |
| 512 | #endif |
| 513 | |
Howard Hinnant | 8df9629 | 2011-05-26 17:07:32 +0000 | [diff] [blame] | 514 | #if __has_feature(cxx_attributes) |
Richard Smith | cabd392 | 2012-07-26 02:04:22 +0000 | [diff] [blame] | 515 | # define _LIBCPP_NORETURN [[noreturn]] |
Howard Hinnant | 8df9629 | 2011-05-26 17:07:32 +0000 | [diff] [blame] | 516 | #else |
Richard Smith | cabd392 | 2012-07-26 02:04:22 +0000 | [diff] [blame] | 517 | # define _LIBCPP_NORETURN __attribute__ ((noreturn)) |
Howard Hinnant | 74279a5 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 518 | #endif |
| 519 | |
Louis Dionne | 9bb7cf4 | 2021-09-08 12:57:58 -0400 | [diff] [blame] | 520 | #ifdef _LIBCPP_CXX03_LANG |
| 521 | # define nullptr __nullptr |
Howard Hinnant | 74279a5 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 522 | #endif |
| 523 | |
Douglas Gregor | 1303444 | 2011-06-22 22:17:44 +0000 | [diff] [blame] | 524 | // Objective-C++ features (opt-in) |
| 525 | #if __has_feature(objc_arc) |
| 526 | #define _LIBCPP_HAS_OBJC_ARC |
| 527 | #endif |
| 528 | |
| 529 | #if __has_feature(objc_arc_weak) |
| 530 | #define _LIBCPP_HAS_OBJC_ARC_WEAK |
| 531 | #endif |
| 532 | |
Louis Dionne | 2c35828 | 2020-01-21 12:39:43 -0800 | [diff] [blame] | 533 | #if __has_extension(blocks) |
| 534 | # define _LIBCPP_HAS_EXTENSION_BLOCKS |
| 535 | #endif |
| 536 | |
Louis Dionne | 3a63292 | 2020-04-23 16:47:52 -0400 | [diff] [blame] | 537 | #if defined(_LIBCPP_HAS_EXTENSION_BLOCKS) && defined(__APPLE__) |
| 538 | # define _LIBCPP_HAS_BLOCKS_RUNTIME |
| 539 | #endif |
| 540 | |
Eric Fiselier | 1af87ca | 2015-12-15 22:16:47 +0000 | [diff] [blame] | 541 | #if !(__has_feature(cxx_noexcept)) |
| 542 | #define _LIBCPP_HAS_NO_NOEXCEPT |
Howard Hinnant | 68d1339 | 2011-05-11 20:19:40 +0000 | [diff] [blame] | 543 | #endif |
| 544 | |
Louis Dionne | 93f1fd7 | 2021-06-04 13:31:22 -0400 | [diff] [blame] | 545 | #if !__has_feature(address_sanitizer) |
Marshall Clow | 90fc047 | 2014-04-14 15:44:57 +0000 | [diff] [blame] | 546 | #define _LIBCPP_HAS_NO_ASAN |
| 547 | #endif |
| 548 | |
Marshall Clow | 55b23d2 | 2016-01-12 00:38:04 +0000 | [diff] [blame] | 549 | // Allow for build-time disabling of unsigned integer sanitization |
Louis Dionne | 93f1fd7 | 2021-06-04 13:31:22 -0400 | [diff] [blame] | 550 | #if __has_attribute(no_sanitize) |
Saleem Abdulrasool | 38acb64 | 2016-02-09 04:05:37 +0000 | [diff] [blame] | 551 | #define _LIBCPP_DISABLE_UBSAN_UNSIGNED_INTEGER_CHECK __attribute__((__no_sanitize__("unsigned-integer-overflow"))) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 552 | #endif |
Marshall Clow | 55b23d2 | 2016-01-12 00:38:04 +0000 | [diff] [blame] | 553 | |
Louis Dionne | 3a19799 | 2018-07-27 12:46:03 +0000 | [diff] [blame] | 554 | #define _LIBCPP_ALWAYS_INLINE __attribute__ ((__always_inline__)) |
| 555 | |
Louis Dionne | faa1745 | 2019-09-04 12:44:19 +0000 | [diff] [blame] | 556 | #define _LIBCPP_DISABLE_EXTENSION_WARNING __extension__ |
| 557 | |
Eric Fiselier | 8fbccea | 2017-01-06 21:42:58 +0000 | [diff] [blame] | 558 | #elif defined(_LIBCPP_COMPILER_GCC) |
Howard Hinnant | aa87c0f | 2010-08-10 20:48:29 +0000 | [diff] [blame] | 559 | |
Howard Hinnant | aaaa52b | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 560 | #define _ALIGNAS(x) __attribute__((__aligned__(x))) |
Eric Fiselier | 0f0ed9d | 2019-01-16 01:51:12 +0000 | [diff] [blame] | 561 | #define _ALIGNAS_TYPE(x) __attribute__((__aligned__(_LIBCPP_ALIGNOF(x)))) |
Howard Hinnant | aaaa52b | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 562 | |
Richard Smith | cabd392 | 2012-07-26 02:04:22 +0000 | [diff] [blame] | 563 | #define _LIBCPP_NORETURN __attribute__((noreturn)) |
Howard Hinnant | 1e570a3 | 2011-05-31 13:13:49 +0000 | [diff] [blame] | 564 | |
Louis Dionne | af6be62 | 2021-07-27 17:30:47 -0400 | [diff] [blame] | 565 | #if !defined(__EXCEPTIONS) |
Louis Dionne | 94c6eda | 2020-07-03 13:46:41 -0400 | [diff] [blame] | 566 | # define _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | aa87c0f | 2010-08-10 20:48:29 +0000 | [diff] [blame] | 567 | #endif |
| 568 | |
Louis Dionne | 93f1fd7 | 2021-06-04 13:31:22 -0400 | [diff] [blame] | 569 | #if !defined(__SANITIZE_ADDRESS__) |
Marshall Clow | 90fc047 | 2014-04-14 15:44:57 +0000 | [diff] [blame] | 570 | #define _LIBCPP_HAS_NO_ASAN |
| 571 | #endif |
| 572 | |
Louis Dionne | 3a19799 | 2018-07-27 12:46:03 +0000 | [diff] [blame] | 573 | #define _LIBCPP_ALWAYS_INLINE __attribute__ ((__always_inline__)) |
| 574 | |
Louis Dionne | faa1745 | 2019-09-04 12:44:19 +0000 | [diff] [blame] | 575 | #define _LIBCPP_DISABLE_EXTENSION_WARNING __extension__ |
| 576 | |
Eric Fiselier | 8fbccea | 2017-01-06 21:42:58 +0000 | [diff] [blame] | 577 | #elif defined(_LIBCPP_COMPILER_MSVC) |
Howard Hinnant | aaaa52b | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 578 | |
Eric Fiselier | 8fbccea | 2017-01-06 21:42:58 +0000 | [diff] [blame] | 579 | #define _LIBCPP_TOSTRING2(x) #x |
| 580 | #define _LIBCPP_TOSTRING(x) _LIBCPP_TOSTRING2(x) |
| 581 | #define _LIBCPP_WARNING(x) __pragma(message(__FILE__ "(" _LIBCPP_TOSTRING(__LINE__) ") : warning note: " x)) |
| 582 | |
| 583 | #if _MSC_VER < 1900 |
| 584 | #error "MSVC versions prior to Visual Studio 2015 are not supported" |
| 585 | #endif |
| 586 | |
Howard Hinnant | aaaa52b | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 587 | #define __alignof__ __alignof |
Richard Smith | cabd392 | 2012-07-26 02:04:22 +0000 | [diff] [blame] | 588 | #define _LIBCPP_NORETURN __declspec(noreturn) |
Howard Hinnant | aaaa52b | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 589 | #define _ALIGNAS(x) __declspec(align(x)) |
Eric Fiselier | 6a53758 | 2018-02-07 23:50:25 +0000 | [diff] [blame] | 590 | #define _ALIGNAS_TYPE(x) alignas(x) |
Howard Hinnant | aaaa52b | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 591 | |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 592 | #define _LIBCPP_WEAK |
| 593 | |
Marshall Clow | 90fc047 | 2014-04-14 15:44:57 +0000 | [diff] [blame] | 594 | #define _LIBCPP_HAS_NO_ASAN |
| 595 | |
Louis Dionne | 3a19799 | 2018-07-27 12:46:03 +0000 | [diff] [blame] | 596 | #define _LIBCPP_ALWAYS_INLINE __forceinline |
| 597 | |
Tim Shen | d87ea29 | 2018-07-30 22:27:38 +0000 | [diff] [blame] | 598 | #define _LIBCPP_HAS_NO_VECTOR_EXTENSION |
| 599 | |
Louis Dionne | faa1745 | 2019-09-04 12:44:19 +0000 | [diff] [blame] | 600 | #define _LIBCPP_DISABLE_EXTENSION_WARNING |
| 601 | |
Eric Fiselier | 8fbccea | 2017-01-06 21:42:58 +0000 | [diff] [blame] | 602 | #elif defined(_LIBCPP_COMPILER_IBM) |
Howard Hinnant | ea38295 | 2013-08-14 18:00:20 +0000 | [diff] [blame] | 603 | |
| 604 | #define _ALIGNAS(x) __attribute__((__aligned__(x))) |
Eric Fiselier | 0f0ed9d | 2019-01-16 01:51:12 +0000 | [diff] [blame] | 605 | #define _ALIGNAS_TYPE(x) __attribute__((__aligned__(_LIBCPP_ALIGNOF(x)))) |
Howard Hinnant | ea38295 | 2013-08-14 18:00:20 +0000 | [diff] [blame] | 606 | #define _ATTRIBUTE(x) __attribute__((x)) |
| 607 | #define _LIBCPP_NORETURN __attribute__((noreturn)) |
| 608 | |
Howard Hinnant | ea38295 | 2013-08-14 18:00:20 +0000 | [diff] [blame] | 609 | #define _LIBCPP_HAS_NO_UNICODE_CHARS |
Howard Hinnant | ea38295 | 2013-08-14 18:00:20 +0000 | [diff] [blame] | 610 | |
| 611 | #if defined(_AIX) |
| 612 | #define __MULTILOCALE_API |
| 613 | #endif |
| 614 | |
Marshall Clow | 90fc047 | 2014-04-14 15:44:57 +0000 | [diff] [blame] | 615 | #define _LIBCPP_HAS_NO_ASAN |
| 616 | |
Louis Dionne | 3a19799 | 2018-07-27 12:46:03 +0000 | [diff] [blame] | 617 | #define _LIBCPP_ALWAYS_INLINE __attribute__ ((__always_inline__)) |
| 618 | |
Tim Shen | d87ea29 | 2018-07-30 22:27:38 +0000 | [diff] [blame] | 619 | #define _LIBCPP_HAS_NO_VECTOR_EXTENSION |
| 620 | |
Louis Dionne | faa1745 | 2019-09-04 12:44:19 +0000 | [diff] [blame] | 621 | #define _LIBCPP_DISABLE_EXTENSION_WARNING |
| 622 | |
Eric Fiselier | 8fbccea | 2017-01-06 21:42:58 +0000 | [diff] [blame] | 623 | #endif // _LIBCPP_COMPILER_[CLANG|GCC|MSVC|IBM] |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 624 | |
Saleem Abdulrasool | ee302e4 | 2017-01-03 21:53:51 +0000 | [diff] [blame] | 625 | #if defined(_LIBCPP_OBJECT_FORMAT_COFF) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 626 | |
Peter Collingbourne | 725de94 | 2018-01-17 04:37:04 +0000 | [diff] [blame] | 627 | #ifdef _DLL |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 628 | # define _LIBCPP_CRT_FUNC __declspec(dllimport) |
Peter Collingbourne | 725de94 | 2018-01-17 04:37:04 +0000 | [diff] [blame] | 629 | #else |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 630 | # define _LIBCPP_CRT_FUNC |
Peter Collingbourne | 725de94 | 2018-01-17 04:37:04 +0000 | [diff] [blame] | 631 | #endif |
| 632 | |
Shoaib Meenai | f36e988 | 2016-12-05 19:40:12 +0000 | [diff] [blame] | 633 | #if defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 634 | # define _LIBCPP_DLL_VIS |
| 635 | # define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS |
| 636 | # define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS |
| 637 | # define _LIBCPP_OVERRIDABLE_FUNC_VIS |
Louis Dionne | 5254b37 | 2018-10-25 12:13:43 +0000 | [diff] [blame] | 638 | # define _LIBCPP_EXPORTED_FROM_ABI |
Eric Fiselier | 51e8d2f | 2016-09-26 22:19:41 +0000 | [diff] [blame] | 639 | #elif defined(_LIBCPP_BUILDING_LIBRARY) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 640 | # define _LIBCPP_DLL_VIS __declspec(dllexport) |
Martin Storsjo | bd25449 | 2019-04-25 19:46:28 +0000 | [diff] [blame] | 641 | # if defined(__MINGW32__) |
| 642 | # define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS _LIBCPP_DLL_VIS |
| 643 | # define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS |
| 644 | # else |
| 645 | # define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS |
| 646 | # define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS _LIBCPP_DLL_VIS |
| 647 | # endif |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 648 | # define _LIBCPP_OVERRIDABLE_FUNC_VIS _LIBCPP_DLL_VIS |
Louis Dionne | 5254b37 | 2018-10-25 12:13:43 +0000 | [diff] [blame] | 649 | # define _LIBCPP_EXPORTED_FROM_ABI __declspec(dllexport) |
Eric Fiselier | 51e8d2f | 2016-09-26 22:19:41 +0000 | [diff] [blame] | 650 | #else |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 651 | # define _LIBCPP_DLL_VIS __declspec(dllimport) |
| 652 | # define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS _LIBCPP_DLL_VIS |
| 653 | # define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS |
| 654 | # define _LIBCPP_OVERRIDABLE_FUNC_VIS |
Louis Dionne | 5254b37 | 2018-10-25 12:13:43 +0000 | [diff] [blame] | 655 | # define _LIBCPP_EXPORTED_FROM_ABI __declspec(dllimport) |
Eric Fiselier | 1b57fa8 | 2016-09-15 22:27:07 +0000 | [diff] [blame] | 656 | #endif |
Eric Fiselier | 51e8d2f | 2016-09-26 22:19:41 +0000 | [diff] [blame] | 657 | |
Eric Fiselier | 1b57fa8 | 2016-09-15 22:27:07 +0000 | [diff] [blame] | 658 | #define _LIBCPP_TYPE_VIS _LIBCPP_DLL_VIS |
| 659 | #define _LIBCPP_FUNC_VIS _LIBCPP_DLL_VIS |
| 660 | #define _LIBCPP_EXCEPTION_ABI _LIBCPP_DLL_VIS |
Eric Fiselier | 1b57fa8 | 2016-09-15 22:27:07 +0000 | [diff] [blame] | 661 | #define _LIBCPP_HIDDEN |
Shoaib Meenai | 69c5741 | 2017-03-02 03:02:50 +0000 | [diff] [blame] | 662 | #define _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS |
Eric Fiselier | b5eb1bf | 2017-01-04 23:56:00 +0000 | [diff] [blame] | 663 | #define _LIBCPP_TEMPLATE_VIS |
Martin Storsjö | 88890c2 | 2021-02-22 01:13:13 +0200 | [diff] [blame] | 664 | #define _LIBCPP_TEMPLATE_DATA_VIS |
Eric Fiselier | 1b57fa8 | 2016-09-15 22:27:07 +0000 | [diff] [blame] | 665 | #define _LIBCPP_ENUM_VIS |
Saleem Abdulrasool | ee302e4 | 2017-01-03 21:53:51 +0000 | [diff] [blame] | 666 | |
Saleem Abdulrasool | ee302e4 | 2017-01-03 21:53:51 +0000 | [diff] [blame] | 667 | #endif // defined(_LIBCPP_OBJECT_FORMAT_COFF) |
Eric Fiselier | 1b57fa8 | 2016-09-15 22:27:07 +0000 | [diff] [blame] | 668 | |
| 669 | #ifndef _LIBCPP_HIDDEN |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 670 | # if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) |
| 671 | # define _LIBCPP_HIDDEN __attribute__ ((__visibility__("hidden"))) |
| 672 | # else |
| 673 | # define _LIBCPP_HIDDEN |
| 674 | # endif |
Eric Fiselier | 1b57fa8 | 2016-09-15 22:27:07 +0000 | [diff] [blame] | 675 | #endif |
| 676 | |
Shoaib Meenai | 5331f49 | 2017-03-09 00:18:00 +0000 | [diff] [blame] | 677 | #ifndef _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 678 | # if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) |
Shoaib Meenai | 69c5741 | 2017-03-02 03:02:50 +0000 | [diff] [blame] | 679 | // The inline should be removed once PR32114 is resolved |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 680 | # define _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS inline _LIBCPP_HIDDEN |
| 681 | # else |
| 682 | # define _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS |
| 683 | # endif |
Shoaib Meenai | 5331f49 | 2017-03-09 00:18:00 +0000 | [diff] [blame] | 684 | #endif |
Shoaib Meenai | 69c5741 | 2017-03-02 03:02:50 +0000 | [diff] [blame] | 685 | |
Eric Fiselier | 1b57fa8 | 2016-09-15 22:27:07 +0000 | [diff] [blame] | 686 | #ifndef _LIBCPP_FUNC_VIS |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 687 | # if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) |
| 688 | # define _LIBCPP_FUNC_VIS __attribute__ ((__visibility__("default"))) |
| 689 | # else |
| 690 | # define _LIBCPP_FUNC_VIS |
| 691 | # endif |
Eric Fiselier | 1b57fa8 | 2016-09-15 22:27:07 +0000 | [diff] [blame] | 692 | #endif |
| 693 | |
| 694 | #ifndef _LIBCPP_TYPE_VIS |
Shoaib Meenai | f36e988 | 2016-12-05 19:40:12 +0000 | [diff] [blame] | 695 | # if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) |
Shoaib Meenai | 55f3a46 | 2017-03-02 03:22:18 +0000 | [diff] [blame] | 696 | # define _LIBCPP_TYPE_VIS __attribute__ ((__visibility__("default"))) |
Eric Fiselier | 1b57fa8 | 2016-09-15 22:27:07 +0000 | [diff] [blame] | 697 | # else |
Shoaib Meenai | f36e988 | 2016-12-05 19:40:12 +0000 | [diff] [blame] | 698 | # define _LIBCPP_TYPE_VIS |
Eric Fiselier | 1b57fa8 | 2016-09-15 22:27:07 +0000 | [diff] [blame] | 699 | # endif |
| 700 | #endif |
| 701 | |
Eric Fiselier | b5eb1bf | 2017-01-04 23:56:00 +0000 | [diff] [blame] | 702 | #ifndef _LIBCPP_TEMPLATE_VIS |
Shoaib Meenai | 55f3a46 | 2017-03-02 03:22:18 +0000 | [diff] [blame] | 703 | # if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) |
| 704 | # if __has_attribute(__type_visibility__) |
| 705 | # define _LIBCPP_TEMPLATE_VIS __attribute__ ((__type_visibility__("default"))) |
| 706 | # else |
| 707 | # define _LIBCPP_TEMPLATE_VIS __attribute__ ((__visibility__("default"))) |
| 708 | # endif |
| 709 | # else |
| 710 | # define _LIBCPP_TEMPLATE_VIS |
| 711 | # endif |
Eric Fiselier | 1b57fa8 | 2016-09-15 22:27:07 +0000 | [diff] [blame] | 712 | #endif |
| 713 | |
Martin Storsjö | 88890c2 | 2021-02-22 01:13:13 +0200 | [diff] [blame] | 714 | #ifndef _LIBCPP_TEMPLATE_DATA_VIS |
| 715 | # if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) |
| 716 | # define _LIBCPP_TEMPLATE_DATA_VIS __attribute__ ((__visibility__("default"))) |
| 717 | # else |
| 718 | # define _LIBCPP_TEMPLATE_DATA_VIS |
| 719 | # endif |
| 720 | #endif |
| 721 | |
Louis Dionne | 5254b37 | 2018-10-25 12:13:43 +0000 | [diff] [blame] | 722 | #ifndef _LIBCPP_EXPORTED_FROM_ABI |
Thomas Anderson | e13df2b | 2018-12-13 20:06:14 +0000 | [diff] [blame] | 723 | # if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) |
| 724 | # define _LIBCPP_EXPORTED_FROM_ABI __attribute__((__visibility__("default"))) |
| 725 | # else |
| 726 | # define _LIBCPP_EXPORTED_FROM_ABI |
| 727 | # endif |
Eric Fiselier | 9950507 | 2017-01-16 21:01:00 +0000 | [diff] [blame] | 728 | #endif |
| 729 | |
Shoaib Meenai | 2d71db4 | 2016-11-16 22:18:10 +0000 | [diff] [blame] | 730 | #ifndef _LIBCPP_OVERRIDABLE_FUNC_VIS |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 731 | #define _LIBCPP_OVERRIDABLE_FUNC_VIS _LIBCPP_FUNC_VIS |
Shoaib Meenai | 2d71db4 | 2016-11-16 22:18:10 +0000 | [diff] [blame] | 732 | #endif |
| 733 | |
Eric Fiselier | 1b57fa8 | 2016-09-15 22:27:07 +0000 | [diff] [blame] | 734 | #ifndef _LIBCPP_EXCEPTION_ABI |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 735 | # if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) |
| 736 | # define _LIBCPP_EXCEPTION_ABI __attribute__ ((__visibility__("default"))) |
| 737 | # else |
| 738 | # define _LIBCPP_EXCEPTION_ABI |
| 739 | # endif |
Eric Fiselier | 1b57fa8 | 2016-09-15 22:27:07 +0000 | [diff] [blame] | 740 | #endif |
| 741 | |
| 742 | #ifndef _LIBCPP_ENUM_VIS |
Shoaib Meenai | f36e988 | 2016-12-05 19:40:12 +0000 | [diff] [blame] | 743 | # if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) && __has_attribute(__type_visibility__) |
Eric Fiselier | 1b57fa8 | 2016-09-15 22:27:07 +0000 | [diff] [blame] | 744 | # define _LIBCPP_ENUM_VIS __attribute__ ((__type_visibility__("default"))) |
| 745 | # else |
| 746 | # define _LIBCPP_ENUM_VIS |
| 747 | # endif |
| 748 | #endif |
| 749 | |
| 750 | #ifndef _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS |
Shoaib Meenai | 491802e | 2021-01-12 10:29:03 -0800 | [diff] [blame] | 751 | # if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) |
Shoaib Meenai | 69c5741 | 2017-03-02 03:02:50 +0000 | [diff] [blame] | 752 | # define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS __attribute__ ((__visibility__("default"))) |
Eric Fiselier | 1b57fa8 | 2016-09-15 22:27:07 +0000 | [diff] [blame] | 753 | # else |
| 754 | # define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS |
| 755 | # endif |
| 756 | #endif |
| 757 | |
Shoaib Meenai | 5ac1067 | 2016-09-19 18:29:07 +0000 | [diff] [blame] | 758 | #ifndef _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 759 | #define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS |
Shoaib Meenai | 5ac1067 | 2016-09-19 18:29:07 +0000 | [diff] [blame] | 760 | #endif |
| 761 | |
Louis Dionne | 3a19799 | 2018-07-27 12:46:03 +0000 | [diff] [blame] | 762 | #if __has_attribute(internal_linkage) |
| 763 | # define _LIBCPP_INTERNAL_LINKAGE __attribute__ ((internal_linkage)) |
| 764 | #else |
| 765 | # define _LIBCPP_INTERNAL_LINKAGE _LIBCPP_ALWAYS_INLINE |
Eric Fiselier | 1b57fa8 | 2016-09-15 22:27:07 +0000 | [diff] [blame] | 766 | #endif |
| 767 | |
Louis Dionne | 3b8a03f | 2018-10-29 17:30:04 +0000 | [diff] [blame] | 768 | #if __has_attribute(exclude_from_explicit_instantiation) |
| 769 | # define _LIBCPP_EXCLUDE_FROM_EXPLICIT_INSTANTIATION __attribute__ ((__exclude_from_explicit_instantiation__)) |
| 770 | #else |
| 771 | // Try to approximate the effect of exclude_from_explicit_instantiation |
| 772 | // (which is that entities are not assumed to be provided by explicit |
Louis Dionne | a8548af | 2019-03-20 17:05:52 +0000 | [diff] [blame] | 773 | // template instantiations in the dylib) by always inlining those entities. |
Louis Dionne | 3b8a03f | 2018-10-29 17:30:04 +0000 | [diff] [blame] | 774 | # define _LIBCPP_EXCLUDE_FROM_EXPLICIT_INSTANTIATION _LIBCPP_ALWAYS_INLINE |
| 775 | #endif |
| 776 | |
Louis Dionne | 1821de4 | 2018-08-16 12:44:28 +0000 | [diff] [blame] | 777 | #ifndef _LIBCPP_HIDE_FROM_ABI_PER_TU |
| 778 | # ifndef _LIBCPP_HIDE_FROM_ABI_PER_TU_BY_DEFAULT |
| 779 | # define _LIBCPP_HIDE_FROM_ABI_PER_TU 0 |
| 780 | # else |
| 781 | # define _LIBCPP_HIDE_FROM_ABI_PER_TU 1 |
| 782 | # endif |
| 783 | #endif |
| 784 | |
Louis Dionne | 3a19799 | 2018-07-27 12:46:03 +0000 | [diff] [blame] | 785 | #ifndef _LIBCPP_HIDE_FROM_ABI |
Louis Dionne | 1821de4 | 2018-08-16 12:44:28 +0000 | [diff] [blame] | 786 | # if _LIBCPP_HIDE_FROM_ABI_PER_TU |
| 787 | # define _LIBCPP_HIDE_FROM_ABI _LIBCPP_HIDDEN _LIBCPP_INTERNAL_LINKAGE |
| 788 | # else |
Louis Dionne | 3b8a03f | 2018-10-29 17:30:04 +0000 | [diff] [blame] | 789 | # define _LIBCPP_HIDE_FROM_ABI _LIBCPP_HIDDEN _LIBCPP_EXCLUDE_FROM_EXPLICIT_INSTANTIATION |
Louis Dionne | 1821de4 | 2018-08-16 12:44:28 +0000 | [diff] [blame] | 790 | # endif |
Louis Dionne | 3a19799 | 2018-07-27 12:46:03 +0000 | [diff] [blame] | 791 | #endif |
| 792 | |
Louis Dionne | d797b8d | 2018-08-06 14:11:50 +0000 | [diff] [blame] | 793 | #ifdef _LIBCPP_BUILDING_LIBRARY |
| 794 | # if _LIBCPP_ABI_VERSION > 1 |
| 795 | # define _LIBCPP_HIDE_FROM_ABI_AFTER_V1 _LIBCPP_HIDE_FROM_ABI |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 796 | # else |
Louis Dionne | d797b8d | 2018-08-06 14:11:50 +0000 | [diff] [blame] | 797 | # define _LIBCPP_HIDE_FROM_ABI_AFTER_V1 |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 798 | # endif |
Louis Dionne | d797b8d | 2018-08-06 14:11:50 +0000 | [diff] [blame] | 799 | #else |
| 800 | # define _LIBCPP_HIDE_FROM_ABI_AFTER_V1 _LIBCPP_HIDE_FROM_ABI |
Eric Fiselier | 815ed73 | 2016-09-16 00:00:48 +0000 | [diff] [blame] | 801 | #endif |
| 802 | |
Louis Dionne | d797b8d | 2018-08-06 14:11:50 +0000 | [diff] [blame] | 803 | // Just so we can migrate to the new macros gradually. |
| 804 | #define _LIBCPP_INLINE_VISIBILITY _LIBCPP_HIDE_FROM_ABI |
Louis Dionne | d797b8d | 2018-08-06 14:11:50 +0000 | [diff] [blame] | 805 | |
Eric Fiselier | b9d04dc | 2018-10-30 02:02:00 +0000 | [diff] [blame] | 806 | // Inline namespaces are available in Clang/GCC/MSVC regardless of C++ dialect. |
Eric Fiselier | b33778a | 2018-10-30 21:44:53 +0000 | [diff] [blame] | 807 | #define _LIBCPP_BEGIN_NAMESPACE_STD namespace std { inline namespace _LIBCPP_ABI_NAMESPACE { |
Eric Fiselier | b9d04dc | 2018-10-30 02:02:00 +0000 | [diff] [blame] | 808 | #define _LIBCPP_END_NAMESPACE_STD } } |
Nikolas Klauser | 46ed0bb | 2022-02-01 22:38:27 +0100 | [diff] [blame] | 809 | #define _VSTD std |
Eric Fiselier | b9d04dc | 2018-10-30 02:02:00 +0000 | [diff] [blame] | 810 | _LIBCPP_BEGIN_NAMESPACE_STD _LIBCPP_END_NAMESPACE_STD |
| 811 | |
Nikolas Klauser | 46ed0bb | 2022-02-01 22:38:27 +0100 | [diff] [blame] | 812 | #if _LIBCPP_STD_VER > 14 |
Eric Fiselier | b9d04dc | 2018-10-30 02:02:00 +0000 | [diff] [blame] | 813 | #define _LIBCPP_BEGIN_NAMESPACE_FILESYSTEM \ |
| 814 | _LIBCPP_BEGIN_NAMESPACE_STD inline namespace __fs { namespace filesystem { |
| 815 | #else |
| 816 | #define _LIBCPP_BEGIN_NAMESPACE_FILESYSTEM \ |
| 817 | _LIBCPP_BEGIN_NAMESPACE_STD namespace __fs { namespace filesystem { |
| 818 | #endif |
| 819 | |
| 820 | #define _LIBCPP_END_NAMESPACE_FILESYSTEM \ |
| 821 | _LIBCPP_END_NAMESPACE_STD } } |
| 822 | |
Nikolas Klauser | a66d4db | 2022-02-04 14:28:19 +0100 | [diff] [blame] | 823 | #define _VSTD_FS std::__fs::filesystem |
Eric Fiselier | b9d04dc | 2018-10-30 02:02:00 +0000 | [diff] [blame] | 824 | |
Louis Dionne | 93f1fd7 | 2021-06-04 13:31:22 -0400 | [diff] [blame] | 825 | #if __has_attribute(__enable_if__) |
| 826 | # define _LIBCPP_PREFERRED_OVERLOAD __attribute__ ((__enable_if__(true, ""))) |
Eric Fiselier | 1b57fa8 | 2016-09-15 22:27:07 +0000 | [diff] [blame] | 827 | #endif |
| 828 | |
Eric Fiselier | 1af87ca | 2015-12-15 22:16:47 +0000 | [diff] [blame] | 829 | #ifndef _LIBCPP_HAS_NO_NOEXCEPT |
| 830 | # define _NOEXCEPT noexcept |
| 831 | # define _NOEXCEPT_(x) noexcept(x) |
| 832 | #else |
| 833 | # define _NOEXCEPT throw() |
| 834 | # define _NOEXCEPT_(x) |
| 835 | #endif |
| 836 | |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 837 | #ifdef _LIBCPP_HAS_NO_UNICODE_CHARS |
Howard Hinnant | aa87c0f | 2010-08-10 20:48:29 +0000 | [diff] [blame] | 838 | typedef unsigned short char16_t; |
| 839 | typedef unsigned int char32_t; |
Louis Dionne | 96fc5f5 | 2021-09-09 11:25:10 -0400 | [diff] [blame] | 840 | #endif |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 841 | |
Stephan Tolksdorf | 0efeb6c | 2014-03-26 19:45:52 +0000 | [diff] [blame] | 842 | #ifndef __SIZEOF_INT128__ |
| 843 | #define _LIBCPP_HAS_NO_INT128 |
| 844 | #endif |
| 845 | |
Eric Fiselier | c6f17cc | 2016-09-25 03:34:28 +0000 | [diff] [blame] | 846 | #ifdef _LIBCPP_CXX03_LANG |
Eric Fiselier | 2f05ab9 | 2019-06-18 20:50:25 +0000 | [diff] [blame] | 847 | # define static_assert(...) _Static_assert(__VA_ARGS__) |
| 848 | # define decltype(...) __decltype(__VA_ARGS__) |
Louis Dionne | 2b1ceaa | 2021-04-20 12:03:32 -0400 | [diff] [blame] | 849 | #endif // _LIBCPP_CXX03_LANG |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 850 | |
Eric Fiselier | 605af61 | 2019-06-21 13:56:13 +0000 | [diff] [blame] | 851 | #ifdef _LIBCPP_CXX03_LANG |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 852 | # define _LIBCPP_CONSTEXPR |
Howard Hinnant | 664183b | 2012-04-02 00:40:41 +0000 | [diff] [blame] | 853 | #else |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 854 | # define _LIBCPP_CONSTEXPR constexpr |
Howard Hinnant | 62c8c0b | 2010-09-06 19:10:31 +0000 | [diff] [blame] | 855 | #endif |
| 856 | |
Richard Smith | 55a75c8 | 2020-07-31 15:03:21 -0700 | [diff] [blame] | 857 | #ifndef __cpp_consteval |
| 858 | # define _LIBCPP_CONSTEVAL _LIBCPP_CONSTEXPR |
| 859 | #else |
| 860 | # define _LIBCPP_CONSTEVAL consteval |
| 861 | #endif |
| 862 | |
Arthur O'Dwyer | 654b4db | 2022-01-31 12:04:08 -0500 | [diff] [blame] | 863 | #if _LIBCPP_STD_VER <= 17 || !defined(__cpp_concepts) || __cpp_concepts < 201907L |
Mark de Wever | 1d4140e | 2021-02-20 09:13:16 +0100 | [diff] [blame] | 864 | #define _LIBCPP_HAS_NO_CONCEPTS |
| 865 | #endif |
| 866 | |
Nuno Lopes | 22df2dc | 2012-06-28 16:47:34 +0000 | [diff] [blame] | 867 | #ifdef __GNUC__ |
Louis Dionne | e147b35 | 2019-02-26 06:34:42 +0000 | [diff] [blame] | 868 | # define _LIBCPP_NOALIAS __attribute__((__malloc__)) |
Nuno Lopes | 22df2dc | 2012-06-28 16:47:34 +0000 | [diff] [blame] | 869 | #else |
Louis Dionne | e147b35 | 2019-02-26 06:34:42 +0000 | [diff] [blame] | 870 | # define _LIBCPP_NOALIAS |
Nuno Lopes | 22df2dc | 2012-06-28 16:47:34 +0000 | [diff] [blame] | 871 | #endif |
| 872 | |
Louis Dionne | 9c660c6 | 2021-06-02 10:41:37 -0400 | [diff] [blame] | 873 | #if __has_attribute(using_if_exists) |
| 874 | # define _LIBCPP_USING_IF_EXISTS __attribute__((using_if_exists)) |
| 875 | #else |
| 876 | # define _LIBCPP_USING_IF_EXISTS |
| 877 | #endif |
| 878 | |
Howard Hinnant | 09bc0c9 | 2011-12-02 19:36:40 +0000 | [diff] [blame] | 879 | #ifdef _LIBCPP_HAS_NO_STRONG_ENUMS |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 880 | # define _LIBCPP_DECLARE_STRONG_ENUM(x) struct _LIBCPP_TYPE_VIS x { enum __lx |
| 881 | # define _LIBCPP_DECLARE_STRONG_ENUM_EPILOG(x) \ |
| 882 | __lx __v_; \ |
Louis Dionne | 16fe295 | 2018-07-11 23:14:33 +0000 | [diff] [blame] | 883 | _LIBCPP_INLINE_VISIBILITY x(__lx __v) : __v_(__v) {} \ |
| 884 | _LIBCPP_INLINE_VISIBILITY explicit x(int __v) : __v_(static_cast<__lx>(__v)) {} \ |
| 885 | _LIBCPP_INLINE_VISIBILITY operator int() const {return __v_;} \ |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 886 | }; |
Howard Hinnant | 09bc0c9 | 2011-12-02 19:36:40 +0000 | [diff] [blame] | 887 | #else // _LIBCPP_HAS_NO_STRONG_ENUMS |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 888 | # define _LIBCPP_DECLARE_STRONG_ENUM(x) enum class _LIBCPP_ENUM_VIS x |
| 889 | # define _LIBCPP_DECLARE_STRONG_ENUM_EPILOG(x) |
Louis Dionne | 2b1ceaa | 2021-04-20 12:03:32 -0400 | [diff] [blame] | 890 | #endif // _LIBCPP_HAS_NO_STRONG_ENUMS |
Howard Hinnant | 09bc0c9 | 2011-12-02 19:36:40 +0000 | [diff] [blame] | 891 | |
Louis Dionne | ba40078 | 2020-10-02 15:02:52 -0400 | [diff] [blame] | 892 | // _LIBCPP_DEBUG potential values: |
| 893 | // - undefined: No assertions. This is the default. |
| 894 | // - 0: Basic assertions |
Danila Kutenin | a9cbea1 | 2021-11-16 15:48:59 -0500 | [diff] [blame] | 895 | // - 1: Basic assertions + iterator validity checks + unspecified behavior randomization. |
| 896 | # if !defined(_LIBCPP_DEBUG) |
| 897 | # define _LIBCPP_DEBUG_LEVEL 0 |
| 898 | # elif _LIBCPP_DEBUG == 0 |
| 899 | # define _LIBCPP_DEBUG_LEVEL 1 |
| 900 | # elif _LIBCPP_DEBUG == 1 |
| 901 | # define _LIBCPP_DEBUG_LEVEL 2 |
| 902 | # else |
| 903 | # error Supported values for _LIBCPP_DEBUG are 0 and 1 |
| 904 | # endif |
| 905 | |
| 906 | # if _LIBCPP_DEBUG_LEVEL >= 2 && !defined(_LIBCPP_CXX03_LANG) |
| 907 | # define _LIBCPP_DEBUG_RANDOMIZE_UNSPECIFIED_STABILITY |
| 908 | # endif |
| 909 | |
| 910 | # if defined(_LIBCPP_DEBUG_RANDOMIZE_UNSPECIFIED_STABILITY) |
| 911 | # if defined(_LIBCPP_CXX03_LANG) |
| 912 | # error Support for unspecified stability is only for C++11 and higher |
| 913 | # endif |
| 914 | # define _LIBCPP_DEBUG_RANDOMIZE_RANGE(__first, __last) \ |
| 915 | do { \ |
| 916 | if (!__builtin_is_constant_evaluated()) \ |
| 917 | _VSTD::shuffle(__first, __last, __libcpp_debug_randomizer()); \ |
| 918 | } while (false) |
| 919 | # else |
| 920 | # define _LIBCPP_DEBUG_RANDOMIZE_RANGE(__first, __last) \ |
| 921 | do { \ |
| 922 | } while (false) |
| 923 | # endif |
Howard Hinnant | 8ea9824 | 2013-08-23 17:37:05 +0000 | [diff] [blame] | 924 | |
Louis Dionne | 732192e | 2021-06-09 09:41:27 -0400 | [diff] [blame] | 925 | // Libc++ allows disabling extern template instantiation declarations by |
| 926 | // means of users defining _LIBCPP_DISABLE_EXTERN_TEMPLATE. |
| 927 | // |
| 928 | // Furthermore, when the Debug mode is enabled, we disable extern declarations |
| 929 | // when building user code because we don't want to use the functions compiled |
| 930 | // in the library, which might not have had the debug mode enabled when built. |
| 931 | // However, some extern declarations need to be used, because code correctness |
| 932 | // depends on it (several instances in <locale>). Those special declarations |
| 933 | // are declared with _LIBCPP_EXTERN_TEMPLATE_EVEN_IN_DEBUG_MODE, which is enabled |
| 934 | // even when the debug mode is enabled. |
| 935 | #if defined(_LIBCPP_DISABLE_EXTERN_TEMPLATE) |
| 936 | # define _LIBCPP_EXTERN_TEMPLATE(...) /* nothing */ |
| 937 | # define _LIBCPP_EXTERN_TEMPLATE_EVEN_IN_DEBUG_MODE(...) /* nothing */ |
| 938 | #elif _LIBCPP_DEBUG_LEVEL >= 1 && !defined(_LIBCPP_BUILDING_LIBRARY) |
| 939 | # define _LIBCPP_EXTERN_TEMPLATE(...) /* nothing */ |
| 940 | # define _LIBCPP_EXTERN_TEMPLATE_EVEN_IN_DEBUG_MODE(...) extern template __VA_ARGS__; |
| 941 | #else |
| 942 | # define _LIBCPP_EXTERN_TEMPLATE(...) extern template __VA_ARGS__; |
| 943 | # define _LIBCPP_EXTERN_TEMPLATE_EVEN_IN_DEBUG_MODE(...) extern template __VA_ARGS__; |
Eric Fiselier | 510690e | 2019-12-13 15:42:07 -0500 | [diff] [blame] | 944 | #endif |
| 945 | |
Martin Storsjo | 5482ac6 | 2017-11-23 10:38:18 +0000 | [diff] [blame] | 946 | #if defined(__APPLE__) || defined(__FreeBSD__) || defined(_LIBCPP_MSVCRT_LIKE) || \ |
Louis Dionne | 59426ee | 2021-08-24 11:40:05 -0400 | [diff] [blame] | 947 | defined(__sun__) || defined(__NetBSD__) |
Alexis Hunt | 1adf2aa | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 948 | #define _LIBCPP_LOCALE__L_EXTENSIONS 1 |
| 949 | #endif |
Yaron Keren | 804da95 | 2013-12-20 13:19:45 +0000 | [diff] [blame] | 950 | |
Marshall Clow | 82378c0 | 2013-03-18 19:34:07 +0000 | [diff] [blame] | 951 | #ifdef __FreeBSD__ |
David Chisnall | 6ae8f35 | 2011-11-13 17:15:33 +0000 | [diff] [blame] | 952 | #define _DECLARE_C99_LDBL_MATH 1 |
| 953 | #endif |
Alexis Hunt | 1adf2aa | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 954 | |
Reid Kleckner | 85c65e6 | 2018-04-19 22:12:10 +0000 | [diff] [blame] | 955 | // If we are getting operator new from the MSVC CRT, then allocation overloads |
| 956 | // for align_val_t were added in 19.12, aka VS 2017 version 15.3. |
| 957 | #if defined(_LIBCPP_MSVCRT) && defined(_MSC_VER) && _MSC_VER < 1912 |
Louis Dionne | 2e206ca | 2018-12-17 22:22:44 +0000 | [diff] [blame] | 958 | # define _LIBCPP_HAS_NO_LIBRARY_ALIGNED_ALLOCATION |
Eric Fiselier | 85f6633 | 2019-03-05 01:57:01 +0000 | [diff] [blame] | 959 | #elif defined(_LIBCPP_ABI_VCRUNTIME) && !defined(__cpp_aligned_new) |
Louis Dionne | a8548af | 2019-03-20 17:05:52 +0000 | [diff] [blame] | 960 | // We're deferring to Microsoft's STL to provide aligned new et al. We don't |
Thomas Anderson | e043918 | 2019-01-30 19:08:32 +0000 | [diff] [blame] | 961 | // have it unless the language feature test macro is defined. |
| 962 | # define _LIBCPP_HAS_NO_LIBRARY_ALIGNED_ALLOCATION |
Zbigniew Sarbinowski | 001f5d0 | 2020-11-12 14:40:35 -0500 | [diff] [blame] | 963 | #elif defined(__MVS__) |
| 964 | # define _LIBCPP_HAS_NO_LIBRARY_ALIGNED_ALLOCATION |
Reid Kleckner | 85c65e6 | 2018-04-19 22:12:10 +0000 | [diff] [blame] | 965 | #endif |
| 966 | |
Louis Dionne | 93f1fd7 | 2021-06-04 13:31:22 -0400 | [diff] [blame] | 967 | #if defined(_LIBCPP_HAS_NO_LIBRARY_ALIGNED_ALLOCATION) || \ |
| 968 | (!defined(__cpp_aligned_new) || __cpp_aligned_new < 201606) |
Louis Dionne | e5aafbf | 2018-08-10 13:24:56 +0000 | [diff] [blame] | 969 | # define _LIBCPP_HAS_NO_ALIGNED_ALLOCATION |
| 970 | #endif |
Eric Fiselier | 06548ab | 2018-03-22 04:42:56 +0000 | [diff] [blame] | 971 | |
Marshall Clow | 82378c0 | 2013-03-18 19:34:07 +0000 | [diff] [blame] | 972 | #if defined(__APPLE__) || defined(__FreeBSD__) |
Howard Hinnant | f312e3e | 2011-09-28 23:39:33 +0000 | [diff] [blame] | 973 | #define _LIBCPP_HAS_DEFAULTRUNELOCALE |
Alexis Hunt | 5a4dd56 | 2011-07-09 01:09:31 +0000 | [diff] [blame] | 974 | #endif |
| 975 | |
Marshall Clow | 82378c0 | 2013-03-18 19:34:07 +0000 | [diff] [blame] | 976 | #if defined(__APPLE__) || defined(__FreeBSD__) || defined(__sun__) |
Alexis Hunt | c2017f1 | 2011-07-09 03:40:04 +0000 | [diff] [blame] | 977 | #define _LIBCPP_WCTYPE_IS_MASK |
| 978 | #endif |
| 979 | |
Marshall Clow | 8732fed | 2018-12-11 04:35:44 +0000 | [diff] [blame] | 980 | #if _LIBCPP_STD_VER <= 17 || !defined(__cpp_char8_t) |
Arthur O'Dwyer | afa5d5f | 2021-04-18 21:47:08 -0400 | [diff] [blame] | 981 | #define _LIBCPP_HAS_NO_CHAR8_T |
Marshall Clow | 8732fed | 2018-12-11 04:35:44 +0000 | [diff] [blame] | 982 | #endif |
| 983 | |
Louis Dionne | 481a266 | 2018-09-23 18:35:00 +0000 | [diff] [blame] | 984 | // Deprecation macros. |
Louis Dionne | ded5b77 | 2019-03-12 20:10:06 +0000 | [diff] [blame] | 985 | // |
| 986 | // Deprecations warnings are always enabled, except when users explicitly opt-out |
| 987 | // by defining _LIBCPP_DISABLE_DEPRECATION_WARNINGS. |
| 988 | #if !defined(_LIBCPP_DISABLE_DEPRECATION_WARNINGS) |
Louis Dionne | 481a266 | 2018-09-23 18:35:00 +0000 | [diff] [blame] | 989 | # if __has_attribute(deprecated) |
| 990 | # define _LIBCPP_DEPRECATED __attribute__ ((deprecated)) |
| 991 | # elif _LIBCPP_STD_VER > 11 |
| 992 | # define _LIBCPP_DEPRECATED [[deprecated]] |
| 993 | # else |
| 994 | # define _LIBCPP_DEPRECATED |
| 995 | # endif |
Marshall Clow | a2cbe0d | 2013-09-28 18:35:31 +0000 | [diff] [blame] | 996 | #else |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 997 | # define _LIBCPP_DEPRECATED |
Marshall Clow | a2cbe0d | 2013-09-28 18:35:31 +0000 | [diff] [blame] | 998 | #endif |
| 999 | |
Louis Dionne | 481a266 | 2018-09-23 18:35:00 +0000 | [diff] [blame] | 1000 | #if !defined(_LIBCPP_CXX03_LANG) |
| 1001 | # define _LIBCPP_DEPRECATED_IN_CXX11 _LIBCPP_DEPRECATED |
| 1002 | #else |
| 1003 | # define _LIBCPP_DEPRECATED_IN_CXX11 |
| 1004 | #endif |
| 1005 | |
Nikolas Klauser | a66d4db | 2022-02-04 14:28:19 +0100 | [diff] [blame] | 1006 | #if _LIBCPP_STD_VER > 11 |
Louis Dionne | 481a266 | 2018-09-23 18:35:00 +0000 | [diff] [blame] | 1007 | # define _LIBCPP_DEPRECATED_IN_CXX14 _LIBCPP_DEPRECATED |
| 1008 | #else |
| 1009 | # define _LIBCPP_DEPRECATED_IN_CXX14 |
| 1010 | #endif |
| 1011 | |
Nikolas Klauser | a66d4db | 2022-02-04 14:28:19 +0100 | [diff] [blame] | 1012 | #if _LIBCPP_STD_VER > 14 |
Louis Dionne | 481a266 | 2018-09-23 18:35:00 +0000 | [diff] [blame] | 1013 | # define _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_DEPRECATED |
| 1014 | #else |
| 1015 | # define _LIBCPP_DEPRECATED_IN_CXX17 |
| 1016 | #endif |
| 1017 | |
Marek Kurdej | c984814 | 2020-11-26 10:07:16 +0100 | [diff] [blame] | 1018 | #if _LIBCPP_STD_VER > 17 |
| 1019 | # define _LIBCPP_DEPRECATED_IN_CXX20 _LIBCPP_DEPRECATED |
| 1020 | #else |
| 1021 | # define _LIBCPP_DEPRECATED_IN_CXX20 |
| 1022 | #endif |
| 1023 | |
Arthur O'Dwyer | afa5d5f | 2021-04-18 21:47:08 -0400 | [diff] [blame] | 1024 | #if !defined(_LIBCPP_HAS_NO_CHAR8_T) |
Martin Storsjö | e3a7197 | 2020-10-26 13:18:46 +0200 | [diff] [blame] | 1025 | # define _LIBCPP_DEPRECATED_WITH_CHAR8_T _LIBCPP_DEPRECATED |
| 1026 | #else |
| 1027 | # define _LIBCPP_DEPRECATED_WITH_CHAR8_T |
| 1028 | #endif |
| 1029 | |
Richard Smith | bfc256b | 2019-10-19 00:06:00 +0000 | [diff] [blame] | 1030 | // Macros to enter and leave a state where deprecation warnings are suppressed. |
Louis Dionne | 93f1fd7 | 2021-06-04 13:31:22 -0400 | [diff] [blame] | 1031 | #if defined(_LIBCPP_COMPILER_CLANG_BASED) || defined(_LIBCPP_COMPILER_GCC) |
| 1032 | # define _LIBCPP_SUPPRESS_DEPRECATED_PUSH \ |
| 1033 | _Pragma("GCC diagnostic push") \ |
Louis Dionne | af6be62 | 2021-07-27 17:30:47 -0400 | [diff] [blame] | 1034 | _Pragma("GCC diagnostic ignored \"-Wdeprecated\"") \ |
| 1035 | _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") |
Louis Dionne | 93f1fd7 | 2021-06-04 13:31:22 -0400 | [diff] [blame] | 1036 | # define _LIBCPP_SUPPRESS_DEPRECATED_POP \ |
| 1037 | _Pragma("GCC diagnostic pop") |
| 1038 | #else |
| 1039 | # define _LIBCPP_SUPPRESS_DEPRECATED_PUSH |
| 1040 | # define _LIBCPP_SUPPRESS_DEPRECATED_POP |
Richard Smith | bfc256b | 2019-10-19 00:06:00 +0000 | [diff] [blame] | 1041 | #endif |
| 1042 | |
Marshall Clow | 1045cee | 2013-07-15 14:57:19 +0000 | [diff] [blame] | 1043 | #if _LIBCPP_STD_VER <= 11 |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1044 | # define _LIBCPP_EXPLICIT_AFTER_CXX11 |
Marshall Clow | 1045cee | 2013-07-15 14:57:19 +0000 | [diff] [blame] | 1045 | #else |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1046 | # define _LIBCPP_EXPLICIT_AFTER_CXX11 explicit |
Marshall Clow | 1045cee | 2013-07-15 14:57:19 +0000 | [diff] [blame] | 1047 | #endif |
| 1048 | |
Louis Dionne | e3594f1 | 2021-08-24 11:58:36 -0400 | [diff] [blame] | 1049 | #if _LIBCPP_STD_VER > 11 |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1050 | # define _LIBCPP_CONSTEXPR_AFTER_CXX11 constexpr |
Eric Fiselier | b4c0c66 | 2014-07-17 05:16:18 +0000 | [diff] [blame] | 1051 | #else |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1052 | # define _LIBCPP_CONSTEXPR_AFTER_CXX11 |
Eric Fiselier | b4c0c66 | 2014-07-17 05:16:18 +0000 | [diff] [blame] | 1053 | #endif |
| 1054 | |
Louis Dionne | e3594f1 | 2021-08-24 11:58:36 -0400 | [diff] [blame] | 1055 | #if _LIBCPP_STD_VER > 14 |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1056 | # define _LIBCPP_CONSTEXPR_AFTER_CXX14 constexpr |
Eric Fiselier | 0b3bfbe | 2016-03-17 03:30:56 +0000 | [diff] [blame] | 1057 | #else |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1058 | # define _LIBCPP_CONSTEXPR_AFTER_CXX14 |
Eric Fiselier | 0b3bfbe | 2016-03-17 03:30:56 +0000 | [diff] [blame] | 1059 | #endif |
| 1060 | |
Louis Dionne | e3594f1 | 2021-08-24 11:58:36 -0400 | [diff] [blame] | 1061 | #if _LIBCPP_STD_VER > 17 |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1062 | # define _LIBCPP_CONSTEXPR_AFTER_CXX17 constexpr |
Marshall Clow | 2a5c421 | 2017-11-14 22:26:50 +0000 | [diff] [blame] | 1063 | #else |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1064 | # define _LIBCPP_CONSTEXPR_AFTER_CXX17 |
Marshall Clow | 2a5c421 | 2017-11-14 22:26:50 +0000 | [diff] [blame] | 1065 | #endif |
| 1066 | |
Roman Lebedev | b5959fa | 2018-09-22 17:54:48 +0000 | [diff] [blame] | 1067 | #if __has_cpp_attribute(nodiscard) || defined(_LIBCPP_COMPILER_MSVC) |
Louis Dionne | 9118292 | 2021-08-30 16:01:38 -0400 | [diff] [blame] | 1068 | # define _LIBCPP_NODISCARD [[nodiscard]] |
Marek Kurdej | f319792 | 2021-04-01 08:29:55 +0200 | [diff] [blame] | 1069 | #elif defined(_LIBCPP_COMPILER_CLANG_BASED) && !defined(_LIBCPP_CXX03_LANG) |
Louis Dionne | 9118292 | 2021-08-30 16:01:38 -0400 | [diff] [blame] | 1070 | # define _LIBCPP_NODISCARD [[clang::warn_unused_result]] |
Roman Lebedev | b5959fa | 2018-09-22 17:54:48 +0000 | [diff] [blame] | 1071 | #else |
| 1072 | // We can't use GCC's [[gnu::warn_unused_result]] and |
| 1073 | // __attribute__((warn_unused_result)), because GCC does not silence them via |
| 1074 | // (void) cast. |
Louis Dionne | 9118292 | 2021-08-30 16:01:38 -0400 | [diff] [blame] | 1075 | # define _LIBCPP_NODISCARD |
Roman Lebedev | b5959fa | 2018-09-22 17:54:48 +0000 | [diff] [blame] | 1076 | #endif |
| 1077 | |
| 1078 | // _LIBCPP_NODISCARD_EXT may be used to apply [[nodiscard]] to entities not |
| 1079 | // specified as such as an extension. |
| 1080 | #if defined(_LIBCPP_ENABLE_NODISCARD) && !defined(_LIBCPP_DISABLE_NODISCARD_EXT) |
Louis Dionne | 9118292 | 2021-08-30 16:01:38 -0400 | [diff] [blame] | 1081 | # define _LIBCPP_NODISCARD_EXT _LIBCPP_NODISCARD |
Roman Lebedev | b5959fa | 2018-09-22 17:54:48 +0000 | [diff] [blame] | 1082 | #else |
| 1083 | # define _LIBCPP_NODISCARD_EXT |
| 1084 | #endif |
| 1085 | |
| 1086 | #if !defined(_LIBCPP_DISABLE_NODISCARD_AFTER_CXX17) && \ |
| 1087 | (_LIBCPP_STD_VER > 17 || defined(_LIBCPP_ENABLE_NODISCARD)) |
Louis Dionne | 9118292 | 2021-08-30 16:01:38 -0400 | [diff] [blame] | 1088 | # define _LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_NODISCARD |
Marshall Clow | 2a5c421 | 2017-11-14 22:26:50 +0000 | [diff] [blame] | 1089 | #else |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1090 | # define _LIBCPP_NODISCARD_AFTER_CXX17 |
Marshall Clow | 2a5c421 | 2017-11-14 22:26:50 +0000 | [diff] [blame] | 1091 | #endif |
| 1092 | |
Louis Dionne | a39f1ef | 2019-04-17 18:20:19 +0000 | [diff] [blame] | 1093 | #if __has_attribute(no_destroy) |
| 1094 | # define _LIBCPP_NO_DESTROY __attribute__((__no_destroy__)) |
| 1095 | #else |
| 1096 | # define _LIBCPP_NO_DESTROY |
| 1097 | #endif |
| 1098 | |
Marshall Clow | 2cd9d37 | 2014-05-08 14:14:06 +0000 | [diff] [blame] | 1099 | #ifndef _LIBCPP_HAS_NO_ASAN |
Azat Khuzhin | cdfb87f | 2020-12-17 16:19:50 -0500 | [diff] [blame] | 1100 | extern "C" _LIBCPP_FUNC_VIS void __sanitizer_annotate_contiguous_container( |
Marshall Clow | 2cd9d37 | 2014-05-08 14:14:06 +0000 | [diff] [blame] | 1101 | const void *, const void *, const void *, const void *); |
| 1102 | #endif |
| 1103 | |
Howard Hinnant | 1308788 | 2013-10-04 21:24:21 +0000 | [diff] [blame] | 1104 | // Try to find out if RTTI is disabled. |
Marek Kurdej | f319792 | 2021-04-01 08:29:55 +0200 | [diff] [blame] | 1105 | #if defined(_LIBCPP_COMPILER_CLANG_BASED) && !__has_feature(cxx_rtti) |
Louis Dionne | ef0c662 | 2020-07-14 16:28:41 -0400 | [diff] [blame] | 1106 | # define _LIBCPP_NO_RTTI |
| 1107 | #elif defined(__GNUC__) && !defined(__GXX_RTTI) |
| 1108 | # define _LIBCPP_NO_RTTI |
| 1109 | #elif defined(_LIBCPP_COMPILER_MSVC) && !defined(_CPPRTTI) |
| 1110 | # define _LIBCPP_NO_RTTI |
Howard Hinnant | 1308788 | 2013-10-04 21:24:21 +0000 | [diff] [blame] | 1111 | #endif |
| 1112 | |
Howard Hinnant | 33f0472 | 2013-10-04 23:56:37 +0000 | [diff] [blame] | 1113 | #ifndef _LIBCPP_WEAK |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1114 | #define _LIBCPP_WEAK __attribute__((__weak__)) |
Howard Hinnant | 33f0472 | 2013-10-04 23:56:37 +0000 | [diff] [blame] | 1115 | #endif |
| 1116 | |
Asiri Rathnayake | fa2e203 | 2016-05-06 14:06:29 +0000 | [diff] [blame] | 1117 | // Thread API |
Eric Fiselier | bfd4553 | 2017-01-06 23:15:16 +0000 | [diff] [blame] | 1118 | #if !defined(_LIBCPP_HAS_NO_THREADS) && \ |
Asiri Rathnayake | c07f0be | 2017-02-27 16:10:57 +0000 | [diff] [blame] | 1119 | !defined(_LIBCPP_HAS_THREAD_API_PTHREAD) && \ |
Eric Fiselier | d8a6c89 | 2017-05-10 21:34:58 +0000 | [diff] [blame] | 1120 | !defined(_LIBCPP_HAS_THREAD_API_WIN32) && \ |
Asiri Rathnayake | c07f0be | 2017-02-27 16:10:57 +0000 | [diff] [blame] | 1121 | !defined(_LIBCPP_HAS_THREAD_API_EXTERNAL) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1122 | # if defined(__FreeBSD__) || \ |
Dan Gohman | 280fd6b | 2019-05-01 16:47:30 +0000 | [diff] [blame] | 1123 | defined(__wasi__) || \ |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1124 | defined(__NetBSD__) || \ |
Brad Smith | f6f5509 | 2021-01-12 14:16:15 -0500 | [diff] [blame] | 1125 | defined(__OpenBSD__) || \ |
Xiang Xiao | 8552923 | 2020-11-18 16:16:18 -0500 | [diff] [blame] | 1126 | defined(__NuttX__) || \ |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1127 | defined(__linux__) || \ |
Louis Dionne | 3cfcaeb | 2018-11-20 21:14:05 +0000 | [diff] [blame] | 1128 | defined(__GNU__) || \ |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1129 | defined(__APPLE__) || \ |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1130 | defined(__sun__) || \ |
Zbigniew Sarbinowski | ca6367d | 2020-12-05 00:13:23 +0000 | [diff] [blame] | 1131 | defined(__MVS__) || \ |
Martin Storsjö | c86337b | 2021-10-01 23:44:17 +0300 | [diff] [blame] | 1132 | defined(_AIX) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1133 | # define _LIBCPP_HAS_THREAD_API_PTHREAD |
Petr Hosek | d0e7fe4 | 2019-12-04 10:38:22 -0800 | [diff] [blame] | 1134 | # elif defined(__Fuchsia__) |
Petr Hosek | e6ad6e4 | 2020-01-16 12:12:38 -0800 | [diff] [blame] | 1135 | // TODO(44575): Switch to C11 thread API when possible. |
| 1136 | # define _LIBCPP_HAS_THREAD_API_PTHREAD |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1137 | # elif defined(_LIBCPP_WIN32API) |
| 1138 | # define _LIBCPP_HAS_THREAD_API_WIN32 |
| 1139 | # else |
| 1140 | # error "No thread API" |
| 1141 | # endif // _LIBCPP_HAS_THREAD_API |
Asiri Rathnayake | fa2e203 | 2016-05-06 14:06:29 +0000 | [diff] [blame] | 1142 | #endif // _LIBCPP_HAS_NO_THREADS |
| 1143 | |
Dan Albert | ad29301 | 2019-09-18 18:13:32 +0000 | [diff] [blame] | 1144 | #if defined(_LIBCPP_HAS_THREAD_API_PTHREAD) |
| 1145 | #if defined(__ANDROID__) && __ANDROID_API__ >= 30 |
| 1146 | #define _LIBCPP_HAS_COND_CLOCKWAIT |
| 1147 | #elif defined(_LIBCPP_GLIBC_PREREQ) |
| 1148 | #if _LIBCPP_GLIBC_PREREQ(2, 30) |
| 1149 | #define _LIBCPP_HAS_COND_CLOCKWAIT |
| 1150 | #endif |
| 1151 | #endif |
| 1152 | #endif |
| 1153 | |
Ben Craig | 5593c4f | 2016-05-25 17:40:09 +0000 | [diff] [blame] | 1154 | #if defined(_LIBCPP_HAS_NO_THREADS) && defined(_LIBCPP_HAS_THREAD_API_PTHREAD) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1155 | #error _LIBCPP_HAS_THREAD_API_PTHREAD may only be defined when \ |
| 1156 | _LIBCPP_HAS_NO_THREADS is not defined. |
Ben Craig | 5593c4f | 2016-05-25 17:40:09 +0000 | [diff] [blame] | 1157 | #endif |
Asiri Rathnayake | fa2e203 | 2016-05-06 14:06:29 +0000 | [diff] [blame] | 1158 | |
Asiri Rathnayake | 94340d2 | 2016-09-11 21:46:40 +0000 | [diff] [blame] | 1159 | #if defined(_LIBCPP_HAS_NO_THREADS) && defined(_LIBCPP_HAS_THREAD_API_EXTERNAL) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1160 | #error _LIBCPP_HAS_THREAD_API_EXTERNAL may not be defined when \ |
| 1161 | _LIBCPP_HAS_NO_THREADS is defined. |
Asiri Rathnayake | 94340d2 | 2016-09-11 21:46:40 +0000 | [diff] [blame] | 1162 | #endif |
| 1163 | |
Eric Fiselier | 715b416 | 2014-12-06 20:09:11 +0000 | [diff] [blame] | 1164 | #if defined(_LIBCPP_HAS_NO_MONOTONIC_CLOCK) && !defined(_LIBCPP_HAS_NO_THREADS) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1165 | #error _LIBCPP_HAS_NO_MONOTONIC_CLOCK may only be defined when \ |
| 1166 | _LIBCPP_HAS_NO_THREADS is defined. |
Eric Fiselier | 715b416 | 2014-12-06 20:09:11 +0000 | [diff] [blame] | 1167 | #endif |
| 1168 | |
Nico Weber | 6b58e1d | 2019-07-30 14:32:47 +0000 | [diff] [blame] | 1169 | #if !defined(_LIBCPP_HAS_NO_THREADS) && !defined(__STDCPP_THREADS__) |
| 1170 | #define __STDCPP_THREADS__ 1 |
| 1171 | #endif |
| 1172 | |
Louis Dionne | 66c58fd | 2019-07-25 20:29:20 +0000 | [diff] [blame] | 1173 | // The glibc and Bionic implementation of pthreads implements |
Eric Fiselier | 256466e | 2019-07-07 17:24:03 +0000 | [diff] [blame] | 1174 | // pthread_mutex_destroy as nop for regular mutexes. Additionally, Win32 |
| 1175 | // mutexes have no destroy mechanism. |
Louis Dionne | 66c58fd | 2019-07-25 20:29:20 +0000 | [diff] [blame] | 1176 | // |
| 1177 | // This optimization can't be performed on Apple platforms, where |
| 1178 | // pthread_mutex_destroy can allow the kernel to release resources. |
| 1179 | // See https://llvm.org/D64298 for details. |
| 1180 | // |
| 1181 | // TODO(EricWF): Enable this optimization on Bionic after speaking to their |
| 1182 | // respective stakeholders. |
Eric Fiselier | 256466e | 2019-07-07 17:24:03 +0000 | [diff] [blame] | 1183 | #if (defined(_LIBCPP_HAS_THREAD_API_PTHREAD) && defined(__GLIBC__)) \ |
Petr Hosek | d0e7fe4 | 2019-12-04 10:38:22 -0800 | [diff] [blame] | 1184 | || (defined(_LIBCPP_HAS_THREAD_API_C11) && defined(__Fuchsia__)) \ |
Eric Fiselier | 256466e | 2019-07-07 17:24:03 +0000 | [diff] [blame] | 1185 | || defined(_LIBCPP_HAS_THREAD_API_WIN32) |
Eric Fiselier | f6dac86 | 2019-07-07 01:20:54 +0000 | [diff] [blame] | 1186 | # define _LIBCPP_HAS_TRIVIAL_MUTEX_DESTRUCTION |
| 1187 | #endif |
| 1188 | |
Eric Fiselier | 256466e | 2019-07-07 17:24:03 +0000 | [diff] [blame] | 1189 | // Destroying a condvar is a nop on Windows. |
Louis Dionne | 66c58fd | 2019-07-25 20:29:20 +0000 | [diff] [blame] | 1190 | // |
| 1191 | // This optimization can't be performed on Apple platforms, where |
| 1192 | // pthread_cond_destroy can allow the kernel to release resources. |
| 1193 | // See https://llvm.org/D64298 for details. |
| 1194 | // |
Eric Fiselier | 256466e | 2019-07-07 17:24:03 +0000 | [diff] [blame] | 1195 | // TODO(EricWF): This is potentially true for some pthread implementations |
| 1196 | // as well. |
Petr Hosek | d0e7fe4 | 2019-12-04 10:38:22 -0800 | [diff] [blame] | 1197 | #if (defined(_LIBCPP_HAS_THREAD_API_C11) && defined(__Fuchsia__)) || \ |
| 1198 | defined(_LIBCPP_HAS_THREAD_API_WIN32) |
Eric Fiselier | 256466e | 2019-07-07 17:24:03 +0000 | [diff] [blame] | 1199 | # define _LIBCPP_HAS_TRIVIAL_CONDVAR_DESTRUCTION |
| 1200 | #endif |
| 1201 | |
Dimitry Andric | 2e72c80 | 2019-09-07 22:18:20 +0000 | [diff] [blame] | 1202 | // Some systems do not provide gets() in their C library, for security reasons. |
Louis Dionne | 93f1fd7 | 2021-06-04 13:31:22 -0400 | [diff] [blame] | 1203 | #if defined(_LIBCPP_MSVCRT) || \ |
| 1204 | (defined(__FreeBSD_version) && __FreeBSD_version >= 1300043) || \ |
| 1205 | defined(__OpenBSD__) |
| 1206 | # define _LIBCPP_C_HAS_NO_GETS |
Dimitry Andric | 2e72c80 | 2019-09-07 22:18:20 +0000 | [diff] [blame] | 1207 | #endif |
| 1208 | |
Arthur O'Dwyer | 7f73637 | 2022-01-14 12:18:44 -0500 | [diff] [blame] | 1209 | #if defined(__BIONIC__) || defined(__NuttX__) || \ |
| 1210 | defined(__Fuchsia__) || defined(__wasi__) || \ |
Muiez Ahmed | 38aa787 | 2022-01-14 11:35:53 -0500 | [diff] [blame] | 1211 | defined(_LIBCPP_HAS_MUSL_LIBC) || defined(__OpenBSD__) |
Dan Albert | ebdf28b | 2015-03-11 00:51:06 +0000 | [diff] [blame] | 1212 | #define _LIBCPP_PROVIDES_DEFAULT_RUNE_TABLE |
| 1213 | #endif |
| 1214 | |
Eric Fiselier | ba72507 | 2017-01-14 04:27:58 +0000 | [diff] [blame] | 1215 | #if __has_feature(cxx_atomic) || __has_extension(c_atomic) || __has_keyword(_Atomic) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1216 | # define _LIBCPP_HAS_C_ATOMIC_IMP |
Richard Smith | ca47d0f | 2019-04-25 20:02:10 +0000 | [diff] [blame] | 1217 | #elif defined(_LIBCPP_COMPILER_GCC) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1218 | # define _LIBCPP_HAS_GCC_ATOMIC_IMP |
Eric Fiselier | 8020b6c | 2015-08-19 17:21:46 +0000 | [diff] [blame] | 1219 | #endif |
| 1220 | |
Louis Dionne | af2d2a8 | 2021-11-17 10:59:31 -0500 | [diff] [blame] | 1221 | #if !defined(_LIBCPP_HAS_C_ATOMIC_IMP) && \ |
| 1222 | !defined(_LIBCPP_HAS_GCC_ATOMIC_IMP) && \ |
| 1223 | !defined(_LIBCPP_HAS_EXTERNAL_ATOMIC_IMP) |
Davide Italiano | 011f80a | 2019-03-05 18:40:49 +0000 | [diff] [blame] | 1224 | # define _LIBCPP_HAS_NO_ATOMIC_HEADER |
| 1225 | #else |
| 1226 | # ifndef _LIBCPP_ATOMIC_FLAG_TYPE |
| 1227 | # define _LIBCPP_ATOMIC_FLAG_TYPE bool |
| 1228 | # endif |
| 1229 | # ifdef _LIBCPP_FREESTANDING |
| 1230 | # define _LIBCPP_ATOMIC_ONLY_USE_BUILTINS |
| 1231 | # endif |
Eric Fiselier | 8020b6c | 2015-08-19 17:21:46 +0000 | [diff] [blame] | 1232 | #endif |
| 1233 | |
Marshall Clow | 91c7f64 | 2016-01-11 19:27:10 +0000 | [diff] [blame] | 1234 | #ifndef _LIBCPP_DISABLE_UBSAN_UNSIGNED_INTEGER_CHECK |
| 1235 | #define _LIBCPP_DISABLE_UBSAN_UNSIGNED_INTEGER_CHECK |
Eric Fiselier | 100e24b | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1236 | #endif |
| 1237 | |
Saleem Abdulrasool | b82f960 | 2017-02-13 15:26:51 +0000 | [diff] [blame] | 1238 | #if defined(_LIBCPP_ENABLE_THREAD_SAFETY_ANNOTATIONS) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1239 | # if defined(__clang__) && __has_attribute(acquire_capability) |
Saleem Abdulrasool | b82f960 | 2017-02-13 15:26:51 +0000 | [diff] [blame] | 1240 | // Work around the attribute handling in clang. When both __declspec and |
| 1241 | // __attribute__ are present, the processing goes awry preventing the definition |
Martin Storsjö | 4e9e471 | 2022-01-11 09:23:39 +0000 | [diff] [blame] | 1242 | // of the types. In MinGW mode, __declspec evaluates to __attribute__, and thus |
| 1243 | // combining the two does work. |
| 1244 | # if !defined(_MSC_VER) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1245 | # define _LIBCPP_HAS_THREAD_SAFETY_ANNOTATIONS |
| 1246 | # endif |
| 1247 | # endif |
Saleem Abdulrasool | b82f960 | 2017-02-13 15:26:51 +0000 | [diff] [blame] | 1248 | #endif |
Eric Fiselier | c0c6c98 | 2016-03-16 02:30:06 +0000 | [diff] [blame] | 1249 | |
Louis Dionne | 93f1fd7 | 2021-06-04 13:31:22 -0400 | [diff] [blame] | 1250 | #ifdef _LIBCPP_HAS_THREAD_SAFETY_ANNOTATIONS |
| 1251 | # define _LIBCPP_THREAD_SAFETY_ANNOTATION(x) __attribute__((x)) |
| 1252 | #else |
| 1253 | # define _LIBCPP_THREAD_SAFETY_ANNOTATION(x) |
| 1254 | #endif |
Eric Fiselier | 510690e | 2019-12-13 15:42:07 -0500 | [diff] [blame] | 1255 | |
Eric Fiselier | 0d3da63 | 2016-09-03 00:11:33 +0000 | [diff] [blame] | 1256 | #if __has_attribute(require_constant_initialization) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1257 | # define _LIBCPP_SAFE_STATIC __attribute__((__require_constant_initialization__)) |
Eric Fiselier | 0d3da63 | 2016-09-03 00:11:33 +0000 | [diff] [blame] | 1258 | #else |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1259 | # define _LIBCPP_SAFE_STATIC |
Eric Fiselier | 0d3da63 | 2016-09-03 00:11:33 +0000 | [diff] [blame] | 1260 | #endif |
| 1261 | |
Eric Fiselier | a7a14ed | 2017-01-13 22:02:08 +0000 | [diff] [blame] | 1262 | #if __has_attribute(diagnose_if) && !defined(_LIBCPP_DISABLE_ADDITIONAL_DIAGNOSTICS) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1263 | # define _LIBCPP_DIAGNOSE_WARNING(...) \ |
| 1264 | __attribute__((diagnose_if(__VA_ARGS__, "warning"))) |
| 1265 | # define _LIBCPP_DIAGNOSE_ERROR(...) \ |
| 1266 | __attribute__((diagnose_if(__VA_ARGS__, "error"))) |
Eric Fiselier | a7a14ed | 2017-01-13 22:02:08 +0000 | [diff] [blame] | 1267 | #else |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1268 | # define _LIBCPP_DIAGNOSE_WARNING(...) |
| 1269 | # define _LIBCPP_DIAGNOSE_ERROR(...) |
Eric Fiselier | a7a14ed | 2017-01-13 22:02:08 +0000 | [diff] [blame] | 1270 | #endif |
| 1271 | |
Eric Fiselier | 4db8003 | 2017-05-05 20:32:26 +0000 | [diff] [blame] | 1272 | // Use a function like macro to imply that it must be followed by a semicolon |
Nikolas Klauser | a66d4db | 2022-02-04 14:28:19 +0100 | [diff] [blame] | 1273 | #if _LIBCPP_STD_VER > 14 && __has_cpp_attribute(fallthrough) |
Reid Kleckner | 75d4e00 | 2018-11-01 18:24:03 +0000 | [diff] [blame] | 1274 | # define _LIBCPP_FALLTHROUGH() [[fallthrough]] |
| 1275 | #elif __has_cpp_attribute(clang::fallthrough) |
| 1276 | # define _LIBCPP_FALLTHROUGH() [[clang::fallthrough]] |
Louis Dionne | 3e0c433 | 2021-08-31 10:49:06 -0400 | [diff] [blame] | 1277 | #elif __has_attribute(__fallthrough__) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1278 | # define _LIBCPP_FALLTHROUGH() __attribute__((__fallthrough__)) |
Eric Fiselier | 4db8003 | 2017-05-05 20:32:26 +0000 | [diff] [blame] | 1279 | #else |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1280 | # define _LIBCPP_FALLTHROUGH() ((void)0) |
Eric Fiselier | 4db8003 | 2017-05-05 20:32:26 +0000 | [diff] [blame] | 1281 | #endif |
| 1282 | |
Eric Fiselier | 4fc82a2 | 2019-06-12 02:03:31 +0000 | [diff] [blame] | 1283 | #if __has_attribute(__nodebug__) |
| 1284 | #define _LIBCPP_NODEBUG __attribute__((__nodebug__)) |
Eric Fiselier | 74ebee6 | 2019-06-08 01:31:19 +0000 | [diff] [blame] | 1285 | #else |
| 1286 | #define _LIBCPP_NODEBUG |
| 1287 | #endif |
| 1288 | |
Amy Huang | 63f53b5 | 2021-03-15 14:20:49 -0700 | [diff] [blame] | 1289 | #if __has_attribute(__standalone_debug__) |
| 1290 | #define _LIBCPP_STANDALONE_DEBUG __attribute__((__standalone_debug__)) |
| 1291 | #else |
| 1292 | #define _LIBCPP_STANDALONE_DEBUG |
| 1293 | #endif |
| 1294 | |
Richard Smith | 256954d | 2020-11-11 17:12:18 -0800 | [diff] [blame] | 1295 | #if __has_attribute(__preferred_name__) |
| 1296 | #define _LIBCPP_PREFERRED_NAME(x) __attribute__((__preferred_name__(x))) |
| 1297 | #else |
| 1298 | #define _LIBCPP_PREFERRED_NAME(x) |
| 1299 | #endif |
| 1300 | |
Louis Dionne | 8925814 | 2021-08-23 15:32:36 -0400 | [diff] [blame] | 1301 | // We often repeat things just for handling wide characters in the library. |
| 1302 | // When wide characters are disabled, it can be useful to have a quick way of |
| 1303 | // disabling it without having to resort to #if-#endif, which has a larger |
| 1304 | // impact on readability. |
| 1305 | #if defined(_LIBCPP_HAS_NO_WIDE_CHARACTERS) |
| 1306 | # define _LIBCPP_IF_WIDE_CHARACTERS(...) |
| 1307 | #else |
| 1308 | # define _LIBCPP_IF_WIDE_CHARACTERS(...) __VA_ARGS__ |
| 1309 | #endif |
| 1310 | |
Eric Fiselier | e3cec5f | 2017-01-16 21:15:08 +0000 | [diff] [blame] | 1311 | #if defined(_LIBCPP_ABI_MICROSOFT) && \ |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1312 | (defined(_LIBCPP_COMPILER_MSVC) || __has_declspec_attribute(empty_bases)) |
| 1313 | # define _LIBCPP_DECLSPEC_EMPTY_BASES __declspec(empty_bases) |
Eric Fiselier | e3cec5f | 2017-01-16 21:15:08 +0000 | [diff] [blame] | 1314 | #else |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1315 | # define _LIBCPP_DECLSPEC_EMPTY_BASES |
Eric Fiselier | e3cec5f | 2017-01-16 21:15:08 +0000 | [diff] [blame] | 1316 | #endif |
| 1317 | |
Eric Fiselier | ddd7779 | 2017-02-17 03:25:08 +0000 | [diff] [blame] | 1318 | #if defined(_LIBCPP_ENABLE_CXX17_REMOVED_FEATURES) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1319 | #define _LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1320 | #define _LIBCPP_ENABLE_CXX17_REMOVED_BINDERS |
Arthur O'Dwyer | a6b5107 | 2021-05-24 18:36:17 -0400 | [diff] [blame] | 1321 | #define _LIBCPP_ENABLE_CXX17_REMOVED_RANDOM_SHUFFLE |
| 1322 | #define _LIBCPP_ENABLE_CXX17_REMOVED_UNEXPECTED_FUNCTIONS |
Eric Fiselier | ddd7779 | 2017-02-17 03:25:08 +0000 | [diff] [blame] | 1323 | #endif // _LIBCPP_ENABLE_CXX17_REMOVED_FEATURES |
| 1324 | |
Arthur O'Dwyer | a6b5107 | 2021-05-24 18:36:17 -0400 | [diff] [blame] | 1325 | #if defined(_LIBCPP_ENABLE_CXX20_REMOVED_FEATURES) |
| 1326 | #define _LIBCPP_ENABLE_CXX20_REMOVED_ALLOCATOR_MEMBERS |
Arthur O'Dwyer | f5486c8 | 2021-05-25 14:34:18 -0400 | [diff] [blame] | 1327 | #define _LIBCPP_ENABLE_CXX20_REMOVED_BINDER_TYPEDEFS |
Arthur O'Dwyer | a6b5107 | 2021-05-24 18:36:17 -0400 | [diff] [blame] | 1328 | #define _LIBCPP_ENABLE_CXX20_REMOVED_NEGATORS |
| 1329 | #define _LIBCPP_ENABLE_CXX20_REMOVED_RAW_STORAGE_ITERATOR |
wmbat | f5b3376 | 2021-07-02 17:08:36 +0000 | [diff] [blame] | 1330 | #define _LIBCPP_ENABLE_CXX20_REMOVED_TYPE_TRAITS |
Arthur O'Dwyer | a6b5107 | 2021-05-24 18:36:17 -0400 | [diff] [blame] | 1331 | #endif // _LIBCPP_ENABLE_CXX20_REMOVED_FEATURES |
| 1332 | |
Chuanqi Xu | 6fdf619 | 2021-11-16 14:05:34 +0800 | [diff] [blame] | 1333 | #if !defined(__cpp_impl_coroutine) || __cpp_impl_coroutine < 201902L |
| 1334 | #define _LIBCPP_HAS_NO_CXX20_COROUTINES |
Eric Fiselier | 40b6622 | 2017-05-26 01:52:59 +0000 | [diff] [blame] | 1335 | #endif |
| 1336 | |
Eric Fiselier | f4433a3 | 2017-05-31 22:07:49 +0000 | [diff] [blame] | 1337 | #if defined(_LIBCPP_COMPILER_IBM) |
| 1338 | #define _LIBCPP_HAS_NO_PRAGMA_PUSH_POP_MACRO |
| 1339 | #endif |
| 1340 | |
| 1341 | #if defined(_LIBCPP_HAS_NO_PRAGMA_PUSH_POP_MACRO) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1342 | # define _LIBCPP_PUSH_MACROS |
| 1343 | # define _LIBCPP_POP_MACROS |
Eric Fiselier | f4433a3 | 2017-05-31 22:07:49 +0000 | [diff] [blame] | 1344 | #else |
| 1345 | // Don't warn about macro conflicts when we can restore them at the |
| 1346 | // end of the header. |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1347 | # ifndef _LIBCPP_DISABLE_MACRO_CONFLICT_WARNINGS |
| 1348 | # define _LIBCPP_DISABLE_MACRO_CONFLICT_WARNINGS |
| 1349 | # endif |
| 1350 | # if defined(_LIBCPP_COMPILER_MSVC) |
| 1351 | # define _LIBCPP_PUSH_MACROS \ |
| 1352 | __pragma(push_macro("min")) \ |
| 1353 | __pragma(push_macro("max")) |
| 1354 | # define _LIBCPP_POP_MACROS \ |
| 1355 | __pragma(pop_macro("min")) \ |
| 1356 | __pragma(pop_macro("max")) |
| 1357 | # else |
| 1358 | # define _LIBCPP_PUSH_MACROS \ |
| 1359 | _Pragma("push_macro(\"min\")") \ |
| 1360 | _Pragma("push_macro(\"max\")") |
| 1361 | # define _LIBCPP_POP_MACROS \ |
| 1362 | _Pragma("pop_macro(\"min\")") \ |
| 1363 | _Pragma("pop_macro(\"max\")") |
| 1364 | # endif |
Eric Fiselier | f4433a3 | 2017-05-31 22:07:49 +0000 | [diff] [blame] | 1365 | #endif // defined(_LIBCPP_HAS_NO_PRAGMA_PUSH_POP_MACRO) |
| 1366 | |
Peter Collingbourne | 1aa99c5 | 2018-01-24 04:30:19 +0000 | [diff] [blame] | 1367 | #ifndef _LIBCPP_NO_AUTO_LINK |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1368 | # if defined(_LIBCPP_ABI_MICROSOFT) && !defined(_LIBCPP_BUILDING_LIBRARY) |
Martin Storsjö | 57db41b | 2021-04-15 11:16:28 +0300 | [diff] [blame] | 1369 | # if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) |
Logan Chien | 7b4845e | 2018-02-24 07:57:32 +0000 | [diff] [blame] | 1370 | # pragma comment(lib, "c++.lib") |
| 1371 | # else |
| 1372 | # pragma comment(lib, "libc++.lib") |
| 1373 | # endif |
| 1374 | # endif // defined(_LIBCPP_ABI_MICROSOFT) && !defined(_LIBCPP_BUILDING_LIBRARY) |
Peter Collingbourne | 1aa99c5 | 2018-01-24 04:30:19 +0000 | [diff] [blame] | 1375 | #endif // _LIBCPP_NO_AUTO_LINK |
Eric Fiselier | 911dcad | 2017-06-16 01:57:41 +0000 | [diff] [blame] | 1376 | |
Dan Albert | 9550df6 | 2019-09-16 19:26:41 +0000 | [diff] [blame] | 1377 | // Configures the fopen close-on-exec mode character, if any. This string will |
| 1378 | // be appended to any mode string used by fstream for fopen/fdopen. |
| 1379 | // |
| 1380 | // Not all platforms support this, but it helps avoid fd-leaks on platforms that |
| 1381 | // do. |
| 1382 | #if defined(__BIONIC__) |
| 1383 | # define _LIBCPP_FOPEN_CLOEXEC_MODE "e" |
| 1384 | #else |
| 1385 | # define _LIBCPP_FOPEN_CLOEXEC_MODE |
| 1386 | #endif |
| 1387 | |
Dan Albert | 073008c | 2020-03-12 11:16:30 -0700 | [diff] [blame] | 1388 | // Support for _FILE_OFFSET_BITS=64 landed gradually in Android, so the full set |
| 1389 | // of functions used in cstdio may not be available for low API levels when |
| 1390 | // using 64-bit file offsets on LP32. |
| 1391 | #if defined(__BIONIC__) && defined(__USE_FILE_OFFSET64) && __ANDROID_API__ < 24 |
| 1392 | #define _LIBCPP_HAS_NO_FGETPOS_FSETPOS |
| 1393 | #endif |
| 1394 | |
Zbigniew Sarbinowski | 4536ef4 | 2020-11-20 14:46:21 -0500 | [diff] [blame] | 1395 | #if __has_attribute(init_priority) |
Louis Dionne | 1f14cea | 2021-02-03 16:25:06 -0500 | [diff] [blame] | 1396 | // TODO: Remove this once we drop support for building libc++ with old Clangs |
| 1397 | # if (defined(_LIBCPP_CLANG_VER) && _LIBCPP_CLANG_VER < 1200) || \ |
| 1398 | (defined(__apple_build_version__) && __apple_build_version__ < 13000000) |
| 1399 | # define _LIBCPP_INIT_PRIORITY_MAX __attribute__((init_priority(101))) |
| 1400 | # else |
| 1401 | # define _LIBCPP_INIT_PRIORITY_MAX __attribute__((init_priority(100))) |
| 1402 | # endif |
Zbigniew Sarbinowski | 4536ef4 | 2020-11-20 14:46:21 -0500 | [diff] [blame] | 1403 | #else |
| 1404 | # define _LIBCPP_INIT_PRIORITY_MAX |
| 1405 | #endif |
| 1406 | |
Arthur O'Dwyer | 4cbc323 | 2021-03-05 20:13:35 -0500 | [diff] [blame] | 1407 | #if defined(__GNUC__) || defined(__clang__) |
Louis Dionne | e1ad457 | 2021-11-16 15:22:10 -0500 | [diff] [blame] | 1408 | // The attribute uses 1-based indices for ordinary and static member functions. |
| 1409 | // The attribute uses 2-based indices for non-static member functions. |
| 1410 | # define _LIBCPP_ATTRIBUTE_FORMAT(archetype, format_string_index, first_format_arg_index) \ |
| 1411 | __attribute__((__format__(archetype, format_string_index, first_format_arg_index))) |
Arthur O'Dwyer | 4cbc323 | 2021-03-05 20:13:35 -0500 | [diff] [blame] | 1412 | #else |
Louis Dionne | e1ad457 | 2021-11-16 15:22:10 -0500 | [diff] [blame] | 1413 | # define _LIBCPP_ATTRIBUTE_FORMAT(archetype, format_string_index, first_format_arg_index) /* nothing */ |
Arthur O'Dwyer | 4cbc323 | 2021-03-05 20:13:35 -0500 | [diff] [blame] | 1414 | #endif |
| 1415 | |
Eric Fiselier | 911dcad | 2017-06-16 01:57:41 +0000 | [diff] [blame] | 1416 | #endif // __cplusplus |
| 1417 | |
Eric Fiselier | 8020b6c | 2015-08-19 17:21:46 +0000 | [diff] [blame] | 1418 | #endif // _LIBCPP_CONFIG |