__config 65 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546
  1. // -*- C++ -*-
  2. //===----------------------------------------------------------------------===//
  3. //
  4. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  5. // See https://llvm.org/LICENSE.txt for license information.
  6. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  7. //
  8. //===----------------------------------------------------------------------===//
  9. #ifndef _LIBCPP___CONFIG
  10. #define _LIBCPP___CONFIG
  11. #include <__config_site>
  12. #ifndef _LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER
  13. # pragma GCC system_header
  14. #endif
  15. #if defined(_LIBCPP_ENABLE_CXX17_REMOVED_FEATURES) && !defined(_LIBCPP_DISABLE_DEPRECATION_WARNINGS)
  16. # pragma clang deprecated( \
  17. _LIBCPP_ENABLE_CXX17_REMOVED_FEATURES, \
  18. "_LIBCPP_ENABLE_CXX17_REMOVED_FEATURES is deprecated in LLVM 18 and will be removed in LLVM 19")
  19. #endif
  20. #if defined(_LIBCPP_ENABLE_CXX20_REMOVED_FEATURES) && !defined(_LIBCPP_DISABLE_DEPRECATION_WARNINGS)
  21. # pragma clang deprecated( \
  22. _LIBCPP_ENABLE_CXX20_REMOVED_FEATURES, \
  23. "_LIBCPP_ENABLE_CXX20_REMOVED_FEATURES is deprecated in LLVM 18 and will be removed in LLVM 19")
  24. #endif
  25. #if defined(__apple_build_version__)
  26. // Given AppleClang XX.Y.Z, _LIBCPP_APPLE_CLANG_VER is XXYZ (e.g. AppleClang 14.0.3 => 1403)
  27. # define _LIBCPP_COMPILER_CLANG_BASED
  28. # define _LIBCPP_APPLE_CLANG_VER (__apple_build_version__ / 10000)
  29. #elif defined(__clang__)
  30. # define _LIBCPP_COMPILER_CLANG_BASED
  31. # define _LIBCPP_CLANG_VER (__clang_major__ * 100 + __clang_minor__)
  32. #elif defined(__GNUC__)
  33. # define _LIBCPP_COMPILER_GCC
  34. # define _LIBCPP_GCC_VER (__GNUC__ * 100 + __GNUC_MINOR__)
  35. #endif
  36. // Move outside #ifdef __cplusplus because this needs to work in both C and C++ headers.
  37. #if defined(__apple_build_version__)
  38. # define _LIBCPP_COMPILER_CLANG_BASED
  39. # define _LIBCPP_APPLE_CLANG_VER (__apple_build_version__ / 10000)
  40. #elif defined(__clang__)
  41. # define _LIBCPP_COMPILER_CLANG
  42. # define _LIBCPP_COMPILER_CLANG_BASED
  43. # define _LIBCPP_CLANG_VER (__clang_major__ * 100 + __clang_minor__)
  44. #elif defined(__GNUC__)
  45. # define _LIBCPP_COMPILER_GCC
  46. #elif defined(_MSC_VER)
  47. # define _LIBCPP_COMPILER_MSVC
  48. # if _MSVC_LANG == 201705L
  49. # define _LIBCPP_STD_VER 20
  50. # elif _MSVC_LANG == 201703L
  51. # define _LIBCPP_STD_VER 17
  52. # else
  53. # define _LIBCPP_STD_VER 14
  54. # endif
  55. #endif
  56. #ifdef __cplusplus
  57. // Warn if a compiler version is used that is not supported anymore
  58. // LLVM RELEASE Update the minimum compiler versions
  59. # if defined(_LIBCPP_CLANG_VER)
  60. # if _LIBCPP_CLANG_VER < 1600
  61. // we temporary allow old clang-s # warning "Libc++ only supports Clang 16 and later"
  62. # endif
  63. # elif defined(_LIBCPP_APPLE_CLANG_VER)
  64. # if _LIBCPP_APPLE_CLANG_VER < 1500
  65. # warning "Libc++ only supports AppleClang 15 and later"
  66. # endif
  67. # elif defined(_LIBCPP_GCC_VER)
  68. # if _LIBCPP_GCC_VER < 1300
  69. # warning "Libc++ only supports GCC 13 and later"
  70. # endif
  71. # endif
  72. // The attributes supported by clang are documented at https://clang.llvm.org/docs/AttributeReference.html
  73. // _LIBCPP_VERSION represents the version of libc++, which matches the version of LLVM.
  74. // Given a LLVM release LLVM XX.YY.ZZ (e.g. LLVM 17.0.1 == 17.00.01), _LIBCPP_VERSION is
  75. // defined to XXYYZZ.
  76. # define _LIBCPP_VERSION 190000
  77. # define _LIBCPP_CONCAT_IMPL(_X, _Y) _X##_Y
  78. # define _LIBCPP_CONCAT(_X, _Y) _LIBCPP_CONCAT_IMPL(_X, _Y)
  79. # if __STDC_HOSTED__ == 0
  80. # define _LIBCPP_FREESTANDING
  81. # endif
  82. // NOLINTBEGIN(libcpp-cpp-version-check)
  83. # ifndef _LIBCPP_STD_VER
  84. # if __cplusplus <= 201103L
  85. # define _LIBCPP_STD_VER 11
  86. # elif __cplusplus <= 201402L
  87. # define _LIBCPP_STD_VER 14
  88. # elif __cplusplus <= 201703L
  89. # define _LIBCPP_STD_VER 17
  90. # elif __cplusplus <= 202002L
  91. # define _LIBCPP_STD_VER 20
  92. # elif __cplusplus <= 202302L
  93. # define _LIBCPP_STD_VER 23
  94. # else
  95. // Expected release year of the next C++ standard
  96. # define _LIBCPP_STD_VER 26
  97. # endif
  98. # endif // _LIBCPP_STD_VER
  99. // NOLINTEND(libcpp-cpp-version-check)
  100. # if defined(__ELF__)
  101. # define _LIBCPP_OBJECT_FORMAT_ELF 1
  102. # elif defined(__MACH__)
  103. # define _LIBCPP_OBJECT_FORMAT_MACHO 1
  104. # elif defined(_WIN32) || defined(__CYGWIN__)
  105. # define _LIBCPP_OBJECT_FORMAT_COFF 1
  106. # elif defined(__wasm__)
  107. # define _LIBCPP_OBJECT_FORMAT_WASM 1
  108. # elif defined(_AIX)
  109. # define _LIBCPP_OBJECT_FORMAT_XCOFF 1
  110. # else
  111. // ... add new file formats here ...
  112. # endif
  113. // ABI {
  114. # if _LIBCPP_ABI_VERSION >= 2
  115. // Change short string representation so that string data starts at offset 0,
  116. // improving its alignment in some cases.
  117. # define _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
  118. // Fix deque iterator type in order to support incomplete types.
  119. # define _LIBCPP_ABI_INCOMPLETE_TYPES_IN_DEQUE
  120. // Fix undefined behavior in how std::list stores its linked nodes.
  121. # define _LIBCPP_ABI_LIST_REMOVE_NODE_POINTER_UB
  122. // Fix undefined behavior in how __tree stores its end and parent nodes.
  123. # define _LIBCPP_ABI_TREE_REMOVE_NODE_POINTER_UB
  124. // Fix undefined behavior in how __hash_table stores its pointer types.
  125. # define _LIBCPP_ABI_FIX_UNORDERED_NODE_POINTER_UB
  126. # define _LIBCPP_ABI_FORWARD_LIST_REMOVE_NODE_POINTER_UB
  127. # define _LIBCPP_ABI_FIX_UNORDERED_CONTAINER_SIZE_TYPE
  128. // Define a key function for `bad_function_call` in the library, to centralize
  129. // its vtable and typeinfo to libc++ rather than having all other libraries
  130. // using that class define their own copies.
  131. # define _LIBCPP_ABI_BAD_FUNCTION_CALL_KEY_FUNCTION
  132. // Override the default return value of exception::what() for
  133. // bad_function_call::what() with a string that is specific to
  134. // bad_function_call (see http://wg21.link/LWG2233). This is an ABI break
  135. // because it changes the vtable layout of bad_function_call.
  136. # define _LIBCPP_ABI_BAD_FUNCTION_CALL_GOOD_WHAT_MESSAGE
  137. // Enable optimized version of __do_get_(un)signed which avoids redundant copies.
  138. # define _LIBCPP_ABI_OPTIMIZED_LOCALE_NUM_GET
  139. // Give reverse_iterator<T> one data member of type T, not two.
  140. // Also, in C++17 and later, don't derive iterator types from std::iterator.
  141. # define _LIBCPP_ABI_NO_ITERATOR_BASES
  142. // Use the smallest possible integer type to represent the index of the variant.
  143. // Previously libc++ used "unsigned int" exclusively.
  144. # define _LIBCPP_ABI_VARIANT_INDEX_TYPE_OPTIMIZATION
  145. // Unstable attempt to provide a more optimized std::function
  146. # ifdef __EMSCRIPTEN__
  147. // XXX EMSCRIPTEN https://github.com/emscripten-core/emscripten/issues/11022
  148. // # define _LIBCPP_ABI_OPTIMIZED_FUNCTION
  149. # else
  150. # define _LIBCPP_ABI_OPTIMIZED_FUNCTION
  151. # endif
  152. // All the regex constants must be distinct and nonzero.
  153. # define _LIBCPP_ABI_REGEX_CONSTANTS_NONZERO
  154. // Re-worked external template instantiations for std::string with a focus on
  155. // performance and fast-path inlining.
  156. # define _LIBCPP_ABI_STRING_OPTIMIZED_EXTERNAL_INSTANTIATION
  157. // Enable clang::trivial_abi on std::unique_ptr.
  158. # define _LIBCPP_ABI_ENABLE_UNIQUE_PTR_TRIVIAL_ABI
  159. // Enable clang::trivial_abi on std::shared_ptr and std::weak_ptr
  160. # define _LIBCPP_ABI_ENABLE_SHARED_PTR_TRIVIAL_ABI
  161. // std::random_device holds some state when it uses an implementation that gets
  162. // entropy from a file (see _LIBCPP_USING_DEV_RANDOM). When switching from this
  163. // implementation to another one on a platform that has already shipped
  164. // std::random_device, one needs to retain the same object layout to remain ABI
  165. // compatible. This switch removes these workarounds for platforms that don't care
  166. // about ABI compatibility.
  167. # define _LIBCPP_ABI_NO_RANDOM_DEVICE_COMPATIBILITY_LAYOUT
  168. // Don't export the legacy __basic_string_common class and its methods from the built library.
  169. # define _LIBCPP_ABI_DO_NOT_EXPORT_BASIC_STRING_COMMON
  170. // Don't export the legacy __vector_base_common class and its methods from the built library.
  171. # define _LIBCPP_ABI_DO_NOT_EXPORT_VECTOR_BASE_COMMON
  172. // According to the Standard, `bitset::operator[] const` returns bool
  173. # define _LIBCPP_ABI_BITSET_VECTOR_BOOL_CONST_SUBSCRIPT_RETURN_BOOL
  174. // Fix the implementation of CityHash used for std::hash<fundamental-type>.
  175. // This is an ABI break because `std::hash` will return a different result,
  176. // which means that hashing the same object in translation units built against
  177. // different versions of libc++ can return inconsistent results. This is especially
  178. // tricky since std::hash is used in the implementation of unordered containers.
  179. //
  180. // The incorrect implementation of CityHash has the problem that it drops some
  181. // bits on the floor.
  182. # define _LIBCPP_ABI_FIX_CITYHASH_IMPLEMENTATION
  183. // Remove the base 10 implementation of std::to_chars from the dylib.
  184. // The implementation moved to the header, but we still export the symbols from
  185. // the dylib for backwards compatibility.
  186. # define _LIBCPP_ABI_DO_NOT_EXPORT_TO_CHARS_BASE_10
  187. // Define std::array/std::string_view iterators to be __wrap_iters instead of raw
  188. // pointers, which prevents people from relying on a non-portable implementation
  189. // detail. This is especially useful because enabling bounded iterators hardening
  190. // requires code not to make these assumptions.
  191. # define _LIBCPP_ABI_USE_WRAP_ITER_IN_STD_ARRAY
  192. # define _LIBCPP_ABI_USE_WRAP_ITER_IN_STD_STRING_VIEW
  193. # elif _LIBCPP_ABI_VERSION == 1
  194. # if !(defined(_LIBCPP_OBJECT_FORMAT_COFF) || defined(_LIBCPP_OBJECT_FORMAT_XCOFF))
  195. // Enable compiling copies of now inline methods into the dylib to support
  196. // applications compiled against older libraries. This is unnecessary with
  197. // COFF dllexport semantics, since dllexport forces a non-inline definition
  198. // of inline functions to be emitted anyway. Our own non-inline copy would
  199. // conflict with the dllexport-emitted copy, so we disable it. For XCOFF,
  200. // the linker will take issue with the symbols in the shared object if the
  201. // weak inline methods get visibility (such as from -fvisibility-inlines-hidden),
  202. // so disable it.
  203. # define _LIBCPP_DEPRECATED_ABI_LEGACY_LIBRARY_DEFINITIONS_FOR_INLINE_FUNCTIONS
  204. # endif
  205. // Feature macros for disabling pre ABI v1 features. All of these options
  206. // are deprecated.
  207. # if defined(__FreeBSD__) && __FreeBSD__ < 14
  208. # define _LIBCPP_DEPRECATED_ABI_DISABLE_PAIR_TRIVIAL_COPY_CTOR
  209. # endif
  210. // For XCOFF linkers, we have problems if we see a weak hidden version of a symbol
  211. // in user code (like you get with -fvisibility-inlines-hidden) and then a strong def
  212. // in the library, so we need to always rely on the library version.
  213. # if defined(_AIX)
  214. # define _LIBCPP_ABI_BAD_FUNCTION_CALL_KEY_FUNCTION
  215. # endif
  216. # endif
  217. # if defined(_LIBCPP_BUILDING_LIBRARY) || _LIBCPP_ABI_VERSION >= 2
  218. // Define a key function for `bad_function_call` in the library, to centralize
  219. // its vtable and typeinfo to libc++ rather than having all other libraries
  220. // using that class define their own copies.
  221. # define _LIBCPP_ABI_BAD_FUNCTION_CALL_KEY_FUNCTION
  222. # endif
  223. // We had some bugs where we use [[no_unique_address]] together with construct_at,
  224. // which causes UB as the call on construct_at could write to overlapping subobjects
  225. //
  226. // https://github.com/llvm/llvm-project/issues/70506
  227. // https://github.com/llvm/llvm-project/issues/70494
  228. //
  229. // To fix the bug we had to change the ABI of some classes to remove [[no_unique_address]] under certain conditions.
  230. // The macro below is used for all classes whose ABI have changed as part of fixing these bugs.
  231. # define _LIBCPP_ABI_LLVM18_NO_UNIQUE_ADDRESS __attribute__((__abi_tag__("llvm18_nua")))
  232. // Changes the iterator type of select containers (see below) to a bounded iterator that keeps track of whether it's
  233. // within the bounds of the original container and asserts it on every dereference.
  234. //
  235. // ABI impact: changes the iterator type of the relevant containers.
  236. //
  237. // Supported containers:
  238. // - `span`;
  239. // - `string_view`;
  240. // - `array`.
  241. // #define _LIBCPP_ABI_BOUNDED_ITERATORS
  242. // } ABI
  243. // HARDENING {
  244. // TODO(hardening): deprecate this in LLVM 19.
  245. // This is for backward compatibility -- make enabling `_LIBCPP_ENABLE_ASSERTIONS` (which predates hardening modes)
  246. // equivalent to setting the extensive mode.
  247. # ifdef _LIBCPP_ENABLE_ASSERTIONS
  248. # if _LIBCPP_ENABLE_ASSERTIONS != 0 && _LIBCPP_ENABLE_ASSERTIONS != 1
  249. # error "_LIBCPP_ENABLE_ASSERTIONS must be set to 0 or 1"
  250. # endif
  251. # if _LIBCPP_ENABLE_ASSERTIONS
  252. # define _LIBCPP_HARDENING_MODE _LIBCPP_HARDENING_MODE_EXTENSIVE
  253. # endif
  254. # endif
  255. // The library provides the macro `_LIBCPP_HARDENING_MODE` which can be set to one of the following values:
  256. //
  257. // - `_LIBCPP_HARDENING_MODE_NONE`;
  258. // - `_LIBCPP_HARDENING_MODE_FAST`;
  259. // - `_LIBCPP_HARDENING_MODE_EXTENSIVE`;
  260. // - `_LIBCPP_HARDENING_MODE_DEBUG`.
  261. //
  262. // These values have the following effects:
  263. //
  264. // - `_LIBCPP_HARDENING_MODE_NONE` -- sets the hardening mode to "none" which disables all runtime hardening checks;
  265. //
  266. // - `_LIBCPP_HARDENING_MODE_FAST` -- sets that hardening mode to "fast". The fast mode enables security-critical checks
  267. // that can be done with relatively little runtime overhead in constant time;
  268. //
  269. // - `_LIBCPP_HARDENING_MODE_EXTENSIVE` -- sets the hardening mode to "extensive". The extensive mode is a superset of
  270. // the fast mode that additionally enables checks that are relatively cheap and prevent common types of logic errors
  271. // but are not necessarily security-critical;
  272. //
  273. // - `_LIBCPP_HARDENING_MODE_DEBUG` -- sets the hardening mode to "debug". The debug mode is a superset of the extensive
  274. // mode and enables all checks available in the library, including internal assertions. Checks that are part of the
  275. // debug mode can be very expensive and thus the debug mode is intended to be used for testing, not in production.
  276. // Inside the library, assertions are categorized so they can be cherry-picked based on the chosen hardening mode. These
  277. // macros are only for internal use -- users should only pick one of the high-level hardening modes described above.
  278. //
  279. // - `_LIBCPP_ASSERT_VALID_INPUT_RANGE` -- checks that ranges (whether expressed as an iterator pair, an iterator and
  280. // a sentinel, an iterator and a count, or a `std::range`) given as input to library functions are valid:
  281. // - the sentinel is reachable from the begin iterator;
  282. // - TODO(hardening): both iterators refer to the same container.
  283. //
  284. // - `_LIBCPP_ASSERT_VALID_ELEMENT_ACCESS` -- checks that any attempts to access a container element, whether through
  285. // the container object or through an iterator, are valid and do not attempt to go out of bounds or otherwise access
  286. // a non-existent element. For iterator checks to work, bounded iterators must be enabled in the ABI. Types like
  287. // `optional` and `function` are considered one-element containers for the purposes of this check.
  288. //
  289. // - `_LIBCPP_ASSERT_NON_NULL` -- checks that the pointer being dereferenced is not null. On most modern platforms zero
  290. // address does not refer to an actual location in memory, so a null pointer dereference would not compromize the
  291. // memory security of a program (however, it is still undefined behavior that can result in strange errors due to
  292. // compiler optimizations).
  293. //
  294. // - `_LIBCPP_ASSERT_NON_OVERLAPPING_RANGES` -- for functions that take several ranges as arguments, checks that the
  295. // given ranges do not overlap.
  296. //
  297. // - `_LIBCPP_ASSERT_VALID_DEALLOCATION` -- checks that an attempt to deallocate memory is valid (e.g. the given object
  298. // was allocated by the given allocator). Violating this category typically results in a memory leak.
  299. //
  300. // - `_LIBCPP_ASSERT_VALID_EXTERNAL_API_CALL` -- checks that a call to an external API doesn't fail in
  301. // an unexpected manner. This includes triggering documented cases of undefined behavior in an external library (like
  302. // attempting to unlock an unlocked mutex in pthreads). Any API external to the library falls under this category
  303. // (from system calls to compiler intrinsics). We generally don't expect these failures to compromize memory safety or
  304. // otherwise create an immediate security issue.
  305. //
  306. // - `_LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR` -- checks any operations that exchange nodes between containers to make sure
  307. // the containers have compatible allocators.
  308. //
  309. // - `_LIBCPP_ASSERT_ARGUMENT_WITHIN_DOMAIN` -- checks that the given argument is within the domain of valid arguments
  310. // for the function. Violating this typically produces an incorrect result (e.g. the clamp algorithm returns the
  311. // original value without clamping it due to incorrect functors) or puts an object into an invalid state (e.g.
  312. // a string view where only a subset of elements is possible to access). This category is for assertions violating
  313. // which doesn't cause any immediate issues in the library -- whatever the consequences are, they will happen in the
  314. // user code.
  315. //
  316. // - `_LIBCPP_ASSERT_PEDANTIC` -- checks prerequisites which are imposed by the Standard, but violating which happens to
  317. // be benign in our implementation.
  318. //
  319. // - `_LIBCPP_ASSERT_SEMANTIC_REQUIREMENT` -- checks that the given argument satisfies the semantic requirements imposed
  320. // by the Standard. Typically, there is no simple way to completely prove that a semantic requirement is satisfied;
  321. // thus, this would often be a heuristic check and it might be quite expensive.
  322. //
  323. // - `_LIBCPP_ASSERT_INTERNAL` -- checks that internal invariants of the library hold. These assertions don't depend on
  324. // user input.
  325. //
  326. // - `_LIBCPP_ASSERT_UNCATEGORIZED` -- for assertions that haven't been properly classified yet.
  327. // clang-format off
  328. # define _LIBCPP_HARDENING_MODE_NONE (1 << 1)
  329. # define _LIBCPP_HARDENING_MODE_FAST (1 << 2)
  330. # define _LIBCPP_HARDENING_MODE_EXTENSIVE (1 << 4) // Deliberately not ordered.
  331. # define _LIBCPP_HARDENING_MODE_DEBUG (1 << 3)
  332. // clang-format on
  333. # ifndef _LIBCPP_HARDENING_MODE
  334. # ifndef _LIBCPP_HARDENING_MODE_DEFAULT
  335. # error _LIBCPP_HARDENING_MODE_DEFAULT is not defined. This definition should be set at configuration time in the \
  336. `__config_site` header, please make sure your installation of libc++ is not broken.
  337. # endif
  338. # define _LIBCPP_HARDENING_MODE _LIBCPP_HARDENING_MODE_DEFAULT
  339. # endif
  340. # if _LIBCPP_HARDENING_MODE != _LIBCPP_HARDENING_MODE_NONE && \
  341. _LIBCPP_HARDENING_MODE != _LIBCPP_HARDENING_MODE_FAST && \
  342. _LIBCPP_HARDENING_MODE != _LIBCPP_HARDENING_MODE_EXTENSIVE && \
  343. _LIBCPP_HARDENING_MODE != _LIBCPP_HARDENING_MODE_DEBUG
  344. # error _LIBCPP_HARDENING_MODE must be set to one of the following values: \
  345. _LIBCPP_HARDENING_MODE_NONE, \
  346. _LIBCPP_HARDENING_MODE_FAST, \
  347. _LIBCPP_HARDENING_MODE_EXTENSIVE, \
  348. _LIBCPP_HARDENING_MODE_DEBUG
  349. # endif
  350. // } HARDENING
  351. # define _LIBCPP_TOSTRING2(x) #x
  352. # define _LIBCPP_TOSTRING(x) _LIBCPP_TOSTRING2(x)
  353. // NOLINTNEXTLINE(libcpp-cpp-version-check)
  354. # if __cplusplus < 201103L
  355. # define _LIBCPP_CXX03_LANG
  356. # endif
  357. # ifndef __has_attribute
  358. # define __has_attribute(__x) 0
  359. # endif
  360. # ifndef __has_builtin
  361. # define __has_builtin(__x) 0
  362. # endif
  363. # ifndef __has_extension
  364. # define __has_extension(__x) 0
  365. # endif
  366. # ifndef __has_feature
  367. # define __has_feature(__x) 0
  368. # endif
  369. # ifndef __has_cpp_attribute
  370. # define __has_cpp_attribute(__x) 0
  371. # endif
  372. # ifndef __has_constexpr_builtin
  373. # define __has_constexpr_builtin(x) 0
  374. # endif
  375. // This checks wheter a Clang module is built
  376. # ifndef __building_module
  377. # define __building_module(...) 0
  378. # endif
  379. // '__is_identifier' returns '0' if '__x' is a reserved identifier provided by
  380. // the compiler and '1' otherwise.
  381. # ifndef __is_identifier
  382. # define __is_identifier(__x) 1
  383. # endif
  384. # ifndef __has_declspec_attribute
  385. # define __has_declspec_attribute(__x) 0
  386. # endif
  387. # define __has_keyword(__x) !(__is_identifier(__x))
  388. # ifndef __has_include
  389. # define __has_include(...) 0
  390. # endif
  391. # if !defined(_LIBCPP_COMPILER_CLANG_BASED) && __cplusplus < 201103L
  392. # error "libc++ only supports C++03 with Clang-based compilers. Please enable C++11"
  393. # endif
  394. // FIXME: ABI detection should be done via compiler builtin macros. This
  395. // is just a placeholder until Clang implements such macros. For now assume
  396. // that Windows compilers pretending to be MSVC++ target the Microsoft ABI,
  397. // and allow the user to explicitly specify the ABI to handle cases where this
  398. // heuristic falls short.
  399. # if defined(_LIBCPP_ABI_FORCE_ITANIUM) && defined(_LIBCPP_ABI_FORCE_MICROSOFT)
  400. # error "Only one of _LIBCPP_ABI_FORCE_ITANIUM and _LIBCPP_ABI_FORCE_MICROSOFT can be defined"
  401. # elif defined(_LIBCPP_ABI_FORCE_ITANIUM)
  402. # define _LIBCPP_ABI_ITANIUM
  403. # elif defined(_LIBCPP_ABI_FORCE_MICROSOFT)
  404. # define _LIBCPP_ABI_MICROSOFT
  405. # else
  406. # if defined(_WIN32) && defined(_MSC_VER)
  407. # define _LIBCPP_ABI_MICROSOFT
  408. # else
  409. # define _LIBCPP_ABI_ITANIUM
  410. # endif
  411. # endif
  412. # if defined(_LIBCPP_ABI_MICROSOFT) && !defined(_LIBCPP_NO_VCRUNTIME)
  413. # define _LIBCPP_ABI_VCRUNTIME
  414. # endif
  415. # if __has_feature(experimental_library)
  416. # ifndef _LIBCPP_ENABLE_EXPERIMENTAL
  417. # define _LIBCPP_ENABLE_EXPERIMENTAL
  418. # endif
  419. # endif
  420. // Incomplete features get their own specific disabling flags. This makes it
  421. // easier to grep for target specific flags once the feature is complete.
  422. # if !defined(_LIBCPP_ENABLE_EXPERIMENTAL) && !defined(_LIBCPP_BUILDING_LIBRARY)
  423. # define _LIBCPP_HAS_NO_INCOMPLETE_PSTL
  424. # define _LIBCPP_HAS_NO_EXPERIMENTAL_STOP_TOKEN
  425. # define _LIBCPP_HAS_NO_INCOMPLETE_TZDB
  426. # define _LIBCPP_HAS_NO_EXPERIMENTAL_SYNCSTREAM
  427. # endif
  428. // Need to detect which libc we're using if we're on Linux.
  429. # if defined(__linux__)
  430. # include <features.h>
  431. # if defined(__GLIBC_PREREQ)
  432. # define _LIBCPP_GLIBC_PREREQ(a, b) __GLIBC_PREREQ(a, b)
  433. # else
  434. # define _LIBCPP_GLIBC_PREREQ(a, b) 0
  435. # endif // defined(__GLIBC_PREREQ)
  436. # endif // defined(__linux__)
  437. # if defined(__MVS__)
  438. # include <features.h> // for __NATIVE_ASCII_F
  439. # endif
  440. # ifndef __BYTE_ORDER__
  441. # error \
  442. "Your compiler doesn't seem to define __BYTE_ORDER__, which is required by libc++ to know the endianness of your target platform"
  443. # endif
  444. # if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
  445. # define _LIBCPP_LITTLE_ENDIAN
  446. # elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
  447. # define _LIBCPP_BIG_ENDIAN
  448. # endif // __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
  449. # if defined(_WIN32)
  450. # define _LIBCPP_WIN32API
  451. # define _LIBCPP_SHORT_WCHAR 1
  452. // Both MinGW and native MSVC provide a "MSVC"-like environment
  453. # define _LIBCPP_MSVCRT_LIKE
  454. // If mingw not explicitly detected, assume using MS C runtime only if
  455. // a MS compatibility version is specified.
  456. # if defined(_MSC_VER) && !defined(__MINGW32__)
  457. # define _LIBCPP_MSVCRT // Using Microsoft's C Runtime library
  458. # endif
  459. # if (defined(_M_AMD64) || defined(__x86_64__)) || (defined(_M_ARM) || defined(__arm__))
  460. # define _LIBCPP_HAS_BITSCAN64
  461. # endif
  462. # define _LIBCPP_HAS_OPEN_WITH_WCHAR
  463. # endif // defined(_WIN32)
  464. # if defined(_AIX) && !defined(__64BIT__)
  465. // The size of wchar is 2 byte on 32-bit mode on AIX.
  466. # define _LIBCPP_SHORT_WCHAR 1
  467. # endif
  468. // Libc++ supports various implementations of std::random_device.
  469. //
  470. // _LIBCPP_USING_DEV_RANDOM
  471. // Read entropy from the given file, by default `/dev/urandom`.
  472. // If a token is provided, it is assumed to be the path to a file
  473. // to read entropy from. This is the default behavior if nothing
  474. // else is specified. This implementation requires storing state
  475. // inside `std::random_device`.
  476. //
  477. // _LIBCPP_USING_ARC4_RANDOM
  478. // Use arc4random(). This allows obtaining random data even when
  479. // using sandboxing mechanisms. On some platforms like Apple, this
  480. // is the recommended source of entropy for user-space programs.
  481. // When this option is used, the token passed to `std::random_device`'s
  482. // constructor *must* be "/dev/urandom" -- anything else is an error.
  483. //
  484. // _LIBCPP_USING_GETENTROPY
  485. // Use getentropy().
  486. // When this option is used, the token passed to `std::random_device`'s
  487. // constructor *must* be "/dev/urandom" -- anything else is an error.
  488. //
  489. // _LIBCPP_USING_FUCHSIA_CPRNG
  490. // Use Fuchsia's zx_cprng_draw() system call, which is specified to
  491. // deliver high-quality entropy and cannot fail.
  492. // When this option is used, the token passed to `std::random_device`'s
  493. // constructor *must* be "/dev/urandom" -- anything else is an error.
  494. //
  495. // _LIBCPP_USING_NACL_RANDOM
  496. // NaCl's sandbox (which PNaCl also runs in) doesn't allow filesystem access,
  497. // including accesses to the special files under `/dev`. This implementation
  498. // uses the NaCL syscall `nacl_secure_random_init()` to get entropy.
  499. // When this option is used, the token passed to `std::random_device`'s
  500. // constructor *must* be "/dev/urandom" -- anything else is an error.
  501. //
  502. // _LIBCPP_USING_WIN32_RANDOM
  503. // Use rand_s(), for use on Windows.
  504. // When this option is used, the token passed to `std::random_device`'s
  505. // constructor *must* be "/dev/urandom" -- anything else is an error.
  506. # if defined(__APPLE__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || \
  507. defined(__DragonFly__)
  508. # define _LIBCPP_USING_ARC4_RANDOM
  509. # elif defined(__wasi__) || defined(__EMSCRIPTEN__)
  510. # define _LIBCPP_USING_GETENTROPY
  511. # elif defined(__Fuchsia__)
  512. # define _LIBCPP_USING_FUCHSIA_CPRNG
  513. # elif defined(__native_client__)
  514. # define _LIBCPP_USING_NACL_RANDOM
  515. # elif defined(_LIBCPP_WIN32API)
  516. # define _LIBCPP_USING_WIN32_RANDOM
  517. # else
  518. # define _LIBCPP_USING_DEV_RANDOM
  519. # endif
  520. # ifndef _LIBCPP_CXX03_LANG
  521. # define _LIBCPP_ALIGNOF(_Tp) alignof(_Tp)
  522. # define _ALIGNAS_TYPE(x) alignas(x)
  523. # define _ALIGNAS(x) alignas(x)
  524. # define _LIBCPP_NORETURN [[noreturn]]
  525. # define _NOEXCEPT noexcept
  526. # define _NOEXCEPT_(...) noexcept(__VA_ARGS__)
  527. # define _LIBCPP_CONSTEXPR constexpr
  528. # else
  529. # define _LIBCPP_ALIGNOF(_Tp) _Alignof(_Tp)
  530. # define _ALIGNAS_TYPE(x) __attribute__((__aligned__(_LIBCPP_ALIGNOF(x))))
  531. # define _ALIGNAS(x) __attribute__((__aligned__(x)))
  532. # define _LIBCPP_NORETURN __attribute__((__noreturn__))
  533. # define _LIBCPP_HAS_NO_NOEXCEPT
  534. # define nullptr __nullptr
  535. # define _NOEXCEPT throw()
  536. # define _NOEXCEPT_(...)
  537. # define static_assert(...) _Static_assert(__VA_ARGS__)
  538. # define decltype(...) __decltype(__VA_ARGS__)
  539. # define _LIBCPP_CONSTEXPR
  540. typedef __char16_t char16_t;
  541. typedef __char32_t char32_t;
  542. # endif
  543. # if !defined(__cpp_exceptions) || __cpp_exceptions < 199711L
  544. # define _LIBCPP_HAS_NO_EXCEPTIONS
  545. # endif
  546. # define _LIBCPP_PREFERRED_ALIGNOF(_Tp) __alignof(_Tp)
  547. # if defined(_LIBCPP_COMPILER_CLANG_BASED)
  548. # if defined(__APPLE__)
  549. # if defined(__i386__) || defined(__x86_64__)
  550. // use old string layout on x86_64 and i386
  551. # elif defined(__arm__)
  552. // use old string layout on arm (which does not include aarch64/arm64), except on watch ABIs
  553. # if defined(__ARM_ARCH_7K__) && __ARM_ARCH_7K__ >= 2
  554. # define _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
  555. # endif
  556. # else
  557. # define _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
  558. # endif
  559. # endif
  560. // Objective-C++ features (opt-in)
  561. # if __has_feature(objc_arc)
  562. # define _LIBCPP_HAS_OBJC_ARC
  563. # endif
  564. # if __has_feature(objc_arc_weak)
  565. # define _LIBCPP_HAS_OBJC_ARC_WEAK
  566. # endif
  567. # if __has_extension(blocks)
  568. # define _LIBCPP_HAS_EXTENSION_BLOCKS
  569. # endif
  570. # if defined(_LIBCPP_HAS_EXTENSION_BLOCKS) && defined(__APPLE__)
  571. # define _LIBCPP_HAS_BLOCKS_RUNTIME
  572. # endif
  573. # if !__has_feature(address_sanitizer)
  574. # define _LIBCPP_HAS_NO_ASAN
  575. # endif
  576. # define _LIBCPP_ALWAYS_INLINE __attribute__((__always_inline__))
  577. # define _LIBCPP_DISABLE_EXTENSION_WARNING __extension__
  578. # elif defined(_LIBCPP_COMPILER_GCC)
  579. # if !defined(__SANITIZE_ADDRESS__)
  580. # define _LIBCPP_HAS_NO_ASAN
  581. # endif
  582. # define _LIBCPP_ALWAYS_INLINE __attribute__((__always_inline__))
  583. # define _LIBCPP_DISABLE_EXTENSION_WARNING __extension__
  584. # endif // _LIBCPP_COMPILER_[CLANG|GCC]
  585. # if defined(_LIBCPP_OBJECT_FORMAT_COFF)
  586. # ifdef _DLL
  587. # define _LIBCPP_CRT_FUNC __declspec(dllimport)
  588. # else
  589. # define _LIBCPP_CRT_FUNC
  590. # endif
  591. # if defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) || (defined(__MINGW32__) && !defined(_LIBCPP_BUILDING_LIBRARY))
  592. # define _LIBCPP_DLL_VIS
  593. # define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS
  594. # define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS
  595. # define _LIBCPP_OVERRIDABLE_FUNC_VIS
  596. # define _LIBCPP_EXPORTED_FROM_ABI
  597. # elif defined(_LIBCPP_BUILDING_LIBRARY)
  598. # define _LIBCPP_DLL_VIS __declspec(dllexport)
  599. # if defined(__MINGW32__)
  600. # define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS _LIBCPP_DLL_VIS
  601. # define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS
  602. # else
  603. # define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS
  604. # define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS _LIBCPP_DLL_VIS
  605. # endif
  606. # define _LIBCPP_OVERRIDABLE_FUNC_VIS _LIBCPP_DLL_VIS
  607. # define _LIBCPP_EXPORTED_FROM_ABI __declspec(dllexport)
  608. # else
  609. # define _LIBCPP_DLL_VIS __declspec(dllimport)
  610. # define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS _LIBCPP_DLL_VIS
  611. # define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS
  612. # define _LIBCPP_OVERRIDABLE_FUNC_VIS
  613. # define _LIBCPP_EXPORTED_FROM_ABI __declspec(dllimport)
  614. # endif
  615. # define _LIBCPP_HIDDEN
  616. # define _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
  617. # define _LIBCPP_TEMPLATE_VIS
  618. # define _LIBCPP_TEMPLATE_DATA_VIS
  619. # define _LIBCPP_TYPE_VISIBILITY_DEFAULT
  620. # else
  621. # if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS)
  622. # define _LIBCPP_VISIBILITY(vis) __attribute__((__visibility__(vis)))
  623. # else
  624. # define _LIBCPP_VISIBILITY(vis)
  625. # endif
  626. # define _LIBCPP_HIDDEN _LIBCPP_VISIBILITY("hidden")
  627. # define _LIBCPP_TEMPLATE_DATA_VIS _LIBCPP_VISIBILITY("default")
  628. # define _LIBCPP_EXPORTED_FROM_ABI _LIBCPP_VISIBILITY("default")
  629. # define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS _LIBCPP_VISIBILITY("default")
  630. # define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS
  631. // TODO: Make this a proper customization point or remove the option to override it.
  632. # ifndef _LIBCPP_OVERRIDABLE_FUNC_VIS
  633. # define _LIBCPP_OVERRIDABLE_FUNC_VIS _LIBCPP_VISIBILITY("default")
  634. # endif
  635. # if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS)
  636. // The inline should be removed once PR32114 is resolved
  637. # define _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS inline _LIBCPP_HIDDEN
  638. # else
  639. # define _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
  640. # endif
  641. // GCC doesn't support the type_visibility attribute, so we have to keep the visibility attribute on templates
  642. # if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) && !__has_attribute(__type_visibility__)
  643. # define _LIBCPP_TEMPLATE_VIS __attribute__((__visibility__("default")))
  644. # else
  645. # define _LIBCPP_TEMPLATE_VIS
  646. # endif
  647. # if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) && __has_attribute(__type_visibility__)
  648. # define _LIBCPP_TYPE_VISIBILITY_DEFAULT __attribute__((__type_visibility__("default")))
  649. # else
  650. # define _LIBCPP_TYPE_VISIBILITY_DEFAULT
  651. # endif
  652. # endif // defined(_LIBCPP_OBJECT_FORMAT_COFF)
  653. # if __has_attribute(exclude_from_explicit_instantiation)
  654. # define _LIBCPP_EXCLUDE_FROM_EXPLICIT_INSTANTIATION __attribute__((__exclude_from_explicit_instantiation__))
  655. # else
  656. // Try to approximate the effect of exclude_from_explicit_instantiation
  657. // (which is that entities are not assumed to be provided by explicit
  658. // template instantiations in the dylib) by always inlining those entities.
  659. # define _LIBCPP_EXCLUDE_FROM_EXPLICIT_INSTANTIATION _LIBCPP_ALWAYS_INLINE
  660. # endif
  661. # if _LIBCPP_HARDENING_MODE == _LIBCPP_HARDENING_MODE_FAST
  662. # define _LIBCPP_HARDENING_SIG f
  663. # elif _LIBCPP_HARDENING_MODE == _LIBCPP_HARDENING_MODE_EXTENSIVE
  664. # define _LIBCPP_HARDENING_SIG s
  665. # elif _LIBCPP_HARDENING_MODE == _LIBCPP_HARDENING_MODE_DEBUG
  666. # define _LIBCPP_HARDENING_SIG d
  667. # else
  668. # define _LIBCPP_HARDENING_SIG n // "none"
  669. # endif
  670. # ifdef _LIBCPP_HAS_NO_EXCEPTIONS
  671. # define _LIBCPP_EXCEPTIONS_SIG n
  672. # else
  673. # define _LIBCPP_EXCEPTIONS_SIG e
  674. # endif
  675. # define _LIBCPP_ODR_SIGNATURE \
  676. _LIBCPP_CONCAT(_LIBCPP_CONCAT(_LIBCPP_HARDENING_SIG, _LIBCPP_EXCEPTIONS_SIG), _LIBCPP_VERSION)
  677. // This macro marks a symbol as being hidden from libc++'s ABI. This is achieved
  678. // on two levels:
  679. // 1. The symbol is given hidden visibility, which ensures that users won't start exporting
  680. // symbols from their dynamic library by means of using the libc++ headers. This ensures
  681. // that those symbols stay private to the dynamic library in which it is defined.
  682. //
  683. // 2. The symbol is given an ABI tag that encodes the ODR-relevant properties of the library.
  684. // This ensures that no ODR violation can arise from mixing two TUs compiled with different
  685. // versions or configurations of libc++ (such as exceptions vs no-exceptions). Indeed, if the
  686. // program contains two definitions of a function, the ODR requires them to be token-by-token
  687. // equivalent, and the linker is allowed to pick either definition and discard the other one.
  688. //
  689. // For example, if a program contains a copy of `vector::at()` compiled with exceptions enabled
  690. // *and* a copy of `vector::at()` compiled with exceptions disabled (by means of having two TUs
  691. // compiled with different settings), the two definitions are both visible by the linker and they
  692. // have the same name, but they have a meaningfully different implementation (one throws an exception
  693. // and the other aborts the program). This violates the ODR and makes the program ill-formed, and in
  694. // practice what will happen is that the linker will pick one of the definitions at random and will
  695. // discard the other one. This can quite clearly lead to incorrect program behavior.
  696. //
  697. // A similar reasoning holds for many other properties that are ODR-affecting. Essentially any
  698. // property that causes the code of a function to differ from the code in another configuration
  699. // can be considered ODR-affecting. In practice, we don't encode all such properties in the ABI
  700. // tag, but we encode the ones that we think are most important: library version, exceptions, and
  701. // hardening mode.
  702. //
  703. // Note that historically, solving this problem has been achieved in various ways, including
  704. // force-inlining all functions or giving internal linkage to all functions. Both these previous
  705. // solutions suffer from drawbacks that lead notably to code bloat.
  706. //
  707. // Note that we use _LIBCPP_EXCLUDE_FROM_EXPLICIT_INSTANTIATION to ensure that we don't depend
  708. // on _LIBCPP_HIDE_FROM_ABI methods of classes explicitly instantiated in the dynamic library.
  709. //
  710. // Also note that the _LIBCPP_HIDE_FROM_ABI_VIRTUAL macro should be used on virtual functions
  711. // instead of _LIBCPP_HIDE_FROM_ABI. That macro does not use an ABI tag. Indeed, the mangled
  712. // name of a virtual function is part of its ABI, since some architectures like arm64e can sign
  713. // the virtual function pointer in the vtable based on the mangled name of the function. Since
  714. // we use an ABI tag that changes with each released version, the mangled name of the virtual
  715. // function would change, which is incorrect. Note that it doesn't make much sense to change
  716. // the implementation of a virtual function in an ABI-incompatible way in the first place,
  717. // since that would be an ABI break anyway. Hence, the lack of ABI tag should not be noticeable.
  718. //
  719. // TODO: We provide a escape hatch with _LIBCPP_NO_ABI_TAG for folks who want to avoid increasing
  720. // the length of symbols with an ABI tag. In practice, we should remove the escape hatch and
  721. // use compression mangling instead, see https://github.com/itanium-cxx-abi/cxx-abi/issues/70.
  722. # if !defined(_LIBCPP_NO_ABI_TAG) && !defined(__CUDACC__)
  723. # define _LIBCPP_HIDE_FROM_ABI \
  724. _LIBCPP_HIDDEN _LIBCPP_EXCLUDE_FROM_EXPLICIT_INSTANTIATION \
  725. __attribute__((__abi_tag__(_LIBCPP_TOSTRING(_LIBCPP_ODR_SIGNATURE))))
  726. # else
  727. # define _LIBCPP_HIDE_FROM_ABI _LIBCPP_HIDDEN _LIBCPP_EXCLUDE_FROM_EXPLICIT_INSTANTIATION
  728. # endif
  729. # define _LIBCPP_HIDE_FROM_ABI_VIRTUAL _LIBCPP_HIDDEN _LIBCPP_EXCLUDE_FROM_EXPLICIT_INSTANTIATION
  730. // This macro provides a HIDE_FROM_ABI equivalent that can be applied to extern
  731. // "C" function, as those lack mangling.
  732. # define _LIBCPP_HIDE_FROM_ABI_C _LIBCPP_HIDDEN _LIBCPP_EXCLUDE_FROM_EXPLICIT_INSTANTIATION
  733. # ifdef _LIBCPP_BUILDING_LIBRARY
  734. # if _LIBCPP_ABI_VERSION > 1
  735. # define _LIBCPP_HIDE_FROM_ABI_AFTER_V1 _LIBCPP_HIDE_FROM_ABI
  736. # else
  737. # define _LIBCPP_HIDE_FROM_ABI_AFTER_V1
  738. # endif
  739. # else
  740. # define _LIBCPP_HIDE_FROM_ABI_AFTER_V1 _LIBCPP_HIDE_FROM_ABI
  741. # endif
  742. // Inline namespaces are available in Clang/GCC/MSVC regardless of C++ dialect.
  743. // clang-format off
  744. # define _LIBCPP_BEGIN_NAMESPACE_STD namespace _LIBCPP_TYPE_VISIBILITY_DEFAULT std { \
  745. inline namespace _LIBCPP_ABI_NAMESPACE {
  746. # define _LIBCPP_END_NAMESPACE_STD }}
  747. # define _LIBCPP_BEGIN_NAMESPACE_FILESYSTEM _LIBCPP_BEGIN_NAMESPACE_STD \
  748. inline namespace __fs { namespace filesystem {
  749. # define _LIBCPP_END_NAMESPACE_FILESYSTEM _LIBCPP_END_NAMESPACE_STD }}
  750. // clang-format on
  751. # if __has_attribute(__enable_if__)
  752. # define _LIBCPP_PREFERRED_OVERLOAD __attribute__((__enable_if__(true, "")))
  753. # endif
  754. # if !defined(__SIZEOF_INT128__) || defined(_MSC_VER)
  755. # define _LIBCPP_HAS_NO_INT128
  756. # endif
  757. # ifdef _LIBCPP_CXX03_LANG
  758. # define _LIBCPP_DECLARE_STRONG_ENUM(x) \
  759. struct _LIBCPP_EXPORTED_FROM_ABI x { \
  760. enum __lx
  761. // clang-format off
  762. # define _LIBCPP_DECLARE_STRONG_ENUM_EPILOG(x) \
  763. __lx __v_; \
  764. _LIBCPP_HIDE_FROM_ABI x(__lx __v) : __v_(__v) {} \
  765. _LIBCPP_HIDE_FROM_ABI explicit x(int __v) : __v_(static_cast<__lx>(__v)) {} \
  766. _LIBCPP_HIDE_FROM_ABI operator int() const { return __v_; } \
  767. };
  768. // clang-format on
  769. # else // _LIBCPP_CXX03_LANG
  770. # define _LIBCPP_DECLARE_STRONG_ENUM(x) enum class x
  771. # define _LIBCPP_DECLARE_STRONG_ENUM_EPILOG(x)
  772. # endif // _LIBCPP_CXX03_LANG
  773. # if defined(__APPLE__) || defined(__FreeBSD__) || defined(_LIBCPP_MSVCRT_LIKE) || defined(__NetBSD__)
  774. # define _LIBCPP_LOCALE__L_EXTENSIONS 1
  775. # endif
  776. # ifdef __FreeBSD__
  777. # define _DECLARE_C99_LDBL_MATH 1
  778. # endif
  779. // If we are getting operator new from the MSVC CRT, then allocation overloads
  780. // for align_val_t were added in 19.12, aka VS 2017 version 15.3.
  781. # if defined(_LIBCPP_MSVCRT) && defined(_MSC_VER) && _MSC_VER < 1912
  782. # define _LIBCPP_HAS_NO_LIBRARY_ALIGNED_ALLOCATION
  783. # elif defined(_LIBCPP_ABI_VCRUNTIME) && !defined(__cpp_aligned_new)
  784. // We're deferring to Microsoft's STL to provide aligned new et al. We don't
  785. // have it unless the language feature test macro is defined.
  786. # define _LIBCPP_HAS_NO_LIBRARY_ALIGNED_ALLOCATION
  787. # elif defined(__MVS__)
  788. # define _LIBCPP_HAS_NO_LIBRARY_ALIGNED_ALLOCATION
  789. # endif
  790. # if defined(_LIBCPP_HAS_NO_LIBRARY_ALIGNED_ALLOCATION) || (!defined(__cpp_aligned_new) || __cpp_aligned_new < 201606)
  791. # define _LIBCPP_HAS_NO_ALIGNED_ALLOCATION
  792. # endif
  793. // It is not yet possible to use aligned_alloc() on all Apple platforms since
  794. // 10.15 was the first version to ship an implementation of aligned_alloc().
  795. # if defined(__APPLE__)
  796. # if (defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) && \
  797. __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 101500)
  798. # define _LIBCPP_HAS_NO_C11_ALIGNED_ALLOC
  799. # endif
  800. # elif defined(__ANDROID__) && __ANDROID_API__ < 28
  801. // Android only provides aligned_alloc when targeting API 28 or higher.
  802. # define _LIBCPP_HAS_NO_C11_ALIGNED_ALLOC
  803. # endif
  804. # if defined(__APPLE__) || defined(__FreeBSD__)
  805. # define _LIBCPP_HAS_DEFAULTRUNELOCALE
  806. # endif
  807. # if defined(__APPLE__) || defined(__FreeBSD__)
  808. # define _LIBCPP_WCTYPE_IS_MASK
  809. # endif
  810. # if _LIBCPP_STD_VER <= 17 || !defined(__cpp_char8_t)
  811. # define _LIBCPP_HAS_NO_CHAR8_T
  812. # endif
  813. // Deprecation macros.
  814. //
  815. // Deprecations warnings are always enabled, except when users explicitly opt-out
  816. // by defining _LIBCPP_DISABLE_DEPRECATION_WARNINGS.
  817. # if !defined(_LIBCPP_DISABLE_DEPRECATION_WARNINGS)
  818. # if __has_attribute(__deprecated__)
  819. # define _LIBCPP_DEPRECATED __attribute__((__deprecated__))
  820. # define _LIBCPP_DEPRECATED_(m) __attribute__((__deprecated__(m)))
  821. # elif _LIBCPP_STD_VER >= 14
  822. # define _LIBCPP_DEPRECATED [[deprecated]]
  823. # define _LIBCPP_DEPRECATED_(m) [[deprecated(m)]]
  824. # else
  825. # define _LIBCPP_DEPRECATED
  826. # define _LIBCPP_DEPRECATED_(m)
  827. # endif
  828. # else
  829. # define _LIBCPP_DEPRECATED
  830. # define _LIBCPP_DEPRECATED_(m)
  831. # endif
  832. # if !defined(_LIBCPP_CXX03_LANG)
  833. # define _LIBCPP_DEPRECATED_IN_CXX11 _LIBCPP_DEPRECATED
  834. # else
  835. # define _LIBCPP_DEPRECATED_IN_CXX11
  836. # endif
  837. # if _LIBCPP_STD_VER >= 14
  838. # define _LIBCPP_DEPRECATED_IN_CXX14 _LIBCPP_DEPRECATED
  839. # else
  840. # define _LIBCPP_DEPRECATED_IN_CXX14
  841. # endif
  842. # if _LIBCPP_STD_VER >= 17
  843. # define _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_DEPRECATED
  844. # else
  845. # define _LIBCPP_DEPRECATED_IN_CXX17
  846. # endif
  847. # if _LIBCPP_STD_VER >= 20
  848. # define _LIBCPP_DEPRECATED_IN_CXX20 _LIBCPP_DEPRECATED
  849. # else
  850. # define _LIBCPP_DEPRECATED_IN_CXX20
  851. # endif
  852. # if _LIBCPP_STD_VER >= 23
  853. # define _LIBCPP_DEPRECATED_IN_CXX23 _LIBCPP_DEPRECATED
  854. # else
  855. # define _LIBCPP_DEPRECATED_IN_CXX23
  856. # endif
  857. # if _LIBCPP_STD_VER >= 26
  858. # define _LIBCPP_DEPRECATED_IN_CXX26 _LIBCPP_DEPRECATED
  859. # else
  860. # define _LIBCPP_DEPRECATED_IN_CXX26
  861. # endif
  862. # if !defined(_LIBCPP_HAS_NO_CHAR8_T)
  863. # define _LIBCPP_DEPRECATED_WITH_CHAR8_T _LIBCPP_DEPRECATED
  864. # else
  865. # define _LIBCPP_DEPRECATED_WITH_CHAR8_T
  866. # endif
  867. // Macros to enter and leave a state where deprecation warnings are suppressed.
  868. # if defined(_LIBCPP_COMPILER_CLANG_BASED) || defined(_LIBCPP_COMPILER_GCC)
  869. # define _LIBCPP_SUPPRESS_DEPRECATED_PUSH \
  870. _Pragma("GCC diagnostic push") _Pragma("GCC diagnostic ignored \"-Wdeprecated\"") \
  871. _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
  872. # define _LIBCPP_SUPPRESS_DEPRECATED_POP _Pragma("GCC diagnostic pop")
  873. # else
  874. # define _LIBCPP_SUPPRESS_DEPRECATED_PUSH
  875. # define _LIBCPP_SUPPRESS_DEPRECATED_POP
  876. # endif
  877. # if _LIBCPP_STD_VER <= 11
  878. # define _LIBCPP_EXPLICIT_SINCE_CXX14
  879. # else
  880. # define _LIBCPP_EXPLICIT_SINCE_CXX14 explicit
  881. # endif
  882. # if _LIBCPP_STD_VER >= 23
  883. # define _LIBCPP_EXPLICIT_SINCE_CXX23 explicit
  884. # else
  885. # define _LIBCPP_EXPLICIT_SINCE_CXX23
  886. # endif
  887. # if _LIBCPP_STD_VER >= 14
  888. # define _LIBCPP_CONSTEXPR_SINCE_CXX14 constexpr
  889. # else
  890. # define _LIBCPP_CONSTEXPR_SINCE_CXX14
  891. # endif
  892. # if _LIBCPP_STD_VER >= 17
  893. # define _LIBCPP_CONSTEXPR_SINCE_CXX17 constexpr
  894. # else
  895. # define _LIBCPP_CONSTEXPR_SINCE_CXX17
  896. # endif
  897. # if _LIBCPP_STD_VER >= 20
  898. # define _LIBCPP_CONSTEXPR_SINCE_CXX20 constexpr
  899. # else
  900. # define _LIBCPP_CONSTEXPR_SINCE_CXX20
  901. # endif
  902. # if _LIBCPP_STD_VER >= 23
  903. # define _LIBCPP_CONSTEXPR_SINCE_CXX23 constexpr
  904. # else
  905. # define _LIBCPP_CONSTEXPR_SINCE_CXX23
  906. # endif
  907. # ifndef _LIBCPP_HAS_NO_ASAN
  908. extern "C" _LIBCPP_EXPORTED_FROM_ABI void
  909. __sanitizer_annotate_contiguous_container(const void*, const void*, const void*, const void*);
  910. # if !defined(_LIBCPP_NO_ASAN_CONTIGUOUS_CONTAINER_FEATURES)
  911. extern "C" _LIBCPP_EXPORTED_FROM_ABI void __sanitizer_annotate_double_ended_contiguous_container(
  912. const void*, const void*, const void*, const void*, const void*, const void*);
  913. extern "C" _LIBCPP_EXPORTED_FROM_ABI int
  914. __sanitizer_verify_double_ended_contiguous_container(const void*, const void*, const void*, const void*);
  915. # endif
  916. # endif
  917. // Try to find out if RTTI is disabled.
  918. # if !defined(__cpp_rtti) || __cpp_rtti < 199711L
  919. # define _LIBCPP_HAS_NO_RTTI
  920. # endif
  921. # ifndef _LIBCPP_WEAK
  922. # define _LIBCPP_WEAK __attribute__((__weak__))
  923. # endif
  924. // Thread API
  925. // clang-format off
  926. # if !defined(_LIBCPP_HAS_NO_THREADS) && \
  927. !defined(_LIBCPP_HAS_THREAD_API_PTHREAD) && \
  928. !defined(_LIBCPP_HAS_THREAD_API_WIN32) && \
  929. !defined(_LIBCPP_HAS_THREAD_API_EXTERNAL)
  930. # if defined(__FreeBSD__) || \
  931. defined(__wasi__) || \
  932. defined(__NetBSD__) || \
  933. defined(__OpenBSD__) || \
  934. defined(__NuttX__) || \
  935. defined(__linux__) || \
  936. defined(__GNU__) || \
  937. defined(__APPLE__) || \
  938. defined(__MVS__) || \
  939. defined(_AIX) || \
  940. defined(__EMSCRIPTEN__) || \
  941. defined(__CYGWIN__)
  942. // clang-format on
  943. # define _LIBCPP_HAS_THREAD_API_PTHREAD
  944. # elif defined(__Fuchsia__)
  945. // TODO(44575): Switch to C11 thread API when possible.
  946. # define _LIBCPP_HAS_THREAD_API_PTHREAD
  947. # elif defined(_LIBCPP_WIN32API)
  948. # define _LIBCPP_HAS_THREAD_API_WIN32
  949. # else
  950. # error "No thread API"
  951. # endif // _LIBCPP_HAS_THREAD_API
  952. # endif // _LIBCPP_HAS_NO_THREADS
  953. # if defined(_LIBCPP_HAS_THREAD_API_PTHREAD)
  954. # if defined(__ANDROID__) && __ANDROID_API__ >= 30
  955. # define _LIBCPP_HAS_COND_CLOCKWAIT
  956. # elif defined(_LIBCPP_GLIBC_PREREQ)
  957. # if _LIBCPP_GLIBC_PREREQ(2, 30)
  958. # define _LIBCPP_HAS_COND_CLOCKWAIT
  959. # endif
  960. # endif
  961. # endif
  962. # if defined(_LIBCPP_HAS_NO_THREADS) && defined(_LIBCPP_HAS_THREAD_API_PTHREAD)
  963. # error _LIBCPP_HAS_THREAD_API_PTHREAD may only be defined when \
  964. _LIBCPP_HAS_NO_THREADS is not defined.
  965. # endif
  966. # if defined(_LIBCPP_HAS_NO_THREADS) && defined(_LIBCPP_HAS_THREAD_API_EXTERNAL)
  967. # error _LIBCPP_HAS_THREAD_API_EXTERNAL may not be defined when \
  968. _LIBCPP_HAS_NO_THREADS is defined.
  969. # endif
  970. # if defined(_LIBCPP_HAS_NO_MONOTONIC_CLOCK) && !defined(_LIBCPP_HAS_NO_THREADS)
  971. # error _LIBCPP_HAS_NO_MONOTONIC_CLOCK may only be defined when \
  972. _LIBCPP_HAS_NO_THREADS is defined.
  973. # endif
  974. # if !defined(_LIBCPP_HAS_NO_THREADS) && !defined(__STDCPP_THREADS__)
  975. # define __STDCPP_THREADS__ 1
  976. # endif
  977. // The glibc and Bionic implementation of pthreads implements
  978. // pthread_mutex_destroy as nop for regular mutexes. Additionally, Win32
  979. // mutexes have no destroy mechanism.
  980. //
  981. // This optimization can't be performed on Apple platforms, where
  982. // pthread_mutex_destroy can allow the kernel to release resources.
  983. // See https://llvm.org/D64298 for details.
  984. //
  985. // TODO(EricWF): Enable this optimization on Bionic after speaking to their
  986. // respective stakeholders.
  987. // clang-format off
  988. # if (defined(_LIBCPP_HAS_THREAD_API_PTHREAD) && defined(__GLIBC__)) || \
  989. (defined(_LIBCPP_HAS_THREAD_API_C11) && defined(__Fuchsia__)) || \
  990. defined(_LIBCPP_HAS_THREAD_API_WIN32)
  991. // clang-format on
  992. # define _LIBCPP_HAS_TRIVIAL_MUTEX_DESTRUCTION
  993. # endif
  994. // Destroying a condvar is a nop on Windows.
  995. //
  996. // This optimization can't be performed on Apple platforms, where
  997. // pthread_cond_destroy can allow the kernel to release resources.
  998. // See https://llvm.org/D64298 for details.
  999. //
  1000. // TODO(EricWF): This is potentially true for some pthread implementations
  1001. // as well.
  1002. # if (defined(_LIBCPP_HAS_THREAD_API_C11) && defined(__Fuchsia__)) || defined(_LIBCPP_HAS_THREAD_API_WIN32)
  1003. # define _LIBCPP_HAS_TRIVIAL_CONDVAR_DESTRUCTION
  1004. # endif
  1005. # if defined(__BIONIC__) || defined(__NuttX__) || defined(__Fuchsia__) || defined(__wasi__) || \
  1006. defined(_LIBCPP_HAS_MUSL_LIBC) || defined(__OpenBSD__)
  1007. # define _LIBCPP_PROVIDES_DEFAULT_RUNE_TABLE
  1008. # endif
  1009. # if __has_feature(cxx_atomic) || __has_extension(c_atomic) || __has_keyword(_Atomic)
  1010. # define _LIBCPP_HAS_C_ATOMIC_IMP
  1011. # elif defined(_LIBCPP_COMPILER_GCC)
  1012. # define _LIBCPP_HAS_GCC_ATOMIC_IMP
  1013. # endif
  1014. # if !defined(_LIBCPP_HAS_C_ATOMIC_IMP) && !defined(_LIBCPP_HAS_GCC_ATOMIC_IMP) && \
  1015. !defined(_LIBCPP_HAS_EXTERNAL_ATOMIC_IMP)
  1016. # define _LIBCPP_HAS_NO_ATOMIC_HEADER
  1017. # else
  1018. # ifndef _LIBCPP_ATOMIC_FLAG_TYPE
  1019. # define _LIBCPP_ATOMIC_FLAG_TYPE bool
  1020. # endif
  1021. # endif
  1022. # if defined(__FreeBSD__) && defined(__clang__) && __has_attribute(__no_thread_safety_analysis__)
  1023. # define _LIBCPP_NO_THREAD_SAFETY_ANALYSIS __attribute__((__no_thread_safety_analysis__))
  1024. # else
  1025. # define _LIBCPP_NO_THREAD_SAFETY_ANALYSIS
  1026. # endif
  1027. # if defined(_LIBCPP_ENABLE_THREAD_SAFETY_ANNOTATIONS)
  1028. # if defined(__clang__) && __has_attribute(acquire_capability)
  1029. // Work around the attribute handling in clang. When both __declspec and
  1030. // __attribute__ are present, the processing goes awry preventing the definition
  1031. // of the types. In MinGW mode, __declspec evaluates to __attribute__, and thus
  1032. // combining the two does work.
  1033. # if !defined(_MSC_VER)
  1034. # define _LIBCPP_HAS_THREAD_SAFETY_ANNOTATIONS
  1035. # endif
  1036. # endif
  1037. # endif
  1038. # ifdef _LIBCPP_HAS_THREAD_SAFETY_ANNOTATIONS
  1039. # define _LIBCPP_THREAD_SAFETY_ANNOTATION(x) __attribute__((x))
  1040. # else
  1041. # define _LIBCPP_THREAD_SAFETY_ANNOTATION(x)
  1042. # endif
  1043. # if _LIBCPP_STD_VER >= 20
  1044. # define _LIBCPP_CONSTINIT constinit
  1045. # elif __has_attribute(__require_constant_initialization__)
  1046. # define _LIBCPP_CONSTINIT __attribute__((__require_constant_initialization__))
  1047. # else
  1048. # define _LIBCPP_CONSTINIT
  1049. # endif
  1050. # if defined(__CUDACC__) || defined(__CUDA_ARCH__) || defined(__CUDA_LIBDEVICE__)
  1051. // The CUDA SDK contains an unfortunate definition for the __noinline__ macro,
  1052. // which breaks the regular __attribute__((__noinline__)) syntax. Therefore,
  1053. // when compiling for CUDA we use the non-underscored version of the noinline
  1054. // attribute.
  1055. //
  1056. // This is a temporary workaround and we still expect the CUDA SDK team to solve
  1057. // this issue properly in the SDK headers.
  1058. //
  1059. // See https://github.com/llvm/llvm-project/pull/73838 for more details.
  1060. # define _LIBCPP_NOINLINE __attribute__((noinline))
  1061. # elif __has_attribute(__noinline__)
  1062. # define _LIBCPP_NOINLINE __attribute__((__noinline__))
  1063. # else
  1064. # define _LIBCPP_NOINLINE
  1065. # endif
  1066. // We often repeat things just for handling wide characters in the library.
  1067. // When wide characters are disabled, it can be useful to have a quick way of
  1068. // disabling it without having to resort to #if-#endif, which has a larger
  1069. // impact on readability.
  1070. # if defined(_LIBCPP_HAS_NO_WIDE_CHARACTERS)
  1071. # define _LIBCPP_IF_WIDE_CHARACTERS(...)
  1072. # else
  1073. # define _LIBCPP_IF_WIDE_CHARACTERS(...) __VA_ARGS__
  1074. # endif
  1075. # if defined(_LIBCPP_ENABLE_CXX17_REMOVED_FEATURES)
  1076. # define _LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR
  1077. # define _LIBCPP_ENABLE_CXX17_REMOVED_BINDERS
  1078. # define _LIBCPP_ENABLE_CXX17_REMOVED_RANDOM_SHUFFLE
  1079. # define _LIBCPP_ENABLE_CXX17_REMOVED_UNEXPECTED_FUNCTIONS
  1080. # define _LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION
  1081. # endif // _LIBCPP_ENABLE_CXX17_REMOVED_FEATURES
  1082. # if defined(_LIBCPP_ENABLE_CXX20_REMOVED_FEATURES)
  1083. # define _LIBCPP_ENABLE_CXX20_REMOVED_ALLOCATOR_MEMBERS
  1084. # define _LIBCPP_ENABLE_CXX20_REMOVED_ALLOCATOR_VOID_SPECIALIZATION
  1085. # define _LIBCPP_ENABLE_CXX20_REMOVED_BINDER_TYPEDEFS
  1086. # define _LIBCPP_ENABLE_CXX20_REMOVED_NEGATORS
  1087. # define _LIBCPP_ENABLE_CXX20_REMOVED_RAW_STORAGE_ITERATOR
  1088. # define _LIBCPP_ENABLE_CXX20_REMOVED_TYPE_TRAITS
  1089. # endif // _LIBCPP_ENABLE_CXX20_REMOVED_FEATURES
  1090. // Yandex-specific: We build our own libc++, so it has everything available
  1091. # define _LIBCPP_DISABLE_AVAILABILITY
  1092. // End of Yandex-specific
  1093. // clang-format off
  1094. # define _LIBCPP_PUSH_MACROS _Pragma("push_macro(\"min\")") _Pragma("push_macro(\"max\")") _Pragma("push_macro(\"refresh\")") _Pragma("push_macro(\"move\")") _Pragma("push_macro(\"erase\")")
  1095. # define _LIBCPP_POP_MACROS _Pragma("pop_macro(\"min\")") _Pragma("pop_macro(\"max\")") _Pragma("pop_macro(\"refresh\")") _Pragma("pop_macro(\"move\")") _Pragma("pop_macro(\"erase\")")
  1096. // clang-format on
  1097. # ifndef _LIBCPP_NO_AUTO_LINK
  1098. # if defined(_LIBCPP_ABI_MICROSOFT) && !defined(_LIBCPP_BUILDING_LIBRARY)
  1099. # if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS)
  1100. # pragma comment(lib, "c++.lib")
  1101. # else
  1102. # pragma comment(lib, "libc++.lib")
  1103. # endif
  1104. # endif // defined(_LIBCPP_ABI_MICROSOFT) && !defined(_LIBCPP_BUILDING_LIBRARY)
  1105. # endif // _LIBCPP_NO_AUTO_LINK
  1106. // Configures the fopen close-on-exec mode character, if any. This string will
  1107. // be appended to any mode string used by fstream for fopen/fdopen.
  1108. //
  1109. // Not all platforms support this, but it helps avoid fd-leaks on platforms that
  1110. // do.
  1111. # if defined(__BIONIC__)
  1112. # define _LIBCPP_FOPEN_CLOEXEC_MODE "e"
  1113. # else
  1114. # define _LIBCPP_FOPEN_CLOEXEC_MODE
  1115. # endif
  1116. # if __has_cpp_attribute(msvc::no_unique_address)
  1117. // MSVC implements [[no_unique_address]] as a silent no-op currently.
  1118. // (If/when MSVC breaks its C++ ABI, it will be changed to work as intended.)
  1119. // However, MSVC implements [[msvc::no_unique_address]] which does what
  1120. // [[no_unique_address]] is supposed to do, in general.
  1121. // Clang-cl does not yet (14.0) implement either [[no_unique_address]] or
  1122. // [[msvc::no_unique_address]] though. If/when it does implement
  1123. // [[msvc::no_unique_address]], this should be preferred though.
  1124. # define _LIBCPP_NO_UNIQUE_ADDRESS [[msvc::no_unique_address]]
  1125. # elif __has_cpp_attribute(no_unique_address)
  1126. # define _LIBCPP_NO_UNIQUE_ADDRESS [[__no_unique_address__]]
  1127. # else
  1128. # define _LIBCPP_NO_UNIQUE_ADDRESS /* nothing */
  1129. // Note that this can be replaced by #error as soon as clang-cl
  1130. // implements msvc::no_unique_address, since there should be no C++20
  1131. // compiler that doesn't support one of the two attributes at that point.
  1132. // We generally don't want to use this macro outside of C++20-only code,
  1133. // because using it conditionally in one language version only would make
  1134. // the ABI inconsistent.
  1135. # endif
  1136. # ifdef _LIBCPP_COMPILER_CLANG_BASED
  1137. # define _LIBCPP_DIAGNOSTIC_PUSH _Pragma("clang diagnostic push")
  1138. # define _LIBCPP_DIAGNOSTIC_POP _Pragma("clang diagnostic pop")
  1139. # define _LIBCPP_CLANG_DIAGNOSTIC_IGNORED(str) _Pragma(_LIBCPP_TOSTRING(clang diagnostic ignored str))
  1140. # define _LIBCPP_GCC_DIAGNOSTIC_IGNORED(str)
  1141. # elif defined(_LIBCPP_COMPILER_GCC)
  1142. # define _LIBCPP_DIAGNOSTIC_PUSH _Pragma("GCC diagnostic push")
  1143. # define _LIBCPP_DIAGNOSTIC_POP _Pragma("GCC diagnostic pop")
  1144. # define _LIBCPP_CLANG_DIAGNOSTIC_IGNORED(str)
  1145. # define _LIBCPP_GCC_DIAGNOSTIC_IGNORED(str) _Pragma(_LIBCPP_TOSTRING(GCC diagnostic ignored str))
  1146. # else
  1147. # define _LIBCPP_DIAGNOSTIC_PUSH
  1148. # define _LIBCPP_DIAGNOSTIC_POP
  1149. # define _LIBCPP_CLANG_DIAGNOSTIC_IGNORED(str)
  1150. # define _LIBCPP_GCC_DIAGNOSTIC_IGNORED(str)
  1151. # endif
  1152. // c8rtomb() and mbrtoc8() were added in C++20 and C23. Support for these
  1153. // functions is gradually being added to existing C libraries. The conditions
  1154. // below check for known C library versions and conditions under which these
  1155. // functions are declared by the C library.
  1156. # define _LIBCPP_HAS_NO_C8RTOMB_MBRTOC8
  1157. // GNU libc 2.36 and newer declare c8rtomb() and mbrtoc8() in C++ modes if
  1158. // __cpp_char8_t is defined or if C2X extensions are enabled. Determining
  1159. // the latter depends on internal GNU libc details that are not appropriate
  1160. // to depend on here, so any declarations present when __cpp_char8_t is not
  1161. // defined are ignored.
  1162. # if defined(_LIBCPP_GLIBC_PREREQ)
  1163. # if _LIBCPP_GLIBC_PREREQ(2, 36) && defined(__cpp_char8_t)
  1164. # undef _LIBCPP_HAS_NO_C8RTOMB_MBRTOC8
  1165. # endif
  1166. # endif
  1167. // There are a handful of public standard library types that are intended to
  1168. // support CTAD but don't need any explicit deduction guides to do so. This
  1169. // macro is used to mark them as such, which suppresses the
  1170. // '-Wctad-maybe-unsupported' compiler warning when CTAD is used in user code
  1171. // with these classes.
  1172. # if _LIBCPP_STD_VER >= 17
  1173. # ifdef _LIBCPP_COMPILER_CLANG_BASED
  1174. # define _LIBCPP_CTAD_SUPPORTED_FOR_TYPE(_ClassName) \
  1175. template <class... _Tag> \
  1176. [[maybe_unused]] _ClassName(typename _Tag::__allow_ctad...)->_ClassName<_Tag...>
  1177. # else
  1178. # define _LIBCPP_CTAD_SUPPORTED_FOR_TYPE(ClassName) \
  1179. template <class... _Tag> \
  1180. ClassName(typename _Tag::__allow_ctad...)->ClassName<_Tag...>
  1181. # endif
  1182. # else
  1183. # define _LIBCPP_CTAD_SUPPORTED_FOR_TYPE(_ClassName) static_assert(true, "")
  1184. # endif
  1185. // TODO(varconst): currently, there are bugs in Clang's intrinsics when handling Objective-C++ `id`, so don't use
  1186. // compiler intrinsics in the Objective-C++ mode.
  1187. # ifdef __OBJC__
  1188. # define _LIBCPP_WORKAROUND_OBJCXX_COMPILER_INTRINSICS
  1189. # endif
  1190. # define _PSTL_PRAGMA(x) _Pragma(#x)
  1191. // Enable SIMD for compilers that support OpenMP 4.0
  1192. # if (defined(_OPENMP) && _OPENMP >= 201307)
  1193. # define _PSTL_UDR_PRESENT
  1194. # define _PSTL_PRAGMA_SIMD _PSTL_PRAGMA(omp simd)
  1195. # define _PSTL_PRAGMA_DECLARE_SIMD _PSTL_PRAGMA(omp declare simd)
  1196. # define _PSTL_PRAGMA_SIMD_REDUCTION(PRM) _PSTL_PRAGMA(omp simd reduction(PRM))
  1197. # define _PSTL_PRAGMA_SIMD_SCAN(PRM) _PSTL_PRAGMA(omp simd reduction(inscan, PRM))
  1198. # define _PSTL_PRAGMA_SIMD_INCLUSIVE_SCAN(PRM) _PSTL_PRAGMA(omp scan inclusive(PRM))
  1199. # define _PSTL_PRAGMA_SIMD_EXCLUSIVE_SCAN(PRM) _PSTL_PRAGMA(omp scan exclusive(PRM))
  1200. // Declaration of reduction functor, where
  1201. // NAME - the name of the functor
  1202. // OP - type of the callable object with the reduction operation
  1203. // omp_in - refers to the local partial result
  1204. // omp_out - refers to the final value of the combiner operator
  1205. // omp_priv - refers to the private copy of the initial value
  1206. // omp_orig - refers to the original variable to be reduced
  1207. # define _PSTL_PRAGMA_DECLARE_REDUCTION(NAME, OP) \
  1208. _PSTL_PRAGMA(omp declare reduction(NAME:OP : omp_out(omp_in)) initializer(omp_priv = omp_orig))
  1209. # elif defined(_LIBCPP_COMPILER_CLANG_BASED)
  1210. # define _PSTL_PRAGMA_SIMD _Pragma("clang loop vectorize(enable) interleave(enable)")
  1211. # define _PSTL_PRAGMA_DECLARE_SIMD
  1212. # define _PSTL_PRAGMA_SIMD_REDUCTION(PRM) _Pragma("clang loop vectorize(enable) interleave(enable)")
  1213. # define _PSTL_PRAGMA_SIMD_SCAN(PRM) _Pragma("clang loop vectorize(enable) interleave(enable)")
  1214. # define _PSTL_PRAGMA_SIMD_INCLUSIVE_SCAN(PRM)
  1215. # define _PSTL_PRAGMA_SIMD_EXCLUSIVE_SCAN(PRM)
  1216. # define _PSTL_PRAGMA_DECLARE_REDUCTION(NAME, OP)
  1217. # else // (defined(_OPENMP) && _OPENMP >= 201307)
  1218. # define _PSTL_PRAGMA_SIMD
  1219. # define _PSTL_PRAGMA_DECLARE_SIMD
  1220. # define _PSTL_PRAGMA_SIMD_REDUCTION(PRM)
  1221. # define _PSTL_PRAGMA_SIMD_SCAN(PRM)
  1222. # define _PSTL_PRAGMA_SIMD_INCLUSIVE_SCAN(PRM)
  1223. # define _PSTL_PRAGMA_SIMD_EXCLUSIVE_SCAN(PRM)
  1224. # define _PSTL_PRAGMA_DECLARE_REDUCTION(NAME, OP)
  1225. # endif // (defined(_OPENMP) && _OPENMP >= 201307)
  1226. # define _PSTL_USE_NONTEMPORAL_STORES_IF_ALLOWED
  1227. // Optional attributes - these are useful for a better QoI, but not required to be available
  1228. # if __has_attribute(__no_sanitize__) && !defined(_LIBCPP_COMPILER_GCC)
  1229. # define _LIBCPP_NO_CFI __attribute__((__no_sanitize__("cfi")))
  1230. # else
  1231. # define _LIBCPP_NO_CFI
  1232. # endif
  1233. # if __has_attribute(__malloc__)
  1234. # define _LIBCPP_NOALIAS __attribute__((__malloc__))
  1235. # else
  1236. # define _LIBCPP_NOALIAS
  1237. # endif
  1238. # if __has_attribute(__using_if_exists__)
  1239. # define _LIBCPP_USING_IF_EXISTS __attribute__((__using_if_exists__))
  1240. # else
  1241. # define _LIBCPP_USING_IF_EXISTS
  1242. # endif
  1243. # if __has_cpp_attribute(nodiscard)
  1244. # define _LIBCPP_NODISCARD [[__nodiscard__]]
  1245. # else
  1246. // We can't use GCC's [[gnu::warn_unused_result]] and
  1247. // __attribute__((warn_unused_result)), because GCC does not silence them via
  1248. // (void) cast.
  1249. # define _LIBCPP_NODISCARD
  1250. # endif
  1251. // _LIBCPP_NODISCARD_EXT may be used to apply [[nodiscard]] to entities not
  1252. // specified as such as an extension.
  1253. # if !defined(_LIBCPP_DISABLE_NODISCARD_EXT)
  1254. # define _LIBCPP_NODISCARD_EXT _LIBCPP_NODISCARD
  1255. # else
  1256. # define _LIBCPP_NODISCARD_EXT
  1257. # endif
  1258. # if _LIBCPP_STD_VER >= 20 || !defined(_LIBCPP_DISABLE_NODISCARD_EXT)
  1259. # define _LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_NODISCARD
  1260. # else
  1261. # define _LIBCPP_NODISCARD_AFTER_CXX17
  1262. # endif
  1263. # if __has_attribute(__no_destroy__)
  1264. # define _LIBCPP_NO_DESTROY __attribute__((__no_destroy__))
  1265. # else
  1266. # define _LIBCPP_NO_DESTROY
  1267. # endif
  1268. # if !__has_builtin(__builtin_is_constant_evaluated) || (defined(_LIBCPP_COMPILER_GCC) && _GNUC_VER < 900) || \
  1269. __CUDACC_VER_MAJOR__ == 10
  1270. # define _LIBCPP_HAS_NO_BUILTIN_IS_CONSTANT_EVALUATED
  1271. # endif
  1272. # if __has_attribute(__diagnose_if__) && !defined(_LIBCPP_DISABLE_ADDITIONAL_DIAGNOSTICS)
  1273. # define _LIBCPP_DIAGNOSE_WARNING(...) __attribute__((__diagnose_if__(__VA_ARGS__, "warning")))
  1274. # else
  1275. # define _LIBCPP_DIAGNOSE_WARNING(...)
  1276. # endif
  1277. // Use a function like macro to imply that it must be followed by a semicolon
  1278. # if __has_cpp_attribute(fallthrough)
  1279. # define _LIBCPP_FALLTHROUGH() [[fallthrough]]
  1280. # elif __has_attribute(__fallthrough__)
  1281. # define _LIBCPP_FALLTHROUGH() __attribute__((__fallthrough__))
  1282. # else
  1283. # define _LIBCPP_FALLTHROUGH() ((void)0)
  1284. # endif
  1285. # if __has_cpp_attribute(_Clang::__lifetimebound__)
  1286. # define _LIBCPP_LIFETIMEBOUND [[_Clang::__lifetimebound__]]
  1287. # else
  1288. # define _LIBCPP_LIFETIMEBOUND
  1289. # endif
  1290. # if defined(_LIBCPP_COMPILER_CLANG_BASED)
  1291. # define _LIBCPP_REINITIALIZES_OBJECT [[clang::reinitializes]]
  1292. # else
  1293. # define _LIBCPP_REINITIALIZES_OBJECT
  1294. # endif
  1295. # if __has_attribute(__nodebug__)
  1296. # define _LIBCPP_NODEBUG __attribute__((__nodebug__))
  1297. # else
  1298. # define _LIBCPP_NODEBUG
  1299. # endif
  1300. # if __has_attribute(__standalone_debug__)
  1301. # define _LIBCPP_STANDALONE_DEBUG __attribute__((__standalone_debug__))
  1302. # else
  1303. # define _LIBCPP_STANDALONE_DEBUG
  1304. # endif
  1305. # if __has_attribute(__preferred_name__)
  1306. # define _LIBCPP_PREFERRED_NAME(x) __attribute__((__preferred_name__(x)))
  1307. # else
  1308. # define _LIBCPP_PREFERRED_NAME(x)
  1309. # endif
  1310. # if __has_attribute(__no_sanitize__)
  1311. # define _LIBCPP_NO_SANITIZE(...) __attribute__((__no_sanitize__(__VA_ARGS__)))
  1312. # else
  1313. # define _LIBCPP_NO_SANITIZE(...)
  1314. # endif
  1315. # if __has_attribute(__init_priority__)
  1316. # define _LIBCPP_INIT_PRIORITY_MAX __attribute__((__init_priority__(100)))
  1317. # else
  1318. # define _LIBCPP_INIT_PRIORITY_MAX
  1319. # endif
  1320. # if __has_attribute(__format__)
  1321. // The attribute uses 1-based indices for ordinary and static member functions.
  1322. // The attribute uses 2-based indices for non-static member functions.
  1323. # define _LIBCPP_ATTRIBUTE_FORMAT(archetype, format_string_index, first_format_arg_index) \
  1324. __attribute__((__format__(archetype, format_string_index, first_format_arg_index)))
  1325. # else
  1326. # define _LIBCPP_ATTRIBUTE_FORMAT(archetype, format_string_index, first_format_arg_index) /* nothing */
  1327. # endif
  1328. # if __has_attribute(__packed__)
  1329. # define _LIBCPP_PACKED __attribute__((__packed__))
  1330. # else
  1331. # define _LIBCPP_PACKED
  1332. # endif
  1333. # if defined(_LIBCPP_ABI_MICROSOFT) && __has_declspec_attribute(empty_bases)
  1334. # define _LIBCPP_DECLSPEC_EMPTY_BASES __declspec(empty_bases)
  1335. # else
  1336. # define _LIBCPP_DECLSPEC_EMPTY_BASES
  1337. # endif
  1338. // Allow for build-time disabling of unsigned integer sanitization
  1339. # if __has_attribute(no_sanitize) && !defined(_LIBCPP_COMPILER_GCC)
  1340. # define _LIBCPP_DISABLE_UBSAN_UNSIGNED_INTEGER_CHECK __attribute__((__no_sanitize__("unsigned-integer-overflow")))
  1341. # else
  1342. # define _LIBCPP_DISABLE_UBSAN_UNSIGNED_INTEGER_CHECK
  1343. # endif
  1344. // Clang-18 has support for deducing this, but it does not set the FTM.
  1345. # if defined(__cpp_explicit_this_parameter) || (defined(_LIBCPP_CLANG_VER) && _LIBCPP_CLANG_VER >= 1800)
  1346. # define _LIBCPP_HAS_EXPLICIT_THIS_PARAMETER
  1347. # endif
  1348. #endif // __cplusplus
  1349. #include <__config_epilogue.h>
  1350. #endif // _LIBCPP___CONFIG