gcc-defs.exp (dg-additional-files-options): Extend regsub for dg-additional-files...
[official-gcc.git] / gcc / c-family / c-cppbuiltin.c
blobb9a0f18cd7e5cdc2547a07ce8348996fe5921857
1 /* Define builtin-in macros for the C family front ends.
2 Copyright (C) 2002-2013 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
9 version.
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
14 for more details.
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/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
24 #include "tree.h"
25 #include "version.h"
26 #include "flags.h"
27 #include "c-common.h"
28 #include "c-pragma.h"
29 #include "output.h" /* For user_label_prefix. */
30 #include "debug.h" /* For dwarf2out_do_cfi_asm. */
31 #include "tm_p.h" /* For TARGET_CPU_CPP_BUILTINS & friends. */
32 #include "target.h"
33 #include "common/common-target.h"
34 #include "cpp-id-data.h"
35 #include "cppbuiltin.h"
37 #ifndef TARGET_OS_CPP_BUILTINS
38 # define TARGET_OS_CPP_BUILTINS()
39 #endif
41 #ifndef TARGET_OBJFMT_CPP_BUILTINS
42 # define TARGET_OBJFMT_CPP_BUILTINS()
43 #endif
45 #ifndef REGISTER_PREFIX
46 #define REGISTER_PREFIX ""
47 #endif
49 /* Non-static as some targets don't use it. */
50 void builtin_define_std (const char *) ATTRIBUTE_UNUSED;
51 static void builtin_define_with_int_value (const char *, HOST_WIDE_INT);
52 static void builtin_define_with_hex_fp_value (const char *, tree,
53 int, const char *,
54 const char *,
55 const char *);
56 static void builtin_define_stdint_macros (void);
57 static void builtin_define_constants (const char *, tree);
58 static void builtin_define_type_max (const char *, tree);
59 static void builtin_define_type_minmax (const char *, const char *, tree);
60 static void builtin_define_type_sizeof (const char *, tree);
61 static void builtin_define_float_constants (const char *,
62 const char *,
63 const char *,
64 const char *,
65 tree);
67 /* Return true if MODE provides a fast multiply/add (FMA) builtin function.
68 Originally this function used the fma optab, but that doesn't work with
69 -save-temps, so just rely on the HAVE_fma macros for the standard floating
70 point types. */
72 static bool
73 mode_has_fma (enum machine_mode mode)
75 switch (mode)
77 #ifdef HAVE_fmasf4
78 case SFmode:
79 return !!HAVE_fmasf4;
80 #endif
82 #ifdef HAVE_fmadf4
83 case DFmode:
84 return !!HAVE_fmadf4;
85 #endif
87 #ifdef HAVE_fmaxf4
88 case XFmode:
89 return !!HAVE_fmaxf4;
90 #endif
92 #ifdef HAVE_fmatf4
93 case TFmode:
94 return !!HAVE_fmatf4;
95 #endif
97 default:
98 break;
101 return false;
104 /* Define NAME with value TYPE size_unit. */
105 static void
106 builtin_define_type_sizeof (const char *name, tree type)
108 builtin_define_with_int_value (name,
109 tree_low_cst (TYPE_SIZE_UNIT (type), 1));
112 /* Define the float.h constants for TYPE using NAME_PREFIX, FP_SUFFIX,
113 and FP_CAST. */
114 static void
115 builtin_define_float_constants (const char *name_prefix,
116 const char *fp_suffix,
117 const char *fp_cast,
118 const char *fma_suffix,
119 tree type)
121 /* Used to convert radix-based values to base 10 values in several cases.
123 In the max_exp -> max_10_exp conversion for 128-bit IEEE, we need at
124 least 6 significant digits for correct results. Using the fraction
125 formed by (log(2)*1e6)/(log(10)*1e6) overflows a 32-bit integer as an
126 intermediate; perhaps someone can find a better approximation, in the
127 mean time, I suspect using doubles won't harm the bootstrap here. */
129 const double log10_2 = .30102999566398119521;
130 double log10_b;
131 const struct real_format *fmt;
132 const struct real_format *ldfmt;
134 char name[64], buf[128];
135 int dig, min_10_exp, max_10_exp;
136 int decimal_dig;
137 int type_decimal_dig;
139 fmt = REAL_MODE_FORMAT (TYPE_MODE (type));
140 gcc_assert (fmt->b != 10);
141 ldfmt = REAL_MODE_FORMAT (TYPE_MODE (long_double_type_node));
142 gcc_assert (ldfmt->b != 10);
144 /* The radix of the exponent representation. */
145 if (type == float_type_node)
146 builtin_define_with_int_value ("__FLT_RADIX__", fmt->b);
147 log10_b = log10_2;
149 /* The number of radix digits, p, in the floating-point significand. */
150 sprintf (name, "__%s_MANT_DIG__", name_prefix);
151 builtin_define_with_int_value (name, fmt->p);
153 /* The number of decimal digits, q, such that any floating-point number
154 with q decimal digits can be rounded into a floating-point number with
155 p radix b digits and back again without change to the q decimal digits,
157 p log10 b if b is a power of 10
158 floor((p - 1) log10 b) otherwise
160 dig = (fmt->p - 1) * log10_b;
161 sprintf (name, "__%s_DIG__", name_prefix);
162 builtin_define_with_int_value (name, dig);
164 /* The minimum negative int x such that b**(x-1) is a normalized float. */
165 sprintf (name, "__%s_MIN_EXP__", name_prefix);
166 sprintf (buf, "(%d)", fmt->emin);
167 builtin_define_with_value (name, buf, 0);
169 /* The minimum negative int x such that 10**x is a normalized float,
171 ceil (log10 (b ** (emin - 1)))
172 = ceil (log10 (b) * (emin - 1))
174 Recall that emin is negative, so the integer truncation calculates
175 the ceiling, not the floor, in this case. */
176 min_10_exp = (fmt->emin - 1) * log10_b;
177 sprintf (name, "__%s_MIN_10_EXP__", name_prefix);
178 sprintf (buf, "(%d)", min_10_exp);
179 builtin_define_with_value (name, buf, 0);
181 /* The maximum int x such that b**(x-1) is a representable float. */
182 sprintf (name, "__%s_MAX_EXP__", name_prefix);
183 builtin_define_with_int_value (name, fmt->emax);
185 /* The maximum int x such that 10**x is in the range of representable
186 finite floating-point numbers,
188 floor (log10((1 - b**-p) * b**emax))
189 = floor (log10(1 - b**-p) + log10(b**emax))
190 = floor (log10(1 - b**-p) + log10(b)*emax)
192 The safest thing to do here is to just compute this number. But since
193 we don't link cc1 with libm, we cannot. We could implement log10 here
194 a series expansion, but that seems too much effort because:
196 Note that the first term, for all extant p, is a number exceedingly close
197 to zero, but slightly negative. Note that the second term is an integer
198 scaling an irrational number, and that because of the floor we are only
199 interested in its integral portion.
201 In order for the first term to have any effect on the integral portion
202 of the second term, the second term has to be exceedingly close to an
203 integer itself (e.g. 123.000000000001 or something). Getting a result
204 that close to an integer requires that the irrational multiplicand have
205 a long series of zeros in its expansion, which doesn't occur in the
206 first 20 digits or so of log10(b).
208 Hand-waving aside, crunching all of the sets of constants above by hand
209 does not yield a case for which the first term is significant, which
210 in the end is all that matters. */
211 max_10_exp = fmt->emax * log10_b;
212 sprintf (name, "__%s_MAX_10_EXP__", name_prefix);
213 builtin_define_with_int_value (name, max_10_exp);
215 /* The number of decimal digits, n, such that any floating-point number
216 can be rounded to n decimal digits and back again without change to
217 the value.
219 p * log10(b) if b is a power of 10
220 ceil(1 + p * log10(b)) otherwise
222 The only macro we care about is this number for the widest supported
223 floating type, but we want this value for rendering constants below. */
225 double d_decimal_dig
226 = 1 + (fmt->p < ldfmt->p ? ldfmt->p : fmt->p) * log10_b;
227 decimal_dig = d_decimal_dig;
228 if (decimal_dig < d_decimal_dig)
229 decimal_dig++;
231 /* Similar, for this type rather than long double. */
233 double type_d_decimal_dig = 1 + fmt->p * log10_b;
234 type_decimal_dig = type_d_decimal_dig;
235 if (type_decimal_dig < type_d_decimal_dig)
236 type_decimal_dig++;
238 if (type == long_double_type_node)
239 builtin_define_with_int_value ("__DECIMAL_DIG__", decimal_dig);
240 else
242 sprintf (name, "__%s_DECIMAL_DIG__", name_prefix);
243 builtin_define_with_int_value (name, type_decimal_dig);
246 /* Since, for the supported formats, B is always a power of 2, we
247 construct the following numbers directly as a hexadecimal
248 constants. */
249 get_max_float (fmt, buf, sizeof (buf));
251 sprintf (name, "__%s_MAX__", name_prefix);
252 builtin_define_with_hex_fp_value (name, type, decimal_dig, buf, fp_suffix, fp_cast);
254 /* The minimum normalized positive floating-point number,
255 b**(emin-1). */
256 sprintf (name, "__%s_MIN__", name_prefix);
257 sprintf (buf, "0x1p%d", fmt->emin - 1);
258 builtin_define_with_hex_fp_value (name, type, decimal_dig, buf, fp_suffix, fp_cast);
260 /* The difference between 1 and the least value greater than 1 that is
261 representable in the given floating point type, b**(1-p). */
262 sprintf (name, "__%s_EPSILON__", name_prefix);
263 if (fmt->pnan < fmt->p)
264 /* This is an IBM extended double format, so 1.0 + any double is
265 representable precisely. */
266 sprintf (buf, "0x1p%d", fmt->emin - fmt->p);
267 else
268 sprintf (buf, "0x1p%d", 1 - fmt->p);
269 builtin_define_with_hex_fp_value (name, type, decimal_dig, buf, fp_suffix, fp_cast);
271 /* For C++ std::numeric_limits<T>::denorm_min. The minimum denormalized
272 positive floating-point number, b**(emin-p). Zero for formats that
273 don't support denormals. */
274 sprintf (name, "__%s_DENORM_MIN__", name_prefix);
275 if (fmt->has_denorm)
277 sprintf (buf, "0x1p%d", fmt->emin - fmt->p);
278 builtin_define_with_hex_fp_value (name, type, decimal_dig,
279 buf, fp_suffix, fp_cast);
281 else
283 sprintf (buf, "0.0%s", fp_suffix);
284 builtin_define_with_value (name, buf, 0);
287 sprintf (name, "__%s_HAS_DENORM__", name_prefix);
288 builtin_define_with_value (name, fmt->has_denorm ? "1" : "0", 0);
290 /* For C++ std::numeric_limits<T>::has_infinity. */
291 sprintf (name, "__%s_HAS_INFINITY__", name_prefix);
292 builtin_define_with_int_value (name,
293 MODE_HAS_INFINITIES (TYPE_MODE (type)));
294 /* For C++ std::numeric_limits<T>::has_quiet_NaN. We do not have a
295 predicate to distinguish a target that has both quiet and
296 signalling NaNs from a target that has only quiet NaNs or only
297 signalling NaNs, so we assume that a target that has any kind of
298 NaN has quiet NaNs. */
299 sprintf (name, "__%s_HAS_QUIET_NAN__", name_prefix);
300 builtin_define_with_int_value (name, MODE_HAS_NANS (TYPE_MODE (type)));
302 /* Note whether we have fast FMA. */
303 if (mode_has_fma (TYPE_MODE (type)))
305 sprintf (name, "__FP_FAST_FMA%s", fma_suffix);
306 builtin_define_with_int_value (name, 1);
310 /* Define __DECx__ constants for TYPE using NAME_PREFIX and SUFFIX. */
311 static void
312 builtin_define_decimal_float_constants (const char *name_prefix,
313 const char *suffix,
314 tree type)
316 const struct real_format *fmt;
317 char name[64], buf[128], *p;
318 int digits;
320 fmt = REAL_MODE_FORMAT (TYPE_MODE (type));
322 /* The number of radix digits, p, in the significand. */
323 sprintf (name, "__%s_MANT_DIG__", name_prefix);
324 builtin_define_with_int_value (name, fmt->p);
326 /* The minimum negative int x such that b**(x-1) is a normalized float. */
327 sprintf (name, "__%s_MIN_EXP__", name_prefix);
328 sprintf (buf, "(%d)", fmt->emin);
329 builtin_define_with_value (name, buf, 0);
331 /* The maximum int x such that b**(x-1) is a representable float. */
332 sprintf (name, "__%s_MAX_EXP__", name_prefix);
333 builtin_define_with_int_value (name, fmt->emax);
335 /* Compute the minimum representable value. */
336 sprintf (name, "__%s_MIN__", name_prefix);
337 sprintf (buf, "1E%d%s", fmt->emin - 1, suffix);
338 builtin_define_with_value (name, buf, 0);
340 /* Compute the maximum representable value. */
341 sprintf (name, "__%s_MAX__", name_prefix);
342 p = buf;
343 for (digits = fmt->p; digits; digits--)
345 *p++ = '9';
346 if (digits == fmt->p)
347 *p++ = '.';
349 *p = 0;
350 /* fmt->p plus 1, to account for the decimal point and fmt->emax
351 minus 1 because the digits are nines, not 1.0. */
352 sprintf (&buf[fmt->p + 1], "E%d%s", fmt->emax - 1, suffix);
353 builtin_define_with_value (name, buf, 0);
355 /* Compute epsilon (the difference between 1 and least value greater
356 than 1 representable). */
357 sprintf (name, "__%s_EPSILON__", name_prefix);
358 sprintf (buf, "1E-%d%s", fmt->p - 1, suffix);
359 builtin_define_with_value (name, buf, 0);
361 /* Minimum subnormal positive decimal value. */
362 sprintf (name, "__%s_SUBNORMAL_MIN__", name_prefix);
363 p = buf;
364 for (digits = fmt->p; digits > 1; digits--)
366 *p++ = '0';
367 if (digits == fmt->p)
368 *p++ = '.';
370 *p = 0;
371 sprintf (&buf[fmt->p], "1E%d%s", fmt->emin - 1, suffix);
372 builtin_define_with_value (name, buf, 0);
375 /* Define fixed-point constants for TYPE using NAME_PREFIX and SUFFIX. */
377 static void
378 builtin_define_fixed_point_constants (const char *name_prefix,
379 const char *suffix,
380 tree type)
382 char name[64], buf[256], *new_buf;
383 int i, mod;
385 sprintf (name, "__%s_FBIT__", name_prefix);
386 builtin_define_with_int_value (name, TYPE_FBIT (type));
388 sprintf (name, "__%s_IBIT__", name_prefix);
389 builtin_define_with_int_value (name, TYPE_IBIT (type));
391 /* If there is no suffix, defines are for fixed-point modes.
392 We just return. */
393 if (strcmp (suffix, "") == 0)
394 return;
396 if (TYPE_UNSIGNED (type))
398 sprintf (name, "__%s_MIN__", name_prefix);
399 sprintf (buf, "0.0%s", suffix);
400 builtin_define_with_value (name, buf, 0);
402 else
404 sprintf (name, "__%s_MIN__", name_prefix);
405 if (ALL_ACCUM_MODE_P (TYPE_MODE (type)))
406 sprintf (buf, "(-0X1P%d%s-0X1P%d%s)", TYPE_IBIT (type) - 1, suffix,
407 TYPE_IBIT (type) - 1, suffix);
408 else
409 sprintf (buf, "(-0.5%s-0.5%s)", suffix, suffix);
410 builtin_define_with_value (name, buf, 0);
413 sprintf (name, "__%s_MAX__", name_prefix);
414 sprintf (buf, "0X");
415 new_buf = buf + 2;
416 mod = (TYPE_FBIT (type) + TYPE_IBIT (type)) % 4;
417 if (mod)
418 sprintf (new_buf++, "%x", (1 << mod) - 1);
419 for (i = 0; i < (TYPE_FBIT (type) + TYPE_IBIT (type)) / 4; i++)
420 sprintf (new_buf++, "F");
421 sprintf (new_buf, "P-%d%s", TYPE_FBIT (type), suffix);
422 builtin_define_with_value (name, buf, 0);
424 sprintf (name, "__%s_EPSILON__", name_prefix);
425 sprintf (buf, "0x1P-%d%s", TYPE_FBIT (type), suffix);
426 builtin_define_with_value (name, buf, 0);
429 /* Define macros used by <stdint.h>. */
430 static void
431 builtin_define_stdint_macros (void)
433 builtin_define_type_max ("__INTMAX_MAX__", intmax_type_node);
434 builtin_define_constants ("__INTMAX_C", intmax_type_node);
435 builtin_define_type_max ("__UINTMAX_MAX__", uintmax_type_node);
436 builtin_define_constants ("__UINTMAX_C", uintmax_type_node);
437 if (sig_atomic_type_node)
438 builtin_define_type_minmax ("__SIG_ATOMIC_MIN__", "__SIG_ATOMIC_MAX__",
439 sig_atomic_type_node);
440 if (int8_type_node)
441 builtin_define_type_max ("__INT8_MAX__", int8_type_node);
442 if (int16_type_node)
443 builtin_define_type_max ("__INT16_MAX__", int16_type_node);
444 if (int32_type_node)
445 builtin_define_type_max ("__INT32_MAX__", int32_type_node);
446 if (int64_type_node)
447 builtin_define_type_max ("__INT64_MAX__", int64_type_node);
448 if (uint8_type_node)
449 builtin_define_type_max ("__UINT8_MAX__", uint8_type_node);
450 if (c_uint16_type_node)
451 builtin_define_type_max ("__UINT16_MAX__", c_uint16_type_node);
452 if (c_uint32_type_node)
453 builtin_define_type_max ("__UINT32_MAX__", c_uint32_type_node);
454 if (c_uint64_type_node)
455 builtin_define_type_max ("__UINT64_MAX__", c_uint64_type_node);
456 if (int_least8_type_node)
458 builtin_define_type_max ("__INT_LEAST8_MAX__", int_least8_type_node);
459 builtin_define_constants ("__INT8_C", int_least8_type_node);
461 if (int_least16_type_node)
463 builtin_define_type_max ("__INT_LEAST16_MAX__", int_least16_type_node);
464 builtin_define_constants ("__INT16_C", int_least16_type_node);
466 if (int_least32_type_node)
468 builtin_define_type_max ("__INT_LEAST32_MAX__", int_least32_type_node);
469 builtin_define_constants ("__INT32_C", int_least32_type_node);
471 if (int_least64_type_node)
473 builtin_define_type_max ("__INT_LEAST64_MAX__", int_least64_type_node);
474 builtin_define_constants ("__INT64_C", int_least64_type_node);
476 if (uint_least8_type_node)
478 builtin_define_type_max ("__UINT_LEAST8_MAX__", uint_least8_type_node);
479 builtin_define_constants ("__UINT8_C", uint_least8_type_node);
481 if (uint_least16_type_node)
483 builtin_define_type_max ("__UINT_LEAST16_MAX__", uint_least16_type_node);
484 builtin_define_constants ("__UINT16_C", uint_least16_type_node);
486 if (uint_least32_type_node)
488 builtin_define_type_max ("__UINT_LEAST32_MAX__", uint_least32_type_node);
489 builtin_define_constants ("__UINT32_C", uint_least32_type_node);
491 if (uint_least64_type_node)
493 builtin_define_type_max ("__UINT_LEAST64_MAX__", uint_least64_type_node);
494 builtin_define_constants ("__UINT64_C", uint_least64_type_node);
496 if (int_fast8_type_node)
497 builtin_define_type_max ("__INT_FAST8_MAX__", int_fast8_type_node);
498 if (int_fast16_type_node)
499 builtin_define_type_max ("__INT_FAST16_MAX__", int_fast16_type_node);
500 if (int_fast32_type_node)
501 builtin_define_type_max ("__INT_FAST32_MAX__", int_fast32_type_node);
502 if (int_fast64_type_node)
503 builtin_define_type_max ("__INT_FAST64_MAX__", int_fast64_type_node);
504 if (uint_fast8_type_node)
505 builtin_define_type_max ("__UINT_FAST8_MAX__", uint_fast8_type_node);
506 if (uint_fast16_type_node)
507 builtin_define_type_max ("__UINT_FAST16_MAX__", uint_fast16_type_node);
508 if (uint_fast32_type_node)
509 builtin_define_type_max ("__UINT_FAST32_MAX__", uint_fast32_type_node);
510 if (uint_fast64_type_node)
511 builtin_define_type_max ("__UINT_FAST64_MAX__", uint_fast64_type_node);
512 if (intptr_type_node)
513 builtin_define_type_max ("__INTPTR_MAX__", intptr_type_node);
514 if (uintptr_type_node)
515 builtin_define_type_max ("__UINTPTR_MAX__", uintptr_type_node);
518 /* Adjust the optimization macros when a #pragma GCC optimization is done to
519 reflect the current level. */
520 void
521 c_cpp_builtins_optimize_pragma (cpp_reader *pfile, tree prev_tree,
522 tree cur_tree)
524 struct cl_optimization *prev = TREE_OPTIMIZATION (prev_tree);
525 struct cl_optimization *cur = TREE_OPTIMIZATION (cur_tree);
526 bool prev_fast_math;
527 bool cur_fast_math;
529 /* -undef turns off target-specific built-ins. */
530 if (flag_undef)
531 return;
533 /* Other target-independent built-ins determined by command-line
534 options. */
535 if (!prev->x_optimize_size && cur->x_optimize_size)
536 cpp_define (pfile, "__OPTIMIZE_SIZE__");
537 else if (prev->x_optimize_size && !cur->x_optimize_size)
538 cpp_undef (pfile, "__OPTIMIZE_SIZE__");
540 if (!prev->x_optimize && cur->x_optimize)
541 cpp_define (pfile, "__OPTIMIZE__");
542 else if (prev->x_optimize && !cur->x_optimize)
543 cpp_undef (pfile, "__OPTIMIZE__");
545 prev_fast_math = fast_math_flags_struct_set_p (prev);
546 cur_fast_math = fast_math_flags_struct_set_p (cur);
547 if (!prev_fast_math && cur_fast_math)
548 cpp_define (pfile, "__FAST_MATH__");
549 else if (prev_fast_math && !cur_fast_math)
550 cpp_undef (pfile, "__FAST_MATH__");
552 if (!prev->x_flag_signaling_nans && cur->x_flag_signaling_nans)
553 cpp_define (pfile, "__SUPPORT_SNAN__");
554 else if (prev->x_flag_signaling_nans && !cur->x_flag_signaling_nans)
555 cpp_undef (pfile, "__SUPPORT_SNAN__");
557 if (!prev->x_flag_finite_math_only && cur->x_flag_finite_math_only)
559 cpp_undef (pfile, "__FINITE_MATH_ONLY__");
560 cpp_define (pfile, "__FINITE_MATH_ONLY__=1");
562 else if (prev->x_flag_finite_math_only && !cur->x_flag_finite_math_only)
564 cpp_undef (pfile, "__FINITE_MATH_ONLY__");
565 cpp_define (pfile, "__FINITE_MATH_ONLY__=0");
570 /* This function will emit cpp macros to indicate the presence of various lock
571 free atomic operations. */
573 static void
574 cpp_atomic_builtins (cpp_reader *pfile)
576 /* Set a flag for each size of object that compare and swap exists for up to
577 a 16 byte object. */
578 #define SWAP_LIMIT 17
579 bool have_swap[SWAP_LIMIT];
580 unsigned int psize;
582 /* Clear the map of sizes compare_and swap exists for. */
583 memset (have_swap, 0, sizeof (have_swap));
585 /* Tell source code if the compiler makes sync_compare_and_swap
586 builtins available. */
587 #ifndef HAVE_sync_compare_and_swapqi
588 #define HAVE_sync_compare_and_swapqi 0
589 #endif
590 #ifndef HAVE_atomic_compare_and_swapqi
591 #define HAVE_atomic_compare_and_swapqi 0
592 #endif
594 if (HAVE_sync_compare_and_swapqi || HAVE_atomic_compare_and_swapqi)
596 cpp_define (pfile, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_1");
597 have_swap[1] = true;
600 #ifndef HAVE_sync_compare_and_swaphi
601 #define HAVE_sync_compare_and_swaphi 0
602 #endif
603 #ifndef HAVE_atomic_compare_and_swaphi
604 #define HAVE_atomic_compare_and_swaphi 0
605 #endif
606 if (HAVE_sync_compare_and_swaphi || HAVE_atomic_compare_and_swaphi)
608 cpp_define (pfile, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_2");
609 have_swap[2] = true;
612 #ifndef HAVE_sync_compare_and_swapsi
613 #define HAVE_sync_compare_and_swapsi 0
614 #endif
615 #ifndef HAVE_atomic_compare_and_swapsi
616 #define HAVE_atomic_compare_and_swapsi 0
617 #endif
618 if (HAVE_sync_compare_and_swapsi || HAVE_atomic_compare_and_swapsi)
620 cpp_define (pfile, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4");
621 have_swap[4] = true;
624 #ifndef HAVE_sync_compare_and_swapdi
625 #define HAVE_sync_compare_and_swapdi 0
626 #endif
627 #ifndef HAVE_atomic_compare_and_swapdi
628 #define HAVE_atomic_compare_and_swapdi 0
629 #endif
630 if (HAVE_sync_compare_and_swapdi || HAVE_atomic_compare_and_swapdi)
632 cpp_define (pfile, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_8");
633 have_swap[8] = true;
636 #ifndef HAVE_sync_compare_and_swapti
637 #define HAVE_sync_compare_and_swapti 0
638 #endif
639 #ifndef HAVE_atomic_compare_and_swapti
640 #define HAVE_atomic_compare_and_swapti 0
641 #endif
642 if (HAVE_sync_compare_and_swapti || HAVE_atomic_compare_and_swapti)
644 cpp_define (pfile, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_16");
645 have_swap[16] = true;
648 /* Tell the source code about various types. These map to the C++11 and C11
649 macros where 2 indicates lock-free always, and 1 indicates sometimes
650 lock free. */
651 #define SIZEOF_NODE(T) (tree_low_cst (TYPE_SIZE_UNIT (T), 1))
652 #define SWAP_INDEX(T) ((SIZEOF_NODE (T) < SWAP_LIMIT) ? SIZEOF_NODE (T) : 0)
653 builtin_define_with_int_value ("__GCC_ATOMIC_BOOL_LOCK_FREE",
654 (have_swap[SWAP_INDEX (boolean_type_node)]? 2 : 1));
655 builtin_define_with_int_value ("__GCC_ATOMIC_CHAR_LOCK_FREE",
656 (have_swap[SWAP_INDEX (signed_char_type_node)]? 2 : 1));
657 builtin_define_with_int_value ("__GCC_ATOMIC_CHAR16_T_LOCK_FREE",
658 (have_swap[SWAP_INDEX (char16_type_node)]? 2 : 1));
659 builtin_define_with_int_value ("__GCC_ATOMIC_CHAR32_T_LOCK_FREE",
660 (have_swap[SWAP_INDEX (char32_type_node)]? 2 : 1));
661 builtin_define_with_int_value ("__GCC_ATOMIC_WCHAR_T_LOCK_FREE",
662 (have_swap[SWAP_INDEX (wchar_type_node)]? 2 : 1));
663 builtin_define_with_int_value ("__GCC_ATOMIC_SHORT_LOCK_FREE",
664 (have_swap[SWAP_INDEX (short_integer_type_node)]? 2 : 1));
665 builtin_define_with_int_value ("__GCC_ATOMIC_INT_LOCK_FREE",
666 (have_swap[SWAP_INDEX (integer_type_node)]? 2 : 1));
667 builtin_define_with_int_value ("__GCC_ATOMIC_LONG_LOCK_FREE",
668 (have_swap[SWAP_INDEX (long_integer_type_node)]? 2 : 1));
669 builtin_define_with_int_value ("__GCC_ATOMIC_LLONG_LOCK_FREE",
670 (have_swap[SWAP_INDEX (long_long_integer_type_node)]? 2 : 1));
672 /* If we're dealing with a "set" value that doesn't exactly correspond
673 to a boolean truth value, let the library work around that. */
674 builtin_define_with_int_value ("__GCC_ATOMIC_TEST_AND_SET_TRUEVAL",
675 targetm.atomic_test_and_set_trueval);
677 /* ptr_type_node can't be used here since ptr_mode is only set when
678 toplev calls backend_init which is not done with -E or pch. */
679 psize = POINTER_SIZE / BITS_PER_UNIT;
680 if (psize >= SWAP_LIMIT)
681 psize = 0;
682 builtin_define_with_int_value ("__GCC_ATOMIC_POINTER_LOCK_FREE",
683 (have_swap[psize]? 2 : 1));
686 /* Return the value for __GCC_IEC_559. */
687 static int
688 cpp_iec_559_value (void)
690 /* The default is support for IEEE 754-2008. */
691 int ret = 2;
693 /* float and double must be binary32 and binary64. If they are but
694 with reversed NaN convention, at most IEEE 754-1985 is
695 supported. */
696 const struct real_format *ffmt
697 = REAL_MODE_FORMAT (TYPE_MODE (float_type_node));
698 const struct real_format *dfmt
699 = REAL_MODE_FORMAT (TYPE_MODE (double_type_node));
700 if (!ffmt->qnan_msb_set || !dfmt->qnan_msb_set)
701 ret = 1;
702 if (ffmt->b != 2
703 || ffmt->p != 24
704 || ffmt->pnan != 24
705 || ffmt->emin != -125
706 || ffmt->emax != 128
707 || ffmt->signbit_rw != 31
708 || ffmt->round_towards_zero
709 || !ffmt->has_sign_dependent_rounding
710 || !ffmt->has_nans
711 || !ffmt->has_inf
712 || !ffmt->has_denorm
713 || !ffmt->has_signed_zero
714 || dfmt->b != 2
715 || dfmt->p != 53
716 || dfmt->pnan != 53
717 || dfmt->emin != -1021
718 || dfmt->emax != 1024
719 || dfmt->signbit_rw != 63
720 || dfmt->round_towards_zero
721 || !dfmt->has_sign_dependent_rounding
722 || !dfmt->has_nans
723 || !dfmt->has_inf
724 || !dfmt->has_denorm
725 || !dfmt->has_signed_zero)
726 ret = 0;
728 /* In strict C standards conformance mode, consider unpredictable
729 excess precision to mean lack of IEEE 754 support. The same
730 applies to unpredictable contraction. For C++, and outside
731 strict conformance mode, do not consider these options to mean
732 lack of IEEE 754 support. */
733 if (flag_iso
734 && !c_dialect_cxx ()
735 && TARGET_FLT_EVAL_METHOD != 0
736 && flag_excess_precision_cmdline != EXCESS_PRECISION_STANDARD)
737 ret = 0;
738 if (flag_iso
739 && !c_dialect_cxx ()
740 && flag_fp_contract_mode == FP_CONTRACT_FAST)
741 ret = 0;
743 /* Various options are contrary to IEEE 754 semantics. */
744 if (flag_unsafe_math_optimizations
745 || flag_associative_math
746 || flag_reciprocal_math
747 || flag_finite_math_only
748 || !flag_signed_zeros
749 || flag_single_precision_constant)
750 ret = 0;
752 /* If the target does not support IEEE 754 exceptions and rounding
753 modes, consider IEEE 754 support to be absent. */
754 if (!targetm.float_exceptions_rounding_supported_p ())
755 ret = 0;
757 return ret;
760 /* Return the value for __GCC_IEC_559_COMPLEX. */
761 static int
762 cpp_iec_559_complex_value (void)
764 /* The value is no bigger than that of __GCC_IEC_559. */
765 int ret = cpp_iec_559_value ();
767 /* Some options are contrary to the required default state of the
768 CX_LIMITED_RANGE pragma. */
769 if (flag_complex_method != 2)
770 ret = 0;
772 return ret;
775 /* Hook that registers front end and target-specific built-ins. */
776 void
777 c_cpp_builtins (cpp_reader *pfile)
779 /* -undef turns off target-specific built-ins. */
780 if (flag_undef)
781 return;
783 define_language_independent_builtin_macros (pfile);
785 if (c_dialect_cxx ())
787 int major;
788 parse_basever (&major, NULL, NULL);
789 cpp_define_formatted (pfile, "__GNUG__=%d", major);
792 /* For stddef.h. They require macros defined in c-common.c. */
793 c_stddef_cpp_builtins ();
795 if (c_dialect_cxx ())
797 if (flag_weak && SUPPORTS_ONE_ONLY)
798 cpp_define (pfile, "__GXX_WEAK__=1");
799 else
800 cpp_define (pfile, "__GXX_WEAK__=0");
801 if (warn_deprecated)
802 cpp_define (pfile, "__DEPRECATED");
803 if (flag_rtti)
804 cpp_define (pfile, "__GXX_RTTI");
805 if (cxx_dialect >= cxx11)
806 cpp_define (pfile, "__GXX_EXPERIMENTAL_CXX0X__");
808 /* Note that we define this for C as well, so that we know if
809 __attribute__((cleanup)) will interface with EH. */
810 if (flag_exceptions)
811 cpp_define (pfile, "__EXCEPTIONS");
813 /* Represents the C++ ABI version, always defined so it can be used while
814 preprocessing C and assembler. */
815 if (flag_abi_version == 0)
816 /* Use a very large value so that:
818 #if __GXX_ABI_VERSION >= <value for version X>
820 will work whether the user explicitly says "-fabi-version=x" or
821 "-fabi-version=0". Do not use INT_MAX because that will be
822 different from system to system. */
823 builtin_define_with_int_value ("__GXX_ABI_VERSION", 999999);
824 else if (flag_abi_version == 1)
825 /* Due to a historical accident, this version had the value
826 "102". */
827 builtin_define_with_int_value ("__GXX_ABI_VERSION", 102);
828 else
829 /* Newer versions have values 1002, 1003, .... */
830 builtin_define_with_int_value ("__GXX_ABI_VERSION",
831 1000 + flag_abi_version);
833 /* libgcc needs to know this. */
834 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ)
835 cpp_define (pfile, "__USING_SJLJ_EXCEPTIONS__");
837 /* limits.h and stdint.h need to know these. */
838 builtin_define_type_max ("__SCHAR_MAX__", signed_char_type_node);
839 builtin_define_type_max ("__SHRT_MAX__", short_integer_type_node);
840 builtin_define_type_max ("__INT_MAX__", integer_type_node);
841 builtin_define_type_max ("__LONG_MAX__", long_integer_type_node);
842 builtin_define_type_max ("__LONG_LONG_MAX__", long_long_integer_type_node);
843 builtin_define_type_minmax ("__WCHAR_MIN__", "__WCHAR_MAX__",
844 underlying_wchar_type_node);
845 builtin_define_type_minmax ("__WINT_MIN__", "__WINT_MAX__", wint_type_node);
846 builtin_define_type_max ("__PTRDIFF_MAX__", ptrdiff_type_node);
847 builtin_define_type_max ("__SIZE_MAX__", size_type_node);
849 /* stdint.h and the testsuite need to know these. */
850 builtin_define_stdint_macros ();
852 /* Provide information for library headers to determine whether to
853 define macros such as __STDC_IEC_559__ and
854 __STDC_IEC_559_COMPLEX__. */
855 builtin_define_with_int_value ("__GCC_IEC_559", cpp_iec_559_value ());
856 builtin_define_with_int_value ("__GCC_IEC_559_COMPLEX",
857 cpp_iec_559_complex_value ());
859 /* float.h needs to know this. */
860 builtin_define_with_int_value ("__FLT_EVAL_METHOD__",
861 TARGET_FLT_EVAL_METHOD);
863 /* And decfloat.h needs this. */
864 builtin_define_with_int_value ("__DEC_EVAL_METHOD__",
865 TARGET_DEC_EVAL_METHOD);
867 builtin_define_float_constants ("FLT", "F", "%s", "F", float_type_node);
868 /* Cast the double precision constants. This is needed when single
869 precision constants are specified or when pragma FLOAT_CONST_DECIMAL64
870 is used. The correct result is computed by the compiler when using
871 macros that include a cast. We use a different cast for C++ to avoid
872 problems with -Wold-style-cast. */
873 builtin_define_float_constants ("DBL", "L",
874 (c_dialect_cxx ()
875 ? "double(%s)"
876 : "((double)%s)"),
877 "", double_type_node);
878 builtin_define_float_constants ("LDBL", "L", "%s", "L",
879 long_double_type_node);
881 /* For decfloat.h. */
882 builtin_define_decimal_float_constants ("DEC32", "DF", dfloat32_type_node);
883 builtin_define_decimal_float_constants ("DEC64", "DD", dfloat64_type_node);
884 builtin_define_decimal_float_constants ("DEC128", "DL", dfloat128_type_node);
886 /* For fixed-point fibt, ibit, max, min, and epsilon. */
887 if (targetm.fixed_point_supported_p ())
889 builtin_define_fixed_point_constants ("SFRACT", "HR",
890 short_fract_type_node);
891 builtin_define_fixed_point_constants ("USFRACT", "UHR",
892 unsigned_short_fract_type_node);
893 builtin_define_fixed_point_constants ("FRACT", "R",
894 fract_type_node);
895 builtin_define_fixed_point_constants ("UFRACT", "UR",
896 unsigned_fract_type_node);
897 builtin_define_fixed_point_constants ("LFRACT", "LR",
898 long_fract_type_node);
899 builtin_define_fixed_point_constants ("ULFRACT", "ULR",
900 unsigned_long_fract_type_node);
901 builtin_define_fixed_point_constants ("LLFRACT", "LLR",
902 long_long_fract_type_node);
903 builtin_define_fixed_point_constants ("ULLFRACT", "ULLR",
904 unsigned_long_long_fract_type_node);
905 builtin_define_fixed_point_constants ("SACCUM", "HK",
906 short_accum_type_node);
907 builtin_define_fixed_point_constants ("USACCUM", "UHK",
908 unsigned_short_accum_type_node);
909 builtin_define_fixed_point_constants ("ACCUM", "K",
910 accum_type_node);
911 builtin_define_fixed_point_constants ("UACCUM", "UK",
912 unsigned_accum_type_node);
913 builtin_define_fixed_point_constants ("LACCUM", "LK",
914 long_accum_type_node);
915 builtin_define_fixed_point_constants ("ULACCUM", "ULK",
916 unsigned_long_accum_type_node);
917 builtin_define_fixed_point_constants ("LLACCUM", "LLK",
918 long_long_accum_type_node);
919 builtin_define_fixed_point_constants ("ULLACCUM", "ULLK",
920 unsigned_long_long_accum_type_node);
922 builtin_define_fixed_point_constants ("QQ", "", qq_type_node);
923 builtin_define_fixed_point_constants ("HQ", "", hq_type_node);
924 builtin_define_fixed_point_constants ("SQ", "", sq_type_node);
925 builtin_define_fixed_point_constants ("DQ", "", dq_type_node);
926 builtin_define_fixed_point_constants ("TQ", "", tq_type_node);
927 builtin_define_fixed_point_constants ("UQQ", "", uqq_type_node);
928 builtin_define_fixed_point_constants ("UHQ", "", uhq_type_node);
929 builtin_define_fixed_point_constants ("USQ", "", usq_type_node);
930 builtin_define_fixed_point_constants ("UDQ", "", udq_type_node);
931 builtin_define_fixed_point_constants ("UTQ", "", utq_type_node);
932 builtin_define_fixed_point_constants ("HA", "", ha_type_node);
933 builtin_define_fixed_point_constants ("SA", "", sa_type_node);
934 builtin_define_fixed_point_constants ("DA", "", da_type_node);
935 builtin_define_fixed_point_constants ("TA", "", ta_type_node);
936 builtin_define_fixed_point_constants ("UHA", "", uha_type_node);
937 builtin_define_fixed_point_constants ("USA", "", usa_type_node);
938 builtin_define_fixed_point_constants ("UDA", "", uda_type_node);
939 builtin_define_fixed_point_constants ("UTA", "", uta_type_node);
942 /* For libgcc-internal use only. */
943 if (flag_building_libgcc)
944 /* For libgcc enable-execute-stack.c. */
945 builtin_define_with_int_value ("__LIBGCC_TRAMPOLINE_SIZE__",
946 TRAMPOLINE_SIZE);
948 /* For use in assembly language. */
949 builtin_define_with_value ("__REGISTER_PREFIX__", REGISTER_PREFIX, 0);
950 builtin_define_with_value ("__USER_LABEL_PREFIX__", user_label_prefix, 0);
952 /* Misc. */
953 if (flag_gnu89_inline)
954 cpp_define (pfile, "__GNUC_GNU_INLINE__");
955 else
956 cpp_define (pfile, "__GNUC_STDC_INLINE__");
958 if (flag_no_inline)
959 cpp_define (pfile, "__NO_INLINE__");
961 if (flag_iso)
962 cpp_define (pfile, "__STRICT_ANSI__");
964 if (!flag_signed_char)
965 cpp_define (pfile, "__CHAR_UNSIGNED__");
967 if (c_dialect_cxx () && TYPE_UNSIGNED (wchar_type_node))
968 cpp_define (pfile, "__WCHAR_UNSIGNED__");
970 cpp_atomic_builtins (pfile);
972 #ifdef DWARF2_UNWIND_INFO
973 if (dwarf2out_do_cfi_asm ())
974 cpp_define (pfile, "__GCC_HAVE_DWARF2_CFI_ASM");
975 #endif
977 /* Make the choice of ObjC runtime visible to source code. */
978 if (c_dialect_objc () && flag_next_runtime)
979 cpp_define (pfile, "__NEXT_RUNTIME__");
981 /* Show the availability of some target pragmas. */
982 cpp_define (pfile, "__PRAGMA_REDEFINE_EXTNAME");
984 /* Make the choice of the stack protector runtime visible to source code.
985 The macro names and values here were chosen for compatibility with an
986 earlier implementation, i.e. ProPolice. */
987 if (flag_stack_protect == 3)
988 cpp_define (pfile, "__SSP_STRONG__=3");
989 if (flag_stack_protect == 2)
990 cpp_define (pfile, "__SSP_ALL__=2");
991 else if (flag_stack_protect == 1)
992 cpp_define (pfile, "__SSP__=1");
994 if (flag_openmp)
995 cpp_define (pfile, "_OPENMP=201307");
997 if (int128_integer_type_node != NULL_TREE)
998 builtin_define_type_sizeof ("__SIZEOF_INT128__",
999 int128_integer_type_node);
1000 builtin_define_type_sizeof ("__SIZEOF_WCHAR_T__", wchar_type_node);
1001 builtin_define_type_sizeof ("__SIZEOF_WINT_T__", wint_type_node);
1002 builtin_define_type_sizeof ("__SIZEOF_PTRDIFF_T__",
1003 unsigned_ptrdiff_type_node);
1005 /* A straightforward target hook doesn't work, because of problems
1006 linking that hook's body when part of non-C front ends. */
1007 # define preprocessing_asm_p() (cpp_get_options (pfile)->lang == CLK_ASM)
1008 # define preprocessing_trad_p() (cpp_get_options (pfile)->traditional)
1009 # define builtin_define(TXT) cpp_define (pfile, TXT)
1010 # define builtin_assert(TXT) cpp_assert (pfile, TXT)
1011 TARGET_CPU_CPP_BUILTINS ();
1012 TARGET_OS_CPP_BUILTINS ();
1013 TARGET_OBJFMT_CPP_BUILTINS ();
1015 /* Support the __declspec keyword by turning them into attributes.
1016 Note that the current way we do this may result in a collision
1017 with predefined attributes later on. This can be solved by using
1018 one attribute, say __declspec__, and passing args to it. The
1019 problem with that approach is that args are not accumulated: each
1020 new appearance would clobber any existing args. */
1021 if (TARGET_DECLSPEC)
1022 builtin_define ("__declspec(x)=__attribute__((x))");
1024 /* If decimal floating point is supported, tell the user if the
1025 alternate format (BID) is used instead of the standard (DPD)
1026 format. */
1027 if (ENABLE_DECIMAL_FLOAT && ENABLE_DECIMAL_BID_FORMAT)
1028 cpp_define (pfile, "__DECIMAL_BID_FORMAT__");
1031 /* Pass an object-like macro. If it doesn't lie in the user's
1032 namespace, defines it unconditionally. Otherwise define a version
1033 with two leading underscores, and another version with two leading
1034 and trailing underscores, and define the original only if an ISO
1035 standard was not nominated.
1037 e.g. passing "unix" defines "__unix", "__unix__" and possibly
1038 "unix". Passing "_mips" defines "__mips", "__mips__" and possibly
1039 "_mips". */
1040 void
1041 builtin_define_std (const char *macro)
1043 size_t len = strlen (macro);
1044 char *buff = (char *) alloca (len + 5);
1045 char *p = buff + 2;
1046 char *q = p + len;
1048 /* prepend __ (or maybe just _) if in user's namespace. */
1049 memcpy (p, macro, len + 1);
1050 if (!( *p == '_' && (p[1] == '_' || ISUPPER (p[1]))))
1052 if (*p != '_')
1053 *--p = '_';
1054 if (p[1] != '_')
1055 *--p = '_';
1057 cpp_define (parse_in, p);
1059 /* If it was in user's namespace... */
1060 if (p != buff + 2)
1062 /* Define the macro with leading and following __. */
1063 if (q[-1] != '_')
1064 *q++ = '_';
1065 if (q[-2] != '_')
1066 *q++ = '_';
1067 *q = '\0';
1068 cpp_define (parse_in, p);
1070 /* Finally, define the original macro if permitted. */
1071 if (!flag_iso)
1072 cpp_define (parse_in, macro);
1076 /* Pass an object-like macro and a value to define it to. The third
1077 parameter says whether or not to turn the value into a string
1078 constant. */
1079 void
1080 builtin_define_with_value (const char *macro, const char *expansion, int is_str)
1082 char *buf;
1083 size_t mlen = strlen (macro);
1084 size_t elen = strlen (expansion);
1085 size_t extra = 2; /* space for an = and a NUL */
1087 if (is_str)
1088 extra += 2; /* space for two quote marks */
1090 buf = (char *) alloca (mlen + elen + extra);
1091 if (is_str)
1092 sprintf (buf, "%s=\"%s\"", macro, expansion);
1093 else
1094 sprintf (buf, "%s=%s", macro, expansion);
1096 cpp_define (parse_in, buf);
1100 /* Pass an object-like macro and an integer value to define it to. */
1101 static void
1102 builtin_define_with_int_value (const char *macro, HOST_WIDE_INT value)
1104 char *buf;
1105 size_t mlen = strlen (macro);
1106 size_t vlen = 18;
1107 size_t extra = 2; /* space for = and NUL. */
1109 buf = (char *) alloca (mlen + vlen + extra);
1110 memcpy (buf, macro, mlen);
1111 buf[mlen] = '=';
1112 sprintf (buf + mlen + 1, HOST_WIDE_INT_PRINT_DEC, value);
1114 cpp_define (parse_in, buf);
1117 /* builtin_define_with_hex_fp_value is very expensive, so the following
1118 array and function allows it to be done lazily when __DBL_MAX__
1119 etc. is first used. */
1121 struct GTY(()) lazy_hex_fp_value_struct
1123 const char *hex_str;
1124 cpp_macro *macro;
1125 enum machine_mode mode;
1126 int digits;
1127 const char *fp_suffix;
1129 static GTY(()) struct lazy_hex_fp_value_struct lazy_hex_fp_values[12];
1130 static GTY(()) int lazy_hex_fp_value_count;
1132 static bool
1133 lazy_hex_fp_value (cpp_reader *pfile ATTRIBUTE_UNUSED,
1134 cpp_hashnode *node)
1136 REAL_VALUE_TYPE real;
1137 char dec_str[64], buf1[256];
1138 unsigned int idx;
1139 if (node->value.builtin < BT_FIRST_USER
1140 || (int) node->value.builtin >= BT_FIRST_USER + lazy_hex_fp_value_count)
1141 return false;
1143 idx = node->value.builtin - BT_FIRST_USER;
1144 real_from_string (&real, lazy_hex_fp_values[idx].hex_str);
1145 real_to_decimal_for_mode (dec_str, &real, sizeof (dec_str),
1146 lazy_hex_fp_values[idx].digits, 0,
1147 lazy_hex_fp_values[idx].mode);
1149 sprintf (buf1, "%s%s", dec_str, lazy_hex_fp_values[idx].fp_suffix);
1150 node->flags &= ~(NODE_BUILTIN | NODE_USED);
1151 node->value.macro = lazy_hex_fp_values[idx].macro;
1152 for (idx = 0; idx < node->value.macro->count; idx++)
1153 if (node->value.macro->exp.tokens[idx].type == CPP_NUMBER)
1154 break;
1155 gcc_assert (idx < node->value.macro->count);
1156 node->value.macro->exp.tokens[idx].val.str.len = strlen (buf1);
1157 node->value.macro->exp.tokens[idx].val.str.text
1158 = (const unsigned char *) ggc_strdup (buf1);
1159 return true;
1162 /* Pass an object-like macro a hexadecimal floating-point value. */
1163 static void
1164 builtin_define_with_hex_fp_value (const char *macro,
1165 tree type, int digits,
1166 const char *hex_str,
1167 const char *fp_suffix,
1168 const char *fp_cast)
1170 REAL_VALUE_TYPE real;
1171 char dec_str[64], buf1[256], buf2[256];
1173 /* This is very expensive, so if possible expand them lazily. */
1174 if (lazy_hex_fp_value_count < 12
1175 && flag_dump_macros == 0
1176 && !cpp_get_options (parse_in)->traditional)
1178 struct cpp_hashnode *node;
1179 if (lazy_hex_fp_value_count == 0)
1180 cpp_get_callbacks (parse_in)->user_builtin_macro = lazy_hex_fp_value;
1181 sprintf (buf2, fp_cast, "1.1");
1182 sprintf (buf1, "%s=%s", macro, buf2);
1183 cpp_define (parse_in, buf1);
1184 node = C_CPP_HASHNODE (get_identifier (macro));
1185 lazy_hex_fp_values[lazy_hex_fp_value_count].hex_str
1186 = ggc_strdup (hex_str);
1187 lazy_hex_fp_values[lazy_hex_fp_value_count].mode = TYPE_MODE (type);
1188 lazy_hex_fp_values[lazy_hex_fp_value_count].digits = digits;
1189 lazy_hex_fp_values[lazy_hex_fp_value_count].fp_suffix = fp_suffix;
1190 lazy_hex_fp_values[lazy_hex_fp_value_count].macro = node->value.macro;
1191 node->flags |= NODE_BUILTIN;
1192 node->value.builtin
1193 = (enum cpp_builtin_type) (BT_FIRST_USER + lazy_hex_fp_value_count);
1194 lazy_hex_fp_value_count++;
1195 return;
1198 /* Hex values are really cool and convenient, except that they're
1199 not supported in strict ISO C90 mode. First, the "p-" sequence
1200 is not valid as part of a preprocessor number. Second, we get a
1201 pedwarn from the preprocessor, which has no context, so we can't
1202 suppress the warning with __extension__.
1204 So instead what we do is construct the number in hex (because
1205 it's easy to get the exact correct value), parse it as a real,
1206 then print it back out as decimal. */
1208 real_from_string (&real, hex_str);
1209 real_to_decimal_for_mode (dec_str, &real, sizeof (dec_str), digits, 0,
1210 TYPE_MODE (type));
1212 /* Assemble the macro in the following fashion
1213 macro = fp_cast [dec_str fp_suffix] */
1214 sprintf (buf1, "%s%s", dec_str, fp_suffix);
1215 sprintf (buf2, fp_cast, buf1);
1216 sprintf (buf1, "%s=%s", macro, buf2);
1218 cpp_define (parse_in, buf1);
1221 /* Return a string constant for the suffix for a value of type TYPE
1222 promoted according to the integer promotions. The type must be one
1223 of the standard integer type nodes. */
1225 static const char *
1226 type_suffix (tree type)
1228 static const char *const suffixes[] = { "", "U", "L", "UL", "LL", "ULL" };
1229 int unsigned_suffix;
1230 int is_long;
1232 if (type == long_long_integer_type_node
1233 || type == long_long_unsigned_type_node)
1234 is_long = 2;
1235 else if (type == long_integer_type_node
1236 || type == long_unsigned_type_node)
1237 is_long = 1;
1238 else if (type == integer_type_node
1239 || type == unsigned_type_node
1240 || type == short_integer_type_node
1241 || type == short_unsigned_type_node
1242 || type == signed_char_type_node
1243 || type == unsigned_char_type_node
1244 /* ??? "char" is not a signed or unsigned integer type and
1245 so is not permitted for the standard typedefs, but some
1246 systems use it anyway. */
1247 || type == char_type_node)
1248 is_long = 0;
1249 else
1250 gcc_unreachable ();
1252 unsigned_suffix = TYPE_UNSIGNED (type);
1253 if (TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
1254 unsigned_suffix = 0;
1255 return suffixes[is_long * 2 + unsigned_suffix];
1258 /* Define MACRO as a <stdint.h> constant-suffix macro for TYPE. */
1259 static void
1260 builtin_define_constants (const char *macro, tree type)
1262 const char *suffix;
1263 char *buf;
1265 suffix = type_suffix (type);
1267 if (suffix[0] == 0)
1269 buf = (char *) alloca (strlen (macro) + 6);
1270 sprintf (buf, "%s(c)=c", macro);
1272 else
1274 buf = (char *) alloca (strlen (macro) + 9 + strlen (suffix) + 1);
1275 sprintf (buf, "%s(c)=c ## %s", macro, suffix);
1278 cpp_define (parse_in, buf);
1281 /* Define MAX for TYPE based on the precision of the type. */
1283 static void
1284 builtin_define_type_max (const char *macro, tree type)
1286 builtin_define_type_minmax (NULL, macro, type);
1289 /* Define MIN_MACRO (if not NULL) and MAX_MACRO for TYPE based on the
1290 precision of the type. */
1292 static void
1293 builtin_define_type_minmax (const char *min_macro, const char *max_macro,
1294 tree type)
1296 static const char *const values[]
1297 = { "127", "255",
1298 "32767", "65535",
1299 "2147483647", "4294967295",
1300 "9223372036854775807", "18446744073709551615",
1301 "170141183460469231731687303715884105727",
1302 "340282366920938463463374607431768211455" };
1304 const char *value, *suffix;
1305 char *buf;
1306 size_t idx;
1308 /* Pre-rendering the values mean we don't have to futz with printing a
1309 multi-word decimal value. There are also a very limited number of
1310 precisions that we support, so it's really a waste of time. */
1311 switch (TYPE_PRECISION (type))
1313 case 8: idx = 0; break;
1314 case 16: idx = 2; break;
1315 case 32: idx = 4; break;
1316 case 64: idx = 6; break;
1317 case 128: idx = 8; break;
1318 default: gcc_unreachable ();
1321 value = values[idx + TYPE_UNSIGNED (type)];
1322 suffix = type_suffix (type);
1324 buf = (char *) alloca (strlen (max_macro) + 1 + strlen (value)
1325 + strlen (suffix) + 1);
1326 sprintf (buf, "%s=%s%s", max_macro, value, suffix);
1328 cpp_define (parse_in, buf);
1330 if (min_macro)
1332 if (TYPE_UNSIGNED (type))
1334 buf = (char *) alloca (strlen (min_macro) + 2 + strlen (suffix) + 1);
1335 sprintf (buf, "%s=0%s", min_macro, suffix);
1337 else
1339 buf = (char *) alloca (strlen (min_macro) + 3
1340 + strlen (max_macro) + 6);
1341 sprintf (buf, "%s=(-%s - 1)", min_macro, max_macro);
1343 cpp_define (parse_in, buf);
1347 #include "gt-c-family-c-cppbuiltin.h"