]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/libstdc++-v3/contrib/libstdc++-v3-4.6/include/bits/c++config
update
[l4.git] / l4 / pkg / libstdc++-v3 / contrib / libstdc++-v3-4.6 / include / bits / c++config
1 // Predefined symbols and macros -*- C++ -*-
2
3 // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
4 // 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library.  This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 3, or (at your option)
10 // any later version.
11
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16
17 // Under Section 7 of GPL version 3, you are granted additional
18 // permissions described in the GCC Runtime Library Exception, version
19 // 3.1, as published by the Free Software Foundation.
20
21 // You should have received a copy of the GNU General Public License and
22 // a copy of the GCC Runtime Library Exception along with this program;
23 // see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
24 // <http://www.gnu.org/licenses/>.
25
26 /** @file bits/c++config.h
27  *  This is an internal header file, included by other library headers.
28  *  Do not attempt to use it directly. @headername{iosfwd}
29  */
30
31 #ifndef _GLIBCXX_CXX_CONFIG_H
32 #define _GLIBCXX_CXX_CONFIG_H 1
33
34 // The current version of the C++ library in compressed ISO date format.
35 #define __GLIBCXX__
36
37 // Macros for various attributes.
38 //   _GLIBCXX_PURE
39 //   _GLIBCXX_CONST
40 //   _GLIBCXX_NORETURN
41 //   _GLIBCXX_NOTHROW
42 //   _GLIBCXX_VISIBILITY
43 #ifndef _GLIBCXX_PURE
44 # define _GLIBCXX_PURE __attribute__ ((__pure__))
45 #endif
46
47 #ifndef _GLIBCXX_CONST
48 # define _GLIBCXX_CONST __attribute__ ((__const__))
49 #endif
50
51 #ifndef _GLIBCXX_NORETURN
52 # define _GLIBCXX_NORETURN __attribute__ ((__noreturn__))
53 #endif
54
55 #ifndef _GLIBCXX_NOTHROW
56 # ifdef __cplusplus
57 #  define _GLIBCXX_NOTHROW throw()
58 # else
59 #  define _GLIBCXX_NOTHROW __attribute__((__nothrow__))
60 # endif
61 #endif
62
63 // Macros for visibility attributes.
64 //   _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
65 //   _GLIBCXX_VISIBILITY
66 #define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
67
68 #if _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
69 # define _GLIBCXX_VISIBILITY(V) __attribute__ ((__visibility__ (#V)))
70 #else
71 // If this is not supplied by the OS-specific or CPU-specific
72 // headers included below, it will be defined to an empty default.
73 # define _GLIBCXX_VISIBILITY(V) _GLIBCXX_PSEUDO_VISIBILITY(V)
74 #endif
75
76 // Macros for deprecated attributes.
77 //   _GLIBCXX_USE_DEPRECATED
78 //   _GLIBCXX_DEPRECATED
79 #ifndef _GLIBCXX_USE_DEPRECATED
80 # define _GLIBCXX_USE_DEPRECATED 1
81 #endif
82
83 #if defined(__DEPRECATED) && defined(__GXX_EXPERIMENTAL_CXX0X__)
84 # define _GLIBCXX_DEPRECATED __attribute__ ((__deprecated__))
85 #else
86 # define _GLIBCXX_DEPRECATED
87 #endif
88
89 #if __cplusplus
90
91 // Macro for constexpr, to support in mixed 03/0x mode.
92 #ifndef _GLIBCXX_CONSTEXPR
93 # ifdef __GXX_EXPERIMENTAL_CXX0X__
94 #  define _GLIBCXX_CONSTEXPR constexpr
95 #  define _GLIBCXX_USE_CONSTEXPR constexpr
96 # else
97 #  define _GLIBCXX_CONSTEXPR
98 #  define _GLIBCXX_USE_CONSTEXPR const
99 # endif
100 #endif
101
102 // Macro for extern template, ie controling template linkage via use
103 // of extern keyword on template declaration. As documented in the g++
104 // manual, it inhibits all implicit instantiations and is used
105 // throughout the library to avoid multiple weak definitions for
106 // required types that are already explicitly instantiated in the
107 // library binary. This substantially reduces the binary size of
108 // resulting executables.
109 // Special case: _GLIBCXX_EXTERN_TEMPLATE == -1 disallows extern
110 // templates only in basic_string, thus activating its debug-mode
111 // checks even at -O0.
112 #define _GLIBCXX_EXTERN_TEMPLATE
113
114 /*
115   Outline of libstdc++ namespaces.
116
117   namespace std
118   {
119     namespace __debug { }
120     namespace __parallel { }
121     namespace __profile { }
122     namespace __cxx1998 { }
123
124     namespace __detail { }
125
126     namespace rel_ops { }
127
128     namespace tr1
129     {
130       namespace placeholders { }
131       namespace regex_constants { }
132       namespace __detail { }
133     }
134
135     namespace decimal { }
136
137     namespace chrono { }
138     namespace placeholders { }
139     namespace regex_constants { }
140     namespace this_thread { }
141   }
142
143   namespace abi { }
144
145   namespace __gnu_cxx
146   {
147     namespace __detail { }
148   }
149
150   For full details see:
151   http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/namespaces.html
152 */
153 namespace std
154 {
155   typedef __SIZE_TYPE__         size_t;
156   typedef __PTRDIFF_TYPE__      ptrdiff_t;
157
158 #ifdef __GXX_EXPERIMENTAL_CXX0X__
159   typedef decltype(nullptr)     nullptr_t;
160 #endif
161 }
162
163
164 // Defined if inline namespaces are used for versioning.
165 #define _GLIBCXX_INLINE_VERSION
166
167 // Inline namespace for symbol versioning.
168 #if _GLIBCXX_INLINE_VERSION
169 namespace std
170 {
171   inline namespace _6 { }
172
173   namespace rel_ops { inline namespace _6 { } }
174
175   namespace tr1
176   {
177     inline namespace _6 { }
178     namespace placeholders { inline namespace _6 { } }
179     namespace regex_constants { inline namespace _6 { } }
180     namespace __detail { inline namespace _6 { } }
181   }
182
183   namespace decimal { inline namespace _6 { } }
184
185   namespace chrono { inline namespace _6 { } }
186   namespace placeholders { inline namespace _6 { } }
187   namespace regex_constants { inline namespace _6 { } }
188   namespace this_thread { inline namespace _6 { } }
189
190   namespace __detail { inline namespace _6 { } }
191   namespace __regex { inline namespace _6 { } }
192 }
193
194 namespace __gnu_cxx
195 {
196   inline namespace _6 { }
197   namespace __detail { inline namespace _6 { } }
198 }
199 # define _GLIBCXX_BEGIN_NAMESPACE_VERSION namespace _6 {
200 # define _GLIBCXX_END_NAMESPACE_VERSION }
201 #else
202 # define _GLIBCXX_BEGIN_NAMESPACE_VERSION
203 # define _GLIBCXX_END_NAMESPACE_VERSION
204 #endif
205
206
207 // Inline namespaces for special modes: debug, parallel, profile.
208 #if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PARALLEL) \
209     || defined(_GLIBCXX_PROFILE)
210 namespace std
211 {
212   // Non-inline namespace for components replaced by alternates in active mode.
213   namespace __cxx1998
214   {
215 #if _GLIBCXX_INLINE_VERSION
216  inline namespace _6 { }
217 #endif
218   }
219
220   // Inline namespace for debug mode.
221 # ifdef _GLIBCXX_DEBUG
222   inline namespace __debug { }
223 # endif
224
225   // Inline namespaces for parallel mode.
226 # ifdef _GLIBCXX_PARALLEL
227   inline namespace __parallel { }
228 # endif
229
230   // Inline namespaces for profile mode
231 # ifdef _GLIBCXX_PROFILE
232   inline namespace __profile { }
233 # endif
234 }
235
236 // Check for invalid usage and unsupported mixed-mode use.
237 # if defined(_GLIBCXX_DEBUG) && defined(_GLIBCXX_PARALLEL)
238 #  error illegal use of multiple inlined namespaces
239 # endif
240 # if defined(_GLIBCXX_PROFILE) && defined(_GLIBCXX_DEBUG)
241 #  error illegal use of multiple inlined namespaces
242 # endif
243 # if defined(_GLIBCXX_PROFILE) && defined(_GLIBCXX_PARALLEL)
244 #  error illegal use of multiple inlined namespaces
245 # endif
246
247 // Check for invalid use due to lack for weak symbols.
248 # if __NO_INLINE__ && !__GXX_WEAK__
249 #  warning currently using inlined namespace mode which may fail \
250    without inlining due to lack of weak symbols
251 # endif
252 #endif
253
254 // Macros for namespace scope. Either namespace std:: or the name
255 // of some nested namespace within it corresponding to the active mode.
256 // _GLIBCXX_STD_A
257 // _GLIBCXX_STD_C
258 //
259 // Macros for opening/closing conditional namespaces.
260 // _GLIBCXX_BEGIN_NAMESPACE_ALGO
261 // _GLIBCXX_END_NAMESPACE_ALGO
262 // _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
263 // _GLIBCXX_END_NAMESPACE_CONTAINER
264 #if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PROFILE)
265 # define _GLIBCXX_STD_C __cxx1998
266 # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER \
267          namespace _GLIBCXX_STD_C { _GLIBCXX_BEGIN_NAMESPACE_VERSION
268 # define _GLIBCXX_END_NAMESPACE_CONTAINER \
269          } _GLIBCXX_END_NAMESPACE_VERSION
270 # undef _GLIBCXX_EXTERN_TEMPLATE
271 # define _GLIBCXX_EXTERN_TEMPLATE -1
272 #endif
273
274 #ifdef _GLIBCXX_PARALLEL
275 # define _GLIBCXX_STD_A __cxx1998
276 # define _GLIBCXX_BEGIN_NAMESPACE_ALGO \
277          namespace _GLIBCXX_STD_A { _GLIBCXX_BEGIN_NAMESPACE_VERSION
278 # define _GLIBCXX_END_NAMESPACE_ALGO \
279          } _GLIBCXX_END_NAMESPACE_VERSION
280 #endif
281
282 #ifndef _GLIBCXX_STD_A
283 # define _GLIBCXX_STD_A std
284 #endif
285
286 #ifndef _GLIBCXX_STD_C
287 # define _GLIBCXX_STD_C std
288 #endif
289
290 #ifndef _GLIBCXX_BEGIN_NAMESPACE_ALGO
291 # define _GLIBCXX_BEGIN_NAMESPACE_ALGO
292 #endif
293
294 #ifndef _GLIBCXX_END_NAMESPACE_ALGO
295 # define _GLIBCXX_END_NAMESPACE_ALGO
296 #endif
297
298 #ifndef _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
299 # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
300 #endif
301
302 #ifndef _GLIBCXX_END_NAMESPACE_CONTAINER
303 # define _GLIBCXX_END_NAMESPACE_CONTAINER
304 #endif
305
306 // GLIBCXX_ABI Deprecated
307 // Define if compatibility should be provided for -mlong-double-64.
308 #undef _GLIBCXX_LONG_DOUBLE_COMPAT
309
310 // Inline namespace for long double 128 mode.
311 #if defined _GLIBCXX_LONG_DOUBLE_COMPAT && defined __LONG_DOUBLE_128__
312 namespace std
313 {
314   inline namespace __gnu_cxx_ldbl128 { }
315 }
316 # define _GLIBCXX_NAMESPACE_LDBL __gnu_cxx_ldbl128::
317 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL namespace __gnu_cxx_ldbl128 {
318 # define _GLIBCXX_END_NAMESPACE_LDBL }
319 #else
320 # define _GLIBCXX_NAMESPACE_LDBL
321 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL
322 # define _GLIBCXX_END_NAMESPACE_LDBL
323 #endif
324
325 // Assert.
326 #if !defined(_GLIBCXX_DEBUG) && !defined(_GLIBCXX_PARALLEL)
327 # define __glibcxx_assert(_Condition)
328 #else
329 namespace std
330 {
331   // Avoid the use of assert, because we're trying to keep the <cassert>
332   // include out of the mix.
333   inline void
334   __replacement_assert(const char* __file, int __line,
335                        const char* __function, const char* __condition)
336   {
337     __builtin_printf("%s:%d: %s: Assertion '%s' failed.\n", __file, __line,
338                      __function, __condition);
339     __builtin_abort();
340   }
341 }
342 #define __glibcxx_assert(_Condition)                                     \
343   do                                                                     \
344   {                                                                      \
345     if (! (_Condition))                                                  \
346       std::__replacement_assert(__FILE__, __LINE__, __PRETTY_FUNCTION__, \
347                                 #_Condition);                            \
348   } while (false)
349 #endif
350
351 // Macros for race detectors.
352 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A) and
353 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A) should be used to explain
354 // atomic (lock-free) synchronization to race detectors:
355 // the race detector will infer a happens-before arc from the former to the
356 // latter when they share the same argument pointer.
357 //
358 // The most frequent use case for these macros (and the only case in the
359 // current implementation of the library) is atomic reference counting:
360 //   void _M_remove_reference()
361 //   {
362 //     _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&this->_M_refcount);
363 //     if (__gnu_cxx::__exchange_and_add_dispatch(&this->_M_refcount, -1) <= 0)
364 //       {
365 //         _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&this->_M_refcount);
366 //         _M_destroy(__a);
367 //       }
368 //   }
369 // The annotations in this example tell the race detector that all memory
370 // accesses occurred when the refcount was positive do not race with
371 // memory accesses which occurred after the refcount became zero.
372 #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE
373 # define  _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A)
374 #endif
375 #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER
376 # define  _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A)
377 #endif
378
379 // Macros for C linkage: define extern "C" linkage only when using C++.
380 # define _GLIBCXX_BEGIN_EXTERN_C extern "C" {
381 # define _GLIBCXX_END_EXTERN_C }
382
383 #else // !__cplusplus
384 # define _GLIBCXX_BEGIN_EXTERN_C
385 # define _GLIBCXX_END_EXTERN_C
386 #endif
387
388
389 // First includes.
390
391 // Pick up any OS-specific definitions.
392 #include <bits/os_defines.h>
393
394 // Pick up any CPU-specific definitions.
395 #include <bits/cpu_defines.h>
396
397 // If platform uses neither visibility nor psuedo-visibility,
398 // specify empty default for namespace annotation macros.
399 #ifndef _GLIBCXX_PSEUDO_VISIBILITY
400 # define _GLIBCXX_PSEUDO_VISIBILITY(V)
401 #endif
402
403 // Certain function definitions that are meant to be overridable from
404 // user code are decorated with this macro.  For some targets, this
405 // macro causes these definitions to be weak.
406 #ifndef _GLIBCXX_WEAK_DEFINITION
407 # define _GLIBCXX_WEAK_DEFINITION
408 #endif
409
410
411 // The remainder of the prewritten config is automatic; all the
412 // user hooks are listed above.
413
414 // Create a boolean flag to be used to determine if --fast-math is set.
415 #ifdef __FAST_MATH__
416 # define _GLIBCXX_FAST_MATH 1
417 #else
418 # define _GLIBCXX_FAST_MATH 0
419 #endif
420
421 // This marks string literals in header files to be extracted for eventual
422 // translation.  It is primarily used for messages in thrown exceptions; see
423 // src/functexcept.cc.  We use __N because the more traditional _N is used
424 // for something else under certain OSes (see BADNAMES).
425 #define __N(msgid)     (msgid)
426
427 // For example, <windows.h> is known to #define min and max as macros...
428 #undef min
429 #undef max
430
431 // End of prewritten config; the settings discovered at configure time follow.