Daily bump.
[official-gcc.git] / gcc / c-family / c-cppbuiltin.c
blob0e45a576e9b180c4ab474f94bc8166a9f0880ea7
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
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 "alias.h"
25 #include "tree.h"
26 #include "stor-layout.h"
27 #include "stringpool.h"
28 #include "version.h"
29 #include "flags.h"
30 #include "c-common.h"
31 #include "c-pragma.h"
32 #include "output.h" /* For user_label_prefix. */
33 #include "debug.h" /* For dwarf2out_do_cfi_asm. */
34 #include "tm_p.h" /* For TARGET_CPU_CPP_BUILTINS & friends. */
35 #include "target.h"
36 #include "common/common-target.h"
37 #include "cpp-id-data.h"
38 #include "cppbuiltin.h"
40 #ifndef TARGET_OS_CPP_BUILTINS
41 # define TARGET_OS_CPP_BUILTINS()
42 #endif
44 #ifndef TARGET_OBJFMT_CPP_BUILTINS
45 # define TARGET_OBJFMT_CPP_BUILTINS()
46 #endif
48 #ifndef REGISTER_PREFIX
49 #define REGISTER_PREFIX ""
50 #endif
52 /* Non-static as some targets don't use it. */
53 static void builtin_define_with_hex_fp_value (const char *, tree,
54 int, const char *,
55 const char *,
56 const char *);
57 static void builtin_define_stdint_macros (void);
58 static void builtin_define_constants (const char *, tree);
59 static void builtin_define_type_max (const char *, tree);
60 static void builtin_define_type_minmax (const char *, 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 (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 void
106 builtin_define_type_sizeof (const char *name, tree type)
108 builtin_define_with_int_value (name,
109 tree_to_uhwi (TYPE_SIZE_UNIT (type)));
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 and C11 *_TRUE_MIN.
272 The minimum denormalized positive floating-point number, b**(emin-p).
273 The minimum normalized positive floating-point number for formats
274 that don't support denormals. */
275 sprintf (name, "__%s_DENORM_MIN__", name_prefix);
276 sprintf (buf, "0x1p%d", fmt->emin - (fmt->has_denorm ? fmt->p : 1));
277 builtin_define_with_hex_fp_value (name, type, decimal_dig,
278 buf, fp_suffix, fp_cast);
280 sprintf (name, "__%s_HAS_DENORM__", name_prefix);
281 builtin_define_with_value (name, fmt->has_denorm ? "1" : "0", 0);
283 /* For C++ std::numeric_limits<T>::has_infinity. */
284 sprintf (name, "__%s_HAS_INFINITY__", name_prefix);
285 builtin_define_with_int_value (name,
286 MODE_HAS_INFINITIES (TYPE_MODE (type)));
287 /* For C++ std::numeric_limits<T>::has_quiet_NaN. We do not have a
288 predicate to distinguish a target that has both quiet and
289 signalling NaNs from a target that has only quiet NaNs or only
290 signalling NaNs, so we assume that a target that has any kind of
291 NaN has quiet NaNs. */
292 sprintf (name, "__%s_HAS_QUIET_NAN__", name_prefix);
293 builtin_define_with_int_value (name, MODE_HAS_NANS (TYPE_MODE (type)));
295 /* Note whether we have fast FMA. */
296 if (mode_has_fma (TYPE_MODE (type)))
298 sprintf (name, "__FP_FAST_FMA%s", fma_suffix);
299 builtin_define_with_int_value (name, 1);
303 /* Define __DECx__ constants for TYPE using NAME_PREFIX and SUFFIX. */
304 static void
305 builtin_define_decimal_float_constants (const char *name_prefix,
306 const char *suffix,
307 tree type)
309 const struct real_format *fmt;
310 char name[64], buf[128], *p;
311 int digits;
313 fmt = REAL_MODE_FORMAT (TYPE_MODE (type));
315 /* The number of radix digits, p, in the significand. */
316 sprintf (name, "__%s_MANT_DIG__", name_prefix);
317 builtin_define_with_int_value (name, fmt->p);
319 /* The minimum negative int x such that b**(x-1) is a normalized float. */
320 sprintf (name, "__%s_MIN_EXP__", name_prefix);
321 sprintf (buf, "(%d)", fmt->emin);
322 builtin_define_with_value (name, buf, 0);
324 /* The maximum int x such that b**(x-1) is a representable float. */
325 sprintf (name, "__%s_MAX_EXP__", name_prefix);
326 builtin_define_with_int_value (name, fmt->emax);
328 /* Compute the minimum representable value. */
329 sprintf (name, "__%s_MIN__", name_prefix);
330 sprintf (buf, "1E%d%s", fmt->emin - 1, suffix);
331 builtin_define_with_value (name, buf, 0);
333 /* Compute the maximum representable value. */
334 sprintf (name, "__%s_MAX__", name_prefix);
335 p = buf;
336 for (digits = fmt->p; digits; digits--)
338 *p++ = '9';
339 if (digits == fmt->p)
340 *p++ = '.';
342 *p = 0;
343 /* fmt->p plus 1, to account for the decimal point and fmt->emax
344 minus 1 because the digits are nines, not 1.0. */
345 sprintf (&buf[fmt->p + 1], "E%d%s", fmt->emax - 1, suffix);
346 builtin_define_with_value (name, buf, 0);
348 /* Compute epsilon (the difference between 1 and least value greater
349 than 1 representable). */
350 sprintf (name, "__%s_EPSILON__", name_prefix);
351 sprintf (buf, "1E-%d%s", fmt->p - 1, suffix);
352 builtin_define_with_value (name, buf, 0);
354 /* Minimum subnormal positive decimal value. */
355 sprintf (name, "__%s_SUBNORMAL_MIN__", name_prefix);
356 p = buf;
357 for (digits = fmt->p; digits > 1; digits--)
359 *p++ = '0';
360 if (digits == fmt->p)
361 *p++ = '.';
363 *p = 0;
364 sprintf (&buf[fmt->p], "1E%d%s", fmt->emin - 1, suffix);
365 builtin_define_with_value (name, buf, 0);
368 /* Define fixed-point constants for TYPE using NAME_PREFIX and SUFFIX. */
370 static void
371 builtin_define_fixed_point_constants (const char *name_prefix,
372 const char *suffix,
373 tree type)
375 char name[64], buf[256], *new_buf;
376 int i, mod;
378 sprintf (name, "__%s_FBIT__", name_prefix);
379 builtin_define_with_int_value (name, TYPE_FBIT (type));
381 sprintf (name, "__%s_IBIT__", name_prefix);
382 builtin_define_with_int_value (name, TYPE_IBIT (type));
384 /* If there is no suffix, defines are for fixed-point modes.
385 We just return. */
386 if (strcmp (suffix, "") == 0)
387 return;
389 if (TYPE_UNSIGNED (type))
391 sprintf (name, "__%s_MIN__", name_prefix);
392 sprintf (buf, "0.0%s", suffix);
393 builtin_define_with_value (name, buf, 0);
395 else
397 sprintf (name, "__%s_MIN__", name_prefix);
398 if (ALL_ACCUM_MODE_P (TYPE_MODE (type)))
399 sprintf (buf, "(-0X1P%d%s-0X1P%d%s)", TYPE_IBIT (type) - 1, suffix,
400 TYPE_IBIT (type) - 1, suffix);
401 else
402 sprintf (buf, "(-0.5%s-0.5%s)", suffix, suffix);
403 builtin_define_with_value (name, buf, 0);
406 sprintf (name, "__%s_MAX__", name_prefix);
407 sprintf (buf, "0X");
408 new_buf = buf + 2;
409 mod = (TYPE_FBIT (type) + TYPE_IBIT (type)) % 4;
410 if (mod)
411 sprintf (new_buf++, "%x", (1 << mod) - 1);
412 for (i = 0; i < (TYPE_FBIT (type) + TYPE_IBIT (type)) / 4; i++)
413 sprintf (new_buf++, "F");
414 sprintf (new_buf, "P-%d%s", TYPE_FBIT (type), suffix);
415 builtin_define_with_value (name, buf, 0);
417 sprintf (name, "__%s_EPSILON__", name_prefix);
418 sprintf (buf, "0x1P-%d%s", TYPE_FBIT (type), suffix);
419 builtin_define_with_value (name, buf, 0);
422 /* Define macros used by <stdint.h>. */
423 static void
424 builtin_define_stdint_macros (void)
426 builtin_define_type_max ("__INTMAX_MAX__", intmax_type_node);
427 builtin_define_constants ("__INTMAX_C", intmax_type_node);
428 builtin_define_type_max ("__UINTMAX_MAX__", uintmax_type_node);
429 builtin_define_constants ("__UINTMAX_C", uintmax_type_node);
430 if (sig_atomic_type_node)
431 builtin_define_type_minmax ("__SIG_ATOMIC_MIN__", "__SIG_ATOMIC_MAX__",
432 sig_atomic_type_node);
433 if (int8_type_node)
434 builtin_define_type_max ("__INT8_MAX__", int8_type_node);
435 if (int16_type_node)
436 builtin_define_type_max ("__INT16_MAX__", int16_type_node);
437 if (int32_type_node)
438 builtin_define_type_max ("__INT32_MAX__", int32_type_node);
439 if (int64_type_node)
440 builtin_define_type_max ("__INT64_MAX__", int64_type_node);
441 if (uint8_type_node)
442 builtin_define_type_max ("__UINT8_MAX__", uint8_type_node);
443 if (c_uint16_type_node)
444 builtin_define_type_max ("__UINT16_MAX__", c_uint16_type_node);
445 if (c_uint32_type_node)
446 builtin_define_type_max ("__UINT32_MAX__", c_uint32_type_node);
447 if (c_uint64_type_node)
448 builtin_define_type_max ("__UINT64_MAX__", c_uint64_type_node);
449 if (int_least8_type_node)
451 builtin_define_type_max ("__INT_LEAST8_MAX__", int_least8_type_node);
452 builtin_define_constants ("__INT8_C", int_least8_type_node);
454 if (int_least16_type_node)
456 builtin_define_type_max ("__INT_LEAST16_MAX__", int_least16_type_node);
457 builtin_define_constants ("__INT16_C", int_least16_type_node);
459 if (int_least32_type_node)
461 builtin_define_type_max ("__INT_LEAST32_MAX__", int_least32_type_node);
462 builtin_define_constants ("__INT32_C", int_least32_type_node);
464 if (int_least64_type_node)
466 builtin_define_type_max ("__INT_LEAST64_MAX__", int_least64_type_node);
467 builtin_define_constants ("__INT64_C", int_least64_type_node);
469 if (uint_least8_type_node)
471 builtin_define_type_max ("__UINT_LEAST8_MAX__", uint_least8_type_node);
472 builtin_define_constants ("__UINT8_C", uint_least8_type_node);
474 if (uint_least16_type_node)
476 builtin_define_type_max ("__UINT_LEAST16_MAX__", uint_least16_type_node);
477 builtin_define_constants ("__UINT16_C", uint_least16_type_node);
479 if (uint_least32_type_node)
481 builtin_define_type_max ("__UINT_LEAST32_MAX__", uint_least32_type_node);
482 builtin_define_constants ("__UINT32_C", uint_least32_type_node);
484 if (uint_least64_type_node)
486 builtin_define_type_max ("__UINT_LEAST64_MAX__", uint_least64_type_node);
487 builtin_define_constants ("__UINT64_C", uint_least64_type_node);
489 if (int_fast8_type_node)
490 builtin_define_type_max ("__INT_FAST8_MAX__", int_fast8_type_node);
491 if (int_fast16_type_node)
492 builtin_define_type_max ("__INT_FAST16_MAX__", int_fast16_type_node);
493 if (int_fast32_type_node)
494 builtin_define_type_max ("__INT_FAST32_MAX__", int_fast32_type_node);
495 if (int_fast64_type_node)
496 builtin_define_type_max ("__INT_FAST64_MAX__", int_fast64_type_node);
497 if (uint_fast8_type_node)
498 builtin_define_type_max ("__UINT_FAST8_MAX__", uint_fast8_type_node);
499 if (uint_fast16_type_node)
500 builtin_define_type_max ("__UINT_FAST16_MAX__", uint_fast16_type_node);
501 if (uint_fast32_type_node)
502 builtin_define_type_max ("__UINT_FAST32_MAX__", uint_fast32_type_node);
503 if (uint_fast64_type_node)
504 builtin_define_type_max ("__UINT_FAST64_MAX__", uint_fast64_type_node);
505 if (intptr_type_node)
506 builtin_define_type_max ("__INTPTR_MAX__", intptr_type_node);
507 if (uintptr_type_node)
508 builtin_define_type_max ("__UINTPTR_MAX__", uintptr_type_node);
511 /* Adjust the optimization macros when a #pragma GCC optimization is done to
512 reflect the current level. */
513 void
514 c_cpp_builtins_optimize_pragma (cpp_reader *pfile, tree prev_tree,
515 tree cur_tree)
517 struct cl_optimization *prev = TREE_OPTIMIZATION (prev_tree);
518 struct cl_optimization *cur = TREE_OPTIMIZATION (cur_tree);
519 bool prev_fast_math;
520 bool cur_fast_math;
522 /* -undef turns off target-specific built-ins. */
523 if (flag_undef)
524 return;
526 /* Other target-independent built-ins determined by command-line
527 options. */
528 if (!prev->x_optimize_size && cur->x_optimize_size)
529 cpp_define (pfile, "__OPTIMIZE_SIZE__");
530 else if (prev->x_optimize_size && !cur->x_optimize_size)
531 cpp_undef (pfile, "__OPTIMIZE_SIZE__");
533 if (!prev->x_optimize && cur->x_optimize)
534 cpp_define (pfile, "__OPTIMIZE__");
535 else if (prev->x_optimize && !cur->x_optimize)
536 cpp_undef (pfile, "__OPTIMIZE__");
538 prev_fast_math = fast_math_flags_struct_set_p (prev);
539 cur_fast_math = fast_math_flags_struct_set_p (cur);
540 if (!prev_fast_math && cur_fast_math)
541 cpp_define (pfile, "__FAST_MATH__");
542 else if (prev_fast_math && !cur_fast_math)
543 cpp_undef (pfile, "__FAST_MATH__");
545 if (!prev->x_flag_signaling_nans && cur->x_flag_signaling_nans)
546 cpp_define (pfile, "__SUPPORT_SNAN__");
547 else if (prev->x_flag_signaling_nans && !cur->x_flag_signaling_nans)
548 cpp_undef (pfile, "__SUPPORT_SNAN__");
550 if (!prev->x_flag_errno_math && cur->x_flag_errno_math)
551 cpp_undef (pfile, "__NO_MATH_ERRNO__");
552 else if (prev->x_flag_errno_math && !cur->x_flag_errno_math)
553 cpp_define (pfile, "__NO_MATH_ERRNO__");
555 if (!prev->x_flag_finite_math_only && cur->x_flag_finite_math_only)
557 cpp_undef (pfile, "__FINITE_MATH_ONLY__");
558 cpp_define (pfile, "__FINITE_MATH_ONLY__=1");
560 else if (prev->x_flag_finite_math_only && !cur->x_flag_finite_math_only)
562 cpp_undef (pfile, "__FINITE_MATH_ONLY__");
563 cpp_define (pfile, "__FINITE_MATH_ONLY__=0");
568 /* This function will emit cpp macros to indicate the presence of various lock
569 free atomic operations. */
571 static void
572 cpp_atomic_builtins (cpp_reader *pfile)
574 /* Set a flag for each size of object that compare and swap exists for up to
575 a 16 byte object. */
576 #define SWAP_LIMIT 17
577 bool have_swap[SWAP_LIMIT];
578 unsigned int psize;
580 /* Clear the map of sizes compare_and swap exists for. */
581 memset (have_swap, 0, sizeof (have_swap));
583 /* Tell source code if the compiler makes sync_compare_and_swap
584 builtins available. */
585 #ifndef HAVE_sync_compare_and_swapqi
586 #define HAVE_sync_compare_and_swapqi 0
587 #endif
588 #ifndef HAVE_atomic_compare_and_swapqi
589 #define HAVE_atomic_compare_and_swapqi 0
590 #endif
592 if (HAVE_sync_compare_and_swapqi || HAVE_atomic_compare_and_swapqi)
594 cpp_define (pfile, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_1");
595 have_swap[1] = true;
598 #ifndef HAVE_sync_compare_and_swaphi
599 #define HAVE_sync_compare_and_swaphi 0
600 #endif
601 #ifndef HAVE_atomic_compare_and_swaphi
602 #define HAVE_atomic_compare_and_swaphi 0
603 #endif
604 if (HAVE_sync_compare_and_swaphi || HAVE_atomic_compare_and_swaphi)
606 cpp_define (pfile, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_2");
607 have_swap[2] = true;
610 #ifndef HAVE_sync_compare_and_swapsi
611 #define HAVE_sync_compare_and_swapsi 0
612 #endif
613 #ifndef HAVE_atomic_compare_and_swapsi
614 #define HAVE_atomic_compare_and_swapsi 0
615 #endif
616 if (HAVE_sync_compare_and_swapsi || HAVE_atomic_compare_and_swapsi)
618 cpp_define (pfile, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4");
619 have_swap[4] = true;
622 #ifndef HAVE_sync_compare_and_swapdi
623 #define HAVE_sync_compare_and_swapdi 0
624 #endif
625 #ifndef HAVE_atomic_compare_and_swapdi
626 #define HAVE_atomic_compare_and_swapdi 0
627 #endif
628 if (HAVE_sync_compare_and_swapdi || HAVE_atomic_compare_and_swapdi)
630 cpp_define (pfile, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_8");
631 have_swap[8] = true;
634 #ifndef HAVE_sync_compare_and_swapti
635 #define HAVE_sync_compare_and_swapti 0
636 #endif
637 #ifndef HAVE_atomic_compare_and_swapti
638 #define HAVE_atomic_compare_and_swapti 0
639 #endif
640 if (HAVE_sync_compare_and_swapti || HAVE_atomic_compare_and_swapti)
642 cpp_define (pfile, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_16");
643 have_swap[16] = true;
646 /* Tell the source code about various types. These map to the C++11 and C11
647 macros where 2 indicates lock-free always, and 1 indicates sometimes
648 lock free. */
649 #define SIZEOF_NODE(T) (tree_to_uhwi (TYPE_SIZE_UNIT (T)))
650 #define SWAP_INDEX(T) ((SIZEOF_NODE (T) < SWAP_LIMIT) ? SIZEOF_NODE (T) : 0)
651 builtin_define_with_int_value ("__GCC_ATOMIC_BOOL_LOCK_FREE",
652 (have_swap[SWAP_INDEX (boolean_type_node)]? 2 : 1));
653 builtin_define_with_int_value ("__GCC_ATOMIC_CHAR_LOCK_FREE",
654 (have_swap[SWAP_INDEX (signed_char_type_node)]? 2 : 1));
655 builtin_define_with_int_value ("__GCC_ATOMIC_CHAR16_T_LOCK_FREE",
656 (have_swap[SWAP_INDEX (char16_type_node)]? 2 : 1));
657 builtin_define_with_int_value ("__GCC_ATOMIC_CHAR32_T_LOCK_FREE",
658 (have_swap[SWAP_INDEX (char32_type_node)]? 2 : 1));
659 builtin_define_with_int_value ("__GCC_ATOMIC_WCHAR_T_LOCK_FREE",
660 (have_swap[SWAP_INDEX (wchar_type_node)]? 2 : 1));
661 builtin_define_with_int_value ("__GCC_ATOMIC_SHORT_LOCK_FREE",
662 (have_swap[SWAP_INDEX (short_integer_type_node)]? 2 : 1));
663 builtin_define_with_int_value ("__GCC_ATOMIC_INT_LOCK_FREE",
664 (have_swap[SWAP_INDEX (integer_type_node)]? 2 : 1));
665 builtin_define_with_int_value ("__GCC_ATOMIC_LONG_LOCK_FREE",
666 (have_swap[SWAP_INDEX (long_integer_type_node)]? 2 : 1));
667 builtin_define_with_int_value ("__GCC_ATOMIC_LLONG_LOCK_FREE",
668 (have_swap[SWAP_INDEX (long_long_integer_type_node)]? 2 : 1));
670 /* If we're dealing with a "set" value that doesn't exactly correspond
671 to a boolean truth value, let the library work around that. */
672 builtin_define_with_int_value ("__GCC_ATOMIC_TEST_AND_SET_TRUEVAL",
673 targetm.atomic_test_and_set_trueval);
675 /* ptr_type_node can't be used here since ptr_mode is only set when
676 toplev calls backend_init which is not done with -E or pch. */
677 psize = POINTER_SIZE_UNITS;
678 if (psize >= SWAP_LIMIT)
679 psize = 0;
680 builtin_define_with_int_value ("__GCC_ATOMIC_POINTER_LOCK_FREE",
681 (have_swap[psize]? 2 : 1));
684 /* Return the value for __GCC_IEC_559. */
685 static int
686 cpp_iec_559_value (void)
688 /* The default is support for IEEE 754-2008. */
689 int ret = 2;
691 /* float and double must be binary32 and binary64. If they are but
692 with reversed NaN convention, at most IEEE 754-1985 is
693 supported. */
694 const struct real_format *ffmt
695 = REAL_MODE_FORMAT (TYPE_MODE (float_type_node));
696 const struct real_format *dfmt
697 = REAL_MODE_FORMAT (TYPE_MODE (double_type_node));
698 if (!ffmt->qnan_msb_set || !dfmt->qnan_msb_set)
699 ret = 1;
700 if (ffmt->b != 2
701 || ffmt->p != 24
702 || ffmt->pnan != 24
703 || ffmt->emin != -125
704 || ffmt->emax != 128
705 || ffmt->signbit_rw != 31
706 || ffmt->round_towards_zero
707 || !ffmt->has_sign_dependent_rounding
708 || !ffmt->has_nans
709 || !ffmt->has_inf
710 || !ffmt->has_denorm
711 || !ffmt->has_signed_zero
712 || dfmt->b != 2
713 || dfmt->p != 53
714 || dfmt->pnan != 53
715 || dfmt->emin != -1021
716 || dfmt->emax != 1024
717 || dfmt->signbit_rw != 63
718 || dfmt->round_towards_zero
719 || !dfmt->has_sign_dependent_rounding
720 || !dfmt->has_nans
721 || !dfmt->has_inf
722 || !dfmt->has_denorm
723 || !dfmt->has_signed_zero)
724 ret = 0;
726 /* In strict C standards conformance mode, consider unpredictable
727 excess precision to mean lack of IEEE 754 support. The same
728 applies to unpredictable contraction. For C++, and outside
729 strict conformance mode, do not consider these options to mean
730 lack of IEEE 754 support. */
731 if (flag_iso
732 && !c_dialect_cxx ()
733 && TARGET_FLT_EVAL_METHOD != 0
734 && flag_excess_precision_cmdline != EXCESS_PRECISION_STANDARD)
735 ret = 0;
736 if (flag_iso
737 && !c_dialect_cxx ()
738 && flag_fp_contract_mode == FP_CONTRACT_FAST)
739 ret = 0;
741 /* Various options are contrary to IEEE 754 semantics. */
742 if (flag_unsafe_math_optimizations
743 || flag_associative_math
744 || flag_reciprocal_math
745 || flag_finite_math_only
746 || !flag_signed_zeros
747 || flag_single_precision_constant)
748 ret = 0;
750 /* If the target does not support IEEE 754 exceptions and rounding
751 modes, consider IEEE 754 support to be absent. */
752 if (!targetm.float_exceptions_rounding_supported_p ())
753 ret = 0;
755 return ret;
758 /* Return the value for __GCC_IEC_559_COMPLEX. */
759 static int
760 cpp_iec_559_complex_value (void)
762 /* The value is no bigger than that of __GCC_IEC_559. */
763 int ret = cpp_iec_559_value ();
765 /* Some options are contrary to the required default state of the
766 CX_LIMITED_RANGE pragma. */
767 if (flag_complex_method != 2)
768 ret = 0;
770 return ret;
773 /* Hook that registers front end and target-specific built-ins. */
774 void
775 c_cpp_builtins (cpp_reader *pfile)
777 int i;
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 /* Set include test macros for all C/C++ (not for just C++11 etc.)
796 The builtins __has_include__ and __has_include_next__ are defined
797 in libcpp. */
798 cpp_define (pfile, "__has_include(STR)=__has_include__(STR)");
799 cpp_define (pfile, "__has_include_next(STR)=__has_include_next__(STR)");
801 if (c_dialect_cxx ())
803 if (flag_weak && SUPPORTS_ONE_ONLY)
804 cpp_define (pfile, "__GXX_WEAK__=1");
805 else
806 cpp_define (pfile, "__GXX_WEAK__=0");
808 if (warn_deprecated)
809 cpp_define (pfile, "__DEPRECATED");
811 if (flag_rtti)
813 cpp_define (pfile, "__GXX_RTTI");
814 cpp_define (pfile, "__cpp_rtti=199711");
817 if (cxx_dialect >= cxx11)
818 cpp_define (pfile, "__GXX_EXPERIMENTAL_CXX0X__");
820 /* Binary literals have been allowed in g++ before C++11
821 and were standardized for C++14. */
822 if (!pedantic || cxx_dialect > cxx11)
823 cpp_define (pfile, "__cpp_binary_literals=201304");
825 /* Arrays of runtime bound were removed from C++14, but we still
826 support GNU VLAs. Let's define this macro to a low number
827 (corresponding to the initial test release of GNU C++) if we won't
828 complain about use of VLAs. */
829 if (c_dialect_cxx ()
830 && (pedantic ? warn_vla == 0 : warn_vla <= 0))
831 cpp_define (pfile, "__cpp_runtime_arrays=198712");
833 if (cxx_dialect >= cxx11)
835 /* Set feature test macros for C++11. */
836 cpp_define (pfile, "__cpp_unicode_characters=200704");
837 cpp_define (pfile, "__cpp_raw_strings=200710");
838 cpp_define (pfile, "__cpp_unicode_literals=200710");
839 cpp_define (pfile, "__cpp_user_defined_literals=200809");
840 cpp_define (pfile, "__cpp_lambdas=200907");
841 if (cxx_dialect == cxx11)
842 cpp_define (pfile, "__cpp_constexpr=200704");
843 cpp_define (pfile, "__cpp_range_based_for=200907");
844 if (cxx_dialect <= cxx14)
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 (cxx_dialect > cxx14)
871 /* Set feature test macros for C++1z. */
872 cpp_define (pfile, "__cpp_static_assert=201411");
874 if (flag_concepts)
875 /* Use a value smaller than the 201507 specified in
876 the TS, since we don't yet support extended auto. */
877 cpp_define (pfile, "__cpp_concepts=201500");
878 if (flag_sized_deallocation)
879 cpp_define (pfile, "__cpp_sized_deallocation=201309");
881 /* Note that we define this for C as well, so that we know if
882 __attribute__((cleanup)) will interface with EH. */
883 if (flag_exceptions)
885 cpp_define (pfile, "__EXCEPTIONS");
886 if (c_dialect_cxx ())
887 cpp_define (pfile, "__cpp_exceptions=199711");
890 /* Represents the C++ ABI version, always defined so it can be used while
891 preprocessing C and assembler. */
892 if (flag_abi_version == 0)
893 /* We should have set this to something real in c_common_post_options. */
894 gcc_unreachable ();
895 else if (flag_abi_version == 1)
896 /* Due to a historical accident, this version had the value
897 "102". */
898 builtin_define_with_int_value ("__GXX_ABI_VERSION", 102);
899 else
900 /* Newer versions have values 1002, 1003, .... */
901 builtin_define_with_int_value ("__GXX_ABI_VERSION",
902 1000 + flag_abi_version);
904 /* libgcc needs to know this. */
905 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ)
906 cpp_define (pfile, "__USING_SJLJ_EXCEPTIONS__");
908 /* limits.h and stdint.h need to know these. */
909 builtin_define_type_max ("__SCHAR_MAX__", signed_char_type_node);
910 builtin_define_type_max ("__SHRT_MAX__", short_integer_type_node);
911 builtin_define_type_max ("__INT_MAX__", integer_type_node);
912 builtin_define_type_max ("__LONG_MAX__", long_integer_type_node);
913 builtin_define_type_max ("__LONG_LONG_MAX__", long_long_integer_type_node);
914 builtin_define_type_minmax ("__WCHAR_MIN__", "__WCHAR_MAX__",
915 underlying_wchar_type_node);
916 builtin_define_type_minmax ("__WINT_MIN__", "__WINT_MAX__", wint_type_node);
917 builtin_define_type_max ("__PTRDIFF_MAX__", ptrdiff_type_node);
918 builtin_define_type_max ("__SIZE_MAX__", size_type_node);
920 if (c_dialect_cxx ())
921 for (i = 0; i < NUM_INT_N_ENTS; i ++)
922 if (int_n_enabled_p[i])
924 char buf[35+20+20];
926 /* These are used to configure the C++ library. */
928 if (!flag_iso || int_n_data[i].bitsize == POINTER_SIZE)
930 sprintf (buf, "__GLIBCXX_TYPE_INT_N_%d=__int%d", i, int_n_data[i].bitsize);
931 cpp_define (parse_in, buf);
933 sprintf (buf, "__GLIBCXX_BITSIZE_INT_N_%d=%d", i, int_n_data[i].bitsize);
934 cpp_define (parse_in, buf);
938 /* stdint.h and the testsuite need to know these. */
939 builtin_define_stdint_macros ();
941 /* Provide information for library headers to determine whether to
942 define macros such as __STDC_IEC_559__ and
943 __STDC_IEC_559_COMPLEX__. */
944 builtin_define_with_int_value ("__GCC_IEC_559", cpp_iec_559_value ());
945 builtin_define_with_int_value ("__GCC_IEC_559_COMPLEX",
946 cpp_iec_559_complex_value ());
948 /* float.h needs to know this. */
949 builtin_define_with_int_value ("__FLT_EVAL_METHOD__",
950 TARGET_FLT_EVAL_METHOD);
952 /* And decfloat.h needs this. */
953 builtin_define_with_int_value ("__DEC_EVAL_METHOD__",
954 TARGET_DEC_EVAL_METHOD);
956 builtin_define_float_constants ("FLT", "F", "%s", "F", float_type_node);
957 /* Cast the double precision constants. This is needed when single
958 precision constants are specified or when pragma FLOAT_CONST_DECIMAL64
959 is used. The correct result is computed by the compiler when using
960 macros that include a cast. We use a different cast for C++ to avoid
961 problems with -Wold-style-cast. */
962 builtin_define_float_constants ("DBL", "L",
963 (c_dialect_cxx ()
964 ? "double(%s)"
965 : "((double)%s)"),
966 "", double_type_node);
967 builtin_define_float_constants ("LDBL", "L", "%s", "L",
968 long_double_type_node);
970 /* For decfloat.h. */
971 builtin_define_decimal_float_constants ("DEC32", "DF", dfloat32_type_node);
972 builtin_define_decimal_float_constants ("DEC64", "DD", dfloat64_type_node);
973 builtin_define_decimal_float_constants ("DEC128", "DL", dfloat128_type_node);
975 /* For fixed-point fibt, ibit, max, min, and epsilon. */
976 if (targetm.fixed_point_supported_p ())
978 builtin_define_fixed_point_constants ("SFRACT", "HR",
979 short_fract_type_node);
980 builtin_define_fixed_point_constants ("USFRACT", "UHR",
981 unsigned_short_fract_type_node);
982 builtin_define_fixed_point_constants ("FRACT", "R",
983 fract_type_node);
984 builtin_define_fixed_point_constants ("UFRACT", "UR",
985 unsigned_fract_type_node);
986 builtin_define_fixed_point_constants ("LFRACT", "LR",
987 long_fract_type_node);
988 builtin_define_fixed_point_constants ("ULFRACT", "ULR",
989 unsigned_long_fract_type_node);
990 builtin_define_fixed_point_constants ("LLFRACT", "LLR",
991 long_long_fract_type_node);
992 builtin_define_fixed_point_constants ("ULLFRACT", "ULLR",
993 unsigned_long_long_fract_type_node);
994 builtin_define_fixed_point_constants ("SACCUM", "HK",
995 short_accum_type_node);
996 builtin_define_fixed_point_constants ("USACCUM", "UHK",
997 unsigned_short_accum_type_node);
998 builtin_define_fixed_point_constants ("ACCUM", "K",
999 accum_type_node);
1000 builtin_define_fixed_point_constants ("UACCUM", "UK",
1001 unsigned_accum_type_node);
1002 builtin_define_fixed_point_constants ("LACCUM", "LK",
1003 long_accum_type_node);
1004 builtin_define_fixed_point_constants ("ULACCUM", "ULK",
1005 unsigned_long_accum_type_node);
1006 builtin_define_fixed_point_constants ("LLACCUM", "LLK",
1007 long_long_accum_type_node);
1008 builtin_define_fixed_point_constants ("ULLACCUM", "ULLK",
1009 unsigned_long_long_accum_type_node);
1011 builtin_define_fixed_point_constants ("QQ", "", qq_type_node);
1012 builtin_define_fixed_point_constants ("HQ", "", hq_type_node);
1013 builtin_define_fixed_point_constants ("SQ", "", sq_type_node);
1014 builtin_define_fixed_point_constants ("DQ", "", dq_type_node);
1015 builtin_define_fixed_point_constants ("TQ", "", tq_type_node);
1016 builtin_define_fixed_point_constants ("UQQ", "", uqq_type_node);
1017 builtin_define_fixed_point_constants ("UHQ", "", uhq_type_node);
1018 builtin_define_fixed_point_constants ("USQ", "", usq_type_node);
1019 builtin_define_fixed_point_constants ("UDQ", "", udq_type_node);
1020 builtin_define_fixed_point_constants ("UTQ", "", utq_type_node);
1021 builtin_define_fixed_point_constants ("HA", "", ha_type_node);
1022 builtin_define_fixed_point_constants ("SA", "", sa_type_node);
1023 builtin_define_fixed_point_constants ("DA", "", da_type_node);
1024 builtin_define_fixed_point_constants ("TA", "", ta_type_node);
1025 builtin_define_fixed_point_constants ("UHA", "", uha_type_node);
1026 builtin_define_fixed_point_constants ("USA", "", usa_type_node);
1027 builtin_define_fixed_point_constants ("UDA", "", uda_type_node);
1028 builtin_define_fixed_point_constants ("UTA", "", uta_type_node);
1031 /* For libgcc-internal use only. */
1032 if (flag_building_libgcc)
1034 /* Properties of floating-point modes for libgcc2.c. */
1035 for (machine_mode mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT);
1036 mode != VOIDmode;
1037 mode = GET_MODE_WIDER_MODE (mode))
1039 const char *name = GET_MODE_NAME (mode);
1040 char *macro_name
1041 = (char *) alloca (strlen (name)
1042 + sizeof ("__LIBGCC__MANT_DIG__"));
1043 sprintf (macro_name, "__LIBGCC_%s_MANT_DIG__", name);
1044 builtin_define_with_int_value (macro_name,
1045 REAL_MODE_FORMAT (mode)->p);
1046 if (!targetm.scalar_mode_supported_p (mode)
1047 || !targetm.libgcc_floating_mode_supported_p (mode))
1048 continue;
1049 macro_name = (char *) alloca (strlen (name)
1050 + sizeof ("__LIBGCC_HAS__MODE__"));
1051 sprintf (macro_name, "__LIBGCC_HAS_%s_MODE__", name);
1052 cpp_define (pfile, macro_name);
1053 macro_name = (char *) alloca (strlen (name)
1054 + sizeof ("__LIBGCC__FUNC_EXT__"));
1055 sprintf (macro_name, "__LIBGCC_%s_FUNC_EXT__", name);
1056 const char *suffix;
1057 if (mode == TYPE_MODE (double_type_node))
1058 suffix = "";
1059 else if (mode == TYPE_MODE (float_type_node))
1060 suffix = "f";
1061 else if (mode == TYPE_MODE (long_double_type_node))
1062 suffix = "l";
1063 /* ??? The following assumes the built-in functions (defined
1064 in target-specific code) match the suffixes used for
1065 constants. Because in fact such functions are not
1066 defined for the 'w' suffix, 'l' is used there
1067 instead. */
1068 else if (mode == targetm.c.mode_for_suffix ('q'))
1069 suffix = "q";
1070 else if (mode == targetm.c.mode_for_suffix ('w'))
1071 suffix = "l";
1072 else
1073 gcc_unreachable ();
1074 builtin_define_with_value (macro_name, suffix, 0);
1075 bool excess_precision = false;
1076 if (TARGET_FLT_EVAL_METHOD != 0
1077 && mode != TYPE_MODE (long_double_type_node)
1078 && (mode == TYPE_MODE (float_type_node)
1079 || mode == TYPE_MODE (double_type_node)))
1080 switch (TARGET_FLT_EVAL_METHOD)
1082 case -1:
1083 case 2:
1084 excess_precision = true;
1085 break;
1087 case 1:
1088 excess_precision = mode == TYPE_MODE (float_type_node);
1089 break;
1091 default:
1092 gcc_unreachable ();
1094 macro_name = (char *) alloca (strlen (name)
1095 + sizeof ("__LIBGCC__EXCESS_"
1096 "PRECISION__"));
1097 sprintf (macro_name, "__LIBGCC_%s_EXCESS_PRECISION__", name);
1098 builtin_define_with_int_value (macro_name, excess_precision);
1101 /* For libgcc crtstuff.c and libgcc2.c. */
1102 builtin_define_with_int_value ("__LIBGCC_EH_TABLES_CAN_BE_READ_ONLY__",
1103 EH_TABLES_CAN_BE_READ_ONLY);
1104 #ifdef EH_FRAME_SECTION_NAME
1105 builtin_define_with_value ("__LIBGCC_EH_FRAME_SECTION_NAME__",
1106 EH_FRAME_SECTION_NAME, 1);
1107 #endif
1108 #ifdef JCR_SECTION_NAME
1109 builtin_define_with_value ("__LIBGCC_JCR_SECTION_NAME__",
1110 JCR_SECTION_NAME, 1);
1111 #endif
1112 #ifdef CTORS_SECTION_ASM_OP
1113 builtin_define_with_value ("__LIBGCC_CTORS_SECTION_ASM_OP__",
1114 CTORS_SECTION_ASM_OP, 1);
1115 #endif
1116 #ifdef DTORS_SECTION_ASM_OP
1117 builtin_define_with_value ("__LIBGCC_DTORS_SECTION_ASM_OP__",
1118 DTORS_SECTION_ASM_OP, 1);
1119 #endif
1120 #ifdef TEXT_SECTION_ASM_OP
1121 builtin_define_with_value ("__LIBGCC_TEXT_SECTION_ASM_OP__",
1122 TEXT_SECTION_ASM_OP, 1);
1123 #endif
1124 #ifdef INIT_SECTION_ASM_OP
1125 builtin_define_with_value ("__LIBGCC_INIT_SECTION_ASM_OP__",
1126 INIT_SECTION_ASM_OP, 1);
1127 #endif
1128 #ifdef INIT_ARRAY_SECTION_ASM_OP
1129 /* Despite the name of this target macro, the expansion is not
1130 actually used, and may be empty rather than a string
1131 constant. */
1132 cpp_define (pfile, "__LIBGCC_INIT_ARRAY_SECTION_ASM_OP__");
1133 #endif
1135 /* For libgcc enable-execute-stack.c. */
1136 builtin_define_with_int_value ("__LIBGCC_TRAMPOLINE_SIZE__",
1137 TRAMPOLINE_SIZE);
1139 /* For libgcc generic-morestack.c and unwinder code. */
1140 if (STACK_GROWS_DOWNWARD)
1141 cpp_define (pfile, "__LIBGCC_STACK_GROWS_DOWNWARD__");
1143 /* For libgcc unwinder code. */
1144 #ifdef DONT_USE_BUILTIN_SETJMP
1145 cpp_define (pfile, "__LIBGCC_DONT_USE_BUILTIN_SETJMP__");
1146 #endif
1147 #ifdef DWARF_ALT_FRAME_RETURN_COLUMN
1148 builtin_define_with_int_value ("__LIBGCC_DWARF_ALT_FRAME_RETURN_COLUMN__",
1149 DWARF_ALT_FRAME_RETURN_COLUMN);
1150 #endif
1151 builtin_define_with_int_value ("__LIBGCC_DWARF_FRAME_REGISTERS__",
1152 DWARF_FRAME_REGISTERS);
1153 #ifdef EH_RETURN_STACKADJ_RTX
1154 cpp_define (pfile, "__LIBGCC_EH_RETURN_STACKADJ_RTX__");
1155 #endif
1156 #ifdef JMP_BUF_SIZE
1157 builtin_define_with_int_value ("__LIBGCC_JMP_BUF_SIZE__",
1158 JMP_BUF_SIZE);
1159 #endif
1160 builtin_define_with_int_value ("__LIBGCC_STACK_POINTER_REGNUM__",
1161 STACK_POINTER_REGNUM);
1163 /* For libgcov. */
1164 builtin_define_with_int_value ("__LIBGCC_VTABLE_USES_DESCRIPTORS__",
1165 TARGET_VTABLE_USES_DESCRIPTORS);
1168 /* For use in assembly language. */
1169 builtin_define_with_value ("__REGISTER_PREFIX__", REGISTER_PREFIX, 0);
1170 builtin_define_with_value ("__USER_LABEL_PREFIX__", user_label_prefix, 0);
1172 /* Misc. */
1173 if (flag_gnu89_inline)
1174 cpp_define (pfile, "__GNUC_GNU_INLINE__");
1175 else
1176 cpp_define (pfile, "__GNUC_STDC_INLINE__");
1178 if (flag_no_inline)
1179 cpp_define (pfile, "__NO_INLINE__");
1181 if (flag_iso)
1182 cpp_define (pfile, "__STRICT_ANSI__");
1184 if (!flag_signed_char)
1185 cpp_define (pfile, "__CHAR_UNSIGNED__");
1187 if (c_dialect_cxx () && TYPE_UNSIGNED (wchar_type_node))
1188 cpp_define (pfile, "__WCHAR_UNSIGNED__");
1190 cpp_atomic_builtins (pfile);
1192 #ifdef DWARF2_UNWIND_INFO
1193 if (dwarf2out_do_cfi_asm ())
1194 cpp_define (pfile, "__GCC_HAVE_DWARF2_CFI_ASM");
1195 #endif
1197 /* Make the choice of ObjC runtime visible to source code. */
1198 if (c_dialect_objc () && flag_next_runtime)
1199 cpp_define (pfile, "__NEXT_RUNTIME__");
1201 /* Show the availability of some target pragmas. */
1202 cpp_define (pfile, "__PRAGMA_REDEFINE_EXTNAME");
1204 /* Make the choice of the stack protector runtime visible to source code.
1205 The macro names and values here were chosen for compatibility with an
1206 earlier implementation, i.e. ProPolice. */
1207 if (flag_stack_protect == 4)
1208 cpp_define (pfile, "__SSP_EXPLICIT__=4");
1209 if (flag_stack_protect == 3)
1210 cpp_define (pfile, "__SSP_STRONG__=3");
1211 if (flag_stack_protect == 2)
1212 cpp_define (pfile, "__SSP_ALL__=2");
1213 else if (flag_stack_protect == 1)
1214 cpp_define (pfile, "__SSP__=1");
1216 if (flag_openacc)
1217 cpp_define (pfile, "_OPENACC=201306");
1219 if (flag_openmp)
1220 cpp_define (pfile, "_OPENMP=201307");
1222 for (i = 0; i < NUM_INT_N_ENTS; i ++)
1223 if (int_n_enabled_p[i])
1225 char buf[15+20];
1226 sprintf(buf, "__SIZEOF_INT%d__", int_n_data[i].bitsize);
1227 builtin_define_type_sizeof (buf,
1228 int_n_trees[i].signed_type);
1230 builtin_define_type_sizeof ("__SIZEOF_WCHAR_T__", wchar_type_node);
1231 builtin_define_type_sizeof ("__SIZEOF_WINT_T__", wint_type_node);
1232 builtin_define_type_sizeof ("__SIZEOF_PTRDIFF_T__",
1233 unsigned_ptrdiff_type_node);
1235 /* A straightforward target hook doesn't work, because of problems
1236 linking that hook's body when part of non-C front ends. */
1237 # define preprocessing_asm_p() (cpp_get_options (pfile)->lang == CLK_ASM)
1238 # define preprocessing_trad_p() (cpp_get_options (pfile)->traditional)
1239 # define builtin_define(TXT) cpp_define (pfile, TXT)
1240 # define builtin_assert(TXT) cpp_assert (pfile, TXT)
1241 TARGET_CPU_CPP_BUILTINS ();
1242 TARGET_OS_CPP_BUILTINS ();
1243 TARGET_OBJFMT_CPP_BUILTINS ();
1245 /* Support the __declspec keyword by turning them into attributes.
1246 Note that the current way we do this may result in a collision
1247 with predefined attributes later on. This can be solved by using
1248 one attribute, say __declspec__, and passing args to it. The
1249 problem with that approach is that args are not accumulated: each
1250 new appearance would clobber any existing args. */
1251 if (TARGET_DECLSPEC)
1252 builtin_define ("__declspec(x)=__attribute__((x))");
1254 /* If decimal floating point is supported, tell the user if the
1255 alternate format (BID) is used instead of the standard (DPD)
1256 format. */
1257 if (ENABLE_DECIMAL_FLOAT && ENABLE_DECIMAL_BID_FORMAT)
1258 cpp_define (pfile, "__DECIMAL_BID_FORMAT__");
1261 /* Pass an object-like macro. If it doesn't lie in the user's
1262 namespace, defines it unconditionally. Otherwise define a version
1263 with two leading underscores, and another version with two leading
1264 and trailing underscores, and define the original only if an ISO
1265 standard was not nominated.
1267 e.g. passing "unix" defines "__unix", "__unix__" and possibly
1268 "unix". Passing "_mips" defines "__mips", "__mips__" and possibly
1269 "_mips". */
1270 void
1271 builtin_define_std (const char *macro)
1273 size_t len = strlen (macro);
1274 char *buff = (char *) alloca (len + 5);
1275 char *p = buff + 2;
1276 char *q = p + len;
1278 /* prepend __ (or maybe just _) if in user's namespace. */
1279 memcpy (p, macro, len + 1);
1280 if (!( *p == '_' && (p[1] == '_' || ISUPPER (p[1]))))
1282 if (*p != '_')
1283 *--p = '_';
1284 if (p[1] != '_')
1285 *--p = '_';
1287 cpp_define (parse_in, p);
1289 /* If it was in user's namespace... */
1290 if (p != buff + 2)
1292 /* Define the macro with leading and following __. */
1293 if (q[-1] != '_')
1294 *q++ = '_';
1295 if (q[-2] != '_')
1296 *q++ = '_';
1297 *q = '\0';
1298 cpp_define (parse_in, p);
1300 /* Finally, define the original macro if permitted. */
1301 if (!flag_iso)
1302 cpp_define (parse_in, macro);
1306 /* Pass an object-like macro and a value to define it to. The third
1307 parameter says whether or not to turn the value into a string
1308 constant. */
1309 void
1310 builtin_define_with_value (const char *macro, const char *expansion, int is_str)
1312 char *buf;
1313 size_t mlen = strlen (macro);
1314 size_t elen = strlen (expansion);
1315 size_t extra = 2; /* space for an = and a NUL */
1317 if (is_str)
1319 char *quoted_expansion = (char *) alloca (elen * 4 + 1);
1320 const char *p;
1321 char *q;
1322 extra += 2; /* space for two quote marks */
1323 for (p = expansion, q = quoted_expansion; *p; p++)
1325 switch (*p)
1327 case '\n':
1328 *q++ = '\\';
1329 *q++ = 'n';
1330 break;
1332 case '\t':
1333 *q++ = '\\';
1334 *q++ = 't';
1335 break;
1337 case '\\':
1338 *q++ = '\\';
1339 *q++ = '\\';
1340 break;
1342 case '"':
1343 *q++ = '\\';
1344 *q++ = '"';
1345 break;
1347 default:
1348 if (ISPRINT ((unsigned char) *p))
1349 *q++ = *p;
1350 else
1352 sprintf (q, "\\%03o", (unsigned char) *p);
1353 q += 4;
1357 *q = '\0';
1358 expansion = quoted_expansion;
1359 elen = q - expansion;
1362 buf = (char *) alloca (mlen + elen + extra);
1363 if (is_str)
1364 sprintf (buf, "%s=\"%s\"", macro, expansion);
1365 else
1366 sprintf (buf, "%s=%s", macro, expansion);
1368 cpp_define (parse_in, buf);
1372 /* Pass an object-like macro and an integer value to define it to. */
1373 void
1374 builtin_define_with_int_value (const char *macro, HOST_WIDE_INT value)
1376 char *buf;
1377 size_t mlen = strlen (macro);
1378 size_t vlen = 18;
1379 size_t extra = 2; /* space for = and NUL. */
1381 buf = (char *) alloca (mlen + vlen + extra);
1382 memcpy (buf, macro, mlen);
1383 buf[mlen] = '=';
1384 sprintf (buf + mlen + 1, HOST_WIDE_INT_PRINT_DEC, value);
1386 cpp_define (parse_in, buf);
1389 /* builtin_define_with_hex_fp_value is very expensive, so the following
1390 array and function allows it to be done lazily when __DBL_MAX__
1391 etc. is first used. */
1393 struct GTY(()) lazy_hex_fp_value_struct
1395 const char *hex_str;
1396 cpp_macro *macro;
1397 machine_mode mode;
1398 int digits;
1399 const char *fp_suffix;
1401 static GTY(()) struct lazy_hex_fp_value_struct lazy_hex_fp_values[12];
1402 static GTY(()) int lazy_hex_fp_value_count;
1404 static bool
1405 lazy_hex_fp_value (cpp_reader *pfile ATTRIBUTE_UNUSED,
1406 cpp_hashnode *node)
1408 REAL_VALUE_TYPE real;
1409 char dec_str[64], buf1[256];
1410 unsigned int idx;
1411 if (node->value.builtin < BT_FIRST_USER
1412 || (int) node->value.builtin >= BT_FIRST_USER + lazy_hex_fp_value_count)
1413 return false;
1415 idx = node->value.builtin - BT_FIRST_USER;
1416 real_from_string (&real, lazy_hex_fp_values[idx].hex_str);
1417 real_to_decimal_for_mode (dec_str, &real, sizeof (dec_str),
1418 lazy_hex_fp_values[idx].digits, 0,
1419 lazy_hex_fp_values[idx].mode);
1421 sprintf (buf1, "%s%s", dec_str, lazy_hex_fp_values[idx].fp_suffix);
1422 node->flags &= ~(NODE_BUILTIN | NODE_USED);
1423 node->value.macro = lazy_hex_fp_values[idx].macro;
1424 for (idx = 0; idx < node->value.macro->count; idx++)
1425 if (node->value.macro->exp.tokens[idx].type == CPP_NUMBER)
1426 break;
1427 gcc_assert (idx < node->value.macro->count);
1428 node->value.macro->exp.tokens[idx].val.str.len = strlen (buf1);
1429 node->value.macro->exp.tokens[idx].val.str.text
1430 = (const unsigned char *) ggc_strdup (buf1);
1431 return true;
1434 /* Pass an object-like macro a hexadecimal floating-point value. */
1435 static void
1436 builtin_define_with_hex_fp_value (const char *macro,
1437 tree type, int digits,
1438 const char *hex_str,
1439 const char *fp_suffix,
1440 const char *fp_cast)
1442 REAL_VALUE_TYPE real;
1443 char dec_str[64], buf1[256], buf2[256];
1445 /* This is very expensive, so if possible expand them lazily. */
1446 if (lazy_hex_fp_value_count < 12
1447 && flag_dump_macros == 0
1448 && !cpp_get_options (parse_in)->traditional)
1450 struct cpp_hashnode *node;
1451 if (lazy_hex_fp_value_count == 0)
1452 cpp_get_callbacks (parse_in)->user_builtin_macro = lazy_hex_fp_value;
1453 sprintf (buf2, fp_cast, "1.1");
1454 sprintf (buf1, "%s=%s", macro, buf2);
1455 cpp_define (parse_in, buf1);
1456 node = C_CPP_HASHNODE (get_identifier (macro));
1457 lazy_hex_fp_values[lazy_hex_fp_value_count].hex_str
1458 = ggc_strdup (hex_str);
1459 lazy_hex_fp_values[lazy_hex_fp_value_count].mode = TYPE_MODE (type);
1460 lazy_hex_fp_values[lazy_hex_fp_value_count].digits = digits;
1461 lazy_hex_fp_values[lazy_hex_fp_value_count].fp_suffix = fp_suffix;
1462 lazy_hex_fp_values[lazy_hex_fp_value_count].macro = node->value.macro;
1463 node->flags |= NODE_BUILTIN;
1464 node->value.builtin
1465 = (enum cpp_builtin_type) (BT_FIRST_USER + lazy_hex_fp_value_count);
1466 lazy_hex_fp_value_count++;
1467 return;
1470 /* Hex values are really cool and convenient, except that they're
1471 not supported in strict ISO C90 mode. First, the "p-" sequence
1472 is not valid as part of a preprocessor number. Second, we get a
1473 pedwarn from the preprocessor, which has no context, so we can't
1474 suppress the warning with __extension__.
1476 So instead what we do is construct the number in hex (because
1477 it's easy to get the exact correct value), parse it as a real,
1478 then print it back out as decimal. */
1480 real_from_string (&real, hex_str);
1481 real_to_decimal_for_mode (dec_str, &real, sizeof (dec_str), digits, 0,
1482 TYPE_MODE (type));
1484 /* Assemble the macro in the following fashion
1485 macro = fp_cast [dec_str fp_suffix] */
1486 sprintf (buf1, "%s%s", dec_str, fp_suffix);
1487 sprintf (buf2, fp_cast, buf1);
1488 sprintf (buf1, "%s=%s", macro, buf2);
1490 cpp_define (parse_in, buf1);
1493 /* Return a string constant for the suffix for a value of type TYPE
1494 promoted according to the integer promotions. The type must be one
1495 of the standard integer type nodes. */
1497 static const char *
1498 type_suffix (tree type)
1500 static const char *const suffixes[] = { "", "U", "L", "UL", "LL", "ULL" };
1501 int unsigned_suffix;
1502 int is_long;
1503 int tp = TYPE_PRECISION (type);
1505 if (type == long_long_integer_type_node
1506 || type == long_long_unsigned_type_node
1507 || tp > TYPE_PRECISION (long_integer_type_node))
1508 is_long = 2;
1509 else if (type == long_integer_type_node
1510 || type == long_unsigned_type_node
1511 || tp > TYPE_PRECISION (integer_type_node))
1512 is_long = 1;
1513 else if (type == integer_type_node
1514 || type == unsigned_type_node
1515 || type == short_integer_type_node
1516 || type == short_unsigned_type_node
1517 || type == signed_char_type_node
1518 || type == unsigned_char_type_node
1519 /* ??? "char" is not a signed or unsigned integer type and
1520 so is not permitted for the standard typedefs, but some
1521 systems use it anyway. */
1522 || type == char_type_node)
1523 is_long = 0;
1524 else
1525 gcc_unreachable ();
1527 unsigned_suffix = TYPE_UNSIGNED (type);
1528 if (TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
1529 unsigned_suffix = 0;
1530 return suffixes[is_long * 2 + unsigned_suffix];
1533 /* Define MACRO as a <stdint.h> constant-suffix macro for TYPE. */
1534 static void
1535 builtin_define_constants (const char *macro, tree type)
1537 const char *suffix;
1538 char *buf;
1540 suffix = type_suffix (type);
1542 if (suffix[0] == 0)
1544 buf = (char *) alloca (strlen (macro) + 6);
1545 sprintf (buf, "%s(c)=c", macro);
1547 else
1549 buf = (char *) alloca (strlen (macro) + 9 + strlen (suffix) + 1);
1550 sprintf (buf, "%s(c)=c ## %s", macro, suffix);
1553 cpp_define (parse_in, buf);
1556 /* Define MAX for TYPE based on the precision of the type. */
1558 static void
1559 builtin_define_type_max (const char *macro, tree type)
1561 builtin_define_type_minmax (NULL, macro, type);
1564 /* Given a value with COUNT LSBs set, fill BUF with a hexidecimal
1565 representation of that value. For example, a COUNT of 10 would
1566 return "0x3ff". */
1568 static void
1569 print_bits_of_hex (char *buf, int bufsz, int count)
1571 gcc_assert (bufsz > 3);
1572 *buf++ = '0';
1573 *buf++ = 'x';
1574 bufsz -= 2;
1576 gcc_assert (count > 0);
1578 switch (count % 4) {
1579 case 0:
1580 break;
1581 case 1:
1582 *buf++ = '1';
1583 bufsz --;
1584 count -= 1;
1585 break;
1586 case 2:
1587 *buf++ = '3';
1588 bufsz --;
1589 count -= 2;
1590 break;
1591 case 3:
1592 *buf++ = '7';
1593 bufsz --;
1594 count -= 3;
1595 break;
1597 while (count >= 4)
1599 gcc_assert (bufsz > 1);
1600 *buf++ = 'f';
1601 bufsz --;
1602 count -= 4;
1604 gcc_assert (bufsz > 0);
1605 *buf++ = 0;
1608 /* Define MIN_MACRO (if not NULL) and MAX_MACRO for TYPE based on the
1609 precision of the type. */
1611 static void
1612 builtin_define_type_minmax (const char *min_macro, const char *max_macro,
1613 tree type)
1615 #define PBOH_SZ (MAX_BITSIZE_MODE_ANY_INT/4+4)
1616 char value[PBOH_SZ];
1618 const char *suffix;
1619 char *buf;
1620 int bits;
1622 bits = TYPE_PRECISION (type) + (TYPE_UNSIGNED (type) ? 0 : -1);
1624 print_bits_of_hex (value, PBOH_SZ, bits);
1626 suffix = type_suffix (type);
1628 buf = (char *) alloca (strlen (max_macro) + 1 + strlen (value)
1629 + strlen (suffix) + 1);
1630 sprintf (buf, "%s=%s%s", max_macro, value, suffix);
1632 cpp_define (parse_in, buf);
1634 if (min_macro)
1636 if (TYPE_UNSIGNED (type))
1638 buf = (char *) alloca (strlen (min_macro) + 2 + strlen (suffix) + 1);
1639 sprintf (buf, "%s=0%s", min_macro, suffix);
1641 else
1643 buf = (char *) alloca (strlen (min_macro) + 3
1644 + strlen (max_macro) + 6);
1645 sprintf (buf, "%s=(-%s - 1)", min_macro, max_macro);
1647 cpp_define (parse_in, buf);
1651 #include "gt-c-family-c-cppbuiltin.h"