LCOV - code coverage report
Current view: top level - gcc/c-family - c-cppbuiltin.cc (source / functions) Coverage Total Hit
Test: gcc.info Lines: 89.1 % 1115 993
Test Date: 2026-09-19 16:22:48 Functions: 96.2 % 26 25
Legend: Lines:     hit not hit

            Line data    Source code
       1              : /* Define builtin-in macros for the C family front ends.
       2              :    Copyright (C) 2002-2026 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      2138510 : mode_has_fma (machine_mode mode)
      72              : {
      73      2138510 :   switch (mode)
      74              :     {
      75              : #ifdef HAVE_fmasf4
      76       427702 :     case E_SFmode:
      77       427702 :       return !!HAVE_fmasf4;
      78              : #endif
      79              : 
      80              : #ifdef HAVE_fmadf4
      81       641569 :     case E_DFmode:
      82       641569 :       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       850028 : builtin_define_type_sizeof (const char *name, tree type)
     110              : {
     111      1700056 :   builtin_define_with_int_value (name,
     112       850028 :                                  tree_to_uhwi (TYPE_SIZE_UNIT (type)));
     113       850028 : }
     114              : 
     115              : /* Define the float.h constants for TYPE using NAME_PREFIX, FP_SUFFIX,
     116              :    and FP_CAST. */
     117              : static void
     118      2138510 : 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      2138510 :   const double log10_2 = .30102999566398119521;
     133      2138510 :   double log10_b;
     134      2138510 :   const struct real_format *fmt;
     135      2138510 :   const struct real_format *widefmt;
     136              : 
     137      2138510 :   char name[64], buf[128];
     138      2138510 :   int dig, min_10_exp, max_10_exp;
     139      2138510 :   int decimal_dig;
     140      2138510 :   int type_decimal_dig;
     141              : 
     142      2138510 :   fmt = REAL_MODE_FORMAT (TYPE_MODE (type));
     143      2138510 :   gcc_assert (fmt->b != 10);
     144      2138510 :   widefmt = REAL_MODE_FORMAT (TYPE_MODE (long_double_type_node));
     145      2138510 :   gcc_assert (widefmt->b != 10);
     146     17108080 :   for (int i = 0; i < NUM_FLOATN_NX_TYPES; i++)
     147              :     {
     148     14969570 :       tree wtype = FLOATN_NX_TYPE_NODE (i);
     149     14969570 :       if (wtype != NULL_TREE)
     150              :         {
     151     12831060 :           const struct real_format *wfmt
     152     12831060 :             = REAL_MODE_FORMAT (TYPE_MODE (wtype));
     153     12831060 :           gcc_assert (wfmt->b != 10);
     154     12831060 :           if (wfmt->p > widefmt->p)
     155     14969570 :             widefmt = wfmt;
     156              :         }
     157              :     }
     158              : 
     159              :   /* The radix of the exponent representation.  */
     160      2138510 :   if (type == float_type_node)
     161       213851 :     builtin_define_with_int_value ("__FLT_RADIX__", fmt->b);
     162      2138510 :   log10_b = log10_2;
     163              : 
     164              :   /* The number of radix digits, p, in the floating-point significand.  */
     165      2138510 :   sprintf (name, "__%s_MANT_DIG__", name_prefix);
     166      2138510 :   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      2138510 :   dig = (fmt->p - 1) * log10_b;
     176      2138510 :   sprintf (name, "__%s_DIG__", name_prefix);
     177      2138510 :   builtin_define_with_int_value (name, dig);
     178              : 
     179              :   /* The minimum negative int x such that b**(x-1) is a normalized float.  */
     180      2138510 :   sprintf (name, "__%s_MIN_EXP__", name_prefix);
     181      2138510 :   sprintf (buf, "(%d)", fmt->emin);
     182      2138510 :   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      2138510 :   min_10_exp = (fmt->emin - 1) * log10_b;
     192      2138510 :   sprintf (name, "__%s_MIN_10_EXP__", name_prefix);
     193      2138510 :   sprintf (buf, "(%d)", min_10_exp);
     194      2138510 :   builtin_define_with_value (name, buf, 0);
     195              : 
     196              :   /* The maximum int x such that b**(x-1) is a representable float.  */
     197      2138510 :   sprintf (name, "__%s_MAX_EXP__", name_prefix);
     198      2138510 :   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      2138510 :   max_10_exp = fmt->emax * log10_b;
     227      2138510 :   sprintf (name, "__%s_MAX_10_EXP__", name_prefix);
     228      2138510 :   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      2138510 :   {
     240      2138510 :     double d_decimal_dig
     241      2138510 :       = 1 + (fmt->p < widefmt->p ? widefmt->p : fmt->p) * log10_b;
     242      2138510 :     decimal_dig = d_decimal_dig;
     243      2138510 :     if (decimal_dig < d_decimal_dig)
     244      2138510 :       decimal_dig++;
     245              :   }
     246              :   /* Similar, for this type rather than long double.  */
     247      2138510 :   {
     248      2138510 :     double type_d_decimal_dig = 1 + fmt->p * log10_b;
     249      2138510 :     type_decimal_dig = type_d_decimal_dig;
     250      2138510 :     if (type_decimal_dig < type_d_decimal_dig)
     251      2138510 :       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      2138510 :   if (type == long_double_type_node)
     256       213851 :     builtin_define_with_int_value ("__DECIMAL_DIG__", type_decimal_dig);
     257      2138510 :   sprintf (name, "__%s_DECIMAL_DIG__", name_prefix);
     258      2138510 :   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      2138510 :   get_max_float (fmt, buf, sizeof (buf), false);
     264              : 
     265      2138510 :   sprintf (name, "__%s_MAX__", name_prefix);
     266      2138510 :   builtin_define_with_hex_fp_value (name, type, decimal_dig, buf, fp_suffix, fp_cast);
     267              : 
     268      2138510 :   get_max_float (fmt, buf, sizeof (buf), true);
     269              : 
     270      2138510 :   sprintf (name, "__%s_NORM_MAX__", name_prefix);
     271      2138510 :   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      2138510 :   sprintf (name, "__%s_MIN__", name_prefix);
     276      2138510 :   sprintf (buf, "0x1p%d", fmt->emin - 1);
     277      2138510 :   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      2138510 :   sprintf (name, "__%s_EPSILON__", name_prefix);
     282      2138510 :   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      2138510 :       sprintf (buf, "0x1p%d", 1 - fmt->p);
     288      2138510 :   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      2138510 :   sprintf (name, "__%s_DENORM_MIN__", name_prefix);
     295      2138510 :   sprintf (buf, "0x1p%d", fmt->emin - (fmt->has_denorm ? fmt->p : 1));
     296      2138510 :   builtin_define_with_hex_fp_value (name, type, decimal_dig,
     297              :                                     buf, fp_suffix, fp_cast);
     298              : 
     299      2138510 :   sprintf (name, "__%s_HAS_DENORM__", name_prefix);
     300      2138510 :   builtin_define_with_value (name, fmt->has_denorm ? "1" : "0", 0);
     301              : 
     302              :   /* For C++ std::numeric_limits<T>::has_infinity.  */
     303      2138510 :   sprintf (name, "__%s_HAS_INFINITY__", name_prefix);
     304      2138510 :   builtin_define_with_int_value (name,
     305      8554040 :                                  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      2138510 :   sprintf (name, "__%s_HAS_QUIET_NAN__", name_prefix);
     312      8554040 :   builtin_define_with_int_value (name, MODE_HAS_NANS (TYPE_MODE (type)));
     313              : 
     314              :   /* Note whether we have fast FMA.  */
     315      2138510 :   if (mode_has_fma (TYPE_MODE (type)) && fma_suffix != NULL)
     316              :     {
     317        26655 :       sprintf (name, "__FP_FAST_FMA%s", fma_suffix);
     318        26655 :       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      2138510 :   sprintf (name, "__%s_IS_IEC_60559__", name_prefix);
     325      2138510 :   builtin_define_with_int_value (name, fmt->ieee_bits != 0);
     326      2138510 : }
     327              : 
     328              : /* Define __DECx__ constants for TYPE using NAME_PREFIX and SUFFIX. */
     329              : static void
     330       855404 : builtin_define_decimal_float_constants (const char *name_prefix,
     331              :                                         const char *suffix,
     332              :                                         tree type)
     333              : {
     334       855404 :   const struct real_format *fmt;
     335       855404 :   char name[64], buf[128], *p;
     336       855404 :   int digits;
     337              : 
     338       855404 :   fmt = REAL_MODE_FORMAT (TYPE_MODE (type));
     339              : 
     340              :   /* The number of radix digits, p, in the significand.  */
     341       855404 :   sprintf (name, "__%s_MANT_DIG__", name_prefix);
     342       855404 :   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       855404 :   sprintf (name, "__%s_MIN_EXP__", name_prefix);
     346       855404 :   sprintf (buf, "(%d)", fmt->emin);
     347       855404 :   builtin_define_with_value (name, buf, 0);
     348              : 
     349              :   /* The maximum int x such that b**(x-1) is a representable float.  */
     350       855404 :   sprintf (name, "__%s_MAX_EXP__", name_prefix);
     351       855404 :   builtin_define_with_int_value (name, fmt->emax);
     352              : 
     353              :   /* Compute the minimum representable value.  */
     354       855404 :   sprintf (name, "__%s_MIN__", name_prefix);
     355       855404 :   sprintf (buf, "1E%d%s", fmt->emin - 1, suffix);
     356       855404 :   builtin_define_with_value (name, buf, 0);
     357              : 
     358              :   /* Compute the maximum representable value.  */
     359       855404 :   sprintf (name, "__%s_MAX__", name_prefix);
     360       855404 :   get_max_float (fmt, buf, sizeof (buf) - strlen (suffix), false);
     361       855404 :   strcat (buf, suffix);
     362       855404 :   builtin_define_with_value (name, buf, 0);
     363              : 
     364              :   /* Compute epsilon (the difference between 1 and least value greater
     365              :      than 1 representable).  */
     366       855404 :   sprintf (name, "__%s_EPSILON__", name_prefix);
     367       855404 :   sprintf (buf, "1E-%d%s", fmt->p - 1, suffix);
     368       855404 :   builtin_define_with_value (name, buf, 0);
     369              : 
     370              :   /* Minimum subnormal positive decimal value.  */
     371       855404 :   sprintf (name, "__%s_SUBNORMAL_MIN__", name_prefix);
     372       855404 :   p = buf;
     373     19460441 :   for (digits = fmt->p; digits > 1; digits--)
     374              :     {
     375     18605037 :       *p++ = '0';
     376     18605037 :       if (digits == fmt->p)
     377       855404 :         *p++ = '.';
     378              :     }
     379       855404 :   *p = 0;
     380       855404 :   sprintf (&buf[fmt->p], "1E%d%s", fmt->emin - 1, suffix);
     381       855404 :   builtin_define_with_value (name, buf, 0);
     382       855404 : }
     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       213851 : builtin_define_stdint_macros (void)
     441              : {
     442       427702 :   builtin_define_type_max ("__INTMAX_MAX__", intmax_type_node);
     443       213851 :   builtin_define_constants ("__INTMAX_C", intmax_type_node);
     444       427702 :   builtin_define_type_max ("__UINTMAX_MAX__", uintmax_type_node);
     445       213851 :   builtin_define_constants ("__UINTMAX_C", uintmax_type_node);
     446       213851 :   builtin_define_type_width ("__INTMAX_WIDTH__", intmax_type_node,
     447              :                              uintmax_type_node);
     448       213851 :   if (sig_atomic_type_node)
     449              :     {
     450       213851 :       builtin_define_type_minmax ("__SIG_ATOMIC_MIN__", "__SIG_ATOMIC_MAX__",
     451              :                                   sig_atomic_type_node);
     452       213851 :       builtin_define_type_width ("__SIG_ATOMIC_WIDTH__", sig_atomic_type_node,
     453              :                                  NULL_TREE);
     454              :     }
     455       213851 :   if (int8_type_node)
     456       213851 :     builtin_define_type_max ("__INT8_MAX__", int8_type_node);
     457       213851 :   if (int16_type_node)
     458       213851 :     builtin_define_type_max ("__INT16_MAX__", int16_type_node);
     459       213851 :   if (int32_type_node)
     460       213851 :     builtin_define_type_max ("__INT32_MAX__", int32_type_node);
     461       213851 :   if (int64_type_node)
     462       213851 :     builtin_define_type_max ("__INT64_MAX__", int64_type_node);
     463       213851 :   if (uint8_type_node)
     464       213851 :     builtin_define_type_max ("__UINT8_MAX__", uint8_type_node);
     465       213851 :   if (c_uint16_type_node)
     466       213851 :     builtin_define_type_max ("__UINT16_MAX__", c_uint16_type_node);
     467       213851 :   if (c_uint32_type_node)
     468       213851 :     builtin_define_type_max ("__UINT32_MAX__", c_uint32_type_node);
     469       213851 :   if (c_uint64_type_node)
     470       213851 :     builtin_define_type_max ("__UINT64_MAX__", c_uint64_type_node);
     471       213851 :   if (int_least8_type_node)
     472              :     {
     473       427702 :       builtin_define_type_max ("__INT_LEAST8_MAX__", int_least8_type_node);
     474       213851 :       builtin_define_constants ("__INT8_C", int_least8_type_node);
     475       213851 :       builtin_define_type_width ("__INT_LEAST8_WIDTH__", int_least8_type_node,
     476              :                                  uint_least8_type_node);
     477              :     }
     478       213851 :   if (int_least16_type_node)
     479              :     {
     480       427702 :       builtin_define_type_max ("__INT_LEAST16_MAX__", int_least16_type_node);
     481       213851 :       builtin_define_constants ("__INT16_C", int_least16_type_node);
     482       213851 :       builtin_define_type_width ("__INT_LEAST16_WIDTH__",
     483              :                                  int_least16_type_node,
     484              :                                  uint_least16_type_node);
     485              :     }
     486       213851 :   if (int_least32_type_node)
     487              :     {
     488       427702 :       builtin_define_type_max ("__INT_LEAST32_MAX__", int_least32_type_node);
     489       213851 :       builtin_define_constants ("__INT32_C", int_least32_type_node);
     490       213851 :       builtin_define_type_width ("__INT_LEAST32_WIDTH__",
     491              :                                  int_least32_type_node,
     492              :                                  uint_least32_type_node);
     493              :     }
     494       213851 :   if (int_least64_type_node)
     495              :     {
     496       427702 :       builtin_define_type_max ("__INT_LEAST64_MAX__", int_least64_type_node);
     497       213851 :       builtin_define_constants ("__INT64_C", int_least64_type_node);
     498       213851 :       builtin_define_type_width ("__INT_LEAST64_WIDTH__",
     499              :                                  int_least64_type_node,
     500              :                                  uint_least64_type_node);
     501              :     }
     502       213851 :   if (uint_least8_type_node)
     503              :     {
     504       427702 :       builtin_define_type_max ("__UINT_LEAST8_MAX__", uint_least8_type_node);
     505       213851 :       builtin_define_constants ("__UINT8_C", uint_least8_type_node);
     506              :     }
     507       213851 :   if (uint_least16_type_node)
     508              :     {
     509       427702 :       builtin_define_type_max ("__UINT_LEAST16_MAX__", uint_least16_type_node);
     510       213851 :       builtin_define_constants ("__UINT16_C", uint_least16_type_node);
     511              :     }
     512       213851 :   if (uint_least32_type_node)
     513              :     {
     514       427702 :       builtin_define_type_max ("__UINT_LEAST32_MAX__", uint_least32_type_node);
     515       213851 :       builtin_define_constants ("__UINT32_C", uint_least32_type_node);
     516              :     }
     517       213851 :   if (uint_least64_type_node)
     518              :     {
     519       427702 :       builtin_define_type_max ("__UINT_LEAST64_MAX__", uint_least64_type_node);
     520       213851 :       builtin_define_constants ("__UINT64_C", uint_least64_type_node);
     521              :     }
     522       213851 :   if (int_fast8_type_node)
     523              :     {
     524       427702 :       builtin_define_type_max ("__INT_FAST8_MAX__", int_fast8_type_node);
     525       213851 :       builtin_define_type_width ("__INT_FAST8_WIDTH__", int_fast8_type_node,
     526              :                                  uint_fast8_type_node);
     527              :     }
     528       213851 :   if (int_fast16_type_node)
     529              :     {
     530       427702 :       builtin_define_type_max ("__INT_FAST16_MAX__", int_fast16_type_node);
     531       213851 :       builtin_define_type_width ("__INT_FAST16_WIDTH__", int_fast16_type_node,
     532              :                                  uint_fast16_type_node);
     533              :     }
     534       213851 :   if (int_fast32_type_node)
     535              :     {
     536       427702 :       builtin_define_type_max ("__INT_FAST32_MAX__", int_fast32_type_node);
     537       213851 :       builtin_define_type_width ("__INT_FAST32_WIDTH__", int_fast32_type_node,
     538              :                                  uint_fast32_type_node);
     539              :     }
     540       213851 :   if (int_fast64_type_node)
     541              :     {
     542       427702 :       builtin_define_type_max ("__INT_FAST64_MAX__", int_fast64_type_node);
     543       213851 :       builtin_define_type_width ("__INT_FAST64_WIDTH__", int_fast64_type_node,
     544              :                                  uint_fast64_type_node);
     545              :     }
     546       213851 :   if (uint_fast8_type_node)
     547       213851 :     builtin_define_type_max ("__UINT_FAST8_MAX__", uint_fast8_type_node);
     548       213851 :   if (uint_fast16_type_node)
     549       213851 :     builtin_define_type_max ("__UINT_FAST16_MAX__", uint_fast16_type_node);
     550       213851 :   if (uint_fast32_type_node)
     551       213851 :     builtin_define_type_max ("__UINT_FAST32_MAX__", uint_fast32_type_node);
     552       213851 :   if (uint_fast64_type_node)
     553       213851 :     builtin_define_type_max ("__UINT_FAST64_MAX__", uint_fast64_type_node);
     554       213851 :   if (intptr_type_node)
     555              :     {
     556       427702 :       builtin_define_type_max ("__INTPTR_MAX__", intptr_type_node);
     557       213851 :       builtin_define_type_width ("__INTPTR_WIDTH__", intptr_type_node,
     558              :                                  uintptr_type_node);
     559              :     }
     560       213851 :   if (uintptr_type_node)
     561       213851 :     builtin_define_type_max ("__UINTPTR_MAX__", uintptr_type_node);
     562       213851 : }
     563              : 
     564              : /* Adjust the optimization macros when a #pragma GCC optimization is done to
     565              :    reflect the current level.  */
     566              : void
     567          634 : c_cpp_builtins_optimize_pragma (cpp_reader *pfile, tree prev_tree,
     568              :                                 tree cur_tree)
     569              : {
     570          634 :   struct cl_optimization *prev = TREE_OPTIMIZATION (prev_tree);
     571          634 :   struct cl_optimization *cur  = TREE_OPTIMIZATION (cur_tree);
     572          634 :   bool prev_fast_math;
     573          634 :   bool cur_fast_math;
     574              : 
     575              :   /* -undef turns off target-specific built-ins.  */
     576          634 :   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          634 :   cpp_force_token_locations (parse_in, BUILTINS_LOCATION);
     582              : 
     583              :   /* Other target-independent built-ins determined by command-line
     584              :      options.  */
     585          634 :   if (!prev->x_optimize_size && cur->x_optimize_size)
     586            1 :     cpp_define_unused (pfile, "__OPTIMIZE_SIZE__");
     587          633 :   else if (prev->x_optimize_size && !cur->x_optimize_size)
     588            2 :     cpp_undef (pfile, "__OPTIMIZE_SIZE__");
     589              : 
     590          634 :   if (!prev->x_optimize && cur->x_optimize)
     591          122 :     cpp_define_unused (pfile, "__OPTIMIZE__");
     592          512 :   else if (prev->x_optimize && !cur->x_optimize)
     593           80 :     cpp_undef (pfile, "__OPTIMIZE__");
     594              : 
     595          634 :   prev_fast_math = fast_math_flags_struct_set_p (prev);
     596          634 :   cur_fast_math  = fast_math_flags_struct_set_p (cur);
     597          634 :   if (!prev_fast_math && cur_fast_math)
     598            6 :     cpp_define_unused (pfile, "__FAST_MATH__");
     599          628 :   else if (prev_fast_math && !cur_fast_math)
     600           13 :     cpp_undef (pfile, "__FAST_MATH__");
     601              : 
     602          634 :   if (!prev->x_flag_signaling_nans && cur->x_flag_signaling_nans)
     603            0 :     cpp_define_unused (pfile, "__SUPPORT_SNAN__");
     604          634 :   else if (prev->x_flag_signaling_nans && !cur->x_flag_signaling_nans)
     605            0 :     cpp_undef (pfile, "__SUPPORT_SNAN__");
     606              : 
     607          634 :   if (!prev->x_flag_errno_math && cur->x_flag_errno_math)
     608           14 :     cpp_undef (pfile, "__NO_MATH_ERRNO__");
     609          620 :   else if (prev->x_flag_errno_math && !cur->x_flag_errno_math)
     610            7 :     cpp_define_unused (pfile, "__NO_MATH_ERRNO__");
     611              : 
     612          634 :   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          626 :   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          634 :   if (!prev->x_flag_reciprocal_math && cur->x_flag_reciprocal_math)
     624            8 :     cpp_define_unused (pfile, "__RECIPROCAL_MATH__");
     625          626 :   else if (prev->x_flag_reciprocal_math && !cur->x_flag_reciprocal_math)
     626           15 :     cpp_undef (pfile, "__RECIPROCAL_MATH__");
     627              : 
     628          634 :   if (!prev->x_flag_signed_zeros && cur->x_flag_signed_zeros)
     629           15 :     cpp_undef (pfile, "__NO_SIGNED_ZEROS__");
     630          619 :   else if (prev->x_flag_signed_zeros && !cur->x_flag_signed_zeros)
     631            8 :     cpp_define_unused (pfile, "__NO_SIGNED_ZEROS__");
     632              : 
     633          634 :   if (!prev->x_flag_trapping_math && cur->x_flag_trapping_math)
     634           15 :     cpp_undef (pfile, "__NO_TRAPPING_MATH__");
     635          619 :   else if (prev->x_flag_trapping_math && !cur->x_flag_trapping_math)
     636            8 :     cpp_define_unused (pfile, "__NO_TRAPPING_MATH__");
     637              : 
     638          634 :   if (!prev->x_flag_associative_math && cur->x_flag_associative_math)
     639            8 :     cpp_define_unused (pfile, "__ASSOCIATIVE_MATH__");
     640          626 :   else if (prev->x_flag_associative_math && !cur->x_flag_associative_math)
     641           15 :     cpp_undef (pfile, "__ASSOCIATIVE_MATH__");
     642              : 
     643          634 :   if (!prev->x_flag_rounding_math && cur->x_flag_rounding_math)
     644            2 :     cpp_define_unused (pfile, "__ROUNDING_MATH__");
     645          632 :   else if (prev->x_flag_rounding_math && !cur->x_flag_rounding_math)
     646            2 :     cpp_undef (pfile, "__ROUNDING_MATH__");
     647              : 
     648          634 :   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       213851 : 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       213851 :   bool have_swap[SWAP_LIMIT];
     662       213851 :   unsigned int psize;
     663              : 
     664              :   /* Clear the map of sizes compare_and swap exists for.  */
     665       213851 :   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       213851 :   if (HAVE_sync_compare_and_swapqi || HAVE_atomic_compare_and_swapqi)
     677              :     {
     678       213851 :       cpp_define (pfile, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_1");
     679       213851 :       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       213851 :   if (HAVE_sync_compare_and_swaphi || HAVE_atomic_compare_and_swaphi)
     689              :     {
     690       213851 :       cpp_define (pfile, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_2");
     691       213851 :       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       213851 :   if (HAVE_sync_compare_and_swapsi || HAVE_atomic_compare_and_swapsi)
     701              :     {
     702       213851 :       cpp_define (pfile, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4");
     703       213851 :       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       213851 :   if (HAVE_sync_compare_and_swapdi || HAVE_atomic_compare_and_swapdi)
     713              :     {
     714       213851 :       cpp_define (pfile, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_8");
     715       213851 :       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       213851 :   if (HAVE_sync_compare_and_swapti || HAVE_atomic_compare_and_swapti)
     725              :     {
     726         1010 :       cpp_define (pfile, "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_16");
     727         1010 :       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       213851 :   builtin_define_with_int_value ("__GCC_ATOMIC_BOOL_LOCK_FREE",
     736       427702 :                         (have_swap[SWAP_INDEX (boolean_type_node)]? 2 : 1));
     737       213851 :   builtin_define_with_int_value ("__GCC_ATOMIC_CHAR_LOCK_FREE",
     738       427702 :                         (have_swap[SWAP_INDEX (signed_char_type_node)]? 2 : 1));
     739       213851 :   if (flag_char8_t)
     740       175084 :     builtin_define_with_int_value ("__GCC_ATOMIC_CHAR8_T_LOCK_FREE",
     741       350168 :                         (have_swap[SWAP_INDEX (char8_type_node)]? 2 : 1));
     742       213851 :   builtin_define_with_int_value ("__GCC_ATOMIC_CHAR16_T_LOCK_FREE",
     743       427702 :                         (have_swap[SWAP_INDEX (char16_type_node)]? 2 : 1));
     744       213851 :   builtin_define_with_int_value ("__GCC_ATOMIC_CHAR32_T_LOCK_FREE",
     745       427702 :                         (have_swap[SWAP_INDEX (char32_type_node)]? 2 : 1));
     746       213851 :   builtin_define_with_int_value ("__GCC_ATOMIC_WCHAR_T_LOCK_FREE",
     747       427702 :                         (have_swap[SWAP_INDEX (wchar_type_node)]? 2 : 1));
     748       213851 :   builtin_define_with_int_value ("__GCC_ATOMIC_SHORT_LOCK_FREE",
     749       427702 :                       (have_swap[SWAP_INDEX (short_integer_type_node)]? 2 : 1));
     750       213851 :   builtin_define_with_int_value ("__GCC_ATOMIC_INT_LOCK_FREE",
     751       427702 :                         (have_swap[SWAP_INDEX (integer_type_node)]? 2 : 1));
     752       213851 :   builtin_define_with_int_value ("__GCC_ATOMIC_LONG_LOCK_FREE",
     753       427702 :                       (have_swap[SWAP_INDEX (long_integer_type_node)]? 2 : 1));
     754       213851 :   builtin_define_with_int_value ("__GCC_ATOMIC_LLONG_LOCK_FREE",
     755       427702 :                 (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       213851 :   builtin_define_with_int_value ("__GCC_ATOMIC_TEST_AND_SET_TRUEVAL",
     760       213851 :                                  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       213851 :   gcc_assert (!param_destruct_interfere_size
     765              :               == !param_construct_interfere_size);
     766       213851 :   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       213851 :       builtin_define_with_int_value ("__GCC_DESTRUCTIVE_SIZE",
     771              :                                      param_destruct_interfere_size);
     772       213851 :       builtin_define_with_int_value ("__GCC_CONSTRUCTIVE_SIZE",
     773       213851 :                                      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       213851 :   psize = POINTER_SIZE_UNITS;
     779       213851 :   if (psize >= SWAP_LIMIT)
     780              :     psize = 0;
     781       213851 :   builtin_define_with_int_value ("__GCC_ATOMIC_POINTER_LOCK_FREE",
     782       213851 :                         (have_swap[psize]? 2 : 1));
     783       213851 : }
     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        12624 : c_cpp_flt_eval_method_iec_559 (void)
     795              : {
     796           12 :   enum excess_precision_type front_end_ept
     797        12624 :     = (flag_excess_precision == EXCESS_PRECISION_STANDARD
     798        12624 :        ? EXCESS_PRECISION_TYPE_STANDARD
     799              :        : (flag_excess_precision == EXCESS_PRECISION_FLOAT16
     800           12 :           ? EXCESS_PRECISION_TYPE_FLOAT16
     801              :           : EXCESS_PRECISION_TYPE_FAST));
     802              : 
     803        12624 :   enum flt_eval_method back_end
     804        12624 :     = targetm.c.excess_precision (EXCESS_PRECISION_TYPE_IMPLICIT);
     805              : 
     806        12624 :   enum flt_eval_method front_end
     807        12624 :     = targetm.c.excess_precision (front_end_ept);
     808              : 
     809        12624 :   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       427702 : cpp_iec_559_value (void)
     815              : {
     816              :   /* The default is support for IEEE 754-2008.  */
     817       427702 :   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       427702 :   const struct real_format *ffmt
     823       427702 :     = REAL_MODE_FORMAT (TYPE_MODE (float_type_node));
     824       427702 :   const struct real_format *dfmt
     825       427702 :     = REAL_MODE_FORMAT (TYPE_MODE (double_type_node));
     826       427702 :   if (!ffmt->qnan_msb_set || !dfmt->qnan_msb_set)
     827            0 :     ret = 1;
     828       427702 :   if (ffmt->b != 2
     829       427702 :       || ffmt->p != 24
     830       427702 :       || ffmt->pnan != 24
     831       427702 :       || ffmt->emin != -125
     832       427702 :       || ffmt->emax != 128
     833       427702 :       || ffmt->signbit_rw != 31
     834       427702 :       || ffmt->round_towards_zero
     835       427702 :       || !ffmt->has_sign_dependent_rounding
     836       427702 :       || !ffmt->has_nans
     837       427702 :       || !ffmt->has_inf
     838       427702 :       || !ffmt->has_denorm
     839       427702 :       || !ffmt->has_signed_zero
     840       427702 :       || dfmt->b != 2
     841       427702 :       || dfmt->p != 53
     842       427702 :       || dfmt->pnan != 53
     843       427702 :       || dfmt->emin != -1021
     844       427702 :       || dfmt->emax != 1024
     845       427702 :       || dfmt->signbit_rw != 63
     846       427702 :       || dfmt->round_towards_zero
     847       427702 :       || !dfmt->has_sign_dependent_rounding
     848       427702 :       || !dfmt->has_nans
     849       427702 :       || !dfmt->has_inf
     850       427702 :       || !dfmt->has_denorm
     851       427702 :       || !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       427702 :   if (flag_iso
     861       120642 :       && !c_dialect_cxx ()
     862       440326 :       && !c_cpp_flt_eval_method_iec_559 ())
     863              :     ret = 0;
     864              : 
     865       427702 :   if (flag_iso
     866       120642 :       && !c_dialect_cxx ()
     867        12624 :       && flag_fp_contract_mode == FP_CONTRACT_FAST)
     868       427702 :     ret = 0;
     869              : 
     870              :   /* Various options are contrary to IEEE 754 semantics.  */
     871       427702 :   if (flag_unsafe_math_optimizations
     872       424512 :       || flag_associative_math
     873       424496 :       || flag_reciprocal_math
     874       424486 :       || flag_finite_math_only
     875       424370 :       || !flag_signed_zeros
     876       424334 :       || flag_single_precision_constant)
     877         3374 :     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       427702 :   if (!targetm.float_exceptions_rounding_supported_p ())
     882          400 :     ret = 0;
     883              : 
     884       427702 :   return ret;
     885              : }
     886              : 
     887              : /* Return the value for __GCC_IEC_559_COMPLEX.  */
     888              : static int
     889       213851 : 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       213851 :   if (flag_complex_method != 2)
     897         4311 :     ret = 0;
     898              : 
     899       213851 :   return ret;
     900              : }
     901              : 
     902              : /* Hook that registers front end and target-specific built-ins.  */
     903              : void
     904       213852 : c_cpp_builtins (cpp_reader *pfile)
     905              : {
     906       213852 :   int i;
     907              : 
     908              :   /* -undef turns off target-specific built-ins.  */
     909       213852 :   if (flag_undef)
     910            1 :     return;
     911              : 
     912       213851 :   define_language_independent_builtin_macros (pfile);
     913              : 
     914              :   /* encoding definitions used by users and libraries  */
     915       213851 :   builtin_define_with_value ("__GNUC_EXECUTION_CHARSET_NAME",
     916              :                              cpp_get_narrow_charset_name (pfile), 1);
     917       213851 :   builtin_define_with_value ("__GNUC_WIDE_EXECUTION_CHARSET_NAME",
     918              :                              cpp_get_wide_charset_name (pfile), 1);
     919              : 
     920       213851 :   if (c_dialect_cxx ())
     921              :     {
     922       101258 :       int major;
     923       101258 :       parse_basever (&major, NULL, NULL);
     924       101258 :       cpp_define_formatted (pfile, "__GNUG__=%d", major);
     925              :     }
     926              : 
     927              :   /* For stddef.h.  They require macros defined in c-common.cc.  */
     928       213851 :   c_stddef_cpp_builtins ();
     929              : 
     930              :   /* Variant of cpp_define which arranges for diagnostics on user #define
     931              :      or #undef of the macros.  */
     932      5731552 :   auto cpp_define_warn = [] (cpp_reader *pfile, const char *def)
     933              :     {
     934      5517701 :       const char *end = strchr (def, '=');
     935      5517701 :       cpp_define (pfile, def);
     936      5517701 :       cpp_warn (pfile, def, end ? end - def : strlen (def));
     937      5517701 :     };
     938              : 
     939       213851 :   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      6385047 :       auto cpp_define = [=] (cpp_reader *pfile, const char *def)
     944              :         {
     945      5746803 :           if ((cxx_dialect >= cxx20 && startswith (def, "__cpp_"))
     946      6737893 :               || startswith (def, "__STDCPP_"))
     947      5379681 :             cpp_define_warn (pfile, def);
     948              :           else
     949       904108 :             ::cpp_define (pfile, def);
     950      6283789 :         };
     951              : 
     952       101258 :       if (flag_weak && SUPPORTS_ONE_ONLY)
     953       101228 :         cpp_define (pfile, "__GXX_WEAK__=1");
     954              :       else
     955           30 :         cpp_define (pfile, "__GXX_WEAK__=0");
     956              : 
     957       101258 :       if (warn_deprecated)
     958       101122 :         cpp_define (pfile, "__DEPRECATED");
     959              : 
     960       101258 :       if (flag_rtti)
     961              :         {
     962       100565 :           cpp_define (pfile, "__GXX_RTTI");
     963       100565 :           cpp_define (pfile, "__cpp_rtti=199711L");
     964              :         }
     965              : 
     966       101258 :       if (cxx_dialect >= cxx11)
     967              :         {
     968        86982 :           cpp_define (pfile, "__GXX_EXPERIMENTAL_CXX0X__");
     969        86982 :           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       101258 :       if (!pedantic || cxx_dialect > cxx11)
     975        90558 :         cpp_define (pfile, "__cpp_binary_literals=201304L");
     976              : 
     977              :       /* Similarly for hexadecimal floating point literals and C++17.  */
     978       101258 :       if (!pedantic || cpp_get_options (parse_in)->extended_numbers)
     979        89927 :         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       101258 :       if (c_dialect_cxx ()
     986       101258 :           && (pedantic ? warn_vla == 0 : warn_vla <= 0))
     987        54200 :         cpp_define (pfile, "__cpp_runtime_arrays=198712L");
     988              : 
     989       101258 :       if (cxx_dialect >= cxx11)
     990              :         {
     991              :           /* Set feature test macros for C++11.  */
     992        86982 :           if (cxx_dialect <= cxx14)
     993         7076 :             cpp_define (pfile, "__cpp_unicode_characters=200704L");
     994        86982 :           cpp_define (pfile, "__cpp_raw_strings=200710L");
     995        86982 :           cpp_define (pfile, "__cpp_unicode_literals=200710L");
     996        86982 :           cpp_define (pfile, "__cpp_user_defined_literals=200809L");
     997        86982 :           cpp_define (pfile, "__cpp_lambdas=200907L");
     998        86982 :           if (cxx_dialect == cxx11)
     999         5748 :             cpp_define (pfile, "__cpp_constexpr=200704L");
    1000        86982 :           if (cxx_dialect <= cxx14)
    1001         7076 :             cpp_define (pfile, "__cpp_range_based_for=200907L");
    1002        86982 :           if (cxx_dialect <= cxx14)
    1003         7076 :             cpp_define (pfile, "__cpp_static_assert=200410L");
    1004        86982 :           cpp_define (pfile, "__cpp_decltype=200707L");
    1005        86982 :           cpp_define (pfile, "__cpp_attributes=200809L");
    1006        86982 :           cpp_define (pfile, "__cpp_rvalue_reference=200610L");
    1007        86982 :           cpp_define (pfile, "__cpp_rvalue_references=200610L");
    1008        86982 :           cpp_define (pfile, "__cpp_variadic_templates=200704L");
    1009        86982 :           cpp_define (pfile, "__cpp_initializer_lists=200806L");
    1010        86982 :           cpp_define (pfile, "__cpp_delegating_constructors=200604L");
    1011        86982 :           cpp_define (pfile, "__cpp_nsdmi=200809L");
    1012        86982 :           if (!flag_new_inheriting_ctors)
    1013          200 :             cpp_define (pfile, "__cpp_inheriting_constructors=200802L");
    1014              :           else
    1015        86782 :             cpp_define (pfile, "__cpp_inheriting_constructors=201511L");
    1016        86982 :           cpp_define (pfile, "__cpp_ref_qualifiers=200710L");
    1017        86982 :           cpp_define (pfile, "__cpp_alias_templates=200704L");
    1018              :         }
    1019       101258 :       if (cxx_dialect > cxx11)
    1020              :         {
    1021              :           /* Set feature test macros for C++14.  */
    1022        81234 :           cpp_define (pfile, "__cpp_return_type_deduction=201304L");
    1023        81234 :           if (cxx_dialect <= cxx17)
    1024              :             {
    1025         5527 :               cpp_define (pfile, "__cpp_init_captures=201304L");
    1026         5527 :               cpp_define (pfile, "__cpp_generic_lambdas=201304L");
    1027              :             }
    1028        81234 :           if (cxx_dialect <= cxx14)
    1029         1328 :             cpp_define (pfile, "__cpp_constexpr=201304L");
    1030        81234 :           cpp_define (pfile, "__cpp_decltype_auto=201304L");
    1031        81234 :           cpp_define (pfile, "__cpp_aggregate_nsdmi=201304L");
    1032        81234 :           cpp_define (pfile, "__cpp_variable_templates=201304L");
    1033        81234 :           cpp_define (pfile, "__cpp_digit_separators=201309L");
    1034              :         }
    1035       101258 :       if (cxx_dialect > cxx14)
    1036              :         {
    1037              :           /* Set feature test macros for C++17.  */
    1038        79906 :           cpp_define (pfile, "__cpp_unicode_characters=201411L");
    1039        79906 :           if (cxx_dialect <= cxx23)
    1040        54498 :             cpp_define (pfile, "__cpp_static_assert=201411L");
    1041        79906 :           cpp_define (pfile, "__cpp_namespace_attributes=201411L");
    1042        79906 :           cpp_define (pfile, "__cpp_enumerator_attributes=201411L");
    1043        79906 :           cpp_define (pfile, "__cpp_nested_namespace_definitions=201411L");
    1044        79906 :           cpp_define (pfile, "__cpp_fold_expressions=201603L");
    1045        79906 :           if (cxx_dialect <= cxx17)
    1046         4199 :             cpp_define (pfile, "__cpp_nontype_template_args=201411L");
    1047        79906 :           if (!flag_range_for_ext_temps)
    1048        52296 :             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        27610 :             cpp_define (pfile, "__cpp_range_based_for=202211L");
    1052        79906 :           if (cxx_dialect <= cxx17)
    1053         4199 :             cpp_define (pfile, "__cpp_constexpr=201603L");
    1054        79906 :           cpp_define (pfile, "__cpp_if_constexpr=201606L");
    1055        79906 :           cpp_define (pfile, "__cpp_capture_star_this=201603L");
    1056        79906 :           cpp_define (pfile, "__cpp_inline_variables=201606L");
    1057        79906 :           cpp_define (pfile, "__cpp_aggregate_bases=201603L");
    1058        79906 :           if (cxx_dialect <= cxx17)
    1059         4199 :             cpp_define (pfile, "__cpp_deduction_guides=201703L");
    1060        79906 :           cpp_define (pfile, "__cpp_noexcept_function_type=201510L");
    1061              :           /* Old macro, superseded by
    1062              :              __cpp_nontype_template_parameter_auto.  */
    1063        79906 :           cpp_define (pfile, "__cpp_template_auto=201606L");
    1064        79906 :           if (cxx_dialect <= cxx23)
    1065        54498 :             cpp_define (pfile, "__cpp_structured_bindings=201606L");
    1066        79906 :           cpp_define (pfile, "__cpp_variadic_using=201611L");
    1067        79906 :           cpp_define (pfile, "__cpp_guaranteed_copy_elision=201606L");
    1068        79906 :           cpp_define (pfile, "__cpp_nontype_template_parameter_auto=201606L");
    1069              :         }
    1070       101258 :       if (cxx_dialect > cxx17)
    1071              :         {
    1072              :           /* Set feature test macros for C++20.  */
    1073        75707 :           cpp_define (pfile, "__cpp_init_captures=201803L");
    1074        75707 :           cpp_define (pfile, "__cpp_generic_lambdas=201707L");
    1075        75707 :           if (cxx_dialect <= cxx26)
    1076        51700 :             cpp_define (pfile, "__cpp_designated_initializers=201707L");
    1077        75707 :           if (cxx_dialect <= cxx20)
    1078        48103 :             cpp_define (pfile, "__cpp_constexpr=202002L");
    1079        75707 :           cpp_define (pfile, "__cpp_constexpr_in_decltype=201711L");
    1080        75707 :           cpp_define (pfile, "__cpp_conditional_explicit=201806L");
    1081        75707 :           cpp_define (pfile, "__cpp_consteval=202211L");
    1082        75707 :           cpp_define (pfile, "__cpp_constinit=201907L");
    1083        75707 :           if (cxx_dialect <= cxx20)
    1084        48103 :             cpp_define (pfile, "__cpp_deduction_guides=201907L");
    1085        75707 :           cpp_define (pfile, "__cpp_nontype_template_args=201911L");
    1086        75707 :           cpp_define (pfile, "__cpp_nontype_template_parameter_class=201806L");
    1087        75707 :           cpp_define (pfile, "__cpp_impl_destroying_delete=201806L");
    1088        75707 :           cpp_define (pfile, "__cpp_constexpr_dynamic_alloc=201907L");
    1089        75707 :           cpp_define (pfile, "__cpp_impl_three_way_comparison=201907L");
    1090        75707 :           cpp_define (pfile, "__cpp_aggregate_paren_init=201902L");
    1091        75707 :           cpp_define (pfile, "__cpp_using_enum=201907L");
    1092              :         }
    1093       101258 :       if (cxx_dialect > cxx20)
    1094              :         {
    1095              :           /* Set feature test macros for C++23.  */
    1096        27604 :           cpp_define (pfile, "__cpp_size_t_suffix=202011L");
    1097        27604 :           cpp_define (pfile, "__cpp_if_consteval=202106L");
    1098        27604 :           cpp_define (pfile, "__cpp_auto_cast=202110L");
    1099        27604 :           if (cxx_dialect <= cxx23)
    1100         2196 :             cpp_define (pfile, "__cpp_constexpr=202211L");
    1101        27604 :           cpp_define (pfile, "__cpp_deduction_guides=202207L");
    1102        27604 :           cpp_define (pfile, "__cpp_multidimensional_subscript=202211L");
    1103        27604 :           cpp_define (pfile, "__cpp_named_character_escapes=202606L");
    1104        27604 :           cpp_define (pfile, "__cpp_static_call_operator=202207L");
    1105        27604 :           cpp_define (pfile, "__cpp_implicit_move=202207L");
    1106        27604 :           cpp_define (pfile, "__cpp_explicit_this_parameter=202110L");
    1107              :         }
    1108       101258 :       if (cxx_dialect > cxx23)
    1109              :         {
    1110              :           /* Set feature test macros for C++26.  */
    1111        25408 :           cpp_define (pfile, "__cpp_constexpr=202406L");
    1112        25408 :           cpp_define (pfile, "__cpp_constexpr_exceptions=202411L");
    1113        25408 :           cpp_define (pfile, "__cpp_static_assert=202306L");
    1114        25408 :           cpp_define (pfile, "__cpp_placeholder_variables=202306L");
    1115        25408 :           cpp_define (pfile, "__cpp_structured_bindings=202411L");
    1116        25408 :           cpp_define (pfile, "__cpp_deleted_function=202403L");
    1117        25408 :           cpp_define (pfile, "__cpp_variadic_friend=202403L");
    1118        25408 :           cpp_define (pfile, "__cpp_pack_indexing=202311L");
    1119        25408 :           if (cxx_dialect <= cxx26)
    1120         1401 :             cpp_define (pfile, "__cpp_pp_embed=202502L");
    1121        25408 :           cpp_define (pfile, "__cpp_constexpr_virtual_inheritance=202506L");
    1122        25408 :           cpp_define (pfile, "__cpp_expansion_statements=202506L");
    1123        25408 :           if (flag_reflection)
    1124         1332 :             cpp_define (pfile, "__cpp_impl_reflection=202603L");
    1125              :           else
    1126        24076 :             cpp_warn (pfile, "__cpp_impl_reflection");
    1127        25408 :           cpp_define (pfile, "__cpp_trivial_union=202603L");
    1128              :         }
    1129       101258 :       if (cxx_dialect > cxx26)
    1130              :         {
    1131              :           /* Set feature test macros for C++29.  */
    1132        24007 :           cpp_define (pfile, "__cpp_pp_embed=202606L");
    1133        24007 :           cpp_define (pfile, "__cpp_designated_initializers=202606L");
    1134              :         }
    1135       101258 :       if (flag_concepts && cxx_dialect > cxx14)
    1136              :         {
    1137        75826 :           if (cxx_dialect > cxx26)
    1138        24007 :             cpp_define (pfile, "__cpp_concepts=202606L");
    1139              :           else
    1140        51819 :             cpp_define (pfile, "__cpp_concepts=202002L");
    1141              :         }
    1142        25432 :       else if (cxx_dialect >= cxx20)
    1143            0 :         cpp_warn (pfile, "__cpp_concepts");
    1144       101258 :       if (flag_contracts)
    1145        25454 :         cpp_define (pfile, "__cpp_contracts=202502L");
    1146        75804 :       else if (cxx_dialect >= cxx26)
    1147            0 :         cpp_warn (pfile, "__cpp_contracts");
    1148       101258 :       if (flag_modules)
    1149              :         /* The std-defined value is 201907L, but I don't think we can
    1150              :            claim victory yet.  201810 is the p1103 date. */
    1151         4943 :         cpp_define (pfile, "__cpp_modules=201810L");
    1152        96315 :       else if (cxx_dialect >= cxx20)
    1153        72301 :         cpp_warn (pfile, "__cpp_modules");
    1154       101258 :       if (flag_coroutines)
    1155        76678 :         cpp_define (pfile, "__cpp_impl_coroutine=201902L"); /* n4861, DIS */
    1156        24580 :       else if (cxx_dialect >= cxx20)
    1157            0 :         cpp_warn (pfile, "__cpp_impl_coroutine");
    1158       101258 :       if (flag_tm)
    1159              :         /* Use a value smaller than the 201505 specified in
    1160              :            the TS, since we don't yet support atomic_cancel.  */
    1161          323 :         cpp_define (pfile, "__cpp_transactional_memory=201500L");
    1162       101258 :       if (flag_sized_deallocation)
    1163        81232 :         cpp_define (pfile, "__cpp_sized_deallocation=201309L");
    1164        20026 :       else if (cxx_dialect >= cxx20)
    1165            2 :         cpp_warn (pfile, "__cpp_sized_deallocation");
    1166       101258 :       if (aligned_new_threshold)
    1167              :         {
    1168        79909 :           cpp_define (pfile, "__cpp_aligned_new=201606L");
    1169        79909 :           cpp_define_formatted (pfile, "__STDCPP_DEFAULT_NEW_ALIGNMENT__=%d",
    1170              :                                 aligned_new_threshold);
    1171              :         }
    1172        21349 :       else if (cxx_dialect >= cxx20)
    1173            0 :         cpp_warn (pfile, "__cpp_aligned_new");
    1174       101258 :       if (cxx_dialect >= cxx17)
    1175        79906 :         cpp_warn (pfile, "__STDCPP_DEFAULT_NEW_ALIGNMENT__");
    1176       101258 :       if (flag_new_ttp)
    1177        79894 :         cpp_define (pfile, "__cpp_template_template_args=201611L");
    1178        21364 :       else if (cxx_dialect >= cxx20)
    1179           19 :         cpp_warn (pfile, "__cpp_template_template_args");
    1180       101258 :       if (flag_threadsafe_statics)
    1181       101252 :         cpp_define (pfile, "__cpp_threadsafe_static_init=200806L");
    1182            6 :       else if (cxx_dialect >= cxx20)
    1183            4 :         cpp_warn (pfile, "__cpp_threadsafe_static_init");
    1184       101258 :       if (flag_char8_t)
    1185        75725 :         cpp_define (pfile, "__cpp_char8_t=202207L");
    1186        25533 :       else if (cxx_dialect >= cxx20)
    1187           15 :         cpp_warn (pfile, "__cpp_char8_t");
    1188              : #ifndef THREAD_MODEL_SPEC
    1189              :       /* Targets that define THREAD_MODEL_SPEC need to define
    1190              :          __STDCPP_THREADS__ in their config/XXX/XXX-c.c themselves.  */
    1191       101258 :       if (cxx_dialect >= cxx11 && strcmp (thread_model, "single") != 0)
    1192        86982 :         cpp_define (pfile, "__STDCPP_THREADS__=1");
    1193              :       else
    1194              : #endif
    1195              :         if (cxx_dialect >= cxx11)
    1196              :           cpp_warn (pfile, "__STDCPP_THREADS__");
    1197       101258 :       if (flag_implicit_constexpr)
    1198            7 :         cpp_define (pfile, "__cpp_implicit_constexpr=20211111L");
    1199              :     }
    1200              :   /* Note that we define this for C as well, so that we know if
    1201              :      __attribute__((cleanup)) will interface with EH.  */
    1202       213851 :   if (flag_exceptions)
    1203              :     {
    1204       100524 :       cpp_define (pfile, "__EXCEPTIONS");
    1205       100524 :       if (c_dialect_cxx ())
    1206       100001 :         cpp_define (pfile, "__cpp_exceptions=199711L");
    1207              :     }
    1208              : 
    1209              :   /* Represents the C++ ABI version, always defined so it can be used while
    1210              :      preprocessing C and assembler.  */
    1211       213851 :   if (flag_abi_version == 0)
    1212              :     /* We should have set this to something real in c_common_post_options.  */
    1213            0 :     gcc_unreachable ();
    1214       213851 :   else if (flag_abi_version == 1)
    1215              :     /* Due to a historical accident, this version had the value
    1216              :        "102".  */
    1217            0 :     builtin_define_with_int_value ("__GXX_ABI_VERSION", 102);
    1218              :   else
    1219              :     /* Newer versions have values 1002, 1003, ....  */
    1220       213851 :     builtin_define_with_int_value ("__GXX_ABI_VERSION",
    1221       213851 :                                    1000 + flag_abi_version);
    1222              : 
    1223              :   /* libgcc needs to know this.  */
    1224       213851 :   if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ)
    1225            0 :     cpp_define (pfile, "__USING_SJLJ_EXCEPTIONS__");
    1226              : 
    1227              :   /* limits.h and stdint.h need to know these.  */
    1228       427702 :   builtin_define_type_max ("__SCHAR_MAX__", signed_char_type_node);
    1229       427702 :   builtin_define_type_max ("__SHRT_MAX__", short_integer_type_node);
    1230       427702 :   builtin_define_type_max ("__INT_MAX__", integer_type_node);
    1231       427702 :   builtin_define_type_max ("__LONG_MAX__", long_integer_type_node);
    1232       427702 :   builtin_define_type_max ("__LONG_LONG_MAX__", long_long_integer_type_node);
    1233       213851 :   builtin_define_type_minmax ("__WCHAR_MIN__", "__WCHAR_MAX__",
    1234              :                               underlying_wchar_type_node);
    1235       213851 :   builtin_define_type_minmax ("__WINT_MIN__", "__WINT_MAX__", wint_type_node);
    1236       427702 :   builtin_define_type_max ("__PTRDIFF_MAX__", ptrdiff_type_node);
    1237       427702 :   builtin_define_type_max ("__SIZE_MAX__", size_type_node);
    1238              : 
    1239              :   /* These are needed for TS 18661-1.  */
    1240       213851 :   builtin_define_type_width ("__SCHAR_WIDTH__", signed_char_type_node,
    1241              :                              unsigned_char_type_node);
    1242       213851 :   builtin_define_type_width ("__SHRT_WIDTH__", short_integer_type_node,
    1243              :                              short_unsigned_type_node);
    1244       213851 :   builtin_define_type_width ("__INT_WIDTH__", integer_type_node,
    1245              :                              unsigned_type_node);
    1246       213851 :   builtin_define_type_width ("__LONG_WIDTH__", long_integer_type_node,
    1247              :                              long_unsigned_type_node);
    1248       213851 :   builtin_define_type_width ("__LONG_LONG_WIDTH__",
    1249              :                              long_long_integer_type_node,
    1250              :                              long_long_unsigned_type_node);
    1251       213851 :   builtin_define_type_width ("__WCHAR_WIDTH__", underlying_wchar_type_node,
    1252              :                              NULL_TREE);
    1253       213851 :   builtin_define_type_width ("__WINT_WIDTH__", wint_type_node, NULL_TREE);
    1254       213851 :   builtin_define_type_width ("__PTRDIFF_WIDTH__", ptrdiff_type_node, NULL_TREE);
    1255       213851 :   builtin_define_type_width ("__SIZE_WIDTH__", size_type_node, NULL_TREE);
    1256              : 
    1257       213851 :   if (!c_dialect_cxx ())
    1258              :     {
    1259       112593 :       struct bitint_info info;
    1260              :       /* For now, restrict __BITINT_MAXWIDTH__ to what can be represented in
    1261              :          wide_int and widest_int.  */
    1262       112593 :       if (targetm.c.bitint_type_info (WIDE_INT_MAX_PRECISION - 1, &info))
    1263              :         {
    1264       112593 :           cpp_define_formatted (pfile, "__BITINT_MAXWIDTH__=%d",
    1265              :                                 (int) WIDE_INT_MAX_PRECISION - 1);
    1266       112593 :           if (flag_building_libgcc)
    1267              :             {
    1268          984 :               scalar_int_mode limb_mode
    1269          984 :                 = as_a <scalar_int_mode> (info.limb_mode);
    1270          984 :               cpp_define_formatted (pfile, "__LIBGCC_BITINT_LIMB_WIDTH__=%d",
    1271          984 :                                     (int) GET_MODE_PRECISION (limb_mode));
    1272          984 :               cpp_define_formatted (pfile, "__LIBGCC_BITINT_ORDER__=%s",
    1273          984 :                                     info.big_endian
    1274              :                                     ? "__ORDER_BIG_ENDIAN__"
    1275              :                                     : "__ORDER_LITTLE_ENDIAN__");
    1276              :             }
    1277              :         }
    1278              :     }
    1279              : 
    1280       213851 :   if (c_dialect_cxx ())
    1281       202516 :     for (i = 0; i < NUM_INT_N_ENTS; i ++)
    1282       101258 :       if (int_n_enabled_p[i])
    1283              :         {
    1284       100455 :           char buf[35+20+20];
    1285              : 
    1286              :           /* These are used to configure the C++ library.  */
    1287              : 
    1288       100455 :           if (!flag_iso || int_n_data[i].bitsize == POINTER_SIZE)
    1289              :             {
    1290        46496 :               sprintf (buf, "__GLIBCXX_TYPE_INT_N_%d=__int%d", i, int_n_data[i].bitsize);
    1291        46496 :               cpp_define (parse_in, buf);
    1292              : 
    1293        46496 :               sprintf (buf, "__GLIBCXX_BITSIZE_INT_N_%d=%d", i, int_n_data[i].bitsize);
    1294        46496 :               cpp_define (parse_in, buf);
    1295              :             }
    1296              :         }
    1297              : 
    1298              :   /* stdint.h and the testsuite need to know these.  */
    1299       213851 :   builtin_define_stdint_macros ();
    1300              : 
    1301              :   /* Provide information for library headers to determine whether to
    1302              :      define macros such as __STDC_IEC_559__ and
    1303              :      __STDC_IEC_559_COMPLEX__.  */
    1304       213851 :   builtin_define_with_int_value ("__GCC_IEC_559", cpp_iec_559_value ());
    1305       213851 :   builtin_define_with_int_value ("__GCC_IEC_559_COMPLEX",
    1306       213851 :                                  cpp_iec_559_complex_value ());
    1307              : 
    1308              :   /* float.h needs these to correctly set FLT_EVAL_METHOD
    1309              : 
    1310              :      We define two values:
    1311              : 
    1312              :      __FLT_EVAL_METHOD__
    1313              :        Which, depending on the value given for
    1314              :        -fpermitted-flt-eval-methods, may be limited to only those values
    1315              :        for FLT_EVAL_METHOD defined in C99/C11.
    1316              : 
    1317              :      __FLT_EVAL_METHOD_TS_18661_3__
    1318              :        Which always permits the values for FLT_EVAL_METHOD defined in
    1319              :        ISO/IEC TS 18661-3.  */
    1320       213851 :   builtin_define_with_int_value ("__FLT_EVAL_METHOD__",
    1321       213851 :                                  c_flt_eval_method (true));
    1322       213851 :   builtin_define_with_int_value ("__FLT_EVAL_METHOD_TS_18661_3__",
    1323       213851 :                                  c_flt_eval_method (false));
    1324              : 
    1325              :   /* And decfloat.h needs this.  */
    1326       213851 :   builtin_define_with_int_value ("__DEC_EVAL_METHOD__",
    1327              :                                  TARGET_DEC_EVAL_METHOD);
    1328              : 
    1329       213851 :   builtin_define_float_constants ("FLT", "F", "%s", "F", float_type_node);
    1330              :   /* Cast the double precision constants.  This is needed when single
    1331              :      precision constants are specified or when pragma FLOAT_CONST_DECIMAL64
    1332              :      is used.  The correct result is computed by the compiler when using
    1333              :      macros that include a cast.  We use a different cast for C++ to avoid
    1334              :      problems with -Wold-style-cast.  */
    1335       213851 :   builtin_define_float_constants ("DBL", "L",
    1336       213851 :                                   (c_dialect_cxx ()
    1337              :                                    ? "double(%s)"
    1338              :                                    : "((double)%s)"),
    1339              :                                   "", double_type_node);
    1340       213851 :   builtin_define_float_constants ("LDBL", "L", "%s", "L",
    1341              :                                   long_double_type_node);
    1342              : 
    1343      1924659 :   for (int i = 0; i < NUM_FLOATN_NX_TYPES; i++)
    1344              :     {
    1345      1496957 :       if (c_dialect_cxx ()
    1346       708806 :           && cxx_dialect > cxx20
    1347       193228 :           && !floatn_nx_types[i].extended)
    1348              :         {
    1349       110416 :           char name[sizeof ("__STDCPP_FLOAT128_T__=1")];
    1350       110416 :           if (FLOATN_NX_TYPE_NODE (i) == NULL_TREE)
    1351              :             {
    1352            0 :               sprintf (name, "__STDCPP_FLOAT%d_T__", floatn_nx_types[i].n);
    1353            0 :               cpp_warn (pfile, name);
    1354            0 :               continue;
    1355              :             }
    1356       110416 :           sprintf (name, "__STDCPP_FLOAT%d_T__=1", floatn_nx_types[i].n);
    1357       110416 :           cpp_define_warn (pfile, name);
    1358       110416 :         }
    1359      1386541 :       else if (FLOATN_NX_TYPE_NODE (i) == NULL_TREE)
    1360       213851 :         continue;
    1361      1283106 :       char prefix[20], csuffix[20];
    1362      2566212 :       sprintf (prefix, "FLT%d%s", floatn_nx_types[i].n,
    1363      1283106 :                floatn_nx_types[i].extended ? "X" : "");
    1364      1283106 :       sprintf (csuffix, "F%d%s", floatn_nx_types[i].n,
    1365              :                floatn_nx_types[i].extended ? "x" : "");
    1366      1283106 :       builtin_define_float_constants (prefix, ggc_strdup (csuffix), "%s",
    1367      1283106 :                                       csuffix, FLOATN_NX_TYPE_NODE (i));
    1368              :     }
    1369       213851 :   if (bfloat16_type_node)
    1370              :     {
    1371       213851 :       if (c_dialect_cxx () && cxx_dialect > cxx20)
    1372        27604 :         cpp_define_warn (pfile, "__STDCPP_BFLOAT16_T__=1");
    1373       213851 :       builtin_define_float_constants ("BFLT16", "BF16", "%s",
    1374              :                                       "BF16", bfloat16_type_node);
    1375              :     }
    1376            0 :   else if (cxx_dialect >= cxx23)
    1377            0 :     cpp_warn (pfile, "__STDCPP_BFLOAT16_T__");
    1378              : 
    1379              :   /* For float.h.  */
    1380       213851 :   if (targetm.decimal_float_supported_p ())
    1381              :     {
    1382       213851 :       builtin_define_decimal_float_constants ("DEC32", "DF",
    1383              :                                               dfloat32_type_node);
    1384       213851 :       builtin_define_decimal_float_constants ("DEC64", "DD",
    1385              :                                               dfloat64_type_node);
    1386       213851 :       builtin_define_decimal_float_constants ("DEC128", "DL",
    1387              :                                               dfloat128_type_node);
    1388       213851 :       if (dfloat64x_type_node)
    1389       213851 :         builtin_define_decimal_float_constants ("DEC64X", "D64x",
    1390              :                                                 dfloat64x_type_node);
    1391              :     }
    1392              : 
    1393              :   /* For fixed-point fibt, ibit, max, min, and epsilon.  */
    1394       213851 :   if (!c_dialect_cxx () && targetm.fixed_point_supported_p ())
    1395              :     {
    1396            0 :       builtin_define_fixed_point_constants ("SFRACT", "HR",
    1397              :                                             short_fract_type_node);
    1398            0 :       builtin_define_fixed_point_constants ("USFRACT", "UHR",
    1399              :                                             unsigned_short_fract_type_node);
    1400            0 :       builtin_define_fixed_point_constants ("FRACT", "R",
    1401              :                                             fract_type_node);
    1402            0 :       builtin_define_fixed_point_constants ("UFRACT", "UR",
    1403              :                                             unsigned_fract_type_node);
    1404            0 :       builtin_define_fixed_point_constants ("LFRACT", "LR",
    1405              :                                             long_fract_type_node);
    1406            0 :       builtin_define_fixed_point_constants ("ULFRACT", "ULR",
    1407              :                                             unsigned_long_fract_type_node);
    1408            0 :       builtin_define_fixed_point_constants ("LLFRACT", "LLR",
    1409              :                                             long_long_fract_type_node);
    1410            0 :       builtin_define_fixed_point_constants ("ULLFRACT", "ULLR",
    1411              :                                             unsigned_long_long_fract_type_node);
    1412            0 :       builtin_define_fixed_point_constants ("SACCUM", "HK",
    1413              :                                             short_accum_type_node);
    1414            0 :       builtin_define_fixed_point_constants ("USACCUM", "UHK",
    1415              :                                             unsigned_short_accum_type_node);
    1416            0 :       builtin_define_fixed_point_constants ("ACCUM", "K",
    1417              :                                             accum_type_node);
    1418            0 :       builtin_define_fixed_point_constants ("UACCUM", "UK",
    1419              :                                             unsigned_accum_type_node);
    1420            0 :       builtin_define_fixed_point_constants ("LACCUM", "LK",
    1421              :                                             long_accum_type_node);
    1422            0 :       builtin_define_fixed_point_constants ("ULACCUM", "ULK",
    1423              :                                             unsigned_long_accum_type_node);
    1424            0 :       builtin_define_fixed_point_constants ("LLACCUM", "LLK",
    1425              :                                             long_long_accum_type_node);
    1426            0 :       builtin_define_fixed_point_constants ("ULLACCUM", "ULLK",
    1427              :                                             unsigned_long_long_accum_type_node);
    1428              : 
    1429            0 :       builtin_define_fixed_point_constants ("QQ", "", qq_type_node);
    1430            0 :       builtin_define_fixed_point_constants ("HQ", "", hq_type_node);
    1431            0 :       builtin_define_fixed_point_constants ("SQ", "", sq_type_node);
    1432            0 :       builtin_define_fixed_point_constants ("DQ", "", dq_type_node);
    1433            0 :       builtin_define_fixed_point_constants ("TQ", "", tq_type_node);
    1434            0 :       builtin_define_fixed_point_constants ("UQQ", "", uqq_type_node);
    1435            0 :       builtin_define_fixed_point_constants ("UHQ", "", uhq_type_node);
    1436            0 :       builtin_define_fixed_point_constants ("USQ", "", usq_type_node);
    1437            0 :       builtin_define_fixed_point_constants ("UDQ", "", udq_type_node);
    1438            0 :       builtin_define_fixed_point_constants ("UTQ", "", utq_type_node);
    1439            0 :       builtin_define_fixed_point_constants ("HA", "", ha_type_node);
    1440            0 :       builtin_define_fixed_point_constants ("SA", "", sa_type_node);
    1441            0 :       builtin_define_fixed_point_constants ("DA", "", da_type_node);
    1442            0 :       builtin_define_fixed_point_constants ("TA", "", ta_type_node);
    1443            0 :       builtin_define_fixed_point_constants ("UHA", "", uha_type_node);
    1444            0 :       builtin_define_fixed_point_constants ("USA", "", usa_type_node);
    1445            0 :       builtin_define_fixed_point_constants ("UDA", "", uda_type_node);
    1446            0 :       builtin_define_fixed_point_constants ("UTA", "", uta_type_node);
    1447              :     }
    1448              : 
    1449              :   /* For libgcc-internal use only.  */
    1450       213851 :   if (flag_building_libgcc)
    1451              :     {
    1452              :       /* Properties of floating-point modes for libgcc2.c.  */
    1453          984 :       opt_scalar_float_mode mode_iter;
    1454         6888 :       FOR_EACH_MODE_IN_CLASS (mode_iter, MODE_FLOAT)
    1455              :         {
    1456         5904 :           scalar_float_mode mode = mode_iter.require ();
    1457         5904 :           const char *name = GET_MODE_NAME (mode);
    1458         5904 :           const size_t name_len = strlen (name);
    1459         5904 :           char float_h_prefix[16] = "";
    1460         5904 :           char *macro_name
    1461         5904 :             = XALLOCAVEC (char, name_len + sizeof ("__LIBGCC__MANT_DIG__"));
    1462         5904 :           sprintf (macro_name, "__LIBGCC_%s_MANT_DIG__", name);
    1463        11808 :           builtin_define_with_int_value (macro_name,
    1464         5904 :                                          REAL_MODE_FORMAT (mode)->p);
    1465         5904 :           if (!targetm.scalar_mode_supported_p (mode)
    1466         5904 :               || !targetm.libgcc_floating_mode_supported_p (mode))
    1467            0 :             continue;
    1468         5904 :           macro_name = XALLOCAVEC (char, name_len
    1469              :                                    + sizeof ("__LIBGCC_HAS__MODE__"));
    1470         5904 :           sprintf (macro_name, "__LIBGCC_HAS_%s_MODE__", name);
    1471         5904 :           cpp_define (pfile, macro_name);
    1472         5904 :           macro_name = XALLOCAVEC (char, name_len
    1473              :                                    + sizeof ("__LIBGCC__FUNC_EXT__"));
    1474         5904 :           sprintf (macro_name, "__LIBGCC_%s_FUNC_EXT__", name);
    1475         5904 :           char suffix[20] = "";
    1476         5904 :           if (mode == TYPE_MODE (double_type_node))
    1477              :             {
    1478              :               /* Empty suffix correct.  */
    1479          984 :               memcpy (float_h_prefix, "DBL", 4);
    1480              :             }
    1481         4920 :           else if (mode == TYPE_MODE (float_type_node))
    1482              :             {
    1483          984 :               suffix[0] = 'f';
    1484          984 :               memcpy (float_h_prefix, "FLT", 4);
    1485              :             }
    1486         3936 :           else if (mode == TYPE_MODE (long_double_type_node))
    1487              :             {
    1488          984 :               suffix[0] = 'l';
    1489          984 :               memcpy (float_h_prefix, "LDBL", 5);
    1490              :             }
    1491         2952 :           else if (bfloat16_type_node
    1492         2952 :                    && mode == TYPE_MODE (bfloat16_type_node))
    1493              :             {
    1494          984 :               memcpy (suffix, "bf16", 5);
    1495          984 :               memcpy (float_h_prefix, "BFLT16", 7);
    1496              :             }
    1497              :           else
    1498              :             {
    1499         4920 :               bool found_suffix = false;
    1500         4920 :               for (int i = 0; i < NUM_FLOATN_NX_TYPES; i++)
    1501         4920 :                 if (FLOATN_NX_TYPE_NODE (i) != NULL_TREE
    1502         4920 :                     && mode == TYPE_MODE (FLOATN_NX_TYPE_NODE (i)))
    1503              :                   {
    1504         3936 :                     sprintf (suffix, "f%d%s", floatn_nx_types[i].n,
    1505         1968 :                              floatn_nx_types[i].extended ? "x" : "");
    1506         1968 :                     found_suffix = true;
    1507         1968 :                     sprintf (float_h_prefix, "FLT%d%s", floatn_nx_types[i].n,
    1508              :                              floatn_nx_types[i].extended ? "X" : "");
    1509         1968 :                     break;
    1510              :                   }
    1511         1968 :               gcc_assert (found_suffix);
    1512              :             }
    1513         5904 :           builtin_define_with_value (macro_name, suffix, 0);
    1514              : 
    1515              :           /* The way __LIBGCC_*_EXCESS_PRECISION__ is used is about
    1516              :              eliminating excess precision from results assigned to
    1517              :              variables - meaning it should be about the implicit excess
    1518              :              precision only.  */
    1519         5904 :           bool excess_precision = false;
    1520         5904 :           machine_mode float16_type_mode = (float16_type_node
    1521         5904 :                                             ? TYPE_MODE (float16_type_node)
    1522         5904 :                                             : VOIDmode);
    1523         5904 :           machine_mode bfloat16_type_mode = (bfloat16_type_node
    1524         5904 :                                              ? TYPE_MODE (bfloat16_type_node)
    1525         5904 :                                              : VOIDmode);
    1526         5904 :           switch (targetm.c.excess_precision
    1527         5904 :                     (EXCESS_PRECISION_TYPE_IMPLICIT))
    1528              :             {
    1529         2898 :             case FLT_EVAL_METHOD_UNPREDICTABLE:
    1530         2898 :             case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE:
    1531         2898 :               excess_precision = (mode == float16_type_mode
    1532         2415 :                                   || mode == bfloat16_type_mode
    1533         1932 :                                   || mode == TYPE_MODE (float_type_node)
    1534         4347 :                                   || mode == TYPE_MODE (double_type_node));
    1535              :               break;
    1536              : 
    1537            0 :             case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE:
    1538            0 :               excess_precision = (mode == float16_type_mode
    1539            0 :                                   || mode == bfloat16_type_mode
    1540            0 :                                   || mode == TYPE_MODE (float_type_node));
    1541              :               break;
    1542         3006 :             case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT:
    1543         3006 :               excess_precision = (mode == float16_type_mode
    1544         3006 :                                   || mode == bfloat16_type_mode);
    1545              :               break;
    1546              :             case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16:
    1547              :               excess_precision = false;
    1548              :               break;
    1549            0 :             default:
    1550            0 :               gcc_unreachable ();
    1551              :             }
    1552         5904 :           macro_name = XALLOCAVEC (char, name_len
    1553              :                                    + sizeof ("__LIBGCC__EXCESS_PRECISION__"));
    1554         5904 :           sprintf (macro_name, "__LIBGCC_%s_EXCESS_PRECISION__", name);
    1555         5904 :           builtin_define_with_int_value (macro_name, excess_precision);
    1556              : 
    1557         5904 :           char val_name[64];
    1558              : 
    1559         5904 :           macro_name = XALLOCAVEC (char, name_len
    1560              :                                    + sizeof ("__LIBGCC__EPSILON__"));
    1561         5904 :           sprintf (macro_name, "__LIBGCC_%s_EPSILON__", name);
    1562         5904 :           sprintf (val_name, "__%s_EPSILON__", float_h_prefix);
    1563         5904 :           builtin_define_with_value (macro_name, val_name, 0);
    1564              : 
    1565         5904 :           macro_name = XALLOCAVEC (char, name_len + sizeof ("__LIBGCC__MAX__"));
    1566         5904 :           sprintf (macro_name, "__LIBGCC_%s_MAX__", name);
    1567         5904 :           sprintf (val_name, "__%s_MAX__", float_h_prefix);
    1568         5904 :           builtin_define_with_value (macro_name, val_name, 0);
    1569              : 
    1570         5904 :           macro_name = XALLOCAVEC (char, name_len + sizeof ("__LIBGCC__MIN__"));
    1571         5904 :           sprintf (macro_name, "__LIBGCC_%s_MIN__", name);
    1572         5904 :           sprintf (val_name, "__%s_MIN__", float_h_prefix);
    1573         5904 :           builtin_define_with_value (macro_name, val_name, 0);
    1574              : 
    1575              : #ifdef HAVE_adddf3
    1576         5904 :           builtin_define_with_int_value ("__LIBGCC_HAVE_HWDBL__",
    1577         5904 :                                          HAVE_adddf3);
    1578              : #endif
    1579              :         }
    1580              : 
    1581              :       /* For libgcc crtstuff.c and libgcc2.c.  */
    1582          984 :       builtin_define_with_int_value ("__LIBGCC_EH_TABLES_CAN_BE_READ_ONLY__",
    1583              :                                      EH_TABLES_CAN_BE_READ_ONLY);
    1584              : #ifdef EH_FRAME_SECTION_NAME
    1585          984 :       builtin_define_with_value ("__LIBGCC_EH_FRAME_SECTION_NAME__",
    1586              :                                  EH_FRAME_SECTION_NAME, 1);
    1587              : #endif
    1588              : #ifdef CTORS_SECTION_ASM_OP
    1589              :       builtin_define_with_value ("__LIBGCC_CTORS_SECTION_ASM_OP__",
    1590              :                                  CTORS_SECTION_ASM_OP, 1);
    1591              : #endif
    1592              : #ifdef DTORS_SECTION_ASM_OP
    1593              :       builtin_define_with_value ("__LIBGCC_DTORS_SECTION_ASM_OP__",
    1594              :                                  DTORS_SECTION_ASM_OP, 1);
    1595              : #endif
    1596              : #ifdef TEXT_SECTION_ASM_OP
    1597          984 :       builtin_define_with_value ("__LIBGCC_TEXT_SECTION_ASM_OP__",
    1598              :                                  TEXT_SECTION_ASM_OP, 1);
    1599              : #endif
    1600              : #ifdef INIT_SECTION_ASM_OP
    1601              :       builtin_define_with_value ("__LIBGCC_INIT_SECTION_ASM_OP__",
    1602              :                                  INIT_SECTION_ASM_OP, 1);
    1603              : #endif
    1604              : #ifdef INIT_ARRAY_SECTION_ASM_OP
    1605              :       /* Despite the name of this target macro, the expansion is not
    1606              :          actually used, and may be empty rather than a string
    1607              :          constant.  */
    1608          984 :       cpp_define (pfile, "__LIBGCC_INIT_ARRAY_SECTION_ASM_OP__");
    1609              : #endif
    1610              : 
    1611              :       /* For libgcc enable-execute-stack.c.  */
    1612          984 :       builtin_define_with_int_value ("__LIBGCC_TRAMPOLINE_SIZE__",
    1613          984 :                                      TRAMPOLINE_SIZE);
    1614              : 
    1615              :       /* For libgcc generic-morestack.c and unwinder code.  */
    1616          984 :       if (STACK_GROWS_DOWNWARD)
    1617          984 :         cpp_define (pfile, "__LIBGCC_STACK_GROWS_DOWNWARD__");
    1618              : 
    1619              :       /* For libgcc unwinder code.  */
    1620              : #ifdef DONT_USE_BUILTIN_SETJMP
    1621              :       cpp_define (pfile, "__LIBGCC_DONT_USE_BUILTIN_SETJMP__");
    1622              : #endif
    1623              : #ifdef DWARF_ALT_FRAME_RETURN_COLUMN
    1624              :       builtin_define_with_int_value ("__LIBGCC_DWARF_ALT_FRAME_RETURN_COLUMN__",
    1625              :                                      DWARF_ALT_FRAME_RETURN_COLUMN);
    1626              : #endif
    1627          984 :       builtin_define_with_int_value ("__LIBGCC_DWARF_FRAME_REGISTERS__",
    1628              :                                      DWARF_FRAME_REGISTERS);
    1629          984 :       builtin_define_with_int_value ("__LIBGCC_DWARF_CIE_DATA_ALIGNMENT__",
    1630          984 :                                      DWARF_CIE_DATA_ALIGNMENT);
    1631              : 
    1632              : #ifdef EH_RETURN_STACKADJ_RTX
    1633          984 :       cpp_define (pfile, "__LIBGCC_EH_RETURN_STACKADJ_RTX__");
    1634              : #endif
    1635              : #ifdef JMP_BUF_SIZE
    1636              :       builtin_define_with_int_value ("__LIBGCC_JMP_BUF_SIZE__",
    1637              :                                      JMP_BUF_SIZE);
    1638              : #endif
    1639          984 :       builtin_define_with_int_value ("__LIBGCC_STACK_POINTER_REGNUM__",
    1640              :                                      STACK_POINTER_REGNUM);
    1641              : 
    1642              :       /* For libgcov.  */
    1643          984 :       builtin_define_with_int_value ("__LIBGCC_VTABLE_USES_DESCRIPTORS__",
    1644              :                                      TARGET_VTABLE_USES_DESCRIPTORS);
    1645          984 :       builtin_define_with_int_value ("__LIBGCC_HAVE_LIBATOMIC",
    1646          984 :                                      targetm.have_libatomic);
    1647              :     }
    1648              : 
    1649              :   /* For use in assembly language.  */
    1650       213851 :   builtin_define_with_value ("__REGISTER_PREFIX__", REGISTER_PREFIX, 0);
    1651       213851 :   builtin_define_with_value ("__USER_LABEL_PREFIX__", user_label_prefix, 0);
    1652              : 
    1653              :   /* Misc.  */
    1654       213851 :   if (flag_gnu89_inline)
    1655        21682 :     cpp_define (pfile, "__GNUC_GNU_INLINE__");
    1656              :   else
    1657       192169 :     cpp_define (pfile, "__GNUC_STDC_INLINE__");
    1658              : 
    1659       213851 :   if (flag_no_inline)
    1660        97674 :     cpp_define (pfile, "__NO_INLINE__");
    1661              : 
    1662       213851 :   if (flag_iso)
    1663        60321 :     cpp_define (pfile, "__STRICT_ANSI__");
    1664              : 
    1665       213851 :   if (!flag_signed_char)
    1666           26 :     cpp_define (pfile, "__CHAR_UNSIGNED__");
    1667              : 
    1668       213851 :   if (c_dialect_cxx () && TYPE_UNSIGNED (wchar_type_node))
    1669            7 :     cpp_define (pfile, "__WCHAR_UNSIGNED__");
    1670              : 
    1671       213851 :   cpp_atomic_builtins (pfile);
    1672              : 
    1673              :   /* Show support for __builtin_speculation_safe_value () if the target
    1674              :      has been updated to fully support it.  */
    1675       213851 :   if (targetm.have_speculation_safe_value (false))
    1676       213851 :     cpp_define (pfile, "__HAVE_SPECULATION_SAFE_VALUE");
    1677              : 
    1678              : #ifdef DWARF2_UNWIND_INFO
    1679       213851 :   if (dwarf2out_do_cfi_asm ())
    1680       213809 :     cpp_define (pfile, "__GCC_HAVE_DWARF2_CFI_ASM");
    1681              : #endif
    1682              : 
    1683              :   /* Make the choice of ObjC runtime visible to source code.  */
    1684       213851 :   if (c_dialect_objc () && flag_next_runtime)
    1685            0 :     cpp_define (pfile, "__NEXT_RUNTIME__");
    1686              : 
    1687              :   /* Show the availability of some target pragmas.  */
    1688       213851 :   cpp_define (pfile, "__PRAGMA_REDEFINE_EXTNAME");
    1689              : 
    1690              :   /* Make the choice of the stack protector runtime visible to source code.
    1691              :      The macro names and values here were chosen for compatibility with an
    1692              :      earlier implementation, i.e. ProPolice.  */
    1693       213851 :   if (flag_stack_protect == SPCT_FLAG_EXPLICIT)
    1694            7 :     cpp_define (pfile, "__SSP_EXPLICIT__=4");
    1695       213851 :   if (flag_stack_protect == SPCT_FLAG_STRONG)
    1696          184 :     cpp_define (pfile, "__SSP_STRONG__=3");
    1697       213851 :   if (flag_stack_protect == SPCT_FLAG_ALL)
    1698           40 :     cpp_define (pfile, "__SSP_ALL__=2");
    1699       213811 :   else if (flag_stack_protect == SPCT_FLAG_DEFAULT)
    1700           70 :     cpp_define (pfile, "__SSP__=1");
    1701              : 
    1702       213851 :   if (flag_openacc)
    1703         1681 :     cpp_define (pfile, "_OPENACC=201711");
    1704              : 
    1705       213851 :   if (flag_openmp)
    1706         6521 :     cpp_define (pfile, "_OPENMP=202111");
    1707              : 
    1708       427702 :   for (i = 0; i < NUM_INT_N_ENTS; i ++)
    1709       213851 :     if (int_n_enabled_p[i])
    1710              :       {
    1711       208475 :         char buf[15+20];
    1712       208475 :         sprintf(buf, "__SIZEOF_INT%d__", int_n_data[i].bitsize);
    1713       208475 :         builtin_define_type_sizeof (buf,
    1714              :                                     int_n_trees[i].signed_type);
    1715              :       }
    1716       213851 :   builtin_define_type_sizeof ("__SIZEOF_WCHAR_T__", wchar_type_node);
    1717       213851 :   builtin_define_type_sizeof ("__SIZEOF_WINT_T__", wint_type_node);
    1718       213851 :   builtin_define_type_sizeof ("__SIZEOF_PTRDIFF_T__",
    1719              :                               unsigned_ptrdiff_type_node);
    1720              : 
    1721              :   /* A straightforward target hook doesn't work, because of problems
    1722              :      linking that hook's body when part of non-C front ends.  */
    1723              : # define preprocessing_asm_p() (cpp_get_options (pfile)->lang == CLK_ASM)
    1724              : # define preprocessing_trad_p() (cpp_get_options (pfile)->traditional)
    1725              : # define builtin_define(TXT) cpp_define (pfile, TXT)
    1726              : # define builtin_assert(TXT) cpp_assert (pfile, TXT)
    1727       213851 :   TARGET_CPU_CPP_BUILTINS ();
    1728       213851 :   TARGET_OS_CPP_BUILTINS ();
    1729       213851 :   TARGET_OBJFMT_CPP_BUILTINS ();
    1730              : 
    1731              :   /* Support the __declspec keyword by turning them into attributes.
    1732              :      Note that the current way we do this may result in a collision
    1733              :      with predefined attributes later on.  This can be solved by using
    1734              :      one attribute, say __declspec__, and passing args to it.  The
    1735              :      problem with that approach is that args are not accumulated: each
    1736              :      new appearance would clobber any existing args.  */
    1737       213851 :   if (TARGET_DECLSPEC)
    1738              :     builtin_define ("__declspec(x)=__attribute__((x))");
    1739              : 
    1740              :   /* If decimal floating point is supported, tell the user if the
    1741              :      alternate format (BID) is used instead of the standard (DPD)
    1742              :      format.  */
    1743       213851 :   if (ENABLE_DECIMAL_FLOAT && ENABLE_DECIMAL_BID_FORMAT)
    1744       213851 :     cpp_define (pfile, "__DECIMAL_BID_FORMAT__");
    1745              : }
    1746              : 
    1747              : /* Given NAME, return the command-line option that would make it be
    1748              :    a builtin define, or 0 if unrecognized.  */
    1749              : 
    1750              : diagnostics::option_id
    1751         3707 : get_option_for_builtin_define (const char *name)
    1752              : {
    1753         3707 :   if (!strcmp (name, "_OPENACC"))
    1754            4 :     return OPT_fopenacc;
    1755         3703 :   if (!strcmp (name, "_OPENMP"))
    1756            4 :     return OPT_fopenmp;
    1757         3699 :   return 0;
    1758              : }
    1759              : 
    1760              : /* Pass an object-like macro.  If it doesn't lie in the user's
    1761              :    namespace, defines it unconditionally.  Otherwise define a version
    1762              :    with two leading underscores, and another version with two leading
    1763              :    and trailing underscores, and define the original only if an ISO
    1764              :    standard was not nominated.
    1765              : 
    1766              :    e.g. passing "unix" defines "__unix", "__unix__" and possibly
    1767              :    "unix".  Passing "_mips" defines "__mips", "__mips__" and possibly
    1768              :    "_mips".  */
    1769              : void
    1770       433078 : builtin_define_std (const char *macro)
    1771              : {
    1772       433078 :   size_t len = strlen (macro);
    1773       433078 :   char *buff = (char *) alloca (len + 5);
    1774       433078 :   char *p = buff + 2;
    1775       433078 :   char *q = p + len;
    1776              : 
    1777              :   /* prepend __ (or maybe just _) if in user's namespace.  */
    1778       433078 :   memcpy (p, macro, len + 1);
    1779       433078 :   if (!( *p == '_' && (p[1] == '_' || ISUPPER (p[1]))))
    1780              :     {
    1781       433078 :       if (*p != '_')
    1782       433078 :         *--p = '_';
    1783       433078 :       if (p[1] != '_')
    1784       433078 :         *--p = '_';
    1785              :     }
    1786       433078 :   cpp_define (parse_in, p);
    1787              : 
    1788              :   /* If it was in user's namespace...  */
    1789       433078 :   if (p != buff + 2)
    1790              :     {
    1791              :       /* Define the macro with leading and following __.  */
    1792       433078 :       if (q[-1] != '_')
    1793       433078 :         *q++ = '_';
    1794       433078 :       if (q[-2] != '_')
    1795       433078 :         *q++ = '_';
    1796       433078 :       *q = '\0';
    1797       433078 :       cpp_define (parse_in, p);
    1798              : 
    1799              :       /* Finally, define the original macro if permitted.  */
    1800       433078 :       if (!flag_iso)
    1801       312386 :         cpp_define (parse_in, macro);
    1802              :     }
    1803       433078 : }
    1804              : 
    1805              : /* Pass an object-like macro and a value to define it to.  The third
    1806              :    parameter says whether or not to turn the value into a string
    1807              :    constant.  */
    1808              : void
    1809     19233776 : builtin_define_with_value (const char *macro, const char *expansion, int is_str)
    1810              : {
    1811     19233776 :   char *buf;
    1812     19233776 :   size_t mlen = strlen (macro);
    1813     19233776 :   size_t elen = strlen (expansion);
    1814     19233776 :   size_t extra = 2;  /* space for an = and a NUL */
    1815              : 
    1816     19233776 :   if (is_str)
    1817              :     {
    1818       429670 :       char *quoted_expansion = (char *) alloca (elen * 4 + 1);
    1819       429670 :       const char *p;
    1820       429670 :       char *q;
    1821       429670 :       extra += 2;  /* space for two quote marks */
    1822      3224754 :       for (p = expansion, q = quoted_expansion; *p; p++)
    1823              :         {
    1824      2795084 :           switch (*p)
    1825              :             {
    1826            0 :             case '\n':
    1827            0 :               *q++ = '\\';
    1828            0 :               *q++ = 'n';
    1829            0 :               break;
    1830              : 
    1831          984 :             case '\t':
    1832          984 :               *q++ = '\\';
    1833          984 :               *q++ = 't';
    1834          984 :               break;
    1835              : 
    1836            0 :             case '\\':
    1837            0 :               *q++ = '\\';
    1838            0 :               *q++ = '\\';
    1839            0 :               break;
    1840              : 
    1841            0 :             case '"':
    1842            0 :               *q++ = '\\';
    1843            0 :               *q++ = '"';
    1844            0 :               break;
    1845              : 
    1846      2794100 :             default:
    1847      2794100 :               if (ISPRINT ((unsigned char) *p))
    1848      2794100 :                 *q++ = *p;
    1849              :               else
    1850              :                 {
    1851            0 :                   sprintf (q, "\\%03o", (unsigned char) *p);
    1852            0 :                   q += 4;
    1853              :                 }
    1854              :             }
    1855              :         }
    1856       429670 :       *q = '\0';
    1857       429670 :       expansion = quoted_expansion;
    1858       429670 :       elen = q - expansion;
    1859              :     }
    1860              : 
    1861     19233776 :   buf = (char *) alloca (mlen + elen + extra);
    1862     19233776 :   if (is_str)
    1863       429670 :     sprintf (buf, "%s=\"%s\"", macro, expansion);
    1864              :   else
    1865     18804106 :     sprintf (buf, "%s=%s", macro, expansion);
    1866              : 
    1867     19233776 :   cpp_define (parse_in, buf);
    1868     19233776 : }
    1869              : 
    1870              : 
    1871              : /* Pass an object-like macro and an integer value to define it to.  */
    1872              : void
    1873     28663146 : builtin_define_with_int_value (const char *macro, HOST_WIDE_INT value)
    1874              : {
    1875     28663146 :   char *buf;
    1876     28663146 :   size_t mlen = strlen (macro);
    1877     28663146 :   size_t vlen = 18;
    1878     28663146 :   size_t extra = 2; /* space for = and NUL.  */
    1879              : 
    1880     28663146 :   buf = (char *) alloca (mlen + vlen + extra);
    1881     28663146 :   memcpy (buf, macro, mlen);
    1882     28663146 :   buf[mlen] = '=';
    1883     28663146 :   sprintf (buf + mlen + 1, HOST_WIDE_INT_PRINT_DEC, value);
    1884              : 
    1885     28663146 :   cpp_define (parse_in, buf);
    1886     28663146 : }
    1887              : 
    1888              : /* builtin_define_with_hex_fp_value is very expensive, so the following
    1889              :    array and function allows it to be done lazily when __DBL_MAX__
    1890              :    etc. is first used.  */
    1891              : 
    1892              : struct GTY(()) lazy_hex_fp_value_struct
    1893              : {
    1894              :   const char *hex_str;
    1895              :   machine_mode mode;
    1896              :   int digits;
    1897              :   const char *fp_suffix;
    1898              : };
    1899              : /* Number of the expensive to compute macros we should evaluate lazily.
    1900              :    Each builtin_define_float_constants invocation calls
    1901              :    builtin_define_with_hex_fp_value 5 times and builtin_define_float_constants
    1902              :    is called for FLT, DBL, LDBL and up to NUM_FLOATN_NX_TYPES times for
    1903              :    FLTNN*.  */
    1904              : #define LAZY_HEX_FP_VALUES_CNT (5 * (3 + NUM_FLOATN_NX_TYPES))
    1905              : static GTY(()) struct lazy_hex_fp_value_struct
    1906              :   lazy_hex_fp_values[LAZY_HEX_FP_VALUES_CNT];
    1907              : static GTY(()) unsigned lazy_hex_fp_value_count;
    1908              : 
    1909              : static void
    1910       380433 : lazy_hex_fp_value (cpp_reader *, cpp_macro *macro, unsigned num)
    1911              : {
    1912       380433 :   REAL_VALUE_TYPE real;
    1913       380433 :   char dec_str[64], buf1[256];
    1914              : 
    1915       380433 :   gcc_checking_assert (num < lazy_hex_fp_value_count);
    1916              : 
    1917       380433 :   real_from_string (&real, lazy_hex_fp_values[num].hex_str);
    1918       380433 :   real_to_decimal_for_mode (dec_str, &real, sizeof (dec_str),
    1919       380433 :                             lazy_hex_fp_values[num].digits, 0,
    1920              :                             lazy_hex_fp_values[num].mode);
    1921              : 
    1922       380433 :   size_t len
    1923       380433 :     = sprintf (buf1, "%s%s", dec_str, lazy_hex_fp_values[num].fp_suffix);
    1924       380433 :   gcc_assert (len < sizeof (buf1));
    1925       502415 :   for (unsigned idx = 0; idx < macro->count; idx++)
    1926       502415 :     if (macro->exp.tokens[idx].type == CPP_NUMBER)
    1927              :       {
    1928       380433 :         macro->exp.tokens[idx].val.str.len = len;
    1929       380433 :         macro->exp.tokens[idx].val.str.text
    1930       380433 :           = (const unsigned char *) ggc_strdup (buf1);
    1931       380433 :         return;
    1932              :       }
    1933              : 
    1934              :   /* We must have replaced a token.  */
    1935            0 :   gcc_unreachable ();
    1936              : }
    1937              : 
    1938              : /* Pass an object-like macro a hexadecimal floating-point value.  */
    1939              : static void
    1940     10692550 : builtin_define_with_hex_fp_value (const char *macro,
    1941              :                                   tree type, int digits,
    1942              :                                   const char *hex_str,
    1943              :                                   const char *fp_suffix,
    1944              :                                   const char *fp_cast)
    1945              : {
    1946     10692550 :   REAL_VALUE_TYPE real;
    1947     10692550 :   char dec_str[64], buf[256], buf1[128], buf2[64];
    1948              : 
    1949              :   /* This is very expensive, so if possible expand them lazily.  */
    1950     10692550 :   if (lazy_hex_fp_value_count < LAZY_HEX_FP_VALUES_CNT
    1951     10692550 :       && flag_dump_macros == 0
    1952     10647100 :       && flag_dump_go_spec == NULL
    1953     10646900 :       && !cpp_get_options (parse_in)->traditional)
    1954              :     {
    1955     10500750 :       if (lazy_hex_fp_value_count == 0)
    1956       210015 :         cpp_get_callbacks (parse_in)->user_lazy_macro = lazy_hex_fp_value;
    1957     10500750 :       sprintf (buf2, fp_cast, "1.1");
    1958     10500750 :       sprintf (buf1, "%s=%s", macro, buf2);
    1959     10500750 :       cpp_define (parse_in, buf1);
    1960     10500750 :       struct cpp_hashnode *node = C_CPP_HASHNODE (get_identifier (macro));
    1961     10500750 :       lazy_hex_fp_values[lazy_hex_fp_value_count].hex_str
    1962     10500750 :         = ggc_strdup (hex_str);
    1963     10500750 :       lazy_hex_fp_values[lazy_hex_fp_value_count].mode = TYPE_MODE (type);
    1964     10500750 :       lazy_hex_fp_values[lazy_hex_fp_value_count].digits = digits;
    1965     10500750 :       lazy_hex_fp_values[lazy_hex_fp_value_count].fp_suffix = fp_suffix;
    1966     10500750 :       cpp_define_lazily (parse_in, node, lazy_hex_fp_value_count++);
    1967     10500750 :       return;
    1968              :     }
    1969              : 
    1970              :   /* Hex values are really cool and convenient, except that they're
    1971              :      not supported in strict ISO C90 mode.  First, the "p-" sequence
    1972              :      is not valid as part of a preprocessor number.  Second, we get a
    1973              :      pedwarn from the preprocessor, which has no context, so we can't
    1974              :      suppress the warning with __extension__.
    1975              : 
    1976              :      So instead what we do is construct the number in hex (because
    1977              :      it's easy to get the exact correct value), parse it as a real,
    1978              :      then print it back out as decimal.  */
    1979              : 
    1980       191800 :   real_from_string (&real, hex_str);
    1981       191800 :   real_to_decimal_for_mode (dec_str, &real, sizeof (dec_str), digits, 0,
    1982       191800 :                             TYPE_MODE (type));
    1983              : 
    1984              :   /* Assemble the macro in the following fashion
    1985              :      macro = fp_cast [dec_str fp_suffix] */
    1986       191800 :   sprintf (buf2, "%s%s", dec_str, fp_suffix);
    1987       191800 :   sprintf (buf1, fp_cast, buf2);
    1988       191800 :   sprintf (buf, "%s=%s", macro, buf1);
    1989              : 
    1990       191800 :   cpp_define (parse_in, buf);
    1991              : }
    1992              : 
    1993              : /* Return a string constant for the suffix for a value of type TYPE
    1994              :    promoted according to the integer promotions.  The type must be one
    1995              :    of the standard integer type nodes.  */
    1996              : 
    1997              : static const char *
    1998     10264848 : type_suffix (tree type)
    1999              : {
    2000     10264848 :   static const char *const suffixes[] = { "", "U", "L", "UL", "LL", "ULL" };
    2001     10264848 :   int unsigned_suffix;
    2002     10264848 :   int is_long;
    2003     10264848 :   int tp = TYPE_PRECISION (type);
    2004              : 
    2005     10264848 :   if (type == long_long_integer_type_node
    2006     10018171 :       || type == long_long_unsigned_type_node
    2007     20250193 :       || tp > TYPE_PRECISION (long_integer_type_node))
    2008              :     is_long = 2;
    2009      9985345 :   else if (type == long_integer_type_node
    2010      7682223 :            || type == long_unsigned_type_node
    2011     15583768 :            || tp > TYPE_PRECISION (integer_type_node))
    2012              :     is_long = 1;
    2013      5598423 :   else if (type == integer_type_node
    2014      4298917 :            || type == unsigned_type_node
    2015      3421629 :            || type == short_integer_type_node
    2016      2566225 :            || type == short_unsigned_type_node
    2017      1924659 :            || type == signed_char_type_node
    2018       855404 :            || type == unsigned_char_type_node
    2019              :            /* ??? "char" is not a signed or unsigned integer type and
    2020              :               so is not permitted for the standard typedefs, but some
    2021              :               systems use it anyway.  */
    2022            0 :            || type == char_type_node)
    2023              :     is_long = 0;
    2024            0 :   else if (type == wchar_type_node)
    2025            0 :     return type_suffix (underlying_wchar_type_node);
    2026              :   else
    2027            0 :     gcc_unreachable ();
    2028              : 
    2029     10264848 :   unsigned_suffix = TYPE_UNSIGNED (type);
    2030     10264848 :   if (TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
    2031      3421629 :     unsigned_suffix = 0;
    2032     10264848 :   return suffixes[is_long * 2 + unsigned_suffix];
    2033              : }
    2034              : 
    2035              : /* Define MACRO as a <stdint.h> constant-suffix macro for TYPE.  */
    2036              : static void
    2037      2138510 : builtin_define_constants (const char *macro, tree type)
    2038              : {
    2039      2138510 :   const char *suffix;
    2040      2138510 :   char *buf;
    2041              : 
    2042      2138510 :   suffix = type_suffix (type);
    2043              : 
    2044      2138510 :   if (suffix[0] == 0)
    2045              :     {
    2046      1069255 :       buf = (char *) alloca (strlen (macro) + 6);
    2047      1069255 :       sprintf (buf, "%s(c)=c", macro);
    2048              :     }
    2049              :   else
    2050              :     {
    2051      1069255 :       buf = (char *) alloca (strlen (macro) + 9 + strlen (suffix) + 1);
    2052      1069255 :       sprintf (buf, "%s(c)=c ## %s", macro, suffix);
    2053              :     }
    2054              : 
    2055      2138510 :   cpp_define (parse_in, buf);
    2056      2138510 : }
    2057              : 
    2058              : /* Define MAX for TYPE based on the precision of the type.  */
    2059              : 
    2060              : static void
    2061      7484785 : builtin_define_type_max (const char *macro, tree type)
    2062              : {
    2063      6415530 :   builtin_define_type_minmax (NULL, macro, type);
    2064            0 : }
    2065              : 
    2066              : /* Given a value with COUNT LSBs set, fill BUF with a hexadecimal
    2067              :    representation of that value.  For example, a COUNT of 10 would
    2068              :    return "0x3ff".  */
    2069              : 
    2070              : static void
    2071      8126338 : print_bits_of_hex (char *buf, int bufsz, int count)
    2072              : {
    2073      8126338 :   gcc_assert (bufsz > 3);
    2074      8126338 :   *buf++ = '0';
    2075      8126338 :   *buf++ = 'x';
    2076      8126338 :   bufsz -= 2;
    2077              : 
    2078      8126338 :   gcc_assert (count > 0);
    2079              : 
    2080      8126338 :   switch (count % 4) {
    2081              :   case 0:
    2082              :     break;
    2083            0 :   case 1:
    2084            0 :     *buf++ = '1';
    2085            0 :     bufsz --;
    2086            0 :     count -= 1;
    2087            0 :     break;
    2088            0 :   case 2:
    2089            0 :     *buf++ = '3';
    2090            0 :     bufsz --;
    2091            0 :     count -= 2;
    2092            0 :     break;
    2093      4704709 :   case 3:
    2094      4704709 :     *buf++ = '7';
    2095      4704709 :     bufsz --;
    2096      4704709 :     count -= 3;
    2097      4704709 :     break;
    2098              :   }
    2099     85574151 :   while (count >= 4)
    2100              :     {
    2101     77447813 :       gcc_assert (bufsz > 1);
    2102     77447813 :       *buf++ = 'f';
    2103     77447813 :       bufsz --;
    2104     77447813 :       count -= 4;
    2105              :     }
    2106      8126338 :   gcc_assert (bufsz > 0);
    2107      8126338 :   *buf++ = 0;
    2108      8126338 : }
    2109              : 
    2110              : /* Define MIN_MACRO (if not NULL) and MAX_MACRO for TYPE based on the
    2111              :    precision of the type.  */
    2112              : 
    2113              : static void
    2114      8126338 : builtin_define_type_minmax (const char *min_macro, const char *max_macro,
    2115              :                             tree type)
    2116              : {
    2117              : #define PBOH_SZ (MAX_BITSIZE_MODE_ANY_INT/4+4)
    2118      8126338 :   char value[PBOH_SZ];
    2119              : 
    2120      8126338 :   const char *suffix;
    2121      8126338 :   char *buf;
    2122      8126338 :   int bits;
    2123              : 
    2124      8126338 :   bits = TYPE_PRECISION (type) + (TYPE_UNSIGNED (type) ? 0 : -1);
    2125              : 
    2126      8126338 :   print_bits_of_hex (value, PBOH_SZ, bits);
    2127              : 
    2128      8126338 :   suffix = type_suffix (type);
    2129              : 
    2130      8126338 :   buf = (char *) alloca (strlen (max_macro) + 1 + strlen (value)
    2131              :                          + strlen (suffix) + 1);
    2132      8126338 :   sprintf (buf, "%s=%s%s", max_macro, value, suffix);
    2133              : 
    2134      8126338 :   cpp_define (parse_in, buf);
    2135              : 
    2136      8126338 :   if (min_macro)
    2137              :     {
    2138       641553 :       if (TYPE_UNSIGNED (type))
    2139              :         {
    2140       213864 :           buf = (char *) alloca (strlen (min_macro) + 2 + strlen (suffix) + 1);
    2141       213864 :           sprintf (buf, "%s=0%s", min_macro, suffix);
    2142              :         }
    2143              :       else
    2144              :         {
    2145       427689 :           buf = (char *) alloca (strlen (min_macro) + 3
    2146              :                                  + strlen (max_macro) + 6);
    2147       427689 :           sprintf (buf, "%s=(-%s - 1)", min_macro, max_macro);
    2148              :         }
    2149       641553 :       cpp_define (parse_in, buf);
    2150              :     }
    2151      8126338 : }
    2152              : 
    2153              : /* Define WIDTH_MACRO for the width of TYPE.  If TYPE2 is not NULL,
    2154              :    both types must have the same width.  */
    2155              : 
    2156              : static void
    2157      4277020 : builtin_define_type_width (const char *width_macro, tree type, tree type2)
    2158              : {
    2159      4277020 :   if (type2 != NULL_TREE)
    2160      3207765 :     gcc_assert (TYPE_PRECISION (type) == TYPE_PRECISION (type2));
    2161      4277020 :   builtin_define_with_int_value (width_macro, TYPE_PRECISION (type));
    2162      4277020 : }
    2163              : 
    2164              : #include "gt-c-family-c-cppbuiltin.h"
        

Generated by: LCOV version 2.4-beta

LCOV profile is generated on x86_64 machine using following configure options: configure --disable-bootstrap --enable-coverage=opt --enable-languages=c,c++,fortran,go,jit,lto,rust,m2 --enable-host-shared. GCC test suite is run with the built compiler.