* g++.dg/debug/dwarf2/ref-3.C: XFAIL AIX.
[official-gcc.git] / gcc / c-family / c-cppbuiltin.c
blobe40fa6ff9dc442afcd6e7cd34fcde99fccface60
1 /* Define builtin-in macros for the C family front ends.
2 Copyright (C) 2002-2016 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 "target.h"
24 #include "c-common.h"
25 #include "memmodel.h"
26 #include "tm_p.h" /* For TARGET_CPU_CPP_BUILTINS & friends. */
27 #include "stringpool.h"
28 #include "stor-layout.h"
29 #include "flags.h"
30 #include "c-pragma.h"
31 #include "output.h" /* For user_label_prefix. */
32 #include "debug.h" /* For dwarf2out_do_cfi_asm. */
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 static void builtin_define_with_hex_fp_value (const char *, tree,
51 int, const char *,
52 const char *,
53 const char *);
54 static void builtin_define_stdint_macros (void);
55 static void builtin_define_constants (const char *, tree);
56 static void builtin_define_type_max (const char *, tree);
57 static void builtin_define_type_minmax (const char *, const char *, tree);
58 static void builtin_define_type_width (const char *, tree, tree);
59 static void builtin_define_float_constants (const char *,
60 const char *,
61 const char *,
62 const char *,
63 tree);
65 /* Return true if MODE provides a fast multiply/add (FMA) builtin function.
66 Originally this function used the fma optab, but that doesn't work with
67 -save-temps, so just rely on the HAVE_fma macros for the standard floating
68 point types. */
70 static bool
71 mode_has_fma (machine_mode mode)
73 switch (mode)
75 #ifdef HAVE_fmasf4
76 case SFmode:
77 return !!HAVE_fmasf4;
78 #endif
80 #ifdef HAVE_fmadf4
81 case DFmode:
82 return !!HAVE_fmadf4;
83 #endif
85 #ifdef HAVE_fmaxf4
86 case XFmode:
87 return !!HAVE_fmaxf4;
88 #endif
90 #ifdef HAVE_fmatf4
91 case TFmode:
92 return !!HAVE_fmatf4;
93 #endif
95 default:
96 break;
99 return false;
102 /* Define NAME with value TYPE size_unit. */
103 void
104 builtin_define_type_sizeof (const char *name, tree type)
106 builtin_define_with_int_value (name,
107 tree_to_uhwi (TYPE_SIZE_UNIT (type)));
110 /* Define the float.h constants for TYPE using NAME_PREFIX, FP_SUFFIX,
111 and FP_CAST. */
112 static void
113 builtin_define_float_constants (const char *name_prefix,
114 const char *fp_suffix,
115 const char *fp_cast,
116 const char *fma_suffix,
117 tree type)
119 /* Used to convert radix-based values to base 10 values in several cases.
121 In the max_exp -> max_10_exp conversion for 128-bit IEEE, we need at
122 least 6 significant digits for correct results. Using the fraction
123 formed by (log(2)*1e6)/(log(10)*1e6) overflows a 32-bit integer as an
124 intermediate; perhaps someone can find a better approximation, in the
125 mean time, I suspect using doubles won't harm the bootstrap here. */
127 const double log10_2 = .30102999566398119521;
128 double log10_b;
129 const struct real_format *fmt;
130 const struct real_format *widefmt;
132 char name[64], buf[128];
133 int dig, min_10_exp, max_10_exp;
134 int decimal_dig;
135 int type_decimal_dig;
137 fmt = REAL_MODE_FORMAT (TYPE_MODE (type));
138 gcc_assert (fmt->b != 10);
139 widefmt = REAL_MODE_FORMAT (TYPE_MODE (long_double_type_node));
140 gcc_assert (widefmt->b != 10);
141 for (int i = 0; i < NUM_FLOATN_NX_TYPES; i++)
143 tree wtype = FLOATN_NX_TYPE_NODE (i);
144 if (wtype != NULL_TREE)
146 const struct real_format *wfmt
147 = REAL_MODE_FORMAT (TYPE_MODE (wtype));
148 gcc_assert (wfmt->b != 10);
149 if (wfmt->p > widefmt->p)
150 widefmt = wfmt;
154 /* The radix of the exponent representation. */
155 if (type == float_type_node)
156 builtin_define_with_int_value ("__FLT_RADIX__", fmt->b);
157 log10_b = log10_2;
159 /* The number of radix digits, p, in the floating-point significand. */
160 sprintf (name, "__%s_MANT_DIG__", name_prefix);
161 builtin_define_with_int_value (name, fmt->p);
163 /* The number of decimal digits, q, such that any floating-point number
164 with q decimal digits can be rounded into a floating-point number with
165 p radix b digits and back again without change to the q decimal digits,
167 p log10 b if b is a power of 10
168 floor((p - 1) log10 b) otherwise
170 dig = (fmt->p - 1) * log10_b;
171 sprintf (name, "__%s_DIG__", name_prefix);
172 builtin_define_with_int_value (name, dig);
174 /* The minimum negative int x such that b**(x-1) is a normalized float. */
175 sprintf (name, "__%s_MIN_EXP__", name_prefix);
176 sprintf (buf, "(%d)", fmt->emin);
177 builtin_define_with_value (name, buf, 0);
179 /* The minimum negative int x such that 10**x is a normalized float,
181 ceil (log10 (b ** (emin - 1)))
182 = ceil (log10 (b) * (emin - 1))
184 Recall that emin is negative, so the integer truncation calculates
185 the ceiling, not the floor, in this case. */
186 min_10_exp = (fmt->emin - 1) * log10_b;
187 sprintf (name, "__%s_MIN_10_EXP__", name_prefix);
188 sprintf (buf, "(%d)", min_10_exp);
189 builtin_define_with_value (name, buf, 0);
191 /* The maximum int x such that b**(x-1) is a representable float. */
192 sprintf (name, "__%s_MAX_EXP__", name_prefix);
193 builtin_define_with_int_value (name, fmt->emax);
195 /* The maximum int x such that 10**x is in the range of representable
196 finite floating-point numbers,
198 floor (log10((1 - b**-p) * b**emax))
199 = floor (log10(1 - b**-p) + log10(b**emax))
200 = floor (log10(1 - b**-p) + log10(b)*emax)
202 The safest thing to do here is to just compute this number. But since
203 we don't link cc1 with libm, we cannot. We could implement log10 here
204 a series expansion, but that seems too much effort because:
206 Note that the first term, for all extant p, is a number exceedingly close
207 to zero, but slightly negative. Note that the second term is an integer
208 scaling an irrational number, and that because of the floor we are only
209 interested in its integral portion.
211 In order for the first term to have any effect on the integral portion
212 of the second term, the second term has to be exceedingly close to an
213 integer itself (e.g. 123.000000000001 or something). Getting a result
214 that close to an integer requires that the irrational multiplicand have
215 a long series of zeros in its expansion, which doesn't occur in the
216 first 20 digits or so of log10(b).
218 Hand-waving aside, crunching all of the sets of constants above by hand
219 does not yield a case for which the first term is significant, which
220 in the end is all that matters. */
221 max_10_exp = fmt->emax * log10_b;
222 sprintf (name, "__%s_MAX_10_EXP__", name_prefix);
223 builtin_define_with_int_value (name, max_10_exp);
225 /* The number of decimal digits, n, such that any floating-point number
226 can be rounded to n decimal digits and back again without change to
227 the value.
229 p * log10(b) if b is a power of 10
230 ceil(1 + p * log10(b)) otherwise
232 The only macro we care about is this number for the widest supported
233 floating type, but we want this value for rendering constants below. */
235 double d_decimal_dig
236 = 1 + (fmt->p < widefmt->p ? widefmt->p : fmt->p) * log10_b;
237 decimal_dig = d_decimal_dig;
238 if (decimal_dig < d_decimal_dig)
239 decimal_dig++;
241 /* Similar, for this type rather than long double. */
243 double type_d_decimal_dig = 1 + fmt->p * log10_b;
244 type_decimal_dig = type_d_decimal_dig;
245 if (type_decimal_dig < type_d_decimal_dig)
246 type_decimal_dig++;
248 /* Arbitrarily, define __DECIMAL_DIG__ when defining macros for long
249 double, although it may be greater than the value for long
250 double. */
251 if (type == long_double_type_node)
252 builtin_define_with_int_value ("__DECIMAL_DIG__", decimal_dig);
253 sprintf (name, "__%s_DECIMAL_DIG__", name_prefix);
254 builtin_define_with_int_value (name, type_decimal_dig);
256 /* Since, for the supported formats, B is always a power of 2, we
257 construct the following numbers directly as a hexadecimal
258 constants. */
259 get_max_float (fmt, buf, sizeof (buf));
261 sprintf (name, "__%s_MAX__", name_prefix);
262 builtin_define_with_hex_fp_value (name, type, decimal_dig, buf, fp_suffix, fp_cast);
264 /* The minimum normalized positive floating-point number,
265 b**(emin-1). */
266 sprintf (name, "__%s_MIN__", name_prefix);
267 sprintf (buf, "0x1p%d", fmt->emin - 1);
268 builtin_define_with_hex_fp_value (name, type, decimal_dig, buf, fp_suffix, fp_cast);
270 /* The difference between 1 and the least value greater than 1 that is
271 representable in the given floating point type, b**(1-p). */
272 sprintf (name, "__%s_EPSILON__", name_prefix);
273 if (fmt->pnan < fmt->p)
274 /* This is an IBM extended double format, so 1.0 + any double is
275 representable precisely. */
276 sprintf (buf, "0x1p%d", fmt->emin - fmt->p);
277 else
278 sprintf (buf, "0x1p%d", 1 - fmt->p);
279 builtin_define_with_hex_fp_value (name, type, decimal_dig, buf, fp_suffix, fp_cast);
281 /* For C++ std::numeric_limits<T>::denorm_min and C11 *_TRUE_MIN.
282 The minimum denormalized positive floating-point number, b**(emin-p).
283 The minimum normalized positive floating-point number for formats
284 that don't support denormals. */
285 sprintf (name, "__%s_DENORM_MIN__", name_prefix);
286 sprintf (buf, "0x1p%d", fmt->emin - (fmt->has_denorm ? fmt->p : 1));
287 builtin_define_with_hex_fp_value (name, type, decimal_dig,
288 buf, fp_suffix, fp_cast);
290 sprintf (name, "__%s_HAS_DENORM__", name_prefix);
291 builtin_define_with_value (name, fmt->has_denorm ? "1" : "0", 0);
293 /* For C++ std::numeric_limits<T>::has_infinity. */
294 sprintf (name, "__%s_HAS_INFINITY__", name_prefix);
295 builtin_define_with_int_value (name,
296 MODE_HAS_INFINITIES (TYPE_MODE (type)));
297 /* For C++ std::numeric_limits<T>::has_quiet_NaN. We do not have a
298 predicate to distinguish a target that has both quiet and
299 signalling NaNs from a target that has only quiet NaNs or only
300 signalling NaNs, so we assume that a target that has any kind of
301 NaN has quiet NaNs. */
302 sprintf (name, "__%s_HAS_QUIET_NAN__", name_prefix);
303 builtin_define_with_int_value (name, MODE_HAS_NANS (TYPE_MODE (type)));
305 /* Note whether we have fast FMA. */
306 if (mode_has_fma (TYPE_MODE (type)) && fma_suffix != NULL)
308 sprintf (name, "__FP_FAST_FMA%s", fma_suffix);
309 builtin_define_with_int_value (name, 1);
313 /* Define __DECx__ constants for TYPE using NAME_PREFIX and SUFFIX. */
314 static void
315 builtin_define_decimal_float_constants (const char *name_prefix,
316 const char *suffix,
317 tree type)
319 const struct real_format *fmt;
320 char name[64], buf[128], *p;
321 int digits;
323 fmt = REAL_MODE_FORMAT (TYPE_MODE (type));
325 /* The number of radix digits, p, in the significand. */
326 sprintf (name, "__%s_MANT_DIG__", name_prefix);
327 builtin_define_with_int_value (name, fmt->p);
329 /* The minimum negative int x such that b**(x-1) is a normalized float. */
330 sprintf (name, "__%s_MIN_EXP__", name_prefix);
331 sprintf (buf, "(%d)", fmt->emin);
332 builtin_define_with_value (name, buf, 0);
334 /* The maximum int x such that b**(x-1) is a representable float. */
335 sprintf (name, "__%s_MAX_EXP__", name_prefix);
336 builtin_define_with_int_value (name, fmt->emax);
338 /* Compute the minimum representable value. */
339 sprintf (name, "__%s_MIN__", name_prefix);
340 sprintf (buf, "1E%d%s", fmt->emin - 1, suffix);
341 builtin_define_with_value (name, buf, 0);
343 /* Compute the maximum representable value. */
344 sprintf (name, "__%s_MAX__", name_prefix);
345 p = buf;
346 for (digits = fmt->p; digits; digits--)
348 *p++ = '9';
349 if (digits == fmt->p)
350 *p++ = '.';
352 *p = 0;
353 /* fmt->p plus 1, to account for the decimal point and fmt->emax
354 minus 1 because the digits are nines, not 1.0. */
355 sprintf (&buf[fmt->p + 1], "E%d%s", fmt->emax - 1, suffix);
356 builtin_define_with_value (name, buf, 0);
358 /* Compute epsilon (the difference between 1 and least value greater
359 than 1 representable). */
360 sprintf (name, "__%s_EPSILON__", name_prefix);
361 sprintf (buf, "1E-%d%s", fmt->p - 1, suffix);
362 builtin_define_with_value (name, buf, 0);
364 /* Minimum subnormal positive decimal value. */
365 sprintf (name, "__%s_SUBNORMAL_MIN__", name_prefix);
366 p = buf;
367 for (digits = fmt->p; digits > 1; digits--)
369 *p++ = '0';
370 if (digits == fmt->p)
371 *p++ = '.';
373 *p = 0;
374 sprintf (&buf[fmt->p], "1E%d%s", fmt->emin - 1, suffix);
375 builtin_define_with_value (name, buf, 0);
378 /* Define fixed-point constants for TYPE using NAME_PREFIX and SUFFIX. */
380 static void
381 builtin_define_fixed_point_constants (const char *name_prefix,
382 const char *suffix,
383 tree type)
385 char name[64], buf[256], *new_buf;
386 int i, mod;
388 sprintf (name, "__%s_FBIT__", name_prefix);
389 builtin_define_with_int_value (name, TYPE_FBIT (type));
391 sprintf (name, "__%s_IBIT__", name_prefix);
392 builtin_define_with_int_value (name, TYPE_IBIT (type));
394 /* If there is no suffix, defines are for fixed-point modes.
395 We just return. */
396 if (strcmp (suffix, "") == 0)
397 return;
399 if (TYPE_UNSIGNED (type))
401 sprintf (name, "__%s_MIN__", name_prefix);
402 sprintf (buf, "0.0%s", suffix);
403 builtin_define_with_value (name, buf, 0);
405 else
407 sprintf (name, "__%s_MIN__", name_prefix);
408 if (ALL_ACCUM_MODE_P (TYPE_MODE (type)))
409 sprintf (buf, "(-0X1P%d%s-0X1P%d%s)", TYPE_IBIT (type) - 1, suffix,
410 TYPE_IBIT (type) - 1, suffix);
411 else
412 sprintf (buf, "(-0.5%s-0.5%s)", suffix, suffix);
413 builtin_define_with_value (name, buf, 0);
416 sprintf (name, "__%s_MAX__", name_prefix);
417 sprintf (buf, "0X");
418 new_buf = buf + 2;
419 mod = (TYPE_FBIT (type) + TYPE_IBIT (type)) % 4;
420 if (mod)
421 sprintf (new_buf++, "%x", (1 << mod) - 1);
422 for (i = 0; i < (TYPE_FBIT (type) + TYPE_IBIT (type)) / 4; i++)
423 sprintf (new_buf++, "F");
424 sprintf (new_buf, "P-%d%s", TYPE_FBIT (type), suffix);
425 builtin_define_with_value (name, buf, 0);
427 sprintf (name, "__%s_EPSILON__", name_prefix);
428 sprintf (buf, "0x1P-%d%s", TYPE_FBIT (type), suffix);
429 builtin_define_with_value (name, buf, 0);
432 /* Define macros used by <stdint.h>. */
433 static void
434 builtin_define_stdint_macros (void)
436 builtin_define_type_max ("__INTMAX_MAX__", intmax_type_node);
437 builtin_define_constants ("__INTMAX_C", intmax_type_node);
438 builtin_define_type_max ("__UINTMAX_MAX__", uintmax_type_node);
439 builtin_define_constants ("__UINTMAX_C", uintmax_type_node);
440 builtin_define_type_width ("__INTMAX_WIDTH__", intmax_type_node,
441 uintmax_type_node);
442 if (sig_atomic_type_node)
444 builtin_define_type_minmax ("__SIG_ATOMIC_MIN__", "__SIG_ATOMIC_MAX__",
445 sig_atomic_type_node);
446 builtin_define_type_width ("__SIG_ATOMIC_WIDTH__", sig_atomic_type_node,
447 NULL_TREE);
449 if (int8_type_node)
450 builtin_define_type_max ("__INT8_MAX__", int8_type_node);
451 if (int16_type_node)
452 builtin_define_type_max ("__INT16_MAX__", int16_type_node);
453 if (int32_type_node)
454 builtin_define_type_max ("__INT32_MAX__", int32_type_node);
455 if (int64_type_node)
456 builtin_define_type_max ("__INT64_MAX__", int64_type_node);
457 if (uint8_type_node)
458 builtin_define_type_max ("__UINT8_MAX__", uint8_type_node);
459 if (c_uint16_type_node)
460 builtin_define_type_max ("__UINT16_MAX__", c_uint16_type_node);
461 if (c_uint32_type_node)
462 builtin_define_type_max ("__UINT32_MAX__", c_uint32_type_node);
463 if (c_uint64_type_node)
464 builtin_define_type_max ("__UINT64_MAX__", c_uint64_type_node);
465 if (int_least8_type_node)
467 builtin_define_type_max ("__INT_LEAST8_MAX__", int_least8_type_node);
468 builtin_define_constants ("__INT8_C", int_least8_type_node);
469 builtin_define_type_width ("__INT_LEAST8_WIDTH__", int_least8_type_node,
470 uint_least8_type_node);
472 if (int_least16_type_node)
474 builtin_define_type_max ("__INT_LEAST16_MAX__", int_least16_type_node);
475 builtin_define_constants ("__INT16_C", int_least16_type_node);
476 builtin_define_type_width ("__INT_LEAST16_WIDTH__",
477 int_least16_type_node,
478 uint_least16_type_node);
480 if (int_least32_type_node)
482 builtin_define_type_max ("__INT_LEAST32_MAX__", int_least32_type_node);
483 builtin_define_constants ("__INT32_C", int_least32_type_node);
484 builtin_define_type_width ("__INT_LEAST32_WIDTH__",
485 int_least32_type_node,
486 uint_least32_type_node);
488 if (int_least64_type_node)
490 builtin_define_type_max ("__INT_LEAST64_MAX__", int_least64_type_node);
491 builtin_define_constants ("__INT64_C", int_least64_type_node);
492 builtin_define_type_width ("__INT_LEAST64_WIDTH__",
493 int_least64_type_node,
494 uint_least64_type_node);
496 if (uint_least8_type_node)
498 builtin_define_type_max ("__UINT_LEAST8_MAX__", uint_least8_type_node);
499 builtin_define_constants ("__UINT8_C", uint_least8_type_node);
501 if (uint_least16_type_node)
503 builtin_define_type_max ("__UINT_LEAST16_MAX__", uint_least16_type_node);
504 builtin_define_constants ("__UINT16_C", uint_least16_type_node);
506 if (uint_least32_type_node)
508 builtin_define_type_max ("__UINT_LEAST32_MAX__", uint_least32_type_node);
509 builtin_define_constants ("__UINT32_C", uint_least32_type_node);
511 if (uint_least64_type_node)
513 builtin_define_type_max ("__UINT_LEAST64_MAX__", uint_least64_type_node);
514 builtin_define_constants ("__UINT64_C", uint_least64_type_node);
516 if (int_fast8_type_node)
518 builtin_define_type_max ("__INT_FAST8_MAX__", int_fast8_type_node);
519 builtin_define_type_width ("__INT_FAST8_WIDTH__", int_fast8_type_node,
520 uint_fast8_type_node);
522 if (int_fast16_type_node)
524 builtin_define_type_max ("__INT_FAST16_MAX__", int_fast16_type_node);
525 builtin_define_type_width ("__INT_FAST16_WIDTH__", int_fast16_type_node,
526 uint_fast16_type_node);
528 if (int_fast32_type_node)
530 builtin_define_type_max ("__INT_FAST32_MAX__", int_fast32_type_node);
531 builtin_define_type_width ("__INT_FAST32_WIDTH__", int_fast32_type_node,
532 uint_fast32_type_node);
534 if (int_fast64_type_node)
536 builtin_define_type_max ("__INT_FAST64_MAX__", int_fast64_type_node);
537 builtin_define_type_width ("__INT_FAST64_WIDTH__", int_fast64_type_node,
538 uint_fast64_type_node);
540 if (uint_fast8_type_node)
541 builtin_define_type_max ("__UINT_FAST8_MAX__", uint_fast8_type_node);
542 if (uint_fast16_type_node)
543 builtin_define_type_max ("__UINT_FAST16_MAX__", uint_fast16_type_node);
544 if (uint_fast32_type_node)
545 builtin_define_type_max ("__UINT_FAST32_MAX__", uint_fast32_type_node);
546 if (uint_fast64_type_node)
547 builtin_define_type_max ("__UINT_FAST64_MAX__", uint_fast64_type_node);
548 if (intptr_type_node)
550 builtin_define_type_max ("__INTPTR_MAX__", intptr_type_node);
551 builtin_define_type_width ("__INTPTR_WIDTH__", intptr_type_node,
552 uintptr_type_node);
554 if (uintptr_type_node)
555 builtin_define_type_max ("__UINTPTR_MAX__", uintptr_type_node);
558 /* Adjust the optimization macros when a #pragma GCC optimization is done to
559 reflect the current level. */
560 void
561 c_cpp_builtins_optimize_pragma (cpp_reader *pfile, tree prev_tree,
562 tree cur_tree)
564 struct cl_optimization *prev = TREE_OPTIMIZATION (prev_tree);
565 struct cl_optimization *cur = TREE_OPTIMIZATION (cur_tree);
566 bool prev_fast_math;
567 bool cur_fast_math;
569 /* -undef turns off target-specific built-ins. */
570 if (flag_undef)
571 return;
573 /* Other target-independent built-ins determined by command-line
574 options. */
575 if (!prev->x_optimize_size && cur->x_optimize_size)
576 cpp_define (pfile, "__OPTIMIZE_SIZE__");
577 else if (prev->x_optimize_size && !cur->x_optimize_size)
578 cpp_undef (pfile, "__OPTIMIZE_SIZE__");
580 if (!prev->x_optimize && cur->x_optimize)
581 cpp_define (pfile, "__OPTIMIZE__");
582 else if (prev->x_optimize && !cur->x_optimize)
583 cpp_undef (pfile, "__OPTIMIZE__");
585 prev_fast_math = fast_math_flags_struct_set_p (prev);
586 cur_fast_math = fast_math_flags_struct_set_p (cur);
587 if (!prev_fast_math && cur_fast_math)
588 cpp_define (pfile, "__FAST_MATH__");
589 else if (prev_fast_math && !cur_fast_math)
590 cpp_undef (pfile, "__FAST_MATH__");
592 if (!prev->x_flag_signaling_nans && cur->x_flag_signaling_nans)
593 cpp_define (pfile, "__SUPPORT_SNAN__");
594 else if (prev->x_flag_signaling_nans && !cur->x_flag_signaling_nans)
595 cpp_undef (pfile, "__SUPPORT_SNAN__");
597 if (!prev->x_flag_errno_math && cur->x_flag_errno_math)
598 cpp_undef (pfile, "__NO_MATH_ERRNO__");
599 else if (prev->x_flag_errno_math && !cur->x_flag_errno_math)
600 cpp_define (pfile, "__NO_MATH_ERRNO__");
602 if (!prev->x_flag_finite_math_only && cur->x_flag_finite_math_only)
604 cpp_undef (pfile, "__FINITE_MATH_ONLY__");
605 cpp_define (pfile, "__FINITE_MATH_ONLY__=1");
607 else if (prev->x_flag_finite_math_only && !cur->x_flag_finite_math_only)
609 cpp_undef (pfile, "__FINITE_MATH_ONLY__");
610 cpp_define (pfile, "__FINITE_MATH_ONLY__=0");
615 /* This function will emit cpp macros to indicate the presence of various lock
616 free atomic operations. */
618 static void
619 cpp_atomic_builtins (cpp_reader *pfile)
621 /* Set a flag for each size of object that compare and swap exists for up to
622 a 16 byte object. */
623 #define SWAP_LIMIT 17
624 bool have_swap[SWAP_LIMIT];
625 unsigned int psize;
627 /* Clear the map of sizes compare_and swap exists for. */
628 memset (have_swap, 0, sizeof (have_swap));
630 /* Tell source code if the compiler makes sync_compare_and_swap
631 builtins available. */
632 #ifndef HAVE_sync_compare_and_swapqi
633 #define HAVE_sync_compare_and_swapqi 0
634 #endif
635 #ifndef HAVE_atomic_compare_and_swapqi
636 #define HAVE_atomic_compare_and_swapqi 0
637 #endif
639 if (HAVE_sync_compare_and_swapqi || HAVE_atomic_compare_and_swapqi)
641 cpp_define (pfile, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_1");
642 have_swap[1] = true;
645 #ifndef HAVE_sync_compare_and_swaphi
646 #define HAVE_sync_compare_and_swaphi 0
647 #endif
648 #ifndef HAVE_atomic_compare_and_swaphi
649 #define HAVE_atomic_compare_and_swaphi 0
650 #endif
651 if (HAVE_sync_compare_and_swaphi || HAVE_atomic_compare_and_swaphi)
653 cpp_define (pfile, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_2");
654 have_swap[2] = true;
657 #ifndef HAVE_sync_compare_and_swapsi
658 #define HAVE_sync_compare_and_swapsi 0
659 #endif
660 #ifndef HAVE_atomic_compare_and_swapsi
661 #define HAVE_atomic_compare_and_swapsi 0
662 #endif
663 if (HAVE_sync_compare_and_swapsi || HAVE_atomic_compare_and_swapsi)
665 cpp_define (pfile, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4");
666 have_swap[4] = true;
669 #ifndef HAVE_sync_compare_and_swapdi
670 #define HAVE_sync_compare_and_swapdi 0
671 #endif
672 #ifndef HAVE_atomic_compare_and_swapdi
673 #define HAVE_atomic_compare_and_swapdi 0
674 #endif
675 if (HAVE_sync_compare_and_swapdi || HAVE_atomic_compare_and_swapdi)
677 cpp_define (pfile, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_8");
678 have_swap[8] = true;
681 #ifndef HAVE_sync_compare_and_swapti
682 #define HAVE_sync_compare_and_swapti 0
683 #endif
684 #ifndef HAVE_atomic_compare_and_swapti
685 #define HAVE_atomic_compare_and_swapti 0
686 #endif
687 if (HAVE_sync_compare_and_swapti || HAVE_atomic_compare_and_swapti)
689 cpp_define (pfile, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_16");
690 have_swap[16] = true;
693 /* Tell the source code about various types. These map to the C++11 and C11
694 macros where 2 indicates lock-free always, and 1 indicates sometimes
695 lock free. */
696 #define SIZEOF_NODE(T) (tree_to_uhwi (TYPE_SIZE_UNIT (T)))
697 #define SWAP_INDEX(T) ((SIZEOF_NODE (T) < SWAP_LIMIT) ? SIZEOF_NODE (T) : 0)
698 builtin_define_with_int_value ("__GCC_ATOMIC_BOOL_LOCK_FREE",
699 (have_swap[SWAP_INDEX (boolean_type_node)]? 2 : 1));
700 builtin_define_with_int_value ("__GCC_ATOMIC_CHAR_LOCK_FREE",
701 (have_swap[SWAP_INDEX (signed_char_type_node)]? 2 : 1));
702 builtin_define_with_int_value ("__GCC_ATOMIC_CHAR16_T_LOCK_FREE",
703 (have_swap[SWAP_INDEX (char16_type_node)]? 2 : 1));
704 builtin_define_with_int_value ("__GCC_ATOMIC_CHAR32_T_LOCK_FREE",
705 (have_swap[SWAP_INDEX (char32_type_node)]? 2 : 1));
706 builtin_define_with_int_value ("__GCC_ATOMIC_WCHAR_T_LOCK_FREE",
707 (have_swap[SWAP_INDEX (wchar_type_node)]? 2 : 1));
708 builtin_define_with_int_value ("__GCC_ATOMIC_SHORT_LOCK_FREE",
709 (have_swap[SWAP_INDEX (short_integer_type_node)]? 2 : 1));
710 builtin_define_with_int_value ("__GCC_ATOMIC_INT_LOCK_FREE",
711 (have_swap[SWAP_INDEX (integer_type_node)]? 2 : 1));
712 builtin_define_with_int_value ("__GCC_ATOMIC_LONG_LOCK_FREE",
713 (have_swap[SWAP_INDEX (long_integer_type_node)]? 2 : 1));
714 builtin_define_with_int_value ("__GCC_ATOMIC_LLONG_LOCK_FREE",
715 (have_swap[SWAP_INDEX (long_long_integer_type_node)]? 2 : 1));
717 /* If we're dealing with a "set" value that doesn't exactly correspond
718 to a boolean truth value, let the library work around that. */
719 builtin_define_with_int_value ("__GCC_ATOMIC_TEST_AND_SET_TRUEVAL",
720 targetm.atomic_test_and_set_trueval);
722 /* ptr_type_node can't be used here since ptr_mode is only set when
723 toplev calls backend_init which is not done with -E or pch. */
724 psize = POINTER_SIZE_UNITS;
725 if (psize >= SWAP_LIMIT)
726 psize = 0;
727 builtin_define_with_int_value ("__GCC_ATOMIC_POINTER_LOCK_FREE",
728 (have_swap[psize]? 2 : 1));
731 /* Return the value for __GCC_IEC_559. */
732 static int
733 cpp_iec_559_value (void)
735 /* The default is support for IEEE 754-2008. */
736 int ret = 2;
738 /* float and double must be binary32 and binary64. If they are but
739 with reversed NaN convention, at most IEEE 754-1985 is
740 supported. */
741 const struct real_format *ffmt
742 = REAL_MODE_FORMAT (TYPE_MODE (float_type_node));
743 const struct real_format *dfmt
744 = REAL_MODE_FORMAT (TYPE_MODE (double_type_node));
745 if (!ffmt->qnan_msb_set || !dfmt->qnan_msb_set)
746 ret = 1;
747 if (ffmt->b != 2
748 || ffmt->p != 24
749 || ffmt->pnan != 24
750 || ffmt->emin != -125
751 || ffmt->emax != 128
752 || ffmt->signbit_rw != 31
753 || ffmt->round_towards_zero
754 || !ffmt->has_sign_dependent_rounding
755 || !ffmt->has_nans
756 || !ffmt->has_inf
757 || !ffmt->has_denorm
758 || !ffmt->has_signed_zero
759 || dfmt->b != 2
760 || dfmt->p != 53
761 || dfmt->pnan != 53
762 || dfmt->emin != -1021
763 || dfmt->emax != 1024
764 || dfmt->signbit_rw != 63
765 || dfmt->round_towards_zero
766 || !dfmt->has_sign_dependent_rounding
767 || !dfmt->has_nans
768 || !dfmt->has_inf
769 || !dfmt->has_denorm
770 || !dfmt->has_signed_zero)
771 ret = 0;
773 /* In strict C standards conformance mode, consider unpredictable
774 excess precision to mean lack of IEEE 754 support. The same
775 applies to unpredictable contraction. For C++, and outside
776 strict conformance mode, do not consider these options to mean
777 lack of IEEE 754 support. */
778 if (flag_iso
779 && !c_dialect_cxx ()
780 && TARGET_FLT_EVAL_METHOD != 0
781 && flag_excess_precision_cmdline != EXCESS_PRECISION_STANDARD)
782 ret = 0;
783 if (flag_iso
784 && !c_dialect_cxx ()
785 && flag_fp_contract_mode == FP_CONTRACT_FAST)
786 ret = 0;
788 /* Various options are contrary to IEEE 754 semantics. */
789 if (flag_unsafe_math_optimizations
790 || flag_associative_math
791 || flag_reciprocal_math
792 || flag_finite_math_only
793 || !flag_signed_zeros
794 || flag_single_precision_constant)
795 ret = 0;
797 /* If the target does not support IEEE 754 exceptions and rounding
798 modes, consider IEEE 754 support to be absent. */
799 if (!targetm.float_exceptions_rounding_supported_p ())
800 ret = 0;
802 return ret;
805 /* Return the value for __GCC_IEC_559_COMPLEX. */
806 static int
807 cpp_iec_559_complex_value (void)
809 /* The value is no bigger than that of __GCC_IEC_559. */
810 int ret = cpp_iec_559_value ();
812 /* Some options are contrary to the required default state of the
813 CX_LIMITED_RANGE pragma. */
814 if (flag_complex_method != 2)
815 ret = 0;
817 return ret;
820 /* Hook that registers front end and target-specific built-ins. */
821 void
822 c_cpp_builtins (cpp_reader *pfile)
824 int i;
826 /* -undef turns off target-specific built-ins. */
827 if (flag_undef)
828 return;
830 define_language_independent_builtin_macros (pfile);
832 if (c_dialect_cxx ())
834 int major;
835 parse_basever (&major, NULL, NULL);
836 cpp_define_formatted (pfile, "__GNUG__=%d", major);
839 /* For stddef.h. They require macros defined in c-common.c. */
840 c_stddef_cpp_builtins ();
842 /* Set include test macros for all C/C++ (not for just C++11 etc.)
843 The builtins __has_include__ and __has_include_next__ are defined
844 in libcpp. */
845 cpp_define (pfile, "__has_include(STR)=__has_include__(STR)");
846 cpp_define (pfile, "__has_include_next(STR)=__has_include_next__(STR)");
848 if (c_dialect_cxx ())
850 if (flag_weak && SUPPORTS_ONE_ONLY)
851 cpp_define (pfile, "__GXX_WEAK__=1");
852 else
853 cpp_define (pfile, "__GXX_WEAK__=0");
855 if (warn_deprecated)
856 cpp_define (pfile, "__DEPRECATED");
858 if (flag_rtti)
860 cpp_define (pfile, "__GXX_RTTI");
861 cpp_define (pfile, "__cpp_rtti=199711");
864 if (cxx_dialect >= cxx11)
865 cpp_define (pfile, "__GXX_EXPERIMENTAL_CXX0X__");
867 /* Binary literals have been allowed in g++ before C++11
868 and were standardized for C++14. */
869 if (!pedantic || cxx_dialect > cxx11)
870 cpp_define (pfile, "__cpp_binary_literals=201304");
872 /* Similarly for hexadecimal floating point literals and C++17. */
873 if (!pedantic || cpp_get_options (parse_in)->extended_numbers)
874 cpp_define (pfile, "__cpp_hex_float=201603");
876 /* Arrays of runtime bound were removed from C++14, but we still
877 support GNU VLAs. Let's define this macro to a low number
878 (corresponding to the initial test release of GNU C++) if we won't
879 complain about use of VLAs. */
880 if (c_dialect_cxx ()
881 && (pedantic ? warn_vla == 0 : warn_vla <= 0))
882 cpp_define (pfile, "__cpp_runtime_arrays=198712");
884 if (cxx_dialect >= cxx11)
886 /* Set feature test macros for C++11. */
887 if (cxx_dialect <= cxx14)
888 cpp_define (pfile, "__cpp_unicode_characters=200704");
889 cpp_define (pfile, "__cpp_raw_strings=200710");
890 cpp_define (pfile, "__cpp_unicode_literals=200710");
891 cpp_define (pfile, "__cpp_user_defined_literals=200809");
892 cpp_define (pfile, "__cpp_lambdas=200907");
893 if (cxx_dialect == cxx11)
894 cpp_define (pfile, "__cpp_constexpr=200704");
895 if (cxx_dialect <= cxx14)
896 cpp_define (pfile, "__cpp_range_based_for=200907");
897 if (cxx_dialect <= cxx14)
898 cpp_define (pfile, "__cpp_static_assert=200410");
899 cpp_define (pfile, "__cpp_decltype=200707");
900 cpp_define (pfile, "__cpp_attributes=200809");
901 cpp_define (pfile, "__cpp_rvalue_reference=200610");
902 cpp_define (pfile, "__cpp_rvalue_references=200610");
903 cpp_define (pfile, "__cpp_variadic_templates=200704");
904 cpp_define (pfile, "__cpp_initializer_lists=200806");
905 cpp_define (pfile, "__cpp_delegating_constructors=200604");
906 cpp_define (pfile, "__cpp_nsdmi=200809");
907 if (!flag_new_inheriting_ctors)
908 cpp_define (pfile, "__cpp_inheriting_constructors=200802");
909 else
910 cpp_define (pfile, "__cpp_inheriting_constructors=201511");
911 cpp_define (pfile, "__cpp_ref_qualifiers=200710");
912 cpp_define (pfile, "__cpp_alias_templates=200704");
914 if (cxx_dialect > cxx11)
916 /* Set feature test macros for C++14. */
917 cpp_define (pfile, "__cpp_return_type_deduction=201304");
918 cpp_define (pfile, "__cpp_init_captures=201304");
919 cpp_define (pfile, "__cpp_generic_lambdas=201304");
920 if (cxx_dialect <= cxx14)
921 cpp_define (pfile, "__cpp_constexpr=201304");
922 cpp_define (pfile, "__cpp_decltype_auto=201304");
923 cpp_define (pfile, "__cpp_aggregate_nsdmi=201304");
924 cpp_define (pfile, "__cpp_variable_templates=201304");
925 cpp_define (pfile, "__cpp_digit_separators=201309");
927 if (cxx_dialect > cxx14)
929 /* Set feature test macros for C++1z. */
930 cpp_define (pfile, "__cpp_unicode_characters=201411");
931 cpp_define (pfile, "__cpp_static_assert=201411");
932 cpp_define (pfile, "__cpp_namespace_attributes=201411");
933 cpp_define (pfile, "__cpp_enumerator_attributes=201411");
934 cpp_define (pfile, "__cpp_nested_namespace_definitions=201411");
935 cpp_define (pfile, "__cpp_fold_expressions=201603");
936 cpp_define (pfile, "__cpp_nontype_template_args=201411");
937 cpp_define (pfile, "__cpp_range_based_for=201603");
938 cpp_define (pfile, "__cpp_constexpr=201603");
939 cpp_define (pfile, "__cpp_if_constexpr=201606");
940 cpp_define (pfile, "__cpp_capture_star_this=201603");
941 cpp_define (pfile, "__cpp_inline_variables=201606");
942 cpp_define (pfile, "__cpp_aggregate_bases=201603");
943 cpp_define (pfile, "__cpp_deduction_guides=201606");
945 if (flag_concepts)
946 cpp_define (pfile, "__cpp_concepts=201507");
947 if (flag_tm)
948 /* Use a value smaller than the 201505 specified in
949 the TS, since we don't yet support atomic_cancel. */
950 cpp_define (pfile, "__cpp_transactional_memory=210500");
951 if (flag_sized_deallocation)
952 cpp_define (pfile, "__cpp_sized_deallocation=201309");
953 if (aligned_new_threshold)
955 cpp_define (pfile, "__cpp_aligned_new=201606");
956 cpp_define_formatted (pfile, "__STDCPP_DEFAULT_NEW_ALIGNMENT__=%d",
957 aligned_new_threshold);
960 /* Note that we define this for C as well, so that we know if
961 __attribute__((cleanup)) will interface with EH. */
962 if (flag_exceptions)
964 cpp_define (pfile, "__EXCEPTIONS");
965 if (c_dialect_cxx ())
966 cpp_define (pfile, "__cpp_exceptions=199711");
969 /* Represents the C++ ABI version, always defined so it can be used while
970 preprocessing C and assembler. */
971 if (flag_abi_version == 0)
972 /* We should have set this to something real in c_common_post_options. */
973 gcc_unreachable ();
974 else if (flag_abi_version == 1)
975 /* Due to a historical accident, this version had the value
976 "102". */
977 builtin_define_with_int_value ("__GXX_ABI_VERSION", 102);
978 else
979 /* Newer versions have values 1002, 1003, .... */
980 builtin_define_with_int_value ("__GXX_ABI_VERSION",
981 1000 + flag_abi_version);
983 /* libgcc needs to know this. */
984 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ)
985 cpp_define (pfile, "__USING_SJLJ_EXCEPTIONS__");
987 /* limits.h and stdint.h need to know these. */
988 builtin_define_type_max ("__SCHAR_MAX__", signed_char_type_node);
989 builtin_define_type_max ("__SHRT_MAX__", short_integer_type_node);
990 builtin_define_type_max ("__INT_MAX__", integer_type_node);
991 builtin_define_type_max ("__LONG_MAX__", long_integer_type_node);
992 builtin_define_type_max ("__LONG_LONG_MAX__", long_long_integer_type_node);
993 builtin_define_type_minmax ("__WCHAR_MIN__", "__WCHAR_MAX__",
994 underlying_wchar_type_node);
995 builtin_define_type_minmax ("__WINT_MIN__", "__WINT_MAX__", wint_type_node);
996 builtin_define_type_max ("__PTRDIFF_MAX__", ptrdiff_type_node);
997 builtin_define_type_max ("__SIZE_MAX__", size_type_node);
999 /* These are needed for TS 18661-1. */
1000 builtin_define_type_width ("__SCHAR_WIDTH__", signed_char_type_node,
1001 unsigned_char_type_node);
1002 builtin_define_type_width ("__SHRT_WIDTH__", short_integer_type_node,
1003 short_unsigned_type_node);
1004 builtin_define_type_width ("__INT_WIDTH__", integer_type_node,
1005 unsigned_type_node);
1006 builtin_define_type_width ("__LONG_WIDTH__", long_integer_type_node,
1007 long_unsigned_type_node);
1008 builtin_define_type_width ("__LONG_LONG_WIDTH__",
1009 long_long_integer_type_node,
1010 long_long_unsigned_type_node);
1011 builtin_define_type_width ("__WCHAR_WIDTH__", underlying_wchar_type_node,
1012 NULL_TREE);
1013 builtin_define_type_width ("__WINT_WIDTH__", wint_type_node, NULL_TREE);
1014 builtin_define_type_width ("__PTRDIFF_WIDTH__", ptrdiff_type_node, NULL_TREE);
1015 builtin_define_type_width ("__SIZE_WIDTH__", size_type_node, NULL_TREE);
1017 if (c_dialect_cxx ())
1018 for (i = 0; i < NUM_INT_N_ENTS; i ++)
1019 if (int_n_enabled_p[i])
1021 char buf[35+20+20];
1023 /* These are used to configure the C++ library. */
1025 if (!flag_iso || int_n_data[i].bitsize == POINTER_SIZE)
1027 sprintf (buf, "__GLIBCXX_TYPE_INT_N_%d=__int%d", i, int_n_data[i].bitsize);
1028 cpp_define (parse_in, buf);
1030 sprintf (buf, "__GLIBCXX_BITSIZE_INT_N_%d=%d", i, int_n_data[i].bitsize);
1031 cpp_define (parse_in, buf);
1035 /* stdint.h and the testsuite need to know these. */
1036 builtin_define_stdint_macros ();
1038 /* Provide information for library headers to determine whether to
1039 define macros such as __STDC_IEC_559__ and
1040 __STDC_IEC_559_COMPLEX__. */
1041 builtin_define_with_int_value ("__GCC_IEC_559", cpp_iec_559_value ());
1042 builtin_define_with_int_value ("__GCC_IEC_559_COMPLEX",
1043 cpp_iec_559_complex_value ());
1045 /* float.h needs to know this. */
1046 builtin_define_with_int_value ("__FLT_EVAL_METHOD__",
1047 TARGET_FLT_EVAL_METHOD);
1049 /* And decfloat.h needs this. */
1050 builtin_define_with_int_value ("__DEC_EVAL_METHOD__",
1051 TARGET_DEC_EVAL_METHOD);
1053 builtin_define_float_constants ("FLT", "F", "%s", "F", float_type_node);
1054 /* Cast the double precision constants. This is needed when single
1055 precision constants are specified or when pragma FLOAT_CONST_DECIMAL64
1056 is used. The correct result is computed by the compiler when using
1057 macros that include a cast. We use a different cast for C++ to avoid
1058 problems with -Wold-style-cast. */
1059 builtin_define_float_constants ("DBL", "L",
1060 (c_dialect_cxx ()
1061 ? "double(%s)"
1062 : "((double)%s)"),
1063 "", double_type_node);
1064 builtin_define_float_constants ("LDBL", "L", "%s", "L",
1065 long_double_type_node);
1067 for (int i = 0; i < NUM_FLOATN_NX_TYPES; i++)
1069 if (FLOATN_NX_TYPE_NODE (i) == NULL_TREE)
1070 continue;
1071 char prefix[20], csuffix[20];
1072 sprintf (prefix, "FLT%d%s", floatn_nx_types[i].n,
1073 floatn_nx_types[i].extended ? "X" : "");
1074 sprintf (csuffix, "F%d%s", floatn_nx_types[i].n,
1075 floatn_nx_types[i].extended ? "x" : "");
1076 builtin_define_float_constants (prefix, csuffix, "%s", NULL,
1077 FLOATN_NX_TYPE_NODE (i));
1080 /* For decfloat.h. */
1081 builtin_define_decimal_float_constants ("DEC32", "DF", dfloat32_type_node);
1082 builtin_define_decimal_float_constants ("DEC64", "DD", dfloat64_type_node);
1083 builtin_define_decimal_float_constants ("DEC128", "DL", dfloat128_type_node);
1085 /* For fixed-point fibt, ibit, max, min, and epsilon. */
1086 if (targetm.fixed_point_supported_p ())
1088 builtin_define_fixed_point_constants ("SFRACT", "HR",
1089 short_fract_type_node);
1090 builtin_define_fixed_point_constants ("USFRACT", "UHR",
1091 unsigned_short_fract_type_node);
1092 builtin_define_fixed_point_constants ("FRACT", "R",
1093 fract_type_node);
1094 builtin_define_fixed_point_constants ("UFRACT", "UR",
1095 unsigned_fract_type_node);
1096 builtin_define_fixed_point_constants ("LFRACT", "LR",
1097 long_fract_type_node);
1098 builtin_define_fixed_point_constants ("ULFRACT", "ULR",
1099 unsigned_long_fract_type_node);
1100 builtin_define_fixed_point_constants ("LLFRACT", "LLR",
1101 long_long_fract_type_node);
1102 builtin_define_fixed_point_constants ("ULLFRACT", "ULLR",
1103 unsigned_long_long_fract_type_node);
1104 builtin_define_fixed_point_constants ("SACCUM", "HK",
1105 short_accum_type_node);
1106 builtin_define_fixed_point_constants ("USACCUM", "UHK",
1107 unsigned_short_accum_type_node);
1108 builtin_define_fixed_point_constants ("ACCUM", "K",
1109 accum_type_node);
1110 builtin_define_fixed_point_constants ("UACCUM", "UK",
1111 unsigned_accum_type_node);
1112 builtin_define_fixed_point_constants ("LACCUM", "LK",
1113 long_accum_type_node);
1114 builtin_define_fixed_point_constants ("ULACCUM", "ULK",
1115 unsigned_long_accum_type_node);
1116 builtin_define_fixed_point_constants ("LLACCUM", "LLK",
1117 long_long_accum_type_node);
1118 builtin_define_fixed_point_constants ("ULLACCUM", "ULLK",
1119 unsigned_long_long_accum_type_node);
1121 builtin_define_fixed_point_constants ("QQ", "", qq_type_node);
1122 builtin_define_fixed_point_constants ("HQ", "", hq_type_node);
1123 builtin_define_fixed_point_constants ("SQ", "", sq_type_node);
1124 builtin_define_fixed_point_constants ("DQ", "", dq_type_node);
1125 builtin_define_fixed_point_constants ("TQ", "", tq_type_node);
1126 builtin_define_fixed_point_constants ("UQQ", "", uqq_type_node);
1127 builtin_define_fixed_point_constants ("UHQ", "", uhq_type_node);
1128 builtin_define_fixed_point_constants ("USQ", "", usq_type_node);
1129 builtin_define_fixed_point_constants ("UDQ", "", udq_type_node);
1130 builtin_define_fixed_point_constants ("UTQ", "", utq_type_node);
1131 builtin_define_fixed_point_constants ("HA", "", ha_type_node);
1132 builtin_define_fixed_point_constants ("SA", "", sa_type_node);
1133 builtin_define_fixed_point_constants ("DA", "", da_type_node);
1134 builtin_define_fixed_point_constants ("TA", "", ta_type_node);
1135 builtin_define_fixed_point_constants ("UHA", "", uha_type_node);
1136 builtin_define_fixed_point_constants ("USA", "", usa_type_node);
1137 builtin_define_fixed_point_constants ("UDA", "", uda_type_node);
1138 builtin_define_fixed_point_constants ("UTA", "", uta_type_node);
1141 /* For libgcc-internal use only. */
1142 if (flag_building_libgcc)
1144 /* Properties of floating-point modes for libgcc2.c. */
1145 for (machine_mode mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT);
1146 mode != VOIDmode;
1147 mode = GET_MODE_WIDER_MODE (mode))
1149 const char *name = GET_MODE_NAME (mode);
1150 char *macro_name
1151 = (char *) alloca (strlen (name)
1152 + sizeof ("__LIBGCC__MANT_DIG__"));
1153 sprintf (macro_name, "__LIBGCC_%s_MANT_DIG__", name);
1154 builtin_define_with_int_value (macro_name,
1155 REAL_MODE_FORMAT (mode)->p);
1156 if (!targetm.scalar_mode_supported_p (mode)
1157 || !targetm.libgcc_floating_mode_supported_p (mode))
1158 continue;
1159 macro_name = (char *) alloca (strlen (name)
1160 + sizeof ("__LIBGCC_HAS__MODE__"));
1161 sprintf (macro_name, "__LIBGCC_HAS_%s_MODE__", name);
1162 cpp_define (pfile, macro_name);
1163 macro_name = (char *) alloca (strlen (name)
1164 + sizeof ("__LIBGCC__FUNC_EXT__"));
1165 sprintf (macro_name, "__LIBGCC_%s_FUNC_EXT__", name);
1166 char suffix[20] = "";
1167 if (mode == TYPE_MODE (double_type_node))
1168 ; /* Empty suffix correct. */
1169 else if (mode == TYPE_MODE (float_type_node))
1170 suffix[0] = 'f';
1171 else if (mode == TYPE_MODE (long_double_type_node))
1172 suffix[0] = 'l';
1173 else
1175 bool found_suffix = false;
1176 for (int i = 0; i < NUM_FLOATN_NX_TYPES; i++)
1177 if (FLOATN_NX_TYPE_NODE (i) != NULL_TREE
1178 && mode == TYPE_MODE (FLOATN_NX_TYPE_NODE (i)))
1180 sprintf (suffix, "f%d%s", floatn_nx_types[i].n,
1181 floatn_nx_types[i].extended ? "x" : "");
1182 found_suffix = true;
1183 break;
1185 gcc_assert (found_suffix);
1187 builtin_define_with_value (macro_name, suffix, 0);
1188 bool excess_precision = false;
1189 if (TARGET_FLT_EVAL_METHOD != 0
1190 && mode != TYPE_MODE (long_double_type_node)
1191 && (mode == TYPE_MODE (float_type_node)
1192 || mode == TYPE_MODE (double_type_node)))
1193 switch (TARGET_FLT_EVAL_METHOD)
1195 case -1:
1196 case 2:
1197 excess_precision = true;
1198 break;
1200 case 1:
1201 excess_precision = mode == TYPE_MODE (float_type_node);
1202 break;
1204 default:
1205 gcc_unreachable ();
1207 macro_name = (char *) alloca (strlen (name)
1208 + sizeof ("__LIBGCC__EXCESS_"
1209 "PRECISION__"));
1210 sprintf (macro_name, "__LIBGCC_%s_EXCESS_PRECISION__", name);
1211 builtin_define_with_int_value (macro_name, excess_precision);
1214 /* For libgcc crtstuff.c and libgcc2.c. */
1215 builtin_define_with_int_value ("__LIBGCC_EH_TABLES_CAN_BE_READ_ONLY__",
1216 EH_TABLES_CAN_BE_READ_ONLY);
1217 #ifdef EH_FRAME_SECTION_NAME
1218 builtin_define_with_value ("__LIBGCC_EH_FRAME_SECTION_NAME__",
1219 EH_FRAME_SECTION_NAME, 1);
1220 #endif
1221 #ifdef CTORS_SECTION_ASM_OP
1222 builtin_define_with_value ("__LIBGCC_CTORS_SECTION_ASM_OP__",
1223 CTORS_SECTION_ASM_OP, 1);
1224 #endif
1225 #ifdef DTORS_SECTION_ASM_OP
1226 builtin_define_with_value ("__LIBGCC_DTORS_SECTION_ASM_OP__",
1227 DTORS_SECTION_ASM_OP, 1);
1228 #endif
1229 #ifdef TEXT_SECTION_ASM_OP
1230 builtin_define_with_value ("__LIBGCC_TEXT_SECTION_ASM_OP__",
1231 TEXT_SECTION_ASM_OP, 1);
1232 #endif
1233 #ifdef INIT_SECTION_ASM_OP
1234 builtin_define_with_value ("__LIBGCC_INIT_SECTION_ASM_OP__",
1235 INIT_SECTION_ASM_OP, 1);
1236 #endif
1237 #ifdef INIT_ARRAY_SECTION_ASM_OP
1238 /* Despite the name of this target macro, the expansion is not
1239 actually used, and may be empty rather than a string
1240 constant. */
1241 cpp_define (pfile, "__LIBGCC_INIT_ARRAY_SECTION_ASM_OP__");
1242 #endif
1244 /* For libgcc enable-execute-stack.c. */
1245 builtin_define_with_int_value ("__LIBGCC_TRAMPOLINE_SIZE__",
1246 TRAMPOLINE_SIZE);
1248 /* For libgcc generic-morestack.c and unwinder code. */
1249 if (STACK_GROWS_DOWNWARD)
1250 cpp_define (pfile, "__LIBGCC_STACK_GROWS_DOWNWARD__");
1252 /* For libgcc unwinder code. */
1253 #ifdef DONT_USE_BUILTIN_SETJMP
1254 cpp_define (pfile, "__LIBGCC_DONT_USE_BUILTIN_SETJMP__");
1255 #endif
1256 #ifdef DWARF_ALT_FRAME_RETURN_COLUMN
1257 builtin_define_with_int_value ("__LIBGCC_DWARF_ALT_FRAME_RETURN_COLUMN__",
1258 DWARF_ALT_FRAME_RETURN_COLUMN);
1259 #endif
1260 builtin_define_with_int_value ("__LIBGCC_DWARF_FRAME_REGISTERS__",
1261 DWARF_FRAME_REGISTERS);
1262 #ifdef EH_RETURN_STACKADJ_RTX
1263 cpp_define (pfile, "__LIBGCC_EH_RETURN_STACKADJ_RTX__");
1264 #endif
1265 #ifdef JMP_BUF_SIZE
1266 builtin_define_with_int_value ("__LIBGCC_JMP_BUF_SIZE__",
1267 JMP_BUF_SIZE);
1268 #endif
1269 builtin_define_with_int_value ("__LIBGCC_STACK_POINTER_REGNUM__",
1270 STACK_POINTER_REGNUM);
1272 /* For libgcov. */
1273 builtin_define_with_int_value ("__LIBGCC_VTABLE_USES_DESCRIPTORS__",
1274 TARGET_VTABLE_USES_DESCRIPTORS);
1277 /* For use in assembly language. */
1278 builtin_define_with_value ("__REGISTER_PREFIX__", REGISTER_PREFIX, 0);
1279 builtin_define_with_value ("__USER_LABEL_PREFIX__", user_label_prefix, 0);
1281 /* Misc. */
1282 if (flag_gnu89_inline)
1283 cpp_define (pfile, "__GNUC_GNU_INLINE__");
1284 else
1285 cpp_define (pfile, "__GNUC_STDC_INLINE__");
1287 if (flag_no_inline)
1288 cpp_define (pfile, "__NO_INLINE__");
1290 if (flag_iso)
1291 cpp_define (pfile, "__STRICT_ANSI__");
1293 if (!flag_signed_char)
1294 cpp_define (pfile, "__CHAR_UNSIGNED__");
1296 if (c_dialect_cxx () && TYPE_UNSIGNED (wchar_type_node))
1297 cpp_define (pfile, "__WCHAR_UNSIGNED__");
1299 cpp_atomic_builtins (pfile);
1301 #ifdef DWARF2_UNWIND_INFO
1302 if (dwarf2out_do_cfi_asm ())
1303 cpp_define (pfile, "__GCC_HAVE_DWARF2_CFI_ASM");
1304 #endif
1306 /* Make the choice of ObjC runtime visible to source code. */
1307 if (c_dialect_objc () && flag_next_runtime)
1308 cpp_define (pfile, "__NEXT_RUNTIME__");
1310 /* Show the availability of some target pragmas. */
1311 cpp_define (pfile, "__PRAGMA_REDEFINE_EXTNAME");
1313 /* Make the choice of the stack protector runtime visible to source code.
1314 The macro names and values here were chosen for compatibility with an
1315 earlier implementation, i.e. ProPolice. */
1316 if (flag_stack_protect == 4)
1317 cpp_define (pfile, "__SSP_EXPLICIT__=4");
1318 if (flag_stack_protect == 3)
1319 cpp_define (pfile, "__SSP_STRONG__=3");
1320 if (flag_stack_protect == 2)
1321 cpp_define (pfile, "__SSP_ALL__=2");
1322 else if (flag_stack_protect == 1)
1323 cpp_define (pfile, "__SSP__=1");
1325 if (flag_openacc)
1326 cpp_define (pfile, "_OPENACC=201306");
1328 if (flag_openmp)
1329 cpp_define (pfile, "_OPENMP=201511");
1331 for (i = 0; i < NUM_INT_N_ENTS; i ++)
1332 if (int_n_enabled_p[i])
1334 char buf[15+20];
1335 sprintf(buf, "__SIZEOF_INT%d__", int_n_data[i].bitsize);
1336 builtin_define_type_sizeof (buf,
1337 int_n_trees[i].signed_type);
1339 builtin_define_type_sizeof ("__SIZEOF_WCHAR_T__", wchar_type_node);
1340 builtin_define_type_sizeof ("__SIZEOF_WINT_T__", wint_type_node);
1341 builtin_define_type_sizeof ("__SIZEOF_PTRDIFF_T__",
1342 unsigned_ptrdiff_type_node);
1344 /* A straightforward target hook doesn't work, because of problems
1345 linking that hook's body when part of non-C front ends. */
1346 # define preprocessing_asm_p() (cpp_get_options (pfile)->lang == CLK_ASM)
1347 # define preprocessing_trad_p() (cpp_get_options (pfile)->traditional)
1348 # define builtin_define(TXT) cpp_define (pfile, TXT)
1349 # define builtin_assert(TXT) cpp_assert (pfile, TXT)
1350 TARGET_CPU_CPP_BUILTINS ();
1351 TARGET_OS_CPP_BUILTINS ();
1352 TARGET_OBJFMT_CPP_BUILTINS ();
1354 /* Support the __declspec keyword by turning them into attributes.
1355 Note that the current way we do this may result in a collision
1356 with predefined attributes later on. This can be solved by using
1357 one attribute, say __declspec__, and passing args to it. The
1358 problem with that approach is that args are not accumulated: each
1359 new appearance would clobber any existing args. */
1360 if (TARGET_DECLSPEC)
1361 builtin_define ("__declspec(x)=__attribute__((x))");
1363 /* If decimal floating point is supported, tell the user if the
1364 alternate format (BID) is used instead of the standard (DPD)
1365 format. */
1366 if (ENABLE_DECIMAL_FLOAT && ENABLE_DECIMAL_BID_FORMAT)
1367 cpp_define (pfile, "__DECIMAL_BID_FORMAT__");
1370 /* Pass an object-like macro. If it doesn't lie in the user's
1371 namespace, defines it unconditionally. Otherwise define a version
1372 with two leading underscores, and another version with two leading
1373 and trailing underscores, and define the original only if an ISO
1374 standard was not nominated.
1376 e.g. passing "unix" defines "__unix", "__unix__" and possibly
1377 "unix". Passing "_mips" defines "__mips", "__mips__" and possibly
1378 "_mips". */
1379 void
1380 builtin_define_std (const char *macro)
1382 size_t len = strlen (macro);
1383 char *buff = (char *) alloca (len + 5);
1384 char *p = buff + 2;
1385 char *q = p + len;
1387 /* prepend __ (or maybe just _) if in user's namespace. */
1388 memcpy (p, macro, len + 1);
1389 if (!( *p == '_' && (p[1] == '_' || ISUPPER (p[1]))))
1391 if (*p != '_')
1392 *--p = '_';
1393 if (p[1] != '_')
1394 *--p = '_';
1396 cpp_define (parse_in, p);
1398 /* If it was in user's namespace... */
1399 if (p != buff + 2)
1401 /* Define the macro with leading and following __. */
1402 if (q[-1] != '_')
1403 *q++ = '_';
1404 if (q[-2] != '_')
1405 *q++ = '_';
1406 *q = '\0';
1407 cpp_define (parse_in, p);
1409 /* Finally, define the original macro if permitted. */
1410 if (!flag_iso)
1411 cpp_define (parse_in, macro);
1415 /* Pass an object-like macro and a value to define it to. The third
1416 parameter says whether or not to turn the value into a string
1417 constant. */
1418 void
1419 builtin_define_with_value (const char *macro, const char *expansion, int is_str)
1421 char *buf;
1422 size_t mlen = strlen (macro);
1423 size_t elen = strlen (expansion);
1424 size_t extra = 2; /* space for an = and a NUL */
1426 if (is_str)
1428 char *quoted_expansion = (char *) alloca (elen * 4 + 1);
1429 const char *p;
1430 char *q;
1431 extra += 2; /* space for two quote marks */
1432 for (p = expansion, q = quoted_expansion; *p; p++)
1434 switch (*p)
1436 case '\n':
1437 *q++ = '\\';
1438 *q++ = 'n';
1439 break;
1441 case '\t':
1442 *q++ = '\\';
1443 *q++ = 't';
1444 break;
1446 case '\\':
1447 *q++ = '\\';
1448 *q++ = '\\';
1449 break;
1451 case '"':
1452 *q++ = '\\';
1453 *q++ = '"';
1454 break;
1456 default:
1457 if (ISPRINT ((unsigned char) *p))
1458 *q++ = *p;
1459 else
1461 sprintf (q, "\\%03o", (unsigned char) *p);
1462 q += 4;
1466 *q = '\0';
1467 expansion = quoted_expansion;
1468 elen = q - expansion;
1471 buf = (char *) alloca (mlen + elen + extra);
1472 if (is_str)
1473 sprintf (buf, "%s=\"%s\"", macro, expansion);
1474 else
1475 sprintf (buf, "%s=%s", macro, expansion);
1477 cpp_define (parse_in, buf);
1481 /* Pass an object-like macro and an integer value to define it to. */
1482 void
1483 builtin_define_with_int_value (const char *macro, HOST_WIDE_INT value)
1485 char *buf;
1486 size_t mlen = strlen (macro);
1487 size_t vlen = 18;
1488 size_t extra = 2; /* space for = and NUL. */
1490 buf = (char *) alloca (mlen + vlen + extra);
1491 memcpy (buf, macro, mlen);
1492 buf[mlen] = '=';
1493 sprintf (buf + mlen + 1, HOST_WIDE_INT_PRINT_DEC, value);
1495 cpp_define (parse_in, buf);
1498 /* builtin_define_with_hex_fp_value is very expensive, so the following
1499 array and function allows it to be done lazily when __DBL_MAX__
1500 etc. is first used. */
1502 struct GTY(()) lazy_hex_fp_value_struct
1504 const char *hex_str;
1505 cpp_macro *macro;
1506 machine_mode mode;
1507 int digits;
1508 const char *fp_suffix;
1510 static GTY(()) struct lazy_hex_fp_value_struct lazy_hex_fp_values[12];
1511 static GTY(()) int lazy_hex_fp_value_count;
1513 static bool
1514 lazy_hex_fp_value (cpp_reader *pfile ATTRIBUTE_UNUSED,
1515 cpp_hashnode *node)
1517 REAL_VALUE_TYPE real;
1518 char dec_str[64], buf1[256];
1519 unsigned int idx;
1520 if (node->value.builtin < BT_FIRST_USER
1521 || (int) node->value.builtin >= BT_FIRST_USER + lazy_hex_fp_value_count)
1522 return false;
1524 idx = node->value.builtin - BT_FIRST_USER;
1525 real_from_string (&real, lazy_hex_fp_values[idx].hex_str);
1526 real_to_decimal_for_mode (dec_str, &real, sizeof (dec_str),
1527 lazy_hex_fp_values[idx].digits, 0,
1528 lazy_hex_fp_values[idx].mode);
1530 sprintf (buf1, "%s%s", dec_str, lazy_hex_fp_values[idx].fp_suffix);
1531 node->flags &= ~(NODE_BUILTIN | NODE_USED);
1532 node->value.macro = lazy_hex_fp_values[idx].macro;
1533 for (idx = 0; idx < node->value.macro->count; idx++)
1534 if (node->value.macro->exp.tokens[idx].type == CPP_NUMBER)
1535 break;
1536 gcc_assert (idx < node->value.macro->count);
1537 node->value.macro->exp.tokens[idx].val.str.len = strlen (buf1);
1538 node->value.macro->exp.tokens[idx].val.str.text
1539 = (const unsigned char *) ggc_strdup (buf1);
1540 return true;
1543 /* Pass an object-like macro a hexadecimal floating-point value. */
1544 static void
1545 builtin_define_with_hex_fp_value (const char *macro,
1546 tree type, int digits,
1547 const char *hex_str,
1548 const char *fp_suffix,
1549 const char *fp_cast)
1551 REAL_VALUE_TYPE real;
1552 char dec_str[64], buf1[256], buf2[256];
1554 /* This is very expensive, so if possible expand them lazily. */
1555 if (lazy_hex_fp_value_count < 12
1556 && flag_dump_macros == 0
1557 && !cpp_get_options (parse_in)->traditional)
1559 struct cpp_hashnode *node;
1560 if (lazy_hex_fp_value_count == 0)
1561 cpp_get_callbacks (parse_in)->user_builtin_macro = lazy_hex_fp_value;
1562 sprintf (buf2, fp_cast, "1.1");
1563 sprintf (buf1, "%s=%s", macro, buf2);
1564 cpp_define (parse_in, buf1);
1565 node = C_CPP_HASHNODE (get_identifier (macro));
1566 lazy_hex_fp_values[lazy_hex_fp_value_count].hex_str
1567 = ggc_strdup (hex_str);
1568 lazy_hex_fp_values[lazy_hex_fp_value_count].mode = TYPE_MODE (type);
1569 lazy_hex_fp_values[lazy_hex_fp_value_count].digits = digits;
1570 lazy_hex_fp_values[lazy_hex_fp_value_count].fp_suffix = fp_suffix;
1571 lazy_hex_fp_values[lazy_hex_fp_value_count].macro = node->value.macro;
1572 node->flags |= NODE_BUILTIN;
1573 node->value.builtin
1574 = (enum cpp_builtin_type) (BT_FIRST_USER + lazy_hex_fp_value_count);
1575 lazy_hex_fp_value_count++;
1576 return;
1579 /* Hex values are really cool and convenient, except that they're
1580 not supported in strict ISO C90 mode. First, the "p-" sequence
1581 is not valid as part of a preprocessor number. Second, we get a
1582 pedwarn from the preprocessor, which has no context, so we can't
1583 suppress the warning with __extension__.
1585 So instead what we do is construct the number in hex (because
1586 it's easy to get the exact correct value), parse it as a real,
1587 then print it back out as decimal. */
1589 real_from_string (&real, hex_str);
1590 real_to_decimal_for_mode (dec_str, &real, sizeof (dec_str), digits, 0,
1591 TYPE_MODE (type));
1593 /* Assemble the macro in the following fashion
1594 macro = fp_cast [dec_str fp_suffix] */
1595 sprintf (buf1, "%s%s", dec_str, fp_suffix);
1596 sprintf (buf2, fp_cast, buf1);
1597 sprintf (buf1, "%s=%s", macro, buf2);
1599 cpp_define (parse_in, buf1);
1602 /* Return a string constant for the suffix for a value of type TYPE
1603 promoted according to the integer promotions. The type must be one
1604 of the standard integer type nodes. */
1606 static const char *
1607 type_suffix (tree type)
1609 static const char *const suffixes[] = { "", "U", "L", "UL", "LL", "ULL" };
1610 int unsigned_suffix;
1611 int is_long;
1612 int tp = TYPE_PRECISION (type);
1614 if (type == long_long_integer_type_node
1615 || type == long_long_unsigned_type_node
1616 || tp > TYPE_PRECISION (long_integer_type_node))
1617 is_long = 2;
1618 else if (type == long_integer_type_node
1619 || type == long_unsigned_type_node
1620 || tp > TYPE_PRECISION (integer_type_node))
1621 is_long = 1;
1622 else if (type == integer_type_node
1623 || type == unsigned_type_node
1624 || type == short_integer_type_node
1625 || type == short_unsigned_type_node
1626 || type == signed_char_type_node
1627 || type == unsigned_char_type_node
1628 /* ??? "char" is not a signed or unsigned integer type and
1629 so is not permitted for the standard typedefs, but some
1630 systems use it anyway. */
1631 || type == char_type_node)
1632 is_long = 0;
1633 else
1634 gcc_unreachable ();
1636 unsigned_suffix = TYPE_UNSIGNED (type);
1637 if (TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
1638 unsigned_suffix = 0;
1639 return suffixes[is_long * 2 + unsigned_suffix];
1642 /* Define MACRO as a <stdint.h> constant-suffix macro for TYPE. */
1643 static void
1644 builtin_define_constants (const char *macro, tree type)
1646 const char *suffix;
1647 char *buf;
1649 suffix = type_suffix (type);
1651 if (suffix[0] == 0)
1653 buf = (char *) alloca (strlen (macro) + 6);
1654 sprintf (buf, "%s(c)=c", macro);
1656 else
1658 buf = (char *) alloca (strlen (macro) + 9 + strlen (suffix) + 1);
1659 sprintf (buf, "%s(c)=c ## %s", macro, suffix);
1662 cpp_define (parse_in, buf);
1665 /* Define MAX for TYPE based on the precision of the type. */
1667 static void
1668 builtin_define_type_max (const char *macro, tree type)
1670 builtin_define_type_minmax (NULL, macro, type);
1673 /* Given a value with COUNT LSBs set, fill BUF with a hexidecimal
1674 representation of that value. For example, a COUNT of 10 would
1675 return "0x3ff". */
1677 static void
1678 print_bits_of_hex (char *buf, int bufsz, int count)
1680 gcc_assert (bufsz > 3);
1681 *buf++ = '0';
1682 *buf++ = 'x';
1683 bufsz -= 2;
1685 gcc_assert (count > 0);
1687 switch (count % 4) {
1688 case 0:
1689 break;
1690 case 1:
1691 *buf++ = '1';
1692 bufsz --;
1693 count -= 1;
1694 break;
1695 case 2:
1696 *buf++ = '3';
1697 bufsz --;
1698 count -= 2;
1699 break;
1700 case 3:
1701 *buf++ = '7';
1702 bufsz --;
1703 count -= 3;
1704 break;
1706 while (count >= 4)
1708 gcc_assert (bufsz > 1);
1709 *buf++ = 'f';
1710 bufsz --;
1711 count -= 4;
1713 gcc_assert (bufsz > 0);
1714 *buf++ = 0;
1717 /* Define MIN_MACRO (if not NULL) and MAX_MACRO for TYPE based on the
1718 precision of the type. */
1720 static void
1721 builtin_define_type_minmax (const char *min_macro, const char *max_macro,
1722 tree type)
1724 #define PBOH_SZ (MAX_BITSIZE_MODE_ANY_INT/4+4)
1725 char value[PBOH_SZ];
1727 const char *suffix;
1728 char *buf;
1729 int bits;
1731 bits = TYPE_PRECISION (type) + (TYPE_UNSIGNED (type) ? 0 : -1);
1733 print_bits_of_hex (value, PBOH_SZ, bits);
1735 suffix = type_suffix (type);
1737 buf = (char *) alloca (strlen (max_macro) + 1 + strlen (value)
1738 + strlen (suffix) + 1);
1739 sprintf (buf, "%s=%s%s", max_macro, value, suffix);
1741 cpp_define (parse_in, buf);
1743 if (min_macro)
1745 if (TYPE_UNSIGNED (type))
1747 buf = (char *) alloca (strlen (min_macro) + 2 + strlen (suffix) + 1);
1748 sprintf (buf, "%s=0%s", min_macro, suffix);
1750 else
1752 buf = (char *) alloca (strlen (min_macro) + 3
1753 + strlen (max_macro) + 6);
1754 sprintf (buf, "%s=(-%s - 1)", min_macro, max_macro);
1756 cpp_define (parse_in, buf);
1760 /* Define WIDTH_MACRO for the width of TYPE. If TYPE2 is not NULL,
1761 both types must have the same width. */
1763 static void
1764 builtin_define_type_width (const char *width_macro, tree type, tree type2)
1766 if (type2 != NULL_TREE)
1767 gcc_assert (TYPE_PRECISION (type) == TYPE_PRECISION (type2));
1768 builtin_define_with_int_value (width_macro, TYPE_PRECISION (type));
1771 #include "gt-c-family-c-cppbuiltin.h"