blob: 84ce728ac3a002f2ceaf57fc65637a730147bef6 [file] [log] [blame]
Howard Hinnantc51e1022010-05-11 19:42:16 +00001// -*- C++ -*-
Louis Dionne9bd93882021-11-17 16:25:01 -05002//===----------------------------------------------------------------------===//
Howard Hinnantc51e1022010-05-11 19:42:16 +00003//
Chandler Carruthd2012102019-01-19 10:56:40 +00004// 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 Hinnantc51e1022010-05-11 19:42:16 +00007//
8//===----------------------------------------------------------------------===//
9
10#ifndef _LIBCPP_CONFIG
11#define _LIBCPP_CONFIG
12
Louis Dionne94870d82020-06-26 12:08:59 -040013#include <__config_site>
14
Eric Fiseliera80af822015-11-06 06:30:12 +000015#if defined(_MSC_VER) && !defined(__clang__)
Logan Chien7b4845e2018-02-24 07:57:32 +000016# if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
17# define _LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER
18# endif
Saleem Abdulrasoolf154c772017-01-29 18:16:33 +000019#endif
Eric Fiseliera80af822015-11-06 06:30:12 +000020
21#ifndef _LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER
Howard Hinnantc51e1022010-05-11 19:42:16 +000022#pragma GCC system_header
Howard Hinnantaaaa52b2011-10-17 20:05:10 +000023#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +000024
Eric Fiseliera80af822015-11-06 06:30:12 +000025#ifdef __cplusplus
26
Tom Stellardce41e662021-07-27 21:51:07 -070027#define _LIBCPP_VERSION 14000
Howard Hinnantc51e1022010-05-11 19:42:16 +000028
Eric Fiselierfa1f1c12019-06-26 00:05:14 +000029#ifndef _LIBCPP_ABI_VERSION
30# define _LIBCPP_ABI_VERSION 1
31#endif
32
hyd-devb987b452020-09-02 12:22:29 -040033#if __STDC_HOSTED__ == 0
Davide Italiano011f80a2019-03-05 18:40:49 +000034# define _LIBCPP_FREESTANDING
35#endif
36
Eric Fiselier02cea5e2018-07-27 03:07:09 +000037#ifndef _LIBCPP_STD_VER
38# if __cplusplus <= 201103L
39# define _LIBCPP_STD_VER 11
40# elif __cplusplus <= 201402L
41# define _LIBCPP_STD_VER 14
42# elif __cplusplus <= 201703L
43# define _LIBCPP_STD_VER 17
Marek Kurdej24b4c512021-01-07 12:29:04 +010044# elif __cplusplus <= 202002L
45# define _LIBCPP_STD_VER 20
Eric Fiselier02cea5e2018-07-27 03:07:09 +000046# else
Marek Kurdej24b4c512021-01-07 12:29:04 +010047# define _LIBCPP_STD_VER 21 // current year, or date of c++2b ratification
Eric Fiselier02cea5e2018-07-27 03:07:09 +000048# endif
Louis Dionne2b1ceaa2021-04-20 12:03:32 -040049#endif // _LIBCPP_STD_VER
Eric Fiselier02cea5e2018-07-27 03:07:09 +000050
Shoaib Meenai5c2d4012017-04-12 19:56:37 +000051#if defined(__ELF__)
Logan Chien7b4845e2018-02-24 07:57:32 +000052# define _LIBCPP_OBJECT_FORMAT_ELF 1
Shoaib Meenai5c2d4012017-04-12 19:56:37 +000053#elif defined(__MACH__)
Logan Chien7b4845e2018-02-24 07:57:32 +000054# define _LIBCPP_OBJECT_FORMAT_MACHO 1
Shoaib Meenai5c2d4012017-04-12 19:56:37 +000055#elif defined(_WIN32)
Logan Chien7b4845e2018-02-24 07:57:32 +000056# define _LIBCPP_OBJECT_FORMAT_COFF 1
Sam Cleggfe39b0b2017-12-16 18:59:50 +000057#elif defined(__wasm__)
Logan Chien7b4845e2018-02-24 07:57:32 +000058# define _LIBCPP_OBJECT_FORMAT_WASM 1
Shoaib Meenai5c2d4012017-04-12 19:56:37 +000059#else
Louis Dionne64dcd862020-11-17 13:17:40 -050060 // ... add new file formats here ...
Shoaib Meenai5c2d4012017-04-12 19:56:37 +000061#endif
62
Eric Fiselierfa1f1c12019-06-26 00:05:14 +000063#if defined(_LIBCPP_ABI_UNSTABLE) || _LIBCPP_ABI_VERSION >= 2
Shoaib Meenai4bdf4372016-09-12 20:14:44 +000064// Change short string representation so that string data starts at offset 0,
Evgeniy Stepanovc299de22015-11-06 22:02:29 +000065// improving its alignment in some cases.
Logan Chien7b4845e2018-02-24 07:57:32 +000066# define _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Evgeniy Stepanovc299de22015-11-06 22:02:29 +000067// Fix deque iterator type in order to support incomplete types.
Logan Chien7b4845e2018-02-24 07:57:32 +000068# define _LIBCPP_ABI_INCOMPLETE_TYPES_IN_DEQUE
Nico Weberd31c3ab2017-07-22 15:16:42 +000069// Fix undefined behavior in how std::list stores its linked nodes.
Logan Chien7b4845e2018-02-24 07:57:32 +000070# define _LIBCPP_ABI_LIST_REMOVE_NODE_POINTER_UB
Eric Fiselier70f5f872016-07-19 17:56:20 +000071// Fix undefined behavior in how __tree stores its end and parent nodes.
Logan Chien7b4845e2018-02-24 07:57:32 +000072# define _LIBCPP_ABI_TREE_REMOVE_NODE_POINTER_UB
Nico Weberd31c3ab2017-07-22 15:16:42 +000073// Fix undefined behavior in how __hash_table stores its pointer types.
Logan Chien7b4845e2018-02-24 07:57:32 +000074# define _LIBCPP_ABI_FIX_UNORDERED_NODE_POINTER_UB
75# define _LIBCPP_ABI_FORWARD_LIST_REMOVE_NODE_POINTER_UB
76# define _LIBCPP_ABI_FIX_UNORDERED_CONTAINER_SIZE_TYPE
Shoaib Meenaic130eaf2017-03-28 19:33:31 +000077// Define a key function for `bad_function_call` in the library, to centralize
78// its vtable and typeinfo to libc++ rather than having all other libraries
79// using that class define their own copies.
Logan Chien7b4845e2018-02-24 07:57:32 +000080# define _LIBCPP_ABI_BAD_FUNCTION_CALL_KEY_FUNCTION
Konstantin Varlamovd96c2d22021-11-15 12:40:55 -080081// Override the default return value of exception::what() for
82// bad_function_call::what() with a string that is specific to
83// bad_function_call (see http://wg21.link/LWG2233). This is an ABI break
84// because it changes the vtable layout of bad_function_call.
85# define _LIBCPP_ABI_BAD_FUNCTION_CALL_GOOD_WHAT_MESSAGE
Aditya Kumaraa866182017-06-14 23:17:45 +000086// Enable optimized version of __do_get_(un)signed which avoids redundant copies.
Logan Chien7b4845e2018-02-24 07:57:32 +000087# define _LIBCPP_ABI_OPTIMIZED_LOCALE_NUM_GET
Arthur O'Dwyerf5486c82021-05-25 14:34:18 -040088// In C++20 and later, don't derive std::plus from std::binary_function,
89// nor std::negate from std::unary_function.
90# define _LIBCPP_ABI_NO_BINDER_BASES
Louis Dionne8762e2b2021-05-25 18:15:58 -040091// Give reverse_iterator<T> one data member of type T, not two.
92// Also, in C++17 and later, don't derive iterator types from std::iterator.
93# define _LIBCPP_ABI_NO_ITERATOR_BASES
Eric Fiseliercaccc7b2017-11-19 04:19:44 +000094// Use the smallest possible integer type to represent the index of the variant.
Louis Dionnea8548af2019-03-20 17:05:52 +000095// Previously libc++ used "unsigned int" exclusively.
Logan Chien7b4845e2018-02-24 07:57:32 +000096# define _LIBCPP_ABI_VARIANT_INDEX_TYPE_OPTIMIZATION
Eric Fiselierf2e64362018-12-11 00:14:34 +000097// Unstable attempt to provide a more optimized std::function
98# define _LIBCPP_ABI_OPTIMIZED_FUNCTION
Marshall Clow88a30872019-03-28 17:30:23 +000099// All the regex constants must be distinct and nonzero.
100# define _LIBCPP_ABI_REGEX_CONSTANTS_NONZERO
Arthur O'Dwyer0a5557f2021-04-20 22:08:00 -0400101// Use raw pointers, not wrapped ones, for std::span's iterator type.
102# define _LIBCPP_ABI_SPAN_POINTER_ITERATORS
Martijn Velsb17d5802020-03-02 10:11:35 -0500103// Re-worked external template instantiations for std::string with a focus on
104// performance and fast-path inlining.
105# define _LIBCPP_ABI_STRING_OPTIMIZED_EXTERNAL_INSTANTIATION
Vy Nguyene369bd92020-07-13 12:34:37 -0400106// Enable clang::trivial_abi on std::unique_ptr.
107# define _LIBCPP_ABI_ENABLE_UNIQUE_PTR_TRIVIAL_ABI
108// Enable clang::trivial_abi on std::shared_ptr and std::weak_ptr
109# define _LIBCPP_ABI_ENABLE_SHARED_PTR_TRIVIAL_ABI
Eric Fiselier08f7fe82016-07-18 01:58:37 +0000110#elif _LIBCPP_ABI_VERSION == 1
Logan Chien7b4845e2018-02-24 07:57:32 +0000111# if !defined(_LIBCPP_OBJECT_FORMAT_COFF)
Eric Fiselier98848572017-01-17 03:16:26 +0000112// Enable compiling copies of now inline methods into the dylib to support
Shoaib Meenai5c2d4012017-04-12 19:56:37 +0000113// applications compiled against older libraries. This is unnecessary with
114// COFF dllexport semantics, since dllexport forces a non-inline definition
115// of inline functions to be emitted anyway. Our own non-inline copy would
116// conflict with the dllexport-emitted copy, so we disable it.
Logan Chien7b4845e2018-02-24 07:57:32 +0000117# define _LIBCPP_DEPRECATED_ABI_LEGACY_LIBRARY_DEFINITIONS_FOR_INLINE_FUNCTIONS
118# endif
Eric Fiselier08f7fe82016-07-18 01:58:37 +0000119// Feature macros for disabling pre ABI v1 features. All of these options
120// are deprecated.
Logan Chien7b4845e2018-02-24 07:57:32 +0000121# if defined(__FreeBSD__)
122# define _LIBCPP_DEPRECATED_ABI_DISABLE_PAIR_TRIVIAL_COPY_CTOR
123# endif
Eric Fiselier08f7fe82016-07-18 01:58:37 +0000124#endif
125
Louis Dionne495e9ad2021-11-29 16:20:48 -0500126// By default, don't use a nullptr_t emulation type in C++03.
127//
128// This is technically an ABI break from previous releases, however it is
129// very unlikely to impact anyone. If a user is impacted by this break,
130// they can return to using the C++03 nullptr emulation by defining
131// _LIBCPP_ABI_USE_CXX03_NULLPTR_EMULATION.
132//
133// This switch will be removed entirely in favour of never providing a
134// C++03 emulation after one release.
135//
136// IMPORTANT: IF YOU ARE READING THIS AND YOU TURN THIS MACRO ON, PLEASE LEAVE
137// A COMMENT ON https://reviews.llvm.org/D109459 OR YOU WILL BE BROKEN
138// IN THE FUTURE WHEN WE REMOVE THE ABILITY TO USE THE C++03 EMULATION.
139#ifndef _LIBCPP_ABI_USE_CXX03_NULLPTR_EMULATION
140# define _LIBCPP_ABI_ALWAYS_USE_CXX11_NULLPTR
141#endif
142
Louis Dionne8a79be62020-10-21 11:11:45 -0400143#if defined(_LIBCPP_BUILDING_LIBRARY) || defined(_LIBCPP_ABI_UNSTABLE) || _LIBCPP_ABI_VERSION >= 2
144// Enable additional explicit instantiations of iostreams components. This
145// reduces the number of weak definitions generated in programs that use
146// iostreams by providing a single strong definition in the shared library.
147# define _LIBCPP_ABI_ENABLE_ADDITIONAL_IOSTREAM_EXPLICIT_INSTANTIATIONS_1
Konstantin Varlamovd96c2d22021-11-15 12:40:55 -0800148
149// Define a key function for `bad_function_call` in the library, to centralize
150// its vtable and typeinfo to libc++ rather than having all other libraries
151// using that class define their own copies.
152# define _LIBCPP_ABI_BAD_FUNCTION_CALL_KEY_FUNCTION
Louis Dionne8a79be62020-10-21 11:11:45 -0400153#endif
154
Howard Hinnantc51e1022010-05-11 19:42:16 +0000155#define _LIBCPP_CONCAT1(_LIBCPP_X,_LIBCPP_Y) _LIBCPP_X##_LIBCPP_Y
156#define _LIBCPP_CONCAT(_LIBCPP_X,_LIBCPP_Y) _LIBCPP_CONCAT1(_LIBCPP_X,_LIBCPP_Y)
157
Eric Fiselierb33778a2018-10-30 21:44:53 +0000158#ifndef _LIBCPP_ABI_NAMESPACE
159# define _LIBCPP_ABI_NAMESPACE _LIBCPP_CONCAT(__,_LIBCPP_ABI_VERSION)
160#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +0000161
Eric Fiselierc6f17cc2016-09-25 03:34:28 +0000162#if __cplusplus < 201103L
163#define _LIBCPP_CXX03_LANG
164#endif
Eric Fiselier86fcc922015-07-10 20:26:38 +0000165
166#ifndef __has_attribute
167#define __has_attribute(__x) 0
168#endif
Logan Chien7b4845e2018-02-24 07:57:32 +0000169
Eric Fiselier86fcc922015-07-10 20:26:38 +0000170#ifndef __has_builtin
171#define __has_builtin(__x) 0
172#endif
Logan Chien7b4845e2018-02-24 07:57:32 +0000173
Eric Fiselier8020b6c2015-08-19 17:21:46 +0000174#ifndef __has_extension
175#define __has_extension(__x) 0
176#endif
Logan Chien7b4845e2018-02-24 07:57:32 +0000177
Eric Fiselier86fcc922015-07-10 20:26:38 +0000178#ifndef __has_feature
179#define __has_feature(__x) 0
180#endif
Logan Chien7b4845e2018-02-24 07:57:32 +0000181
Marshall Clow2a5c4212017-11-14 22:26:50 +0000182#ifndef __has_cpp_attribute
183#define __has_cpp_attribute(__x) 0
184#endif
Logan Chien7b4845e2018-02-24 07:57:32 +0000185
Eric Fiselier86fcc922015-07-10 20:26:38 +0000186// '__is_identifier' returns '0' if '__x' is a reserved identifier provided by
187// the compiler and '1' otherwise.
188#ifndef __is_identifier
189#define __is_identifier(__x) 1
190#endif
Logan Chien7b4845e2018-02-24 07:57:32 +0000191
Eric Fiseliere3cec5f2017-01-16 21:15:08 +0000192#ifndef __has_declspec_attribute
193#define __has_declspec_attribute(__x) 0
194#endif
Eric Fiselier86fcc922015-07-10 20:26:38 +0000195
Eric Fiselierba725072017-01-14 04:27:58 +0000196#define __has_keyword(__x) !(__is_identifier(__x))
197
Alexander Richardsonba1b59e2018-07-24 12:40:56 +0000198#ifndef __has_include
199#define __has_include(...) 0
Eric Fiselierd8a6c892017-05-10 21:34:58 +0000200#endif
201
Marek Kurdejf3197922021-04-01 08:29:55 +0200202#if defined(__apple_build_version__)
203# define _LIBCPP_COMPILER_CLANG_BASED
204# define _LIBCPP_APPLE_CLANG_VER (__apple_build_version__ / 10000)
205#elif defined(__clang__)
206# define _LIBCPP_COMPILER_CLANG_BASED
207# define _LIBCPP_CLANG_VER (__clang_major__ * 100 + __clang_minor__)
Eric Fiselier8fbccea2017-01-06 21:42:58 +0000208#elif defined(__GNUC__)
Logan Chien7b4845e2018-02-24 07:57:32 +0000209# define _LIBCPP_COMPILER_GCC
Eric Fiselier8fbccea2017-01-06 21:42:58 +0000210#elif defined(_MSC_VER)
Logan Chien7b4845e2018-02-24 07:57:32 +0000211# define _LIBCPP_COMPILER_MSVC
Eric Fiselier8fbccea2017-01-06 21:42:58 +0000212#elif defined(__IBMCPP__)
Logan Chien7b4845e2018-02-24 07:57:32 +0000213# define _LIBCPP_COMPILER_IBM
Eric Fiselier8fbccea2017-01-06 21:42:58 +0000214#endif
215
Eric Fiselier75c05562019-06-13 00:37:25 +0000216#if defined(_LIBCPP_COMPILER_GCC) && __cplusplus < 201103L
217#error "libc++ does not support using GCC with C++03. Please enable C++11"
218#endif
219
Eric Fiseliera6d96342017-01-07 02:43:58 +0000220// FIXME: ABI detection should be done via compiler builtin macros. This
221// is just a placeholder until Clang implements such macros. For now assume
Shoaib Meenai69cebe72017-10-04 23:44:38 +0000222// that Windows compilers pretending to be MSVC++ target the Microsoft ABI,
223// and allow the user to explicitly specify the ABI to handle cases where this
224// heuristic falls short.
Shoaib Meenai56943f82017-10-05 02:18:08 +0000225#if defined(_LIBCPP_ABI_FORCE_ITANIUM) && defined(_LIBCPP_ABI_FORCE_MICROSOFT)
Logan Chien7b4845e2018-02-24 07:57:32 +0000226# error "Only one of _LIBCPP_ABI_FORCE_ITANIUM and _LIBCPP_ABI_FORCE_MICROSOFT can be defined"
Shoaib Meenai56943f82017-10-05 02:18:08 +0000227#elif defined(_LIBCPP_ABI_FORCE_ITANIUM)
Shoaib Meenai69cebe72017-10-04 23:44:38 +0000228# define _LIBCPP_ABI_ITANIUM
Logan Chien7b4845e2018-02-24 07:57:32 +0000229#elif defined(_LIBCPP_ABI_FORCE_MICROSOFT)
230# define _LIBCPP_ABI_MICROSOFT
231#else
232# if defined(_WIN32) && defined(_MSC_VER)
233# define _LIBCPP_ABI_MICROSOFT
234# else
235# define _LIBCPP_ABI_ITANIUM
236# endif
Eric Fiseliera6d96342017-01-07 02:43:58 +0000237#endif
238
Eric Fiselier85f66332019-03-05 01:57:01 +0000239#if defined(_LIBCPP_ABI_MICROSOFT) && !defined(_LIBCPP_NO_VCRUNTIME)
240# define _LIBCPP_ABI_VCRUNTIME
241#endif
242
Dan Albert21800dc2016-09-19 18:00:45 +0000243// Need to detect which libc we're using if we're on Linux.
244#if defined(__linux__)
Logan Chien7b4845e2018-02-24 07:57:32 +0000245# include <features.h>
246# if defined(__GLIBC_PREREQ)
247# define _LIBCPP_GLIBC_PREREQ(a, b) __GLIBC_PREREQ(a, b)
248# else
249# define _LIBCPP_GLIBC_PREREQ(a, b) 0
250# endif // defined(__GLIBC_PREREQ)
Dan Albert21800dc2016-09-19 18:00:45 +0000251#endif // defined(__linux__)
Eric Fiselier86fcc922015-07-10 20:26:38 +0000252
Howard Hinnantc51e1022010-05-11 19:42:16 +0000253#ifdef __LITTLE_ENDIAN__
Logan Chien7b4845e2018-02-24 07:57:32 +0000254# if __LITTLE_ENDIAN__
255# define _LIBCPP_LITTLE_ENDIAN
256# endif // __LITTLE_ENDIAN__
Louis Dionne2b1ceaa2021-04-20 12:03:32 -0400257#endif // __LITTLE_ENDIAN__
Howard Hinnantc51e1022010-05-11 19:42:16 +0000258
259#ifdef __BIG_ENDIAN__
Logan Chien7b4845e2018-02-24 07:57:32 +0000260# if __BIG_ENDIAN__
261# define _LIBCPP_BIG_ENDIAN
262# endif // __BIG_ENDIAN__
Louis Dionne2b1ceaa2021-04-20 12:03:32 -0400263#endif // __BIG_ENDIAN__
Howard Hinnantc51e1022010-05-11 19:42:16 +0000264
Dan Albert98d97792015-09-16 18:10:47 +0000265#ifdef __BYTE_ORDER__
Logan Chien7b4845e2018-02-24 07:57:32 +0000266# if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
267# define _LIBCPP_LITTLE_ENDIAN
268# elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
269# define _LIBCPP_BIG_ENDIAN
270# endif // __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
Dan Albert98d97792015-09-16 18:10:47 +0000271#endif // __BYTE_ORDER__
272
David Chisnall93008f02010-08-11 16:27:20 +0000273#ifdef __FreeBSD__
Logan Chien7b4845e2018-02-24 07:57:32 +0000274# include <sys/endian.h>
Dimitry Andric5600c9b2019-10-19 10:59:23 +0000275# include <osreldate.h>
David Chisnall93008f02010-08-11 16:27:20 +0000276# if _BYTE_ORDER == _LITTLE_ENDIAN
Logan Chien7b4845e2018-02-24 07:57:32 +0000277# define _LIBCPP_LITTLE_ENDIAN
278# else // _BYTE_ORDER == _LITTLE_ENDIAN
279# define _LIBCPP_BIG_ENDIAN
280# endif // _BYTE_ORDER == _LITTLE_ENDIAN
Louis Dionne2b1ceaa2021-04-20 12:03:32 -0400281#endif // __FreeBSD__
David Chisnall93008f02010-08-11 16:27:20 +0000282
Brad Smithf6f55092021-01-12 14:16:15 -0500283#if defined(__NetBSD__) || defined(__OpenBSD__)
Logan Chien7b4845e2018-02-24 07:57:32 +0000284# include <sys/endian.h>
Joerg Sonnenberger153e4162013-05-17 21:17:34 +0000285# if _BYTE_ORDER == _LITTLE_ENDIAN
Logan Chien7b4845e2018-02-24 07:57:32 +0000286# define _LIBCPP_LITTLE_ENDIAN
287# else // _BYTE_ORDER == _LITTLE_ENDIAN
288# define _LIBCPP_BIG_ENDIAN
289# endif // _BYTE_ORDER == _LITTLE_ENDIAN
Louis Dionne2b1ceaa2021-04-20 12:03:32 -0400290#endif // defined(__NetBSD__) || defined(__OpenBSD__)
Joerg Sonnenberger153e4162013-05-17 21:17:34 +0000291
Saleem Abdulrasoolee302e42017-01-03 21:53:51 +0000292#if defined(_WIN32)
Eric Fiselierbb999f92017-05-31 22:14:05 +0000293# define _LIBCPP_WIN32API
Eric Fiseliere9cc5922017-10-17 13:16:01 +0000294# define _LIBCPP_LITTLE_ENDIAN
Saleem Abdulrasoolee302e42017-01-03 21:53:51 +0000295# define _LIBCPP_SHORT_WCHAR 1
Louis Dionnea8548af2019-03-20 17:05:52 +0000296// Both MinGW and native MSVC provide a "MSVC"-like environment
Eric Fiselierbb999f92017-05-31 22:14:05 +0000297# define _LIBCPP_MSVCRT_LIKE
Bruno Cardoso Lopes91572682017-07-17 21:52:31 +0000298// If mingw not explicitly detected, assume using MS C runtime only if
299// a MS compatibility version is specified.
300# if defined(_MSC_VER) && !defined(__MINGW32__)
Howard Hinnant8ad70912013-09-17 01:34:47 +0000301# define _LIBCPP_MSVCRT // Using Microsoft's C Runtime library
302# endif
Saleem Abdulrasool32300ca2017-01-04 01:53:24 +0000303# if (defined(_M_AMD64) || defined(__x86_64__)) || (defined(_M_ARM) || defined(__arm__))
304# define _LIBCPP_HAS_BITSCAN64
305# endif
Peter Collingbourne63ebbd72018-01-23 02:07:27 +0000306# define _LIBCPP_HAS_OPEN_WITH_WCHAR
Logan Chien7b4845e2018-02-24 07:57:32 +0000307# if defined(_LIBCPP_MSVCRT)
308# define _LIBCPP_HAS_QUICK_EXIT
309# endif
Shoaib Meenaie2ce3602017-04-06 04:47:49 +0000310
311// Some CRT APIs are unavailable to store apps
Logan Chien7b4845e2018-02-24 07:57:32 +0000312# if defined(WINAPI_FAMILY)
313# include <winapifamily.h>
314# if !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) && \
315 (!defined(WINAPI_PARTITION_SYSTEM) || \
316 !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_SYSTEM))
317# define _LIBCPP_WINDOWS_STORE_APP
318# endif
319# endif
Saleem Abdulrasoolee302e42017-01-03 21:53:51 +0000320#endif // defined(_WIN32)
Howard Hinnant34bad2a2011-05-13 17:16:06 +0000321
David Chisnall8074c342012-02-29 13:05:08 +0000322#ifdef __sun__
Logan Chien7b4845e2018-02-24 07:57:32 +0000323# include <sys/isa_defs.h>
324# ifdef _LITTLE_ENDIAN
325# define _LIBCPP_LITTLE_ENDIAN
326# else
327# define _LIBCPP_BIG_ENDIAN
328# endif
David Chisnall8074c342012-02-29 13:05:08 +0000329#endif // __sun__
330
Xing Xue50b0eb42021-09-09 16:20:36 -0400331#if defined(_AIX) && !defined(__64BIT__)
332 // The size of wchar is 2 byte on 32-bit mode on AIX.
333# define _LIBCPP_SHORT_WCHAR 1
334#endif
335
Louis Dionne59426ee2021-08-24 11:40:05 -0400336#if defined(__OpenBSD__)
Logan Chien7b4845e2018-02-24 07:57:32 +0000337 // Certain architectures provide arc4random(). Prefer using
338 // arc4random() over /dev/{u,}random to make it possible to obtain
339 // random data even when using sandboxing mechanisms such as chroots,
340 // Capsicum, etc.
341# define _LIBCPP_USING_ARC4_RANDOM
Dan Gohman280fd6b2019-05-01 16:47:30 +0000342#elif defined(__Fuchsia__) || defined(__wasi__)
Logan Chien7b4845e2018-02-24 07:57:32 +0000343# define _LIBCPP_USING_GETENTROPY
Ed Schoutendcf37402015-03-10 07:46:06 +0000344#elif defined(__native_client__)
Logan Chien7b4845e2018-02-24 07:57:32 +0000345 // NaCl's sandbox (which PNaCl also runs in) doesn't allow filesystem access,
346 // including accesses to the special files under /dev. C++11's
347 // std::random_device is instead exposed through a NaCl syscall.
348# define _LIBCPP_USING_NACL_RANDOM
Saleem Abdulrasoolee302e42017-01-03 21:53:51 +0000349#elif defined(_LIBCPP_WIN32API)
Logan Chien7b4845e2018-02-24 07:57:32 +0000350# define _LIBCPP_USING_WIN32_RANDOM
Ed Schoutendcf37402015-03-10 07:46:06 +0000351#else
Logan Chien7b4845e2018-02-24 07:57:32 +0000352# define _LIBCPP_USING_DEV_RANDOM
Ed Schoutendcf37402015-03-10 07:46:06 +0000353#endif
JF Bastiend4832032014-12-01 19:19:55 +0000354
Eric Fiseliere9cc5922017-10-17 13:16:01 +0000355#if !defined(_LIBCPP_LITTLE_ENDIAN) && !defined(_LIBCPP_BIG_ENDIAN)
Logan Chien7b4845e2018-02-24 07:57:32 +0000356# include <endian.h>
357# if __BYTE_ORDER == __LITTLE_ENDIAN
358# define _LIBCPP_LITTLE_ENDIAN
359# elif __BYTE_ORDER == __BIG_ENDIAN
360# define _LIBCPP_BIG_ENDIAN
361# else // __BYTE_ORDER == __BIG_ENDIAN
362# error unable to determine endian
363# endif
Louis Dionne2b1ceaa2021-04-20 12:03:32 -0400364#endif // !defined(_LIBCPP_LITTLE_ENDIAN) && !defined(_LIBCPP_BIG_ENDIAN)
Howard Hinnantc51e1022010-05-11 19:42:16 +0000365
Eric Fiselier02cba002017-06-15 03:50:02 +0000366#if __has_attribute(__no_sanitize__) && !defined(_LIBCPP_COMPILER_GCC)
Logan Chien7b4845e2018-02-24 07:57:32 +0000367# define _LIBCPP_NO_CFI __attribute__((__no_sanitize__("cfi")))
Evgeniy Stepanov076b2372016-02-10 21:53:28 +0000368#else
Logan Chien7b4845e2018-02-24 07:57:32 +0000369# define _LIBCPP_NO_CFI
Evgeniy Stepanov076b2372016-02-10 21:53:28 +0000370#endif
371
Louis Dionne29c6d372021-08-17 11:23:48 -0400372// If the compiler supports using_if_exists, pretend we have those functions and they'll
373// be picked up if the C library provides them.
374//
375// TODO: Once we drop support for Clang 12, we can assume the compiler supports using_if_exists
376// for platforms that don't have a conforming C11 library, so we can drop this whole thing.
377#if __has_attribute(using_if_exists)
378# define _LIBCPP_HAS_TIMESPEC_GET
379# define _LIBCPP_HAS_QUICK_EXIT
380# define _LIBCPP_HAS_ALIGNED_ALLOC
381#else
Marek Kurdejf3197922021-04-01 08:29:55 +0200382#if (defined(__ISO_C_VISIBLE) && (__ISO_C_VISIBLE >= 2011)) || __cplusplus >= 201103L
Louis Dionne234dd432018-08-15 00:16:41 +0000383# if defined(__FreeBSD__)
Dan Albert1d3cfad2019-11-18 12:16:45 -0800384# define _LIBCPP_HAS_ALIGNED_ALLOC
Louis Dionne234dd432018-08-15 00:16:41 +0000385# define _LIBCPP_HAS_QUICK_EXIT
Dimitry Andrice022a032020-01-30 08:00:28 +0100386# if __FreeBSD_version >= 1300064 || \
387 (__FreeBSD_version >= 1201504 && __FreeBSD_version < 1300000)
388# define _LIBCPP_HAS_TIMESPEC_GET
389# endif
Dan Albert1d3cfad2019-11-18 12:16:45 -0800390# elif defined(__BIONIC__)
Dan Albert1d3cfad2019-11-18 12:16:45 -0800391# if __ANDROID_API__ >= 21
392# define _LIBCPP_HAS_QUICK_EXIT
393# endif
394# if __ANDROID_API__ >= 28
395# define _LIBCPP_HAS_ALIGNED_ALLOC
396# endif
397# if __ANDROID_API__ >= 29
398# define _LIBCPP_HAS_TIMESPEC_GET
399# endif
Michał Górnyf0426252019-12-14 14:17:19 +0100400# elif defined(__Fuchsia__) || defined(__wasi__) || defined(__NetBSD__)
Dan Albert1d3cfad2019-11-18 12:16:45 -0800401# define _LIBCPP_HAS_ALIGNED_ALLOC
Louis Dionne234dd432018-08-15 00:16:41 +0000402# define _LIBCPP_HAS_QUICK_EXIT
Marshall Clowa6a55a82018-08-15 21:19:08 +0000403# define _LIBCPP_HAS_TIMESPEC_GET
Brad Smithf6f55092021-01-12 14:16:15 -0500404# elif defined(__OpenBSD__)
405# define _LIBCPP_HAS_ALIGNED_ALLOC
406# define _LIBCPP_HAS_TIMESPEC_GET
Louis Dionne234dd432018-08-15 00:16:41 +0000407# elif defined(__linux__)
408# if !defined(_LIBCPP_HAS_MUSL_LIBC)
409# if _LIBCPP_GLIBC_PREREQ(2, 15) || defined(__BIONIC__)
410# define _LIBCPP_HAS_QUICK_EXIT
411# endif
412# if _LIBCPP_GLIBC_PREREQ(2, 17)
Dan Albert1d3cfad2019-11-18 12:16:45 -0800413# define _LIBCPP_HAS_ALIGNED_ALLOC
Marshall Clowa6a55a82018-08-15 21:19:08 +0000414# define _LIBCPP_HAS_TIMESPEC_GET
Louis Dionne234dd432018-08-15 00:16:41 +0000415# endif
416# else // defined(_LIBCPP_HAS_MUSL_LIBC)
Dan Albert1d3cfad2019-11-18 12:16:45 -0800417# define _LIBCPP_HAS_ALIGNED_ALLOC
Louis Dionne234dd432018-08-15 00:16:41 +0000418# define _LIBCPP_HAS_QUICK_EXIT
Marshall Clowa6a55a82018-08-15 21:19:08 +0000419# define _LIBCPP_HAS_TIMESPEC_GET
Louis Dionne234dd432018-08-15 00:16:41 +0000420# endif
Martin Storsjö8a174e72021-05-31 09:32:51 +0000421# elif defined(_LIBCPP_MSVCRT)
422 // Using Microsoft's C Runtime library, not MinGW
423# define _LIBCPP_HAS_TIMESPEC_GET
Louis Dionne5b747292020-07-27 14:25:03 -0400424# elif defined(__APPLE__)
425 // timespec_get and aligned_alloc were introduced in macOS 10.15 and
426 // aligned releases
Marek Kurdej126213e2021-04-02 10:31:18 +0200427# if ((defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ >= 101500) || \
428 (defined(__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__ >= 130000) || \
429 (defined(__ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__ >= 130000) || \
430 (defined(__ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_WATCH_OS_VERSION_MIN_REQUIRED__ >= 60000))
Louis Dionne5b747292020-07-27 14:25:03 -0400431# define _LIBCPP_HAS_ALIGNED_ALLOC
Raphael Isemann46c3ac52020-09-02 09:25:31 +0200432# define _LIBCPP_HAS_TIMESPEC_GET
Louis Dionne5b747292020-07-27 14:25:03 -0400433# endif
434# endif // __APPLE__
Louis Dionne234dd432018-08-15 00:16:41 +0000435#endif
Louis Dionne29c6d372021-08-17 11:23:48 -0400436#endif // __has_attribute(using_if_exists)
Louis Dionne234dd432018-08-15 00:16:41 +0000437
Eric Fiselier0f0ed9d2019-01-16 01:51:12 +0000438#ifndef _LIBCPP_CXX03_LANG
439# define _LIBCPP_ALIGNOF(_Tp) alignof(_Tp)
Marek Kurdejf3197922021-04-01 08:29:55 +0200440#elif defined(_LIBCPP_COMPILER_CLANG_BASED)
Eric Fiselier0f0ed9d2019-01-16 01:51:12 +0000441# define _LIBCPP_ALIGNOF(_Tp) _Alignof(_Tp)
442#else
Louis Dionne72707bf2020-09-02 12:29:42 -0400443# error "We don't know a correct way to implement alignof(T) in C++03 outside of Clang"
Eric Fiselier0f0ed9d2019-01-16 01:51:12 +0000444#endif
445
446#define _LIBCPP_PREFERRED_ALIGNOF(_Tp) __alignof(_Tp)
447
Marek Kurdejf3197922021-04-01 08:29:55 +0200448#if defined(_LIBCPP_COMPILER_CLANG_BASED)
Howard Hinnantaa87c0f2010-08-10 20:48:29 +0000449
Louis Dionne3f346932020-06-25 16:31:14 -0400450#if defined(_LIBCPP_ALTERNATE_STRING_LAYOUT)
451# error _LIBCPP_ALTERNATE_STRING_LAYOUT is deprecated, please use _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT instead
452#endif
453#if defined(__APPLE__) && !defined(__i386__) && !defined(__x86_64__) && \
454 (!defined(__arm__) || __ARM_ARCH_7K__ >= 2)
455# define _LIBCPP_ABI_ALTERNATE_STRING_LAYOUT
Tim Northoverffc95932014-03-30 11:34:22 +0000456#endif
457
Howard Hinnantaaaa52b2011-10-17 20:05:10 +0000458#if __has_feature(cxx_alignas)
Howard Hinnant62cad692012-05-31 19:31:14 +0000459# define _ALIGNAS_TYPE(x) alignas(x)
Howard Hinnantaaaa52b2011-10-17 20:05:10 +0000460# define _ALIGNAS(x) alignas(x)
461#else
Eric Fiselier0f0ed9d2019-01-16 01:51:12 +0000462# define _ALIGNAS_TYPE(x) __attribute__((__aligned__(_LIBCPP_ALIGNOF(x))))
Howard Hinnantaaaa52b2011-10-17 20:05:10 +0000463# define _ALIGNAS(x) __attribute__((__aligned__(x)))
464#endif
465
Marshall Clow2b12c312014-02-22 15:13:48 +0000466#if __cplusplus < 201103L
Howard Hinnant31cd14f2010-09-16 23:27:26 +0000467typedef __char16_t char16_t;
468typedef __char32_t char32_t;
Howard Hinnant8e6a3982010-09-07 20:31:18 +0000469#endif
Howard Hinnant74279a52010-09-04 23:28:19 +0000470
Louis Dionne94c6eda2020-07-03 13:46:41 -0400471#if !__has_feature(cxx_exceptions)
472# define _LIBCPP_NO_EXCEPTIONS
Howard Hinnantaa87c0f2010-08-10 20:48:29 +0000473#endif
474
Howard Hinnant09bc0c92011-12-02 19:36:40 +0000475#if !(__has_feature(cxx_strong_enums))
476#define _LIBCPP_HAS_NO_STRONG_ENUMS
477#endif
478
Howard Hinnant8df96292011-05-26 17:07:32 +0000479#if __has_feature(cxx_attributes)
Richard Smithcabd3922012-07-26 02:04:22 +0000480# define _LIBCPP_NORETURN [[noreturn]]
Howard Hinnant8df96292011-05-26 17:07:32 +0000481#else
Richard Smithcabd3922012-07-26 02:04:22 +0000482# define _LIBCPP_NORETURN __attribute__ ((noreturn))
Howard Hinnant74279a52010-09-04 23:28:19 +0000483#endif
484
Howard Hinnant74279a52010-09-04 23:28:19 +0000485#if !(__has_feature(cxx_nullptr))
Logan Chien7b4845e2018-02-24 07:57:32 +0000486# if (__has_extension(cxx_nullptr) || __has_keyword(__nullptr)) && defined(_LIBCPP_ABI_ALWAYS_USE_CXX11_NULLPTR)
487# define nullptr __nullptr
488# else
489# define _LIBCPP_HAS_NO_NULLPTR
490# endif
Howard Hinnant74279a52010-09-04 23:28:19 +0000491#endif
492
Douglas Gregor13034442011-06-22 22:17:44 +0000493// Objective-C++ features (opt-in)
494#if __has_feature(objc_arc)
495#define _LIBCPP_HAS_OBJC_ARC
496#endif
497
498#if __has_feature(objc_arc_weak)
499#define _LIBCPP_HAS_OBJC_ARC_WEAK
500#endif
501
Louis Dionne2c358282020-01-21 12:39:43 -0800502#if __has_extension(blocks)
503# define _LIBCPP_HAS_EXTENSION_BLOCKS
504#endif
505
Louis Dionne3a632922020-04-23 16:47:52 -0400506#if defined(_LIBCPP_HAS_EXTENSION_BLOCKS) && defined(__APPLE__)
507# define _LIBCPP_HAS_BLOCKS_RUNTIME
508#endif
509
Eric Fiselier1af87ca2015-12-15 22:16:47 +0000510#if !(__has_feature(cxx_noexcept))
511#define _LIBCPP_HAS_NO_NOEXCEPT
Howard Hinnant68d13392011-05-11 20:19:40 +0000512#endif
513
Louis Dionne93f1fd72021-06-04 13:31:22 -0400514#if !__has_feature(address_sanitizer)
Marshall Clow90fc0472014-04-14 15:44:57 +0000515#define _LIBCPP_HAS_NO_ASAN
516#endif
517
Marshall Clow55b23d22016-01-12 00:38:04 +0000518// Allow for build-time disabling of unsigned integer sanitization
Louis Dionne93f1fd72021-06-04 13:31:22 -0400519#if __has_attribute(no_sanitize)
Saleem Abdulrasool38acb642016-02-09 04:05:37 +0000520#define _LIBCPP_DISABLE_UBSAN_UNSIGNED_INTEGER_CHECK __attribute__((__no_sanitize__("unsigned-integer-overflow")))
Logan Chien7b4845e2018-02-24 07:57:32 +0000521#endif
Marshall Clow55b23d22016-01-12 00:38:04 +0000522
Louis Dionne3a197992018-07-27 12:46:03 +0000523#define _LIBCPP_ALWAYS_INLINE __attribute__ ((__always_inline__))
524
Louis Dionnefaa17452019-09-04 12:44:19 +0000525#define _LIBCPP_DISABLE_EXTENSION_WARNING __extension__
526
Eric Fiselier8fbccea2017-01-06 21:42:58 +0000527#elif defined(_LIBCPP_COMPILER_GCC)
Howard Hinnantaa87c0f2010-08-10 20:48:29 +0000528
Howard Hinnantaaaa52b2011-10-17 20:05:10 +0000529#define _ALIGNAS(x) __attribute__((__aligned__(x)))
Eric Fiselier0f0ed9d2019-01-16 01:51:12 +0000530#define _ALIGNAS_TYPE(x) __attribute__((__aligned__(_LIBCPP_ALIGNOF(x))))
Howard Hinnantaaaa52b2011-10-17 20:05:10 +0000531
Richard Smithcabd3922012-07-26 02:04:22 +0000532#define _LIBCPP_NORETURN __attribute__((noreturn))
Howard Hinnant1e570a32011-05-31 13:13:49 +0000533
Louis Dionneaf6be622021-07-27 17:30:47 -0400534#if !defined(__EXCEPTIONS)
Louis Dionne94c6eda2020-07-03 13:46:41 -0400535# define _LIBCPP_NO_EXCEPTIONS
Howard Hinnantaa87c0f2010-08-10 20:48:29 +0000536#endif
537
Louis Dionne93f1fd72021-06-04 13:31:22 -0400538#if !defined(__SANITIZE_ADDRESS__)
Marshall Clow90fc0472014-04-14 15:44:57 +0000539#define _LIBCPP_HAS_NO_ASAN
540#endif
541
Louis Dionne3a197992018-07-27 12:46:03 +0000542#define _LIBCPP_ALWAYS_INLINE __attribute__ ((__always_inline__))
543
Louis Dionnefaa17452019-09-04 12:44:19 +0000544#define _LIBCPP_DISABLE_EXTENSION_WARNING __extension__
545
Eric Fiselier8fbccea2017-01-06 21:42:58 +0000546#elif defined(_LIBCPP_COMPILER_MSVC)
Howard Hinnantaaaa52b2011-10-17 20:05:10 +0000547
Eric Fiselier8fbccea2017-01-06 21:42:58 +0000548#define _LIBCPP_TOSTRING2(x) #x
549#define _LIBCPP_TOSTRING(x) _LIBCPP_TOSTRING2(x)
550#define _LIBCPP_WARNING(x) __pragma(message(__FILE__ "(" _LIBCPP_TOSTRING(__LINE__) ") : warning note: " x))
551
552#if _MSC_VER < 1900
553#error "MSVC versions prior to Visual Studio 2015 are not supported"
554#endif
555
Howard Hinnantaaaa52b2011-10-17 20:05:10 +0000556#define __alignof__ __alignof
Richard Smithcabd3922012-07-26 02:04:22 +0000557#define _LIBCPP_NORETURN __declspec(noreturn)
Howard Hinnantaaaa52b2011-10-17 20:05:10 +0000558#define _ALIGNAS(x) __declspec(align(x))
Eric Fiselier6a537582018-02-07 23:50:25 +0000559#define _ALIGNAS_TYPE(x) alignas(x)
Howard Hinnantaaaa52b2011-10-17 20:05:10 +0000560
Logan Chien7b4845e2018-02-24 07:57:32 +0000561#define _LIBCPP_WEAK
562
Marshall Clow90fc0472014-04-14 15:44:57 +0000563#define _LIBCPP_HAS_NO_ASAN
564
Louis Dionne3a197992018-07-27 12:46:03 +0000565#define _LIBCPP_ALWAYS_INLINE __forceinline
566
Tim Shend87ea292018-07-30 22:27:38 +0000567#define _LIBCPP_HAS_NO_VECTOR_EXTENSION
568
Louis Dionnefaa17452019-09-04 12:44:19 +0000569#define _LIBCPP_DISABLE_EXTENSION_WARNING
570
Eric Fiselier8fbccea2017-01-06 21:42:58 +0000571#elif defined(_LIBCPP_COMPILER_IBM)
Howard Hinnantea382952013-08-14 18:00:20 +0000572
573#define _ALIGNAS(x) __attribute__((__aligned__(x)))
Eric Fiselier0f0ed9d2019-01-16 01:51:12 +0000574#define _ALIGNAS_TYPE(x) __attribute__((__aligned__(_LIBCPP_ALIGNOF(x))))
Howard Hinnantea382952013-08-14 18:00:20 +0000575#define _ATTRIBUTE(x) __attribute__((x))
576#define _LIBCPP_NORETURN __attribute__((noreturn))
577
Howard Hinnantea382952013-08-14 18:00:20 +0000578#define _LIBCPP_HAS_NO_UNICODE_CHARS
Howard Hinnantea382952013-08-14 18:00:20 +0000579
580#if defined(_AIX)
581#define __MULTILOCALE_API
582#endif
583
Marshall Clow90fc0472014-04-14 15:44:57 +0000584#define _LIBCPP_HAS_NO_ASAN
585
Louis Dionne3a197992018-07-27 12:46:03 +0000586#define _LIBCPP_ALWAYS_INLINE __attribute__ ((__always_inline__))
587
Tim Shend87ea292018-07-30 22:27:38 +0000588#define _LIBCPP_HAS_NO_VECTOR_EXTENSION
589
Louis Dionnefaa17452019-09-04 12:44:19 +0000590#define _LIBCPP_DISABLE_EXTENSION_WARNING
591
Eric Fiselier8fbccea2017-01-06 21:42:58 +0000592#endif // _LIBCPP_COMPILER_[CLANG|GCC|MSVC|IBM]
Howard Hinnantc51e1022010-05-11 19:42:16 +0000593
Saleem Abdulrasoolee302e42017-01-03 21:53:51 +0000594#if defined(_LIBCPP_OBJECT_FORMAT_COFF)
Logan Chien7b4845e2018-02-24 07:57:32 +0000595
Peter Collingbourne725de942018-01-17 04:37:04 +0000596#ifdef _DLL
Logan Chien7b4845e2018-02-24 07:57:32 +0000597# define _LIBCPP_CRT_FUNC __declspec(dllimport)
Peter Collingbourne725de942018-01-17 04:37:04 +0000598#else
Logan Chien7b4845e2018-02-24 07:57:32 +0000599# define _LIBCPP_CRT_FUNC
Peter Collingbourne725de942018-01-17 04:37:04 +0000600#endif
601
Shoaib Meenaif36e9882016-12-05 19:40:12 +0000602#if defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS)
Logan Chien7b4845e2018-02-24 07:57:32 +0000603# define _LIBCPP_DLL_VIS
604# define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS
605# define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS
606# define _LIBCPP_OVERRIDABLE_FUNC_VIS
Louis Dionne5254b372018-10-25 12:13:43 +0000607# define _LIBCPP_EXPORTED_FROM_ABI
Eric Fiselier51e8d2f2016-09-26 22:19:41 +0000608#elif defined(_LIBCPP_BUILDING_LIBRARY)
Logan Chien7b4845e2018-02-24 07:57:32 +0000609# define _LIBCPP_DLL_VIS __declspec(dllexport)
Martin Storsjobd254492019-04-25 19:46:28 +0000610# if defined(__MINGW32__)
611# define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS _LIBCPP_DLL_VIS
612# define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS
613# else
614# define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS
615# define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS _LIBCPP_DLL_VIS
616# endif
Logan Chien7b4845e2018-02-24 07:57:32 +0000617# define _LIBCPP_OVERRIDABLE_FUNC_VIS _LIBCPP_DLL_VIS
Louis Dionne5254b372018-10-25 12:13:43 +0000618# define _LIBCPP_EXPORTED_FROM_ABI __declspec(dllexport)
Eric Fiselier51e8d2f2016-09-26 22:19:41 +0000619#else
Logan Chien7b4845e2018-02-24 07:57:32 +0000620# define _LIBCPP_DLL_VIS __declspec(dllimport)
621# define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS _LIBCPP_DLL_VIS
622# define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS
623# define _LIBCPP_OVERRIDABLE_FUNC_VIS
Louis Dionne5254b372018-10-25 12:13:43 +0000624# define _LIBCPP_EXPORTED_FROM_ABI __declspec(dllimport)
Eric Fiselier1b57fa82016-09-15 22:27:07 +0000625#endif
Eric Fiselier51e8d2f2016-09-26 22:19:41 +0000626
Eric Fiselier1b57fa82016-09-15 22:27:07 +0000627#define _LIBCPP_TYPE_VIS _LIBCPP_DLL_VIS
628#define _LIBCPP_FUNC_VIS _LIBCPP_DLL_VIS
629#define _LIBCPP_EXCEPTION_ABI _LIBCPP_DLL_VIS
Eric Fiselier1b57fa82016-09-15 22:27:07 +0000630#define _LIBCPP_HIDDEN
Shoaib Meenai69c57412017-03-02 03:02:50 +0000631#define _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +0000632#define _LIBCPP_TEMPLATE_VIS
Martin Storsjö88890c22021-02-22 01:13:13 +0200633#define _LIBCPP_TEMPLATE_DATA_VIS
Eric Fiselier1b57fa82016-09-15 22:27:07 +0000634#define _LIBCPP_ENUM_VIS
Saleem Abdulrasoolee302e42017-01-03 21:53:51 +0000635
Saleem Abdulrasoolee302e42017-01-03 21:53:51 +0000636#endif // defined(_LIBCPP_OBJECT_FORMAT_COFF)
Eric Fiselier1b57fa82016-09-15 22:27:07 +0000637
638#ifndef _LIBCPP_HIDDEN
Logan Chien7b4845e2018-02-24 07:57:32 +0000639# if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS)
640# define _LIBCPP_HIDDEN __attribute__ ((__visibility__("hidden")))
641# else
642# define _LIBCPP_HIDDEN
643# endif
Eric Fiselier1b57fa82016-09-15 22:27:07 +0000644#endif
645
Shoaib Meenai5331f492017-03-09 00:18:00 +0000646#ifndef _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
Logan Chien7b4845e2018-02-24 07:57:32 +0000647# if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS)
Shoaib Meenai69c57412017-03-02 03:02:50 +0000648// The inline should be removed once PR32114 is resolved
Logan Chien7b4845e2018-02-24 07:57:32 +0000649# define _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS inline _LIBCPP_HIDDEN
650# else
651# define _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
652# endif
Shoaib Meenai5331f492017-03-09 00:18:00 +0000653#endif
Shoaib Meenai69c57412017-03-02 03:02:50 +0000654
Eric Fiselier1b57fa82016-09-15 22:27:07 +0000655#ifndef _LIBCPP_FUNC_VIS
Logan Chien7b4845e2018-02-24 07:57:32 +0000656# if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS)
657# define _LIBCPP_FUNC_VIS __attribute__ ((__visibility__("default")))
658# else
659# define _LIBCPP_FUNC_VIS
660# endif
Eric Fiselier1b57fa82016-09-15 22:27:07 +0000661#endif
662
663#ifndef _LIBCPP_TYPE_VIS
Shoaib Meenaif36e9882016-12-05 19:40:12 +0000664# if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS)
Shoaib Meenai55f3a462017-03-02 03:22:18 +0000665# define _LIBCPP_TYPE_VIS __attribute__ ((__visibility__("default")))
Eric Fiselier1b57fa82016-09-15 22:27:07 +0000666# else
Shoaib Meenaif36e9882016-12-05 19:40:12 +0000667# define _LIBCPP_TYPE_VIS
Eric Fiselier1b57fa82016-09-15 22:27:07 +0000668# endif
669#endif
670
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +0000671#ifndef _LIBCPP_TEMPLATE_VIS
Shoaib Meenai55f3a462017-03-02 03:22:18 +0000672# if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS)
673# if __has_attribute(__type_visibility__)
674# define _LIBCPP_TEMPLATE_VIS __attribute__ ((__type_visibility__("default")))
675# else
676# define _LIBCPP_TEMPLATE_VIS __attribute__ ((__visibility__("default")))
677# endif
678# else
679# define _LIBCPP_TEMPLATE_VIS
680# endif
Eric Fiselier1b57fa82016-09-15 22:27:07 +0000681#endif
682
Martin Storsjö88890c22021-02-22 01:13:13 +0200683#ifndef _LIBCPP_TEMPLATE_DATA_VIS
684# if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS)
685# define _LIBCPP_TEMPLATE_DATA_VIS __attribute__ ((__visibility__("default")))
686# else
687# define _LIBCPP_TEMPLATE_DATA_VIS
688# endif
689#endif
690
Louis Dionne5254b372018-10-25 12:13:43 +0000691#ifndef _LIBCPP_EXPORTED_FROM_ABI
Thomas Andersone13df2b2018-12-13 20:06:14 +0000692# if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS)
693# define _LIBCPP_EXPORTED_FROM_ABI __attribute__((__visibility__("default")))
694# else
695# define _LIBCPP_EXPORTED_FROM_ABI
696# endif
Eric Fiselier99505072017-01-16 21:01:00 +0000697#endif
698
Shoaib Meenai2d71db42016-11-16 22:18:10 +0000699#ifndef _LIBCPP_OVERRIDABLE_FUNC_VIS
Logan Chien7b4845e2018-02-24 07:57:32 +0000700#define _LIBCPP_OVERRIDABLE_FUNC_VIS _LIBCPP_FUNC_VIS
Shoaib Meenai2d71db42016-11-16 22:18:10 +0000701#endif
702
Eric Fiselier1b57fa82016-09-15 22:27:07 +0000703#ifndef _LIBCPP_EXCEPTION_ABI
Logan Chien7b4845e2018-02-24 07:57:32 +0000704# if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS)
705# define _LIBCPP_EXCEPTION_ABI __attribute__ ((__visibility__("default")))
706# else
707# define _LIBCPP_EXCEPTION_ABI
708# endif
Eric Fiselier1b57fa82016-09-15 22:27:07 +0000709#endif
710
711#ifndef _LIBCPP_ENUM_VIS
Shoaib Meenaif36e9882016-12-05 19:40:12 +0000712# if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) && __has_attribute(__type_visibility__)
Eric Fiselier1b57fa82016-09-15 22:27:07 +0000713# define _LIBCPP_ENUM_VIS __attribute__ ((__type_visibility__("default")))
714# else
715# define _LIBCPP_ENUM_VIS
716# endif
717#endif
718
719#ifndef _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS
Shoaib Meenai491802e2021-01-12 10:29:03 -0800720# if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS)
Shoaib Meenai69c57412017-03-02 03:02:50 +0000721# define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS __attribute__ ((__visibility__("default")))
Eric Fiselier1b57fa82016-09-15 22:27:07 +0000722# else
723# define _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS
724# endif
725#endif
726
Shoaib Meenai5ac10672016-09-19 18:29:07 +0000727#ifndef _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS
Logan Chien7b4845e2018-02-24 07:57:32 +0000728#define _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS
Shoaib Meenai5ac10672016-09-19 18:29:07 +0000729#endif
730
Louis Dionne3a197992018-07-27 12:46:03 +0000731#if __has_attribute(internal_linkage)
732# define _LIBCPP_INTERNAL_LINKAGE __attribute__ ((internal_linkage))
733#else
734# define _LIBCPP_INTERNAL_LINKAGE _LIBCPP_ALWAYS_INLINE
Eric Fiselier1b57fa82016-09-15 22:27:07 +0000735#endif
736
Louis Dionne3b8a03f2018-10-29 17:30:04 +0000737#if __has_attribute(exclude_from_explicit_instantiation)
738# define _LIBCPP_EXCLUDE_FROM_EXPLICIT_INSTANTIATION __attribute__ ((__exclude_from_explicit_instantiation__))
739#else
740 // Try to approximate the effect of exclude_from_explicit_instantiation
741 // (which is that entities are not assumed to be provided by explicit
Louis Dionnea8548af2019-03-20 17:05:52 +0000742 // template instantiations in the dylib) by always inlining those entities.
Louis Dionne3b8a03f2018-10-29 17:30:04 +0000743# define _LIBCPP_EXCLUDE_FROM_EXPLICIT_INSTANTIATION _LIBCPP_ALWAYS_INLINE
744#endif
745
Louis Dionne1821de42018-08-16 12:44:28 +0000746#ifndef _LIBCPP_HIDE_FROM_ABI_PER_TU
747# ifndef _LIBCPP_HIDE_FROM_ABI_PER_TU_BY_DEFAULT
748# define _LIBCPP_HIDE_FROM_ABI_PER_TU 0
749# else
750# define _LIBCPP_HIDE_FROM_ABI_PER_TU 1
751# endif
752#endif
753
Louis Dionne3a197992018-07-27 12:46:03 +0000754#ifndef _LIBCPP_HIDE_FROM_ABI
Louis Dionne1821de42018-08-16 12:44:28 +0000755# if _LIBCPP_HIDE_FROM_ABI_PER_TU
756# define _LIBCPP_HIDE_FROM_ABI _LIBCPP_HIDDEN _LIBCPP_INTERNAL_LINKAGE
757# else
Louis Dionne3b8a03f2018-10-29 17:30:04 +0000758# define _LIBCPP_HIDE_FROM_ABI _LIBCPP_HIDDEN _LIBCPP_EXCLUDE_FROM_EXPLICIT_INSTANTIATION
Louis Dionne1821de42018-08-16 12:44:28 +0000759# endif
Louis Dionne3a197992018-07-27 12:46:03 +0000760#endif
761
Louis Dionned797b8d2018-08-06 14:11:50 +0000762#ifdef _LIBCPP_BUILDING_LIBRARY
763# if _LIBCPP_ABI_VERSION > 1
764# define _LIBCPP_HIDE_FROM_ABI_AFTER_V1 _LIBCPP_HIDE_FROM_ABI
Logan Chien7b4845e2018-02-24 07:57:32 +0000765# else
Louis Dionned797b8d2018-08-06 14:11:50 +0000766# define _LIBCPP_HIDE_FROM_ABI_AFTER_V1
Logan Chien7b4845e2018-02-24 07:57:32 +0000767# endif
Louis Dionned797b8d2018-08-06 14:11:50 +0000768#else
769# define _LIBCPP_HIDE_FROM_ABI_AFTER_V1 _LIBCPP_HIDE_FROM_ABI
Eric Fiselier815ed732016-09-16 00:00:48 +0000770#endif
771
Louis Dionned797b8d2018-08-06 14:11:50 +0000772// Just so we can migrate to the new macros gradually.
773#define _LIBCPP_INLINE_VISIBILITY _LIBCPP_HIDE_FROM_ABI
Louis Dionned797b8d2018-08-06 14:11:50 +0000774
Eric Fiselierb9d04dc2018-10-30 02:02:00 +0000775// Inline namespaces are available in Clang/GCC/MSVC regardless of C++ dialect.
Eric Fiselierb33778a2018-10-30 21:44:53 +0000776#define _LIBCPP_BEGIN_NAMESPACE_STD namespace std { inline namespace _LIBCPP_ABI_NAMESPACE {
Eric Fiselierb9d04dc2018-10-30 02:02:00 +0000777#define _LIBCPP_END_NAMESPACE_STD } }
Eric Fiselierb33778a2018-10-30 21:44:53 +0000778#define _VSTD std::_LIBCPP_ABI_NAMESPACE
Eric Fiselierb9d04dc2018-10-30 02:02:00 +0000779_LIBCPP_BEGIN_NAMESPACE_STD _LIBCPP_END_NAMESPACE_STD
780
781#if _LIBCPP_STD_VER >= 17
782#define _LIBCPP_BEGIN_NAMESPACE_FILESYSTEM \
783 _LIBCPP_BEGIN_NAMESPACE_STD inline namespace __fs { namespace filesystem {
784#else
785#define _LIBCPP_BEGIN_NAMESPACE_FILESYSTEM \
786 _LIBCPP_BEGIN_NAMESPACE_STD namespace __fs { namespace filesystem {
787#endif
788
789#define _LIBCPP_END_NAMESPACE_FILESYSTEM \
790 _LIBCPP_END_NAMESPACE_STD } }
791
792#define _VSTD_FS _VSTD::__fs::filesystem
793
Louis Dionne93f1fd72021-06-04 13:31:22 -0400794#if __has_attribute(__enable_if__)
795# define _LIBCPP_PREFERRED_OVERLOAD __attribute__ ((__enable_if__(true, "")))
Eric Fiselier1b57fa82016-09-15 22:27:07 +0000796#endif
797
Eric Fiselier1af87ca2015-12-15 22:16:47 +0000798#ifndef _LIBCPP_HAS_NO_NOEXCEPT
799# define _NOEXCEPT noexcept
800# define _NOEXCEPT_(x) noexcept(x)
801#else
802# define _NOEXCEPT throw()
803# define _NOEXCEPT_(x)
804#endif
805
Howard Hinnantc51e1022010-05-11 19:42:16 +0000806#ifdef _LIBCPP_HAS_NO_UNICODE_CHARS
Howard Hinnantaa87c0f2010-08-10 20:48:29 +0000807typedef unsigned short char16_t;
808typedef unsigned int char32_t;
Louis Dionne96fc5f52021-09-09 11:25:10 -0400809#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +0000810
Stephan Tolksdorf0efeb6c2014-03-26 19:45:52 +0000811#ifndef __SIZEOF_INT128__
812#define _LIBCPP_HAS_NO_INT128
813#endif
814
Eric Fiselierc6f17cc2016-09-25 03:34:28 +0000815#ifdef _LIBCPP_CXX03_LANG
Eric Fiselier2f05ab92019-06-18 20:50:25 +0000816# define static_assert(...) _Static_assert(__VA_ARGS__)
817# define decltype(...) __decltype(__VA_ARGS__)
Louis Dionne2b1ceaa2021-04-20 12:03:32 -0400818#endif // _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +0000819
Eric Fiselier605af612019-06-21 13:56:13 +0000820#ifdef _LIBCPP_CXX03_LANG
Logan Chien7b4845e2018-02-24 07:57:32 +0000821# define _LIBCPP_CONSTEXPR
Howard Hinnant664183b2012-04-02 00:40:41 +0000822#else
Logan Chien7b4845e2018-02-24 07:57:32 +0000823# define _LIBCPP_CONSTEXPR constexpr
Howard Hinnant62c8c0b2010-09-06 19:10:31 +0000824#endif
825
Richard Smith55a75c82020-07-31 15:03:21 -0700826#ifndef __cpp_consteval
827# define _LIBCPP_CONSTEVAL _LIBCPP_CONSTEXPR
828#else
829# define _LIBCPP_CONSTEVAL consteval
830#endif
831
Mark de Wever1d4140e2021-02-20 09:13:16 +0100832#if !defined(__cpp_concepts) || __cpp_concepts < 201907L
833#define _LIBCPP_HAS_NO_CONCEPTS
834#endif
835
Martin Storsjö4f646c02021-04-30 13:57:37 +0300836#if _LIBCPP_STD_VER <= 17 || defined(_LIBCPP_HAS_NO_CONCEPTS)
Christopher Di Bella490fe402021-03-23 03:55:52 +0000837#define _LIBCPP_HAS_NO_RANGES
838#endif
839
Nuno Lopes22df2dc2012-06-28 16:47:34 +0000840#ifdef __GNUC__
Louis Dionnee147b352019-02-26 06:34:42 +0000841# define _LIBCPP_NOALIAS __attribute__((__malloc__))
Nuno Lopes22df2dc2012-06-28 16:47:34 +0000842#else
Louis Dionnee147b352019-02-26 06:34:42 +0000843# define _LIBCPP_NOALIAS
Nuno Lopes22df2dc2012-06-28 16:47:34 +0000844#endif
845
Louis Dionne9c660c62021-06-02 10:41:37 -0400846#if __has_attribute(using_if_exists)
847# define _LIBCPP_USING_IF_EXISTS __attribute__((using_if_exists))
848#else
849# define _LIBCPP_USING_IF_EXISTS
850#endif
851
Howard Hinnant09bc0c92011-12-02 19:36:40 +0000852#ifdef _LIBCPP_HAS_NO_STRONG_ENUMS
Logan Chien7b4845e2018-02-24 07:57:32 +0000853# define _LIBCPP_DECLARE_STRONG_ENUM(x) struct _LIBCPP_TYPE_VIS x { enum __lx
854# define _LIBCPP_DECLARE_STRONG_ENUM_EPILOG(x) \
855 __lx __v_; \
Louis Dionne16fe2952018-07-11 23:14:33 +0000856 _LIBCPP_INLINE_VISIBILITY x(__lx __v) : __v_(__v) {} \
857 _LIBCPP_INLINE_VISIBILITY explicit x(int __v) : __v_(static_cast<__lx>(__v)) {} \
858 _LIBCPP_INLINE_VISIBILITY operator int() const {return __v_;} \
Logan Chien7b4845e2018-02-24 07:57:32 +0000859 };
Howard Hinnant09bc0c92011-12-02 19:36:40 +0000860#else // _LIBCPP_HAS_NO_STRONG_ENUMS
Logan Chien7b4845e2018-02-24 07:57:32 +0000861# define _LIBCPP_DECLARE_STRONG_ENUM(x) enum class _LIBCPP_ENUM_VIS x
862# define _LIBCPP_DECLARE_STRONG_ENUM_EPILOG(x)
Louis Dionne2b1ceaa2021-04-20 12:03:32 -0400863#endif // _LIBCPP_HAS_NO_STRONG_ENUMS
Howard Hinnant09bc0c92011-12-02 19:36:40 +0000864
Louis Dionneba400782020-10-02 15:02:52 -0400865// _LIBCPP_DEBUG potential values:
866// - undefined: No assertions. This is the default.
867// - 0: Basic assertions
Danila Kutenina9cbea12021-11-16 15:48:59 -0500868// - 1: Basic assertions + iterator validity checks + unspecified behavior randomization.
869# if !defined(_LIBCPP_DEBUG)
870# define _LIBCPP_DEBUG_LEVEL 0
871# elif _LIBCPP_DEBUG == 0
872# define _LIBCPP_DEBUG_LEVEL 1
873# elif _LIBCPP_DEBUG == 1
874# define _LIBCPP_DEBUG_LEVEL 2
875# else
876# error Supported values for _LIBCPP_DEBUG are 0 and 1
877# endif
878
879# if _LIBCPP_DEBUG_LEVEL >= 2 && !defined(_LIBCPP_CXX03_LANG)
880# define _LIBCPP_DEBUG_RANDOMIZE_UNSPECIFIED_STABILITY
881# endif
882
883# if defined(_LIBCPP_DEBUG_RANDOMIZE_UNSPECIFIED_STABILITY)
884# if defined(_LIBCPP_CXX03_LANG)
885# error Support for unspecified stability is only for C++11 and higher
886# endif
887# define _LIBCPP_DEBUG_RANDOMIZE_RANGE(__first, __last) \
888 do { \
889 if (!__builtin_is_constant_evaluated()) \
890 _VSTD::shuffle(__first, __last, __libcpp_debug_randomizer()); \
891 } while (false)
892# else
893# define _LIBCPP_DEBUG_RANDOMIZE_RANGE(__first, __last) \
894 do { \
895 } while (false)
896# endif
Howard Hinnant8ea98242013-08-23 17:37:05 +0000897
Louis Dionne732192e2021-06-09 09:41:27 -0400898// Libc++ allows disabling extern template instantiation declarations by
899// means of users defining _LIBCPP_DISABLE_EXTERN_TEMPLATE.
900//
901// Furthermore, when the Debug mode is enabled, we disable extern declarations
902// when building user code because we don't want to use the functions compiled
903// in the library, which might not have had the debug mode enabled when built.
904// However, some extern declarations need to be used, because code correctness
905// depends on it (several instances in <locale>). Those special declarations
906// are declared with _LIBCPP_EXTERN_TEMPLATE_EVEN_IN_DEBUG_MODE, which is enabled
907// even when the debug mode is enabled.
908#if defined(_LIBCPP_DISABLE_EXTERN_TEMPLATE)
909# define _LIBCPP_EXTERN_TEMPLATE(...) /* nothing */
910# define _LIBCPP_EXTERN_TEMPLATE_EVEN_IN_DEBUG_MODE(...) /* nothing */
911#elif _LIBCPP_DEBUG_LEVEL >= 1 && !defined(_LIBCPP_BUILDING_LIBRARY)
912# define _LIBCPP_EXTERN_TEMPLATE(...) /* nothing */
913# define _LIBCPP_EXTERN_TEMPLATE_EVEN_IN_DEBUG_MODE(...) extern template __VA_ARGS__;
914#else
915# define _LIBCPP_EXTERN_TEMPLATE(...) extern template __VA_ARGS__;
916# define _LIBCPP_EXTERN_TEMPLATE_EVEN_IN_DEBUG_MODE(...) extern template __VA_ARGS__;
Eric Fiselier510690e2019-12-13 15:42:07 -0500917#endif
918
Martin Storsjo5482ac62017-11-23 10:38:18 +0000919#if defined(__APPLE__) || defined(__FreeBSD__) || defined(_LIBCPP_MSVCRT_LIKE) || \
Louis Dionne59426ee2021-08-24 11:40:05 -0400920 defined(__sun__) || defined(__NetBSD__)
Alexis Hunt1adf2aa2011-07-15 05:40:33 +0000921#define _LIBCPP_LOCALE__L_EXTENSIONS 1
922#endif
Yaron Keren804da952013-12-20 13:19:45 +0000923
Marshall Clow82378c02013-03-18 19:34:07 +0000924#ifdef __FreeBSD__
David Chisnall6ae8f352011-11-13 17:15:33 +0000925#define _DECLARE_C99_LDBL_MATH 1
926#endif
Alexis Hunt1adf2aa2011-07-15 05:40:33 +0000927
Reid Kleckner85c65e62018-04-19 22:12:10 +0000928// If we are getting operator new from the MSVC CRT, then allocation overloads
929// for align_val_t were added in 19.12, aka VS 2017 version 15.3.
930#if defined(_LIBCPP_MSVCRT) && defined(_MSC_VER) && _MSC_VER < 1912
Louis Dionne2e206ca2018-12-17 22:22:44 +0000931# define _LIBCPP_HAS_NO_LIBRARY_ALIGNED_ALLOCATION
Eric Fiselier85f66332019-03-05 01:57:01 +0000932#elif defined(_LIBCPP_ABI_VCRUNTIME) && !defined(__cpp_aligned_new)
Louis Dionnea8548af2019-03-20 17:05:52 +0000933 // We're deferring to Microsoft's STL to provide aligned new et al. We don't
Thomas Andersone0439182019-01-30 19:08:32 +0000934 // have it unless the language feature test macro is defined.
935# define _LIBCPP_HAS_NO_LIBRARY_ALIGNED_ALLOCATION
Zbigniew Sarbinowski001f5d02020-11-12 14:40:35 -0500936#elif defined(__MVS__)
937# define _LIBCPP_HAS_NO_LIBRARY_ALIGNED_ALLOCATION
Reid Kleckner85c65e62018-04-19 22:12:10 +0000938#endif
939
Louis Dionne93f1fd72021-06-04 13:31:22 -0400940#if defined(_LIBCPP_HAS_NO_LIBRARY_ALIGNED_ALLOCATION) || \
941 (!defined(__cpp_aligned_new) || __cpp_aligned_new < 201606)
Louis Dionnee5aafbf2018-08-10 13:24:56 +0000942# define _LIBCPP_HAS_NO_ALIGNED_ALLOCATION
943#endif
Eric Fiselier06548ab2018-03-22 04:42:56 +0000944
Marshall Clow82378c02013-03-18 19:34:07 +0000945#if defined(__APPLE__) || defined(__FreeBSD__)
Howard Hinnantf312e3e2011-09-28 23:39:33 +0000946#define _LIBCPP_HAS_DEFAULTRUNELOCALE
Alexis Hunt5a4dd562011-07-09 01:09:31 +0000947#endif
948
Marshall Clow82378c02013-03-18 19:34:07 +0000949#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__sun__)
Alexis Huntc2017f12011-07-09 03:40:04 +0000950#define _LIBCPP_WCTYPE_IS_MASK
951#endif
952
Marshall Clow8732fed2018-12-11 04:35:44 +0000953#if _LIBCPP_STD_VER <= 17 || !defined(__cpp_char8_t)
Arthur O'Dwyerafa5d5f2021-04-18 21:47:08 -0400954#define _LIBCPP_HAS_NO_CHAR8_T
Marshall Clow8732fed2018-12-11 04:35:44 +0000955#endif
956
Louis Dionne481a2662018-09-23 18:35:00 +0000957// Deprecation macros.
Louis Dionneded5b772019-03-12 20:10:06 +0000958//
959// Deprecations warnings are always enabled, except when users explicitly opt-out
960// by defining _LIBCPP_DISABLE_DEPRECATION_WARNINGS.
961#if !defined(_LIBCPP_DISABLE_DEPRECATION_WARNINGS)
Louis Dionne481a2662018-09-23 18:35:00 +0000962# if __has_attribute(deprecated)
963# define _LIBCPP_DEPRECATED __attribute__ ((deprecated))
964# elif _LIBCPP_STD_VER > 11
965# define _LIBCPP_DEPRECATED [[deprecated]]
966# else
967# define _LIBCPP_DEPRECATED
968# endif
Marshall Clowa2cbe0d2013-09-28 18:35:31 +0000969#else
Logan Chien7b4845e2018-02-24 07:57:32 +0000970# define _LIBCPP_DEPRECATED
Marshall Clowa2cbe0d2013-09-28 18:35:31 +0000971#endif
972
Louis Dionne481a2662018-09-23 18:35:00 +0000973#if !defined(_LIBCPP_CXX03_LANG)
974# define _LIBCPP_DEPRECATED_IN_CXX11 _LIBCPP_DEPRECATED
975#else
976# define _LIBCPP_DEPRECATED_IN_CXX11
977#endif
978
979#if _LIBCPP_STD_VER >= 14
980# define _LIBCPP_DEPRECATED_IN_CXX14 _LIBCPP_DEPRECATED
981#else
982# define _LIBCPP_DEPRECATED_IN_CXX14
983#endif
984
985#if _LIBCPP_STD_VER >= 17
986# define _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_DEPRECATED
987#else
988# define _LIBCPP_DEPRECATED_IN_CXX17
989#endif
990
Marek Kurdejc9848142020-11-26 10:07:16 +0100991#if _LIBCPP_STD_VER > 17
992# define _LIBCPP_DEPRECATED_IN_CXX20 _LIBCPP_DEPRECATED
993#else
994# define _LIBCPP_DEPRECATED_IN_CXX20
995#endif
996
Arthur O'Dwyerafa5d5f2021-04-18 21:47:08 -0400997#if !defined(_LIBCPP_HAS_NO_CHAR8_T)
Martin Storsjöe3a71972020-10-26 13:18:46 +0200998# define _LIBCPP_DEPRECATED_WITH_CHAR8_T _LIBCPP_DEPRECATED
999#else
1000# define _LIBCPP_DEPRECATED_WITH_CHAR8_T
1001#endif
1002
Richard Smithbfc256b2019-10-19 00:06:00 +00001003// Macros to enter and leave a state where deprecation warnings are suppressed.
Louis Dionne93f1fd72021-06-04 13:31:22 -04001004#if defined(_LIBCPP_COMPILER_CLANG_BASED) || defined(_LIBCPP_COMPILER_GCC)
1005# define _LIBCPP_SUPPRESS_DEPRECATED_PUSH \
1006 _Pragma("GCC diagnostic push") \
Louis Dionneaf6be622021-07-27 17:30:47 -04001007 _Pragma("GCC diagnostic ignored \"-Wdeprecated\"") \
1008 _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
Louis Dionne93f1fd72021-06-04 13:31:22 -04001009# define _LIBCPP_SUPPRESS_DEPRECATED_POP \
1010 _Pragma("GCC diagnostic pop")
1011#else
1012# define _LIBCPP_SUPPRESS_DEPRECATED_PUSH
1013# define _LIBCPP_SUPPRESS_DEPRECATED_POP
Richard Smithbfc256b2019-10-19 00:06:00 +00001014#endif
1015
Marshall Clow1045cee2013-07-15 14:57:19 +00001016#if _LIBCPP_STD_VER <= 11
Logan Chien7b4845e2018-02-24 07:57:32 +00001017# define _LIBCPP_EXPLICIT_AFTER_CXX11
Marshall Clow1045cee2013-07-15 14:57:19 +00001018#else
Logan Chien7b4845e2018-02-24 07:57:32 +00001019# define _LIBCPP_EXPLICIT_AFTER_CXX11 explicit
Marshall Clow1045cee2013-07-15 14:57:19 +00001020#endif
1021
Louis Dionnee3594f12021-08-24 11:58:36 -04001022#if _LIBCPP_STD_VER > 11
Logan Chien7b4845e2018-02-24 07:57:32 +00001023# define _LIBCPP_CONSTEXPR_AFTER_CXX11 constexpr
Eric Fiselierb4c0c662014-07-17 05:16:18 +00001024#else
Logan Chien7b4845e2018-02-24 07:57:32 +00001025# define _LIBCPP_CONSTEXPR_AFTER_CXX11
Eric Fiselierb4c0c662014-07-17 05:16:18 +00001026#endif
1027
Louis Dionnee3594f12021-08-24 11:58:36 -04001028#if _LIBCPP_STD_VER > 14
Logan Chien7b4845e2018-02-24 07:57:32 +00001029# define _LIBCPP_CONSTEXPR_AFTER_CXX14 constexpr
Eric Fiselier0b3bfbe2016-03-17 03:30:56 +00001030#else
Logan Chien7b4845e2018-02-24 07:57:32 +00001031# define _LIBCPP_CONSTEXPR_AFTER_CXX14
Eric Fiselier0b3bfbe2016-03-17 03:30:56 +00001032#endif
1033
Louis Dionnee3594f12021-08-24 11:58:36 -04001034#if _LIBCPP_STD_VER > 17
Logan Chien7b4845e2018-02-24 07:57:32 +00001035# define _LIBCPP_CONSTEXPR_AFTER_CXX17 constexpr
Marshall Clow2a5c4212017-11-14 22:26:50 +00001036#else
Logan Chien7b4845e2018-02-24 07:57:32 +00001037# define _LIBCPP_CONSTEXPR_AFTER_CXX17
Marshall Clow2a5c4212017-11-14 22:26:50 +00001038#endif
1039
Roman Lebedevb5959fa2018-09-22 17:54:48 +00001040#if __has_cpp_attribute(nodiscard) || defined(_LIBCPP_COMPILER_MSVC)
Louis Dionne91182922021-08-30 16:01:38 -04001041# define _LIBCPP_NODISCARD [[nodiscard]]
Marek Kurdejf3197922021-04-01 08:29:55 +02001042#elif defined(_LIBCPP_COMPILER_CLANG_BASED) && !defined(_LIBCPP_CXX03_LANG)
Louis Dionne91182922021-08-30 16:01:38 -04001043# define _LIBCPP_NODISCARD [[clang::warn_unused_result]]
Roman Lebedevb5959fa2018-09-22 17:54:48 +00001044#else
1045// We can't use GCC's [[gnu::warn_unused_result]] and
1046// __attribute__((warn_unused_result)), because GCC does not silence them via
1047// (void) cast.
Louis Dionne91182922021-08-30 16:01:38 -04001048# define _LIBCPP_NODISCARD
Roman Lebedevb5959fa2018-09-22 17:54:48 +00001049#endif
1050
1051// _LIBCPP_NODISCARD_EXT may be used to apply [[nodiscard]] to entities not
1052// specified as such as an extension.
1053#if defined(_LIBCPP_ENABLE_NODISCARD) && !defined(_LIBCPP_DISABLE_NODISCARD_EXT)
Louis Dionne91182922021-08-30 16:01:38 -04001054# define _LIBCPP_NODISCARD_EXT _LIBCPP_NODISCARD
Roman Lebedevb5959fa2018-09-22 17:54:48 +00001055#else
1056# define _LIBCPP_NODISCARD_EXT
1057#endif
1058
1059#if !defined(_LIBCPP_DISABLE_NODISCARD_AFTER_CXX17) && \
1060 (_LIBCPP_STD_VER > 17 || defined(_LIBCPP_ENABLE_NODISCARD))
Louis Dionne91182922021-08-30 16:01:38 -04001061# define _LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_NODISCARD
Marshall Clow2a5c4212017-11-14 22:26:50 +00001062#else
Logan Chien7b4845e2018-02-24 07:57:32 +00001063# define _LIBCPP_NODISCARD_AFTER_CXX17
Marshall Clow2a5c4212017-11-14 22:26:50 +00001064#endif
1065
Louis Dionnea39f1ef2019-04-17 18:20:19 +00001066#if __has_attribute(no_destroy)
1067# define _LIBCPP_NO_DESTROY __attribute__((__no_destroy__))
1068#else
1069# define _LIBCPP_NO_DESTROY
1070#endif
1071
Marshall Clow2cd9d372014-05-08 14:14:06 +00001072#ifndef _LIBCPP_HAS_NO_ASAN
Azat Khuzhincdfb87f2020-12-17 16:19:50 -05001073extern "C" _LIBCPP_FUNC_VIS void __sanitizer_annotate_contiguous_container(
Marshall Clow2cd9d372014-05-08 14:14:06 +00001074 const void *, const void *, const void *, const void *);
1075#endif
1076
Howard Hinnant13087882013-10-04 21:24:21 +00001077// Try to find out if RTTI is disabled.
Marek Kurdejf3197922021-04-01 08:29:55 +02001078#if defined(_LIBCPP_COMPILER_CLANG_BASED) && !__has_feature(cxx_rtti)
Louis Dionneef0c6622020-07-14 16:28:41 -04001079# define _LIBCPP_NO_RTTI
1080#elif defined(__GNUC__) && !defined(__GXX_RTTI)
1081# define _LIBCPP_NO_RTTI
1082#elif defined(_LIBCPP_COMPILER_MSVC) && !defined(_CPPRTTI)
1083# define _LIBCPP_NO_RTTI
Howard Hinnant13087882013-10-04 21:24:21 +00001084#endif
1085
Howard Hinnant33f04722013-10-04 23:56:37 +00001086#ifndef _LIBCPP_WEAK
Logan Chien7b4845e2018-02-24 07:57:32 +00001087#define _LIBCPP_WEAK __attribute__((__weak__))
Howard Hinnant33f04722013-10-04 23:56:37 +00001088#endif
1089
Asiri Rathnayakefa2e2032016-05-06 14:06:29 +00001090// Thread API
Eric Fiselierbfd45532017-01-06 23:15:16 +00001091#if !defined(_LIBCPP_HAS_NO_THREADS) && \
Asiri Rathnayakec07f0be2017-02-27 16:10:57 +00001092 !defined(_LIBCPP_HAS_THREAD_API_PTHREAD) && \
Eric Fiselierd8a6c892017-05-10 21:34:58 +00001093 !defined(_LIBCPP_HAS_THREAD_API_WIN32) && \
Asiri Rathnayakec07f0be2017-02-27 16:10:57 +00001094 !defined(_LIBCPP_HAS_THREAD_API_EXTERNAL)
Logan Chien7b4845e2018-02-24 07:57:32 +00001095# if defined(__FreeBSD__) || \
Dan Gohman280fd6b2019-05-01 16:47:30 +00001096 defined(__wasi__) || \
Logan Chien7b4845e2018-02-24 07:57:32 +00001097 defined(__NetBSD__) || \
Brad Smithf6f55092021-01-12 14:16:15 -05001098 defined(__OpenBSD__) || \
Xiang Xiao85529232020-11-18 16:16:18 -05001099 defined(__NuttX__) || \
Logan Chien7b4845e2018-02-24 07:57:32 +00001100 defined(__linux__) || \
Louis Dionne3cfcaeb2018-11-20 21:14:05 +00001101 defined(__GNU__) || \
Logan Chien7b4845e2018-02-24 07:57:32 +00001102 defined(__APPLE__) || \
Logan Chien7b4845e2018-02-24 07:57:32 +00001103 defined(__sun__) || \
Zbigniew Sarbinowskica6367d2020-12-05 00:13:23 +00001104 defined(__MVS__) || \
Martin Storsjöc86337b2021-10-01 23:44:17 +03001105 defined(_AIX)
Logan Chien7b4845e2018-02-24 07:57:32 +00001106# define _LIBCPP_HAS_THREAD_API_PTHREAD
Petr Hosekd0e7fe42019-12-04 10:38:22 -08001107# elif defined(__Fuchsia__)
Petr Hoseke6ad6e42020-01-16 12:12:38 -08001108 // TODO(44575): Switch to C11 thread API when possible.
1109# define _LIBCPP_HAS_THREAD_API_PTHREAD
Logan Chien7b4845e2018-02-24 07:57:32 +00001110# elif defined(_LIBCPP_WIN32API)
1111# define _LIBCPP_HAS_THREAD_API_WIN32
1112# else
1113# error "No thread API"
1114# endif // _LIBCPP_HAS_THREAD_API
Asiri Rathnayakefa2e2032016-05-06 14:06:29 +00001115#endif // _LIBCPP_HAS_NO_THREADS
1116
Dan Albertad293012019-09-18 18:13:32 +00001117#if defined(_LIBCPP_HAS_THREAD_API_PTHREAD)
1118#if defined(__ANDROID__) && __ANDROID_API__ >= 30
1119#define _LIBCPP_HAS_COND_CLOCKWAIT
1120#elif defined(_LIBCPP_GLIBC_PREREQ)
1121#if _LIBCPP_GLIBC_PREREQ(2, 30)
1122#define _LIBCPP_HAS_COND_CLOCKWAIT
1123#endif
1124#endif
1125#endif
1126
Ben Craig5593c4f2016-05-25 17:40:09 +00001127#if defined(_LIBCPP_HAS_NO_THREADS) && defined(_LIBCPP_HAS_THREAD_API_PTHREAD)
Logan Chien7b4845e2018-02-24 07:57:32 +00001128#error _LIBCPP_HAS_THREAD_API_PTHREAD may only be defined when \
1129 _LIBCPP_HAS_NO_THREADS is not defined.
Ben Craig5593c4f2016-05-25 17:40:09 +00001130#endif
Asiri Rathnayakefa2e2032016-05-06 14:06:29 +00001131
Asiri Rathnayake94340d22016-09-11 21:46:40 +00001132#if defined(_LIBCPP_HAS_NO_THREADS) && defined(_LIBCPP_HAS_THREAD_API_EXTERNAL)
Logan Chien7b4845e2018-02-24 07:57:32 +00001133#error _LIBCPP_HAS_THREAD_API_EXTERNAL may not be defined when \
1134 _LIBCPP_HAS_NO_THREADS is defined.
Asiri Rathnayake94340d22016-09-11 21:46:40 +00001135#endif
1136
Eric Fiselier715b4162014-12-06 20:09:11 +00001137#if defined(_LIBCPP_HAS_NO_MONOTONIC_CLOCK) && !defined(_LIBCPP_HAS_NO_THREADS)
Logan Chien7b4845e2018-02-24 07:57:32 +00001138#error _LIBCPP_HAS_NO_MONOTONIC_CLOCK may only be defined when \
1139 _LIBCPP_HAS_NO_THREADS is defined.
Eric Fiselier715b4162014-12-06 20:09:11 +00001140#endif
1141
Nico Weber6b58e1d2019-07-30 14:32:47 +00001142#if !defined(_LIBCPP_HAS_NO_THREADS) && !defined(__STDCPP_THREADS__)
1143#define __STDCPP_THREADS__ 1
1144#endif
1145
Louis Dionne66c58fd2019-07-25 20:29:20 +00001146// The glibc and Bionic implementation of pthreads implements
Eric Fiselier256466e2019-07-07 17:24:03 +00001147// pthread_mutex_destroy as nop for regular mutexes. Additionally, Win32
1148// mutexes have no destroy mechanism.
Louis Dionne66c58fd2019-07-25 20:29:20 +00001149//
1150// This optimization can't be performed on Apple platforms, where
1151// pthread_mutex_destroy can allow the kernel to release resources.
1152// See https://llvm.org/D64298 for details.
1153//
1154// TODO(EricWF): Enable this optimization on Bionic after speaking to their
1155// respective stakeholders.
Eric Fiselier256466e2019-07-07 17:24:03 +00001156#if (defined(_LIBCPP_HAS_THREAD_API_PTHREAD) && defined(__GLIBC__)) \
Petr Hosekd0e7fe42019-12-04 10:38:22 -08001157 || (defined(_LIBCPP_HAS_THREAD_API_C11) && defined(__Fuchsia__)) \
Eric Fiselier256466e2019-07-07 17:24:03 +00001158 || defined(_LIBCPP_HAS_THREAD_API_WIN32)
Eric Fiselierf6dac862019-07-07 01:20:54 +00001159# define _LIBCPP_HAS_TRIVIAL_MUTEX_DESTRUCTION
1160#endif
1161
Eric Fiselier256466e2019-07-07 17:24:03 +00001162// Destroying a condvar is a nop on Windows.
Louis Dionne66c58fd2019-07-25 20:29:20 +00001163//
1164// This optimization can't be performed on Apple platforms, where
1165// pthread_cond_destroy can allow the kernel to release resources.
1166// See https://llvm.org/D64298 for details.
1167//
Eric Fiselier256466e2019-07-07 17:24:03 +00001168// TODO(EricWF): This is potentially true for some pthread implementations
1169// as well.
Petr Hosekd0e7fe42019-12-04 10:38:22 -08001170#if (defined(_LIBCPP_HAS_THREAD_API_C11) && defined(__Fuchsia__)) || \
1171 defined(_LIBCPP_HAS_THREAD_API_WIN32)
Eric Fiselier256466e2019-07-07 17:24:03 +00001172# define _LIBCPP_HAS_TRIVIAL_CONDVAR_DESTRUCTION
1173#endif
1174
Dimitry Andric2e72c802019-09-07 22:18:20 +00001175// Some systems do not provide gets() in their C library, for security reasons.
Louis Dionne93f1fd72021-06-04 13:31:22 -04001176#if defined(_LIBCPP_MSVCRT) || \
1177 (defined(__FreeBSD_version) && __FreeBSD_version >= 1300043) || \
1178 defined(__OpenBSD__)
1179# define _LIBCPP_C_HAS_NO_GETS
Dimitry Andric2e72c802019-09-07 22:18:20 +00001180#endif
1181
Louis Dionne59426ee2021-08-24 11:40:05 -04001182#if defined(__BIONIC__) || defined(__NuttX__) || \
Muiez Ahmedaf108fb2020-11-10 09:54:03 -05001183 defined(__Fuchsia__) || defined(__wasi__) || defined(_LIBCPP_HAS_MUSL_LIBC) || \
Brad Smithf6f55092021-01-12 14:16:15 -05001184 defined(__MVS__) || defined(__OpenBSD__)
Dan Albertebdf28b2015-03-11 00:51:06 +00001185#define _LIBCPP_PROVIDES_DEFAULT_RUNE_TABLE
1186#endif
1187
Eric Fiselierba725072017-01-14 04:27:58 +00001188#if __has_feature(cxx_atomic) || __has_extension(c_atomic) || __has_keyword(_Atomic)
Logan Chien7b4845e2018-02-24 07:57:32 +00001189# define _LIBCPP_HAS_C_ATOMIC_IMP
Richard Smithca47d0f2019-04-25 20:02:10 +00001190#elif defined(_LIBCPP_COMPILER_GCC)
Logan Chien7b4845e2018-02-24 07:57:32 +00001191# define _LIBCPP_HAS_GCC_ATOMIC_IMP
Eric Fiselier8020b6c2015-08-19 17:21:46 +00001192#endif
1193
Louis Dionneaf2d2a82021-11-17 10:59:31 -05001194#if !defined(_LIBCPP_HAS_C_ATOMIC_IMP) && \
1195 !defined(_LIBCPP_HAS_GCC_ATOMIC_IMP) && \
1196 !defined(_LIBCPP_HAS_EXTERNAL_ATOMIC_IMP)
Davide Italiano011f80a2019-03-05 18:40:49 +00001197# define _LIBCPP_HAS_NO_ATOMIC_HEADER
1198#else
1199# ifndef _LIBCPP_ATOMIC_FLAG_TYPE
1200# define _LIBCPP_ATOMIC_FLAG_TYPE bool
1201# endif
1202# ifdef _LIBCPP_FREESTANDING
1203# define _LIBCPP_ATOMIC_ONLY_USE_BUILTINS
1204# endif
Eric Fiselier8020b6c2015-08-19 17:21:46 +00001205#endif
1206
Marshall Clow91c7f642016-01-11 19:27:10 +00001207#ifndef _LIBCPP_DISABLE_UBSAN_UNSIGNED_INTEGER_CHECK
1208#define _LIBCPP_DISABLE_UBSAN_UNSIGNED_INTEGER_CHECK
Eric Fiselier100e24b2016-02-11 11:59:44 +00001209#endif
1210
Saleem Abdulrasoolb82f9602017-02-13 15:26:51 +00001211#if defined(_LIBCPP_ENABLE_THREAD_SAFETY_ANNOTATIONS)
Logan Chien7b4845e2018-02-24 07:57:32 +00001212# if defined(__clang__) && __has_attribute(acquire_capability)
Saleem Abdulrasoolb82f9602017-02-13 15:26:51 +00001213// Work around the attribute handling in clang. When both __declspec and
1214// __attribute__ are present, the processing goes awry preventing the definition
1215// of the types.
Logan Chien7b4845e2018-02-24 07:57:32 +00001216# if !defined(_LIBCPP_OBJECT_FORMAT_COFF)
1217# define _LIBCPP_HAS_THREAD_SAFETY_ANNOTATIONS
1218# endif
1219# endif
Saleem Abdulrasoolb82f9602017-02-13 15:26:51 +00001220#endif
Eric Fiselierc0c6c982016-03-16 02:30:06 +00001221
Louis Dionne93f1fd72021-06-04 13:31:22 -04001222#ifdef _LIBCPP_HAS_THREAD_SAFETY_ANNOTATIONS
1223# define _LIBCPP_THREAD_SAFETY_ANNOTATION(x) __attribute__((x))
1224#else
1225# define _LIBCPP_THREAD_SAFETY_ANNOTATION(x)
1226#endif
Eric Fiselier510690e2019-12-13 15:42:07 -05001227
Eric Fiselier0d3da632016-09-03 00:11:33 +00001228#if __has_attribute(require_constant_initialization)
Logan Chien7b4845e2018-02-24 07:57:32 +00001229# define _LIBCPP_SAFE_STATIC __attribute__((__require_constant_initialization__))
Eric Fiselier0d3da632016-09-03 00:11:33 +00001230#else
Logan Chien7b4845e2018-02-24 07:57:32 +00001231# define _LIBCPP_SAFE_STATIC
Eric Fiselier0d3da632016-09-03 00:11:33 +00001232#endif
1233
Eric Fiseliera7a14ed2017-01-13 22:02:08 +00001234#if __has_attribute(diagnose_if) && !defined(_LIBCPP_DISABLE_ADDITIONAL_DIAGNOSTICS)
Logan Chien7b4845e2018-02-24 07:57:32 +00001235# define _LIBCPP_DIAGNOSE_WARNING(...) \
1236 __attribute__((diagnose_if(__VA_ARGS__, "warning")))
1237# define _LIBCPP_DIAGNOSE_ERROR(...) \
1238 __attribute__((diagnose_if(__VA_ARGS__, "error")))
Eric Fiseliera7a14ed2017-01-13 22:02:08 +00001239#else
Logan Chien7b4845e2018-02-24 07:57:32 +00001240# define _LIBCPP_DIAGNOSE_WARNING(...)
1241# define _LIBCPP_DIAGNOSE_ERROR(...)
Eric Fiseliera7a14ed2017-01-13 22:02:08 +00001242#endif
1243
Eric Fiselier4db80032017-05-05 20:32:26 +00001244// Use a function like macro to imply that it must be followed by a semicolon
Reid Kleckner75d4e002018-11-01 18:24:03 +00001245#if __cplusplus > 201402L && __has_cpp_attribute(fallthrough)
1246# define _LIBCPP_FALLTHROUGH() [[fallthrough]]
1247#elif __has_cpp_attribute(clang::fallthrough)
1248# define _LIBCPP_FALLTHROUGH() [[clang::fallthrough]]
Louis Dionne3e0c4332021-08-31 10:49:06 -04001249#elif __has_attribute(__fallthrough__)
Logan Chien7b4845e2018-02-24 07:57:32 +00001250# define _LIBCPP_FALLTHROUGH() __attribute__((__fallthrough__))
Eric Fiselier4db80032017-05-05 20:32:26 +00001251#else
Logan Chien7b4845e2018-02-24 07:57:32 +00001252# define _LIBCPP_FALLTHROUGH() ((void)0)
Eric Fiselier4db80032017-05-05 20:32:26 +00001253#endif
1254
Eric Fiselier4fc82a22019-06-12 02:03:31 +00001255#if __has_attribute(__nodebug__)
1256#define _LIBCPP_NODEBUG __attribute__((__nodebug__))
Eric Fiselier74ebee62019-06-08 01:31:19 +00001257#else
1258#define _LIBCPP_NODEBUG
1259#endif
1260
Amy Huang63f53b52021-03-15 14:20:49 -07001261#if __has_attribute(__standalone_debug__)
1262#define _LIBCPP_STANDALONE_DEBUG __attribute__((__standalone_debug__))
1263#else
1264#define _LIBCPP_STANDALONE_DEBUG
1265#endif
1266
Richard Smith256954d2020-11-11 17:12:18 -08001267#if __has_attribute(__preferred_name__)
1268#define _LIBCPP_PREFERRED_NAME(x) __attribute__((__preferred_name__(x)))
1269#else
1270#define _LIBCPP_PREFERRED_NAME(x)
1271#endif
1272
Louis Dionne89258142021-08-23 15:32:36 -04001273// We often repeat things just for handling wide characters in the library.
1274// When wide characters are disabled, it can be useful to have a quick way of
1275// disabling it without having to resort to #if-#endif, which has a larger
1276// impact on readability.
1277#if defined(_LIBCPP_HAS_NO_WIDE_CHARACTERS)
1278# define _LIBCPP_IF_WIDE_CHARACTERS(...)
1279#else
1280# define _LIBCPP_IF_WIDE_CHARACTERS(...) __VA_ARGS__
1281#endif
1282
Eric Fiseliere3cec5f2017-01-16 21:15:08 +00001283#if defined(_LIBCPP_ABI_MICROSOFT) && \
Logan Chien7b4845e2018-02-24 07:57:32 +00001284 (defined(_LIBCPP_COMPILER_MSVC) || __has_declspec_attribute(empty_bases))
1285# define _LIBCPP_DECLSPEC_EMPTY_BASES __declspec(empty_bases)
Eric Fiseliere3cec5f2017-01-16 21:15:08 +00001286#else
Logan Chien7b4845e2018-02-24 07:57:32 +00001287# define _LIBCPP_DECLSPEC_EMPTY_BASES
Eric Fiseliere3cec5f2017-01-16 21:15:08 +00001288#endif
1289
Eric Fiselierddd77792017-02-17 03:25:08 +00001290#if defined(_LIBCPP_ENABLE_CXX17_REMOVED_FEATURES)
Logan Chien7b4845e2018-02-24 07:57:32 +00001291#define _LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR
Logan Chien7b4845e2018-02-24 07:57:32 +00001292#define _LIBCPP_ENABLE_CXX17_REMOVED_BINDERS
Arthur O'Dwyera6b51072021-05-24 18:36:17 -04001293#define _LIBCPP_ENABLE_CXX17_REMOVED_RANDOM_SHUFFLE
1294#define _LIBCPP_ENABLE_CXX17_REMOVED_UNEXPECTED_FUNCTIONS
Eric Fiselierddd77792017-02-17 03:25:08 +00001295#endif // _LIBCPP_ENABLE_CXX17_REMOVED_FEATURES
1296
Arthur O'Dwyera6b51072021-05-24 18:36:17 -04001297#if defined(_LIBCPP_ENABLE_CXX20_REMOVED_FEATURES)
1298#define _LIBCPP_ENABLE_CXX20_REMOVED_ALLOCATOR_MEMBERS
Arthur O'Dwyerf5486c82021-05-25 14:34:18 -04001299#define _LIBCPP_ENABLE_CXX20_REMOVED_BINDER_TYPEDEFS
Arthur O'Dwyera6b51072021-05-24 18:36:17 -04001300#define _LIBCPP_ENABLE_CXX20_REMOVED_NEGATORS
1301#define _LIBCPP_ENABLE_CXX20_REMOVED_RAW_STORAGE_ITERATOR
wmbatf5b33762021-07-02 17:08:36 +00001302#define _LIBCPP_ENABLE_CXX20_REMOVED_TYPE_TRAITS
Arthur O'Dwyera6b51072021-05-24 18:36:17 -04001303#endif // _LIBCPP_ENABLE_CXX20_REMOVED_FEATURES
1304
Chuanqi Xu6fdf6192021-11-16 14:05:34 +08001305#if !defined(__cpp_impl_coroutine) || __cpp_impl_coroutine < 201902L
1306#define _LIBCPP_HAS_NO_CXX20_COROUTINES
Eric Fiselier40b66222017-05-26 01:52:59 +00001307#endif
1308
Eric Fiselierf4433a32017-05-31 22:07:49 +00001309#if defined(_LIBCPP_COMPILER_IBM)
1310#define _LIBCPP_HAS_NO_PRAGMA_PUSH_POP_MACRO
1311#endif
1312
1313#if defined(_LIBCPP_HAS_NO_PRAGMA_PUSH_POP_MACRO)
Logan Chien7b4845e2018-02-24 07:57:32 +00001314# define _LIBCPP_PUSH_MACROS
1315# define _LIBCPP_POP_MACROS
Eric Fiselierf4433a32017-05-31 22:07:49 +00001316#else
1317 // Don't warn about macro conflicts when we can restore them at the
1318 // end of the header.
Logan Chien7b4845e2018-02-24 07:57:32 +00001319# ifndef _LIBCPP_DISABLE_MACRO_CONFLICT_WARNINGS
1320# define _LIBCPP_DISABLE_MACRO_CONFLICT_WARNINGS
1321# endif
1322# if defined(_LIBCPP_COMPILER_MSVC)
1323# define _LIBCPP_PUSH_MACROS \
1324 __pragma(push_macro("min")) \
1325 __pragma(push_macro("max"))
1326# define _LIBCPP_POP_MACROS \
1327 __pragma(pop_macro("min")) \
1328 __pragma(pop_macro("max"))
1329# else
1330# define _LIBCPP_PUSH_MACROS \
1331 _Pragma("push_macro(\"min\")") \
1332 _Pragma("push_macro(\"max\")")
1333# define _LIBCPP_POP_MACROS \
1334 _Pragma("pop_macro(\"min\")") \
1335 _Pragma("pop_macro(\"max\")")
1336# endif
Eric Fiselierf4433a32017-05-31 22:07:49 +00001337#endif // defined(_LIBCPP_HAS_NO_PRAGMA_PUSH_POP_MACRO)
1338
Peter Collingbourne1aa99c52018-01-24 04:30:19 +00001339#ifndef _LIBCPP_NO_AUTO_LINK
Logan Chien7b4845e2018-02-24 07:57:32 +00001340# if defined(_LIBCPP_ABI_MICROSOFT) && !defined(_LIBCPP_BUILDING_LIBRARY)
Martin Storsjö57db41b2021-04-15 11:16:28 +03001341# if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS)
Logan Chien7b4845e2018-02-24 07:57:32 +00001342# pragma comment(lib, "c++.lib")
1343# else
1344# pragma comment(lib, "libc++.lib")
1345# endif
1346# endif // defined(_LIBCPP_ABI_MICROSOFT) && !defined(_LIBCPP_BUILDING_LIBRARY)
Peter Collingbourne1aa99c52018-01-24 04:30:19 +00001347#endif // _LIBCPP_NO_AUTO_LINK
Eric Fiselier911dcad2017-06-16 01:57:41 +00001348
Dan Albert9550df62019-09-16 19:26:41 +00001349// Configures the fopen close-on-exec mode character, if any. This string will
1350// be appended to any mode string used by fstream for fopen/fdopen.
1351//
1352// Not all platforms support this, but it helps avoid fd-leaks on platforms that
1353// do.
1354#if defined(__BIONIC__)
1355# define _LIBCPP_FOPEN_CLOEXEC_MODE "e"
1356#else
1357# define _LIBCPP_FOPEN_CLOEXEC_MODE
1358#endif
1359
Dan Albert073008c2020-03-12 11:16:30 -07001360// Support for _FILE_OFFSET_BITS=64 landed gradually in Android, so the full set
1361// of functions used in cstdio may not be available for low API levels when
1362// using 64-bit file offsets on LP32.
1363#if defined(__BIONIC__) && defined(__USE_FILE_OFFSET64) && __ANDROID_API__ < 24
1364#define _LIBCPP_HAS_NO_FGETPOS_FSETPOS
1365#endif
1366
Zbigniew Sarbinowski4536ef42020-11-20 14:46:21 -05001367#if __has_attribute(init_priority)
Louis Dionne1f14cea2021-02-03 16:25:06 -05001368 // TODO: Remove this once we drop support for building libc++ with old Clangs
1369# if (defined(_LIBCPP_CLANG_VER) && _LIBCPP_CLANG_VER < 1200) || \
1370 (defined(__apple_build_version__) && __apple_build_version__ < 13000000)
1371# define _LIBCPP_INIT_PRIORITY_MAX __attribute__((init_priority(101)))
1372# else
1373# define _LIBCPP_INIT_PRIORITY_MAX __attribute__((init_priority(100)))
1374# endif
Zbigniew Sarbinowski4536ef42020-11-20 14:46:21 -05001375#else
1376# define _LIBCPP_INIT_PRIORITY_MAX
1377#endif
1378
Arthur O'Dwyer4cbc3232021-03-05 20:13:35 -05001379#if defined(__GNUC__) || defined(__clang__)
Louis Dionnee1ad4572021-11-16 15:22:10 -05001380 // The attribute uses 1-based indices for ordinary and static member functions.
1381 // The attribute uses 2-based indices for non-static member functions.
1382# define _LIBCPP_ATTRIBUTE_FORMAT(archetype, format_string_index, first_format_arg_index) \
1383 __attribute__((__format__(archetype, format_string_index, first_format_arg_index)))
Arthur O'Dwyer4cbc3232021-03-05 20:13:35 -05001384#else
Louis Dionnee1ad4572021-11-16 15:22:10 -05001385# define _LIBCPP_ATTRIBUTE_FORMAT(archetype, format_string_index, first_format_arg_index) /* nothing */
Arthur O'Dwyer4cbc3232021-03-05 20:13:35 -05001386#endif
1387
Eric Fiselier911dcad2017-06-16 01:57:41 +00001388#endif // __cplusplus
1389
Eric Fiselier8020b6c2015-08-19 17:21:46 +00001390#endif // _LIBCPP_CONFIG