1 /* Define builtin-in macros for the C family front ends.
2 Copyright (C) 2002-2015 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
22 #include "coretypes.h"
27 #include "stor-layout.h"
28 #include "stringpool.h"
33 #include "output.h" /* For user_label_prefix. */
34 #include "debug.h" /* For dwarf2out_do_cfi_asm. */
35 #include "tm_p.h" /* For TARGET_CPU_CPP_BUILTINS & friends. */
37 #include "common/common-target.h"
38 #include "cpp-id-data.h"
39 #include "cppbuiltin.h"
41 #ifndef TARGET_OS_CPP_BUILTINS
42 # define TARGET_OS_CPP_BUILTINS()
45 #ifndef TARGET_OBJFMT_CPP_BUILTINS
46 # define TARGET_OBJFMT_CPP_BUILTINS()
49 #ifndef REGISTER_PREFIX
50 #define REGISTER_PREFIX ""
53 /* Non-static as some targets don't use it. */
54 static void builtin_define_with_hex_fp_value (const char *, tree
,
58 static void builtin_define_stdint_macros (void);
59 static void builtin_define_constants (const char *, tree
);
60 static void builtin_define_type_max (const char *, tree
);
61 static void builtin_define_type_minmax (const char *, const char *, tree
);
62 static void builtin_define_float_constants (const char *,
68 /* Return true if MODE provides a fast multiply/add (FMA) builtin function.
69 Originally this function used the fma optab, but that doesn't work with
70 -save-temps, so just rely on the HAVE_fma macros for the standard floating
74 mode_has_fma (machine_mode mode
)
105 /* Define NAME with value TYPE size_unit. */
107 builtin_define_type_sizeof (const char *name
, tree type
)
109 builtin_define_with_int_value (name
,
110 tree_to_uhwi (TYPE_SIZE_UNIT (type
)));
113 /* Define the float.h constants for TYPE using NAME_PREFIX, FP_SUFFIX,
116 builtin_define_float_constants (const char *name_prefix
,
117 const char *fp_suffix
,
119 const char *fma_suffix
,
122 /* Used to convert radix-based values to base 10 values in several cases.
124 In the max_exp -> max_10_exp conversion for 128-bit IEEE, we need at
125 least 6 significant digits for correct results. Using the fraction
126 formed by (log(2)*1e6)/(log(10)*1e6) overflows a 32-bit integer as an
127 intermediate; perhaps someone can find a better approximation, in the
128 mean time, I suspect using doubles won't harm the bootstrap here. */
130 const double log10_2
= .30102999566398119521;
132 const struct real_format
*fmt
;
133 const struct real_format
*ldfmt
;
135 char name
[64], buf
[128];
136 int dig
, min_10_exp
, max_10_exp
;
138 int type_decimal_dig
;
140 fmt
= REAL_MODE_FORMAT (TYPE_MODE (type
));
141 gcc_assert (fmt
->b
!= 10);
142 ldfmt
= REAL_MODE_FORMAT (TYPE_MODE (long_double_type_node
));
143 gcc_assert (ldfmt
->b
!= 10);
145 /* The radix of the exponent representation. */
146 if (type
== float_type_node
)
147 builtin_define_with_int_value ("__FLT_RADIX__", fmt
->b
);
150 /* The number of radix digits, p, in the floating-point significand. */
151 sprintf (name
, "__%s_MANT_DIG__", name_prefix
);
152 builtin_define_with_int_value (name
, fmt
->p
);
154 /* The number of decimal digits, q, such that any floating-point number
155 with q decimal digits can be rounded into a floating-point number with
156 p radix b digits and back again without change to the q decimal digits,
158 p log10 b if b is a power of 10
159 floor((p - 1) log10 b) otherwise
161 dig
= (fmt
->p
- 1) * log10_b
;
162 sprintf (name
, "__%s_DIG__", name_prefix
);
163 builtin_define_with_int_value (name
, dig
);
165 /* The minimum negative int x such that b**(x-1) is a normalized float. */
166 sprintf (name
, "__%s_MIN_EXP__", name_prefix
);
167 sprintf (buf
, "(%d)", fmt
->emin
);
168 builtin_define_with_value (name
, buf
, 0);
170 /* The minimum negative int x such that 10**x is a normalized float,
172 ceil (log10 (b ** (emin - 1)))
173 = ceil (log10 (b) * (emin - 1))
175 Recall that emin is negative, so the integer truncation calculates
176 the ceiling, not the floor, in this case. */
177 min_10_exp
= (fmt
->emin
- 1) * log10_b
;
178 sprintf (name
, "__%s_MIN_10_EXP__", name_prefix
);
179 sprintf (buf
, "(%d)", min_10_exp
);
180 builtin_define_with_value (name
, buf
, 0);
182 /* The maximum int x such that b**(x-1) is a representable float. */
183 sprintf (name
, "__%s_MAX_EXP__", name_prefix
);
184 builtin_define_with_int_value (name
, fmt
->emax
);
186 /* The maximum int x such that 10**x is in the range of representable
187 finite floating-point numbers,
189 floor (log10((1 - b**-p) * b**emax))
190 = floor (log10(1 - b**-p) + log10(b**emax))
191 = floor (log10(1 - b**-p) + log10(b)*emax)
193 The safest thing to do here is to just compute this number. But since
194 we don't link cc1 with libm, we cannot. We could implement log10 here
195 a series expansion, but that seems too much effort because:
197 Note that the first term, for all extant p, is a number exceedingly close
198 to zero, but slightly negative. Note that the second term is an integer
199 scaling an irrational number, and that because of the floor we are only
200 interested in its integral portion.
202 In order for the first term to have any effect on the integral portion
203 of the second term, the second term has to be exceedingly close to an
204 integer itself (e.g. 123.000000000001 or something). Getting a result
205 that close to an integer requires that the irrational multiplicand have
206 a long series of zeros in its expansion, which doesn't occur in the
207 first 20 digits or so of log10(b).
209 Hand-waving aside, crunching all of the sets of constants above by hand
210 does not yield a case for which the first term is significant, which
211 in the end is all that matters. */
212 max_10_exp
= fmt
->emax
* log10_b
;
213 sprintf (name
, "__%s_MAX_10_EXP__", name_prefix
);
214 builtin_define_with_int_value (name
, max_10_exp
);
216 /* The number of decimal digits, n, such that any floating-point number
217 can be rounded to n decimal digits and back again without change to
220 p * log10(b) if b is a power of 10
221 ceil(1 + p * log10(b)) otherwise
223 The only macro we care about is this number for the widest supported
224 floating type, but we want this value for rendering constants below. */
227 = 1 + (fmt
->p
< ldfmt
->p
? ldfmt
->p
: fmt
->p
) * log10_b
;
228 decimal_dig
= d_decimal_dig
;
229 if (decimal_dig
< d_decimal_dig
)
232 /* Similar, for this type rather than long double. */
234 double type_d_decimal_dig
= 1 + fmt
->p
* log10_b
;
235 type_decimal_dig
= type_d_decimal_dig
;
236 if (type_decimal_dig
< type_d_decimal_dig
)
239 if (type
== long_double_type_node
)
240 builtin_define_with_int_value ("__DECIMAL_DIG__", decimal_dig
);
243 sprintf (name
, "__%s_DECIMAL_DIG__", name_prefix
);
244 builtin_define_with_int_value (name
, type_decimal_dig
);
247 /* Since, for the supported formats, B is always a power of 2, we
248 construct the following numbers directly as a hexadecimal
250 get_max_float (fmt
, buf
, sizeof (buf
));
252 sprintf (name
, "__%s_MAX__", name_prefix
);
253 builtin_define_with_hex_fp_value (name
, type
, decimal_dig
, buf
, fp_suffix
, fp_cast
);
255 /* The minimum normalized positive floating-point number,
257 sprintf (name
, "__%s_MIN__", name_prefix
);
258 sprintf (buf
, "0x1p%d", fmt
->emin
- 1);
259 builtin_define_with_hex_fp_value (name
, type
, decimal_dig
, buf
, fp_suffix
, fp_cast
);
261 /* The difference between 1 and the least value greater than 1 that is
262 representable in the given floating point type, b**(1-p). */
263 sprintf (name
, "__%s_EPSILON__", name_prefix
);
264 if (fmt
->pnan
< fmt
->p
)
265 /* This is an IBM extended double format, so 1.0 + any double is
266 representable precisely. */
267 sprintf (buf
, "0x1p%d", fmt
->emin
- fmt
->p
);
269 sprintf (buf
, "0x1p%d", 1 - fmt
->p
);
270 builtin_define_with_hex_fp_value (name
, type
, decimal_dig
, buf
, fp_suffix
, fp_cast
);
272 /* For C++ std::numeric_limits<T>::denorm_min and C11 *_TRUE_MIN.
273 The minimum denormalized positive floating-point number, b**(emin-p).
274 The minimum normalized positive floating-point number for formats
275 that don't support denormals. */
276 sprintf (name
, "__%s_DENORM_MIN__", name_prefix
);
277 sprintf (buf
, "0x1p%d", fmt
->emin
- (fmt
->has_denorm
? fmt
->p
: 1));
278 builtin_define_with_hex_fp_value (name
, type
, decimal_dig
,
279 buf
, fp_suffix
, fp_cast
);
281 sprintf (name
, "__%s_HAS_DENORM__", name_prefix
);
282 builtin_define_with_value (name
, fmt
->has_denorm
? "1" : "0", 0);
284 /* For C++ std::numeric_limits<T>::has_infinity. */
285 sprintf (name
, "__%s_HAS_INFINITY__", name_prefix
);
286 builtin_define_with_int_value (name
,
287 MODE_HAS_INFINITIES (TYPE_MODE (type
)));
288 /* For C++ std::numeric_limits<T>::has_quiet_NaN. We do not have a
289 predicate to distinguish a target that has both quiet and
290 signalling NaNs from a target that has only quiet NaNs or only
291 signalling NaNs, so we assume that a target that has any kind of
292 NaN has quiet NaNs. */
293 sprintf (name
, "__%s_HAS_QUIET_NAN__", name_prefix
);
294 builtin_define_with_int_value (name
, MODE_HAS_NANS (TYPE_MODE (type
)));
296 /* Note whether we have fast FMA. */
297 if (mode_has_fma (TYPE_MODE (type
)))
299 sprintf (name
, "__FP_FAST_FMA%s", fma_suffix
);
300 builtin_define_with_int_value (name
, 1);
304 /* Define __DECx__ constants for TYPE using NAME_PREFIX and SUFFIX. */
306 builtin_define_decimal_float_constants (const char *name_prefix
,
310 const struct real_format
*fmt
;
311 char name
[64], buf
[128], *p
;
314 fmt
= REAL_MODE_FORMAT (TYPE_MODE (type
));
316 /* The number of radix digits, p, in the significand. */
317 sprintf (name
, "__%s_MANT_DIG__", name_prefix
);
318 builtin_define_with_int_value (name
, fmt
->p
);
320 /* The minimum negative int x such that b**(x-1) is a normalized float. */
321 sprintf (name
, "__%s_MIN_EXP__", name_prefix
);
322 sprintf (buf
, "(%d)", fmt
->emin
);
323 builtin_define_with_value (name
, buf
, 0);
325 /* The maximum int x such that b**(x-1) is a representable float. */
326 sprintf (name
, "__%s_MAX_EXP__", name_prefix
);
327 builtin_define_with_int_value (name
, fmt
->emax
);
329 /* Compute the minimum representable value. */
330 sprintf (name
, "__%s_MIN__", name_prefix
);
331 sprintf (buf
, "1E%d%s", fmt
->emin
- 1, suffix
);
332 builtin_define_with_value (name
, buf
, 0);
334 /* Compute the maximum representable value. */
335 sprintf (name
, "__%s_MAX__", name_prefix
);
337 for (digits
= fmt
->p
; digits
; digits
--)
340 if (digits
== fmt
->p
)
344 /* fmt->p plus 1, to account for the decimal point and fmt->emax
345 minus 1 because the digits are nines, not 1.0. */
346 sprintf (&buf
[fmt
->p
+ 1], "E%d%s", fmt
->emax
- 1, suffix
);
347 builtin_define_with_value (name
, buf
, 0);
349 /* Compute epsilon (the difference between 1 and least value greater
350 than 1 representable). */
351 sprintf (name
, "__%s_EPSILON__", name_prefix
);
352 sprintf (buf
, "1E-%d%s", fmt
->p
- 1, suffix
);
353 builtin_define_with_value (name
, buf
, 0);
355 /* Minimum subnormal positive decimal value. */
356 sprintf (name
, "__%s_SUBNORMAL_MIN__", name_prefix
);
358 for (digits
= fmt
->p
; digits
> 1; digits
--)
361 if (digits
== fmt
->p
)
365 sprintf (&buf
[fmt
->p
], "1E%d%s", fmt
->emin
- 1, suffix
);
366 builtin_define_with_value (name
, buf
, 0);
369 /* Define fixed-point constants for TYPE using NAME_PREFIX and SUFFIX. */
372 builtin_define_fixed_point_constants (const char *name_prefix
,
376 char name
[64], buf
[256], *new_buf
;
379 sprintf (name
, "__%s_FBIT__", name_prefix
);
380 builtin_define_with_int_value (name
, TYPE_FBIT (type
));
382 sprintf (name
, "__%s_IBIT__", name_prefix
);
383 builtin_define_with_int_value (name
, TYPE_IBIT (type
));
385 /* If there is no suffix, defines are for fixed-point modes.
387 if (strcmp (suffix
, "") == 0)
390 if (TYPE_UNSIGNED (type
))
392 sprintf (name
, "__%s_MIN__", name_prefix
);
393 sprintf (buf
, "0.0%s", suffix
);
394 builtin_define_with_value (name
, buf
, 0);
398 sprintf (name
, "__%s_MIN__", name_prefix
);
399 if (ALL_ACCUM_MODE_P (TYPE_MODE (type
)))
400 sprintf (buf
, "(-0X1P%d%s-0X1P%d%s)", TYPE_IBIT (type
) - 1, suffix
,
401 TYPE_IBIT (type
) - 1, suffix
);
403 sprintf (buf
, "(-0.5%s-0.5%s)", suffix
, suffix
);
404 builtin_define_with_value (name
, buf
, 0);
407 sprintf (name
, "__%s_MAX__", name_prefix
);
410 mod
= (TYPE_FBIT (type
) + TYPE_IBIT (type
)) % 4;
412 sprintf (new_buf
++, "%x", (1 << mod
) - 1);
413 for (i
= 0; i
< (TYPE_FBIT (type
) + TYPE_IBIT (type
)) / 4; i
++)
414 sprintf (new_buf
++, "F");
415 sprintf (new_buf
, "P-%d%s", TYPE_FBIT (type
), suffix
);
416 builtin_define_with_value (name
, buf
, 0);
418 sprintf (name
, "__%s_EPSILON__", name_prefix
);
419 sprintf (buf
, "0x1P-%d%s", TYPE_FBIT (type
), suffix
);
420 builtin_define_with_value (name
, buf
, 0);
423 /* Define macros used by <stdint.h>. */
425 builtin_define_stdint_macros (void)
427 builtin_define_type_max ("__INTMAX_MAX__", intmax_type_node
);
428 builtin_define_constants ("__INTMAX_C", intmax_type_node
);
429 builtin_define_type_max ("__UINTMAX_MAX__", uintmax_type_node
);
430 builtin_define_constants ("__UINTMAX_C", uintmax_type_node
);
431 if (sig_atomic_type_node
)
432 builtin_define_type_minmax ("__SIG_ATOMIC_MIN__", "__SIG_ATOMIC_MAX__",
433 sig_atomic_type_node
);
435 builtin_define_type_max ("__INT8_MAX__", int8_type_node
);
437 builtin_define_type_max ("__INT16_MAX__", int16_type_node
);
439 builtin_define_type_max ("__INT32_MAX__", int32_type_node
);
441 builtin_define_type_max ("__INT64_MAX__", int64_type_node
);
443 builtin_define_type_max ("__UINT8_MAX__", uint8_type_node
);
444 if (c_uint16_type_node
)
445 builtin_define_type_max ("__UINT16_MAX__", c_uint16_type_node
);
446 if (c_uint32_type_node
)
447 builtin_define_type_max ("__UINT32_MAX__", c_uint32_type_node
);
448 if (c_uint64_type_node
)
449 builtin_define_type_max ("__UINT64_MAX__", c_uint64_type_node
);
450 if (int_least8_type_node
)
452 builtin_define_type_max ("__INT_LEAST8_MAX__", int_least8_type_node
);
453 builtin_define_constants ("__INT8_C", int_least8_type_node
);
455 if (int_least16_type_node
)
457 builtin_define_type_max ("__INT_LEAST16_MAX__", int_least16_type_node
);
458 builtin_define_constants ("__INT16_C", int_least16_type_node
);
460 if (int_least32_type_node
)
462 builtin_define_type_max ("__INT_LEAST32_MAX__", int_least32_type_node
);
463 builtin_define_constants ("__INT32_C", int_least32_type_node
);
465 if (int_least64_type_node
)
467 builtin_define_type_max ("__INT_LEAST64_MAX__", int_least64_type_node
);
468 builtin_define_constants ("__INT64_C", int_least64_type_node
);
470 if (uint_least8_type_node
)
472 builtin_define_type_max ("__UINT_LEAST8_MAX__", uint_least8_type_node
);
473 builtin_define_constants ("__UINT8_C", uint_least8_type_node
);
475 if (uint_least16_type_node
)
477 builtin_define_type_max ("__UINT_LEAST16_MAX__", uint_least16_type_node
);
478 builtin_define_constants ("__UINT16_C", uint_least16_type_node
);
480 if (uint_least32_type_node
)
482 builtin_define_type_max ("__UINT_LEAST32_MAX__", uint_least32_type_node
);
483 builtin_define_constants ("__UINT32_C", uint_least32_type_node
);
485 if (uint_least64_type_node
)
487 builtin_define_type_max ("__UINT_LEAST64_MAX__", uint_least64_type_node
);
488 builtin_define_constants ("__UINT64_C", uint_least64_type_node
);
490 if (int_fast8_type_node
)
491 builtin_define_type_max ("__INT_FAST8_MAX__", int_fast8_type_node
);
492 if (int_fast16_type_node
)
493 builtin_define_type_max ("__INT_FAST16_MAX__", int_fast16_type_node
);
494 if (int_fast32_type_node
)
495 builtin_define_type_max ("__INT_FAST32_MAX__", int_fast32_type_node
);
496 if (int_fast64_type_node
)
497 builtin_define_type_max ("__INT_FAST64_MAX__", int_fast64_type_node
);
498 if (uint_fast8_type_node
)
499 builtin_define_type_max ("__UINT_FAST8_MAX__", uint_fast8_type_node
);
500 if (uint_fast16_type_node
)
501 builtin_define_type_max ("__UINT_FAST16_MAX__", uint_fast16_type_node
);
502 if (uint_fast32_type_node
)
503 builtin_define_type_max ("__UINT_FAST32_MAX__", uint_fast32_type_node
);
504 if (uint_fast64_type_node
)
505 builtin_define_type_max ("__UINT_FAST64_MAX__", uint_fast64_type_node
);
506 if (intptr_type_node
)
507 builtin_define_type_max ("__INTPTR_MAX__", intptr_type_node
);
508 if (uintptr_type_node
)
509 builtin_define_type_max ("__UINTPTR_MAX__", uintptr_type_node
);
512 /* Adjust the optimization macros when a #pragma GCC optimization is done to
513 reflect the current level. */
515 c_cpp_builtins_optimize_pragma (cpp_reader
*pfile
, tree prev_tree
,
518 struct cl_optimization
*prev
= TREE_OPTIMIZATION (prev_tree
);
519 struct cl_optimization
*cur
= TREE_OPTIMIZATION (cur_tree
);
523 /* -undef turns off target-specific built-ins. */
527 /* Other target-independent built-ins determined by command-line
529 if (!prev
->x_optimize_size
&& cur
->x_optimize_size
)
530 cpp_define (pfile
, "__OPTIMIZE_SIZE__");
531 else if (prev
->x_optimize_size
&& !cur
->x_optimize_size
)
532 cpp_undef (pfile
, "__OPTIMIZE_SIZE__");
534 if (!prev
->x_optimize
&& cur
->x_optimize
)
535 cpp_define (pfile
, "__OPTIMIZE__");
536 else if (prev
->x_optimize
&& !cur
->x_optimize
)
537 cpp_undef (pfile
, "__OPTIMIZE__");
539 prev_fast_math
= fast_math_flags_struct_set_p (prev
);
540 cur_fast_math
= fast_math_flags_struct_set_p (cur
);
541 if (!prev_fast_math
&& cur_fast_math
)
542 cpp_define (pfile
, "__FAST_MATH__");
543 else if (prev_fast_math
&& !cur_fast_math
)
544 cpp_undef (pfile
, "__FAST_MATH__");
546 if (!prev
->x_flag_signaling_nans
&& cur
->x_flag_signaling_nans
)
547 cpp_define (pfile
, "__SUPPORT_SNAN__");
548 else if (prev
->x_flag_signaling_nans
&& !cur
->x_flag_signaling_nans
)
549 cpp_undef (pfile
, "__SUPPORT_SNAN__");
551 if (!prev
->x_flag_errno_math
&& cur
->x_flag_errno_math
)
552 cpp_undef (pfile
, "__NO_MATH_ERRNO__");
553 else if (prev
->x_flag_errno_math
&& !cur
->x_flag_errno_math
)
554 cpp_define (pfile
, "__NO_MATH_ERRNO__");
556 if (!prev
->x_flag_finite_math_only
&& cur
->x_flag_finite_math_only
)
558 cpp_undef (pfile
, "__FINITE_MATH_ONLY__");
559 cpp_define (pfile
, "__FINITE_MATH_ONLY__=1");
561 else if (prev
->x_flag_finite_math_only
&& !cur
->x_flag_finite_math_only
)
563 cpp_undef (pfile
, "__FINITE_MATH_ONLY__");
564 cpp_define (pfile
, "__FINITE_MATH_ONLY__=0");
569 /* This function will emit cpp macros to indicate the presence of various lock
570 free atomic operations. */
573 cpp_atomic_builtins (cpp_reader
*pfile
)
575 /* Set a flag for each size of object that compare and swap exists for up to
577 #define SWAP_LIMIT 17
578 bool have_swap
[SWAP_LIMIT
];
581 /* Clear the map of sizes compare_and swap exists for. */
582 memset (have_swap
, 0, sizeof (have_swap
));
584 /* Tell source code if the compiler makes sync_compare_and_swap
585 builtins available. */
586 #ifndef HAVE_sync_compare_and_swapqi
587 #define HAVE_sync_compare_and_swapqi 0
589 #ifndef HAVE_atomic_compare_and_swapqi
590 #define HAVE_atomic_compare_and_swapqi 0
593 if (HAVE_sync_compare_and_swapqi
|| HAVE_atomic_compare_and_swapqi
)
595 cpp_define (pfile
, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_1");
599 #ifndef HAVE_sync_compare_and_swaphi
600 #define HAVE_sync_compare_and_swaphi 0
602 #ifndef HAVE_atomic_compare_and_swaphi
603 #define HAVE_atomic_compare_and_swaphi 0
605 if (HAVE_sync_compare_and_swaphi
|| HAVE_atomic_compare_and_swaphi
)
607 cpp_define (pfile
, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_2");
611 #ifndef HAVE_sync_compare_and_swapsi
612 #define HAVE_sync_compare_and_swapsi 0
614 #ifndef HAVE_atomic_compare_and_swapsi
615 #define HAVE_atomic_compare_and_swapsi 0
617 if (HAVE_sync_compare_and_swapsi
|| HAVE_atomic_compare_and_swapsi
)
619 cpp_define (pfile
, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4");
623 #ifndef HAVE_sync_compare_and_swapdi
624 #define HAVE_sync_compare_and_swapdi 0
626 #ifndef HAVE_atomic_compare_and_swapdi
627 #define HAVE_atomic_compare_and_swapdi 0
629 if (HAVE_sync_compare_and_swapdi
|| HAVE_atomic_compare_and_swapdi
)
631 cpp_define (pfile
, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_8");
635 #ifndef HAVE_sync_compare_and_swapti
636 #define HAVE_sync_compare_and_swapti 0
638 #ifndef HAVE_atomic_compare_and_swapti
639 #define HAVE_atomic_compare_and_swapti 0
641 if (HAVE_sync_compare_and_swapti
|| HAVE_atomic_compare_and_swapti
)
643 cpp_define (pfile
, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_16");
644 have_swap
[16] = true;
647 /* Tell the source code about various types. These map to the C++11 and C11
648 macros where 2 indicates lock-free always, and 1 indicates sometimes
650 #define SIZEOF_NODE(T) (tree_to_uhwi (TYPE_SIZE_UNIT (T)))
651 #define SWAP_INDEX(T) ((SIZEOF_NODE (T) < SWAP_LIMIT) ? SIZEOF_NODE (T) : 0)
652 builtin_define_with_int_value ("__GCC_ATOMIC_BOOL_LOCK_FREE",
653 (have_swap
[SWAP_INDEX (boolean_type_node
)]? 2 : 1));
654 builtin_define_with_int_value ("__GCC_ATOMIC_CHAR_LOCK_FREE",
655 (have_swap
[SWAP_INDEX (signed_char_type_node
)]? 2 : 1));
656 builtin_define_with_int_value ("__GCC_ATOMIC_CHAR16_T_LOCK_FREE",
657 (have_swap
[SWAP_INDEX (char16_type_node
)]? 2 : 1));
658 builtin_define_with_int_value ("__GCC_ATOMIC_CHAR32_T_LOCK_FREE",
659 (have_swap
[SWAP_INDEX (char32_type_node
)]? 2 : 1));
660 builtin_define_with_int_value ("__GCC_ATOMIC_WCHAR_T_LOCK_FREE",
661 (have_swap
[SWAP_INDEX (wchar_type_node
)]? 2 : 1));
662 builtin_define_with_int_value ("__GCC_ATOMIC_SHORT_LOCK_FREE",
663 (have_swap
[SWAP_INDEX (short_integer_type_node
)]? 2 : 1));
664 builtin_define_with_int_value ("__GCC_ATOMIC_INT_LOCK_FREE",
665 (have_swap
[SWAP_INDEX (integer_type_node
)]? 2 : 1));
666 builtin_define_with_int_value ("__GCC_ATOMIC_LONG_LOCK_FREE",
667 (have_swap
[SWAP_INDEX (long_integer_type_node
)]? 2 : 1));
668 builtin_define_with_int_value ("__GCC_ATOMIC_LLONG_LOCK_FREE",
669 (have_swap
[SWAP_INDEX (long_long_integer_type_node
)]? 2 : 1));
671 /* If we're dealing with a "set" value that doesn't exactly correspond
672 to a boolean truth value, let the library work around that. */
673 builtin_define_with_int_value ("__GCC_ATOMIC_TEST_AND_SET_TRUEVAL",
674 targetm
.atomic_test_and_set_trueval
);
676 /* ptr_type_node can't be used here since ptr_mode is only set when
677 toplev calls backend_init which is not done with -E or pch. */
678 psize
= POINTER_SIZE_UNITS
;
679 if (psize
>= SWAP_LIMIT
)
681 builtin_define_with_int_value ("__GCC_ATOMIC_POINTER_LOCK_FREE",
682 (have_swap
[psize
]? 2 : 1));
685 /* Return the value for __GCC_IEC_559. */
687 cpp_iec_559_value (void)
689 /* The default is support for IEEE 754-2008. */
692 /* float and double must be binary32 and binary64. If they are but
693 with reversed NaN convention, at most IEEE 754-1985 is
695 const struct real_format
*ffmt
696 = REAL_MODE_FORMAT (TYPE_MODE (float_type_node
));
697 const struct real_format
*dfmt
698 = REAL_MODE_FORMAT (TYPE_MODE (double_type_node
));
699 if (!ffmt
->qnan_msb_set
|| !dfmt
->qnan_msb_set
)
704 || ffmt
->emin
!= -125
706 || ffmt
->signbit_rw
!= 31
707 || ffmt
->round_towards_zero
708 || !ffmt
->has_sign_dependent_rounding
712 || !ffmt
->has_signed_zero
716 || dfmt
->emin
!= -1021
717 || dfmt
->emax
!= 1024
718 || dfmt
->signbit_rw
!= 63
719 || dfmt
->round_towards_zero
720 || !dfmt
->has_sign_dependent_rounding
724 || !dfmt
->has_signed_zero
)
727 /* In strict C standards conformance mode, consider unpredictable
728 excess precision to mean lack of IEEE 754 support. The same
729 applies to unpredictable contraction. For C++, and outside
730 strict conformance mode, do not consider these options to mean
731 lack of IEEE 754 support. */
734 && TARGET_FLT_EVAL_METHOD
!= 0
735 && flag_excess_precision_cmdline
!= EXCESS_PRECISION_STANDARD
)
739 && flag_fp_contract_mode
== FP_CONTRACT_FAST
)
742 /* Various options are contrary to IEEE 754 semantics. */
743 if (flag_unsafe_math_optimizations
744 || flag_associative_math
745 || flag_reciprocal_math
746 || flag_finite_math_only
747 || !flag_signed_zeros
748 || flag_single_precision_constant
)
751 /* If the target does not support IEEE 754 exceptions and rounding
752 modes, consider IEEE 754 support to be absent. */
753 if (!targetm
.float_exceptions_rounding_supported_p ())
759 /* Return the value for __GCC_IEC_559_COMPLEX. */
761 cpp_iec_559_complex_value (void)
763 /* The value is no bigger than that of __GCC_IEC_559. */
764 int ret
= cpp_iec_559_value ();
766 /* Some options are contrary to the required default state of the
767 CX_LIMITED_RANGE pragma. */
768 if (flag_complex_method
!= 2)
774 /* Hook that registers front end and target-specific built-ins. */
776 c_cpp_builtins (cpp_reader
*pfile
)
780 /* -undef turns off target-specific built-ins. */
784 define_language_independent_builtin_macros (pfile
);
786 if (c_dialect_cxx ())
789 parse_basever (&major
, NULL
, NULL
);
790 cpp_define_formatted (pfile
, "__GNUG__=%d", major
);
793 /* For stddef.h. They require macros defined in c-common.c. */
794 c_stddef_cpp_builtins ();
796 /* Set include test macros for all C/C++ (not for just C++11 etc.)
797 The builtins __has_include__ and __has_include_next__ are defined
799 cpp_define (pfile
, "__has_include(STR)=__has_include__(STR)");
800 cpp_define (pfile
, "__has_include_next(STR)=__has_include_next__(STR)");
802 if (c_dialect_cxx ())
804 if (flag_weak
&& SUPPORTS_ONE_ONLY
)
805 cpp_define (pfile
, "__GXX_WEAK__=1");
807 cpp_define (pfile
, "__GXX_WEAK__=0");
810 cpp_define (pfile
, "__DEPRECATED");
814 cpp_define (pfile
, "__GXX_RTTI");
815 cpp_define (pfile
, "__cpp_rtti=199711");
818 if (cxx_dialect
>= cxx11
)
819 cpp_define (pfile
, "__GXX_EXPERIMENTAL_CXX0X__");
821 /* Binary literals have been allowed in g++ before C++11
822 and were standardized for C++14. */
823 if (!pedantic
|| cxx_dialect
> cxx11
)
824 cpp_define (pfile
, "__cpp_binary_literals=201304");
826 /* Arrays of runtime bound were removed from C++14, but we still
827 support GNU VLAs. Let's define this macro to a low number
828 (corresponding to the initial test release of GNU C++) if we won't
829 complain about use of VLAs. */
831 && (pedantic
? warn_vla
== 0 : warn_vla
<= 0))
832 cpp_define (pfile
, "__cpp_runtime_arrays=198712");
834 if (cxx_dialect
>= cxx11
)
836 /* Set feature test macros for C++11 */
837 cpp_define (pfile
, "__cpp_unicode_characters=200704");
838 cpp_define (pfile
, "__cpp_raw_strings=200710");
839 cpp_define (pfile
, "__cpp_unicode_literals=200710");
840 cpp_define (pfile
, "__cpp_user_defined_literals=200809");
841 cpp_define (pfile
, "__cpp_lambdas=200907");
842 if (cxx_dialect
== cxx11
)
843 cpp_define (pfile
, "__cpp_constexpr=200704");
844 cpp_define (pfile
, "__cpp_range_based_for=200907");
845 cpp_define (pfile
, "__cpp_static_assert=200410");
846 cpp_define (pfile
, "__cpp_decltype=200707");
847 cpp_define (pfile
, "__cpp_attributes=200809");
848 cpp_define (pfile
, "__cpp_rvalue_reference=200610");
849 cpp_define (pfile
, "__cpp_variadic_templates=200704");
850 cpp_define (pfile
, "__cpp_initializer_lists=200806");
851 cpp_define (pfile
, "__cpp_delegating_constructors=200604");
852 cpp_define (pfile
, "__cpp_nsdmi=200809");
853 cpp_define (pfile
, "__cpp_inheriting_constructors=200802");
854 cpp_define (pfile
, "__cpp_ref_qualifiers=200710");
855 cpp_define (pfile
, "__cpp_alias_templates=200704");
857 if (cxx_dialect
> cxx11
)
859 /* Set feature test macros for C++14 */
860 cpp_define (pfile
, "__cpp_return_type_deduction=201304");
861 cpp_define (pfile
, "__cpp_init_captures=201304");
862 cpp_define (pfile
, "__cpp_generic_lambdas=201304");
863 cpp_define (pfile
, "__cpp_constexpr=201304");
864 cpp_define (pfile
, "__cpp_decltype_auto=201304");
865 cpp_define (pfile
, "__cpp_aggregate_nsdmi=201304");
866 cpp_define (pfile
, "__cpp_variable_templates=201304");
867 cpp_define (pfile
, "__cpp_digit_separators=201309");
869 if (flag_sized_deallocation
)
870 cpp_define (pfile
, "__cpp_sized_deallocation=201309");
872 /* Note that we define this for C as well, so that we know if
873 __attribute__((cleanup)) will interface with EH. */
876 cpp_define (pfile
, "__EXCEPTIONS");
877 if (c_dialect_cxx ())
878 cpp_define (pfile
, "__cpp_exceptions=199711");
881 /* Represents the C++ ABI version, always defined so it can be used while
882 preprocessing C and assembler. */
883 if (flag_abi_version
== 0)
884 /* We should have set this to something real in c_common_post_options. */
886 else if (flag_abi_version
== 1)
887 /* Due to a historical accident, this version had the value
889 builtin_define_with_int_value ("__GXX_ABI_VERSION", 102);
891 /* Newer versions have values 1002, 1003, .... */
892 builtin_define_with_int_value ("__GXX_ABI_VERSION",
893 1000 + flag_abi_version
);
895 /* libgcc needs to know this. */
896 if (targetm_common
.except_unwind_info (&global_options
) == UI_SJLJ
)
897 cpp_define (pfile
, "__USING_SJLJ_EXCEPTIONS__");
899 /* limits.h and stdint.h need to know these. */
900 builtin_define_type_max ("__SCHAR_MAX__", signed_char_type_node
);
901 builtin_define_type_max ("__SHRT_MAX__", short_integer_type_node
);
902 builtin_define_type_max ("__INT_MAX__", integer_type_node
);
903 builtin_define_type_max ("__LONG_MAX__", long_integer_type_node
);
904 builtin_define_type_max ("__LONG_LONG_MAX__", long_long_integer_type_node
);
905 builtin_define_type_minmax ("__WCHAR_MIN__", "__WCHAR_MAX__",
906 underlying_wchar_type_node
);
907 builtin_define_type_minmax ("__WINT_MIN__", "__WINT_MAX__", wint_type_node
);
908 builtin_define_type_max ("__PTRDIFF_MAX__", ptrdiff_type_node
);
909 builtin_define_type_max ("__SIZE_MAX__", size_type_node
);
911 if (c_dialect_cxx ())
912 for (i
= 0; i
< NUM_INT_N_ENTS
; i
++)
913 if (int_n_enabled_p
[i
])
917 /* These are used to configure the C++ library. */
919 if (!flag_iso
|| int_n_data
[i
].bitsize
== POINTER_SIZE
)
921 sprintf (buf
, "__GLIBCXX_TYPE_INT_N_%d=__int%d", i
, int_n_data
[i
].bitsize
);
922 cpp_define (parse_in
, buf
);
924 sprintf (buf
, "__GLIBCXX_BITSIZE_INT_N_%d=%d", i
, int_n_data
[i
].bitsize
);
925 cpp_define (parse_in
, buf
);
929 /* stdint.h and the testsuite need to know these. */
930 builtin_define_stdint_macros ();
932 /* Provide information for library headers to determine whether to
933 define macros such as __STDC_IEC_559__ and
934 __STDC_IEC_559_COMPLEX__. */
935 builtin_define_with_int_value ("__GCC_IEC_559", cpp_iec_559_value ());
936 builtin_define_with_int_value ("__GCC_IEC_559_COMPLEX",
937 cpp_iec_559_complex_value ());
939 /* float.h needs to know this. */
940 builtin_define_with_int_value ("__FLT_EVAL_METHOD__",
941 TARGET_FLT_EVAL_METHOD
);
943 /* And decfloat.h needs this. */
944 builtin_define_with_int_value ("__DEC_EVAL_METHOD__",
945 TARGET_DEC_EVAL_METHOD
);
947 builtin_define_float_constants ("FLT", "F", "%s", "F", float_type_node
);
948 /* Cast the double precision constants. This is needed when single
949 precision constants are specified or when pragma FLOAT_CONST_DECIMAL64
950 is used. The correct result is computed by the compiler when using
951 macros that include a cast. We use a different cast for C++ to avoid
952 problems with -Wold-style-cast. */
953 builtin_define_float_constants ("DBL", "L",
957 "", double_type_node
);
958 builtin_define_float_constants ("LDBL", "L", "%s", "L",
959 long_double_type_node
);
961 /* For decfloat.h. */
962 builtin_define_decimal_float_constants ("DEC32", "DF", dfloat32_type_node
);
963 builtin_define_decimal_float_constants ("DEC64", "DD", dfloat64_type_node
);
964 builtin_define_decimal_float_constants ("DEC128", "DL", dfloat128_type_node
);
966 /* For fixed-point fibt, ibit, max, min, and epsilon. */
967 if (targetm
.fixed_point_supported_p ())
969 builtin_define_fixed_point_constants ("SFRACT", "HR",
970 short_fract_type_node
);
971 builtin_define_fixed_point_constants ("USFRACT", "UHR",
972 unsigned_short_fract_type_node
);
973 builtin_define_fixed_point_constants ("FRACT", "R",
975 builtin_define_fixed_point_constants ("UFRACT", "UR",
976 unsigned_fract_type_node
);
977 builtin_define_fixed_point_constants ("LFRACT", "LR",
978 long_fract_type_node
);
979 builtin_define_fixed_point_constants ("ULFRACT", "ULR",
980 unsigned_long_fract_type_node
);
981 builtin_define_fixed_point_constants ("LLFRACT", "LLR",
982 long_long_fract_type_node
);
983 builtin_define_fixed_point_constants ("ULLFRACT", "ULLR",
984 unsigned_long_long_fract_type_node
);
985 builtin_define_fixed_point_constants ("SACCUM", "HK",
986 short_accum_type_node
);
987 builtin_define_fixed_point_constants ("USACCUM", "UHK",
988 unsigned_short_accum_type_node
);
989 builtin_define_fixed_point_constants ("ACCUM", "K",
991 builtin_define_fixed_point_constants ("UACCUM", "UK",
992 unsigned_accum_type_node
);
993 builtin_define_fixed_point_constants ("LACCUM", "LK",
994 long_accum_type_node
);
995 builtin_define_fixed_point_constants ("ULACCUM", "ULK",
996 unsigned_long_accum_type_node
);
997 builtin_define_fixed_point_constants ("LLACCUM", "LLK",
998 long_long_accum_type_node
);
999 builtin_define_fixed_point_constants ("ULLACCUM", "ULLK",
1000 unsigned_long_long_accum_type_node
);
1002 builtin_define_fixed_point_constants ("QQ", "", qq_type_node
);
1003 builtin_define_fixed_point_constants ("HQ", "", hq_type_node
);
1004 builtin_define_fixed_point_constants ("SQ", "", sq_type_node
);
1005 builtin_define_fixed_point_constants ("DQ", "", dq_type_node
);
1006 builtin_define_fixed_point_constants ("TQ", "", tq_type_node
);
1007 builtin_define_fixed_point_constants ("UQQ", "", uqq_type_node
);
1008 builtin_define_fixed_point_constants ("UHQ", "", uhq_type_node
);
1009 builtin_define_fixed_point_constants ("USQ", "", usq_type_node
);
1010 builtin_define_fixed_point_constants ("UDQ", "", udq_type_node
);
1011 builtin_define_fixed_point_constants ("UTQ", "", utq_type_node
);
1012 builtin_define_fixed_point_constants ("HA", "", ha_type_node
);
1013 builtin_define_fixed_point_constants ("SA", "", sa_type_node
);
1014 builtin_define_fixed_point_constants ("DA", "", da_type_node
);
1015 builtin_define_fixed_point_constants ("TA", "", ta_type_node
);
1016 builtin_define_fixed_point_constants ("UHA", "", uha_type_node
);
1017 builtin_define_fixed_point_constants ("USA", "", usa_type_node
);
1018 builtin_define_fixed_point_constants ("UDA", "", uda_type_node
);
1019 builtin_define_fixed_point_constants ("UTA", "", uta_type_node
);
1022 /* For libgcc-internal use only. */
1023 if (flag_building_libgcc
)
1025 /* Properties of floating-point modes for libgcc2.c. */
1026 for (machine_mode mode
= GET_CLASS_NARROWEST_MODE (MODE_FLOAT
);
1028 mode
= GET_MODE_WIDER_MODE (mode
))
1030 const char *name
= GET_MODE_NAME (mode
);
1032 = (char *) alloca (strlen (name
)
1033 + sizeof ("__LIBGCC__MANT_DIG__"));
1034 sprintf (macro_name
, "__LIBGCC_%s_MANT_DIG__", name
);
1035 builtin_define_with_int_value (macro_name
,
1036 REAL_MODE_FORMAT (mode
)->p
);
1037 if (!targetm
.scalar_mode_supported_p (mode
)
1038 || !targetm
.libgcc_floating_mode_supported_p (mode
))
1040 macro_name
= (char *) alloca (strlen (name
)
1041 + sizeof ("__LIBGCC_HAS__MODE__"));
1042 sprintf (macro_name
, "__LIBGCC_HAS_%s_MODE__", name
);
1043 cpp_define (pfile
, macro_name
);
1044 macro_name
= (char *) alloca (strlen (name
)
1045 + sizeof ("__LIBGCC__FUNC_EXT__"));
1046 sprintf (macro_name
, "__LIBGCC_%s_FUNC_EXT__", name
);
1048 if (mode
== TYPE_MODE (double_type_node
))
1050 else if (mode
== TYPE_MODE (float_type_node
))
1052 else if (mode
== TYPE_MODE (long_double_type_node
))
1054 /* ??? The following assumes the built-in functions (defined
1055 in target-specific code) match the suffixes used for
1056 constants. Because in fact such functions are not
1057 defined for the 'w' suffix, 'l' is used there
1059 else if (mode
== targetm
.c
.mode_for_suffix ('q'))
1061 else if (mode
== targetm
.c
.mode_for_suffix ('w'))
1065 builtin_define_with_value (macro_name
, suffix
, 0);
1066 bool excess_precision
= false;
1067 if (TARGET_FLT_EVAL_METHOD
!= 0
1068 && mode
!= TYPE_MODE (long_double_type_node
)
1069 && (mode
== TYPE_MODE (float_type_node
)
1070 || mode
== TYPE_MODE (double_type_node
)))
1071 switch (TARGET_FLT_EVAL_METHOD
)
1075 excess_precision
= true;
1079 excess_precision
= mode
== TYPE_MODE (float_type_node
);
1085 macro_name
= (char *) alloca (strlen (name
)
1086 + sizeof ("__LIBGCC__EXCESS_"
1088 sprintf (macro_name
, "__LIBGCC_%s_EXCESS_PRECISION__", name
);
1089 builtin_define_with_int_value (macro_name
, excess_precision
);
1092 /* For libgcc crtstuff.c and libgcc2.c. */
1093 builtin_define_with_int_value ("__LIBGCC_EH_TABLES_CAN_BE_READ_ONLY__",
1094 EH_TABLES_CAN_BE_READ_ONLY
);
1095 #ifdef EH_FRAME_SECTION_NAME
1096 builtin_define_with_value ("__LIBGCC_EH_FRAME_SECTION_NAME__",
1097 EH_FRAME_SECTION_NAME
, 1);
1099 #ifdef JCR_SECTION_NAME
1100 builtin_define_with_value ("__LIBGCC_JCR_SECTION_NAME__",
1101 JCR_SECTION_NAME
, 1);
1103 #ifdef CTORS_SECTION_ASM_OP
1104 builtin_define_with_value ("__LIBGCC_CTORS_SECTION_ASM_OP__",
1105 CTORS_SECTION_ASM_OP
, 1);
1107 #ifdef DTORS_SECTION_ASM_OP
1108 builtin_define_with_value ("__LIBGCC_DTORS_SECTION_ASM_OP__",
1109 DTORS_SECTION_ASM_OP
, 1);
1111 #ifdef TEXT_SECTION_ASM_OP
1112 builtin_define_with_value ("__LIBGCC_TEXT_SECTION_ASM_OP__",
1113 TEXT_SECTION_ASM_OP
, 1);
1115 #ifdef INIT_SECTION_ASM_OP
1116 builtin_define_with_value ("__LIBGCC_INIT_SECTION_ASM_OP__",
1117 INIT_SECTION_ASM_OP
, 1);
1119 #ifdef INIT_ARRAY_SECTION_ASM_OP
1120 /* Despite the name of this target macro, the expansion is not
1121 actually used, and may be empty rather than a string
1123 cpp_define (pfile
, "__LIBGCC_INIT_ARRAY_SECTION_ASM_OP__");
1126 /* For libgcc enable-execute-stack.c. */
1127 builtin_define_with_int_value ("__LIBGCC_TRAMPOLINE_SIZE__",
1130 /* For libgcc generic-morestack.c and unwinder code. */
1131 if (STACK_GROWS_DOWNWARD
)
1132 cpp_define (pfile
, "__LIBGCC_STACK_GROWS_DOWNWARD__");
1134 /* For libgcc unwinder code. */
1135 #ifdef DONT_USE_BUILTIN_SETJMP
1136 cpp_define (pfile
, "__LIBGCC_DONT_USE_BUILTIN_SETJMP__");
1138 #ifdef DWARF_ALT_FRAME_RETURN_COLUMN
1139 builtin_define_with_int_value ("__LIBGCC_DWARF_ALT_FRAME_RETURN_COLUMN__",
1140 DWARF_ALT_FRAME_RETURN_COLUMN
);
1142 builtin_define_with_int_value ("__LIBGCC_DWARF_FRAME_REGISTERS__",
1143 DWARF_FRAME_REGISTERS
);
1144 #ifdef EH_RETURN_STACKADJ_RTX
1145 cpp_define (pfile
, "__LIBGCC_EH_RETURN_STACKADJ_RTX__");
1148 builtin_define_with_int_value ("__LIBGCC_JMP_BUF_SIZE__",
1151 builtin_define_with_int_value ("__LIBGCC_STACK_POINTER_REGNUM__",
1152 STACK_POINTER_REGNUM
);
1155 builtin_define_with_int_value ("__LIBGCC_VTABLE_USES_DESCRIPTORS__",
1156 TARGET_VTABLE_USES_DESCRIPTORS
);
1159 /* For use in assembly language. */
1160 builtin_define_with_value ("__REGISTER_PREFIX__", REGISTER_PREFIX
, 0);
1161 builtin_define_with_value ("__USER_LABEL_PREFIX__", user_label_prefix
, 0);
1164 if (flag_gnu89_inline
)
1165 cpp_define (pfile
, "__GNUC_GNU_INLINE__");
1167 cpp_define (pfile
, "__GNUC_STDC_INLINE__");
1170 cpp_define (pfile
, "__NO_INLINE__");
1173 cpp_define (pfile
, "__STRICT_ANSI__");
1175 if (!flag_signed_char
)
1176 cpp_define (pfile
, "__CHAR_UNSIGNED__");
1178 if (c_dialect_cxx () && TYPE_UNSIGNED (wchar_type_node
))
1179 cpp_define (pfile
, "__WCHAR_UNSIGNED__");
1181 cpp_atomic_builtins (pfile
);
1183 #ifdef DWARF2_UNWIND_INFO
1184 if (dwarf2out_do_cfi_asm ())
1185 cpp_define (pfile
, "__GCC_HAVE_DWARF2_CFI_ASM");
1188 /* Make the choice of ObjC runtime visible to source code. */
1189 if (c_dialect_objc () && flag_next_runtime
)
1190 cpp_define (pfile
, "__NEXT_RUNTIME__");
1192 /* Show the availability of some target pragmas. */
1193 cpp_define (pfile
, "__PRAGMA_REDEFINE_EXTNAME");
1195 /* Make the choice of the stack protector runtime visible to source code.
1196 The macro names and values here were chosen for compatibility with an
1197 earlier implementation, i.e. ProPolice. */
1198 if (flag_stack_protect
== 4)
1199 cpp_define (pfile
, "__SSP_EXPLICIT__=4");
1200 if (flag_stack_protect
== 3)
1201 cpp_define (pfile
, "__SSP_STRONG__=3");
1202 if (flag_stack_protect
== 2)
1203 cpp_define (pfile
, "__SSP_ALL__=2");
1204 else if (flag_stack_protect
== 1)
1205 cpp_define (pfile
, "__SSP__=1");
1208 cpp_define (pfile
, "_OPENACC=201306");
1211 cpp_define (pfile
, "_OPENMP=201307");
1213 for (i
= 0; i
< NUM_INT_N_ENTS
; i
++)
1214 if (int_n_enabled_p
[i
])
1217 sprintf(buf
, "__SIZEOF_INT%d__", int_n_data
[i
].bitsize
);
1218 builtin_define_type_sizeof (buf
,
1219 int_n_trees
[i
].signed_type
);
1221 builtin_define_type_sizeof ("__SIZEOF_WCHAR_T__", wchar_type_node
);
1222 builtin_define_type_sizeof ("__SIZEOF_WINT_T__", wint_type_node
);
1223 builtin_define_type_sizeof ("__SIZEOF_PTRDIFF_T__",
1224 unsigned_ptrdiff_type_node
);
1226 /* A straightforward target hook doesn't work, because of problems
1227 linking that hook's body when part of non-C front ends. */
1228 # define preprocessing_asm_p() (cpp_get_options (pfile)->lang == CLK_ASM)
1229 # define preprocessing_trad_p() (cpp_get_options (pfile)->traditional)
1230 # define builtin_define(TXT) cpp_define (pfile, TXT)
1231 # define builtin_assert(TXT) cpp_assert (pfile, TXT)
1232 TARGET_CPU_CPP_BUILTINS ();
1233 TARGET_OS_CPP_BUILTINS ();
1234 TARGET_OBJFMT_CPP_BUILTINS ();
1236 /* Support the __declspec keyword by turning them into attributes.
1237 Note that the current way we do this may result in a collision
1238 with predefined attributes later on. This can be solved by using
1239 one attribute, say __declspec__, and passing args to it. The
1240 problem with that approach is that args are not accumulated: each
1241 new appearance would clobber any existing args. */
1242 if (TARGET_DECLSPEC
)
1243 builtin_define ("__declspec(x)=__attribute__((x))");
1245 /* If decimal floating point is supported, tell the user if the
1246 alternate format (BID) is used instead of the standard (DPD)
1248 if (ENABLE_DECIMAL_FLOAT
&& ENABLE_DECIMAL_BID_FORMAT
)
1249 cpp_define (pfile
, "__DECIMAL_BID_FORMAT__");
1252 /* Pass an object-like macro. If it doesn't lie in the user's
1253 namespace, defines it unconditionally. Otherwise define a version
1254 with two leading underscores, and another version with two leading
1255 and trailing underscores, and define the original only if an ISO
1256 standard was not nominated.
1258 e.g. passing "unix" defines "__unix", "__unix__" and possibly
1259 "unix". Passing "_mips" defines "__mips", "__mips__" and possibly
1262 builtin_define_std (const char *macro
)
1264 size_t len
= strlen (macro
);
1265 char *buff
= (char *) alloca (len
+ 5);
1269 /* prepend __ (or maybe just _) if in user's namespace. */
1270 memcpy (p
, macro
, len
+ 1);
1271 if (!( *p
== '_' && (p
[1] == '_' || ISUPPER (p
[1]))))
1278 cpp_define (parse_in
, p
);
1280 /* If it was in user's namespace... */
1283 /* Define the macro with leading and following __. */
1289 cpp_define (parse_in
, p
);
1291 /* Finally, define the original macro if permitted. */
1293 cpp_define (parse_in
, macro
);
1297 /* Pass an object-like macro and a value to define it to. The third
1298 parameter says whether or not to turn the value into a string
1301 builtin_define_with_value (const char *macro
, const char *expansion
, int is_str
)
1304 size_t mlen
= strlen (macro
);
1305 size_t elen
= strlen (expansion
);
1306 size_t extra
= 2; /* space for an = and a NUL */
1310 char *quoted_expansion
= (char *) alloca (elen
* 4 + 1);
1313 extra
+= 2; /* space for two quote marks */
1314 for (p
= expansion
, q
= quoted_expansion
; *p
; p
++)
1339 if (ISPRINT ((unsigned char) *p
))
1343 sprintf (q
, "\\%03o", (unsigned char) *p
);
1349 expansion
= quoted_expansion
;
1350 elen
= q
- expansion
;
1353 buf
= (char *) alloca (mlen
+ elen
+ extra
);
1355 sprintf (buf
, "%s=\"%s\"", macro
, expansion
);
1357 sprintf (buf
, "%s=%s", macro
, expansion
);
1359 cpp_define (parse_in
, buf
);
1363 /* Pass an object-like macro and an integer value to define it to. */
1365 builtin_define_with_int_value (const char *macro
, HOST_WIDE_INT value
)
1368 size_t mlen
= strlen (macro
);
1370 size_t extra
= 2; /* space for = and NUL. */
1372 buf
= (char *) alloca (mlen
+ vlen
+ extra
);
1373 memcpy (buf
, macro
, mlen
);
1375 sprintf (buf
+ mlen
+ 1, HOST_WIDE_INT_PRINT_DEC
, value
);
1377 cpp_define (parse_in
, buf
);
1380 /* builtin_define_with_hex_fp_value is very expensive, so the following
1381 array and function allows it to be done lazily when __DBL_MAX__
1382 etc. is first used. */
1384 struct GTY(()) lazy_hex_fp_value_struct
1386 const char *hex_str
;
1390 const char *fp_suffix
;
1392 static GTY(()) struct lazy_hex_fp_value_struct lazy_hex_fp_values
[12];
1393 static GTY(()) int lazy_hex_fp_value_count
;
1396 lazy_hex_fp_value (cpp_reader
*pfile ATTRIBUTE_UNUSED
,
1399 REAL_VALUE_TYPE real
;
1400 char dec_str
[64], buf1
[256];
1402 if (node
->value
.builtin
< BT_FIRST_USER
1403 || (int) node
->value
.builtin
>= BT_FIRST_USER
+ lazy_hex_fp_value_count
)
1406 idx
= node
->value
.builtin
- BT_FIRST_USER
;
1407 real_from_string (&real
, lazy_hex_fp_values
[idx
].hex_str
);
1408 real_to_decimal_for_mode (dec_str
, &real
, sizeof (dec_str
),
1409 lazy_hex_fp_values
[idx
].digits
, 0,
1410 lazy_hex_fp_values
[idx
].mode
);
1412 sprintf (buf1
, "%s%s", dec_str
, lazy_hex_fp_values
[idx
].fp_suffix
);
1413 node
->flags
&= ~(NODE_BUILTIN
| NODE_USED
);
1414 node
->value
.macro
= lazy_hex_fp_values
[idx
].macro
;
1415 for (idx
= 0; idx
< node
->value
.macro
->count
; idx
++)
1416 if (node
->value
.macro
->exp
.tokens
[idx
].type
== CPP_NUMBER
)
1418 gcc_assert (idx
< node
->value
.macro
->count
);
1419 node
->value
.macro
->exp
.tokens
[idx
].val
.str
.len
= strlen (buf1
);
1420 node
->value
.macro
->exp
.tokens
[idx
].val
.str
.text
1421 = (const unsigned char *) ggc_strdup (buf1
);
1425 /* Pass an object-like macro a hexadecimal floating-point value. */
1427 builtin_define_with_hex_fp_value (const char *macro
,
1428 tree type
, int digits
,
1429 const char *hex_str
,
1430 const char *fp_suffix
,
1431 const char *fp_cast
)
1433 REAL_VALUE_TYPE real
;
1434 char dec_str
[64], buf1
[256], buf2
[256];
1436 /* This is very expensive, so if possible expand them lazily. */
1437 if (lazy_hex_fp_value_count
< 12
1438 && flag_dump_macros
== 0
1439 && !cpp_get_options (parse_in
)->traditional
)
1441 struct cpp_hashnode
*node
;
1442 if (lazy_hex_fp_value_count
== 0)
1443 cpp_get_callbacks (parse_in
)->user_builtin_macro
= lazy_hex_fp_value
;
1444 sprintf (buf2
, fp_cast
, "1.1");
1445 sprintf (buf1
, "%s=%s", macro
, buf2
);
1446 cpp_define (parse_in
, buf1
);
1447 node
= C_CPP_HASHNODE (get_identifier (macro
));
1448 lazy_hex_fp_values
[lazy_hex_fp_value_count
].hex_str
1449 = ggc_strdup (hex_str
);
1450 lazy_hex_fp_values
[lazy_hex_fp_value_count
].mode
= TYPE_MODE (type
);
1451 lazy_hex_fp_values
[lazy_hex_fp_value_count
].digits
= digits
;
1452 lazy_hex_fp_values
[lazy_hex_fp_value_count
].fp_suffix
= fp_suffix
;
1453 lazy_hex_fp_values
[lazy_hex_fp_value_count
].macro
= node
->value
.macro
;
1454 node
->flags
|= NODE_BUILTIN
;
1456 = (enum cpp_builtin_type
) (BT_FIRST_USER
+ lazy_hex_fp_value_count
);
1457 lazy_hex_fp_value_count
++;
1461 /* Hex values are really cool and convenient, except that they're
1462 not supported in strict ISO C90 mode. First, the "p-" sequence
1463 is not valid as part of a preprocessor number. Second, we get a
1464 pedwarn from the preprocessor, which has no context, so we can't
1465 suppress the warning with __extension__.
1467 So instead what we do is construct the number in hex (because
1468 it's easy to get the exact correct value), parse it as a real,
1469 then print it back out as decimal. */
1471 real_from_string (&real
, hex_str
);
1472 real_to_decimal_for_mode (dec_str
, &real
, sizeof (dec_str
), digits
, 0,
1475 /* Assemble the macro in the following fashion
1476 macro = fp_cast [dec_str fp_suffix] */
1477 sprintf (buf1
, "%s%s", dec_str
, fp_suffix
);
1478 sprintf (buf2
, fp_cast
, buf1
);
1479 sprintf (buf1
, "%s=%s", macro
, buf2
);
1481 cpp_define (parse_in
, buf1
);
1484 /* Return a string constant for the suffix for a value of type TYPE
1485 promoted according to the integer promotions. The type must be one
1486 of the standard integer type nodes. */
1489 type_suffix (tree type
)
1491 static const char *const suffixes
[] = { "", "U", "L", "UL", "LL", "ULL" };
1492 int unsigned_suffix
;
1494 int tp
= TYPE_PRECISION (type
);
1496 if (type
== long_long_integer_type_node
1497 || type
== long_long_unsigned_type_node
1498 || tp
> TYPE_PRECISION (long_integer_type_node
))
1500 else if (type
== long_integer_type_node
1501 || type
== long_unsigned_type_node
1502 || tp
> TYPE_PRECISION (integer_type_node
))
1504 else if (type
== integer_type_node
1505 || type
== unsigned_type_node
1506 || type
== short_integer_type_node
1507 || type
== short_unsigned_type_node
1508 || type
== signed_char_type_node
1509 || type
== unsigned_char_type_node
1510 /* ??? "char" is not a signed or unsigned integer type and
1511 so is not permitted for the standard typedefs, but some
1512 systems use it anyway. */
1513 || type
== char_type_node
)
1518 unsigned_suffix
= TYPE_UNSIGNED (type
);
1519 if (TYPE_PRECISION (type
) < TYPE_PRECISION (integer_type_node
))
1520 unsigned_suffix
= 0;
1521 return suffixes
[is_long
* 2 + unsigned_suffix
];
1524 /* Define MACRO as a <stdint.h> constant-suffix macro for TYPE. */
1526 builtin_define_constants (const char *macro
, tree type
)
1531 suffix
= type_suffix (type
);
1535 buf
= (char *) alloca (strlen (macro
) + 6);
1536 sprintf (buf
, "%s(c)=c", macro
);
1540 buf
= (char *) alloca (strlen (macro
) + 9 + strlen (suffix
) + 1);
1541 sprintf (buf
, "%s(c)=c ## %s", macro
, suffix
);
1544 cpp_define (parse_in
, buf
);
1547 /* Define MAX for TYPE based on the precision of the type. */
1550 builtin_define_type_max (const char *macro
, tree type
)
1552 builtin_define_type_minmax (NULL
, macro
, type
);
1555 /* Given a value with COUNT LSBs set, fill BUF with a hexidecimal
1556 representation of that value. For example, a COUNT of 10 would
1560 print_bits_of_hex (char *buf
, int bufsz
, int count
)
1562 gcc_assert (bufsz
> 3);
1567 gcc_assert (count
> 0);
1569 switch (count
% 4) {
1590 gcc_assert (bufsz
> 1);
1595 gcc_assert (bufsz
> 0);
1599 /* Define MIN_MACRO (if not NULL) and MAX_MACRO for TYPE based on the
1600 precision of the type. */
1603 builtin_define_type_minmax (const char *min_macro
, const char *max_macro
,
1606 #define PBOH_SZ (MAX_BITSIZE_MODE_ANY_INT/4+4)
1607 char value
[PBOH_SZ
];
1613 bits
= TYPE_PRECISION (type
) + (TYPE_UNSIGNED (type
) ? 0 : -1);
1615 print_bits_of_hex (value
, PBOH_SZ
, bits
);
1617 suffix
= type_suffix (type
);
1619 buf
= (char *) alloca (strlen (max_macro
) + 1 + strlen (value
)
1620 + strlen (suffix
) + 1);
1621 sprintf (buf
, "%s=%s%s", max_macro
, value
, suffix
);
1623 cpp_define (parse_in
, buf
);
1627 if (TYPE_UNSIGNED (type
))
1629 buf
= (char *) alloca (strlen (min_macro
) + 2 + strlen (suffix
) + 1);
1630 sprintf (buf
, "%s=0%s", min_macro
, suffix
);
1634 buf
= (char *) alloca (strlen (min_macro
) + 3
1635 + strlen (max_macro
) + 6);
1636 sprintf (buf
, "%s=(-%s - 1)", min_macro
, max_macro
);
1638 cpp_define (parse_in
, buf
);
1642 #include "gt-c-family-c-cppbuiltin.h"