1 // Predefined symbols and macros -*- C++ -*-
3 // Copyright (C) 1997-2017 Free Software Foundation, Inc.
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
25 /** @file bits/c++config.h
26 * This is an internal header file, included by other library headers.
27 * Do not attempt to use it directly. @headername{iosfwd}
30 #ifndef _GLIBCXX_CXX_CONFIG_H
31 #define _GLIBCXX_CXX_CONFIG_H 1
33 // The major release number for the GCC release the C++ library belongs to.
34 #define _GLIBCXX_RELEASE
36 // The datestamp of the C++ library in compressed ISO date format.
39 // Macros for various attributes.
44 // _GLIBCXX_VISIBILITY
46 # define _GLIBCXX_PURE __attribute__ ((__pure__))
49 #ifndef _GLIBCXX_CONST
50 # define _GLIBCXX_CONST __attribute__ ((__const__))
53 #ifndef _GLIBCXX_NORETURN
54 # define _GLIBCXX_NORETURN __attribute__ ((__noreturn__))
58 #ifndef _GLIBCXX_NOTHROW
60 # define _GLIBCXX_NOTHROW __attribute__((__nothrow__))
64 // Macros for visibility attributes.
65 // _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
66 // _GLIBCXX_VISIBILITY
67 #define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
69 #if _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
70 # define _GLIBCXX_VISIBILITY(V) __attribute__ ((__visibility__ (#V)))
72 // If this is not supplied by the OS-specific or CPU-specific
73 // headers included below, it will be defined to an empty default.
74 # define _GLIBCXX_VISIBILITY(V) _GLIBCXX_PSEUDO_VISIBILITY(V)
77 // Macros for deprecated attributes.
78 // _GLIBCXX_USE_DEPRECATED
79 // _GLIBCXX_DEPRECATED
80 // _GLIBCXX17_DEPRECATED
81 #ifndef _GLIBCXX_USE_DEPRECATED
82 # define _GLIBCXX_USE_DEPRECATED 1
85 #if defined(__DEPRECATED) && (__cplusplus >= 201103L)
86 # define _GLIBCXX_DEPRECATED __attribute__ ((__deprecated__))
88 # define _GLIBCXX_DEPRECATED
91 #if defined(__DEPRECATED) && (__cplusplus >= 201703L)
92 # define _GLIBCXX17_DEPRECATED [[__deprecated__]]
94 # define _GLIBCXX17_DEPRECATED
97 // Macros for ABI tag attributes.
98 #ifndef _GLIBCXX_ABI_TAG_CXX11
99 # define _GLIBCXX_ABI_TAG_CXX11 __attribute ((__abi_tag__ ("cxx11")))
105 // Macro for constexpr, to support in mixed 03/0x mode.
106 #ifndef _GLIBCXX_CONSTEXPR
107 # if __cplusplus >= 201103L
108 # define _GLIBCXX_CONSTEXPR constexpr
109 # define _GLIBCXX_USE_CONSTEXPR constexpr
111 # define _GLIBCXX_CONSTEXPR
112 # define _GLIBCXX_USE_CONSTEXPR const
116 #ifndef _GLIBCXX14_CONSTEXPR
117 # if __cplusplus >= 201402L
118 # define _GLIBCXX14_CONSTEXPR constexpr
120 # define _GLIBCXX14_CONSTEXPR
124 #ifndef _GLIBCXX17_CONSTEXPR
125 # if __cplusplus > 201402L
126 # define _GLIBCXX17_CONSTEXPR constexpr
128 # define _GLIBCXX17_CONSTEXPR
132 #ifndef _GLIBCXX17_INLINE
133 # if __cplusplus > 201402L
134 # define _GLIBCXX17_INLINE inline
136 # define _GLIBCXX17_INLINE
140 // Macro for noexcept, to support in mixed 03/0x mode.
141 #ifndef _GLIBCXX_NOEXCEPT
142 # if __cplusplus >= 201103L
143 # define _GLIBCXX_NOEXCEPT noexcept
144 # define _GLIBCXX_NOEXCEPT_IF(_COND) noexcept(_COND)
145 # define _GLIBCXX_USE_NOEXCEPT noexcept
146 # define _GLIBCXX_THROW(_EXC)
148 # define _GLIBCXX_NOEXCEPT
149 # define _GLIBCXX_NOEXCEPT_IF(_COND)
150 # define _GLIBCXX_USE_NOEXCEPT throw()
151 # define _GLIBCXX_THROW(_EXC) throw(_EXC)
155 #ifndef _GLIBCXX_NOTHROW
156 # define _GLIBCXX_NOTHROW _GLIBCXX_USE_NOEXCEPT
159 #ifndef _GLIBCXX_THROW_OR_ABORT
160 # if __cpp_exceptions
161 # define _GLIBCXX_THROW_OR_ABORT(_EXC) (throw (_EXC))
163 # define _GLIBCXX_THROW_OR_ABORT(_EXC) (__builtin_abort())
167 #if __cpp_noexcept_function_type
168 #define _GLIBCXX_NOEXCEPT_PARM , bool _NE
169 #define _GLIBCXX_NOEXCEPT_QUAL noexcept (_NE)
171 #define _GLIBCXX_NOEXCEPT_PARM
172 #define _GLIBCXX_NOEXCEPT_QUAL
175 // Macro for extern template, ie controlling template linkage via use
176 // of extern keyword on template declaration. As documented in the g++
177 // manual, it inhibits all implicit instantiations and is used
178 // throughout the library to avoid multiple weak definitions for
179 // required types that are already explicitly instantiated in the
180 // library binary. This substantially reduces the binary size of
181 // resulting executables.
182 // Special case: _GLIBCXX_EXTERN_TEMPLATE == -1 disallows extern
183 // templates only in basic_string, thus activating its debug-mode
184 // checks even at -O0.
185 #define _GLIBCXX_EXTERN_TEMPLATE
188 Outline of libstdc++ namespaces.
192 namespace __debug { }
193 namespace __parallel { }
194 namespace __profile { }
195 namespace __cxx1998 { }
198 namespace __variant { } // C++17
201 namespace rel_ops { }
205 namespace placeholders { }
206 namespace regex_constants { }
207 namespace __detail { }
212 namespace decimal { }
214 namespace chrono { } // C++11
215 namespace placeholders { } // C++11
216 namespace regex_constants { } // C++11
217 namespace this_thread { } // C++11
218 inline namespace literals { // C++14
219 inline namespace chrono_literals { } // C++14
220 inline namespace complex_literals { } // C++14
221 inline namespace string_literals { } // C++14
222 inline namespace string_view_literals { } // C++17
230 namespace __detail { }
233 For full details see:
234 http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/namespaces.html
238 typedef __SIZE_TYPE__ size_t;
239 typedef __PTRDIFF_TYPE__ ptrdiff_t;
241 #if __cplusplus >= 201103L
242 typedef decltype(nullptr) nullptr_t;
246 #define _GLIBCXX_USE_DUAL_ABI
248 #if ! _GLIBCXX_USE_DUAL_ABI
249 // Ignore any pre-defined value of _GLIBCXX_USE_CXX11_ABI
250 # undef _GLIBCXX_USE_CXX11_ABI
253 #ifndef _GLIBCXX_USE_CXX11_ABI
254 #define _GLIBCXX_USE_CXX11_ABI
257 #if _GLIBCXX_USE_CXX11_ABI
260 inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { }
264 inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { }
266 # define _GLIBCXX_NAMESPACE_CXX11 __cxx11::
267 # define _GLIBCXX_BEGIN_NAMESPACE_CXX11 namespace __cxx11 {
268 # define _GLIBCXX_END_NAMESPACE_CXX11 }
269 # define _GLIBCXX_DEFAULT_ABI_TAG _GLIBCXX_ABI_TAG_CXX11
271 # define _GLIBCXX_NAMESPACE_CXX11
272 # define _GLIBCXX_BEGIN_NAMESPACE_CXX11
273 # define _GLIBCXX_END_NAMESPACE_CXX11
274 # define _GLIBCXX_DEFAULT_ABI_TAG
277 // Defined if inline namespaces are used for versioning.
278 #define _GLIBCXX_INLINE_VERSION
280 // Inline namespace for symbol versioning.
281 #if _GLIBCXX_INLINE_VERSION
282 # define _GLIBCXX_BEGIN_NAMESPACE_VERSION namespace __8 {
283 # define _GLIBCXX_END_NAMESPACE_VERSION }
287 inline _GLIBCXX_BEGIN_NAMESPACE_VERSION
288 #if __cplusplus >= 201402L
289 inline namespace literals {
290 inline namespace chrono_literals { }
291 inline namespace complex_literals { }
292 inline namespace string_literals { }
293 #if __cplusplus > 201402L
294 inline namespace string_view_literals { }
298 _GLIBCXX_END_NAMESPACE_VERSION
303 inline _GLIBCXX_BEGIN_NAMESPACE_VERSION
304 _GLIBCXX_END_NAMESPACE_VERSION
308 # define _GLIBCXX_BEGIN_NAMESPACE_VERSION
309 # define _GLIBCXX_END_NAMESPACE_VERSION
312 // Inline namespaces for special modes: debug, parallel, profile.
313 #if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PARALLEL) \
314 || defined(_GLIBCXX_PROFILE)
317 _GLIBCXX_BEGIN_NAMESPACE_VERSION
319 // Non-inline namespace for components replaced by alternates in active mode.
322 # if _GLIBCXX_USE_CXX11_ABI
323 inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { }
327 _GLIBCXX_END_NAMESPACE_VERSION
329 // Inline namespace for debug mode.
330 # ifdef _GLIBCXX_DEBUG
331 inline namespace __debug { }
334 // Inline namespaces for parallel mode.
335 # ifdef _GLIBCXX_PARALLEL
336 inline namespace __parallel { }
339 // Inline namespaces for profile mode
340 # ifdef _GLIBCXX_PROFILE
341 inline namespace __profile { }
345 // Check for invalid usage and unsupported mixed-mode use.
346 # if defined(_GLIBCXX_DEBUG) && defined(_GLIBCXX_PARALLEL)
347 # error illegal use of multiple inlined namespaces
349 # if defined(_GLIBCXX_PROFILE) && defined(_GLIBCXX_DEBUG)
350 # error illegal use of multiple inlined namespaces
352 # if defined(_GLIBCXX_PROFILE) && defined(_GLIBCXX_PARALLEL)
353 # error illegal use of multiple inlined namespaces
356 // Check for invalid use due to lack for weak symbols.
357 # if __NO_INLINE__ && !__GXX_WEAK__
358 # warning currently using inlined namespace mode which may fail \
359 without inlining due to lack of weak symbols
363 // Macros for namespace scope. Either namespace std:: or the name
364 // of some nested namespace within it corresponding to the active mode.
368 // Macros for opening/closing conditional namespaces.
369 // _GLIBCXX_BEGIN_NAMESPACE_ALGO
370 // _GLIBCXX_END_NAMESPACE_ALGO
371 // _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
372 // _GLIBCXX_END_NAMESPACE_CONTAINER
373 #if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PROFILE)
374 # define _GLIBCXX_STD_C __cxx1998
375 # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER \
376 namespace _GLIBCXX_STD_C {
377 # define _GLIBCXX_END_NAMESPACE_CONTAINER }
379 # define _GLIBCXX_STD_C std
380 # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
381 # define _GLIBCXX_END_NAMESPACE_CONTAINER
384 #ifdef _GLIBCXX_PARALLEL
385 # define _GLIBCXX_STD_A __cxx1998
386 # define _GLIBCXX_BEGIN_NAMESPACE_ALGO \
387 namespace _GLIBCXX_STD_A {
388 # define _GLIBCXX_END_NAMESPACE_ALGO }
390 # define _GLIBCXX_STD_A std
391 # define _GLIBCXX_BEGIN_NAMESPACE_ALGO
392 # define _GLIBCXX_END_NAMESPACE_ALGO
395 // GLIBCXX_ABI Deprecated
396 // Define if compatibility should be provided for -mlong-double-64.
397 #undef _GLIBCXX_LONG_DOUBLE_COMPAT
399 // Inline namespace for long double 128 mode.
400 #if defined _GLIBCXX_LONG_DOUBLE_COMPAT && defined __LONG_DOUBLE_128__
403 inline namespace __gnu_cxx_ldbl128 { }
405 # define _GLIBCXX_NAMESPACE_LDBL __gnu_cxx_ldbl128::
406 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL namespace __gnu_cxx_ldbl128 {
407 # define _GLIBCXX_END_NAMESPACE_LDBL }
409 # define _GLIBCXX_NAMESPACE_LDBL
410 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL
411 # define _GLIBCXX_END_NAMESPACE_LDBL
413 #if _GLIBCXX_USE_CXX11_ABI
414 # define _GLIBCXX_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_NAMESPACE_CXX11
415 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_BEGIN_NAMESPACE_CXX11
416 # define _GLIBCXX_END_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_END_NAMESPACE_CXX11
418 # define _GLIBCXX_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_NAMESPACE_LDBL
419 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_BEGIN_NAMESPACE_LDBL
420 # define _GLIBCXX_END_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_END_NAMESPACE_LDBL
423 // Debug Mode implies checking assertions.
424 #if defined(_GLIBCXX_DEBUG) && !defined(_GLIBCXX_ASSERTIONS)
425 # define _GLIBCXX_ASSERTIONS 1
428 // Disable std::string explicit instantiation declarations in order to assert.
429 #ifdef _GLIBCXX_ASSERTIONS
430 # undef _GLIBCXX_EXTERN_TEMPLATE
431 # define _GLIBCXX_EXTERN_TEMPLATE -1
435 #if defined(_GLIBCXX_ASSERTIONS) \
436 || defined(_GLIBCXX_PARALLEL) || defined(_GLIBCXX_PARALLEL_ASSERTIONS)
439 // Avoid the use of assert, because we're trying to keep the <cassert>
440 // include out of the mix.
442 __replacement_assert(const char* __file, int __line,
443 const char* __function, const char* __condition)
445 __builtin_printf("%s:%d: %s: Assertion '%s' failed.\n", __file, __line,
446 __function, __condition);
450 #define __glibcxx_assert_impl(_Condition) \
453 if (! (_Condition)) \
454 std::__replacement_assert(__FILE__, __LINE__, __PRETTY_FUNCTION__, \
459 #if defined(_GLIBCXX_ASSERTIONS)
460 # define __glibcxx_assert(_Condition) __glibcxx_assert_impl(_Condition)
462 # define __glibcxx_assert(_Condition)
465 // Macros for race detectors.
466 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A) and
467 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A) should be used to explain
468 // atomic (lock-free) synchronization to race detectors:
469 // the race detector will infer a happens-before arc from the former to the
470 // latter when they share the same argument pointer.
472 // The most frequent use case for these macros (and the only case in the
473 // current implementation of the library) is atomic reference counting:
474 // void _M_remove_reference()
476 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&this->_M_refcount);
477 // if (__gnu_cxx::__exchange_and_add_dispatch(&this->_M_refcount, -1) <= 0)
479 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&this->_M_refcount);
483 // The annotations in this example tell the race detector that all memory
484 // accesses occurred when the refcount was positive do not race with
485 // memory accesses which occurred after the refcount became zero.
486 #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE
487 # define _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A)
489 #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER
490 # define _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A)
493 // Macros for C linkage: define extern "C" linkage only when using C++.
494 # define _GLIBCXX_BEGIN_EXTERN_C extern "C" {
495 # define _GLIBCXX_END_EXTERN_C }
497 #define _GLIBCXX_USE_ALLOCATOR_NEW
499 #else // !__cplusplus
500 # define _GLIBCXX_BEGIN_EXTERN_C
501 # define _GLIBCXX_END_EXTERN_C
507 // Pick up any OS-specific definitions.
508 #include <bits/os_defines.h>
510 // Pick up any CPU-specific definitions.
511 #include <bits/cpu_defines.h>
513 // If platform uses neither visibility nor psuedo-visibility,
514 // specify empty default for namespace annotation macros.
515 #ifndef _GLIBCXX_PSEUDO_VISIBILITY
516 # define _GLIBCXX_PSEUDO_VISIBILITY(V)
519 // Certain function definitions that are meant to be overridable from
520 // user code are decorated with this macro. For some targets, this
521 // macro causes these definitions to be weak.
522 #ifndef _GLIBCXX_WEAK_DEFINITION
523 # define _GLIBCXX_WEAK_DEFINITION
526 // By default, we assume that __GXX_WEAK__ also means that there is support
527 // for declaring functions as weak while not defining such functions. This
528 // allows for referring to functions provided by other libraries (e.g.,
529 // libitm) without depending on them if the respective features are not used.
530 #ifndef _GLIBCXX_USE_WEAK_REF
531 # define _GLIBCXX_USE_WEAK_REF __GXX_WEAK__
534 // Conditionally enable annotations for the Transactional Memory TS on C++11.
535 // Most of the following conditions are due to limitations in the current
537 #if __cplusplus >= 201103L && _GLIBCXX_USE_CXX11_ABI \
538 && _GLIBCXX_USE_DUAL_ABI && __cpp_transactional_memory >= 201505L \
539 && !_GLIBCXX_FULLY_DYNAMIC_STRING && _GLIBCXX_USE_WEAK_REF \
540 && _GLIBCXX_USE_ALLOCATOR_NEW
541 #define _GLIBCXX_TXN_SAFE transaction_safe
542 #define _GLIBCXX_TXN_SAFE_DYN transaction_safe_dynamic
544 #define _GLIBCXX_TXN_SAFE
545 #define _GLIBCXX_TXN_SAFE_DYN
548 #if __cplusplus > 201402L
549 // In C++17 mathematical special functions are in namespace std.
550 # define _GLIBCXX_USE_STD_SPEC_FUNCS 1
551 #elif __cplusplus >= 201103L && __STDCPP_WANT_MATH_SPEC_FUNCS__ != 0
552 // For C++11 and C++14 they are in namespace std when requested.
553 # define _GLIBCXX_USE_STD_SPEC_FUNCS 1
556 // The remainder of the prewritten config is automatic; all the
557 // user hooks are listed above.
559 // Create a boolean flag to be used to determine if --fast-math is set.
561 # define _GLIBCXX_FAST_MATH 1
563 # define _GLIBCXX_FAST_MATH 0
566 // This marks string literals in header files to be extracted for eventual
567 // translation. It is primarily used for messages in thrown exceptions; see
568 // src/functexcept.cc. We use __N because the more traditional _N is used
569 // for something else under certain OSes (see BADNAMES).
570 #define __N(msgid) (msgid)
572 // For example, <windows.h> is known to #define min and max as macros...
576 // N.B. these _GLIBCXX_USE_C99_XXX macros are defined unconditionally
577 // so they should be tested with #if not with #ifdef.
578 #if __cplusplus >= 201103L
579 # ifndef _GLIBCXX_USE_C99_MATH
580 # define _GLIBCXX_USE_C99_MATH _GLIBCXX11_USE_C99_MATH
582 # ifndef _GLIBCXX_USE_C99_COMPLEX
583 # define _GLIBCXX_USE_C99_COMPLEX _GLIBCXX11_USE_C99_COMPLEX
585 # ifndef _GLIBCXX_USE_C99_STDIO
586 # define _GLIBCXX_USE_C99_STDIO _GLIBCXX11_USE_C99_STDIO
588 # ifndef _GLIBCXX_USE_C99_STDLIB
589 # define _GLIBCXX_USE_C99_STDLIB _GLIBCXX11_USE_C99_STDLIB
591 # ifndef _GLIBCXX_USE_C99_WCHAR
592 # define _GLIBCXX_USE_C99_WCHAR _GLIBCXX11_USE_C99_WCHAR
595 # ifndef _GLIBCXX_USE_C99_MATH
596 # define _GLIBCXX_USE_C99_MATH _GLIBCXX98_USE_C99_MATH
598 # ifndef _GLIBCXX_USE_C99_COMPLEX
599 # define _GLIBCXX_USE_C99_COMPLEX _GLIBCXX98_USE_C99_COMPLEX
601 # ifndef _GLIBCXX_USE_C99_STDIO
602 # define _GLIBCXX_USE_C99_STDIO _GLIBCXX98_USE_C99_STDIO
604 # ifndef _GLIBCXX_USE_C99_STDLIB
605 # define _GLIBCXX_USE_C99_STDLIB _GLIBCXX98_USE_C99_STDLIB
607 # ifndef _GLIBCXX_USE_C99_WCHAR
608 # define _GLIBCXX_USE_C99_WCHAR _GLIBCXX98_USE_C99_WCHAR
612 // End of prewritten config; the settings discovered at configure time follow.