Branch data Line data Source code
1 : : /* Define builtin-in macros for the C family front ends.
2 : : Copyright (C) 2002-2025 Free Software Foundation, Inc.
3 : :
4 : : This file is part of GCC.
5 : :
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.
10 : :
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.
15 : :
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/>. */
19 : :
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 "cppbuiltin.h"
35 : : #include "configargs.h"
36 : :
37 : : #ifndef TARGET_OS_CPP_BUILTINS
38 : : # define TARGET_OS_CPP_BUILTINS()
39 : : #endif
40 : :
41 : : #ifndef TARGET_OBJFMT_CPP_BUILTINS
42 : : # define TARGET_OBJFMT_CPP_BUILTINS()
43 : : #endif
44 : :
45 : : #ifndef REGISTER_PREFIX
46 : : #define REGISTER_PREFIX ""
47 : : #endif
48 : :
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);
64 : :
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. */
69 : :
70 : : static bool
71 : 2093700 : mode_has_fma (machine_mode mode)
72 : : {
73 : 2093700 : switch (mode)
74 : : {
75 : : #ifdef HAVE_fmasf4
76 : 418740 : case E_SFmode:
77 : 418740 : return !!HAVE_fmasf4;
78 : : #endif
79 : :
80 : : #ifdef HAVE_fmadf4
81 : 628126 : case E_DFmode:
82 : 628126 : return !!HAVE_fmadf4;
83 : : #endif
84 : :
85 : : #ifdef HAVE_fmakf4 /* PowerPC if long double != __float128. */
86 : : case E_KFmode:
87 : : return !!HAVE_fmakf4;
88 : : #endif
89 : :
90 : : #ifdef HAVE_fmaxf4
91 : : case E_XFmode:
92 : : return !!HAVE_fmaxf4;
93 : : #endif
94 : :
95 : : #ifdef HAVE_fmatf4
96 : : case E_TFmode:
97 : : return !!HAVE_fmatf4;
98 : : #endif
99 : :
100 : : default:
101 : : break;
102 : : }
103 : :
104 : : return false;
105 : : }
106 : :
107 : : /* Define NAME with value TYPE size_unit. */
108 : : void
109 : 832142 : builtin_define_type_sizeof (const char *name, tree type)
110 : : {
111 : 1664284 : builtin_define_with_int_value (name,
112 : 832142 : tree_to_uhwi (TYPE_SIZE_UNIT (type)));
113 : 832142 : }
114 : :
115 : : /* Define the float.h constants for TYPE using NAME_PREFIX, FP_SUFFIX,
116 : : and FP_CAST. */
117 : : static void
118 : 2093700 : builtin_define_float_constants (const char *name_prefix,
119 : : const char *fp_suffix,
120 : : const char *fp_cast,
121 : : const char *fma_suffix,
122 : : tree type)
123 : : {
124 : : /* Used to convert radix-based values to base 10 values in several cases.
125 : :
126 : : In the max_exp -> max_10_exp conversion for 128-bit IEEE, we need at
127 : : least 6 significant digits for correct results. Using the fraction
128 : : formed by (log(2)*1e6)/(log(10)*1e6) overflows a 32-bit integer as an
129 : : intermediate; perhaps someone can find a better approximation, in the
130 : : mean time, I suspect using doubles won't harm the bootstrap here. */
131 : :
132 : 2093700 : const double log10_2 = .30102999566398119521;
133 : 2093700 : double log10_b;
134 : 2093700 : const struct real_format *fmt;
135 : 2093700 : const struct real_format *widefmt;
136 : :
137 : 2093700 : char name[64], buf[128];
138 : 2093700 : int dig, min_10_exp, max_10_exp;
139 : 2093700 : int decimal_dig;
140 : 2093700 : int type_decimal_dig;
141 : :
142 : 2093700 : fmt = REAL_MODE_FORMAT (TYPE_MODE (type));
143 : 2093700 : gcc_assert (fmt->b != 10);
144 : 2093700 : widefmt = REAL_MODE_FORMAT (TYPE_MODE (long_double_type_node));
145 : 2093700 : gcc_assert (widefmt->b != 10);
146 : 16749600 : for (int i = 0; i < NUM_FLOATN_NX_TYPES; i++)
147 : : {
148 : 14655900 : tree wtype = FLOATN_NX_TYPE_NODE (i);
149 : 14655900 : if (wtype != NULL_TREE)
150 : : {
151 : 12562200 : const struct real_format *wfmt
152 : 12562200 : = REAL_MODE_FORMAT (TYPE_MODE (wtype));
153 : 12562200 : gcc_assert (wfmt->b != 10);
154 : 12562200 : if (wfmt->p > widefmt->p)
155 : 14655900 : widefmt = wfmt;
156 : : }
157 : : }
158 : :
159 : : /* The radix of the exponent representation. */
160 : 2093700 : if (type == float_type_node)
161 : 209370 : builtin_define_with_int_value ("__FLT_RADIX__", fmt->b);
162 : 2093700 : log10_b = log10_2;
163 : :
164 : : /* The number of radix digits, p, in the floating-point significand. */
165 : 2093700 : sprintf (name, "__%s_MANT_DIG__", name_prefix);
166 : 2093700 : builtin_define_with_int_value (name, fmt->p);
167 : :
168 : : /* The number of decimal digits, q, such that any floating-point number
169 : : with q decimal digits can be rounded into a floating-point number with
170 : : p radix b digits and back again without change to the q decimal digits,
171 : :
172 : : p log10 b if b is a power of 10
173 : : floor((p - 1) log10 b) otherwise
174 : : */
175 : 2093700 : dig = (fmt->p - 1) * log10_b;
176 : 2093700 : sprintf (name, "__%s_DIG__", name_prefix);
177 : 2093700 : builtin_define_with_int_value (name, dig);
178 : :
179 : : /* The minimum negative int x such that b**(x-1) is a normalized float. */
180 : 2093700 : sprintf (name, "__%s_MIN_EXP__", name_prefix);
181 : 2093700 : sprintf (buf, "(%d)", fmt->emin);
182 : 2093700 : builtin_define_with_value (name, buf, 0);
183 : :
184 : : /* The minimum negative int x such that 10**x is a normalized float,
185 : :
186 : : ceil (log10 (b ** (emin - 1)))
187 : : = ceil (log10 (b) * (emin - 1))
188 : :
189 : : Recall that emin is negative, so the integer truncation calculates
190 : : the ceiling, not the floor, in this case. */
191 : 2093700 : min_10_exp = (fmt->emin - 1) * log10_b;
192 : 2093700 : sprintf (name, "__%s_MIN_10_EXP__", name_prefix);
193 : 2093700 : sprintf (buf, "(%d)", min_10_exp);
194 : 2093700 : builtin_define_with_value (name, buf, 0);
195 : :
196 : : /* The maximum int x such that b**(x-1) is a representable float. */
197 : 2093700 : sprintf (name, "__%s_MAX_EXP__", name_prefix);
198 : 2093700 : builtin_define_with_int_value (name, fmt->emax);
199 : :
200 : : /* The maximum int x such that 10**x is in the range of representable
201 : : finite floating-point numbers,
202 : :
203 : : floor (log10((1 - b**-p) * b**emax))
204 : : = floor (log10(1 - b**-p) + log10(b**emax))
205 : : = floor (log10(1 - b**-p) + log10(b)*emax)
206 : :
207 : : The safest thing to do here is to just compute this number. But since
208 : : we don't link cc1 with libm, we cannot. We could implement log10 here
209 : : a series expansion, but that seems too much effort because:
210 : :
211 : : Note that the first term, for all extant p, is a number exceedingly close
212 : : to zero, but slightly negative. Note that the second term is an integer
213 : : scaling an irrational number, and that because of the floor we are only
214 : : interested in its integral portion.
215 : :
216 : : In order for the first term to have any effect on the integral portion
217 : : of the second term, the second term has to be exceedingly close to an
218 : : integer itself (e.g. 123.000000000001 or something). Getting a result
219 : : that close to an integer requires that the irrational multiplicand have
220 : : a long series of zeros in its expansion, which doesn't occur in the
221 : : first 20 digits or so of log10(b).
222 : :
223 : : Hand-waving aside, crunching all of the sets of constants above by hand
224 : : does not yield a case for which the first term is significant, which
225 : : in the end is all that matters. */
226 : 2093700 : max_10_exp = fmt->emax * log10_b;
227 : 2093700 : sprintf (name, "__%s_MAX_10_EXP__", name_prefix);
228 : 2093700 : builtin_define_with_int_value (name, max_10_exp);
229 : :
230 : : /* The number of decimal digits, n, such that any floating-point number
231 : : can be rounded to n decimal digits and back again without change to
232 : : the value.
233 : :
234 : : p * log10(b) if b is a power of 10
235 : : ceil(1 + p * log10(b)) otherwise
236 : :
237 : : The only macro we care about is this number for the widest supported
238 : : floating type, but we want this value for rendering constants below. */
239 : 2093700 : {
240 : 2093700 : double d_decimal_dig
241 : 2093700 : = 1 + (fmt->p < widefmt->p ? widefmt->p : fmt->p) * log10_b;
242 : 2093700 : decimal_dig = d_decimal_dig;
243 : 2093700 : if (decimal_dig < d_decimal_dig)
244 : 2093700 : decimal_dig++;
245 : : }
246 : : /* Similar, for this type rather than long double. */
247 : 2093700 : {
248 : 2093700 : double type_d_decimal_dig = 1 + fmt->p * log10_b;
249 : 2093700 : type_decimal_dig = type_d_decimal_dig;
250 : 2093700 : if (type_decimal_dig < type_d_decimal_dig)
251 : 2093700 : type_decimal_dig++;
252 : : }
253 : : /* Define __DECIMAL_DIG__ to the value for long double to be
254 : : compatible with C99 and C11; see DR#501 and N2108. */
255 : 2093700 : if (type == long_double_type_node)
256 : 209370 : builtin_define_with_int_value ("__DECIMAL_DIG__", type_decimal_dig);
257 : 2093700 : sprintf (name, "__%s_DECIMAL_DIG__", name_prefix);
258 : 2093700 : builtin_define_with_int_value (name, type_decimal_dig);
259 : :
260 : : /* Since, for the supported formats, B is always a power of 2, we
261 : : construct the following numbers directly as a hexadecimal
262 : : constants. */
263 : 2093700 : get_max_float (fmt, buf, sizeof (buf), false);
264 : :
265 : 2093700 : sprintf (name, "__%s_MAX__", name_prefix);
266 : 2093700 : builtin_define_with_hex_fp_value (name, type, decimal_dig, buf, fp_suffix, fp_cast);
267 : :
268 : 2093700 : get_max_float (fmt, buf, sizeof (buf), true);
269 : :
270 : 2093700 : sprintf (name, "__%s_NORM_MAX__", name_prefix);
271 : 2093700 : builtin_define_with_hex_fp_value (name, type, decimal_dig, buf, fp_suffix, fp_cast);
272 : :
273 : : /* The minimum normalized positive floating-point number,
274 : : b**(emin-1). */
275 : 2093700 : sprintf (name, "__%s_MIN__", name_prefix);
276 : 2093700 : sprintf (buf, "0x1p%d", fmt->emin - 1);
277 : 2093700 : builtin_define_with_hex_fp_value (name, type, decimal_dig, buf, fp_suffix, fp_cast);
278 : :
279 : : /* The difference between 1 and the least value greater than 1 that is
280 : : representable in the given floating point type, b**(1-p). */
281 : 2093700 : sprintf (name, "__%s_EPSILON__", name_prefix);
282 : 2093700 : if (fmt->pnan < fmt->p && (c_dialect_cxx () || !flag_isoc23))
283 : : /* This is an IBM extended double format, so 1.0 + any double is
284 : : representable precisely. */
285 : 0 : sprintf (buf, "0x1p%d", fmt->emin - fmt->p);
286 : : else
287 : 2093700 : sprintf (buf, "0x1p%d", 1 - fmt->p);
288 : 2093700 : builtin_define_with_hex_fp_value (name, type, decimal_dig, buf, fp_suffix, fp_cast);
289 : :
290 : : /* For C++ std::numeric_limits<T>::denorm_min and C11 *_TRUE_MIN.
291 : : The minimum denormalized positive floating-point number, b**(emin-p).
292 : : The minimum normalized positive floating-point number for formats
293 : : that don't support denormals. */
294 : 2093700 : sprintf (name, "__%s_DENORM_MIN__", name_prefix);
295 : 2093700 : sprintf (buf, "0x1p%d", fmt->emin - (fmt->has_denorm ? fmt->p : 1));
296 : 2093700 : builtin_define_with_hex_fp_value (name, type, decimal_dig,
297 : : buf, fp_suffix, fp_cast);
298 : :
299 : 2093700 : sprintf (name, "__%s_HAS_DENORM__", name_prefix);
300 : 2093700 : builtin_define_with_value (name, fmt->has_denorm ? "1" : "0", 0);
301 : :
302 : : /* For C++ std::numeric_limits<T>::has_infinity. */
303 : 2093700 : sprintf (name, "__%s_HAS_INFINITY__", name_prefix);
304 : 2093700 : builtin_define_with_int_value (name,
305 : 8374800 : MODE_HAS_INFINITIES (TYPE_MODE (type)));
306 : : /* For C++ std::numeric_limits<T>::has_quiet_NaN. We do not have a
307 : : predicate to distinguish a target that has both quiet and
308 : : signalling NaNs from a target that has only quiet NaNs or only
309 : : signalling NaNs, so we assume that a target that has any kind of
310 : : NaN has quiet NaNs. */
311 : 2093700 : sprintf (name, "__%s_HAS_QUIET_NAN__", name_prefix);
312 : 8374800 : builtin_define_with_int_value (name, MODE_HAS_NANS (TYPE_MODE (type)));
313 : :
314 : : /* Note whether we have fast FMA. */
315 : 2093700 : if (mode_has_fma (TYPE_MODE (type)) && fma_suffix != NULL)
316 : : {
317 : 26750 : sprintf (name, "__FP_FAST_FMA%s", fma_suffix);
318 : 26750 : builtin_define_with_int_value (name, 1);
319 : : }
320 : :
321 : : /* For C23 *_IS_IEC_60559. 0 means the type does not match an IEC
322 : : 60559 format, 1 that it matches a format but not necessarily
323 : : operations. */
324 : 2093700 : sprintf (name, "__%s_IS_IEC_60559__", name_prefix);
325 : 2093700 : builtin_define_with_int_value (name, fmt->ieee_bits != 0);
326 : 2093700 : }
327 : :
328 : : /* Define __DECx__ constants for TYPE using NAME_PREFIX and SUFFIX. */
329 : : static void
330 : 837480 : builtin_define_decimal_float_constants (const char *name_prefix,
331 : : const char *suffix,
332 : : tree type)
333 : : {
334 : 837480 : const struct real_format *fmt;
335 : 837480 : char name[64], buf[128], *p;
336 : 837480 : int digits;
337 : :
338 : 837480 : fmt = REAL_MODE_FORMAT (TYPE_MODE (type));
339 : :
340 : : /* The number of radix digits, p, in the significand. */
341 : 837480 : sprintf (name, "__%s_MANT_DIG__", name_prefix);
342 : 837480 : builtin_define_with_int_value (name, fmt->p);
343 : :
344 : : /* The minimum negative int x such that b**(x-1) is a normalized float. */
345 : 837480 : sprintf (name, "__%s_MIN_EXP__", name_prefix);
346 : 837480 : sprintf (buf, "(%d)", fmt->emin);
347 : 837480 : builtin_define_with_value (name, buf, 0);
348 : :
349 : : /* The maximum int x such that b**(x-1) is a representable float. */
350 : 837480 : sprintf (name, "__%s_MAX_EXP__", name_prefix);
351 : 837480 : builtin_define_with_int_value (name, fmt->emax);
352 : :
353 : : /* Compute the minimum representable value. */
354 : 837480 : sprintf (name, "__%s_MIN__", name_prefix);
355 : 837480 : sprintf (buf, "1E%d%s", fmt->emin - 1, suffix);
356 : 837480 : builtin_define_with_value (name, buf, 0);
357 : :
358 : : /* Compute the maximum representable value. */
359 : 837480 : sprintf (name, "__%s_MAX__", name_prefix);
360 : 837480 : get_max_float (fmt, buf, sizeof (buf) - strlen (suffix), false);
361 : 837480 : strcat (buf, suffix);
362 : 837480 : builtin_define_with_value (name, buf, 0);
363 : :
364 : : /* Compute epsilon (the difference between 1 and least value greater
365 : : than 1 representable). */
366 : 837480 : sprintf (name, "__%s_EPSILON__", name_prefix);
367 : 837480 : sprintf (buf, "1E-%d%s", fmt->p - 1, suffix);
368 : 837480 : builtin_define_with_value (name, buf, 0);
369 : :
370 : : /* Minimum subnormal positive decimal value. */
371 : 837480 : sprintf (name, "__%s_SUBNORMAL_MIN__", name_prefix);
372 : 837480 : p = buf;
373 : 19052670 : for (digits = fmt->p; digits > 1; digits--)
374 : : {
375 : 18215190 : *p++ = '0';
376 : 18215190 : if (digits == fmt->p)
377 : 837480 : *p++ = '.';
378 : : }
379 : 837480 : *p = 0;
380 : 837480 : sprintf (&buf[fmt->p], "1E%d%s", fmt->emin - 1, suffix);
381 : 837480 : builtin_define_with_value (name, buf, 0);
382 : 837480 : }
383 : :
384 : : /* Define fixed-point constants for TYPE using NAME_PREFIX and SUFFIX. */
385 : :
386 : : static void
387 : 0 : builtin_define_fixed_point_constants (const char *name_prefix,
388 : : const char *suffix,
389 : : tree type)
390 : : {
391 : 0 : char name[64], buf[256], *new_buf;
392 : 0 : int i, mod;
393 : :
394 : 0 : sprintf (name, "__%s_FBIT__", name_prefix);
395 : 0 : builtin_define_with_int_value (name, TYPE_FBIT (type));
396 : :
397 : 0 : sprintf (name, "__%s_IBIT__", name_prefix);
398 : 0 : builtin_define_with_int_value (name, TYPE_IBIT (type));
399 : :
400 : : /* If there is no suffix, defines are for fixed-point modes.
401 : : We just return. */
402 : 0 : if (strcmp (suffix, "") == 0)
403 : 0 : return;
404 : :
405 : 0 : if (TYPE_UNSIGNED (type))
406 : : {
407 : 0 : sprintf (name, "__%s_MIN__", name_prefix);
408 : 0 : sprintf (buf, "0.0%s", suffix);
409 : 0 : builtin_define_with_value (name, buf, 0);
410 : : }
411 : : else
412 : : {
413 : 0 : sprintf (name, "__%s_MIN__", name_prefix);
414 : 0 : if (ALL_ACCUM_MODE_P (TYPE_MODE (type)))
415 : 0 : sprintf (buf, "(-0X1P%d%s-0X1P%d%s)", TYPE_IBIT (type) - 1, suffix,
416 : 0 : TYPE_IBIT (type) - 1, suffix);
417 : : else
418 : 0 : sprintf (buf, "(-0.5%s-0.5%s)", suffix, suffix);
419 : 0 : builtin_define_with_value (name, buf, 0);
420 : : }
421 : :
422 : 0 : sprintf (name, "__%s_MAX__", name_prefix);
423 : 0 : sprintf (buf, "0X");
424 : 0 : new_buf = buf + 2;
425 : 0 : mod = (TYPE_FBIT (type) + TYPE_IBIT (type)) % 4;
426 : 0 : if (mod)
427 : 0 : sprintf (new_buf++, "%x", (1 << mod) - 1);
428 : 0 : for (i = 0; i < (TYPE_FBIT (type) + TYPE_IBIT (type)) / 4; i++)
429 : 0 : sprintf (new_buf++, "F");
430 : 0 : sprintf (new_buf, "P-%d%s", TYPE_FBIT (type), suffix);
431 : 0 : builtin_define_with_value (name, buf, 0);
432 : :
433 : 0 : sprintf (name, "__%s_EPSILON__", name_prefix);
434 : 0 : sprintf (buf, "0x1P-%d%s", TYPE_FBIT (type), suffix);
435 : 0 : builtin_define_with_value (name, buf, 0);
436 : : }
437 : :
438 : : /* Define macros used by <stdint.h>. */
439 : : static void
440 : 209370 : builtin_define_stdint_macros (void)
441 : : {
442 : 418740 : builtin_define_type_max ("__INTMAX_MAX__", intmax_type_node);
443 : 209370 : builtin_define_constants ("__INTMAX_C", intmax_type_node);
444 : 418740 : builtin_define_type_max ("__UINTMAX_MAX__", uintmax_type_node);
445 : 209370 : builtin_define_constants ("__UINTMAX_C", uintmax_type_node);
446 : 209370 : builtin_define_type_width ("__INTMAX_WIDTH__", intmax_type_node,
447 : : uintmax_type_node);
448 : 209370 : if (sig_atomic_type_node)
449 : : {
450 : 209370 : builtin_define_type_minmax ("__SIG_ATOMIC_MIN__", "__SIG_ATOMIC_MAX__",
451 : : sig_atomic_type_node);
452 : 209370 : builtin_define_type_width ("__SIG_ATOMIC_WIDTH__", sig_atomic_type_node,
453 : : NULL_TREE);
454 : : }
455 : 209370 : if (int8_type_node)
456 : 209370 : builtin_define_type_max ("__INT8_MAX__", int8_type_node);
457 : 209370 : if (int16_type_node)
458 : 209370 : builtin_define_type_max ("__INT16_MAX__", int16_type_node);
459 : 209370 : if (int32_type_node)
460 : 209370 : builtin_define_type_max ("__INT32_MAX__", int32_type_node);
461 : 209370 : if (int64_type_node)
462 : 209370 : builtin_define_type_max ("__INT64_MAX__", int64_type_node);
463 : 209370 : if (uint8_type_node)
464 : 209370 : builtin_define_type_max ("__UINT8_MAX__", uint8_type_node);
465 : 209370 : if (c_uint16_type_node)
466 : 209370 : builtin_define_type_max ("__UINT16_MAX__", c_uint16_type_node);
467 : 209370 : if (c_uint32_type_node)
468 : 209370 : builtin_define_type_max ("__UINT32_MAX__", c_uint32_type_node);
469 : 209370 : if (c_uint64_type_node)
470 : 209370 : builtin_define_type_max ("__UINT64_MAX__", c_uint64_type_node);
471 : 209370 : if (int_least8_type_node)
472 : : {
473 : 418740 : builtin_define_type_max ("__INT_LEAST8_MAX__", int_least8_type_node);
474 : 209370 : builtin_define_constants ("__INT8_C", int_least8_type_node);
475 : 209370 : builtin_define_type_width ("__INT_LEAST8_WIDTH__", int_least8_type_node,
476 : : uint_least8_type_node);
477 : : }
478 : 209370 : if (int_least16_type_node)
479 : : {
480 : 418740 : builtin_define_type_max ("__INT_LEAST16_MAX__", int_least16_type_node);
481 : 209370 : builtin_define_constants ("__INT16_C", int_least16_type_node);
482 : 209370 : builtin_define_type_width ("__INT_LEAST16_WIDTH__",
483 : : int_least16_type_node,
484 : : uint_least16_type_node);
485 : : }
486 : 209370 : if (int_least32_type_node)
487 : : {
488 : 418740 : builtin_define_type_max ("__INT_LEAST32_MAX__", int_least32_type_node);
489 : 209370 : builtin_define_constants ("__INT32_C", int_least32_type_node);
490 : 209370 : builtin_define_type_width ("__INT_LEAST32_WIDTH__",
491 : : int_least32_type_node,
492 : : uint_least32_type_node);
493 : : }
494 : 209370 : if (int_least64_type_node)
495 : : {
496 : 418740 : builtin_define_type_max ("__INT_LEAST64_MAX__", int_least64_type_node);
497 : 209370 : builtin_define_constants ("__INT64_C", int_least64_type_node);
498 : 209370 : builtin_define_type_width ("__INT_LEAST64_WIDTH__",
499 : : int_least64_type_node,
500 : : uint_least64_type_node);
501 : : }
502 : 209370 : if (uint_least8_type_node)
503 : : {
504 : 418740 : builtin_define_type_max ("__UINT_LEAST8_MAX__", uint_least8_type_node);
505 : 209370 : builtin_define_constants ("__UINT8_C", uint_least8_type_node);
506 : : }
507 : 209370 : if (uint_least16_type_node)
508 : : {
509 : 418740 : builtin_define_type_max ("__UINT_LEAST16_MAX__", uint_least16_type_node);
510 : 209370 : builtin_define_constants ("__UINT16_C", uint_least16_type_node);
511 : : }
512 : 209370 : if (uint_least32_type_node)
513 : : {
514 : 418740 : builtin_define_type_max ("__UINT_LEAST32_MAX__", uint_least32_type_node);
515 : 209370 : builtin_define_constants ("__UINT32_C", uint_least32_type_node);
516 : : }
517 : 209370 : if (uint_least64_type_node)
518 : : {
519 : 418740 : builtin_define_type_max ("__UINT_LEAST64_MAX__", uint_least64_type_node);
520 : 209370 : builtin_define_constants ("__UINT64_C", uint_least64_type_node);
521 : : }
522 : 209370 : if (int_fast8_type_node)
523 : : {
524 : 418740 : builtin_define_type_max ("__INT_FAST8_MAX__", int_fast8_type_node);
525 : 209370 : builtin_define_type_width ("__INT_FAST8_WIDTH__", int_fast8_type_node,
526 : : uint_fast8_type_node);
527 : : }
528 : 209370 : if (int_fast16_type_node)
529 : : {
530 : 418740 : builtin_define_type_max ("__INT_FAST16_MAX__", int_fast16_type_node);
531 : 209370 : builtin_define_type_width ("__INT_FAST16_WIDTH__", int_fast16_type_node,
532 : : uint_fast16_type_node);
533 : : }
534 : 209370 : if (int_fast32_type_node)
535 : : {
536 : 418740 : builtin_define_type_max ("__INT_FAST32_MAX__", int_fast32_type_node);
537 : 209370 : builtin_define_type_width ("__INT_FAST32_WIDTH__", int_fast32_type_node,
538 : : uint_fast32_type_node);
539 : : }
540 : 209370 : if (int_fast64_type_node)
541 : : {
542 : 418740 : builtin_define_type_max ("__INT_FAST64_MAX__", int_fast64_type_node);
543 : 209370 : builtin_define_type_width ("__INT_FAST64_WIDTH__", int_fast64_type_node,
544 : : uint_fast64_type_node);
545 : : }
546 : 209370 : if (uint_fast8_type_node)
547 : 209370 : builtin_define_type_max ("__UINT_FAST8_MAX__", uint_fast8_type_node);
548 : 209370 : if (uint_fast16_type_node)
549 : 209370 : builtin_define_type_max ("__UINT_FAST16_MAX__", uint_fast16_type_node);
550 : 209370 : if (uint_fast32_type_node)
551 : 209370 : builtin_define_type_max ("__UINT_FAST32_MAX__", uint_fast32_type_node);
552 : 209370 : if (uint_fast64_type_node)
553 : 209370 : builtin_define_type_max ("__UINT_FAST64_MAX__", uint_fast64_type_node);
554 : 209370 : if (intptr_type_node)
555 : : {
556 : 418740 : builtin_define_type_max ("__INTPTR_MAX__", intptr_type_node);
557 : 209370 : builtin_define_type_width ("__INTPTR_WIDTH__", intptr_type_node,
558 : : uintptr_type_node);
559 : : }
560 : 209370 : if (uintptr_type_node)
561 : 209370 : builtin_define_type_max ("__UINTPTR_MAX__", uintptr_type_node);
562 : 209370 : }
563 : :
564 : : /* Adjust the optimization macros when a #pragma GCC optimization is done to
565 : : reflect the current level. */
566 : : void
567 : 618 : c_cpp_builtins_optimize_pragma (cpp_reader *pfile, tree prev_tree,
568 : : tree cur_tree)
569 : : {
570 : 618 : struct cl_optimization *prev = TREE_OPTIMIZATION (prev_tree);
571 : 618 : struct cl_optimization *cur = TREE_OPTIMIZATION (cur_tree);
572 : 618 : bool prev_fast_math;
573 : 618 : bool cur_fast_math;
574 : :
575 : : /* -undef turns off target-specific built-ins. */
576 : 618 : if (flag_undef)
577 : : return;
578 : :
579 : : /* Make sure all of the builtins about to be declared have
580 : : BUILTINS_LOCATION has their location_t. */
581 : 618 : cpp_force_token_locations (parse_in, BUILTINS_LOCATION);
582 : :
583 : : /* Other target-independent built-ins determined by command-line
584 : : options. */
585 : 618 : if (!prev->x_optimize_size && cur->x_optimize_size)
586 : 1 : cpp_define_unused (pfile, "__OPTIMIZE_SIZE__");
587 : 617 : else if (prev->x_optimize_size && !cur->x_optimize_size)
588 : 2 : cpp_undef (pfile, "__OPTIMIZE_SIZE__");
589 : :
590 : 618 : if (!prev->x_optimize && cur->x_optimize)
591 : 111 : cpp_define_unused (pfile, "__OPTIMIZE__");
592 : 507 : else if (prev->x_optimize && !cur->x_optimize)
593 : 77 : cpp_undef (pfile, "__OPTIMIZE__");
594 : :
595 : 618 : prev_fast_math = fast_math_flags_struct_set_p (prev);
596 : 618 : cur_fast_math = fast_math_flags_struct_set_p (cur);
597 : 618 : if (!prev_fast_math && cur_fast_math)
598 : 6 : cpp_define_unused (pfile, "__FAST_MATH__");
599 : 612 : else if (prev_fast_math && !cur_fast_math)
600 : 13 : cpp_undef (pfile, "__FAST_MATH__");
601 : :
602 : 618 : if (!prev->x_flag_signaling_nans && cur->x_flag_signaling_nans)
603 : 0 : cpp_define_unused (pfile, "__SUPPORT_SNAN__");
604 : 618 : else if (prev->x_flag_signaling_nans && !cur->x_flag_signaling_nans)
605 : 0 : cpp_undef (pfile, "__SUPPORT_SNAN__");
606 : :
607 : 618 : if (!prev->x_flag_errno_math && cur->x_flag_errno_math)
608 : 14 : cpp_undef (pfile, "__NO_MATH_ERRNO__");
609 : 604 : else if (prev->x_flag_errno_math && !cur->x_flag_errno_math)
610 : 7 : cpp_define_unused (pfile, "__NO_MATH_ERRNO__");
611 : :
612 : 618 : if (!prev->x_flag_finite_math_only && cur->x_flag_finite_math_only)
613 : : {
614 : 8 : cpp_undef (pfile, "__FINITE_MATH_ONLY__");
615 : 8 : cpp_define_unused (pfile, "__FINITE_MATH_ONLY__=1");
616 : : }
617 : 610 : else if (prev->x_flag_finite_math_only && !cur->x_flag_finite_math_only)
618 : : {
619 : 14 : cpp_undef (pfile, "__FINITE_MATH_ONLY__");
620 : 14 : cpp_define_unused (pfile, "__FINITE_MATH_ONLY__=0");
621 : : }
622 : :
623 : 618 : if (!prev->x_flag_reciprocal_math && cur->x_flag_reciprocal_math)
624 : 8 : cpp_define_unused (pfile, "__RECIPROCAL_MATH__");
625 : 610 : else if (prev->x_flag_reciprocal_math && !cur->x_flag_reciprocal_math)
626 : 15 : cpp_undef (pfile, "__RECIPROCAL_MATH__");
627 : :
628 : 618 : if (!prev->x_flag_signed_zeros && cur->x_flag_signed_zeros)
629 : 15 : cpp_undef (pfile, "__NO_SIGNED_ZEROS__");
630 : 603 : else if (prev->x_flag_signed_zeros && !cur->x_flag_signed_zeros)
631 : 8 : cpp_define_unused (pfile, "__NO_SIGNED_ZEROS__");
632 : :
633 : 618 : if (!prev->x_flag_trapping_math && cur->x_flag_trapping_math)
634 : 15 : cpp_undef (pfile, "__NO_TRAPPING_MATH__");
635 : 603 : else if (prev->x_flag_trapping_math && !cur->x_flag_trapping_math)
636 : 8 : cpp_define_unused (pfile, "__NO_TRAPPING_MATH__");
637 : :
638 : 618 : if (!prev->x_flag_associative_math && cur->x_flag_associative_math)
639 : 8 : cpp_define_unused (pfile, "__ASSOCIATIVE_MATH__");
640 : 610 : else if (prev->x_flag_associative_math && !cur->x_flag_associative_math)
641 : 15 : cpp_undef (pfile, "__ASSOCIATIVE_MATH__");
642 : :
643 : 618 : if (!prev->x_flag_rounding_math && cur->x_flag_rounding_math)
644 : 2 : cpp_define_unused (pfile, "__ROUNDING_MATH__");
645 : 616 : else if (prev->x_flag_rounding_math && !cur->x_flag_rounding_math)
646 : 2 : cpp_undef (pfile, "__ROUNDING_MATH__");
647 : :
648 : 618 : cpp_stop_forcing_token_locations (parse_in);
649 : : }
650 : :
651 : :
652 : : /* This function will emit cpp macros to indicate the presence of various lock
653 : : free atomic operations. */
654 : :
655 : : static void
656 : 209370 : cpp_atomic_builtins (cpp_reader *pfile)
657 : : {
658 : : /* Set a flag for each size of object that compare and swap exists for up to
659 : : a 16 byte object. */
660 : : #define SWAP_LIMIT 17
661 : 209370 : bool have_swap[SWAP_LIMIT];
662 : 209370 : unsigned int psize;
663 : :
664 : : /* Clear the map of sizes compare_and swap exists for. */
665 : 209370 : memset (have_swap, 0, sizeof (have_swap));
666 : :
667 : : /* Tell source code if the compiler makes sync_compare_and_swap
668 : : builtins available. */
669 : : #ifndef HAVE_sync_compare_and_swapqi
670 : : #define HAVE_sync_compare_and_swapqi 0
671 : : #endif
672 : : #ifndef HAVE_atomic_compare_and_swapqi
673 : : #define HAVE_atomic_compare_and_swapqi 0
674 : : #endif
675 : :
676 : 209370 : if (HAVE_sync_compare_and_swapqi || HAVE_atomic_compare_and_swapqi)
677 : : {
678 : 209370 : cpp_define (pfile, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_1");
679 : 209370 : have_swap[1] = true;
680 : : }
681 : :
682 : : #ifndef HAVE_sync_compare_and_swaphi
683 : : #define HAVE_sync_compare_and_swaphi 0
684 : : #endif
685 : : #ifndef HAVE_atomic_compare_and_swaphi
686 : : #define HAVE_atomic_compare_and_swaphi 0
687 : : #endif
688 : 209370 : if (HAVE_sync_compare_and_swaphi || HAVE_atomic_compare_and_swaphi)
689 : : {
690 : 209370 : cpp_define (pfile, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_2");
691 : 209370 : have_swap[2] = true;
692 : : }
693 : :
694 : : #ifndef HAVE_sync_compare_and_swapsi
695 : : #define HAVE_sync_compare_and_swapsi 0
696 : : #endif
697 : : #ifndef HAVE_atomic_compare_and_swapsi
698 : : #define HAVE_atomic_compare_and_swapsi 0
699 : : #endif
700 : 209370 : if (HAVE_sync_compare_and_swapsi || HAVE_atomic_compare_and_swapsi)
701 : : {
702 : 209370 : cpp_define (pfile, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4");
703 : 209370 : have_swap[4] = true;
704 : : }
705 : :
706 : : #ifndef HAVE_sync_compare_and_swapdi
707 : : #define HAVE_sync_compare_and_swapdi 0
708 : : #endif
709 : : #ifndef HAVE_atomic_compare_and_swapdi
710 : : #define HAVE_atomic_compare_and_swapdi 0
711 : : #endif
712 : 209370 : if (HAVE_sync_compare_and_swapdi || HAVE_atomic_compare_and_swapdi)
713 : : {
714 : 209370 : cpp_define (pfile, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_8");
715 : 209370 : have_swap[8] = true;
716 : : }
717 : :
718 : : #ifndef HAVE_sync_compare_and_swapti
719 : : #define HAVE_sync_compare_and_swapti 0
720 : : #endif
721 : : #ifndef HAVE_atomic_compare_and_swapti
722 : : #define HAVE_atomic_compare_and_swapti 0
723 : : #endif
724 : 209370 : if (HAVE_sync_compare_and_swapti || HAVE_atomic_compare_and_swapti)
725 : : {
726 : 899 : cpp_define (pfile, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_16");
727 : 899 : have_swap[16] = true;
728 : : }
729 : :
730 : : /* Tell the source code about various types. These map to the C++11 and C11
731 : : macros where 2 indicates lock-free always, and 1 indicates sometimes
732 : : lock free. */
733 : : #define SIZEOF_NODE(T) (tree_to_uhwi (TYPE_SIZE_UNIT (T)))
734 : : #define SWAP_INDEX(T) ((SIZEOF_NODE (T) < SWAP_LIMIT) ? SIZEOF_NODE (T) : 0)
735 : 209370 : builtin_define_with_int_value ("__GCC_ATOMIC_BOOL_LOCK_FREE",
736 : 418740 : (have_swap[SWAP_INDEX (boolean_type_node)]? 2 : 1));
737 : 209370 : builtin_define_with_int_value ("__GCC_ATOMIC_CHAR_LOCK_FREE",
738 : 418740 : (have_swap[SWAP_INDEX (signed_char_type_node)]? 2 : 1));
739 : 209370 : if (flag_char8_t)
740 : 130436 : builtin_define_with_int_value ("__GCC_ATOMIC_CHAR8_T_LOCK_FREE",
741 : 260872 : (have_swap[SWAP_INDEX (char8_type_node)]? 2 : 1));
742 : 209370 : builtin_define_with_int_value ("__GCC_ATOMIC_CHAR16_T_LOCK_FREE",
743 : 418740 : (have_swap[SWAP_INDEX (char16_type_node)]? 2 : 1));
744 : 209370 : builtin_define_with_int_value ("__GCC_ATOMIC_CHAR32_T_LOCK_FREE",
745 : 418740 : (have_swap[SWAP_INDEX (char32_type_node)]? 2 : 1));
746 : 209370 : builtin_define_with_int_value ("__GCC_ATOMIC_WCHAR_T_LOCK_FREE",
747 : 418740 : (have_swap[SWAP_INDEX (wchar_type_node)]? 2 : 1));
748 : 209370 : builtin_define_with_int_value ("__GCC_ATOMIC_SHORT_LOCK_FREE",
749 : 418740 : (have_swap[SWAP_INDEX (short_integer_type_node)]? 2 : 1));
750 : 209370 : builtin_define_with_int_value ("__GCC_ATOMIC_INT_LOCK_FREE",
751 : 418740 : (have_swap[SWAP_INDEX (integer_type_node)]? 2 : 1));
752 : 209370 : builtin_define_with_int_value ("__GCC_ATOMIC_LONG_LOCK_FREE",
753 : 418740 : (have_swap[SWAP_INDEX (long_integer_type_node)]? 2 : 1));
754 : 209370 : builtin_define_with_int_value ("__GCC_ATOMIC_LLONG_LOCK_FREE",
755 : 418740 : (have_swap[SWAP_INDEX (long_long_integer_type_node)]? 2 : 1));
756 : :
757 : : /* If we're dealing with a "set" value that doesn't exactly correspond
758 : : to a boolean truth value, let the library work around that. */
759 : 209370 : builtin_define_with_int_value ("__GCC_ATOMIC_TEST_AND_SET_TRUEVAL",
760 : 209370 : targetm.atomic_test_and_set_trueval);
761 : :
762 : : /* Macros for C++17 hardware interference size constants. Either both or
763 : : neither should be set. */
764 : 209370 : gcc_assert (!param_destruct_interfere_size
765 : : == !param_construct_interfere_size);
766 : 209370 : if (param_destruct_interfere_size)
767 : : {
768 : : /* FIXME The way of communicating these values to the library should be
769 : : part of the C++ ABI, whether macro or builtin. */
770 : 209370 : builtin_define_with_int_value ("__GCC_DESTRUCTIVE_SIZE",
771 : : param_destruct_interfere_size);
772 : 209370 : builtin_define_with_int_value ("__GCC_CONSTRUCTIVE_SIZE",
773 : 209370 : param_construct_interfere_size);
774 : : }
775 : :
776 : : /* ptr_type_node can't be used here since ptr_mode is only set when
777 : : toplev calls backend_init which is not done with -E or pch. */
778 : 209370 : psize = POINTER_SIZE_UNITS;
779 : 209370 : if (psize >= SWAP_LIMIT)
780 : : psize = 0;
781 : 209370 : builtin_define_with_int_value ("__GCC_ATOMIC_POINTER_LOCK_FREE",
782 : 209370 : (have_swap[psize]? 2 : 1));
783 : 209370 : }
784 : :
785 : : /* Return TRUE if the implicit excess precision in which the back-end will
786 : : compute floating-point calculations is not more than the explicit
787 : : excess precision that the front-end will apply under
788 : : -fexcess-precision=[standard|fast|16].
789 : :
790 : : More intuitively, return TRUE if the excess precision proposed by the
791 : : front-end is the excess precision that will actually be used. */
792 : :
793 : : static bool
794 : 12254 : c_cpp_flt_eval_method_iec_559 (void)
795 : : {
796 : 12 : enum excess_precision_type front_end_ept
797 : 12254 : = (flag_excess_precision == EXCESS_PRECISION_STANDARD
798 : 12254 : ? EXCESS_PRECISION_TYPE_STANDARD
799 : : : (flag_excess_precision == EXCESS_PRECISION_FLOAT16
800 : 12 : ? EXCESS_PRECISION_TYPE_FLOAT16
801 : : : EXCESS_PRECISION_TYPE_FAST));
802 : :
803 : 12254 : enum flt_eval_method back_end
804 : 12254 : = targetm.c.excess_precision (EXCESS_PRECISION_TYPE_IMPLICIT);
805 : :
806 : 12254 : enum flt_eval_method front_end
807 : 12254 : = targetm.c.excess_precision (front_end_ept);
808 : :
809 : 12254 : return excess_precision_mode_join (front_end, back_end) == front_end;
810 : : }
811 : :
812 : : /* Return the value for __GCC_IEC_559. */
813 : : static int
814 : 418740 : cpp_iec_559_value (void)
815 : : {
816 : : /* The default is support for IEEE 754-2008. */
817 : 418740 : int ret = 2;
818 : :
819 : : /* float and double must be binary32 and binary64. If they are but
820 : : with reversed NaN convention, at most IEEE 754-1985 is
821 : : supported. */
822 : 418740 : const struct real_format *ffmt
823 : 418740 : = REAL_MODE_FORMAT (TYPE_MODE (float_type_node));
824 : 418740 : const struct real_format *dfmt
825 : 418740 : = REAL_MODE_FORMAT (TYPE_MODE (double_type_node));
826 : 418740 : if (!ffmt->qnan_msb_set || !dfmt->qnan_msb_set)
827 : 0 : ret = 1;
828 : 418740 : if (ffmt->b != 2
829 : 418740 : || ffmt->p != 24
830 : 418740 : || ffmt->pnan != 24
831 : 418740 : || ffmt->emin != -125
832 : 418740 : || ffmt->emax != 128
833 : 418740 : || ffmt->signbit_rw != 31
834 : 418740 : || ffmt->round_towards_zero
835 : 418740 : || !ffmt->has_sign_dependent_rounding
836 : 418740 : || !ffmt->has_nans
837 : 418740 : || !ffmt->has_inf
838 : 418740 : || !ffmt->has_denorm
839 : 418740 : || !ffmt->has_signed_zero
840 : 418740 : || dfmt->b != 2
841 : 418740 : || dfmt->p != 53
842 : 418740 : || dfmt->pnan != 53
843 : 418740 : || dfmt->emin != -1021
844 : 418740 : || dfmt->emax != 1024
845 : 418740 : || dfmt->signbit_rw != 63
846 : 418740 : || dfmt->round_towards_zero
847 : 418740 : || !dfmt->has_sign_dependent_rounding
848 : 418740 : || !dfmt->has_nans
849 : 418740 : || !dfmt->has_inf
850 : 418740 : || !dfmt->has_denorm
851 : 418740 : || !dfmt->has_signed_zero)
852 : 0 : ret = 0;
853 : :
854 : : /* In strict C standards conformance mode, consider a back-end providing
855 : : more implicit excess precision than the explicit excess precision
856 : : the front-end options would require to mean a lack of IEEE 754
857 : : support. For C++, and outside strict conformance mode, do not consider
858 : : this to mean a lack of IEEE 754 support. */
859 : :
860 : 418740 : if (flag_iso
861 : 113660 : && !c_dialect_cxx ()
862 : 430994 : && !c_cpp_flt_eval_method_iec_559 ())
863 : : ret = 0;
864 : :
865 : 418740 : if (flag_iso
866 : 113660 : && !c_dialect_cxx ()
867 : 12254 : && flag_fp_contract_mode == FP_CONTRACT_FAST)
868 : 418740 : ret = 0;
869 : :
870 : : /* Various options are contrary to IEEE 754 semantics. */
871 : 418740 : if (flag_unsafe_math_optimizations
872 : 415650 : || flag_associative_math
873 : 415638 : || flag_reciprocal_math
874 : 415630 : || flag_finite_math_only
875 : 415536 : || !flag_signed_zeros
876 : 415502 : || flag_single_precision_constant)
877 : 3244 : ret = 0;
878 : :
879 : : /* If the target does not support IEEE 754 exceptions and rounding
880 : : modes, consider IEEE 754 support to be absent. */
881 : 418740 : if (!targetm.float_exceptions_rounding_supported_p ())
882 : 390 : ret = 0;
883 : :
884 : 418740 : return ret;
885 : : }
886 : :
887 : : /* Return the value for __GCC_IEC_559_COMPLEX. */
888 : : static int
889 : 209370 : cpp_iec_559_complex_value (void)
890 : : {
891 : : /* The value is no bigger than that of __GCC_IEC_559. */
892 : 0 : int ret = cpp_iec_559_value ();
893 : :
894 : : /* Some options are contrary to the required default state of the
895 : : CX_LIMITED_RANGE pragma. */
896 : 209370 : if (flag_complex_method != 2)
897 : 4258 : ret = 0;
898 : :
899 : 209370 : return ret;
900 : : }
901 : :
902 : : /* Hook that registers front end and target-specific built-ins. */
903 : : void
904 : 209371 : c_cpp_builtins (cpp_reader *pfile)
905 : : {
906 : 209371 : int i;
907 : :
908 : : /* -undef turns off target-specific built-ins. */
909 : 209371 : if (flag_undef)
910 : 1 : return;
911 : :
912 : 209370 : define_language_independent_builtin_macros (pfile);
913 : :
914 : : /* encoding definitions used by users and libraries */
915 : 209370 : builtin_define_with_value ("__GNUC_EXECUTION_CHARSET_NAME",
916 : : cpp_get_narrow_charset_name (pfile), 1);
917 : 209370 : builtin_define_with_value ("__GNUC_WIDE_EXECUTION_CHARSET_NAME",
918 : : cpp_get_wide_charset_name (pfile), 1);
919 : :
920 : 209370 : if (c_dialect_cxx ())
921 : : {
922 : 96460 : int major;
923 : 96460 : parse_basever (&major, NULL, NULL);
924 : 96460 : cpp_define_formatted (pfile, "__GNUG__=%d", major);
925 : : }
926 : :
927 : : /* For stddef.h. They require macros defined in c-common.cc. */
928 : 209370 : c_stddef_cpp_builtins ();
929 : :
930 : : /* Variant of cpp_define which arranges for diagnostics on user #define
931 : : or #undef of the macros. */
932 : 2756968 : auto cpp_define_warn = [] (cpp_reader *pfile, const char *def)
933 : : {
934 : 2547598 : const char *end = strchr (def, '=');
935 : 2547598 : cpp_define (pfile, def);
936 : 2547598 : cpp_warn (pfile, def, end ? end - def : strlen (def));
937 : 2547598 : };
938 : :
939 : 209370 : if (c_dialect_cxx ())
940 : : {
941 : : /* Treat all cpp_define calls in this block for macros starting
942 : : with __cpp_ (for C++20 and later) or __STDCPP_ as cpp_define_warn. */
943 : 5419503 : auto cpp_define = [=] (cpp_reader *pfile, const char *def)
944 : : {
945 : 2520852 : if ((cxx_dialect >= cxx20 && startswith (def, "__cpp_"))
946 : 5506634 : || startswith (def, "__STDCPP_"))
947 : 2419728 : cpp_define_warn (pfile, def);
948 : : else
949 : 2903315 : ::cpp_define (pfile, def);
950 : 5323043 : };
951 : :
952 : 96460 : if (flag_weak && SUPPORTS_ONE_ONLY)
953 : 96430 : cpp_define (pfile, "__GXX_WEAK__=1");
954 : : else
955 : 30 : cpp_define (pfile, "__GXX_WEAK__=0");
956 : :
957 : 96460 : if (warn_deprecated)
958 : 96325 : cpp_define (pfile, "__DEPRECATED");
959 : :
960 : 96460 : if (flag_rtti)
961 : : {
962 : 95767 : cpp_define (pfile, "__GXX_RTTI");
963 : 95767 : cpp_define (pfile, "__cpp_rtti=199711L");
964 : : }
965 : :
966 : 96460 : if (cxx_dialect >= cxx11)
967 : : {
968 : 82467 : cpp_define (pfile, "__GXX_EXPERIMENTAL_CXX0X__");
969 : 82467 : cpp_define (pfile, "__GXX_CONSTEXPR_ASM__");
970 : : }
971 : :
972 : : /* Binary literals have been allowed in g++ before C++11
973 : : and were standardized for C++14. */
974 : 96460 : if (!pedantic || cxx_dialect > cxx11)
975 : 85885 : cpp_define (pfile, "__cpp_binary_literals=201304L");
976 : :
977 : : /* Similarly for hexadecimal floating point literals and C++17. */
978 : 96460 : if (!pedantic || cpp_get_options (parse_in)->extended_numbers)
979 : 85279 : cpp_define (pfile, "__cpp_hex_float=201603L");
980 : :
981 : : /* Arrays of runtime bound were removed from C++14, but we still
982 : : support GNU VLAs. Let's define this macro to a low number
983 : : (corresponding to the initial test release of GNU C++) if we won't
984 : : complain about use of VLAs. */
985 : 96460 : if (c_dialect_cxx ()
986 : 96460 : && (pedantic ? warn_vla == 0 : warn_vla <= 0))
987 : 52397 : cpp_define (pfile, "__cpp_runtime_arrays=198712L");
988 : :
989 : 96460 : if (cxx_dialect >= cxx11)
990 : : {
991 : : /* Set feature test macros for C++11. */
992 : 82467 : if (cxx_dialect <= cxx14)
993 : 6866 : cpp_define (pfile, "__cpp_unicode_characters=200704L");
994 : 82467 : cpp_define (pfile, "__cpp_raw_strings=200710L");
995 : 82467 : cpp_define (pfile, "__cpp_unicode_literals=200710L");
996 : 82467 : cpp_define (pfile, "__cpp_user_defined_literals=200809L");
997 : 82467 : cpp_define (pfile, "__cpp_lambdas=200907L");
998 : 82467 : if (cxx_dialect == cxx11)
999 : 5591 : cpp_define (pfile, "__cpp_constexpr=200704L");
1000 : 82467 : if (cxx_dialect <= cxx14)
1001 : 6866 : cpp_define (pfile, "__cpp_range_based_for=200907L");
1002 : 82467 : if (cxx_dialect <= cxx14)
1003 : 6866 : cpp_define (pfile, "__cpp_static_assert=200410L");
1004 : 82467 : cpp_define (pfile, "__cpp_decltype=200707L");
1005 : 82467 : cpp_define (pfile, "__cpp_attributes=200809L");
1006 : 82467 : cpp_define (pfile, "__cpp_rvalue_reference=200610L");
1007 : 82467 : cpp_define (pfile, "__cpp_rvalue_references=200610L");
1008 : 82467 : cpp_define (pfile, "__cpp_variadic_templates=200704L");
1009 : 82467 : cpp_define (pfile, "__cpp_initializer_lists=200806L");
1010 : 82467 : cpp_define (pfile, "__cpp_delegating_constructors=200604L");
1011 : 82467 : cpp_define (pfile, "__cpp_nsdmi=200809L");
1012 : 82467 : if (!flag_new_inheriting_ctors)
1013 : 200 : cpp_define (pfile, "__cpp_inheriting_constructors=200802L");
1014 : : else
1015 : 82267 : cpp_define (pfile, "__cpp_inheriting_constructors=201511L");
1016 : 82467 : cpp_define (pfile, "__cpp_ref_qualifiers=200710L");
1017 : 82467 : cpp_define (pfile, "__cpp_alias_templates=200704L");
1018 : : }
1019 : 96460 : if (cxx_dialect > cxx11)
1020 : : {
1021 : : /* Set feature test macros for C++14. */
1022 : 76876 : cpp_define (pfile, "__cpp_return_type_deduction=201304L");
1023 : 76876 : if (cxx_dialect <= cxx17)
1024 : : {
1025 : 46268 : cpp_define (pfile, "__cpp_init_captures=201304L");
1026 : 46268 : cpp_define (pfile, "__cpp_generic_lambdas=201304L");
1027 : : }
1028 : 76876 : if (cxx_dialect <= cxx14)
1029 : 1275 : cpp_define (pfile, "__cpp_constexpr=201304L");
1030 : 76876 : cpp_define (pfile, "__cpp_decltype_auto=201304L");
1031 : 76876 : cpp_define (pfile, "__cpp_aggregate_nsdmi=201304L");
1032 : 76876 : cpp_define (pfile, "__cpp_variable_templates=201304L");
1033 : 76876 : cpp_define (pfile, "__cpp_digit_separators=201309L");
1034 : : }
1035 : 96460 : if (cxx_dialect > cxx14)
1036 : : {
1037 : : /* Set feature test macros for C++17. */
1038 : 75601 : cpp_define (pfile, "__cpp_unicode_characters=201411L");
1039 : 75601 : if (cxx_dialect <= cxx23)
1040 : 51977 : cpp_define (pfile, "__cpp_static_assert=201411L");
1041 : 75601 : cpp_define (pfile, "__cpp_namespace_attributes=201411L");
1042 : 75601 : cpp_define (pfile, "__cpp_enumerator_attributes=201411L");
1043 : 75601 : cpp_define (pfile, "__cpp_nested_namespace_definitions=201411L");
1044 : 75601 : cpp_define (pfile, "__cpp_fold_expressions=201603L");
1045 : 75601 : if (cxx_dialect <= cxx17)
1046 : 44993 : cpp_define (pfile, "__cpp_nontype_template_args=201411L");
1047 : 75601 : if (!flag_range_for_ext_temps)
1048 : 50022 : cpp_define (pfile, "__cpp_range_based_for=201603L");
1049 : : else
1050 : : /* This is the C++23 or -std=c++17 -frange-for-ext-temps value. */
1051 : 25579 : cpp_define (pfile, "__cpp_range_based_for=202211L");
1052 : 75601 : if (cxx_dialect <= cxx17)
1053 : 44993 : cpp_define (pfile, "__cpp_constexpr=201603L");
1054 : 75601 : cpp_define (pfile, "__cpp_if_constexpr=201606L");
1055 : 75601 : cpp_define (pfile, "__cpp_capture_star_this=201603L");
1056 : 75601 : cpp_define (pfile, "__cpp_inline_variables=201606L");
1057 : 75601 : cpp_define (pfile, "__cpp_aggregate_bases=201603L");
1058 : 75601 : if (cxx_dialect <= cxx17)
1059 : 44993 : cpp_define (pfile, "__cpp_deduction_guides=201703L");
1060 : 75601 : cpp_define (pfile, "__cpp_noexcept_function_type=201510L");
1061 : : /* Old macro, superseded by
1062 : : __cpp_nontype_template_parameter_auto. */
1063 : 75601 : cpp_define (pfile, "__cpp_template_auto=201606L");
1064 : 75601 : if (cxx_dialect <= cxx23)
1065 : 51977 : cpp_define (pfile, "__cpp_structured_bindings=201606L");
1066 : 75601 : cpp_define (pfile, "__cpp_variadic_using=201611L");
1067 : 75601 : cpp_define (pfile, "__cpp_guaranteed_copy_elision=201606L");
1068 : 75601 : cpp_define (pfile, "__cpp_nontype_template_parameter_auto=201606L");
1069 : : }
1070 : 96460 : if (cxx_dialect > cxx17)
1071 : : {
1072 : : /* Set feature test macros for C++20. */
1073 : 30608 : cpp_define (pfile, "__cpp_init_captures=201803L");
1074 : 30608 : cpp_define (pfile, "__cpp_generic_lambdas=201707L");
1075 : 30608 : cpp_define (pfile, "__cpp_designated_initializers=201707L");
1076 : 30608 : if (cxx_dialect <= cxx20)
1077 : 5034 : cpp_define (pfile, "__cpp_constexpr=202002L");
1078 : 30608 : cpp_define (pfile, "__cpp_constexpr_in_decltype=201711L");
1079 : 30608 : cpp_define (pfile, "__cpp_conditional_explicit=201806L");
1080 : 30608 : cpp_define (pfile, "__cpp_consteval=202211L");
1081 : 30608 : cpp_define (pfile, "__cpp_constinit=201907L");
1082 : 30608 : cpp_define (pfile, "__cpp_deduction_guides=201907L");
1083 : 30608 : cpp_define (pfile, "__cpp_nontype_template_args=201911L");
1084 : 30608 : cpp_define (pfile, "__cpp_nontype_template_parameter_class=201806L");
1085 : 30608 : cpp_define (pfile, "__cpp_impl_destroying_delete=201806L");
1086 : 30608 : cpp_define (pfile, "__cpp_constexpr_dynamic_alloc=201907L");
1087 : 30608 : cpp_define (pfile, "__cpp_impl_three_way_comparison=201907L");
1088 : 30608 : cpp_define (pfile, "__cpp_aggregate_paren_init=201902L");
1089 : 30608 : cpp_define (pfile, "__cpp_using_enum=201907L");
1090 : : }
1091 : 96460 : if (cxx_dialect > cxx20)
1092 : : {
1093 : : /* Set feature test macros for C++23. */
1094 : 25574 : cpp_define (pfile, "__cpp_size_t_suffix=202011L");
1095 : 25574 : cpp_define (pfile, "__cpp_if_consteval=202106L");
1096 : 25574 : cpp_define (pfile, "__cpp_auto_cast=202110L");
1097 : 25574 : if (cxx_dialect <= cxx23)
1098 : 1950 : cpp_define (pfile, "__cpp_constexpr=202211L");
1099 : 25574 : cpp_define (pfile, "__cpp_multidimensional_subscript=202211L");
1100 : 25574 : cpp_define (pfile, "__cpp_named_character_escapes=202207L");
1101 : 25574 : cpp_define (pfile, "__cpp_static_call_operator=202207L");
1102 : 25574 : cpp_define (pfile, "__cpp_implicit_move=202207L");
1103 : 25574 : cpp_define (pfile, "__cpp_explicit_this_parameter=202110L");
1104 : : }
1105 : 96460 : if (cxx_dialect > cxx23)
1106 : : {
1107 : : /* Set feature test macros for C++26. */
1108 : 23624 : cpp_define (pfile, "__cpp_constexpr=202406L");
1109 : 23624 : cpp_define (pfile, "__cpp_constexpr_exceptions=202411L");
1110 : 23624 : cpp_define (pfile, "__cpp_static_assert=202306L");
1111 : 23624 : cpp_define (pfile, "__cpp_placeholder_variables=202306L");
1112 : 23624 : cpp_define (pfile, "__cpp_structured_bindings=202411L");
1113 : 23624 : cpp_define (pfile, "__cpp_deleted_function=202403L");
1114 : 23624 : cpp_define (pfile, "__cpp_variadic_friend=202403L");
1115 : 23624 : cpp_define (pfile, "__cpp_pack_indexing=202311L");
1116 : 23624 : cpp_define (pfile, "__cpp_pp_embed=202502L");
1117 : 23624 : cpp_define (pfile, "__cpp_constexpr_virtual_inheritance=202506L");
1118 : 23624 : cpp_define (pfile, "__cpp_expansion_statements=202506L");
1119 : : }
1120 : 96460 : if (flag_concepts && cxx_dialect > cxx14)
1121 : 30759 : cpp_define (pfile, "__cpp_concepts=202002L");
1122 : 65701 : else if (cxx_dialect >= cxx20)
1123 : 0 : cpp_warn (pfile, "__cpp_concepts");
1124 : 96460 : if (flag_contracts)
1125 : : {
1126 : 155 : cpp_define (pfile, "__cpp_contracts=201906L");
1127 : 155 : cpp_define (pfile, "__cpp_contracts_literal_semantics=201906L");
1128 : 155 : cpp_define (pfile, "__cpp_contracts_roles=201906L");
1129 : : }
1130 : 96305 : else if (cxx_dialect >= cxx26)
1131 : 23599 : cpp_warn (pfile, "__cpp_contracts");
1132 : 96460 : if (flag_modules)
1133 : : /* The std-defined value is 201907L, but I don't think we can
1134 : : claim victory yet. 201810 is the p1103 date. */
1135 : 4564 : cpp_define (pfile, "__cpp_modules=201810L");
1136 : 91896 : else if (cxx_dialect >= cxx20)
1137 : 27498 : cpp_warn (pfile, "__cpp_modules");
1138 : 96460 : if (flag_coroutines)
1139 : 31571 : cpp_define (pfile, "__cpp_impl_coroutine=201902L"); /* n4861, DIS */
1140 : 64889 : else if (cxx_dialect >= cxx20)
1141 : 0 : cpp_warn (pfile, "__cpp_impl_coroutine");
1142 : 96460 : if (flag_tm)
1143 : : /* Use a value smaller than the 201505 specified in
1144 : : the TS, since we don't yet support atomic_cancel. */
1145 : 319 : cpp_define (pfile, "__cpp_transactional_memory=201500L");
1146 : 96460 : if (flag_sized_deallocation)
1147 : 76874 : cpp_define (pfile, "__cpp_sized_deallocation=201309L");
1148 : 19586 : else if (cxx_dialect >= cxx20)
1149 : 1 : cpp_warn (pfile, "__cpp_sized_deallocation");
1150 : 96460 : if (aligned_new_threshold)
1151 : : {
1152 : 75604 : cpp_define (pfile, "__cpp_aligned_new=201606L");
1153 : 75604 : cpp_define_formatted (pfile, "__STDCPP_DEFAULT_NEW_ALIGNMENT__=%d",
1154 : : aligned_new_threshold);
1155 : : }
1156 : 20856 : else if (cxx_dialect >= cxx20)
1157 : 0 : cpp_warn (pfile, "__cpp_aligned_new");
1158 : 96460 : if (cxx_dialect >= cxx17)
1159 : 75601 : cpp_warn (pfile, "__STDCPP_DEFAULT_NEW_ALIGNMENT__");
1160 : 96460 : if (flag_new_ttp)
1161 : 75589 : cpp_define (pfile, "__cpp_template_template_args=201611L");
1162 : 20871 : else if (cxx_dialect >= cxx20)
1163 : 6 : cpp_warn (pfile, "__cpp_template_template_args");
1164 : 96460 : if (flag_threadsafe_statics)
1165 : 96454 : cpp_define (pfile, "__cpp_threadsafe_static_init=200806L");
1166 : 6 : else if (cxx_dialect >= cxx20)
1167 : 2 : cpp_warn (pfile, "__cpp_threadsafe_static_init");
1168 : 96460 : if (flag_char8_t)
1169 : 30666 : cpp_define (pfile, "__cpp_char8_t=202207L");
1170 : 65794 : else if (cxx_dialect >= cxx20)
1171 : 9 : cpp_warn (pfile, "__cpp_char8_t");
1172 : : #ifndef THREAD_MODEL_SPEC
1173 : : /* Targets that define THREAD_MODEL_SPEC need to define
1174 : : __STDCPP_THREADS__ in their config/XXX/XXX-c.c themselves. */
1175 : 96460 : if (cxx_dialect >= cxx11 && strcmp (thread_model, "single") != 0)
1176 : 82467 : cpp_define (pfile, "__STDCPP_THREADS__=1");
1177 : : else
1178 : : #endif
1179 : : if (cxx_dialect >= cxx11)
1180 : : cpp_warn (pfile, "__STDCPP_THREADS__");
1181 : 96460 : if (flag_implicit_constexpr)
1182 : 4 : cpp_define (pfile, "__cpp_implicit_constexpr=20211111L");
1183 : : }
1184 : : /* Note that we define this for C as well, so that we know if
1185 : : __attribute__((cleanup)) will interface with EH. */
1186 : 209370 : if (flag_exceptions)
1187 : : {
1188 : 95732 : cpp_define (pfile, "__EXCEPTIONS");
1189 : 95732 : if (c_dialect_cxx ())
1190 : 95219 : cpp_define (pfile, "__cpp_exceptions=199711L");
1191 : : }
1192 : :
1193 : : /* Represents the C++ ABI version, always defined so it can be used while
1194 : : preprocessing C and assembler. */
1195 : 209370 : if (flag_abi_version == 0)
1196 : : /* We should have set this to something real in c_common_post_options. */
1197 : 0 : gcc_unreachable ();
1198 : 209370 : else if (flag_abi_version == 1)
1199 : : /* Due to a historical accident, this version had the value
1200 : : "102". */
1201 : 0 : builtin_define_with_int_value ("__GXX_ABI_VERSION", 102);
1202 : : else
1203 : : /* Newer versions have values 1002, 1003, .... */
1204 : 209370 : builtin_define_with_int_value ("__GXX_ABI_VERSION",
1205 : 209370 : 1000 + flag_abi_version);
1206 : :
1207 : : /* libgcc needs to know this. */
1208 : 209370 : if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ)
1209 : 0 : cpp_define (pfile, "__USING_SJLJ_EXCEPTIONS__");
1210 : :
1211 : : /* limits.h and stdint.h need to know these. */
1212 : 418740 : builtin_define_type_max ("__SCHAR_MAX__", signed_char_type_node);
1213 : 418740 : builtin_define_type_max ("__SHRT_MAX__", short_integer_type_node);
1214 : 418740 : builtin_define_type_max ("__INT_MAX__", integer_type_node);
1215 : 418740 : builtin_define_type_max ("__LONG_MAX__", long_integer_type_node);
1216 : 418740 : builtin_define_type_max ("__LONG_LONG_MAX__", long_long_integer_type_node);
1217 : 209370 : builtin_define_type_minmax ("__WCHAR_MIN__", "__WCHAR_MAX__",
1218 : : underlying_wchar_type_node);
1219 : 209370 : builtin_define_type_minmax ("__WINT_MIN__", "__WINT_MAX__", wint_type_node);
1220 : 418740 : builtin_define_type_max ("__PTRDIFF_MAX__", ptrdiff_type_node);
1221 : 418740 : builtin_define_type_max ("__SIZE_MAX__", size_type_node);
1222 : :
1223 : : /* These are needed for TS 18661-1. */
1224 : 209370 : builtin_define_type_width ("__SCHAR_WIDTH__", signed_char_type_node,
1225 : : unsigned_char_type_node);
1226 : 209370 : builtin_define_type_width ("__SHRT_WIDTH__", short_integer_type_node,
1227 : : short_unsigned_type_node);
1228 : 209370 : builtin_define_type_width ("__INT_WIDTH__", integer_type_node,
1229 : : unsigned_type_node);
1230 : 209370 : builtin_define_type_width ("__LONG_WIDTH__", long_integer_type_node,
1231 : : long_unsigned_type_node);
1232 : 209370 : builtin_define_type_width ("__LONG_LONG_WIDTH__",
1233 : : long_long_integer_type_node,
1234 : : long_long_unsigned_type_node);
1235 : 209370 : builtin_define_type_width ("__WCHAR_WIDTH__", underlying_wchar_type_node,
1236 : : NULL_TREE);
1237 : 209370 : builtin_define_type_width ("__WINT_WIDTH__", wint_type_node, NULL_TREE);
1238 : 209370 : builtin_define_type_width ("__PTRDIFF_WIDTH__", ptrdiff_type_node, NULL_TREE);
1239 : 209370 : builtin_define_type_width ("__SIZE_WIDTH__", size_type_node, NULL_TREE);
1240 : :
1241 : 209370 : if (!c_dialect_cxx ())
1242 : : {
1243 : 112910 : struct bitint_info info;
1244 : : /* For now, restrict __BITINT_MAXWIDTH__ to what can be represented in
1245 : : wide_int and widest_int. */
1246 : 112910 : if (targetm.c.bitint_type_info (WIDE_INT_MAX_PRECISION - 1, &info))
1247 : : {
1248 : 112910 : cpp_define_formatted (pfile, "__BITINT_MAXWIDTH__=%d",
1249 : : (int) WIDE_INT_MAX_PRECISION - 1);
1250 : 112910 : if (flag_building_libgcc)
1251 : : {
1252 : 984 : scalar_int_mode limb_mode
1253 : 984 : = as_a <scalar_int_mode> (info.limb_mode);
1254 : 984 : cpp_define_formatted (pfile, "__LIBGCC_BITINT_LIMB_WIDTH__=%d",
1255 : 984 : (int) GET_MODE_PRECISION (limb_mode));
1256 : 984 : cpp_define_formatted (pfile, "__LIBGCC_BITINT_ORDER__=%s",
1257 : 984 : info.big_endian
1258 : : ? "__ORDER_BIG_ENDIAN__"
1259 : : : "__ORDER_LITTLE_ENDIAN__");
1260 : : }
1261 : : }
1262 : : }
1263 : :
1264 : 209370 : if (c_dialect_cxx ())
1265 : 192920 : for (i = 0; i < NUM_INT_N_ENTS; i ++)
1266 : 96460 : if (int_n_enabled_p[i])
1267 : : {
1268 : 95662 : char buf[35+20+20];
1269 : :
1270 : : /* These are used to configure the C++ library. */
1271 : :
1272 : 95662 : if (!flag_iso || int_n_data[i].bitsize == POINTER_SIZE)
1273 : : {
1274 : 45009 : sprintf (buf, "__GLIBCXX_TYPE_INT_N_%d=__int%d", i, int_n_data[i].bitsize);
1275 : 45009 : cpp_define (parse_in, buf);
1276 : :
1277 : 45009 : sprintf (buf, "__GLIBCXX_BITSIZE_INT_N_%d=%d", i, int_n_data[i].bitsize);
1278 : 45009 : cpp_define (parse_in, buf);
1279 : : }
1280 : : }
1281 : :
1282 : : /* stdint.h and the testsuite need to know these. */
1283 : 209370 : builtin_define_stdint_macros ();
1284 : :
1285 : : /* Provide information for library headers to determine whether to
1286 : : define macros such as __STDC_IEC_559__ and
1287 : : __STDC_IEC_559_COMPLEX__. */
1288 : 209370 : builtin_define_with_int_value ("__GCC_IEC_559", cpp_iec_559_value ());
1289 : 209370 : builtin_define_with_int_value ("__GCC_IEC_559_COMPLEX",
1290 : 209370 : cpp_iec_559_complex_value ());
1291 : :
1292 : : /* float.h needs these to correctly set FLT_EVAL_METHOD
1293 : :
1294 : : We define two values:
1295 : :
1296 : : __FLT_EVAL_METHOD__
1297 : : Which, depending on the value given for
1298 : : -fpermitted-flt-eval-methods, may be limited to only those values
1299 : : for FLT_EVAL_METHOD defined in C99/C11.
1300 : :
1301 : : __FLT_EVAL_METHOD_TS_18661_3__
1302 : : Which always permits the values for FLT_EVAL_METHOD defined in
1303 : : ISO/IEC TS 18661-3. */
1304 : 209370 : builtin_define_with_int_value ("__FLT_EVAL_METHOD__",
1305 : 209370 : c_flt_eval_method (true));
1306 : 209370 : builtin_define_with_int_value ("__FLT_EVAL_METHOD_TS_18661_3__",
1307 : 209370 : c_flt_eval_method (false));
1308 : :
1309 : : /* And decfloat.h needs this. */
1310 : 209370 : builtin_define_with_int_value ("__DEC_EVAL_METHOD__",
1311 : : TARGET_DEC_EVAL_METHOD);
1312 : :
1313 : 209370 : builtin_define_float_constants ("FLT", "F", "%s", "F", float_type_node);
1314 : : /* Cast the double precision constants. This is needed when single
1315 : : precision constants are specified or when pragma FLOAT_CONST_DECIMAL64
1316 : : is used. The correct result is computed by the compiler when using
1317 : : macros that include a cast. We use a different cast for C++ to avoid
1318 : : problems with -Wold-style-cast. */
1319 : 209370 : builtin_define_float_constants ("DBL", "L",
1320 : 209370 : (c_dialect_cxx ()
1321 : : ? "double(%s)"
1322 : : : "((double)%s)"),
1323 : : "", double_type_node);
1324 : 209370 : builtin_define_float_constants ("LDBL", "L", "%s", "L",
1325 : : long_double_type_node);
1326 : :
1327 : 1674960 : for (int i = 0; i < NUM_FLOATN_NX_TYPES; i++)
1328 : : {
1329 : 1465590 : if (c_dialect_cxx ()
1330 : 675220 : && cxx_dialect > cxx20
1331 : 179018 : && !floatn_nx_types[i].extended)
1332 : : {
1333 : 102296 : char name[sizeof ("__STDCPP_FLOAT128_T__=1")];
1334 : 102296 : if (FLOATN_NX_TYPE_NODE (i) == NULL_TREE)
1335 : : {
1336 : 0 : sprintf (name, "__STDCPP_FLOAT%d_T__", floatn_nx_types[i].n);
1337 : 0 : cpp_warn (pfile, name);
1338 : 0 : continue;
1339 : : }
1340 : 102296 : sprintf (name, "__STDCPP_FLOAT%d_T__=1", floatn_nx_types[i].n);
1341 : 102296 : cpp_define_warn (pfile, name);
1342 : 102296 : }
1343 : 1363294 : else if (FLOATN_NX_TYPE_NODE (i) == NULL_TREE)
1344 : 209370 : continue;
1345 : 1256220 : char prefix[20], csuffix[20];
1346 : 2512440 : sprintf (prefix, "FLT%d%s", floatn_nx_types[i].n,
1347 : 1256220 : floatn_nx_types[i].extended ? "X" : "");
1348 : 1256220 : sprintf (csuffix, "F%d%s", floatn_nx_types[i].n,
1349 : : floatn_nx_types[i].extended ? "x" : "");
1350 : 1256220 : builtin_define_float_constants (prefix, ggc_strdup (csuffix), "%s",
1351 : 1256220 : csuffix, FLOATN_NX_TYPE_NODE (i));
1352 : : }
1353 : 209370 : if (bfloat16_type_node)
1354 : : {
1355 : 209370 : if (c_dialect_cxx () && cxx_dialect > cxx20)
1356 : 25574 : cpp_define_warn (pfile, "__STDCPP_BFLOAT16_T__=1");
1357 : 209370 : builtin_define_float_constants ("BFLT16", "BF16", "%s",
1358 : : "BF16", bfloat16_type_node);
1359 : : }
1360 : 0 : else if (cxx_dialect >= cxx23)
1361 : 0 : cpp_warn (pfile, "__STDCPP_BFLOAT16_T__");
1362 : :
1363 : : /* For float.h. */
1364 : 209370 : if (targetm.decimal_float_supported_p ())
1365 : : {
1366 : 209370 : builtin_define_decimal_float_constants ("DEC32", "DF",
1367 : : dfloat32_type_node);
1368 : 209370 : builtin_define_decimal_float_constants ("DEC64", "DD",
1369 : : dfloat64_type_node);
1370 : 209370 : builtin_define_decimal_float_constants ("DEC128", "DL",
1371 : : dfloat128_type_node);
1372 : 209370 : if (dfloat64x_type_node)
1373 : 209370 : builtin_define_decimal_float_constants ("DEC64X", "D64x",
1374 : : dfloat64x_type_node);
1375 : : }
1376 : :
1377 : : /* For fixed-point fibt, ibit, max, min, and epsilon. */
1378 : 209370 : if (targetm.fixed_point_supported_p ())
1379 : : {
1380 : 0 : builtin_define_fixed_point_constants ("SFRACT", "HR",
1381 : : short_fract_type_node);
1382 : 0 : builtin_define_fixed_point_constants ("USFRACT", "UHR",
1383 : : unsigned_short_fract_type_node);
1384 : 0 : builtin_define_fixed_point_constants ("FRACT", "R",
1385 : : fract_type_node);
1386 : 0 : builtin_define_fixed_point_constants ("UFRACT", "UR",
1387 : : unsigned_fract_type_node);
1388 : 0 : builtin_define_fixed_point_constants ("LFRACT", "LR",
1389 : : long_fract_type_node);
1390 : 0 : builtin_define_fixed_point_constants ("ULFRACT", "ULR",
1391 : : unsigned_long_fract_type_node);
1392 : 0 : builtin_define_fixed_point_constants ("LLFRACT", "LLR",
1393 : : long_long_fract_type_node);
1394 : 0 : builtin_define_fixed_point_constants ("ULLFRACT", "ULLR",
1395 : : unsigned_long_long_fract_type_node);
1396 : 0 : builtin_define_fixed_point_constants ("SACCUM", "HK",
1397 : : short_accum_type_node);
1398 : 0 : builtin_define_fixed_point_constants ("USACCUM", "UHK",
1399 : : unsigned_short_accum_type_node);
1400 : 0 : builtin_define_fixed_point_constants ("ACCUM", "K",
1401 : : accum_type_node);
1402 : 0 : builtin_define_fixed_point_constants ("UACCUM", "UK",
1403 : : unsigned_accum_type_node);
1404 : 0 : builtin_define_fixed_point_constants ("LACCUM", "LK",
1405 : : long_accum_type_node);
1406 : 0 : builtin_define_fixed_point_constants ("ULACCUM", "ULK",
1407 : : unsigned_long_accum_type_node);
1408 : 0 : builtin_define_fixed_point_constants ("LLACCUM", "LLK",
1409 : : long_long_accum_type_node);
1410 : 0 : builtin_define_fixed_point_constants ("ULLACCUM", "ULLK",
1411 : : unsigned_long_long_accum_type_node);
1412 : :
1413 : 0 : builtin_define_fixed_point_constants ("QQ", "", qq_type_node);
1414 : 0 : builtin_define_fixed_point_constants ("HQ", "", hq_type_node);
1415 : 0 : builtin_define_fixed_point_constants ("SQ", "", sq_type_node);
1416 : 0 : builtin_define_fixed_point_constants ("DQ", "", dq_type_node);
1417 : 0 : builtin_define_fixed_point_constants ("TQ", "", tq_type_node);
1418 : 0 : builtin_define_fixed_point_constants ("UQQ", "", uqq_type_node);
1419 : 0 : builtin_define_fixed_point_constants ("UHQ", "", uhq_type_node);
1420 : 0 : builtin_define_fixed_point_constants ("USQ", "", usq_type_node);
1421 : 0 : builtin_define_fixed_point_constants ("UDQ", "", udq_type_node);
1422 : 0 : builtin_define_fixed_point_constants ("UTQ", "", utq_type_node);
1423 : 0 : builtin_define_fixed_point_constants ("HA", "", ha_type_node);
1424 : 0 : builtin_define_fixed_point_constants ("SA", "", sa_type_node);
1425 : 0 : builtin_define_fixed_point_constants ("DA", "", da_type_node);
1426 : 0 : builtin_define_fixed_point_constants ("TA", "", ta_type_node);
1427 : 0 : builtin_define_fixed_point_constants ("UHA", "", uha_type_node);
1428 : 0 : builtin_define_fixed_point_constants ("USA", "", usa_type_node);
1429 : 0 : builtin_define_fixed_point_constants ("UDA", "", uda_type_node);
1430 : 0 : builtin_define_fixed_point_constants ("UTA", "", uta_type_node);
1431 : : }
1432 : :
1433 : : /* For libgcc-internal use only. */
1434 : 209370 : if (flag_building_libgcc)
1435 : : {
1436 : : /* Properties of floating-point modes for libgcc2.c. */
1437 : 984 : opt_scalar_float_mode mode_iter;
1438 : 6888 : FOR_EACH_MODE_IN_CLASS (mode_iter, MODE_FLOAT)
1439 : : {
1440 : 5904 : scalar_float_mode mode = mode_iter.require ();
1441 : 5904 : const char *name = GET_MODE_NAME (mode);
1442 : 5904 : const size_t name_len = strlen (name);
1443 : 5904 : char float_h_prefix[16] = "";
1444 : 5904 : char *macro_name
1445 : 5904 : = XALLOCAVEC (char, name_len + sizeof ("__LIBGCC__MANT_DIG__"));
1446 : 5904 : sprintf (macro_name, "__LIBGCC_%s_MANT_DIG__", name);
1447 : 11808 : builtin_define_with_int_value (macro_name,
1448 : 5904 : REAL_MODE_FORMAT (mode)->p);
1449 : 5904 : if (!targetm.scalar_mode_supported_p (mode)
1450 : 5904 : || !targetm.libgcc_floating_mode_supported_p (mode))
1451 : 0 : continue;
1452 : 5904 : macro_name = XALLOCAVEC (char, name_len
1453 : : + sizeof ("__LIBGCC_HAS__MODE__"));
1454 : 5904 : sprintf (macro_name, "__LIBGCC_HAS_%s_MODE__", name);
1455 : 5904 : cpp_define (pfile, macro_name);
1456 : 5904 : macro_name = XALLOCAVEC (char, name_len
1457 : : + sizeof ("__LIBGCC__FUNC_EXT__"));
1458 : 5904 : sprintf (macro_name, "__LIBGCC_%s_FUNC_EXT__", name);
1459 : 5904 : char suffix[20] = "";
1460 : 5904 : if (mode == TYPE_MODE (double_type_node))
1461 : : {
1462 : : /* Empty suffix correct. */
1463 : 984 : memcpy (float_h_prefix, "DBL", 4);
1464 : : }
1465 : 4920 : else if (mode == TYPE_MODE (float_type_node))
1466 : : {
1467 : 984 : suffix[0] = 'f';
1468 : 984 : memcpy (float_h_prefix, "FLT", 4);
1469 : : }
1470 : 3936 : else if (mode == TYPE_MODE (long_double_type_node))
1471 : : {
1472 : 984 : suffix[0] = 'l';
1473 : 984 : memcpy (float_h_prefix, "LDBL", 5);
1474 : : }
1475 : 2952 : else if (bfloat16_type_node
1476 : 2952 : && mode == TYPE_MODE (bfloat16_type_node))
1477 : : {
1478 : 984 : memcpy (suffix, "bf16", 5);
1479 : 984 : memcpy (float_h_prefix, "BFLT16", 7);
1480 : : }
1481 : : else
1482 : : {
1483 : 4920 : bool found_suffix = false;
1484 : 4920 : for (int i = 0; i < NUM_FLOATN_NX_TYPES; i++)
1485 : 4920 : if (FLOATN_NX_TYPE_NODE (i) != NULL_TREE
1486 : 4920 : && mode == TYPE_MODE (FLOATN_NX_TYPE_NODE (i)))
1487 : : {
1488 : 3936 : sprintf (suffix, "f%d%s", floatn_nx_types[i].n,
1489 : 1968 : floatn_nx_types[i].extended ? "x" : "");
1490 : 1968 : found_suffix = true;
1491 : 1968 : sprintf (float_h_prefix, "FLT%d%s", floatn_nx_types[i].n,
1492 : : floatn_nx_types[i].extended ? "X" : "");
1493 : 1968 : break;
1494 : : }
1495 : 1968 : gcc_assert (found_suffix);
1496 : : }
1497 : 5904 : builtin_define_with_value (macro_name, suffix, 0);
1498 : :
1499 : : /* The way __LIBGCC_*_EXCESS_PRECISION__ is used is about
1500 : : eliminating excess precision from results assigned to
1501 : : variables - meaning it should be about the implicit excess
1502 : : precision only. */
1503 : 5904 : bool excess_precision = false;
1504 : 5904 : machine_mode float16_type_mode = (float16_type_node
1505 : 5904 : ? TYPE_MODE (float16_type_node)
1506 : 5904 : : VOIDmode);
1507 : 5904 : machine_mode bfloat16_type_mode = (bfloat16_type_node
1508 : 5904 : ? TYPE_MODE (bfloat16_type_node)
1509 : 5904 : : VOIDmode);
1510 : 5904 : switch (targetm.c.excess_precision
1511 : 5904 : (EXCESS_PRECISION_TYPE_IMPLICIT))
1512 : : {
1513 : 2898 : case FLT_EVAL_METHOD_UNPREDICTABLE:
1514 : 2898 : case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE:
1515 : 2898 : excess_precision = (mode == float16_type_mode
1516 : 2415 : || mode == bfloat16_type_mode
1517 : 1932 : || mode == TYPE_MODE (float_type_node)
1518 : 4347 : || mode == TYPE_MODE (double_type_node));
1519 : : break;
1520 : :
1521 : 0 : case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE:
1522 : 0 : excess_precision = (mode == float16_type_mode
1523 : 0 : || mode == bfloat16_type_mode
1524 : 0 : || mode == TYPE_MODE (float_type_node));
1525 : : break;
1526 : 3006 : case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT:
1527 : 3006 : excess_precision = (mode == float16_type_mode
1528 : 3006 : || mode == bfloat16_type_mode);
1529 : : break;
1530 : : case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16:
1531 : : excess_precision = false;
1532 : : break;
1533 : 0 : default:
1534 : 0 : gcc_unreachable ();
1535 : : }
1536 : 5904 : macro_name = XALLOCAVEC (char, name_len
1537 : : + sizeof ("__LIBGCC__EXCESS_PRECISION__"));
1538 : 5904 : sprintf (macro_name, "__LIBGCC_%s_EXCESS_PRECISION__", name);
1539 : 5904 : builtin_define_with_int_value (macro_name, excess_precision);
1540 : :
1541 : 5904 : char val_name[64];
1542 : :
1543 : 5904 : macro_name = XALLOCAVEC (char, name_len
1544 : : + sizeof ("__LIBGCC__EPSILON__"));
1545 : 5904 : sprintf (macro_name, "__LIBGCC_%s_EPSILON__", name);
1546 : 5904 : sprintf (val_name, "__%s_EPSILON__", float_h_prefix);
1547 : 5904 : builtin_define_with_value (macro_name, val_name, 0);
1548 : :
1549 : 5904 : macro_name = XALLOCAVEC (char, name_len + sizeof ("__LIBGCC__MAX__"));
1550 : 5904 : sprintf (macro_name, "__LIBGCC_%s_MAX__", name);
1551 : 5904 : sprintf (val_name, "__%s_MAX__", float_h_prefix);
1552 : 5904 : builtin_define_with_value (macro_name, val_name, 0);
1553 : :
1554 : 5904 : macro_name = XALLOCAVEC (char, name_len + sizeof ("__LIBGCC__MIN__"));
1555 : 5904 : sprintf (macro_name, "__LIBGCC_%s_MIN__", name);
1556 : 5904 : sprintf (val_name, "__%s_MIN__", float_h_prefix);
1557 : 5904 : builtin_define_with_value (macro_name, val_name, 0);
1558 : :
1559 : : #ifdef HAVE_adddf3
1560 : 5904 : builtin_define_with_int_value ("__LIBGCC_HAVE_HWDBL__",
1561 : 5904 : HAVE_adddf3);
1562 : : #endif
1563 : : }
1564 : :
1565 : : /* For libgcc crtstuff.c and libgcc2.c. */
1566 : 984 : builtin_define_with_int_value ("__LIBGCC_EH_TABLES_CAN_BE_READ_ONLY__",
1567 : : EH_TABLES_CAN_BE_READ_ONLY);
1568 : : #ifdef EH_FRAME_SECTION_NAME
1569 : 984 : builtin_define_with_value ("__LIBGCC_EH_FRAME_SECTION_NAME__",
1570 : : EH_FRAME_SECTION_NAME, 1);
1571 : : #endif
1572 : : #ifdef CTORS_SECTION_ASM_OP
1573 : : builtin_define_with_value ("__LIBGCC_CTORS_SECTION_ASM_OP__",
1574 : : CTORS_SECTION_ASM_OP, 1);
1575 : : #endif
1576 : : #ifdef DTORS_SECTION_ASM_OP
1577 : : builtin_define_with_value ("__LIBGCC_DTORS_SECTION_ASM_OP__",
1578 : : DTORS_SECTION_ASM_OP, 1);
1579 : : #endif
1580 : : #ifdef TEXT_SECTION_ASM_OP
1581 : 984 : builtin_define_with_value ("__LIBGCC_TEXT_SECTION_ASM_OP__",
1582 : : TEXT_SECTION_ASM_OP, 1);
1583 : : #endif
1584 : : #ifdef INIT_SECTION_ASM_OP
1585 : : builtin_define_with_value ("__LIBGCC_INIT_SECTION_ASM_OP__",
1586 : : INIT_SECTION_ASM_OP, 1);
1587 : : #endif
1588 : : #ifdef INIT_ARRAY_SECTION_ASM_OP
1589 : : /* Despite the name of this target macro, the expansion is not
1590 : : actually used, and may be empty rather than a string
1591 : : constant. */
1592 : 984 : cpp_define (pfile, "__LIBGCC_INIT_ARRAY_SECTION_ASM_OP__");
1593 : : #endif
1594 : :
1595 : : /* For libgcc enable-execute-stack.c. */
1596 : 984 : builtin_define_with_int_value ("__LIBGCC_TRAMPOLINE_SIZE__",
1597 : 984 : TRAMPOLINE_SIZE);
1598 : :
1599 : : /* For libgcc generic-morestack.c and unwinder code. */
1600 : 984 : if (STACK_GROWS_DOWNWARD)
1601 : 984 : cpp_define (pfile, "__LIBGCC_STACK_GROWS_DOWNWARD__");
1602 : :
1603 : : /* For libgcc unwinder code. */
1604 : : #ifdef DONT_USE_BUILTIN_SETJMP
1605 : : cpp_define (pfile, "__LIBGCC_DONT_USE_BUILTIN_SETJMP__");
1606 : : #endif
1607 : : #ifdef DWARF_ALT_FRAME_RETURN_COLUMN
1608 : : builtin_define_with_int_value ("__LIBGCC_DWARF_ALT_FRAME_RETURN_COLUMN__",
1609 : : DWARF_ALT_FRAME_RETURN_COLUMN);
1610 : : #endif
1611 : 984 : builtin_define_with_int_value ("__LIBGCC_DWARF_FRAME_REGISTERS__",
1612 : : DWARF_FRAME_REGISTERS);
1613 : 984 : builtin_define_with_int_value ("__LIBGCC_DWARF_CIE_DATA_ALIGNMENT__",
1614 : 984 : DWARF_CIE_DATA_ALIGNMENT);
1615 : :
1616 : : #ifdef EH_RETURN_STACKADJ_RTX
1617 : 984 : cpp_define (pfile, "__LIBGCC_EH_RETURN_STACKADJ_RTX__");
1618 : : #endif
1619 : : #ifdef JMP_BUF_SIZE
1620 : : builtin_define_with_int_value ("__LIBGCC_JMP_BUF_SIZE__",
1621 : : JMP_BUF_SIZE);
1622 : : #endif
1623 : 984 : builtin_define_with_int_value ("__LIBGCC_STACK_POINTER_REGNUM__",
1624 : : STACK_POINTER_REGNUM);
1625 : :
1626 : : /* For libgcov. */
1627 : 984 : builtin_define_with_int_value ("__LIBGCC_VTABLE_USES_DESCRIPTORS__",
1628 : : TARGET_VTABLE_USES_DESCRIPTORS);
1629 : 984 : builtin_define_with_int_value ("__LIBGCC_HAVE_LIBATOMIC",
1630 : 984 : targetm.have_libatomic);
1631 : : }
1632 : :
1633 : : /* For use in assembly language. */
1634 : 209370 : builtin_define_with_value ("__REGISTER_PREFIX__", REGISTER_PREFIX, 0);
1635 : 209370 : builtin_define_with_value ("__USER_LABEL_PREFIX__", user_label_prefix, 0);
1636 : :
1637 : : /* Misc. */
1638 : 209370 : if (flag_gnu89_inline)
1639 : 21362 : cpp_define (pfile, "__GNUC_GNU_INLINE__");
1640 : : else
1641 : 188008 : cpp_define (pfile, "__GNUC_STDC_INLINE__");
1642 : :
1643 : 209370 : if (flag_no_inline)
1644 : 96402 : cpp_define (pfile, "__NO_INLINE__");
1645 : :
1646 : 209370 : if (flag_iso)
1647 : 56830 : cpp_define (pfile, "__STRICT_ANSI__");
1648 : :
1649 : 209370 : if (!flag_signed_char)
1650 : 26 : cpp_define (pfile, "__CHAR_UNSIGNED__");
1651 : :
1652 : 209370 : if (c_dialect_cxx () && TYPE_UNSIGNED (wchar_type_node))
1653 : 7 : cpp_define (pfile, "__WCHAR_UNSIGNED__");
1654 : :
1655 : 209370 : cpp_atomic_builtins (pfile);
1656 : :
1657 : : /* Show support for __builtin_speculation_safe_value () if the target
1658 : : has been updated to fully support it. */
1659 : 209370 : if (targetm.have_speculation_safe_value (false))
1660 : 209370 : cpp_define (pfile, "__HAVE_SPECULATION_SAFE_VALUE");
1661 : :
1662 : : #ifdef DWARF2_UNWIND_INFO
1663 : 209370 : if (dwarf2out_do_cfi_asm ())
1664 : 209331 : cpp_define (pfile, "__GCC_HAVE_DWARF2_CFI_ASM");
1665 : : #endif
1666 : :
1667 : : /* Make the choice of ObjC runtime visible to source code. */
1668 : 209370 : if (c_dialect_objc () && flag_next_runtime)
1669 : 0 : cpp_define (pfile, "__NEXT_RUNTIME__");
1670 : :
1671 : : /* Show the availability of some target pragmas. */
1672 : 209370 : cpp_define (pfile, "__PRAGMA_REDEFINE_EXTNAME");
1673 : :
1674 : : /* Make the choice of the stack protector runtime visible to source code.
1675 : : The macro names and values here were chosen for compatibility with an
1676 : : earlier implementation, i.e. ProPolice. */
1677 : 209370 : if (flag_stack_protect == SPCT_FLAG_EXPLICIT)
1678 : 7 : cpp_define (pfile, "__SSP_EXPLICIT__=4");
1679 : 209370 : if (flag_stack_protect == SPCT_FLAG_STRONG)
1680 : 183 : cpp_define (pfile, "__SSP_STRONG__=3");
1681 : 209370 : if (flag_stack_protect == SPCT_FLAG_ALL)
1682 : 20 : cpp_define (pfile, "__SSP_ALL__=2");
1683 : 209350 : else if (flag_stack_protect == SPCT_FLAG_DEFAULT)
1684 : 57 : cpp_define (pfile, "__SSP__=1");
1685 : :
1686 : 209370 : if (flag_openacc)
1687 : 1707 : cpp_define (pfile, "_OPENACC=201711");
1688 : :
1689 : 209370 : if (flag_openmp)
1690 : 6054 : cpp_define (pfile, "_OPENMP=201511");
1691 : :
1692 : 418740 : for (i = 0; i < NUM_INT_N_ENTS; i ++)
1693 : 209370 : if (int_n_enabled_p[i])
1694 : : {
1695 : 204032 : char buf[15+20];
1696 : 204032 : sprintf(buf, "__SIZEOF_INT%d__", int_n_data[i].bitsize);
1697 : 204032 : builtin_define_type_sizeof (buf,
1698 : : int_n_trees[i].signed_type);
1699 : : }
1700 : 209370 : builtin_define_type_sizeof ("__SIZEOF_WCHAR_T__", wchar_type_node);
1701 : 209370 : builtin_define_type_sizeof ("__SIZEOF_WINT_T__", wint_type_node);
1702 : 209370 : builtin_define_type_sizeof ("__SIZEOF_PTRDIFF_T__",
1703 : : unsigned_ptrdiff_type_node);
1704 : :
1705 : : /* A straightforward target hook doesn't work, because of problems
1706 : : linking that hook's body when part of non-C front ends. */
1707 : : # define preprocessing_asm_p() (cpp_get_options (pfile)->lang == CLK_ASM)
1708 : : # define preprocessing_trad_p() (cpp_get_options (pfile)->traditional)
1709 : : # define builtin_define(TXT) cpp_define (pfile, TXT)
1710 : : # define builtin_assert(TXT) cpp_assert (pfile, TXT)
1711 : 209370 : TARGET_CPU_CPP_BUILTINS ();
1712 : 209370 : TARGET_OS_CPP_BUILTINS ();
1713 : 209370 : TARGET_OBJFMT_CPP_BUILTINS ();
1714 : :
1715 : : /* Support the __declspec keyword by turning them into attributes.
1716 : : Note that the current way we do this may result in a collision
1717 : : with predefined attributes later on. This can be solved by using
1718 : : one attribute, say __declspec__, and passing args to it. The
1719 : : problem with that approach is that args are not accumulated: each
1720 : : new appearance would clobber any existing args. */
1721 : 209370 : if (TARGET_DECLSPEC)
1722 : : builtin_define ("__declspec(x)=__attribute__((x))");
1723 : :
1724 : : /* If decimal floating point is supported, tell the user if the
1725 : : alternate format (BID) is used instead of the standard (DPD)
1726 : : format. */
1727 : 209370 : if (ENABLE_DECIMAL_FLOAT && ENABLE_DECIMAL_BID_FORMAT)
1728 : 209370 : cpp_define (pfile, "__DECIMAL_BID_FORMAT__");
1729 : : }
1730 : :
1731 : : /* Given NAME, return the command-line option that would make it be
1732 : : a builtin define, or 0 if unrecognized. */
1733 : :
1734 : : diagnostics::option_id
1735 : 3839 : get_option_for_builtin_define (const char *name)
1736 : : {
1737 : 3839 : if (!strcmp (name, "_OPENACC"))
1738 : 4 : return OPT_fopenacc;
1739 : 3835 : if (!strcmp (name, "_OPENMP"))
1740 : 4 : return OPT_fopenmp;
1741 : 3831 : return 0;
1742 : : }
1743 : :
1744 : : /* Pass an object-like macro. If it doesn't lie in the user's
1745 : : namespace, defines it unconditionally. Otherwise define a version
1746 : : with two leading underscores, and another version with two leading
1747 : : and trailing underscores, and define the original only if an ISO
1748 : : standard was not nominated.
1749 : :
1750 : : e.g. passing "unix" defines "__unix", "__unix__" and possibly
1751 : : "unix". Passing "_mips" defines "__mips", "__mips__" and possibly
1752 : : "_mips". */
1753 : : void
1754 : 424078 : builtin_define_std (const char *macro)
1755 : : {
1756 : 424078 : size_t len = strlen (macro);
1757 : 424078 : char *buff = (char *) alloca (len + 5);
1758 : 424078 : char *p = buff + 2;
1759 : 424078 : char *q = p + len;
1760 : :
1761 : : /* prepend __ (or maybe just _) if in user's namespace. */
1762 : 424078 : memcpy (p, macro, len + 1);
1763 : 424078 : if (!( *p == '_' && (p[1] == '_' || ISUPPER (p[1]))))
1764 : : {
1765 : 424078 : if (*p != '_')
1766 : 424078 : *--p = '_';
1767 : 424078 : if (p[1] != '_')
1768 : 424078 : *--p = '_';
1769 : : }
1770 : 424078 : cpp_define (parse_in, p);
1771 : :
1772 : : /* If it was in user's namespace... */
1773 : 424078 : if (p != buff + 2)
1774 : : {
1775 : : /* Define the macro with leading and following __. */
1776 : 424078 : if (q[-1] != '_')
1777 : 424078 : *q++ = '_';
1778 : 424078 : if (q[-2] != '_')
1779 : 424078 : *q++ = '_';
1780 : 424078 : *q = '\0';
1781 : 424078 : cpp_define (parse_in, p);
1782 : :
1783 : : /* Finally, define the original macro if permitted. */
1784 : 424078 : if (!flag_iso)
1785 : 310368 : cpp_define (parse_in, macro);
1786 : : }
1787 : 424078 : }
1788 : :
1789 : : /* Pass an object-like macro and a value to define it to. The third
1790 : : parameter says whether or not to turn the value into a string
1791 : : constant. */
1792 : : void
1793 : 18790243 : builtin_define_with_value (const char *macro, const char *expansion, int is_str)
1794 : : {
1795 : 18790243 : char *buf;
1796 : 18790243 : size_t mlen = strlen (macro);
1797 : 18790243 : size_t elen = strlen (expansion);
1798 : 18790243 : size_t extra = 2; /* space for an = and a NUL */
1799 : :
1800 : 18790243 : if (is_str)
1801 : : {
1802 : 420708 : char *quoted_expansion = (char *) alloca (elen * 4 + 1);
1803 : 420708 : const char *p;
1804 : 420708 : char *q;
1805 : 420708 : extra += 2; /* space for two quote marks */
1806 : 3157444 : for (p = expansion, q = quoted_expansion; *p; p++)
1807 : : {
1808 : 2736736 : switch (*p)
1809 : : {
1810 : 0 : case '\n':
1811 : 0 : *q++ = '\\';
1812 : 0 : *q++ = 'n';
1813 : 0 : break;
1814 : :
1815 : 984 : case '\t':
1816 : 984 : *q++ = '\\';
1817 : 984 : *q++ = 't';
1818 : 984 : break;
1819 : :
1820 : 0 : case '\\':
1821 : 0 : *q++ = '\\';
1822 : 0 : *q++ = '\\';
1823 : 0 : break;
1824 : :
1825 : 0 : case '"':
1826 : 0 : *q++ = '\\';
1827 : 0 : *q++ = '"';
1828 : 0 : break;
1829 : :
1830 : 2735752 : default:
1831 : 2735752 : if (ISPRINT ((unsigned char) *p))
1832 : 2735752 : *q++ = *p;
1833 : : else
1834 : : {
1835 : 0 : sprintf (q, "\\%03o", (unsigned char) *p);
1836 : 0 : q += 4;
1837 : : }
1838 : : }
1839 : : }
1840 : 420708 : *q = '\0';
1841 : 420708 : expansion = quoted_expansion;
1842 : 420708 : elen = q - expansion;
1843 : : }
1844 : :
1845 : 18790243 : buf = (char *) alloca (mlen + elen + extra);
1846 : 18790243 : if (is_str)
1847 : 420708 : sprintf (buf, "%s=\"%s\"", macro, expansion);
1848 : : else
1849 : 18369535 : sprintf (buf, "%s=%s", macro, expansion);
1850 : :
1851 : 18790243 : cpp_define (parse_in, buf);
1852 : 18790243 : }
1853 : :
1854 : :
1855 : : /* Pass an object-like macro and an integer value to define it to. */
1856 : : void
1857 : 28022658 : builtin_define_with_int_value (const char *macro, HOST_WIDE_INT value)
1858 : : {
1859 : 28022658 : char *buf;
1860 : 28022658 : size_t mlen = strlen (macro);
1861 : 28022658 : size_t vlen = 18;
1862 : 28022658 : size_t extra = 2; /* space for = and NUL. */
1863 : :
1864 : 28022658 : buf = (char *) alloca (mlen + vlen + extra);
1865 : 28022658 : memcpy (buf, macro, mlen);
1866 : 28022658 : buf[mlen] = '=';
1867 : 28022658 : sprintf (buf + mlen + 1, HOST_WIDE_INT_PRINT_DEC, value);
1868 : :
1869 : 28022658 : cpp_define (parse_in, buf);
1870 : 28022658 : }
1871 : :
1872 : : /* builtin_define_with_hex_fp_value is very expensive, so the following
1873 : : array and function allows it to be done lazily when __DBL_MAX__
1874 : : etc. is first used. */
1875 : :
1876 : : struct GTY(()) lazy_hex_fp_value_struct
1877 : : {
1878 : : const char *hex_str;
1879 : : machine_mode mode;
1880 : : int digits;
1881 : : const char *fp_suffix;
1882 : : };
1883 : : /* Number of the expensive to compute macros we should evaluate lazily.
1884 : : Each builtin_define_float_constants invocation calls
1885 : : builtin_define_with_hex_fp_value 5 times and builtin_define_float_constants
1886 : : is called for FLT, DBL, LDBL and up to NUM_FLOATN_NX_TYPES times for
1887 : : FLTNN*. */
1888 : : #define LAZY_HEX_FP_VALUES_CNT (5 * (3 + NUM_FLOATN_NX_TYPES))
1889 : : static GTY(()) struct lazy_hex_fp_value_struct
1890 : : lazy_hex_fp_values[LAZY_HEX_FP_VALUES_CNT];
1891 : : static GTY(()) unsigned lazy_hex_fp_value_count;
1892 : :
1893 : : static void
1894 : 324242 : lazy_hex_fp_value (cpp_reader *, cpp_macro *macro, unsigned num)
1895 : : {
1896 : 324242 : REAL_VALUE_TYPE real;
1897 : 324242 : char dec_str[64], buf1[256];
1898 : :
1899 : 324242 : gcc_checking_assert (num < lazy_hex_fp_value_count);
1900 : :
1901 : 324242 : real_from_string (&real, lazy_hex_fp_values[num].hex_str);
1902 : 324242 : real_to_decimal_for_mode (dec_str, &real, sizeof (dec_str),
1903 : 324242 : lazy_hex_fp_values[num].digits, 0,
1904 : : lazy_hex_fp_values[num].mode);
1905 : :
1906 : 324242 : size_t len
1907 : 324242 : = sprintf (buf1, "%s%s", dec_str, lazy_hex_fp_values[num].fp_suffix);
1908 : 324242 : gcc_assert (len < sizeof (buf1));
1909 : 428496 : for (unsigned idx = 0; idx < macro->count; idx++)
1910 : 428496 : if (macro->exp.tokens[idx].type == CPP_NUMBER)
1911 : : {
1912 : 324242 : macro->exp.tokens[idx].val.str.len = len;
1913 : 324242 : macro->exp.tokens[idx].val.str.text
1914 : 324242 : = (const unsigned char *) ggc_strdup (buf1);
1915 : 324242 : return;
1916 : : }
1917 : :
1918 : : /* We must have replaced a token. */
1919 : 0 : gcc_unreachable ();
1920 : : }
1921 : :
1922 : : /* Pass an object-like macro a hexadecimal floating-point value. */
1923 : : static void
1924 : 10468500 : builtin_define_with_hex_fp_value (const char *macro,
1925 : : tree type, int digits,
1926 : : const char *hex_str,
1927 : : const char *fp_suffix,
1928 : : const char *fp_cast)
1929 : : {
1930 : 10468500 : REAL_VALUE_TYPE real;
1931 : 10468500 : char dec_str[64], buf[256], buf1[128], buf2[64];
1932 : :
1933 : : /* This is very expensive, so if possible expand them lazily. */
1934 : 10468500 : if (lazy_hex_fp_value_count < LAZY_HEX_FP_VALUES_CNT
1935 : 10468500 : && flag_dump_macros == 0
1936 : 10426200 : && flag_dump_go_spec == NULL
1937 : 10426000 : && !cpp_get_options (parse_in)->traditional)
1938 : : {
1939 : 10279850 : if (lazy_hex_fp_value_count == 0)
1940 : 205597 : cpp_get_callbacks (parse_in)->user_lazy_macro = lazy_hex_fp_value;
1941 : 10279850 : sprintf (buf2, fp_cast, "1.1");
1942 : 10279850 : sprintf (buf1, "%s=%s", macro, buf2);
1943 : 10279850 : cpp_define (parse_in, buf1);
1944 : 10279850 : struct cpp_hashnode *node = C_CPP_HASHNODE (get_identifier (macro));
1945 : 10279850 : lazy_hex_fp_values[lazy_hex_fp_value_count].hex_str
1946 : 10279850 : = ggc_strdup (hex_str);
1947 : 10279850 : lazy_hex_fp_values[lazy_hex_fp_value_count].mode = TYPE_MODE (type);
1948 : 10279850 : lazy_hex_fp_values[lazy_hex_fp_value_count].digits = digits;
1949 : 10279850 : lazy_hex_fp_values[lazy_hex_fp_value_count].fp_suffix = fp_suffix;
1950 : 10279850 : cpp_define_lazily (parse_in, node, lazy_hex_fp_value_count++);
1951 : 10279850 : return;
1952 : : }
1953 : :
1954 : : /* Hex values are really cool and convenient, except that they're
1955 : : not supported in strict ISO C90 mode. First, the "p-" sequence
1956 : : is not valid as part of a preprocessor number. Second, we get a
1957 : : pedwarn from the preprocessor, which has no context, so we can't
1958 : : suppress the warning with __extension__.
1959 : :
1960 : : So instead what we do is construct the number in hex (because
1961 : : it's easy to get the exact correct value), parse it as a real,
1962 : : then print it back out as decimal. */
1963 : :
1964 : 188650 : real_from_string (&real, hex_str);
1965 : 188650 : real_to_decimal_for_mode (dec_str, &real, sizeof (dec_str), digits, 0,
1966 : 188650 : TYPE_MODE (type));
1967 : :
1968 : : /* Assemble the macro in the following fashion
1969 : : macro = fp_cast [dec_str fp_suffix] */
1970 : 188650 : sprintf (buf2, "%s%s", dec_str, fp_suffix);
1971 : 188650 : sprintf (buf1, fp_cast, buf2);
1972 : 188650 : sprintf (buf, "%s=%s", macro, buf1);
1973 : :
1974 : 188650 : cpp_define (parse_in, buf);
1975 : : }
1976 : :
1977 : : /* Return a string constant for the suffix for a value of type TYPE
1978 : : promoted according to the integer promotions. The type must be one
1979 : : of the standard integer type nodes. */
1980 : :
1981 : : static const char *
1982 : 10049760 : type_suffix (tree type)
1983 : : {
1984 : 10049760 : static const char *const suffixes[] = { "", "U", "L", "UL", "LL", "ULL" };
1985 : 10049760 : int unsigned_suffix;
1986 : 10049760 : int is_long;
1987 : 10049760 : int tp = TYPE_PRECISION (type);
1988 : :
1989 : 10049760 : if (type == long_long_integer_type_node
1990 : 9807744 : || type == long_long_unsigned_type_node
1991 : 19824858 : || tp > TYPE_PRECISION (long_integer_type_node))
1992 : : is_long = 2;
1993 : 9775098 : else if (type == long_integer_type_node
1994 : 7520997 : || type == long_unsigned_type_node
1995 : 15256805 : || tp > TYPE_PRECISION (integer_type_node))
1996 : : is_long = 1;
1997 : 5481707 : else if (type == integer_type_node
1998 : 4209177 : || type == unsigned_type_node
1999 : 3349933 : || type == short_integer_type_node
2000 : 2512453 : || type == short_unsigned_type_node
2001 : 1884330 : || type == signed_char_type_node
2002 : 837480 : || type == unsigned_char_type_node
2003 : : /* ??? "char" is not a signed or unsigned integer type and
2004 : : so is not permitted for the standard typedefs, but some
2005 : : systems use it anyway. */
2006 : 0 : || type == char_type_node)
2007 : : is_long = 0;
2008 : 0 : else if (type == wchar_type_node)
2009 : 0 : return type_suffix (underlying_wchar_type_node);
2010 : : else
2011 : 0 : gcc_unreachable ();
2012 : :
2013 : 10049760 : unsigned_suffix = TYPE_UNSIGNED (type);
2014 : 10049760 : if (TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
2015 : 3349933 : unsigned_suffix = 0;
2016 : 10049760 : return suffixes[is_long * 2 + unsigned_suffix];
2017 : : }
2018 : :
2019 : : /* Define MACRO as a <stdint.h> constant-suffix macro for TYPE. */
2020 : : static void
2021 : 2093700 : builtin_define_constants (const char *macro, tree type)
2022 : : {
2023 : 2093700 : const char *suffix;
2024 : 2093700 : char *buf;
2025 : :
2026 : 2093700 : suffix = type_suffix (type);
2027 : :
2028 : 2093700 : if (suffix[0] == 0)
2029 : : {
2030 : 1046850 : buf = (char *) alloca (strlen (macro) + 6);
2031 : 1046850 : sprintf (buf, "%s(c)=c", macro);
2032 : : }
2033 : : else
2034 : : {
2035 : 1046850 : buf = (char *) alloca (strlen (macro) + 9 + strlen (suffix) + 1);
2036 : 1046850 : sprintf (buf, "%s(c)=c ## %s", macro, suffix);
2037 : : }
2038 : :
2039 : 2093700 : cpp_define (parse_in, buf);
2040 : 2093700 : }
2041 : :
2042 : : /* Define MAX for TYPE based on the precision of the type. */
2043 : :
2044 : : static void
2045 : 7327950 : builtin_define_type_max (const char *macro, tree type)
2046 : : {
2047 : 6281100 : builtin_define_type_minmax (NULL, macro, type);
2048 : 2721810 : }
2049 : :
2050 : : /* Given a value with COUNT LSBs set, fill BUF with a hexidecimal
2051 : : representation of that value. For example, a COUNT of 10 would
2052 : : return "0x3ff". */
2053 : :
2054 : : static void
2055 : 7956060 : print_bits_of_hex (char *buf, int bufsz, int count)
2056 : : {
2057 : 7956060 : gcc_assert (bufsz > 3);
2058 : 7956060 : *buf++ = '0';
2059 : 7956060 : *buf++ = 'x';
2060 : 7956060 : bufsz -= 2;
2061 : :
2062 : 7956060 : gcc_assert (count > 0);
2063 : :
2064 : 7956060 : switch (count % 4) {
2065 : : case 0:
2066 : : break;
2067 : 0 : case 1:
2068 : 0 : *buf++ = '1';
2069 : 0 : bufsz --;
2070 : 0 : count -= 1;
2071 : 0 : break;
2072 : 0 : case 2:
2073 : 0 : *buf++ = '3';
2074 : 0 : bufsz --;
2075 : 0 : count -= 2;
2076 : 0 : break;
2077 : 4606127 : case 3:
2078 : 4606127 : *buf++ = '7';
2079 : 4606127 : bufsz --;
2080 : 4606127 : count -= 3;
2081 : 4606127 : break;
2082 : : }
2083 : 83774949 : while (count >= 4)
2084 : : {
2085 : 75818889 : gcc_assert (bufsz > 1);
2086 : 75818889 : *buf++ = 'f';
2087 : 75818889 : bufsz --;
2088 : 75818889 : count -= 4;
2089 : : }
2090 : 7956060 : gcc_assert (bufsz > 0);
2091 : 7956060 : *buf++ = 0;
2092 : 7956060 : }
2093 : :
2094 : : /* Define MIN_MACRO (if not NULL) and MAX_MACRO for TYPE based on the
2095 : : precision of the type. */
2096 : :
2097 : : static void
2098 : 7956060 : builtin_define_type_minmax (const char *min_macro, const char *max_macro,
2099 : : tree type)
2100 : : {
2101 : : #define PBOH_SZ (MAX_BITSIZE_MODE_ANY_INT/4+4)
2102 : 7956060 : char value[PBOH_SZ];
2103 : :
2104 : 7956060 : const char *suffix;
2105 : 7956060 : char *buf;
2106 : 7956060 : int bits;
2107 : :
2108 : 7956060 : bits = TYPE_PRECISION (type) + (TYPE_UNSIGNED (type) ? 0 : -1);
2109 : :
2110 : 7956060 : print_bits_of_hex (value, PBOH_SZ, bits);
2111 : :
2112 : 7956060 : suffix = type_suffix (type);
2113 : :
2114 : 7956060 : buf = (char *) alloca (strlen (max_macro) + 1 + strlen (value)
2115 : : + strlen (suffix) + 1);
2116 : 7956060 : sprintf (buf, "%s=%s%s", max_macro, value, suffix);
2117 : :
2118 : 7956060 : cpp_define (parse_in, buf);
2119 : :
2120 : 7956060 : if (min_macro)
2121 : : {
2122 : 628110 : if (TYPE_UNSIGNED (type))
2123 : : {
2124 : 209383 : buf = (char *) alloca (strlen (min_macro) + 2 + strlen (suffix) + 1);
2125 : 209383 : sprintf (buf, "%s=0%s", min_macro, suffix);
2126 : : }
2127 : : else
2128 : : {
2129 : 418727 : buf = (char *) alloca (strlen (min_macro) + 3
2130 : : + strlen (max_macro) + 6);
2131 : 418727 : sprintf (buf, "%s=(-%s - 1)", min_macro, max_macro);
2132 : : }
2133 : 628110 : cpp_define (parse_in, buf);
2134 : : }
2135 : 7956060 : }
2136 : :
2137 : : /* Define WIDTH_MACRO for the width of TYPE. If TYPE2 is not NULL,
2138 : : both types must have the same width. */
2139 : :
2140 : : static void
2141 : 4187400 : builtin_define_type_width (const char *width_macro, tree type, tree type2)
2142 : : {
2143 : 4187400 : if (type2 != NULL_TREE)
2144 : 3140550 : gcc_assert (TYPE_PRECISION (type) == TYPE_PRECISION (type2));
2145 : 4187400 : builtin_define_with_int_value (width_macro, TYPE_PRECISION (type));
2146 : 4187400 : }
2147 : :
2148 : : #include "gt-c-family-c-cppbuiltin.h"
|