LCOV - code coverage report
Current view: top level - gcc - opts.cc (source / functions) Coverage Total Hit
Test: gcc.info Lines: 88.5 % 1754 1553
Test Date: 2024-04-20 14:03:02 Functions: 96.4 % 55 53
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: - 0 0

             Branch data     Line data    Source code
       1                 :             : /* Command line option handling.
       2                 :             :    Copyright (C) 2002-2024 Free Software Foundation, Inc.
       3                 :             :    Contributed by Neil Booth.
       4                 :             : 
       5                 :             : This file is part of GCC.
       6                 :             : 
       7                 :             : GCC is free software; you can redistribute it and/or modify it under
       8                 :             : the terms of the GNU General Public License as published by the Free
       9                 :             : Software Foundation; either version 3, or (at your option) any later
      10                 :             : version.
      11                 :             : 
      12                 :             : GCC is distributed in the hope that it will be useful, but WITHOUT ANY
      13                 :             : WARRANTY; without even the implied warranty of MERCHANTABILITY or
      14                 :             : FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
      15                 :             : for more details.
      16                 :             : 
      17                 :             : You should have received a copy of the GNU General Public License
      18                 :             : along with GCC; see the file COPYING3.  If not see
      19                 :             : <http://www.gnu.org/licenses/>.  */
      20                 :             : 
      21                 :             : #include "config.h"
      22                 :             : #include "system.h"
      23                 :             : #include "intl.h"
      24                 :             : #include "coretypes.h"
      25                 :             : #include "opts.h"
      26                 :             : #include "tm.h"
      27                 :             : #include "flags.h"
      28                 :             : #include "diagnostic.h"
      29                 :             : #include "opts-diagnostic.h"
      30                 :             : #include "insn-attr-common.h"
      31                 :             : #include "common/common-target.h"
      32                 :             : #include "spellcheck.h"
      33                 :             : #include "opt-suggestions.h"
      34                 :             : #include "diagnostic-color.h"
      35                 :             : #include "version.h"
      36                 :             : #include "selftest.h"
      37                 :             : #include "file-prefix-map.h"
      38                 :             : 
      39                 :             : /* In this file all option sets are explicit.  */
      40                 :             : #undef OPTION_SET_P
      41                 :             : 
      42                 :             : /* Set by -fcanon-prefix-map.  */
      43                 :             : bool flag_canon_prefix_map;
      44                 :             : 
      45                 :             : /* Set by finish_options when flag_stack_protector was set only because of
      46                 :             :    -fhardened.  Yuck.  */
      47                 :             : bool flag_stack_protector_set_by_fhardened_p;
      48                 :             : 
      49                 :             : static void set_Wstrict_aliasing (struct gcc_options *opts, int onoff);
      50                 :             : 
      51                 :             : /* Names of fundamental debug info formats indexed by enum
      52                 :             :    debug_info_type.  */
      53                 :             : 
      54                 :             : const char *const debug_type_names[] =
      55                 :             : {
      56                 :             :   "none", "dwarf-2", "vms", "ctf", "btf"
      57                 :             : };
      58                 :             : 
      59                 :             : /* Bitmasks of fundamental debug info formats indexed by enum
      60                 :             :    debug_info_type.  */
      61                 :             : 
      62                 :             : static uint32_t debug_type_masks[] =
      63                 :             : {
      64                 :             :   NO_DEBUG, DWARF2_DEBUG, VMS_DEBUG,
      65                 :             :   CTF_DEBUG, BTF_DEBUG
      66                 :             : };
      67                 :             : 
      68                 :             : /* Names of the set of debug formats requested by user.  Updated and accessed
      69                 :             :    via debug_set_names.  */
      70                 :             : 
      71                 :             : static char df_set_names[sizeof "none dwarf-2 vms ctf btf"];
      72                 :             : 
      73                 :             : /* Get enum debug_info_type of the specified debug format, for error messages.
      74                 :             :    Can be used only for individual debug format types.  */
      75                 :             : 
      76                 :             : enum debug_info_type
      77                 :           0 : debug_set_to_format (uint32_t debug_info_set)
      78                 :             : {
      79                 :           0 :   int idx = 0;
      80                 :           0 :   enum debug_info_type dinfo_type = DINFO_TYPE_NONE;
      81                 :             :   /* Find first set bit.  */
      82                 :           0 :   if (debug_info_set)
      83                 :           0 :     idx = exact_log2 (debug_info_set & - debug_info_set);
      84                 :             :   /* Check that only one bit is set, if at all.  This function is meant to be
      85                 :             :      used only for vanilla debug_info_set bitmask values, i.e. for individual
      86                 :             :      debug format types upto DINFO_TYPE_MAX.  */
      87                 :           0 :   gcc_assert ((debug_info_set & (debug_info_set - 1)) == 0);
      88                 :           0 :   dinfo_type = (enum debug_info_type)idx;
      89                 :           0 :   gcc_assert (dinfo_type <= DINFO_TYPE_MAX);
      90                 :           0 :   return dinfo_type;
      91                 :             : }
      92                 :             : 
      93                 :             : /* Get the number of debug formats enabled for output.  */
      94                 :             : 
      95                 :             : unsigned int
      96                 :          12 : debug_set_count (uint32_t w_symbols)
      97                 :             : {
      98                 :          12 :   unsigned int count = 0;
      99                 :          18 :   while (w_symbols)
     100                 :             :     {
     101                 :           6 :       ++ count;
     102                 :           6 :       w_symbols &= ~ (w_symbols & - w_symbols);
     103                 :             :     }
     104                 :          12 :   return count;
     105                 :             : }
     106                 :             : 
     107                 :             : /* Get the names of the debug formats enabled for output.  */
     108                 :             : 
     109                 :             : const char *
     110                 :          12 : debug_set_names (uint32_t w_symbols)
     111                 :             : {
     112                 :          12 :   uint32_t df_mask = 0;
     113                 :             :   /* Reset the string to be returned.  */
     114                 :          12 :   memset (df_set_names, 0, sizeof (df_set_names));
     115                 :             :   /* Get the popcount.  */
     116                 :          12 :   int num_set_df = debug_set_count (w_symbols);
     117                 :             :   /* Iterate over the debug formats.  Add name string for those enabled.  */
     118                 :          18 :   for (int i = DINFO_TYPE_NONE; i <= DINFO_TYPE_MAX; i++)
     119                 :             :     {
     120                 :          18 :       df_mask = debug_type_masks[i];
     121                 :          18 :       if (w_symbols & df_mask)
     122                 :             :         {
     123                 :           6 :           strcat (df_set_names, debug_type_names[i]);
     124                 :           6 :           num_set_df--;
     125                 :           6 :           if (num_set_df)
     126                 :           0 :             strcat (df_set_names, " ");
     127                 :             :           else
     128                 :             :             break;
     129                 :             :         }
     130                 :          12 :       else if (!w_symbols)
     131                 :             :         {
     132                 :             :           /* No debug formats enabled.  */
     133                 :           6 :           gcc_assert (i == DINFO_TYPE_NONE);
     134                 :           6 :           strcat (df_set_names, debug_type_names[i]);
     135                 :           6 :           break;
     136                 :             :         }
     137                 :             :     }
     138                 :          12 :   return df_set_names;
     139                 :             : }
     140                 :             : 
     141                 :             : /* Return TRUE iff BTF debug info is enabled.  */
     142                 :             : 
     143                 :             : bool
     144                 :      103953 : btf_debuginfo_p ()
     145                 :             : {
     146                 :      103953 :   return (write_symbols & BTF_DEBUG);
     147                 :             : }
     148                 :             : 
     149                 :             : /* Return TRUE iff BTF with CO-RE debug info is enabled.  */
     150                 :             : 
     151                 :             : bool
     152                 :         304 : btf_with_core_debuginfo_p ()
     153                 :             : {
     154                 :         304 :   return (write_symbols & BTF_WITH_CORE_DEBUG);
     155                 :             : }
     156                 :             : 
     157                 :             : /* Return TRUE iff CTF debug info is enabled.  */
     158                 :             : 
     159                 :             : bool
     160                 :         351 : ctf_debuginfo_p ()
     161                 :             : {
     162                 :         351 :   return (write_symbols & CTF_DEBUG);
     163                 :             : }
     164                 :             : 
     165                 :             : /* Return TRUE iff dwarf2 debug info is enabled.  */
     166                 :             : 
     167                 :             : bool
     168                 :    40364375 : dwarf_debuginfo_p (struct gcc_options *opts)
     169                 :             : {
     170                 :    40364375 :   return (opts->x_write_symbols & DWARF2_DEBUG);
     171                 :             : }
     172                 :             : 
     173                 :             : /* Return true iff the debug info format is to be generated based on DWARF
     174                 :             :    DIEs (like CTF and BTF debug info formats).  */
     175                 :             : 
     176                 :     4711613 : bool dwarf_based_debuginfo_p ()
     177                 :             : {
     178                 :     4711613 :   return ((write_symbols & CTF_DEBUG)
     179                 :     4711613 :           || (write_symbols & BTF_DEBUG));
     180                 :             : }
     181                 :             : 
     182                 :             : /* All flag uses below need to explicitely reference the option sets
     183                 :             :    to operate on.  */
     184                 :             : #define global_options DO_NOT_USE
     185                 :             : #define global_options_set DO_NOT_USE
     186                 :             : 
     187                 :             : /* Parse the -femit-struct-debug-detailed option value
     188                 :             :    and set the flag variables. */
     189                 :             : 
     190                 :             : #define MATCH( prefix, string ) \
     191                 :             :   ((strncmp (prefix, string, sizeof prefix - 1) == 0) \
     192                 :             :    ? ((string += sizeof prefix - 1), 1) : 0)
     193                 :             : 
     194                 :             : void
     195                 :          48 : set_struct_debug_option (struct gcc_options *opts, location_t loc,
     196                 :             :                          const char *spec)
     197                 :             : {
     198                 :             :   /* various labels for comparison */
     199                 :          68 :   static const char dfn_lbl[] = "dfn:", dir_lbl[] = "dir:", ind_lbl[] = "ind:";
     200                 :          68 :   static const char ord_lbl[] = "ord:", gen_lbl[] = "gen:";
     201                 :          68 :   static const char none_lbl[] = "none", any_lbl[] = "any";
     202                 :          68 :   static const char base_lbl[] = "base", sys_lbl[] = "sys";
     203                 :             : 
     204                 :          68 :   enum debug_struct_file files = DINFO_STRUCT_FILE_ANY;
     205                 :             :   /* Default is to apply to as much as possible. */
     206                 :          68 :   enum debug_info_usage usage = DINFO_USAGE_NUM_ENUMS;
     207                 :          68 :   int ord = 1, gen = 1;
     208                 :             : 
     209                 :             :   /* What usage? */
     210                 :          68 :   if (MATCH (dfn_lbl, spec))
     211                 :             :     usage = DINFO_USAGE_DFN;
     212                 :          68 :   else if (MATCH (dir_lbl, spec))
     213                 :             :     usage = DINFO_USAGE_DIR_USE;
     214                 :          48 :   else if (MATCH (ind_lbl, spec))
     215                 :          10 :     usage = DINFO_USAGE_IND_USE;
     216                 :             : 
     217                 :             :   /* Generics or not? */
     218                 :          68 :   if (MATCH (ord_lbl, spec))
     219                 :             :     gen = 0;
     220                 :          58 :   else if (MATCH (gen_lbl, spec))
     221                 :          10 :     ord = 0;
     222                 :             : 
     223                 :             :   /* What allowable environment? */
     224                 :          68 :   if (MATCH (none_lbl, spec))
     225                 :             :     files = DINFO_STRUCT_FILE_NONE;
     226                 :          63 :   else if (MATCH (any_lbl, spec))
     227                 :             :     files = DINFO_STRUCT_FILE_ANY;
     228                 :          48 :   else if (MATCH (sys_lbl, spec))
     229                 :             :     files = DINFO_STRUCT_FILE_SYS;
     230                 :          33 :   else if (MATCH (base_lbl, spec))
     231                 :             :     files = DINFO_STRUCT_FILE_BASE;
     232                 :             :   else
     233                 :           0 :     error_at (loc,
     234                 :             :               "argument %qs to %<-femit-struct-debug-detailed%> "
     235                 :             :               "not recognized",
     236                 :             :               spec);
     237                 :             : 
     238                 :             :   /* Effect the specification. */
     239                 :          68 :   if (usage == DINFO_USAGE_NUM_ENUMS)
     240                 :             :     {
     241                 :          38 :       if (ord)
     242                 :             :         {
     243                 :          38 :           opts->x_debug_struct_ordinary[DINFO_USAGE_DFN] = files;
     244                 :          38 :           opts->x_debug_struct_ordinary[DINFO_USAGE_DIR_USE] = files;
     245                 :          38 :           opts->x_debug_struct_ordinary[DINFO_USAGE_IND_USE] = files;
     246                 :             :         }
     247                 :          38 :       if (gen)
     248                 :             :         {
     249                 :          38 :           opts->x_debug_struct_generic[DINFO_USAGE_DFN] = files;
     250                 :          38 :           opts->x_debug_struct_generic[DINFO_USAGE_DIR_USE] = files;
     251                 :          38 :           opts->x_debug_struct_generic[DINFO_USAGE_IND_USE] = files;
     252                 :             :         }
     253                 :             :     }
     254                 :             :   else
     255                 :             :     {
     256                 :          30 :       if (ord)
     257                 :          20 :         opts->x_debug_struct_ordinary[usage] = files;
     258                 :          30 :       if (gen)
     259                 :          20 :         opts->x_debug_struct_generic[usage] = files;
     260                 :             :     }
     261                 :             : 
     262                 :          68 :   if (*spec == ',')
     263                 :          20 :     set_struct_debug_option (opts, loc, spec+1);
     264                 :             :   else
     265                 :             :     {
     266                 :             :       /* No more -femit-struct-debug-detailed specifications.
     267                 :             :          Do final checks. */
     268                 :          48 :       if (*spec != '\0')
     269                 :           0 :         error_at (loc,
     270                 :             :                   "argument %qs to %<-femit-struct-debug-detailed%> unknown",
     271                 :             :                   spec);
     272                 :          48 :       if (opts->x_debug_struct_ordinary[DINFO_USAGE_DIR_USE]
     273                 :          48 :                 < opts->x_debug_struct_ordinary[DINFO_USAGE_IND_USE]
     274                 :          48 :           || opts->x_debug_struct_generic[DINFO_USAGE_DIR_USE]
     275                 :          48 :                 < opts->x_debug_struct_generic[DINFO_USAGE_IND_USE])
     276                 :           0 :         error_at (loc,
     277                 :             :                   "%<-femit-struct-debug-detailed=dir:...%> must allow "
     278                 :             :                   "at least as much as "
     279                 :             :                   "%<-femit-struct-debug-detailed=ind:...%>");
     280                 :             :     }
     281                 :          48 : }
     282                 :             : 
     283                 :             : /* Strip off a legitimate source ending from the input string NAME of
     284                 :             :    length LEN.  Rather than having to know the names used by all of
     285                 :             :    our front ends, we strip off an ending of a period followed by
     286                 :             :    up to fource characters.  (C++ uses ".cpp".)  */
     287                 :             : 
     288                 :             : void
     289                 :        1304 : strip_off_ending (char *name, int len)
     290                 :             : {
     291                 :        1304 :   int i;
     292                 :        1430 :   for (i = 2; i < 5 && len > i; i++)
     293                 :             :     {
     294                 :        1430 :       if (name[len - i] == '.')
     295                 :             :         {
     296                 :        1304 :           name[len - i] = '\0';
     297                 :        1304 :           break;
     298                 :             :         }
     299                 :             :     }
     300                 :        1304 : }
     301                 :             : 
     302                 :             : /* Find the base name of a path, stripping off both directories and
     303                 :             :    a single final extension. */
     304                 :             : int
     305                 :      282053 : base_of_path (const char *path, const char **base_out)
     306                 :             : {
     307                 :      282053 :   const char *base = path;
     308                 :      282053 :   const char *dot = 0;
     309                 :      282053 :   const char *p = path;
     310                 :      282053 :   char c = *p;
     311                 :    21693389 :   while (c)
     312                 :             :     {
     313                 :    21411336 :       if (IS_DIR_SEPARATOR (c))
     314                 :             :         {
     315                 :     2445224 :           base = p + 1;
     316                 :     2445224 :           dot = 0;
     317                 :             :         }
     318                 :    18966112 :       else if (c == '.')
     319                 :      493056 :         dot = p;
     320                 :    21411336 :       c = *++p;
     321                 :             :     }
     322                 :      282053 :   if (!dot)
     323                 :         425 :     dot = p;
     324                 :      282053 :   *base_out = base;
     325                 :      282053 :   return dot - base;
     326                 :             : }
     327                 :             : 
     328                 :             : /* What to print when a switch has no documentation.  */
     329                 :             : static const char undocumented_msg[] = N_("This option lacks documentation.");
     330                 :             : static const char use_diagnosed_msg[] = N_("Uses of this option are diagnosed.");
     331                 :             : 
     332                 :             : typedef char *char_p; /* For DEF_VEC_P.  */
     333                 :             : 
     334                 :             : static void set_debug_level (uint32_t dinfo, int extended,
     335                 :             :                              const char *arg, struct gcc_options *opts,
     336                 :             :                              struct gcc_options *opts_set,
     337                 :             :                              location_t loc);
     338                 :             : static void set_fast_math_flags (struct gcc_options *opts, int set);
     339                 :             : static void decode_d_option (const char *arg, struct gcc_options *opts,
     340                 :             :                              location_t loc, diagnostic_context *dc);
     341                 :             : static void set_unsafe_math_optimizations_flags (struct gcc_options *opts,
     342                 :             :                                                  int set);
     343                 :             : static void enable_warning_as_error (const char *arg, int value,
     344                 :             :                                      unsigned int lang_mask,
     345                 :             :                                      const struct cl_option_handlers *handlers,
     346                 :             :                                      struct gcc_options *opts,
     347                 :             :                                      struct gcc_options *opts_set,
     348                 :             :                                      location_t loc,
     349                 :             :                                      diagnostic_context *dc);
     350                 :             : 
     351                 :             : /* Handle a back-end option; arguments and return value as for
     352                 :             :    handle_option.  */
     353                 :             : 
     354                 :             : bool
     355                 :     1169120 : target_handle_option (struct gcc_options *opts,
     356                 :             :                       struct gcc_options *opts_set,
     357                 :             :                       const struct cl_decoded_option *decoded,
     358                 :             :                       unsigned int lang_mask ATTRIBUTE_UNUSED, int kind,
     359                 :             :                       location_t loc,
     360                 :             :                       const struct cl_option_handlers *handlers ATTRIBUTE_UNUSED,
     361                 :             :                       diagnostic_context *dc, void (*) (void))
     362                 :             : {
     363                 :     1169120 :   gcc_assert (dc == global_dc);
     364                 :     1169120 :   gcc_assert (kind == DK_UNSPECIFIED);
     365                 :     1169120 :   return targetm_common.handle_option (opts, opts_set, decoded, loc);
     366                 :             : }
     367                 :             : 
     368                 :             : /* Add comma-separated strings to a char_p vector.  */
     369                 :             : 
     370                 :             : static void
     371                 :         107 : add_comma_separated_to_vector (void **pvec, const char *arg)
     372                 :             : {
     373                 :         107 :   char *tmp;
     374                 :         107 :   char *r;
     375                 :         107 :   char *w;
     376                 :         107 :   char *token_start;
     377                 :         107 :   vec<char_p> *v = (vec<char_p> *) *pvec;
     378                 :             :   
     379                 :         107 :   vec_check_alloc (v, 1);
     380                 :             : 
     381                 :             :   /* We never free this string.  */
     382                 :         107 :   tmp = xstrdup (arg);
     383                 :             : 
     384                 :         107 :   r = tmp;
     385                 :         107 :   w = tmp;
     386                 :         107 :   token_start = tmp;
     387                 :             : 
     388                 :        1269 :   while (*r != '\0')
     389                 :             :     {
     390                 :        1162 :       if (*r == ',')
     391                 :             :         {
     392                 :          20 :           *w++ = '\0';
     393                 :          20 :           ++r;
     394                 :          20 :           v->safe_push (token_start);
     395                 :          20 :           token_start = w;
     396                 :             :         }
     397                 :        1162 :       if (*r == '\\' && r[1] == ',')
     398                 :             :         {
     399                 :           0 :           *w++ = ',';
     400                 :           0 :           r += 2;
     401                 :             :         }
     402                 :             :       else
     403                 :        1162 :         *w++ = *r++;
     404                 :             :     }
     405                 :             : 
     406                 :         107 :   *w = '\0';
     407                 :         107 :   if (*token_start != '\0')
     408                 :         107 :     v->safe_push (token_start);
     409                 :             : 
     410                 :         107 :   *pvec = v;
     411                 :         107 : }
     412                 :             : 
     413                 :             : /* Initialize opts_obstack.  */
     414                 :             : 
     415                 :             : void
     416                 :      596120 : init_opts_obstack (void)
     417                 :             : {
     418                 :      596120 :   gcc_obstack_init (&opts_obstack);
     419                 :      596120 : }
     420                 :             : 
     421                 :             : /* Initialize OPTS and OPTS_SET before using them in parsing options.  */
     422                 :             : 
     423                 :             : void
     424                 :    46469209 : init_options_struct (struct gcc_options *opts, struct gcc_options *opts_set)
     425                 :             : {
     426                 :             :   /* Ensure that opts_obstack has already been initialized by the time
     427                 :             :      that we initialize any gcc_options instances (PR jit/68446).  */
     428                 :    46469209 :   gcc_assert (opts_obstack.chunk_size > 0);
     429                 :             : 
     430                 :    46469209 :   *opts = global_options_init;
     431                 :             : 
     432                 :    46469209 :   if (opts_set)
     433                 :      583955 :     memset (opts_set, 0, sizeof (*opts_set));
     434                 :             : 
     435                 :             :   /* Initialize whether `char' is signed.  */
     436                 :    46469209 :   opts->x_flag_signed_char = DEFAULT_SIGNED_CHAR;
     437                 :             :   /* Set this to a special "uninitialized" value.  The actual default
     438                 :             :      is set after target options have been processed.  */
     439                 :    46469209 :   opts->x_flag_short_enums = 2;
     440                 :             : 
     441                 :             :   /* Initialize target_flags before default_options_optimization
     442                 :             :      so the latter can modify it.  */
     443                 :    46469209 :   opts->x_target_flags = targetm_common.default_target_flags;
     444                 :             : 
     445                 :             :   /* Some targets have ABI-specified unwind tables.  */
     446                 :    46469209 :   opts->x_flag_unwind_tables = targetm_common.unwind_tables_default;
     447                 :             : 
     448                 :             :   /* Some targets have other target-specific initialization.  */
     449                 :    46469209 :   targetm_common.option_init_struct (opts);
     450                 :    46469209 : }
     451                 :             : 
     452                 :             : /* If indicated by the optimization level LEVEL (-Os if SIZE is set,
     453                 :             :    -Ofast if FAST is set, -Og if DEBUG is set), apply the option DEFAULT_OPT
     454                 :             :    to OPTS and OPTS_SET, diagnostic context DC, location LOC, with language
     455                 :             :    mask LANG_MASK and option handlers HANDLERS.  */
     456                 :             : 
     457                 :             : static void
     458                 :    62018394 : maybe_default_option (struct gcc_options *opts,
     459                 :             :                       struct gcc_options *opts_set,
     460                 :             :                       const struct default_options *default_opt,
     461                 :             :                       int level, bool size, bool fast, bool debug,
     462                 :             :                       unsigned int lang_mask,
     463                 :             :                       const struct cl_option_handlers *handlers,
     464                 :             :                       location_t loc,
     465                 :             :                       diagnostic_context *dc)
     466                 :             : {
     467                 :    62018394 :   const struct cl_option *option = &cl_options[default_opt->opt_index];
     468                 :    62018394 :   bool enabled;
     469                 :             : 
     470                 :    62018394 :   if (size)
     471                 :     1629744 :     gcc_assert (level == 2);
     472                 :    62018394 :   if (fast)
     473                 :       66006 :     gcc_assert (level == 3);
     474                 :    62018394 :   if (debug)
     475                 :       84816 :     gcc_assert (level == 1);
     476                 :             : 
     477                 :    62018394 :   switch (default_opt->levels)
     478                 :             :     {
     479                 :             :     case OPT_LEVELS_ALL:
     480                 :             :       enabled = true;
     481                 :             :       break;
     482                 :             : 
     483                 :           0 :     case OPT_LEVELS_0_ONLY:
     484                 :           0 :       enabled = (level == 0);
     485                 :           0 :       break;
     486                 :             : 
     487                 :    15232588 :     case OPT_LEVELS_1_PLUS:
     488                 :    15232588 :       enabled = (level >= 1);
     489                 :    15232588 :       break;
     490                 :             : 
     491                 :           0 :     case OPT_LEVELS_1_PLUS_SPEED_ONLY:
     492                 :           0 :       enabled = (level >= 1 && !size && !debug);
     493                 :             :       break;
     494                 :             : 
     495                 :     7072273 :     case OPT_LEVELS_1_PLUS_NOT_DEBUG:
     496                 :     7072273 :       enabled = (level >= 1 && !debug);
     497                 :     7072273 :       break;
     498                 :             : 
     499                 :    20128777 :     case OPT_LEVELS_2_PLUS:
     500                 :    20128777 :       enabled = (level >= 2);
     501                 :    20128777 :       break;
     502                 :             : 
     503                 :     6528252 :     case OPT_LEVELS_2_PLUS_SPEED_ONLY:
     504                 :     6528252 :       enabled = (level >= 2 && !size && !debug);
     505                 :             :       break;
     506                 :             : 
     507                 :     9792378 :     case OPT_LEVELS_3_PLUS:
     508                 :     9792378 :       enabled = (level >= 3);
     509                 :     9792378 :       break;
     510                 :             : 
     511                 :           0 :     case OPT_LEVELS_3_PLUS_AND_SIZE:
     512                 :           0 :       enabled = (level >= 3 || size);
     513                 :           0 :       break;
     514                 :             : 
     515                 :             :     case OPT_LEVELS_SIZE:
     516                 :             :       enabled = size;
     517                 :             :       break;
     518                 :             : 
     519                 :     1632063 :     case OPT_LEVELS_FAST:
     520                 :     1632063 :       enabled = fast;
     521                 :     1632063 :       break;
     522                 :             : 
     523                 :           0 :     case OPT_LEVELS_NONE:
     524                 :           0 :     default:
     525                 :           0 :       gcc_unreachable ();
     526                 :             :     }
     527                 :             : 
     528                 :    53858079 :   if (enabled)
     529                 :    39111491 :     handle_generated_option (opts, opts_set, default_opt->opt_index,
     530                 :    39111491 :                              default_opt->arg, default_opt->value,
     531                 :             :                              lang_mask, DK_UNSPECIFIED, loc,
     532                 :             :                              handlers, true, dc);
     533                 :    22906903 :   else if (default_opt->arg == NULL
     534                 :    22906903 :            && !option->cl_reject_negative
     535                 :    21787801 :            && !(option->flags & CL_PARAMS))
     536                 :    19202031 :     handle_generated_option (opts, opts_set, default_opt->opt_index,
     537                 :    19202031 :                              default_opt->arg, !default_opt->value,
     538                 :             :                              lang_mask, DK_UNSPECIFIED, loc,
     539                 :             :                              handlers, true, dc);
     540                 :    62018394 : }
     541                 :             : 
     542                 :             : /* As indicated by the optimization level LEVEL (-Os if SIZE is set,
     543                 :             :    -Ofast if FAST is set), apply the options in array DEFAULT_OPTS to
     544                 :             :    OPTS and OPTS_SET, diagnostic context DC, location LOC, with
     545                 :             :    language mask LANG_MASK and option handlers HANDLERS.  */
     546                 :             : 
     547                 :             : static void
     548                 :     1088042 : maybe_default_options (struct gcc_options *opts,
     549                 :             :                        struct gcc_options *opts_set,
     550                 :             :                        const struct default_options *default_opts,
     551                 :             :                        int level, bool size, bool fast, bool debug,
     552                 :             :                        unsigned int lang_mask,
     553                 :             :                        const struct cl_option_handlers *handlers,
     554                 :             :                        location_t loc,
     555                 :             :                        diagnostic_context *dc)
     556                 :             : {
     557                 :     1088042 :   size_t i;
     558                 :             : 
     559                 :    63106436 :   for (i = 0; default_opts[i].levels != OPT_LEVELS_NONE; i++)
     560                 :    62018394 :     maybe_default_option (opts, opts_set, &default_opts[i],
     561                 :             :                           level, size, fast, debug,
     562                 :             :                           lang_mask, handlers, loc, dc);
     563                 :     1088042 : }
     564                 :             : 
     565                 :             : /* Table of options enabled by default at different levels.
     566                 :             :    Please keep this list sorted by level and alphabetized within
     567                 :             :    each level; this makes it easier to keep the documentation
     568                 :             :    in sync.  */
     569                 :             : 
     570                 :             : static const struct default_options default_options_table[] =
     571                 :             :   {
     572                 :             :     /* -O1 and -Og optimizations.  */
     573                 :             :     { OPT_LEVELS_1_PLUS, OPT_fcombine_stack_adjustments, NULL, 1 },
     574                 :             :     { OPT_LEVELS_1_PLUS, OPT_fcompare_elim, NULL, 1 },
     575                 :             :     { OPT_LEVELS_1_PLUS, OPT_fcprop_registers, NULL, 1 },
     576                 :             :     { OPT_LEVELS_1_PLUS, OPT_fdefer_pop, NULL, 1 },
     577                 :             :     { OPT_LEVELS_1_PLUS, OPT_fforward_propagate, NULL, 1 },
     578                 :             :     { OPT_LEVELS_1_PLUS, OPT_fguess_branch_probability, NULL, 1 },
     579                 :             :     { OPT_LEVELS_1_PLUS, OPT_fipa_profile, NULL, 1 },
     580                 :             :     { OPT_LEVELS_1_PLUS, OPT_fipa_pure_const, NULL, 1 },
     581                 :             :     { OPT_LEVELS_1_PLUS, OPT_fipa_reference, NULL, 1 },
     582                 :             :     { OPT_LEVELS_1_PLUS, OPT_fipa_reference_addressable, NULL, 1 },
     583                 :             :     { OPT_LEVELS_1_PLUS, OPT_fmerge_constants, NULL, 1 },
     584                 :             :     { OPT_LEVELS_1_PLUS, OPT_fomit_frame_pointer, NULL, 1 },
     585                 :             :     { OPT_LEVELS_1_PLUS, OPT_freorder_blocks, NULL, 1 },
     586                 :             :     { OPT_LEVELS_1_PLUS, OPT_fshrink_wrap, NULL, 1 },
     587                 :             :     { OPT_LEVELS_1_PLUS, OPT_fsplit_wide_types, NULL, 1 },
     588                 :             :     { OPT_LEVELS_1_PLUS, OPT_fthread_jumps, NULL, 1 },
     589                 :             :     { OPT_LEVELS_1_PLUS, OPT_ftree_builtin_call_dce, NULL, 1 },
     590                 :             :     { OPT_LEVELS_1_PLUS, OPT_ftree_ccp, NULL, 1 },
     591                 :             :     { OPT_LEVELS_1_PLUS, OPT_ftree_ch, NULL, 1 },
     592                 :             :     { OPT_LEVELS_1_PLUS, OPT_ftree_coalesce_vars, NULL, 1 },
     593                 :             :     { OPT_LEVELS_1_PLUS, OPT_ftree_copy_prop, NULL, 1 },
     594                 :             :     { OPT_LEVELS_1_PLUS, OPT_ftree_dce, NULL, 1 },
     595                 :             :     { OPT_LEVELS_1_PLUS, OPT_ftree_dominator_opts, NULL, 1 },
     596                 :             :     { OPT_LEVELS_1_PLUS, OPT_ftree_fre, NULL, 1 },
     597                 :             :     { OPT_LEVELS_1_PLUS, OPT_ftree_sink, NULL, 1 },
     598                 :             :     { OPT_LEVELS_1_PLUS, OPT_ftree_slsr, NULL, 1 },
     599                 :             :     { OPT_LEVELS_1_PLUS, OPT_ftree_ter, NULL, 1 },
     600                 :             :     { OPT_LEVELS_1_PLUS, OPT_fvar_tracking, NULL, 1 },
     601                 :             : 
     602                 :             :     /* -O1 (and not -Og) optimizations.  */
     603                 :             :     { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_fbranch_count_reg, NULL, 1 },
     604                 :             : #if DELAY_SLOTS
     605                 :             :     { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_fdelayed_branch, NULL, 1 },
     606                 :             : #endif
     607                 :             :     { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_fdse, NULL, 1 },
     608                 :             :     { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_fif_conversion, NULL, 1 },
     609                 :             :     { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_fif_conversion2, NULL, 1 },
     610                 :             :     { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_finline_functions_called_once, NULL, 1 },
     611                 :             :     { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_fmove_loop_invariants, NULL, 1 },
     612                 :             :     { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_fmove_loop_stores, NULL, 1 },
     613                 :             :     { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_fssa_phiopt, NULL, 1 },
     614                 :             :     { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_fipa_modref, NULL, 1 },
     615                 :             :     { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_ftree_bit_ccp, NULL, 1 },
     616                 :             :     { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_ftree_dse, NULL, 1 },
     617                 :             :     { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_ftree_pta, NULL, 1 },
     618                 :             :     { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_ftree_sra, NULL, 1 },
     619                 :             : 
     620                 :             :     /* -O2 and -Os optimizations.  */
     621                 :             :     { OPT_LEVELS_2_PLUS, OPT_fcaller_saves, NULL, 1 },
     622                 :             :     { OPT_LEVELS_2_PLUS, OPT_fcode_hoisting, NULL, 1 },
     623                 :             :     { OPT_LEVELS_2_PLUS, OPT_fcrossjumping, NULL, 1 },
     624                 :             :     { OPT_LEVELS_2_PLUS, OPT_fcse_follow_jumps, NULL, 1 },
     625                 :             :     { OPT_LEVELS_2_PLUS, OPT_fdevirtualize, NULL, 1 },
     626                 :             :     { OPT_LEVELS_2_PLUS, OPT_fdevirtualize_speculatively, NULL, 1 },
     627                 :             :     { OPT_LEVELS_2_PLUS, OPT_fexpensive_optimizations, NULL, 1 },
     628                 :             :     { OPT_LEVELS_2_PLUS, OPT_fgcse, NULL, 1 },
     629                 :             :     { OPT_LEVELS_2_PLUS, OPT_fhoist_adjacent_loads, NULL, 1 },
     630                 :             :     { OPT_LEVELS_2_PLUS, OPT_findirect_inlining, NULL, 1 },
     631                 :             :     { OPT_LEVELS_2_PLUS, OPT_finline_small_functions, NULL, 1 },
     632                 :             :     { OPT_LEVELS_2_PLUS, OPT_fipa_bit_cp, NULL, 1 },
     633                 :             :     { OPT_LEVELS_2_PLUS, OPT_fipa_cp, NULL, 1 },
     634                 :             :     { OPT_LEVELS_2_PLUS, OPT_fipa_icf, NULL, 1 },
     635                 :             :     { OPT_LEVELS_2_PLUS, OPT_fipa_ra, NULL, 1 },
     636                 :             :     { OPT_LEVELS_2_PLUS, OPT_fipa_sra, NULL, 1 },
     637                 :             :     { OPT_LEVELS_2_PLUS, OPT_fipa_vrp, NULL, 1 },
     638                 :             :     { OPT_LEVELS_2_PLUS, OPT_fisolate_erroneous_paths_dereference, NULL, 1 },
     639                 :             :     { OPT_LEVELS_2_PLUS, OPT_flra_remat, NULL, 1 },
     640                 :             :     { OPT_LEVELS_2_PLUS, OPT_foptimize_sibling_calls, NULL, 1 },
     641                 :             :     { OPT_LEVELS_2_PLUS, OPT_fpartial_inlining, NULL, 1 },
     642                 :             :     { OPT_LEVELS_2_PLUS, OPT_fpeephole2, NULL, 1 },
     643                 :             :     { OPT_LEVELS_2_PLUS, OPT_freorder_functions, NULL, 1 },
     644                 :             :     { OPT_LEVELS_2_PLUS, OPT_frerun_cse_after_loop, NULL, 1 },
     645                 :             : #ifdef INSN_SCHEDULING
     646                 :             :     { OPT_LEVELS_2_PLUS, OPT_fschedule_insns2, NULL, 1 },
     647                 :             : #endif
     648                 :             :     { OPT_LEVELS_2_PLUS, OPT_fstrict_aliasing, NULL, 1 },
     649                 :             :     { OPT_LEVELS_2_PLUS, OPT_fstore_merging, NULL, 1 },
     650                 :             :     { OPT_LEVELS_2_PLUS, OPT_ftree_pre, NULL, 1 },
     651                 :             :     { OPT_LEVELS_2_PLUS, OPT_ftree_switch_conversion, NULL, 1 },
     652                 :             :     { OPT_LEVELS_2_PLUS, OPT_ftree_tail_merge, NULL, 1 },
     653                 :             :     { OPT_LEVELS_2_PLUS, OPT_ftree_vrp, NULL, 1 },
     654                 :             :     { OPT_LEVELS_2_PLUS, OPT_fvect_cost_model_, NULL,
     655                 :             :       VECT_COST_MODEL_VERY_CHEAP },
     656                 :             :     { OPT_LEVELS_2_PLUS, OPT_finline_functions, NULL, 1 },
     657                 :             :     { OPT_LEVELS_2_PLUS, OPT_ftree_loop_distribute_patterns, NULL, 1 },
     658                 :             : 
     659                 :             :     /* -O2 and above optimizations, but not -Os or -Og.  */
     660                 :             :     { OPT_LEVELS_2_PLUS_SPEED_ONLY, OPT_falign_functions, NULL, 1 },
     661                 :             :     { OPT_LEVELS_2_PLUS_SPEED_ONLY, OPT_falign_jumps, NULL, 1 },
     662                 :             :     { OPT_LEVELS_2_PLUS_SPEED_ONLY, OPT_falign_labels, NULL, 1 },
     663                 :             :     { OPT_LEVELS_2_PLUS_SPEED_ONLY, OPT_falign_loops, NULL, 1 },
     664                 :             :     { OPT_LEVELS_2_PLUS_SPEED_ONLY, OPT_foptimize_strlen, NULL, 1 },
     665                 :             :     { OPT_LEVELS_2_PLUS_SPEED_ONLY, OPT_freorder_blocks_algorithm_, NULL,
     666                 :             :       REORDER_BLOCKS_ALGORITHM_STC },
     667                 :             :     { OPT_LEVELS_2_PLUS_SPEED_ONLY, OPT_ftree_loop_vectorize, NULL, 1 },
     668                 :             :     { OPT_LEVELS_2_PLUS_SPEED_ONLY, OPT_ftree_slp_vectorize, NULL, 1 },
     669                 :             :     { OPT_LEVELS_2_PLUS_SPEED_ONLY, OPT_fopenmp_target_simd_clone_, NULL,
     670                 :             :       OMP_TARGET_SIMD_CLONE_NOHOST },
     671                 :             : #ifdef INSN_SCHEDULING
     672                 :             :   /* Only run the pre-regalloc scheduling pass if optimizing for speed.  */
     673                 :             :     { OPT_LEVELS_2_PLUS_SPEED_ONLY, OPT_fschedule_insns, NULL, 1 },
     674                 :             : #endif
     675                 :             : 
     676                 :             :     /* -O3 and -Os optimizations.  */
     677                 :             : 
     678                 :             :     /* -O3 optimizations.  */
     679                 :             :     { OPT_LEVELS_3_PLUS, OPT_fgcse_after_reload, NULL, 1 },
     680                 :             :     { OPT_LEVELS_3_PLUS, OPT_fipa_cp_clone, NULL, 1 },
     681                 :             :     { OPT_LEVELS_3_PLUS, OPT_floop_interchange, NULL, 1 },
     682                 :             :     { OPT_LEVELS_3_PLUS, OPT_floop_unroll_and_jam, NULL, 1 },
     683                 :             :     { OPT_LEVELS_3_PLUS, OPT_fpeel_loops, NULL, 1 },
     684                 :             :     { OPT_LEVELS_3_PLUS, OPT_fpredictive_commoning, NULL, 1 },
     685                 :             :     { OPT_LEVELS_3_PLUS, OPT_fsplit_loops, NULL, 1 },
     686                 :             :     { OPT_LEVELS_3_PLUS, OPT_fsplit_paths, NULL, 1 },
     687                 :             :     { OPT_LEVELS_3_PLUS, OPT_ftree_loop_distribution, NULL, 1 },
     688                 :             :     { OPT_LEVELS_3_PLUS, OPT_ftree_partial_pre, NULL, 1 },
     689                 :             :     { OPT_LEVELS_3_PLUS, OPT_funswitch_loops, NULL, 1 },
     690                 :             :     { OPT_LEVELS_3_PLUS, OPT_fvect_cost_model_, NULL, VECT_COST_MODEL_DYNAMIC },
     691                 :             :     { OPT_LEVELS_3_PLUS, OPT_fversion_loops_for_strides, NULL, 1 },
     692                 :             : 
     693                 :             :     /* -O3 parameters.  */
     694                 :             :     { OPT_LEVELS_3_PLUS, OPT__param_max_inline_insns_auto_, NULL, 30 },
     695                 :             :     { OPT_LEVELS_3_PLUS, OPT__param_early_inlining_insns_, NULL, 14 },
     696                 :             :     { OPT_LEVELS_3_PLUS, OPT__param_inline_heuristics_hint_percent_, NULL, 600 },
     697                 :             :     { OPT_LEVELS_3_PLUS, OPT__param_inline_min_speedup_, NULL, 15 },
     698                 :             :     { OPT_LEVELS_3_PLUS, OPT__param_max_inline_insns_single_, NULL, 200 },
     699                 :             : 
     700                 :             :     /* -Ofast adds optimizations to -O3.  */
     701                 :             :     { OPT_LEVELS_FAST, OPT_ffast_math, NULL, 1 },
     702                 :             :     { OPT_LEVELS_FAST, OPT_fallow_store_data_races, NULL, 1 },
     703                 :             :     { OPT_LEVELS_FAST, OPT_fsemantic_interposition, NULL, 0 },
     704                 :             : 
     705                 :             :     { OPT_LEVELS_NONE, 0, NULL, 0 }
     706                 :             :   };
     707                 :             : 
     708                 :             : /* Default the options in OPTS and OPTS_SET based on the optimization
     709                 :             :    settings in DECODED_OPTIONS and DECODED_OPTIONS_COUNT.  */
     710                 :             : void
     711                 :      544021 : default_options_optimization (struct gcc_options *opts,
     712                 :             :                               struct gcc_options *opts_set,
     713                 :             :                               struct cl_decoded_option *decoded_options,
     714                 :             :                               unsigned int decoded_options_count,
     715                 :             :                               location_t loc,
     716                 :             :                               unsigned int lang_mask,
     717                 :             :                               const struct cl_option_handlers *handlers,
     718                 :             :                               diagnostic_context *dc)
     719                 :             : {
     720                 :      544021 :   unsigned int i;
     721                 :      544021 :   int opt2;
     722                 :      544021 :   bool openacc_mode = false;
     723                 :             : 
     724                 :             :   /* Scan to see what optimization level has been specified.  That will
     725                 :             :      determine the default value of many flags.  */
     726                 :     9517995 :   for (i = 1; i < decoded_options_count; i++)
     727                 :             :     {
     728                 :     8973974 :       struct cl_decoded_option *opt = &decoded_options[i];
     729                 :     8973974 :       switch (opt->opt_index)
     730                 :             :         {
     731                 :      455100 :         case OPT_O:
     732                 :      455100 :           if (*opt->arg == '\0')
     733                 :             :             {
     734                 :       13417 :               opts->x_optimize = 1;
     735                 :       13417 :               opts->x_optimize_size = 0;
     736                 :       13417 :               opts->x_optimize_fast = 0;
     737                 :       13417 :               opts->x_optimize_debug = 0;
     738                 :             :             }
     739                 :             :           else
     740                 :             :             {
     741                 :      441683 :               const int optimize_val = integral_argument (opt->arg);
     742                 :      441683 :               if (optimize_val == -1)
     743                 :           0 :                 error_at (loc, "argument to %<-O%> should be a non-negative "
     744                 :             :                                "integer, %<g%>, %<s%>, %<z%> or %<fast%>");
     745                 :             :               else
     746                 :             :                 {
     747                 :      441683 :                   opts->x_optimize = optimize_val;
     748                 :      441683 :                   if ((unsigned int) opts->x_optimize > 255)
     749                 :           3 :                     opts->x_optimize = 255;
     750                 :      441683 :                   opts->x_optimize_size = 0;
     751                 :      441683 :                   opts->x_optimize_fast = 0;
     752                 :      441683 :                   opts->x_optimize_debug = 0;
     753                 :             :                 }
     754                 :             :             }
     755                 :             :           break;
     756                 :             : 
     757                 :       14506 :         case OPT_Os:
     758                 :       14506 :           opts->x_optimize_size = 1;
     759                 :             : 
     760                 :             :           /* Optimizing for size forces optimize to be 2.  */
     761                 :       14506 :           opts->x_optimize = 2;
     762                 :       14506 :           opts->x_optimize_fast = 0;
     763                 :       14506 :           opts->x_optimize_debug = 0;
     764                 :       14506 :           break;
     765                 :             : 
     766                 :          13 :         case OPT_Oz:
     767                 :          13 :           opts->x_optimize_size = 2;
     768                 :             : 
     769                 :             :           /* Optimizing for size forces optimize to be 2.  */
     770                 :          13 :           opts->x_optimize = 2;
     771                 :          13 :           opts->x_optimize_fast = 0;
     772                 :          13 :           opts->x_optimize_debug = 0;
     773                 :          13 :           break;
     774                 :             : 
     775                 :         659 :         case OPT_Ofast:
     776                 :             :           /* -Ofast only adds flags to -O3.  */
     777                 :         659 :           opts->x_optimize_size = 0;
     778                 :         659 :           opts->x_optimize = 3;
     779                 :         659 :           opts->x_optimize_fast = 1;
     780                 :         659 :           opts->x_optimize_debug = 0;
     781                 :         659 :           break;
     782                 :             : 
     783                 :         768 :         case OPT_Og:
     784                 :             :           /* -Og selects optimization level 1.  */
     785                 :         768 :           opts->x_optimize_size = 0;
     786                 :         768 :           opts->x_optimize = 1;
     787                 :         768 :           opts->x_optimize_fast = 0;
     788                 :         768 :           opts->x_optimize_debug = 1;
     789                 :         768 :           break;
     790                 :             : 
     791                 :       23654 :         case OPT_fopenacc:
     792                 :       23654 :           if (opt->value)
     793                 :     8973974 :             openacc_mode = true;
     794                 :             :           break;
     795                 :             : 
     796                 :             :         default:
     797                 :             :           /* Ignore other options in this prescan.  */
     798                 :             :           break;
     799                 :             :         }
     800                 :             :     }
     801                 :             : 
     802                 :      544021 :   maybe_default_options (opts, opts_set, default_options_table,
     803                 :      544021 :                          opts->x_optimize, opts->x_optimize_size,
     804                 :      544021 :                          opts->x_optimize_fast, opts->x_optimize_debug,
     805                 :             :                          lang_mask, handlers, loc, dc);
     806                 :             : 
     807                 :             :   /* -O2 param settings.  */
     808                 :      544021 :   opt2 = (opts->x_optimize >= 2);
     809                 :             : 
     810                 :      544021 :   if (openacc_mode)
     811                 :        3463 :     SET_OPTION_IF_UNSET (opts, opts_set, flag_ipa_pta, true);
     812                 :             : 
     813                 :             :   /* Track fields in field-sensitive alias analysis.  */
     814                 :      544021 :   if (opt2)
     815                 :      400682 :     SET_OPTION_IF_UNSET (opts, opts_set, param_max_fields_for_field_sensitive,
     816                 :             :                          100);
     817                 :             : 
     818                 :      544021 :   if (opts->x_optimize_size)
     819                 :             :     /* We want to crossjump as much as possible.  */
     820                 :       14296 :     SET_OPTION_IF_UNSET (opts, opts_set, param_min_crossjump_insns, 1);
     821                 :             : 
     822                 :             :   /* Restrict the amount of work combine does at -Og while retaining
     823                 :             :      most of its useful transforms.  */
     824                 :      544021 :   if (opts->x_optimize_debug)
     825                 :         744 :     SET_OPTION_IF_UNSET (opts, opts_set, param_max_combine_insns, 2);
     826                 :             : 
     827                 :             :   /* Allow default optimizations to be specified on a per-machine basis.  */
     828                 :      544021 :   maybe_default_options (opts, opts_set,
     829                 :             :                          targetm_common.option_optimization_table,
     830                 :             :                          opts->x_optimize, opts->x_optimize_size,
     831                 :      544021 :                          opts->x_optimize_fast, opts->x_optimize_debug,
     832                 :             :                          lang_mask, handlers, loc, dc);
     833                 :      544021 : }
     834                 :             : 
     835                 :             : /* Control IPA optimizations based on different live patching LEVEL.  */
     836                 :             : static void
     837                 :          20 : control_options_for_live_patching (struct gcc_options *opts,
     838                 :             :                                    struct gcc_options *opts_set,
     839                 :             :                                    enum live_patching_level level,
     840                 :             :                                    location_t loc)
     841                 :             : {
     842                 :          20 :   gcc_assert (level > LIVE_PATCHING_NONE);
     843                 :             : 
     844                 :          20 :   switch (level)
     845                 :             :     {
     846                 :           3 :     case LIVE_PATCHING_INLINE_ONLY_STATIC:
     847                 :             : #define LIVE_PATCHING_OPTION "-flive-patching=inline-only-static"
     848                 :           3 :       if (opts_set->x_flag_ipa_cp_clone && opts->x_flag_ipa_cp_clone)
     849                 :           0 :         error_at (loc, "%qs is incompatible with %qs",
     850                 :             :                   "-fipa-cp-clone", LIVE_PATCHING_OPTION);
     851                 :             :       else
     852                 :           3 :         opts->x_flag_ipa_cp_clone = 0;
     853                 :             : 
     854                 :           3 :       if (opts_set->x_flag_ipa_sra && opts->x_flag_ipa_sra)
     855                 :           0 :         error_at (loc, "%qs is incompatible with %qs",
     856                 :             :                   "-fipa-sra", LIVE_PATCHING_OPTION);
     857                 :             :       else
     858                 :           3 :         opts->x_flag_ipa_sra = 0;
     859                 :             : 
     860                 :           3 :       if (opts_set->x_flag_partial_inlining && opts->x_flag_partial_inlining)
     861                 :           0 :         error_at (loc, "%qs is incompatible with %qs",
     862                 :             :                   "-fpartial-inlining", LIVE_PATCHING_OPTION);
     863                 :             :       else
     864                 :           3 :         opts->x_flag_partial_inlining = 0;
     865                 :             : 
     866                 :           3 :       if (opts_set->x_flag_ipa_cp && opts->x_flag_ipa_cp)
     867                 :           0 :         error_at (loc, "%qs is incompatible with %qs",
     868                 :             :                   "-fipa-cp", LIVE_PATCHING_OPTION);
     869                 :             :       else
     870                 :           3 :         opts->x_flag_ipa_cp = 0;
     871                 :             : 
     872                 :             :       /* FALLTHROUGH.  */
     873                 :          20 :     case LIVE_PATCHING_INLINE_CLONE:
     874                 :             : #undef LIVE_PATCHING_OPTION
     875                 :             : #define LIVE_PATCHING_OPTION "-flive-patching=inline-only-static|inline-clone"
     876                 :             :       /* live patching should disable whole-program optimization.  */
     877                 :          20 :       if (opts_set->x_flag_whole_program && opts->x_flag_whole_program)
     878                 :           1 :         error_at (loc, "%qs is incompatible with %qs",
     879                 :             :                   "-fwhole-program", LIVE_PATCHING_OPTION);
     880                 :             :       else
     881                 :          19 :         opts->x_flag_whole_program = 0;
     882                 :             : 
     883                 :             :       /* visibility change should be excluded by !flag_whole_program
     884                 :             :          && !in_lto_p && !flag_ipa_cp_clone && !flag_ipa_sra
     885                 :             :          && !flag_partial_inlining.  */
     886                 :             : 
     887                 :          20 :       if (opts_set->x_flag_ipa_pta && opts->x_flag_ipa_pta)
     888                 :           0 :         error_at (loc, "%qs is incompatible with %qs",
     889                 :             :                   "-fipa-pta", LIVE_PATCHING_OPTION);
     890                 :             :       else
     891                 :          20 :         opts->x_flag_ipa_pta = 0;
     892                 :             : 
     893                 :          20 :       if (opts_set->x_flag_ipa_reference && opts->x_flag_ipa_reference)
     894                 :           0 :         error_at (loc, "%qs is incompatible with %qs",
     895                 :             :                   "-fipa-reference", LIVE_PATCHING_OPTION);
     896                 :             :       else
     897                 :          20 :         opts->x_flag_ipa_reference = 0;
     898                 :             : 
     899                 :          20 :       if (opts_set->x_flag_ipa_ra && opts->x_flag_ipa_ra)
     900                 :           0 :         error_at (loc, "%qs is incompatible with %qs",
     901                 :             :                   "-fipa-ra", LIVE_PATCHING_OPTION);
     902                 :             :       else
     903                 :          20 :         opts->x_flag_ipa_ra = 0;
     904                 :             : 
     905                 :          20 :       if (opts_set->x_flag_ipa_icf && opts->x_flag_ipa_icf)
     906                 :           0 :         error_at (loc, "%qs is incompatible with %qs",
     907                 :             :                   "-fipa-icf", LIVE_PATCHING_OPTION);
     908                 :             :       else
     909                 :          20 :         opts->x_flag_ipa_icf = 0;
     910                 :             : 
     911                 :          20 :       if (opts_set->x_flag_ipa_icf_functions && opts->x_flag_ipa_icf_functions)
     912                 :           0 :         error_at (loc, "%qs is incompatible with %qs",
     913                 :             :                   "-fipa-icf-functions", LIVE_PATCHING_OPTION);
     914                 :             :       else
     915                 :          20 :         opts->x_flag_ipa_icf_functions = 0;
     916                 :             : 
     917                 :          20 :       if (opts_set->x_flag_ipa_icf_variables && opts->x_flag_ipa_icf_variables)
     918                 :           0 :         error_at (loc, "%qs is incompatible with %qs",
     919                 :             :                   "-fipa-icf-variables", LIVE_PATCHING_OPTION);
     920                 :             :       else
     921                 :          20 :         opts->x_flag_ipa_icf_variables = 0;
     922                 :             : 
     923                 :          20 :       if (opts_set->x_flag_ipa_bit_cp && opts->x_flag_ipa_bit_cp)
     924                 :           0 :         error_at (loc, "%qs is incompatible with %qs",
     925                 :             :                   "-fipa-bit-cp", LIVE_PATCHING_OPTION);
     926                 :             :       else
     927                 :          20 :         opts->x_flag_ipa_bit_cp = 0;
     928                 :             : 
     929                 :          20 :       if (opts_set->x_flag_ipa_vrp && opts->x_flag_ipa_vrp)
     930                 :           0 :         error_at (loc, "%qs is incompatible with %qs",
     931                 :             :                   "-fipa-vrp", LIVE_PATCHING_OPTION);
     932                 :             :       else
     933                 :          20 :         opts->x_flag_ipa_vrp = 0;
     934                 :             : 
     935                 :          20 :       if (opts_set->x_flag_ipa_pure_const && opts->x_flag_ipa_pure_const)
     936                 :           0 :         error_at (loc, "%qs is incompatible with %qs",
     937                 :             :                   "-fipa-pure-const", LIVE_PATCHING_OPTION);
     938                 :             :       else
     939                 :          20 :         opts->x_flag_ipa_pure_const = 0;
     940                 :             : 
     941                 :          20 :       if (opts_set->x_flag_ipa_modref && opts->x_flag_ipa_modref)
     942                 :           0 :         error_at (loc,
     943                 :             :                   "%<-fipa-modref%> is incompatible with %qs",
     944                 :             :                   LIVE_PATCHING_OPTION);
     945                 :             :       else
     946                 :          20 :         opts->x_flag_ipa_modref = 0;
     947                 :             : 
     948                 :             :       /* FIXME: disable unreachable code removal.  */
     949                 :             : 
     950                 :             :       /* discovery of functions/variables with no address taken.  */
     951                 :          20 :       if (opts_set->x_flag_ipa_reference_addressable
     952                 :           0 :           && opts->x_flag_ipa_reference_addressable)
     953                 :           0 :         error_at (loc, "%qs is incompatible with %qs",
     954                 :             :                   "-fipa-reference-addressable", LIVE_PATCHING_OPTION);
     955                 :             :       else
     956                 :          20 :         opts->x_flag_ipa_reference_addressable = 0;
     957                 :             : 
     958                 :             :       /* ipa stack alignment propagation.  */
     959                 :          20 :       if (opts_set->x_flag_ipa_stack_alignment
     960                 :           0 :           && opts->x_flag_ipa_stack_alignment)
     961                 :           0 :         error_at (loc, "%qs is incompatible with %qs",
     962                 :             :                   "-fipa-stack-alignment", LIVE_PATCHING_OPTION);
     963                 :             :       else
     964                 :          20 :         opts->x_flag_ipa_stack_alignment = 0;
     965                 :          20 :       break;
     966                 :           0 :     default:
     967                 :           0 :       gcc_unreachable ();
     968                 :             :     }
     969                 :             : 
     970                 :             : #undef LIVE_PATCHING_OPTION
     971                 :          20 : }
     972                 :             : 
     973                 :             : /* --help option argument if set.  */
     974                 :             : vec<const char *> help_option_arguments;
     975                 :             : 
     976                 :             : /* Return the string name describing a sanitizer argument which has been
     977                 :             :    provided on the command line and has set this particular flag.  */
     978                 :             : const char *
     979                 :         212 : find_sanitizer_argument (struct gcc_options *opts, unsigned int flags)
     980                 :             : {
     981                 :         729 :   for (int i = 0; sanitizer_opts[i].name != NULL; ++i)
     982                 :             :     {
     983                 :             :       /* Need to find the sanitizer_opts element which:
     984                 :             :          a) Could have set the flags requested.
     985                 :             :          b) Has been set on the command line.
     986                 :             : 
     987                 :             :          Can have (a) without (b) if the flag requested is e.g.
     988                 :             :          SANITIZE_ADDRESS, since both -fsanitize=address and
     989                 :             :          -fsanitize=kernel-address set this flag.
     990                 :             : 
     991                 :             :          Can have (b) without (a) by requesting more than one sanitizer on the
     992                 :             :          command line.  */
     993                 :         729 :       if ((sanitizer_opts[i].flag & opts->x_flag_sanitize)
     994                 :             :           != sanitizer_opts[i].flag)
     995                 :         369 :         continue;
     996                 :         360 :       if ((sanitizer_opts[i].flag & flags) != flags)
     997                 :         148 :         continue;
     998                 :             :       return sanitizer_opts[i].name;
     999                 :             :     }
    1000                 :             :   return NULL;
    1001                 :             : }
    1002                 :             : 
    1003                 :             : 
    1004                 :             : /* Report an error to the user about sanitizer options they have requested
    1005                 :             :    which have set conflicting flags.
    1006                 :             : 
    1007                 :             :    LEFT and RIGHT indicate sanitizer flags which conflict with each other, this
    1008                 :             :    function reports an error if both have been set in OPTS->x_flag_sanitize and
    1009                 :             :    ensures the error identifies the requested command line options that have
    1010                 :             :    set these flags.  */
    1011                 :             : static void
    1012                 :     3264126 : report_conflicting_sanitizer_options (struct gcc_options *opts, location_t loc,
    1013                 :             :                                       unsigned int left, unsigned int right)
    1014                 :             : {
    1015                 :     3264126 :   unsigned int left_seen = (opts->x_flag_sanitize & left);
    1016                 :     3264126 :   unsigned int right_seen = (opts->x_flag_sanitize & right);
    1017                 :     3264126 :   if (left_seen && right_seen)
    1018                 :             :     {
    1019                 :         106 :       const char* left_arg = find_sanitizer_argument (opts, left_seen);
    1020                 :         106 :       const char* right_arg = find_sanitizer_argument (opts, right_seen);
    1021                 :         106 :       gcc_assert (left_arg && right_arg);
    1022                 :         106 :       error_at (loc,
    1023                 :             :                 "%<-fsanitize=%s%> is incompatible with %<-fsanitize=%s%>",
    1024                 :             :                 left_arg, right_arg);
    1025                 :             :     }
    1026                 :     3264126 : }
    1027                 :             : 
    1028                 :             : /* After all options at LOC have been read into OPTS and OPTS_SET,
    1029                 :             :    finalize settings of those options and diagnose incompatible
    1030                 :             :    combinations.  */
    1031                 :             : void
    1032                 :      544021 : finish_options (struct gcc_options *opts, struct gcc_options *opts_set,
    1033                 :             :                 location_t loc)
    1034                 :             : {
    1035                 :      544021 :   if (opts->x_dump_base_name
    1036                 :      541397 :       && ! opts->x_dump_base_name_prefixed)
    1037                 :             :     {
    1038                 :             :       const char *sep = opts->x_dump_base_name;
    1039                 :             : 
    1040                 :     3675352 :       for (; *sep; sep++)
    1041                 :     3416257 :         if (IS_DIR_SEPARATOR (*sep))
    1042                 :             :           break;
    1043                 :             : 
    1044                 :      279290 :       if (*sep)
    1045                 :             :         /* If dump_base_path contains subdirectories, don't prepend
    1046                 :             :            anything.  */;
    1047                 :      259095 :       else if (opts->x_dump_dir_name)
    1048                 :             :         /* We have a DUMP_DIR_NAME, prepend that.  */
    1049                 :       99003 :         opts->x_dump_base_name = opts_concat (opts->x_dump_dir_name,
    1050                 :             :                                               opts->x_dump_base_name, NULL);
    1051                 :             : 
    1052                 :             :       /* It is definitely prefixed now.  */
    1053                 :      279290 :       opts->x_dump_base_name_prefixed = true;
    1054                 :             :     }
    1055                 :             : 
    1056                 :             :   /* Handle related options for unit-at-a-time, toplevel-reorder, and
    1057                 :             :      section-anchors.  */
    1058                 :      544021 :   if (!opts->x_flag_unit_at_a_time)
    1059                 :             :     {
    1060                 :           4 :       if (opts->x_flag_section_anchors && opts_set->x_flag_section_anchors)
    1061                 :           0 :         error_at (loc, "section anchors must be disabled when unit-at-a-time "
    1062                 :             :                   "is disabled");
    1063                 :           4 :       opts->x_flag_section_anchors = 0;
    1064                 :           4 :       if (opts->x_flag_toplevel_reorder == 1)
    1065                 :           0 :         error_at (loc, "toplevel reorder must be disabled when unit-at-a-time "
    1066                 :             :                   "is disabled");
    1067                 :           4 :       opts->x_flag_toplevel_reorder = 0;
    1068                 :             :     }
    1069                 :             : 
    1070                 :             :   /* -fself-test depends on the state of the compiler prior to
    1071                 :             :      compiling anything.  Ideally it should be run on an empty source
    1072                 :             :      file.  However, in case we get run with actual source, assume
    1073                 :             :      -fsyntax-only which will inhibit any compiler initialization
    1074                 :             :      which may confuse the self tests.  */
    1075                 :      544021 :   if (opts->x_flag_self_test)
    1076                 :           5 :     opts->x_flag_syntax_only = 1;
    1077                 :             : 
    1078                 :      544021 :   if (opts->x_flag_tm && opts->x_flag_non_call_exceptions)
    1079                 :           4 :     sorry ("transactional memory is not supported with non-call exceptions");
    1080                 :             : 
    1081                 :             :   /* Unless the user has asked for section anchors, we disable toplevel
    1082                 :             :      reordering at -O0 to disable transformations that might be surprising
    1083                 :             :      to end users and to get -fno-toplevel-reorder tested.  */
    1084                 :      544021 :   if (!opts->x_optimize
    1085                 :      116170 :       && opts->x_flag_toplevel_reorder == 2
    1086                 :      115976 :       && !(opts->x_flag_section_anchors && opts_set->x_flag_section_anchors))
    1087                 :             :     {
    1088                 :      115976 :       opts->x_flag_toplevel_reorder = 0;
    1089                 :      115976 :       opts->x_flag_section_anchors = 0;
    1090                 :             :     }
    1091                 :      544021 :   if (!opts->x_flag_toplevel_reorder)
    1092                 :             :     {
    1093                 :      116995 :       if (opts->x_flag_section_anchors && opts_set->x_flag_section_anchors)
    1094                 :           0 :         error_at (loc, "section anchors must be disabled when toplevel reorder"
    1095                 :             :                   " is disabled");
    1096                 :      116995 :       opts->x_flag_section_anchors = 0;
    1097                 :             :     }
    1098                 :             : 
    1099                 :      544021 :   if (opts->x_flag_hardened)
    1100                 :             :     {
    1101                 :          83 :       if (!opts_set->x_flag_auto_var_init)
    1102                 :          78 :         opts->x_flag_auto_var_init = AUTO_INIT_ZERO;
    1103                 :           5 :       else if (opts->x_flag_auto_var_init != AUTO_INIT_ZERO)
    1104                 :           5 :         warning_at (loc, OPT_Whardened,
    1105                 :             :                     "%<-ftrivial-auto-var-init=zero%> is not enabled by "
    1106                 :             :                     "%<-fhardened%> because it was specified on the command "
    1107                 :             :                     "line");
    1108                 :             :     }
    1109                 :             : 
    1110                 :      544021 :   if (!opts->x_flag_opts_finished)
    1111                 :             :     {
    1112                 :             :       /* We initialize opts->x_flag_pie to -1 so that targets can set a
    1113                 :             :          default value.  */
    1114                 :      281914 :       if (opts->x_flag_pie == -1)
    1115                 :             :         {
    1116                 :             :           /* We initialize opts->x_flag_pic to -1 so that we can tell if
    1117                 :             :              -fpic, -fPIC, -fno-pic or -fno-PIC is used.  */
    1118                 :      261737 :           if (opts->x_flag_pic == -1)
    1119                 :      252935 :             opts->x_flag_pie = (opts->x_flag_hardened
    1120                 :      252935 :                                 ? /*-fPIE*/ 2 : DEFAULT_FLAG_PIE);
    1121                 :             :           else
    1122                 :        8802 :             opts->x_flag_pie = 0;
    1123                 :             :         }
    1124                 :             :       /* If -fPIE or -fpie is used, turn on PIC.  */
    1125                 :      281914 :       if (opts->x_flag_pie)
    1126                 :         249 :         opts->x_flag_pic = opts->x_flag_pie;
    1127                 :      281665 :       else if (opts->x_flag_pic == -1)
    1128                 :      272863 :         opts->x_flag_pic = 0;
    1129                 :      281914 :       if (opts->x_flag_pic && !opts->x_flag_pie)
    1130                 :        8681 :         opts->x_flag_shlib = 1;
    1131                 :      281914 :       opts->x_flag_opts_finished = true;
    1132                 :             :     }
    1133                 :             : 
    1134                 :             :   /* We initialize opts->x_flag_stack_protect to -1 so that targets
    1135                 :             :      can set a default value.  With --enable-default-ssp or -fhardened
    1136                 :             :      the default is -fstack-protector-strong.  */
    1137                 :      544021 :   if (opts->x_flag_stack_protect == -1)
    1138                 :             :     {
    1139                 :             :       /* This should check FRAME_GROWS_DOWNWARD, but on some targets it's
    1140                 :             :          defined in such a way that it uses flag_stack_protect which can't
    1141                 :             :          be used here.  Moreover, some targets like BPF don't support
    1142                 :             :          -fstack-protector at all but we don't know that here.  So remember
    1143                 :             :          that flag_stack_protect was set at the behest of -fhardened.  */
    1144                 :      280663 :       if (opts->x_flag_hardened)
    1145                 :             :         {
    1146                 :          78 :           opts->x_flag_stack_protect = SPCT_FLAG_STRONG;
    1147                 :          78 :           flag_stack_protector_set_by_fhardened_p = true;
    1148                 :             :         }
    1149                 :             :       else
    1150                 :      280585 :         opts->x_flag_stack_protect = DEFAULT_FLAG_SSP;
    1151                 :             :     }
    1152                 :      263358 :   else if (opts->x_flag_hardened
    1153                 :           5 :            && opts->x_flag_stack_protect != SPCT_FLAG_STRONG)
    1154                 :           5 :     warning_at (UNKNOWN_LOCATION, OPT_Whardened,
    1155                 :             :                 "%<-fstack-protector-strong%> is not enabled by "
    1156                 :             :                 "%<-fhardened%> because it was specified on the command "
    1157                 :             :                 "line");
    1158                 :             : 
    1159                 :      544021 :   if (opts->x_optimize == 0)
    1160                 :             :     {
    1161                 :             :       /* Inlining does not work if not optimizing,
    1162                 :             :          so force it not to be done.  */
    1163                 :      116170 :       opts->x_warn_inline = 0;
    1164                 :      116170 :       opts->x_flag_no_inline = 1;
    1165                 :             :     }
    1166                 :             : 
    1167                 :             :   /* At -O0 or -Og, turn __builtin_unreachable into a trap.  */
    1168                 :      544021 :   if (!opts->x_optimize || opts->x_optimize_debug)
    1169                 :      116914 :     SET_OPTION_IF_UNSET (opts, opts_set, flag_unreachable_traps, true);
    1170                 :             : 
    1171                 :             :   /* Pipelining of outer loops is only possible when general pipelining
    1172                 :             :      capabilities are requested.  */
    1173                 :      544021 :   if (!opts->x_flag_sel_sched_pipelining)
    1174                 :      543964 :     opts->x_flag_sel_sched_pipelining_outer_loops = 0;
    1175                 :             : 
    1176                 :      544021 :   if (opts->x_flag_conserve_stack)
    1177                 :             :     {
    1178                 :          30 :       SET_OPTION_IF_UNSET (opts, opts_set, param_large_stack_frame, 100);
    1179                 :          30 :       SET_OPTION_IF_UNSET (opts, opts_set, param_stack_frame_growth, 40);
    1180                 :             :     }
    1181                 :             : 
    1182                 :      544021 :   if (opts->x_flag_lto)
    1183                 :             :     {
    1184                 :             : #ifdef ENABLE_LTO
    1185                 :      151014 :       opts->x_flag_generate_lto = 1;
    1186                 :             : 
    1187                 :             :       /* When generating IL, do not operate in whole-program mode.
    1188                 :             :          Otherwise, symbols will be privatized too early, causing link
    1189                 :             :          errors later.  */
    1190                 :      151014 :       opts->x_flag_whole_program = 0;
    1191                 :             : #else
    1192                 :             :       error_at (loc, "LTO support has not been enabled in this configuration");
    1193                 :             : #endif
    1194                 :      151014 :       if (!opts->x_flag_fat_lto_objects
    1195                 :       20669 :           && (!HAVE_LTO_PLUGIN
    1196                 :       20669 :               || (opts_set->x_flag_use_linker_plugin
    1197                 :       19038 :                   && !opts->x_flag_use_linker_plugin)))
    1198                 :             :         {
    1199                 :        8240 :           if (opts_set->x_flag_fat_lto_objects)
    1200                 :           0 :             error_at (loc, "%<-fno-fat-lto-objects%> are supported only with "
    1201                 :             :                       "linker plugin");
    1202                 :        8240 :           opts->x_flag_fat_lto_objects = 1;
    1203                 :             :         }
    1204                 :             : 
    1205                 :             :       /* -gsplit-dwarf isn't compatible with LTO, see PR88389.  */
    1206                 :      151014 :       if (opts->x_dwarf_split_debug_info)
    1207                 :             :         {
    1208                 :           1 :           inform (loc, "%<-gsplit-dwarf%> is not supported with LTO,"
    1209                 :             :                   " disabling");
    1210                 :           1 :           opts->x_dwarf_split_debug_info = 0;
    1211                 :             :         }
    1212                 :             :     }
    1213                 :             : 
    1214                 :             :   /* We initialize opts->x_flag_split_stack to -1 so that targets can set a
    1215                 :             :      default value if they choose based on other options.  */
    1216                 :      544021 :   if (opts->x_flag_split_stack == -1)
    1217                 :      280226 :     opts->x_flag_split_stack = 0;
    1218                 :      263795 :   else if (opts->x_flag_split_stack)
    1219                 :             :     {
    1220                 :        1716 :       if (!targetm_common.supports_split_stack (true, opts))
    1221                 :             :         {
    1222                 :           0 :           error_at (loc, "%<-fsplit-stack%> is not supported by "
    1223                 :             :                     "this compiler configuration");
    1224                 :           0 :           opts->x_flag_split_stack = 0;
    1225                 :             :         }
    1226                 :             :     }
    1227                 :             : 
    1228                 :             :   /* If stack splitting is turned on, and the user did not explicitly
    1229                 :             :      request function partitioning, turn off partitioning, as it
    1230                 :             :      confuses the linker when trying to handle partitioned split-stack
    1231                 :             :      code that calls a non-split-stack functions.  But if partitioning
    1232                 :             :      was turned on explicitly just hope for the best.  */
    1233                 :      544021 :   if (opts->x_flag_split_stack
    1234                 :        1716 :       && opts->x_flag_reorder_blocks_and_partition)
    1235                 :        1280 :     SET_OPTION_IF_UNSET (opts, opts_set, flag_reorder_blocks_and_partition, 0);
    1236                 :             : 
    1237                 :      544021 :   if (opts->x_flag_reorder_blocks_and_partition)
    1238                 :      399453 :     SET_OPTION_IF_UNSET (opts, opts_set, flag_reorder_functions, 1);
    1239                 :             : 
    1240                 :             :   /* The -gsplit-dwarf option requires -ggnu-pubnames.  */
    1241                 :      544021 :   if (opts->x_dwarf_split_debug_info)
    1242                 :         308 :     opts->x_debug_generate_pub_sections = 2;
    1243                 :             : 
    1244                 :      544021 :   if ((opts->x_flag_sanitize
    1245                 :      544021 :        & (SANITIZE_USER_ADDRESS | SANITIZE_KERNEL_ADDRESS)) == 0)
    1246                 :             :     {
    1247                 :      541101 :       if (opts->x_flag_sanitize & SANITIZE_POINTER_COMPARE)
    1248                 :           0 :         error_at (loc,
    1249                 :             :                   "%<-fsanitize=pointer-compare%> must be combined with "
    1250                 :             :                   "%<-fsanitize=address%> or %<-fsanitize=kernel-address%>");
    1251                 :      541101 :       if (opts->x_flag_sanitize & SANITIZE_POINTER_SUBTRACT)
    1252                 :           0 :         error_at (loc,
    1253                 :             :                   "%<-fsanitize=pointer-subtract%> must be combined with "
    1254                 :             :                   "%<-fsanitize=address%> or %<-fsanitize=kernel-address%>");
    1255                 :             :     }
    1256                 :             : 
    1257                 :             :   /* Address sanitizers conflict with the thread sanitizer.  */
    1258                 :      544021 :   report_conflicting_sanitizer_options (opts, loc, SANITIZE_THREAD,
    1259                 :             :                                         SANITIZE_ADDRESS);
    1260                 :      544021 :   report_conflicting_sanitizer_options (opts, loc, SANITIZE_THREAD,
    1261                 :             :                                         SANITIZE_HWADDRESS);
    1262                 :             :   /* The leak sanitizer conflicts with the thread sanitizer.  */
    1263                 :      544021 :   report_conflicting_sanitizer_options (opts, loc, SANITIZE_LEAK,
    1264                 :             :                                         SANITIZE_THREAD);
    1265                 :             : 
    1266                 :             :   /* No combination of HWASAN and ASAN work together.  */
    1267                 :      544021 :   report_conflicting_sanitizer_options (opts, loc,
    1268                 :             :                                         SANITIZE_HWADDRESS, SANITIZE_ADDRESS);
    1269                 :             : 
    1270                 :             :   /* The userspace and kernel address sanitizers conflict with each other.  */
    1271                 :      544021 :   report_conflicting_sanitizer_options (opts, loc, SANITIZE_USER_HWADDRESS,
    1272                 :             :                                         SANITIZE_KERNEL_HWADDRESS);
    1273                 :      544021 :   report_conflicting_sanitizer_options (opts, loc, SANITIZE_USER_ADDRESS,
    1274                 :             :                                         SANITIZE_KERNEL_ADDRESS);
    1275                 :             : 
    1276                 :             :   /* Check error recovery for -fsanitize-recover option.  */
    1277                 :    18496714 :   for (int i = 0; sanitizer_opts[i].name != NULL; ++i)
    1278                 :    17952693 :     if ((opts->x_flag_sanitize_recover & sanitizer_opts[i].flag)
    1279                 :    13052407 :         && !sanitizer_opts[i].can_recover)
    1280                 :          44 :       error_at (loc, "%<-fsanitize-recover=%s%> is not supported",
    1281                 :             :                 sanitizer_opts[i].name);
    1282                 :             : 
    1283                 :             :   /* Check -fsanitize-trap option.  */
    1284                 :    18496714 :   for (int i = 0; sanitizer_opts[i].name != NULL; ++i)
    1285                 :    17952693 :     if ((opts->x_flag_sanitize_trap & sanitizer_opts[i].flag)
    1286                 :        4715 :         && !sanitizer_opts[i].can_trap
    1287                 :             :         /* Allow -fsanitize-trap=all or -fsanitize-trap=undefined
    1288                 :             :            to set flag_sanitize_trap & SANITIZE_VPTR bit which will
    1289                 :             :            effectively disable -fsanitize=vptr, just disallow
    1290                 :             :            explicit -fsanitize-trap=vptr.  */
    1291                 :         198 :         && sanitizer_opts[i].flag != SANITIZE_VPTR)
    1292                 :           0 :       error_at (loc, "%<-fsanitize-trap=%s%> is not supported",
    1293                 :             :                 sanitizer_opts[i].name);
    1294                 :             : 
    1295                 :             :   /* When instrumenting the pointers, we don't want to remove
    1296                 :             :      the null pointer checks.  */
    1297                 :      544021 :   if (opts->x_flag_sanitize & (SANITIZE_NULL | SANITIZE_NONNULL_ATTRIBUTE
    1298                 :             :                                 | SANITIZE_RETURNS_NONNULL_ATTRIBUTE))
    1299                 :        1668 :     opts->x_flag_delete_null_pointer_checks = 0;
    1300                 :             : 
    1301                 :             :   /* Aggressive compiler optimizations may cause false negatives.  */
    1302                 :      544021 :   if (opts->x_flag_sanitize & ~(SANITIZE_LEAK | SANITIZE_UNREACHABLE))
    1303                 :        7383 :     opts->x_flag_aggressive_loop_optimizations = 0;
    1304                 :             : 
    1305                 :             :   /* Enable -fsanitize-address-use-after-scope if either address sanitizer is
    1306                 :             :      enabled.  */
    1307                 :      544021 :   if (opts->x_flag_sanitize
    1308                 :      544021 :       & (SANITIZE_USER_ADDRESS | SANITIZE_USER_HWADDRESS))
    1309                 :        3222 :     SET_OPTION_IF_UNSET (opts, opts_set, flag_sanitize_address_use_after_scope,
    1310                 :             :                          true);
    1311                 :             : 
    1312                 :             :   /* Force -fstack-reuse=none in case -fsanitize-address-use-after-scope
    1313                 :             :      is enabled.  */
    1314                 :      544021 :   if (opts->x_flag_sanitize_address_use_after_scope)
    1315                 :             :     {
    1316                 :        3188 :       if (opts->x_flag_stack_reuse != SR_NONE
    1317                 :        3180 :           && opts_set->x_flag_stack_reuse != SR_NONE)
    1318                 :           0 :         error_at (loc,
    1319                 :             :                   "%<-fsanitize-address-use-after-scope%> requires "
    1320                 :             :                   "%<-fstack-reuse=none%> option");
    1321                 :             : 
    1322                 :        3188 :       opts->x_flag_stack_reuse = SR_NONE;
    1323                 :             :     }
    1324                 :             : 
    1325                 :      544021 :   if ((opts->x_flag_sanitize & SANITIZE_USER_ADDRESS) && opts->x_flag_tm)
    1326                 :           0 :     sorry ("transactional memory is not supported with %<-fsanitize=address%>");
    1327                 :             : 
    1328                 :      544021 :   if ((opts->x_flag_sanitize & SANITIZE_KERNEL_ADDRESS) && opts->x_flag_tm)
    1329                 :           0 :     sorry ("transactional memory is not supported with "
    1330                 :             :            "%<-fsanitize=kernel-address%>");
    1331                 :             : 
    1332                 :             :   /* Currently live patching is not support for LTO.  */
    1333                 :      544021 :   if (opts->x_flag_live_patching == LIVE_PATCHING_INLINE_ONLY_STATIC && opts->x_flag_lto)
    1334                 :           1 :     sorry ("live patching (with %qs) is not supported with LTO",
    1335                 :             :            "inline-only-static");
    1336                 :             : 
    1337                 :             :   /* Currently vtable verification is not supported for LTO */
    1338                 :      544021 :   if (opts->x_flag_vtable_verify && opts->x_flag_lto)
    1339                 :           0 :     sorry ("vtable verification is not supported with LTO");
    1340                 :             : 
    1341                 :             :   /* Control IPA optimizations based on different -flive-patching level.  */
    1342                 :      544021 :   if (opts->x_flag_live_patching)
    1343                 :          20 :     control_options_for_live_patching (opts, opts_set,
    1344                 :             :                                        opts->x_flag_live_patching,
    1345                 :             :                                        loc);
    1346                 :             : 
    1347                 :             :   /* Allow cunroll to grow size accordingly.  */
    1348                 :      544021 :   if (!opts_set->x_flag_cunroll_grow_size)
    1349                 :      544021 :     opts->x_flag_cunroll_grow_size
    1350                 :     1088042 :       = (opts->x_flag_unroll_loops
    1351                 :      157459 :          || opts->x_flag_peel_loops
    1352                 :     1088042 :          || opts->x_optimize >= 3);
    1353                 :             : 
    1354                 :             :   /* With -fcx-limited-range, we do cheap and quick complex arithmetic.  */
    1355                 :      544021 :   if (opts->x_flag_cx_limited_range)
    1356                 :        1866 :     opts->x_flag_complex_method = 0;
    1357                 :      542155 :   else if (opts_set->x_flag_cx_limited_range)
    1358                 :          17 :     opts->x_flag_complex_method = opts->x_flag_default_complex_method;
    1359                 :             : 
    1360                 :             :   /* With -fcx-fortran-rules, we do something in-between cheap and C99.  */
    1361                 :      544021 :   if (opts->x_flag_cx_fortran_rules)
    1362                 :        2471 :     opts->x_flag_complex_method = 1;
    1363                 :      541550 :   else if (opts_set->x_flag_cx_fortran_rules)
    1364                 :           0 :     opts->x_flag_complex_method = opts->x_flag_default_complex_method;
    1365                 :             : 
    1366                 :             :   /* Use -fvect-cost-model=cheap instead of -fvect-cost-mode=very-cheap
    1367                 :             :      by default with explicit -ftree-{loop,slp}-vectorize.  */
    1368                 :      544021 :   if (opts->x_optimize == 2
    1369                 :      373815 :       && (opts_set->x_flag_tree_loop_vectorize
    1370                 :      373760 :           || opts_set->x_flag_tree_vectorize))
    1371                 :      263463 :     SET_OPTION_IF_UNSET (opts, opts_set, flag_vect_cost_model,
    1372                 :             :                          VECT_COST_MODEL_CHEAP);
    1373                 :             : 
    1374                 :      544021 :   if (opts->x_flag_gtoggle)
    1375                 :             :     {
    1376                 :             :       /* Make sure to process -gtoggle only once.  */
    1377                 :         581 :       opts->x_flag_gtoggle = false;
    1378                 :         581 :       if (opts->x_debug_info_level == DINFO_LEVEL_NONE)
    1379                 :             :         {
    1380                 :         336 :           opts->x_debug_info_level = DINFO_LEVEL_NORMAL;
    1381                 :             : 
    1382                 :         336 :           if (opts->x_write_symbols == NO_DEBUG)
    1383                 :         336 :             opts->x_write_symbols = PREFERRED_DEBUGGING_TYPE;
    1384                 :             :         }
    1385                 :             :       else
    1386                 :         245 :         opts->x_debug_info_level = DINFO_LEVEL_NONE;
    1387                 :             :     }
    1388                 :             : 
    1389                 :      544021 :   if (!opts_set->x_debug_nonbind_markers_p)
    1390                 :      543989 :     opts->x_debug_nonbind_markers_p
    1391                 :      543989 :       = (opts->x_optimize
    1392                 :      427819 :          && opts->x_debug_info_level >= DINFO_LEVEL_NORMAL
    1393                 :       49972 :          && dwarf_debuginfo_p (opts)
    1394                 :     1137941 :          && !(opts->x_flag_selective_scheduling
    1395                 :       49963 :               || opts->x_flag_selective_scheduling2));
    1396                 :             : 
    1397                 :             :   /* We know which debug output will be used so we can set flag_var_tracking
    1398                 :             :      and flag_var_tracking_uninit if the user has not specified them.  */
    1399                 :      544021 :   if (opts->x_debug_info_level < DINFO_LEVEL_NORMAL
    1400                 :      544021 :       || !dwarf_debuginfo_p (opts)
    1401                 :             :       /* We have not yet initialized debug hooks so match that to check
    1402                 :             :          whether we're only doing DWARF2_LINENO_DEBUGGING_INFO.  */
    1403                 :             : #ifndef DWARF2_DEBUGGING_INFO
    1404                 :             :       || true
    1405                 :             : #endif
    1406                 :             :      )
    1407                 :             :     {
    1408                 :      487399 :       if ((opts_set->x_flag_var_tracking && opts->x_flag_var_tracking == 1)
    1409                 :      487383 :           || (opts_set->x_flag_var_tracking_uninit
    1410                 :           0 :               && opts->x_flag_var_tracking_uninit == 1))
    1411                 :             :         {
    1412                 :          16 :           if (opts->x_debug_info_level < DINFO_LEVEL_NORMAL)
    1413                 :          15 :             warning_at (UNKNOWN_LOCATION, 0,
    1414                 :             :                         "variable tracking requested, but useless unless "
    1415                 :             :                         "producing debug info");
    1416                 :             :           else
    1417                 :           1 :             warning_at (UNKNOWN_LOCATION, 0,
    1418                 :             :                         "variable tracking requested, but not supported "
    1419                 :             :                         "by this debug format");
    1420                 :             :         }
    1421                 :      487399 :       opts->x_flag_var_tracking = 0;
    1422                 :      487399 :       opts->x_flag_var_tracking_uninit = 0;
    1423                 :      487399 :       opts->x_flag_var_tracking_assignments = 0;
    1424                 :             :     }
    1425                 :             : 
    1426                 :             :   /* One could use EnabledBy, but it would lead to a circular dependency.  */
    1427                 :      544021 :   if (!opts_set->x_flag_var_tracking_uninit)
    1428                 :      544021 :     opts->x_flag_var_tracking_uninit = opts->x_flag_var_tracking;
    1429                 :             : 
    1430                 :      544021 :   if (!opts_set->x_flag_var_tracking_assignments)
    1431                 :      543945 :     opts->x_flag_var_tracking_assignments
    1432                 :     1087890 :       = (opts->x_flag_var_tracking
    1433                 :     1087890 :          && !(opts->x_flag_selective_scheduling
    1434                 :       49958 :               || opts->x_flag_selective_scheduling2));
    1435                 :             : 
    1436                 :      544021 :   if (opts->x_flag_var_tracking_assignments_toggle)
    1437                 :           0 :     opts->x_flag_var_tracking_assignments
    1438                 :           0 :       = !opts->x_flag_var_tracking_assignments;
    1439                 :             : 
    1440                 :      544021 :   if (opts->x_flag_var_tracking_assignments && !opts->x_flag_var_tracking)
    1441                 :           2 :     opts->x_flag_var_tracking = opts->x_flag_var_tracking_assignments = -1;
    1442                 :             : 
    1443                 :      544021 :   if (opts->x_flag_var_tracking_assignments
    1444                 :       49966 :       && (opts->x_flag_selective_scheduling
    1445                 :       49966 :           || opts->x_flag_selective_scheduling2))
    1446                 :           6 :     warning_at (loc, 0,
    1447                 :             :                 "var-tracking-assignments changes selective scheduling");
    1448                 :             : 
    1449                 :      544021 :   if (opts->x_flag_syntax_only)
    1450                 :             :     {
    1451                 :         135 :       opts->x_write_symbols = NO_DEBUG;
    1452                 :         135 :       opts->x_profile_flag = 0;
    1453                 :             :     }
    1454                 :             : 
    1455                 :      544021 :   if (opts->x_warn_strict_flex_arrays)
    1456                 :          14 :     if (opts->x_flag_strict_flex_arrays == 0)
    1457                 :             :       {
    1458                 :           5 :         opts->x_warn_strict_flex_arrays = 0;
    1459                 :           5 :         warning_at (UNKNOWN_LOCATION, 0,
    1460                 :             :                     "%<-Wstrict-flex-arrays%> is ignored when"
    1461                 :             :                     " %<-fstrict-flex-arrays%> is not present");
    1462                 :             :       }
    1463                 :             : 
    1464                 :      544021 :   diagnose_options (opts, opts_set, loc);
    1465                 :      544021 : }
    1466                 :             : 
    1467                 :             : /* The function diagnoses incompatible combinations for provided options
    1468                 :             :    (OPTS and OPTS_SET) at a given LOCation.  The function is called both
    1469                 :             :    when command line is parsed (after the target optimization hook) and
    1470                 :             :    when an optimize/target attribute (or pragma) is used.  */
    1471                 :             : 
    1472                 :      825854 : void diagnose_options (gcc_options *opts, gcc_options *opts_set,
    1473                 :             :                        location_t loc)
    1474                 :             : {
    1475                 :             :   /* The optimization to partition hot and cold basic blocks into separate
    1476                 :             :      sections of the .o and executable files does not work (currently)
    1477                 :             :      with exception handling.  This is because there is no support for
    1478                 :             :      generating unwind info.  If opts->x_flag_exceptions is turned on
    1479                 :             :      we need to turn off the partitioning optimization.  */
    1480                 :             : 
    1481                 :      825854 :   enum unwind_info_type ui_except
    1482                 :      825854 :     = targetm_common.except_unwind_info (opts);
    1483                 :             : 
    1484                 :      825854 :   if (opts->x_flag_exceptions
    1485                 :      243556 :       && opts->x_flag_reorder_blocks_and_partition
    1486                 :       67481 :       && (ui_except == UI_SJLJ || ui_except >= UI_TARGET))
    1487                 :             :     {
    1488                 :           0 :       if (opts_set->x_flag_reorder_blocks_and_partition)
    1489                 :           0 :         inform (loc,
    1490                 :             :                 "%<-freorder-blocks-and-partition%> does not work "
    1491                 :             :                 "with exceptions on this architecture");
    1492                 :           0 :       opts->x_flag_reorder_blocks_and_partition = 0;
    1493                 :           0 :       opts->x_flag_reorder_blocks = 1;
    1494                 :             :     }
    1495                 :             : 
    1496                 :             :   /* If user requested unwind info, then turn off the partitioning
    1497                 :             :      optimization.  */
    1498                 :             : 
    1499                 :      825854 :   if (opts->x_flag_unwind_tables
    1500                 :      544821 :       && !targetm_common.unwind_tables_default
    1501                 :      544821 :       && opts->x_flag_reorder_blocks_and_partition
    1502                 :      397517 :       && (ui_except == UI_SJLJ || ui_except >= UI_TARGET))
    1503                 :             :     {
    1504                 :           0 :       if (opts_set->x_flag_reorder_blocks_and_partition)
    1505                 :           0 :         inform (loc,
    1506                 :             :                 "%<-freorder-blocks-and-partition%> does not support "
    1507                 :             :                 "unwind info on this architecture");
    1508                 :           0 :       opts->x_flag_reorder_blocks_and_partition = 0;
    1509                 :           0 :       opts->x_flag_reorder_blocks = 1;
    1510                 :             :     }
    1511                 :             : 
    1512                 :             :   /* If the target requested unwind info, then turn off the partitioning
    1513                 :             :      optimization with a different message.  Likewise, if the target does not
    1514                 :             :      support named sections.  */
    1515                 :             : 
    1516                 :      825854 :   if (opts->x_flag_reorder_blocks_and_partition
    1517                 :      534640 :       && (!targetm_common.have_named_sections
    1518                 :      534640 :           || (opts->x_flag_unwind_tables
    1519                 :      397517 :               && targetm_common.unwind_tables_default
    1520                 :           0 :               && (ui_except == UI_SJLJ || ui_except >= UI_TARGET))))
    1521                 :             :     {
    1522                 :           0 :       if (opts_set->x_flag_reorder_blocks_and_partition)
    1523                 :           0 :         inform (loc,
    1524                 :             :                 "%<-freorder-blocks-and-partition%> does not work "
    1525                 :             :                 "on this architecture");
    1526                 :           0 :       opts->x_flag_reorder_blocks_and_partition = 0;
    1527                 :           0 :       opts->x_flag_reorder_blocks = 1;
    1528                 :             :     }
    1529                 :             : 
    1530                 :             : 
    1531                 :      825854 : }
    1532                 :             : 
    1533                 :             : #define LEFT_COLUMN     27
    1534                 :             : 
    1535                 :             : /* Output ITEM, of length ITEM_WIDTH, in the left column,
    1536                 :             :    followed by word-wrapped HELP in a second column.  */
    1537                 :             : static void
    1538                 :       27052 : wrap_help (const char *help,
    1539                 :             :            const char *item,
    1540                 :             :            unsigned int item_width,
    1541                 :             :            unsigned int columns)
    1542                 :             : {
    1543                 :       27052 :   unsigned int col_width = LEFT_COLUMN;
    1544                 :       27052 :   unsigned int remaining, room, len;
    1545                 :             : 
    1546                 :       27052 :   remaining = strlen (help);
    1547                 :             : 
    1548                 :       41407 :   do
    1549                 :             :     {
    1550                 :       41407 :       room = columns - 3 - MAX (col_width, item_width);
    1551                 :       41407 :       if (room > columns)
    1552                 :           0 :         room = 0;
    1553                 :       41407 :       len = remaining;
    1554                 :             : 
    1555                 :       41407 :       if (room < len)
    1556                 :             :         {
    1557                 :             :           unsigned int i;
    1558                 :             : 
    1559                 :      643685 :           for (i = 0; help[i]; i++)
    1560                 :             :             {
    1561                 :      643685 :               if (i >= room && len != remaining)
    1562                 :             :                 break;
    1563                 :      629330 :               if (help[i] == ' ')
    1564                 :             :                 len = i;
    1565                 :      534794 :               else if ((help[i] == '-' || help[i] == '/')
    1566                 :        2257 :                        && help[i + 1] != ' '
    1567                 :        2257 :                        && i > 0 && ISALPHA (help[i - 1]))
    1568                 :      629330 :                 len = i + 1;
    1569                 :             :             }
    1570                 :             :         }
    1571                 :             : 
    1572                 :       41407 :       printf ("  %-*.*s %.*s\n", col_width, item_width, item, len, help);
    1573                 :       41407 :       item_width = 0;
    1574                 :       96918 :       while (help[len] == ' ')
    1575                 :       14104 :         len++;
    1576                 :       41407 :       help += len;
    1577                 :       41407 :       remaining -= len;
    1578                 :             :     }
    1579                 :       41407 :   while (remaining);
    1580                 :       27052 : }
    1581                 :             : 
    1582                 :             : /* Data structure used to print list of valid option values.  */
    1583                 :             : 
    1584                 :             : class option_help_tuple
    1585                 :             : {
    1586                 :             : public:
    1587                 :          14 :   option_help_tuple (int code, vec<const char *> values):
    1588                 :          14 :     m_code (code), m_values (values)
    1589                 :             :   {}
    1590                 :             : 
    1591                 :             :   /* Code of an option.  */
    1592                 :             :   int m_code;
    1593                 :             : 
    1594                 :             :   /* List of possible values.  */
    1595                 :             :   vec<const char *> m_values;
    1596                 :             : };
    1597                 :             : 
    1598                 :             : /* Print help for a specific front-end, etc.  */
    1599                 :             : static void
    1600                 :         131 : print_filtered_help (unsigned int include_flags,
    1601                 :             :                      unsigned int exclude_flags,
    1602                 :             :                      unsigned int any_flags,
    1603                 :             :                      unsigned int columns,
    1604                 :             :                      struct gcc_options *opts,
    1605                 :             :                      unsigned int lang_mask)
    1606                 :             : {
    1607                 :         131 :   unsigned int i;
    1608                 :         131 :   const char *help;
    1609                 :         131 :   bool found = false;
    1610                 :         131 :   bool displayed = false;
    1611                 :         131 :   char new_help[256];
    1612                 :             : 
    1613                 :         131 :   if (!opts->x_help_printed)
    1614                 :          72 :     opts->x_help_printed = XCNEWVAR (char, cl_options_count);
    1615                 :             : 
    1616                 :         131 :   if (!opts->x_help_enum_printed)
    1617                 :          72 :     opts->x_help_enum_printed = XCNEWVAR (char, cl_enums_count);
    1618                 :             : 
    1619                 :         131 :   auto_vec<option_help_tuple> help_tuples;
    1620                 :             : 
    1621                 :      307195 :   for (i = 0; i < cl_options_count; i++)
    1622                 :             :     {
    1623                 :      307064 :       const struct cl_option *option = cl_options + i;
    1624                 :      307064 :       unsigned int len;
    1625                 :      307064 :       const char *opt;
    1626                 :      307064 :       const char *tab;
    1627                 :             : 
    1628                 :      307064 :       if (include_flags == 0
    1629                 :      300032 :           || ((option->flags & include_flags) != include_flags))
    1630                 :             :         {
    1631                 :      268674 :           if ((option->flags & any_flags) == 0)
    1632                 :      265761 :             continue;
    1633                 :             :         }
    1634                 :             : 
    1635                 :             :       /* Skip unwanted switches.  */
    1636                 :       41303 :       if ((option->flags & exclude_flags) != 0)
    1637                 :        9171 :         continue;
    1638                 :             : 
    1639                 :             :       /* The driver currently prints its own help text.  */
    1640                 :       32132 :       if ((option->flags & CL_DRIVER) != 0
    1641                 :         801 :           && (option->flags & (((1U << cl_lang_count) - 1)
    1642                 :         709 :                                | CL_COMMON | CL_TARGET)) == 0)
    1643                 :          92 :         continue;
    1644                 :             : 
    1645                 :             :       /* If an option contains a language specification,
    1646                 :             :          exclude it from common unless all languages are present.  */
    1647                 :       32040 :       if ((include_flags & CL_COMMON)
    1648                 :        4539 :           && !(option->flags & CL_DRIVER)
    1649                 :        4164 :           && (option->flags & CL_LANG_ALL)
    1650                 :         135 :           && (option->flags & CL_LANG_ALL) != CL_LANG_ALL)
    1651                 :         135 :         continue;
    1652                 :             : 
    1653                 :       31905 :       found = true;
    1654                 :             :       /* Skip switches that have already been printed.  */
    1655                 :       31905 :       if (opts->x_help_printed[i])
    1656                 :        4845 :         continue;
    1657                 :             : 
    1658                 :       27060 :       opts->x_help_printed[i] = true;
    1659                 :             : 
    1660                 :       27060 :       help = option->help;
    1661                 :       27060 :       if (help == NULL)
    1662                 :             :         {
    1663                 :        1282 :           if (exclude_flags & CL_UNDOCUMENTED)
    1664                 :           8 :             continue;
    1665                 :             : 
    1666                 :             :           help = undocumented_msg;
    1667                 :             :         }
    1668                 :             : 
    1669                 :             :       /* Get the translation.  */
    1670                 :       27052 :       help = _(help);
    1671                 :             : 
    1672                 :       27052 :       if (option->alias_target < N_OPTS
    1673                 :        1296 :           && cl_options [option->alias_target].help)
    1674                 :             :         {
    1675                 :        1277 :           const struct cl_option *target = cl_options + option->alias_target;
    1676                 :        1277 :           if (option->help == NULL)
    1677                 :             :             {
    1678                 :             :               /* The option is undocumented but is an alias for an option that
    1679                 :             :                  is documented.  If the option has alias arguments, then its
    1680                 :             :                  purpose is to provide certain arguments to the other option, so
    1681                 :             :                  inform the reader of this.  Otherwise, point the reader to the
    1682                 :             :                  other option in preference to the former.  */
    1683                 :             : 
    1684                 :         754 :               if (option->alias_arg)
    1685                 :             :                 {
    1686                 :         108 :                   if (option->neg_alias_arg)
    1687                 :          83 :                     snprintf (new_help, sizeof new_help,
    1688                 :          83 :                               _("Same as %s%s (or, in negated form, %s%s)."),
    1689                 :             :                               target->opt_text, option->alias_arg,
    1690                 :          83 :                               target->opt_text, option->neg_alias_arg);
    1691                 :             :                   else
    1692                 :          25 :                     snprintf (new_help, sizeof new_help,
    1693                 :          25 :                               _("Same as %s%s."),
    1694                 :          25 :                               target->opt_text, option->alias_arg);
    1695                 :             :                 }
    1696                 :             :               else
    1697                 :         646 :                 snprintf (new_help, sizeof new_help,
    1698                 :         646 :                           _("Same as %s."),
    1699                 :         646 :                           target->opt_text);
    1700                 :             :             }
    1701                 :             :           else
    1702                 :             :             {
    1703                 :             :               /* For documented options with aliases, mention the aliased
    1704                 :             :                  option's name for reference.  */
    1705                 :         523 :               snprintf (new_help, sizeof new_help,
    1706                 :         523 :                         _("%s  Same as %s."),
    1707                 :         523 :                         help, cl_options [option->alias_target].opt_text);
    1708                 :             :             }
    1709                 :             : 
    1710                 :             :           help = new_help;
    1711                 :             :         }
    1712                 :             : 
    1713                 :       27052 :       if (option->warn_message)
    1714                 :             :         {
    1715                 :             :           /* Mention that the use of the option will trigger a warning.  */
    1716                 :          67 :           if (help == new_help)
    1717                 :          42 :             snprintf (new_help + strlen (new_help),
    1718                 :          42 :                       sizeof new_help - strlen (new_help),
    1719                 :             :                       "  %s", _(use_diagnosed_msg));
    1720                 :             :           else
    1721                 :          25 :             snprintf (new_help, sizeof new_help,
    1722                 :             :                       "%s  %s", help, _(use_diagnosed_msg));
    1723                 :             : 
    1724                 :             :           help = new_help;
    1725                 :             :         }
    1726                 :             : 
    1727                 :             :       /* Find the gap between the name of the
    1728                 :             :          option and its descriptive text.  */
    1729                 :       27052 :       tab = strchr (help, '\t');
    1730                 :       27052 :       if (tab)
    1731                 :             :         {
    1732                 :        1509 :           len = tab - help;
    1733                 :        1509 :           opt = help;
    1734                 :        1509 :           help = tab + 1;
    1735                 :             :         }
    1736                 :             :       else
    1737                 :             :         {
    1738                 :       25543 :           opt = option->opt_text;
    1739                 :       25543 :           len = strlen (opt);
    1740                 :             :         }
    1741                 :             : 
    1742                 :             :       /* With the -Q option enabled we change the descriptive text associated
    1743                 :             :          with an option to be an indication of its current setting.  */
    1744                 :       27052 :       if (!opts->x_quiet_flag)
    1745                 :             :         {
    1746                 :        2352 :           void *flag_var = option_flag_var (i, opts);
    1747                 :             : 
    1748                 :        2352 :           if (len < (LEFT_COLUMN + 2))
    1749                 :        2104 :             strcpy (new_help, "\t\t");
    1750                 :             :           else
    1751                 :         248 :             strcpy (new_help, "\t");
    1752                 :             : 
    1753                 :             :           /* Set to print whether the option is enabled or disabled,
    1754                 :             :              or, if it's an alias for another option, the name of
    1755                 :             :              the aliased option.  */
    1756                 :        2352 :           bool print_state = false;
    1757                 :             : 
    1758                 :        2352 :           if (flag_var != NULL
    1759                 :        2152 :               && option->var_type != CLVC_DEFER)
    1760                 :             :             {
    1761                 :             :               /* If OPTION is only available for a specific subset
    1762                 :             :                  of languages other than this one, mention them.  */
    1763                 :        2152 :               bool avail_for_lang = true;
    1764                 :        2152 :               if (unsigned langset = option->flags & CL_LANG_ALL)
    1765                 :             :                 {
    1766                 :        1218 :                   if (!(langset & lang_mask))
    1767                 :             :                     {
    1768                 :         438 :                       avail_for_lang = false;
    1769                 :         438 :                       strcat (new_help, _("[available in "));
    1770                 :        6570 :                       for (unsigned i = 0, n = 0; (1U << i) < CL_LANG_ALL; ++i)
    1771                 :        6132 :                         if (langset & (1U << i))
    1772                 :             :                           {
    1773                 :         747 :                             if (n++)
    1774                 :         309 :                               strcat (new_help, ", ");
    1775                 :         747 :                             strcat (new_help, lang_names[i]);
    1776                 :             :                           }
    1777                 :         438 :                       strcat (new_help, "]");
    1778                 :             :                     }
    1779                 :             :                 }
    1780                 :         438 :               if (!avail_for_lang)
    1781                 :             :                 ; /* Print nothing else if the option is not available
    1782                 :             :                      in the current language.  */
    1783                 :        1714 :               else if (option->flags & CL_JOINED)
    1784                 :             :                 {
    1785                 :         134 :                   if (option->var_type == CLVC_STRING)
    1786                 :             :                     {
    1787                 :          10 :                       if (* (const char **) flag_var != NULL)
    1788                 :           8 :                         snprintf (new_help + strlen (new_help),
    1789                 :           8 :                                   sizeof (new_help) - strlen (new_help),
    1790                 :             :                                   "%s", * (const char **) flag_var);
    1791                 :             :                     }
    1792                 :         124 :                   else if (option->var_type == CLVC_ENUM)
    1793                 :             :                     {
    1794                 :          35 :                       const struct cl_enum *e = &cl_enums[option->var_enum];
    1795                 :          35 :                       int value;
    1796                 :          35 :                       const char *arg = NULL;
    1797                 :             : 
    1798                 :          35 :                       value = e->get (flag_var);
    1799                 :          35 :                       enum_value_to_arg (e->values, &arg, value, lang_mask);
    1800                 :          35 :                       if (arg == NULL)
    1801                 :           8 :                         arg = _("[default]");
    1802                 :          35 :                       snprintf (new_help + strlen (new_help),
    1803                 :          35 :                                 sizeof (new_help) - strlen (new_help),
    1804                 :             :                                 "%s", arg);
    1805                 :             :                     }
    1806                 :             :                   else
    1807                 :             :                     {
    1808                 :          89 :                       if (option->cl_host_wide_int)
    1809                 :          24 :                         sprintf (new_help + strlen (new_help),
    1810                 :          24 :                                  _("%llu bytes"), (unsigned long long)
    1811                 :             :                                  *(unsigned HOST_WIDE_INT *) flag_var);
    1812                 :             :                       else
    1813                 :          65 :                         sprintf (new_help + strlen (new_help),
    1814                 :             :                                  "%i", * (int *) flag_var);
    1815                 :             :                     }
    1816                 :             :                 }
    1817                 :             :               else
    1818                 :             :                 print_state = true;
    1819                 :             :             }
    1820                 :             :           else
    1821                 :             :             /* When there is no argument, print the option state only
    1822                 :             :                if the option takes no argument.  */
    1823                 :         200 :             print_state = !(option->flags & CL_JOINED);
    1824                 :             : 
    1825                 :         770 :           if (print_state)
    1826                 :             :             {
    1827                 :        1762 :               if (option->alias_target < N_OPTS
    1828                 :             :                   && option->alias_target != OPT_SPECIAL_warn_removed
    1829                 :             :                   && option->alias_target != OPT_SPECIAL_ignore
    1830                 :             :                   && option->alias_target != OPT_SPECIAL_input_file
    1831                 :             :                   && option->alias_target != OPT_SPECIAL_program_name
    1832                 :             :                   && option->alias_target != OPT_SPECIAL_unknown)
    1833                 :             :                 {
    1834                 :         144 :                   const struct cl_option *target
    1835                 :         144 :                     = &cl_options[option->alias_target];
    1836                 :         288 :                   sprintf (new_help + strlen (new_help), "%s%s",
    1837                 :         144 :                            target->opt_text,
    1838                 :         144 :                            option->alias_arg ? option->alias_arg : "");
    1839                 :             :                 }
    1840                 :        1618 :               else if (option->alias_target == OPT_SPECIAL_ignore)
    1841                 :          12 :                 strcat (new_help, ("[ignored]"));
    1842                 :             :               else
    1843                 :             :                 {
    1844                 :             :                   /* Print the state for an on/off option.  */
    1845                 :        1606 :                   int ena = option_enabled (i, lang_mask, opts);
    1846                 :        1606 :                   if (ena > 0)
    1847                 :         733 :                     strcat (new_help, _("[enabled]"));
    1848                 :         873 :                   else if (ena == 0)
    1849                 :         781 :                     strcat (new_help, _("[disabled]"));
    1850                 :             :                 }
    1851                 :             :             }
    1852                 :             : 
    1853                 :             :           help = new_help;
    1854                 :             :         }
    1855                 :             : 
    1856                 :       27052 :       if (option->range_max != -1 && tab == NULL)
    1857                 :             :         {
    1858                 :        4617 :           char b[128];
    1859                 :        4617 :           snprintf (b, sizeof (b), "<%d,%d>", option->range_min,
    1860                 :             :                     option->range_max);
    1861                 :        4617 :           opt = concat (opt, b, NULL);
    1862                 :        4617 :           len += strlen (b);
    1863                 :             :         }
    1864                 :             : 
    1865                 :       27052 :       wrap_help (help, opt, len, columns);
    1866                 :       27052 :       displayed = true;
    1867                 :             : 
    1868                 :       27052 :       if (option->var_type == CLVC_ENUM
    1869                 :         791 :           && opts->x_help_enum_printed[option->var_enum] != 2)
    1870                 :         791 :         opts->x_help_enum_printed[option->var_enum] = 1;
    1871                 :             :       else
    1872                 :             :         {
    1873                 :       26261 :           vec<const char *> option_values
    1874                 :       26261 :             = targetm_common.get_valid_option_values (i, NULL);
    1875                 :       26275 :           if (!option_values.is_empty ())
    1876                 :          14 :             help_tuples.safe_push (option_help_tuple (i, option_values));
    1877                 :             :         }
    1878                 :             :     }
    1879                 :             : 
    1880                 :         131 :   if (! found)
    1881                 :             :     {
    1882                 :          10 :       unsigned int langs = include_flags & CL_LANG_ALL;
    1883                 :             : 
    1884                 :          10 :       if (langs == 0)
    1885                 :           1 :         printf (_(" No options with the desired characteristics were found\n"));
    1886                 :             :       else
    1887                 :             :         {
    1888                 :             :           unsigned int i;
    1889                 :             : 
    1890                 :             :           /* PR 31349: Tell the user how to see all of the
    1891                 :             :              options supported by a specific front end.  */
    1892                 :         135 :           for (i = 0; (1U << i) < CL_LANG_ALL; i ++)
    1893                 :         126 :             if ((1U << i) & langs)
    1894                 :           9 :               printf (_(" None found.  Use --help=%s to show *all* the options supported by the %s front-end.\n"),
    1895                 :           9 :                       lang_names[i], lang_names[i]);
    1896                 :             :         }
    1897                 :             : 
    1898                 :             :     }
    1899                 :         121 :   else if (! displayed)
    1900                 :           0 :     printf (_(" All options with the desired characteristics have already been displayed\n"));
    1901                 :             : 
    1902                 :         131 :   putchar ('\n');
    1903                 :             : 
    1904                 :             :   /* Print details of enumerated option arguments, if those
    1905                 :             :      enumerations have help text headings provided.  If no help text
    1906                 :             :      is provided, presume that the possible values are listed in the
    1907                 :             :      help text for the relevant options.  */
    1908                 :        9694 :   for (i = 0; i < cl_enums_count; i++)
    1909                 :             :     {
    1910                 :        9563 :       unsigned int j, pos;
    1911                 :             : 
    1912                 :        9563 :       if (opts->x_help_enum_printed[i] != 1)
    1913                 :        8185 :         continue;
    1914                 :        1378 :       if (cl_enums[i].help == NULL)
    1915                 :        1280 :         continue;
    1916                 :          98 :       printf ("  %s\n    ", _(cl_enums[i].help));
    1917                 :          98 :       pos = 4;
    1918                 :         448 :       for (j = 0; cl_enums[i].values[j].arg != NULL; j++)
    1919                 :             :         {
    1920                 :         350 :           unsigned int len = strlen (cl_enums[i].values[j].arg);
    1921                 :             : 
    1922                 :         350 :           if (pos > 4 && pos + 1 + len <= columns)
    1923                 :             :             {
    1924                 :         251 :               printf (" %s", cl_enums[i].values[j].arg);
    1925                 :         251 :               pos += 1 + len;
    1926                 :             :             }
    1927                 :             :           else
    1928                 :             :             {
    1929                 :           1 :               if (pos > 4)
    1930                 :             :                 {
    1931                 :           1 :                   printf ("\n    ");
    1932                 :           1 :                   pos = 4;
    1933                 :             :                 }
    1934                 :          99 :               printf ("%s", cl_enums[i].values[j].arg);
    1935                 :          99 :               pos += len;
    1936                 :             :             }
    1937                 :             :         }
    1938                 :          98 :       printf ("\n\n");
    1939                 :          98 :       opts->x_help_enum_printed[i] = 2;
    1940                 :             :     }
    1941                 :             : 
    1942                 :         166 :   for (unsigned i = 0; i < help_tuples.length (); i++)
    1943                 :             :     {
    1944                 :          14 :       const struct cl_option *option = cl_options + help_tuples[i].m_code;
    1945                 :          14 :       printf (_("  Known valid arguments for %s option:\n   "),
    1946                 :          14 :               option->opt_text);
    1947                 :        2422 :       for (unsigned j = 0; j < help_tuples[i].m_values.length (); j++)
    1948                 :        1197 :         printf (" %s", help_tuples[i].m_values[j]);
    1949                 :          14 :       printf ("\n\n");
    1950                 :             :     }
    1951                 :         131 : }
    1952                 :             : 
    1953                 :             : /* Display help for a specified type of option.
    1954                 :             :    The options must have ALL of the INCLUDE_FLAGS set
    1955                 :             :    ANY of the flags in the ANY_FLAGS set
    1956                 :             :    and NONE of the EXCLUDE_FLAGS set.  The current option state is in
    1957                 :             :    OPTS; LANG_MASK is used for interpreting enumerated option state.  */
    1958                 :             : static void
    1959                 :         131 : print_specific_help (unsigned int include_flags,
    1960                 :             :                      unsigned int exclude_flags,
    1961                 :             :                      unsigned int any_flags,
    1962                 :             :                      struct gcc_options *opts,
    1963                 :             :                      unsigned int lang_mask)
    1964                 :             : {
    1965                 :         131 :   unsigned int all_langs_mask = (1U << cl_lang_count) - 1;
    1966                 :         131 :   const char * description = NULL;
    1967                 :         131 :   const char * descrip_extra = "";
    1968                 :         131 :   size_t i;
    1969                 :         131 :   unsigned int flag;
    1970                 :             : 
    1971                 :             :   /* Sanity check: Make sure that we do not have more
    1972                 :             :      languages than we have bits available to enumerate them.  */
    1973                 :         131 :   gcc_assert ((1U << cl_lang_count) <= CL_MIN_OPTION_CLASS);
    1974                 :             : 
    1975                 :             :   /* If we have not done so already, obtain
    1976                 :             :      the desired maximum width of the output.  */
    1977                 :         131 :   if (opts->x_help_columns == 0)
    1978                 :             :     {
    1979                 :          72 :       opts->x_help_columns = get_terminal_width ();
    1980                 :          72 :       if (opts->x_help_columns == INT_MAX)
    1981                 :             :         /* Use a reasonable default.  */
    1982                 :          34 :         opts->x_help_columns = 80;
    1983                 :             :     }
    1984                 :             : 
    1985                 :             :   /* Decide upon the title for the options that we are going to display.  */
    1986                 :        3013 :   for (i = 0, flag = 1; flag <= CL_MAX_OPTION_CLASS; flag <<= 1, i ++)
    1987                 :             :     {
    1988                 :        2882 :       switch (flag & include_flags)
    1989                 :             :         {
    1990                 :             :         case 0:
    1991                 :             :         case CL_DRIVER:
    1992                 :             :           break;
    1993                 :             : 
    1994                 :           7 :         case CL_TARGET:
    1995                 :           7 :           description = _("The following options are target specific");
    1996                 :           7 :           break;
    1997                 :          11 :         case CL_WARNING:
    1998                 :          11 :           description = _("The following options control compiler warning messages");
    1999                 :          11 :           break;
    2000                 :          10 :         case CL_OPTIMIZATION:
    2001                 :          10 :           description = _("The following options control optimizations");
    2002                 :          10 :           break;
    2003                 :           5 :         case CL_COMMON:
    2004                 :           5 :           description = _("The following options are language-independent");
    2005                 :           5 :           break;
    2006                 :          40 :         case CL_PARAMS:
    2007                 :          40 :           description = _("The following options control parameters");
    2008                 :          40 :           break;
    2009                 :          50 :         default:
    2010                 :          50 :           if (i >= cl_lang_count)
    2011                 :             :             break;
    2012                 :          50 :           if (exclude_flags & all_langs_mask)
    2013                 :          42 :             description = _("The following options are specific to just the language ");
    2014                 :             :           else
    2015                 :           8 :             description = _("The following options are supported by the language ");
    2016                 :          50 :           descrip_extra = lang_names [i];
    2017                 :          50 :           break;
    2018                 :             :         }
    2019                 :             :     }
    2020                 :             : 
    2021                 :         131 :   if (description == NULL)
    2022                 :             :     {
    2023                 :           9 :       if (any_flags == 0)
    2024                 :             :         {
    2025                 :           6 :           if (include_flags & CL_UNDOCUMENTED)
    2026                 :           2 :             description = _("The following options are not documented");
    2027                 :           4 :           else if (include_flags & CL_SEPARATE)
    2028                 :           2 :             description = _("The following options take separate arguments");
    2029                 :           2 :           else if (include_flags & CL_JOINED)
    2030                 :           2 :             description = _("The following options take joined arguments");
    2031                 :             :           else
    2032                 :             :             {
    2033                 :           0 :               internal_error ("unrecognized %<include_flags 0x%x%> passed "
    2034                 :             :                               "to %<print_specific_help%>",
    2035                 :             :                               include_flags);
    2036                 :             :               return;
    2037                 :             :             }
    2038                 :             :         }
    2039                 :             :       else
    2040                 :             :         {
    2041                 :           3 :           if (any_flags & all_langs_mask)
    2042                 :           3 :             description = _("The following options are language-related");
    2043                 :             :           else
    2044                 :           0 :             description = _("The following options are language-independent");
    2045                 :             :         }
    2046                 :             :     }
    2047                 :             : 
    2048                 :         131 :   printf ("%s%s:\n", description, descrip_extra);
    2049                 :         131 :   print_filtered_help (include_flags, exclude_flags, any_flags,
    2050                 :             :                        opts->x_help_columns, opts, lang_mask);
    2051                 :             : }
    2052                 :             : 
    2053                 :             : /* Enable FDO-related flags.  */
    2054                 :             : 
    2055                 :             : static void
    2056                 :         156 : enable_fdo_optimizations (struct gcc_options *opts,
    2057                 :             :                           struct gcc_options *opts_set,
    2058                 :             :                           int value)
    2059                 :             : {
    2060                 :         156 :   SET_OPTION_IF_UNSET (opts, opts_set, flag_branch_probabilities, value);
    2061                 :         156 :   SET_OPTION_IF_UNSET (opts, opts_set, flag_profile_values, value);
    2062                 :         156 :   SET_OPTION_IF_UNSET (opts, opts_set, flag_unroll_loops, value);
    2063                 :         156 :   SET_OPTION_IF_UNSET (opts, opts_set, flag_peel_loops, value);
    2064                 :         156 :   SET_OPTION_IF_UNSET (opts, opts_set, flag_tracer, value);
    2065                 :         156 :   SET_OPTION_IF_UNSET (opts, opts_set, flag_value_profile_transformations,
    2066                 :             :                        value);
    2067                 :         156 :   SET_OPTION_IF_UNSET (opts, opts_set, flag_inline_functions, value);
    2068                 :         156 :   SET_OPTION_IF_UNSET (opts, opts_set, flag_ipa_cp, value);
    2069                 :         156 :   if (value)
    2070                 :             :     {
    2071                 :         156 :       SET_OPTION_IF_UNSET (opts, opts_set, flag_ipa_cp_clone, 1);
    2072                 :         156 :       SET_OPTION_IF_UNSET (opts, opts_set, flag_ipa_bit_cp, 1);
    2073                 :             :     }
    2074                 :         156 :   SET_OPTION_IF_UNSET (opts, opts_set, flag_predictive_commoning, value);
    2075                 :         156 :   SET_OPTION_IF_UNSET (opts, opts_set, flag_split_loops, value);
    2076                 :         156 :   SET_OPTION_IF_UNSET (opts, opts_set, flag_unswitch_loops, value);
    2077                 :         156 :   SET_OPTION_IF_UNSET (opts, opts_set, flag_gcse_after_reload, value);
    2078                 :         156 :   SET_OPTION_IF_UNSET (opts, opts_set, flag_tree_loop_vectorize, value);
    2079                 :         156 :   SET_OPTION_IF_UNSET (opts, opts_set, flag_tree_slp_vectorize, value);
    2080                 :         156 :   SET_OPTION_IF_UNSET (opts, opts_set, flag_version_loops_for_strides, value);
    2081                 :         156 :   SET_OPTION_IF_UNSET (opts, opts_set, flag_vect_cost_model,
    2082                 :             :                        VECT_COST_MODEL_DYNAMIC);
    2083                 :         156 :   SET_OPTION_IF_UNSET (opts, opts_set, flag_tree_loop_distribute_patterns,
    2084                 :             :                        value);
    2085                 :         156 :   SET_OPTION_IF_UNSET (opts, opts_set, flag_loop_interchange, value);
    2086                 :         156 :   SET_OPTION_IF_UNSET (opts, opts_set, flag_unroll_jam, value);
    2087                 :         156 :   SET_OPTION_IF_UNSET (opts, opts_set, flag_tree_loop_distribution, value);
    2088                 :         156 : }
    2089                 :             : 
    2090                 :             : /* -f{,no-}sanitize{,-recover}= suboptions.  */
    2091                 :             : const struct sanitizer_opts_s sanitizer_opts[] =
    2092                 :             : {
    2093                 :             : #define SANITIZER_OPT(name, flags, recover, trap) \
    2094                 :             :     { #name, flags, sizeof #name - 1, recover, trap }
    2095                 :             :   SANITIZER_OPT (address, (SANITIZE_ADDRESS | SANITIZE_USER_ADDRESS), true,
    2096                 :             :                  false),
    2097                 :             :   SANITIZER_OPT (hwaddress, (SANITIZE_HWADDRESS | SANITIZE_USER_HWADDRESS),
    2098                 :             :                  true, false),
    2099                 :             :   SANITIZER_OPT (kernel-address, (SANITIZE_ADDRESS | SANITIZE_KERNEL_ADDRESS),
    2100                 :             :                  true, false),
    2101                 :             :   SANITIZER_OPT (kernel-hwaddress,
    2102                 :             :                  (SANITIZE_HWADDRESS | SANITIZE_KERNEL_HWADDRESS),
    2103                 :             :                  true, false),
    2104                 :             :   SANITIZER_OPT (pointer-compare, SANITIZE_POINTER_COMPARE, true, false),
    2105                 :             :   SANITIZER_OPT (pointer-subtract, SANITIZE_POINTER_SUBTRACT, true, false),
    2106                 :             :   SANITIZER_OPT (thread, SANITIZE_THREAD, false, false),
    2107                 :             :   SANITIZER_OPT (leak, SANITIZE_LEAK, false, false),
    2108                 :             :   SANITIZER_OPT (shift, SANITIZE_SHIFT, true, true),
    2109                 :             :   SANITIZER_OPT (shift-base, SANITIZE_SHIFT_BASE, true, true),
    2110                 :             :   SANITIZER_OPT (shift-exponent, SANITIZE_SHIFT_EXPONENT, true, true),
    2111                 :             :   SANITIZER_OPT (integer-divide-by-zero, SANITIZE_DIVIDE, true, true),
    2112                 :             :   SANITIZER_OPT (undefined, SANITIZE_UNDEFINED, true, true),
    2113                 :             :   SANITIZER_OPT (unreachable, SANITIZE_UNREACHABLE, false, true),
    2114                 :             :   SANITIZER_OPT (vla-bound, SANITIZE_VLA, true, true),
    2115                 :             :   SANITIZER_OPT (return, SANITIZE_RETURN, false, true),
    2116                 :             :   SANITIZER_OPT (null, SANITIZE_NULL, true, true),
    2117                 :             :   SANITIZER_OPT (signed-integer-overflow, SANITIZE_SI_OVERFLOW, true, true),
    2118                 :             :   SANITIZER_OPT (bool, SANITIZE_BOOL, true, true),
    2119                 :             :   SANITIZER_OPT (enum, SANITIZE_ENUM, true, true),
    2120                 :             :   SANITIZER_OPT (float-divide-by-zero, SANITIZE_FLOAT_DIVIDE, true, true),
    2121                 :             :   SANITIZER_OPT (float-cast-overflow, SANITIZE_FLOAT_CAST, true, true),
    2122                 :             :   SANITIZER_OPT (bounds, SANITIZE_BOUNDS, true, true),
    2123                 :             :   SANITIZER_OPT (bounds-strict, SANITIZE_BOUNDS | SANITIZE_BOUNDS_STRICT, true,
    2124                 :             :                  true),
    2125                 :             :   SANITIZER_OPT (alignment, SANITIZE_ALIGNMENT, true, true),
    2126                 :             :   SANITIZER_OPT (nonnull-attribute, SANITIZE_NONNULL_ATTRIBUTE, true, true),
    2127                 :             :   SANITIZER_OPT (returns-nonnull-attribute, SANITIZE_RETURNS_NONNULL_ATTRIBUTE,
    2128                 :             :                  true, true),
    2129                 :             :   SANITIZER_OPT (object-size, SANITIZE_OBJECT_SIZE, true, true),
    2130                 :             :   SANITIZER_OPT (vptr, SANITIZE_VPTR, true, false),
    2131                 :             :   SANITIZER_OPT (pointer-overflow, SANITIZE_POINTER_OVERFLOW, true, true),
    2132                 :             :   SANITIZER_OPT (builtin, SANITIZE_BUILTIN, true, true),
    2133                 :             :   SANITIZER_OPT (shadow-call-stack, SANITIZE_SHADOW_CALL_STACK, false, false),
    2134                 :             :   SANITIZER_OPT (all, ~0U, true, true),
    2135                 :             : #undef SANITIZER_OPT
    2136                 :             :   { NULL, 0U, 0UL, false, false }
    2137                 :             : };
    2138                 :             : 
    2139                 :             : /* -fzero-call-used-regs= suboptions.  */
    2140                 :             : const struct zero_call_used_regs_opts_s zero_call_used_regs_opts[] =
    2141                 :             : {
    2142                 :             : #define ZERO_CALL_USED_REGS_OPT(name, flags) \
    2143                 :             :     { #name, flags }
    2144                 :             :   ZERO_CALL_USED_REGS_OPT (skip, zero_regs_flags::SKIP),
    2145                 :             :   ZERO_CALL_USED_REGS_OPT (used-gpr-arg, zero_regs_flags::USED_GPR_ARG),
    2146                 :             :   ZERO_CALL_USED_REGS_OPT (used-gpr, zero_regs_flags::USED_GPR),
    2147                 :             :   ZERO_CALL_USED_REGS_OPT (used-arg, zero_regs_flags::USED_ARG),
    2148                 :             :   ZERO_CALL_USED_REGS_OPT (used, zero_regs_flags::USED),
    2149                 :             :   ZERO_CALL_USED_REGS_OPT (all-gpr-arg, zero_regs_flags::ALL_GPR_ARG),
    2150                 :             :   ZERO_CALL_USED_REGS_OPT (all-gpr, zero_regs_flags::ALL_GPR),
    2151                 :             :   ZERO_CALL_USED_REGS_OPT (all-arg, zero_regs_flags::ALL_ARG),
    2152                 :             :   ZERO_CALL_USED_REGS_OPT (all, zero_regs_flags::ALL),
    2153                 :             :   ZERO_CALL_USED_REGS_OPT (leafy-gpr-arg, zero_regs_flags::LEAFY_GPR_ARG),
    2154                 :             :   ZERO_CALL_USED_REGS_OPT (leafy-gpr, zero_regs_flags::LEAFY_GPR),
    2155                 :             :   ZERO_CALL_USED_REGS_OPT (leafy-arg, zero_regs_flags::LEAFY_ARG),
    2156                 :             :   ZERO_CALL_USED_REGS_OPT (leafy, zero_regs_flags::LEAFY),
    2157                 :             : #undef ZERO_CALL_USED_REGS_OPT
    2158                 :             :   {NULL, 0U}
    2159                 :             : };
    2160                 :             : 
    2161                 :             : /* A struct for describing a run of chars within a string.  */
    2162                 :             : 
    2163                 :             : class string_fragment
    2164                 :             : {
    2165                 :             : public:
    2166                 :           6 :   string_fragment (const char *start, size_t len)
    2167                 :           6 :   : m_start (start), m_len (len) {}
    2168                 :             : 
    2169                 :             :   const char *m_start;
    2170                 :             :   size_t m_len;
    2171                 :             : };
    2172                 :             : 
    2173                 :             : /* Specialization of edit_distance_traits for string_fragment,
    2174                 :             :    for use by get_closest_sanitizer_option.  */
    2175                 :             : 
    2176                 :             : template <>
    2177                 :             : struct edit_distance_traits<const string_fragment &>
    2178                 :             : {
    2179                 :           6 :   static size_t get_length (const string_fragment &fragment)
    2180                 :             :   {
    2181                 :           6 :     return fragment.m_len;
    2182                 :             :   }
    2183                 :             : 
    2184                 :           6 :   static const char *get_string (const string_fragment &fragment)
    2185                 :             :   {
    2186                 :           6 :     return fragment.m_start;
    2187                 :             :   }
    2188                 :             : };
    2189                 :             : 
    2190                 :             : /* Given ARG, an unrecognized sanitizer option, return the best
    2191                 :             :    matching sanitizer option, or NULL if there isn't one.
    2192                 :             :    OPTS is array of candidate sanitizer options.
    2193                 :             :    CODE is OPT_fsanitize_, OPT_fsanitize_recover_ or OPT_fsanitize_trap_.
    2194                 :             :    VALUE is non-zero for the regular form of the option, zero
    2195                 :             :    for the "no-" form (e.g. "-fno-sanitize-recover=").  */
    2196                 :             : 
    2197                 :             : static const char *
    2198                 :           6 : get_closest_sanitizer_option (const string_fragment &arg,
    2199                 :             :                               const struct sanitizer_opts_s *opts,
    2200                 :             :                               enum opt_code code, int value)
    2201                 :             : {
    2202                 :           6 :   best_match <const string_fragment &, const char*> bm (arg);
    2203                 :         204 :   for (int i = 0; opts[i].name != NULL; ++i)
    2204                 :             :     {
    2205                 :             :       /* -fsanitize=all is not valid, so don't offer it.  */
    2206                 :         198 :       if (code == OPT_fsanitize_
    2207                 :         165 :           && opts[i].flag == ~0U
    2208                 :           5 :           && value)
    2209                 :           4 :         continue;
    2210                 :             : 
    2211                 :             :       /* For -fsanitize-recover= (and not -fno-sanitize-recover=),
    2212                 :             :          don't offer the non-recoverable options.  */
    2213                 :         194 :       if (code == OPT_fsanitize_recover_
    2214                 :          33 :           && !opts[i].can_recover
    2215                 :           5 :           && value)
    2216                 :           5 :         continue;
    2217                 :             : 
    2218                 :             :       /* For -fsanitize-trap= (and not -fno-sanitize-trap=),
    2219                 :             :          don't offer the non-trapping options.  */
    2220                 :         189 :       if (code == OPT_fsanitize_trap_
    2221                 :           0 :           && !opts[i].can_trap
    2222                 :           0 :           && value)
    2223                 :           0 :         continue;
    2224                 :             : 
    2225                 :         189 :       bm.consider (opts[i].name);
    2226                 :             :     }
    2227                 :           6 :   return bm.get_best_meaningful_candidate ();
    2228                 :             : }
    2229                 :             : 
    2230                 :             : /* Parse comma separated sanitizer suboptions from P for option SCODE,
    2231                 :             :    adjust previous FLAGS and return new ones.  If COMPLAIN is false,
    2232                 :             :    don't issue diagnostics.  */
    2233                 :             : 
    2234                 :             : unsigned int
    2235                 :       18541 : parse_sanitizer_options (const char *p, location_t loc, int scode,
    2236                 :             :                          unsigned int flags, int value, bool complain)
    2237                 :             : {
    2238                 :       18541 :   enum opt_code code = (enum opt_code) scode;
    2239                 :             : 
    2240                 :       19446 :   while (*p != 0)
    2241                 :             :     {
    2242                 :       19446 :       size_t len, i;
    2243                 :       19446 :       bool found = false;
    2244                 :       19446 :       const char *comma = strchr (p, ',');
    2245                 :             : 
    2246                 :       19446 :       if (comma == NULL)
    2247                 :       18541 :         len = strlen (p);
    2248                 :             :       else
    2249                 :         905 :         len = comma - p;
    2250                 :       19446 :       if (len == 0)
    2251                 :             :         {
    2252                 :           0 :           p = comma + 1;
    2253                 :           0 :           continue;
    2254                 :             :         }
    2255                 :             : 
    2256                 :             :       /* Check to see if the string matches an option class name.  */
    2257                 :      184206 :       for (i = 0; sanitizer_opts[i].name != NULL; ++i)
    2258                 :      184200 :         if (len == sanitizer_opts[i].len
    2259                 :       28328 :             && memcmp (p, sanitizer_opts[i].name, len) == 0)
    2260                 :             :           {
    2261                 :             :             /* Handle both -fsanitize and -fno-sanitize cases.  */
    2262                 :       19440 :             if (value && sanitizer_opts[i].flag == ~0U)
    2263                 :             :               {
    2264                 :          45 :                 if (code == OPT_fsanitize_)
    2265                 :             :                   {
    2266                 :           3 :                     if (complain)
    2267                 :           3 :                       error_at (loc, "%<-fsanitize=all%> option is not valid");
    2268                 :             :                   }
    2269                 :          42 :                 else if (code == OPT_fsanitize_recover_)
    2270                 :          14 :                   flags |= ~(SANITIZE_THREAD | SANITIZE_LEAK
    2271                 :             :                              | SANITIZE_UNREACHABLE | SANITIZE_RETURN
    2272                 :             :                              | SANITIZE_SHADOW_CALL_STACK);
    2273                 :             :                 else /* if (code == OPT_fsanitize_trap_) */
    2274                 :          28 :                   flags |= (SANITIZE_UNDEFINED
    2275                 :             :                             | SANITIZE_UNDEFINED_NONDEFAULT);
    2276                 :             :               }
    2277                 :       18117 :             else if (value)
    2278                 :             :               {
    2279                 :             :                 /* Do not enable -fsanitize-recover=unreachable and
    2280                 :             :                    -fsanitize-recover=return if -fsanitize-recover=undefined
    2281                 :             :                    is selected.  */
    2282                 :       18117 :                 if (code == OPT_fsanitize_recover_
    2283                 :         422 :                     && sanitizer_opts[i].flag == SANITIZE_UNDEFINED)
    2284                 :          44 :                   flags |= (SANITIZE_UNDEFINED
    2285                 :             :                             & ~(SANITIZE_UNREACHABLE | SANITIZE_RETURN));
    2286                 :       18073 :                 else if (code == OPT_fsanitize_trap_
    2287                 :         190 :                          && sanitizer_opts[i].flag == SANITIZE_VPTR)
    2288                 :           0 :                   error_at (loc, "%<-fsanitize-trap=%s%> is not supported",
    2289                 :             :                             sanitizer_opts[i].name);
    2290                 :             :                 else
    2291                 :       18073 :                   flags |= sanitizer_opts[i].flag;
    2292                 :             :               }
    2293                 :             :             else
    2294                 :             :               {
    2295                 :        1278 :                 flags &= ~sanitizer_opts[i].flag;
    2296                 :             :                 /* Don't always clear SANITIZE_ADDRESS if it was previously
    2297                 :             :                    set: -fsanitize=address -fno-sanitize=kernel-address should
    2298                 :             :                    leave SANITIZE_ADDRESS set.  */
    2299                 :        1278 :                 if (flags & (SANITIZE_KERNEL_ADDRESS | SANITIZE_USER_ADDRESS))
    2300                 :         760 :                   flags |= SANITIZE_ADDRESS;
    2301                 :             :               }
    2302                 :             :             found = true;
    2303                 :             :             break;
    2304                 :             :           }
    2305                 :             : 
    2306                 :       19446 :       if (! found && complain)
    2307                 :             :         {
    2308                 :           6 :           const char *hint
    2309                 :           6 :             = get_closest_sanitizer_option (string_fragment (p, len),
    2310                 :             :                                             sanitizer_opts, code, value);
    2311                 :             : 
    2312                 :           6 :           const char *suffix;
    2313                 :           6 :           if (code == OPT_fsanitize_recover_)
    2314                 :             :             suffix = "-recover";
    2315                 :           5 :           else if (code == OPT_fsanitize_trap_)
    2316                 :             :             suffix = "-trap";
    2317                 :             :           else
    2318                 :           5 :             suffix = "";
    2319                 :             : 
    2320                 :           6 :           if (hint)
    2321                 :           4 :             error_at (loc,
    2322                 :             :                       "unrecognized argument to %<-f%ssanitize%s=%> "
    2323                 :             :                       "option: %q.*s; did you mean %qs?",
    2324                 :             :                       value ? "" : "no-",
    2325                 :             :                       suffix, (int) len, p, hint);
    2326                 :             :           else
    2327                 :           3 :             error_at (loc,
    2328                 :             :                       "unrecognized argument to %<-f%ssanitize%s=%> option: "
    2329                 :             :                       "%q.*s", value ? "" : "no-",
    2330                 :             :                       suffix, (int) len, p);
    2331                 :             :         }
    2332                 :             : 
    2333                 :       19446 :       if (comma == NULL)
    2334                 :             :         break;
    2335                 :         905 :       p = comma + 1;
    2336                 :             :     }
    2337                 :       18541 :   return flags;
    2338                 :             : }
    2339                 :             : 
    2340                 :             : /* Parse string values of no_sanitize attribute passed in VALUE.
    2341                 :             :    Values are separated with comma.  */
    2342                 :             : 
    2343                 :             : unsigned int
    2344                 :         295 : parse_no_sanitize_attribute (char *value)
    2345                 :             : {
    2346                 :         295 :   unsigned int flags = 0;
    2347                 :         295 :   unsigned int i;
    2348                 :         295 :   char *q = strtok (value, ",");
    2349                 :             : 
    2350                 :        1138 :   while (q != NULL)
    2351                 :             :     {
    2352                 :        6654 :       for (i = 0; sanitizer_opts[i].name != NULL; ++i)
    2353                 :        6632 :         if (strcmp (sanitizer_opts[i].name, q) == 0)
    2354                 :             :           {
    2355                 :         526 :             flags |= sanitizer_opts[i].flag;
    2356                 :         526 :             if (sanitizer_opts[i].flag == SANITIZE_UNDEFINED)
    2357                 :          62 :               flags |= SANITIZE_UNDEFINED_NONDEFAULT;
    2358                 :             :             break;
    2359                 :             :           }
    2360                 :             : 
    2361                 :         548 :       if (sanitizer_opts[i].name == NULL)
    2362                 :          22 :         warning (OPT_Wattributes,
    2363                 :             :                  "%qs attribute directive ignored", q);
    2364                 :             : 
    2365                 :         548 :       q = strtok (NULL, ",");
    2366                 :             :     }
    2367                 :             : 
    2368                 :         295 :   return flags;
    2369                 :             : }
    2370                 :             : 
    2371                 :             : /* Parse -fzero-call-used-regs suboptions from ARG, return the FLAGS.  */
    2372                 :             : 
    2373                 :             : unsigned int
    2374                 :          88 : parse_zero_call_used_regs_options (const char *arg)
    2375                 :             : {
    2376                 :          88 :   unsigned int flags = 0;
    2377                 :             : 
    2378                 :             :   /* Check to see if the string matches a sub-option name.  */
    2379                 :         526 :   for (unsigned int i = 0; zero_call_used_regs_opts[i].name != NULL; ++i)
    2380                 :         526 :     if (strcmp (arg, zero_call_used_regs_opts[i].name) == 0)
    2381                 :             :       {
    2382                 :          88 :         flags = zero_call_used_regs_opts[i].flag;
    2383                 :          88 :         break;
    2384                 :             :       }
    2385                 :             : 
    2386                 :          88 :   if (!flags)
    2387                 :           0 :     error ("unrecognized argument to %<-fzero-call-used-regs=%>: %qs", arg);
    2388                 :             : 
    2389                 :          88 :   return flags;
    2390                 :             : }
    2391                 :             : 
    2392                 :             : /* Parse -falign-NAME format for a FLAG value.  Return individual
    2393                 :             :    parsed integer values into RESULT_VALUES array.  If REPORT_ERROR is
    2394                 :             :    set, print error message at LOC location.  */
    2395                 :             : 
    2396                 :             : bool
    2397                 :      342078 : parse_and_check_align_values (const char *flag,
    2398                 :             :                               const char *name,
    2399                 :             :                               auto_vec<unsigned> &result_values,
    2400                 :             :                               bool report_error,
    2401                 :             :                               location_t loc)
    2402                 :             : {
    2403                 :      342078 :   char *str = xstrdup (flag);
    2404                 :     1140272 :   for (char *p = strtok (str, ":"); p; p = strtok (NULL, ":"))
    2405                 :             :     {
    2406                 :      798194 :       char *end;
    2407                 :      798194 :       int v = strtol (p, &end, 10);
    2408                 :      798194 :       if (*end != '\0' || v < 0)
    2409                 :             :         {
    2410                 :           0 :           if (report_error)
    2411                 :           0 :             error_at (loc, "invalid arguments for %<-falign-%s%> option: %qs",
    2412                 :             :                       name, flag);
    2413                 :             : 
    2414                 :           0 :           return false;
    2415                 :             :         }
    2416                 :             : 
    2417                 :      798194 :       result_values.safe_push ((unsigned)v);
    2418                 :             :     }
    2419                 :             : 
    2420                 :      342078 :   free (str);
    2421                 :             : 
    2422                 :             :   /* Check that we have a correct number of values.  */
    2423                 :      684156 :   if (result_values.is_empty () || result_values.length () > 4)
    2424                 :             :     {
    2425                 :           0 :       if (report_error)
    2426                 :           0 :         error_at (loc, "invalid number of arguments for %<-falign-%s%> "
    2427                 :             :                   "option: %qs", name, flag);
    2428                 :           0 :       return false;
    2429                 :             :     }
    2430                 :             : 
    2431                 :     1140271 :   for (unsigned i = 0; i < result_values.length (); i++)
    2432                 :      798194 :     if (result_values[i] > MAX_CODE_ALIGN_VALUE)
    2433                 :             :       {
    2434                 :           1 :         if (report_error)
    2435                 :           1 :           error_at (loc, "%<-falign-%s%> is not between 0 and %d",
    2436                 :             :                     name, MAX_CODE_ALIGN_VALUE);
    2437                 :           1 :         return false;
    2438                 :             :       }
    2439                 :             : 
    2440                 :             :   return true;
    2441                 :             : }
    2442                 :             : 
    2443                 :             : /* Check that alignment value FLAG for -falign-NAME is valid at a given
    2444                 :             :    location LOC. OPT_STR points to the stored -falign-NAME=argument and
    2445                 :             :    OPT_FLAG points to the associated -falign-NAME on/off flag.  */
    2446                 :             : 
    2447                 :             : static void
    2448                 :          20 : check_alignment_argument (location_t loc, const char *flag, const char *name,
    2449                 :             :                           int *opt_flag, const char **opt_str)
    2450                 :             : {
    2451                 :          20 :   auto_vec<unsigned> align_result;
    2452                 :          20 :   parse_and_check_align_values (flag, name, align_result, true, loc);
    2453                 :             : 
    2454                 :          40 :   if (align_result.length() >= 1 && align_result[0] == 0)
    2455                 :             :     {
    2456                 :           0 :       *opt_flag = 1;
    2457                 :           0 :       *opt_str = NULL;
    2458                 :             :     }
    2459                 :          20 : }
    2460                 :             : 
    2461                 :             : /* Parse argument of -fpatchable-function-entry option ARG and store
    2462                 :             :    corresponding values to PATCH_AREA_SIZE and PATCH_AREA_START.
    2463                 :             :    If REPORT_ERROR is set to true, generate error for a problematic
    2464                 :             :    option arguments.  */
    2465                 :             : 
    2466                 :             : void
    2467                 :     1709250 : parse_and_check_patch_area (const char *arg, bool report_error,
    2468                 :             :                             HOST_WIDE_INT *patch_area_size,
    2469                 :             :                             HOST_WIDE_INT *patch_area_start)
    2470                 :             : {
    2471                 :     1709250 :   *patch_area_size = 0;
    2472                 :     1709250 :   *patch_area_start = 0;
    2473                 :             : 
    2474                 :     1709250 :   if (arg == NULL)
    2475                 :             :     return;
    2476                 :             : 
    2477                 :         141 :   char *patch_area_arg = xstrdup (arg);
    2478                 :         141 :   char *comma = strchr (patch_area_arg, ',');
    2479                 :         141 :   if (comma)
    2480                 :             :     {
    2481                 :          65 :       *comma = '\0';
    2482                 :          65 :       *patch_area_size = integral_argument (patch_area_arg);
    2483                 :          65 :       *patch_area_start = integral_argument (comma + 1);
    2484                 :             :     }
    2485                 :             :   else
    2486                 :          76 :     *patch_area_size = integral_argument (patch_area_arg);
    2487                 :             : 
    2488                 :         141 :   if (*patch_area_size < 0
    2489                 :         141 :       || *patch_area_size > USHRT_MAX
    2490                 :         131 :       || *patch_area_start < 0
    2491                 :         131 :       || *patch_area_start > USHRT_MAX
    2492                 :         121 :       || *patch_area_size < *patch_area_start)
    2493                 :          20 :     if (report_error)
    2494                 :          10 :       error ("invalid arguments for %<-fpatchable-function-entry%>");
    2495                 :             : 
    2496                 :         141 :   free (patch_area_arg);
    2497                 :             : }
    2498                 :             : 
    2499                 :             : /* Print options enabled by -fhardened.  Keep this in sync with the manual!  */
    2500                 :             : 
    2501                 :             : static void
    2502                 :           1 : print_help_hardened ()
    2503                 :             : {
    2504                 :           1 :   printf ("%s\n", "The following options are enabled by -fhardened:");
    2505                 :             :   /* Unfortunately, I can't seem to use targetm.fortify_source_default_level
    2506                 :             :      here.  */
    2507                 :           1 :   printf ("  %s\n", "-D_FORTIFY_SOURCE=3 (or =2 for glibc < 2.35)");
    2508                 :           1 :   printf ("  %s\n", "-D_GLIBCXX_ASSERTIONS");
    2509                 :           1 :   printf ("  %s\n", "-ftrivial-auto-var-init=zero");
    2510                 :             : #ifdef HAVE_LD_PIE
    2511                 :           1 :   printf ("  %s  %s\n", "-fPIE", "-pie");
    2512                 :             : #endif
    2513                 :           1 :   if (HAVE_LD_NOW_SUPPORT)
    2514                 :           1 :     printf ("  %s\n", "-Wl,-z,now");
    2515                 :           1 :   if (HAVE_LD_RELRO_SUPPORT)
    2516                 :           1 :     printf ("  %s\n", "-Wl,-z,relro");
    2517                 :           1 :   printf ("  %s\n", "-fstack-protector-strong");
    2518                 :           1 :   printf ("  %s\n", "-fstack-clash-protection");
    2519                 :           1 :   printf ("  %s\n", "-fcf-protection=full");
    2520                 :           1 :   putchar ('\n');
    2521                 :           1 : }
    2522                 :             : 
    2523                 :             : /* Print help when OPT__help_ is set.  */
    2524                 :             : 
    2525                 :             : void
    2526                 :          75 : print_help (struct gcc_options *opts, unsigned int lang_mask,
    2527                 :             :             const char *help_option_argument)
    2528                 :             : {
    2529                 :          75 :   const char *a = help_option_argument;
    2530                 :          75 :   unsigned int include_flags = 0;
    2531                 :             :   /* Note - by default we include undocumented options when listing
    2532                 :             :      specific classes.  If you only want to see documented options
    2533                 :             :      then add ",^undocumented" to the --help= option.  E.g.:
    2534                 :             : 
    2535                 :             :      --help=target,^undocumented  */
    2536                 :          75 :   unsigned int exclude_flags = 0;
    2537                 :             : 
    2538                 :          75 :   if (lang_mask == CL_DRIVER)
    2539                 :           0 :     return;
    2540                 :             : 
    2541                 :             :   /* Walk along the argument string, parsing each word in turn.
    2542                 :             :      The format is:
    2543                 :             :      arg = [^]{word}[,{arg}]
    2544                 :             :      word = {optimizers|target|warnings|undocumented|
    2545                 :             :      params|common|<language>}  */
    2546                 :          85 :   while (*a != 0)
    2547                 :             :     {
    2548                 :          85 :       static const struct
    2549                 :             :         {
    2550                 :             :           const char *string;
    2551                 :             :           unsigned int flag;
    2552                 :             :         }
    2553                 :             :       specifics[] =
    2554                 :             :         {
    2555                 :             :             { "optimizers", CL_OPTIMIZATION },
    2556                 :             :             { "target", CL_TARGET },
    2557                 :             :             { "warnings", CL_WARNING },
    2558                 :             :             { "undocumented", CL_UNDOCUMENTED },
    2559                 :             :             { "params", CL_PARAMS },
    2560                 :             :             { "joined", CL_JOINED },
    2561                 :             :             { "separate", CL_SEPARATE },
    2562                 :             :             { "common", CL_COMMON },
    2563                 :             :             { NULL, 0 }
    2564                 :             :         };
    2565                 :          85 :       unsigned int *pflags;
    2566                 :          85 :       const char *comma;
    2567                 :          85 :       unsigned int lang_flag, specific_flag;
    2568                 :          85 :       unsigned int len;
    2569                 :          85 :       unsigned int i;
    2570                 :             : 
    2571                 :          85 :       if (*a == '^')
    2572                 :             :         {
    2573                 :           8 :           ++a;
    2574                 :           8 :           if (*a == '\0')
    2575                 :             :             {
    2576                 :           1 :               error ("missing argument to %qs", "--help=^");
    2577                 :           1 :               break;
    2578                 :             :             }
    2579                 :             :           pflags = &exclude_flags;
    2580                 :             :         }
    2581                 :             :       else
    2582                 :             :         pflags = &include_flags;
    2583                 :             : 
    2584                 :          84 :       comma = strchr (a, ',');
    2585                 :          84 :       if (comma == NULL)
    2586                 :          74 :         len = strlen (a);
    2587                 :             :       else
    2588                 :          10 :         len = comma - a;
    2589                 :          84 :       if (len == 0)
    2590                 :             :         {
    2591                 :           0 :           a = comma + 1;
    2592                 :           0 :           continue;
    2593                 :             :         }
    2594                 :             : 
    2595                 :             :       /* Check to see if the string matches an option class name.  */
    2596                 :         415 :       for (i = 0, specific_flag = 0; specifics[i].string != NULL; i++)
    2597                 :         408 :         if (strncasecmp (a, specifics[i].string, len) == 0)
    2598                 :             :           {
    2599                 :          77 :             specific_flag = specifics[i].flag;
    2600                 :          77 :             break;
    2601                 :             :           }
    2602                 :             : 
    2603                 :             :       /* Check to see if the string matches a language name.
    2604                 :             :          Note - we rely upon the alpha-sorted nature of the entries in
    2605                 :             :          the lang_names array, specifically that shorter names appear
    2606                 :             :          before their longer variants.  (i.e. C before C++).  That way
    2607                 :             :          when we are attempting to match --help=c for example we will
    2608                 :             :          match with C first and not C++.  */
    2609                 :        1180 :       for (i = 0, lang_flag = 0; i < cl_lang_count; i++)
    2610                 :        1104 :         if (strncasecmp (a, lang_names[i], len) == 0)
    2611                 :             :           {
    2612                 :           8 :             lang_flag = 1U << i;
    2613                 :           8 :             break;
    2614                 :             :           }
    2615                 :             : 
    2616                 :          84 :       if (specific_flag != 0)
    2617                 :             :         {
    2618                 :          77 :           if (lang_flag == 0)
    2619                 :          75 :             *pflags |= specific_flag;
    2620                 :             :           else
    2621                 :             :             {
    2622                 :             :               /* The option's argument matches both the start of a
    2623                 :             :                  language name and the start of an option class name.
    2624                 :             :                  We have a special case for when the user has
    2625                 :             :                  specified "--help=c", but otherwise we have to issue
    2626                 :             :                  a warning.  */
    2627                 :           2 :               if (strncasecmp (a, "c", len) == 0)
    2628                 :           2 :                 *pflags |= lang_flag;
    2629                 :             :               else
    2630                 :           0 :                 warning (0,
    2631                 :             :                          "%<--help%> argument %q.*s is ambiguous, "
    2632                 :             :                          "please be more specific",
    2633                 :             :                          len, a);
    2634                 :             :             }
    2635                 :             :         }
    2636                 :           7 :       else if (lang_flag != 0)
    2637                 :           6 :         *pflags |= lang_flag;
    2638                 :           1 :       else if (strncasecmp (a, "hardened", len) == 0)
    2639                 :           1 :         print_help_hardened ();
    2640                 :             :       else
    2641                 :           0 :         warning (0,
    2642                 :             :                  "unrecognized argument to %<--help=%> option: %q.*s",
    2643                 :             :                  len, a);
    2644                 :             : 
    2645                 :          84 :       if (comma == NULL)
    2646                 :             :         break;
    2647                 :          10 :       a = comma + 1;
    2648                 :             :     }
    2649                 :             : 
    2650                 :             :   /* We started using PerFunction/Optimization for parameters and
    2651                 :             :      a warning.  We should exclude these from optimization options.  */
    2652                 :          75 :   if (include_flags & CL_OPTIMIZATION)
    2653                 :           7 :     exclude_flags |= CL_WARNING;
    2654                 :          75 :   if (!(include_flags & CL_PARAMS))
    2655                 :          38 :     exclude_flags |= CL_PARAMS;
    2656                 :             : 
    2657                 :          75 :   if (include_flags)
    2658                 :          71 :     print_specific_help (include_flags, exclude_flags, 0, opts,
    2659                 :             :                          lang_mask);
    2660                 :             : }
    2661                 :             : 
    2662                 :             : /* Handle target- and language-independent options.  Return zero to
    2663                 :             :    generate an "unknown option" message.  Only options that need
    2664                 :             :    extra handling need to be listed here; if you simply want
    2665                 :             :    DECODED->value assigned to a variable, it happens automatically.  */
    2666                 :             : 
    2667                 :             : bool
    2668                 :    66952299 : common_handle_option (struct gcc_options *opts,
    2669                 :             :                       struct gcc_options *opts_set,
    2670                 :             :                       const struct cl_decoded_option *decoded,
    2671                 :             :                       unsigned int lang_mask, int kind ATTRIBUTE_UNUSED,
    2672                 :             :                       location_t loc,
    2673                 :             :                       const struct cl_option_handlers *handlers,
    2674                 :             :                       diagnostic_context *dc,
    2675                 :             :                       void (*target_option_override_hook) (void))
    2676                 :             : {
    2677                 :    66952299 :   size_t scode = decoded->opt_index;
    2678                 :    66952299 :   const char *arg = decoded->arg;
    2679                 :    66952299 :   HOST_WIDE_INT value = decoded->value;
    2680                 :    66952299 :   enum opt_code code = (enum opt_code) scode;
    2681                 :             : 
    2682                 :    66952299 :   gcc_assert (decoded->canonical_option_num_elements <= 2);
    2683                 :             : 
    2684                 :    66952299 :   switch (code)
    2685                 :             :     {
    2686                 :           7 :     case OPT__help:
    2687                 :           7 :       {
    2688                 :           7 :         unsigned int all_langs_mask = (1U << cl_lang_count) - 1;
    2689                 :           7 :         unsigned int undoc_mask;
    2690                 :           7 :         unsigned int i;
    2691                 :             : 
    2692                 :           7 :         if (lang_mask == CL_DRIVER)
    2693                 :             :           break;
    2694                 :             : 
    2695                 :           6 :         undoc_mask = ((opts->x_verbose_flag | opts->x_extra_warnings)
    2696                 :           3 :                       ? 0
    2697                 :             :                       : CL_UNDOCUMENTED);
    2698                 :           3 :         target_option_override_hook ();
    2699                 :             :         /* First display any single language specific options.  */
    2700                 :          48 :         for (i = 0; i < cl_lang_count; i++)
    2701                 :          42 :           print_specific_help
    2702                 :          42 :             (1U << i, (all_langs_mask & (~ (1U << i))) | undoc_mask, 0, opts,
    2703                 :             :              lang_mask);
    2704                 :             :         /* Next display any multi language specific options.  */
    2705                 :           3 :         print_specific_help (0, undoc_mask, all_langs_mask, opts, lang_mask);
    2706                 :             :         /* Then display any remaining, non-language options.  */
    2707                 :          24 :         for (i = CL_MIN_OPTION_CLASS; i <= CL_MAX_OPTION_CLASS; i <<= 1)
    2708                 :          18 :           if (i != CL_DRIVER)
    2709                 :          15 :             print_specific_help (i, undoc_mask, 0, opts, lang_mask);
    2710                 :           3 :         opts->x_exit_after_options = true;
    2711                 :           3 :         break;
    2712                 :             :       }
    2713                 :             : 
    2714                 :           0 :     case OPT__target_help:
    2715                 :           0 :       if (lang_mask == CL_DRIVER)
    2716                 :             :         break;
    2717                 :             : 
    2718                 :           0 :       target_option_override_hook ();
    2719                 :           0 :       print_specific_help (CL_TARGET, 0, 0, opts, lang_mask);
    2720                 :           0 :       opts->x_exit_after_options = true;
    2721                 :           0 :       break;
    2722                 :             : 
    2723                 :         150 :     case OPT__help_:
    2724                 :         150 :       {
    2725                 :         150 :         help_option_arguments.safe_push (arg);
    2726                 :         150 :         opts->x_exit_after_options = true;
    2727                 :         150 :         break;
    2728                 :             :       }
    2729                 :             : 
    2730                 :          78 :     case OPT__version:
    2731                 :          78 :       if (lang_mask == CL_DRIVER)
    2732                 :             :         break;
    2733                 :             : 
    2734                 :           0 :       opts->x_exit_after_options = true;
    2735                 :           0 :       break;
    2736                 :             : 
    2737                 :             :     case OPT__completion_:
    2738                 :             :       break;
    2739                 :             : 
    2740                 :       17230 :     case OPT_fsanitize_:
    2741                 :       17230 :       opts_set->x_flag_sanitize = true;
    2742                 :       17230 :       opts->x_flag_sanitize
    2743                 :       17230 :         = parse_sanitizer_options (arg, loc, code,
    2744                 :             :                                    opts->x_flag_sanitize, value, true);
    2745                 :             : 
    2746                 :             :       /* Kernel ASan implies normal ASan but does not yet support
    2747                 :             :          all features.  */
    2748                 :       17230 :       if (opts->x_flag_sanitize & SANITIZE_KERNEL_ADDRESS)
    2749                 :             :         {
    2750                 :         366 :           SET_OPTION_IF_UNSET (opts, opts_set,
    2751                 :             :                                param_asan_instrumentation_with_call_threshold,
    2752                 :             :                                0);
    2753                 :         366 :           SET_OPTION_IF_UNSET (opts, opts_set, param_asan_globals, 0);
    2754                 :         366 :           SET_OPTION_IF_UNSET (opts, opts_set, param_asan_stack, 0);
    2755                 :         366 :           SET_OPTION_IF_UNSET (opts, opts_set, param_asan_protect_allocas, 0);
    2756                 :         366 :           SET_OPTION_IF_UNSET (opts, opts_set, param_asan_use_after_return, 0);
    2757                 :             :         }
    2758                 :       17230 :       if (opts->x_flag_sanitize & SANITIZE_KERNEL_HWADDRESS)
    2759                 :             :         {
    2760                 :          56 :           SET_OPTION_IF_UNSET (opts, opts_set,
    2761                 :             :                                param_hwasan_instrument_stack, 0);
    2762                 :          56 :           SET_OPTION_IF_UNSET (opts, opts_set,
    2763                 :             :                                param_hwasan_random_frame_tag, 0);
    2764                 :          56 :           SET_OPTION_IF_UNSET (opts, opts_set,
    2765                 :             :                                param_hwasan_instrument_allocas, 0);
    2766                 :             :         }
    2767                 :             :       break;
    2768                 :             : 
    2769                 :        1093 :     case OPT_fsanitize_recover_:
    2770                 :        1093 :       opts->x_flag_sanitize_recover
    2771                 :        1093 :         = parse_sanitizer_options (arg, loc, code,
    2772                 :             :                                    opts->x_flag_sanitize_recover, value, true);
    2773                 :        1093 :       break;
    2774                 :             : 
    2775                 :         218 :     case OPT_fsanitize_trap_:
    2776                 :         218 :       opts->x_flag_sanitize_trap
    2777                 :         218 :         = parse_sanitizer_options (arg, loc, code,
    2778                 :             :                                    opts->x_flag_sanitize_trap, value, true);
    2779                 :         218 :       break;
    2780                 :             : 
    2781                 :             :     case OPT_fasan_shadow_offset_:
    2782                 :             :       /* Deferred.  */
    2783                 :             :       break;
    2784                 :             : 
    2785                 :          68 :     case OPT_fsanitize_address_use_after_scope:
    2786                 :          68 :       opts->x_flag_sanitize_address_use_after_scope = value;
    2787                 :          68 :       break;
    2788                 :             : 
    2789                 :           8 :     case OPT_fsanitize_recover:
    2790                 :           8 :       if (value)
    2791                 :           0 :         opts->x_flag_sanitize_recover
    2792                 :           0 :           |= (SANITIZE_UNDEFINED | SANITIZE_UNDEFINED_NONDEFAULT)
    2793                 :             :              & ~(SANITIZE_UNREACHABLE | SANITIZE_RETURN);
    2794                 :             :       else
    2795                 :           8 :         opts->x_flag_sanitize_recover
    2796                 :           8 :           &= ~(SANITIZE_UNDEFINED | SANITIZE_UNDEFINED_NONDEFAULT);
    2797                 :             :       break;
    2798                 :             : 
    2799                 :         256 :     case OPT_fsanitize_trap:
    2800                 :         256 :       if (value)
    2801                 :         256 :         opts->x_flag_sanitize_trap
    2802                 :         256 :           |= (SANITIZE_UNDEFINED | SANITIZE_UNDEFINED_NONDEFAULT);
    2803                 :             :       else
    2804                 :           0 :         opts->x_flag_sanitize_trap
    2805                 :           0 :           &= ~(SANITIZE_UNDEFINED | SANITIZE_UNDEFINED_NONDEFAULT);
    2806                 :             :       break;
    2807                 :             : 
    2808                 :             :     case OPT_O:
    2809                 :             :     case OPT_Os:
    2810                 :             :     case OPT_Ofast:
    2811                 :             :     case OPT_Og:
    2812                 :             :     case OPT_Oz:
    2813                 :             :       /* Currently handled in a prescan.  */
    2814                 :             :       break;
    2815                 :             : 
    2816                 :         105 :     case OPT_Wattributes_:
    2817                 :         105 :       if (lang_mask == CL_DRIVER)
    2818                 :             :         break;
    2819                 :             : 
    2820                 :         105 :       if (value)
    2821                 :             :         {
    2822                 :           0 :           error_at (loc, "arguments ignored for %<-Wattributes=%>; use "
    2823                 :             :                     "%<-Wno-attributes=%> instead");
    2824                 :           0 :           break;
    2825                 :             :         }
    2826                 :         105 :       else if (arg[strlen (arg) - 1] == ',')
    2827                 :             :         {
    2828                 :           0 :           error_at (loc, "trailing %<,%> in arguments for "
    2829                 :             :                     "%<-Wno-attributes=%>");
    2830                 :           0 :           break;
    2831                 :             :         }
    2832                 :             : 
    2833                 :         105 :       add_comma_separated_to_vector (&opts->x_flag_ignored_attributes, arg);
    2834                 :         105 :       break;
    2835                 :             : 
    2836                 :        4299 :     case OPT_Werror:
    2837                 :        4299 :       dc->set_warning_as_error_requested (value);
    2838                 :        4299 :       break;
    2839                 :             : 
    2840                 :        5252 :     case OPT_Werror_:
    2841                 :        5252 :       if (lang_mask == CL_DRIVER)
    2842                 :             :         break;
    2843                 :             : 
    2844                 :        5252 :       enable_warning_as_error (arg, value, lang_mask, handlers,
    2845                 :             :                                opts, opts_set, loc, dc);
    2846                 :        5252 :       break;
    2847                 :             : 
    2848                 :           7 :     case OPT_Wfatal_errors:
    2849                 :           7 :       dc->m_fatal_errors = value;
    2850                 :           7 :       break;
    2851                 :             : 
    2852                 :          14 :     case OPT_Wstack_usage_:
    2853                 :          14 :       opts->x_flag_stack_usage_info = value != -1;
    2854                 :          14 :       break;
    2855                 :             : 
    2856                 :          71 :     case OPT_Wstrict_aliasing:
    2857                 :          71 :       set_Wstrict_aliasing (opts, value);
    2858                 :          71 :       break;
    2859                 :             : 
    2860                 :          15 :     case OPT_Wstrict_overflow:
    2861                 :          30 :       opts->x_warn_strict_overflow = (value
    2862                 :          15 :                                       ? (int) WARN_STRICT_OVERFLOW_CONDITIONAL
    2863                 :             :                                       : 0);
    2864                 :          15 :       break;
    2865                 :             : 
    2866                 :          26 :     case OPT_Wsystem_headers:
    2867                 :          26 :       dc->m_warn_system_headers = value;
    2868                 :          26 :       break;
    2869                 :             : 
    2870                 :           0 :     case OPT_aux_info:
    2871                 :           0 :       opts->x_flag_gen_aux_info = 1;
    2872                 :           0 :       break;
    2873                 :             : 
    2874                 :        1732 :     case OPT_d:
    2875                 :        1732 :       decode_d_option (arg, opts, loc, dc);
    2876                 :        1732 :       break;
    2877                 :             : 
    2878                 :             :     case OPT_fcall_used_:
    2879                 :             :     case OPT_fcall_saved_:
    2880                 :             :       /* Deferred.  */
    2881                 :             :       break;
    2882                 :             : 
    2883                 :             :     case OPT_fdbg_cnt_:
    2884                 :             :       /* Deferred.  */
    2885                 :             :       break;
    2886                 :             : 
    2887                 :             :     case OPT_fdebug_prefix_map_:
    2888                 :             :     case OPT_ffile_prefix_map_:
    2889                 :             :     case OPT_fprofile_prefix_map_:
    2890                 :             :       /* Deferred.  */
    2891                 :             :       break;
    2892                 :             : 
    2893                 :           0 :     case OPT_fcanon_prefix_map:
    2894                 :           0 :       flag_canon_prefix_map = value;
    2895                 :           0 :       break;
    2896                 :             : 
    2897                 :           0 :     case OPT_fcallgraph_info:
    2898                 :           0 :       opts->x_flag_callgraph_info = CALLGRAPH_INFO_NAKED;
    2899                 :           0 :       break;
    2900                 :             : 
    2901                 :           0 :     case OPT_fcallgraph_info_:
    2902                 :           0 :       {
    2903                 :           0 :         char *my_arg, *p;
    2904                 :           0 :         my_arg = xstrdup (arg);
    2905                 :           0 :         p = strtok (my_arg, ",");
    2906                 :           0 :         while (p)
    2907                 :             :           {
    2908                 :           0 :             if (strcmp (p, "su") == 0)
    2909                 :             :               {
    2910                 :           0 :                 opts->x_flag_callgraph_info |= CALLGRAPH_INFO_STACK_USAGE;
    2911                 :           0 :                 opts->x_flag_stack_usage_info = true;
    2912                 :             :               }
    2913                 :           0 :             else if (strcmp (p, "da") == 0)
    2914                 :           0 :               opts->x_flag_callgraph_info |= CALLGRAPH_INFO_DYNAMIC_ALLOC;
    2915                 :             :             else
    2916                 :             :               return 0;
    2917                 :           0 :             p = strtok (NULL, ",");
    2918                 :             :           }
    2919                 :           0 :         free (my_arg);
    2920                 :             :       }
    2921                 :           0 :       break;
    2922                 :             : 
    2923                 :         412 :     case OPT_fdiagnostics_show_location_:
    2924                 :         412 :       diagnostic_prefixing_rule (dc) = (diagnostic_prefixing_rule_t) value;
    2925                 :         412 :       break;
    2926                 :             :  
    2927                 :      263230 :     case OPT_fdiagnostics_show_caret:
    2928                 :      263230 :       dc->m_source_printing.enabled = value;
    2929                 :      263230 :       break;
    2930                 :             : 
    2931                 :           1 :     case OPT_fdiagnostics_show_labels:
    2932                 :           1 :       dc->m_source_printing.show_labels_p = value;
    2933                 :           1 :       break;
    2934                 :             : 
    2935                 :      257171 :     case OPT_fdiagnostics_show_line_numbers:
    2936                 :      257171 :       dc->m_source_printing.show_line_numbers_p = value;
    2937                 :      257171 :       break;
    2938                 :             : 
    2939                 :      533823 :     case OPT_fdiagnostics_color_:
    2940                 :      533823 :       diagnostic_color_init (dc, value);
    2941                 :      533823 :       break;
    2942                 :             : 
    2943                 :      567984 :     case OPT_fdiagnostics_urls_:
    2944                 :      567984 :       diagnostic_urls_init (dc, value);
    2945                 :      567984 :       break;
    2946                 :             : 
    2947                 :         132 :     case OPT_fdiagnostics_format_:
    2948                 :         132 :         {
    2949                 :         132 :           const char *basename = (opts->x_dump_base_name ? opts->x_dump_base_name
    2950                 :             :                                   : opts->x_main_input_basename);
    2951                 :         132 :           diagnostic_output_format_init (dc, basename,
    2952                 :             :                                          (enum diagnostics_output_format)value,
    2953                 :         132 :                                          opts->x_flag_diagnostics_json_formatting);
    2954                 :         132 :           break;
    2955                 :             :         }
    2956                 :             : 
    2957                 :      568121 :     case OPT_fdiagnostics_text_art_charset_:
    2958                 :      568121 :       dc->set_text_art_charset ((enum diagnostic_text_art_charset)value);
    2959                 :      568121 :       break;
    2960                 :             : 
    2961                 :           5 :     case OPT_fdiagnostics_parseable_fixits:
    2962                 :           5 :       dc->set_extra_output_kind (value
    2963                 :             :                                  ? EXTRA_DIAGNOSTIC_OUTPUT_fixits_v1
    2964                 :             :                                  : EXTRA_DIAGNOSTIC_OUTPUT_none);
    2965                 :           5 :       break;
    2966                 :             : 
    2967                 :          35 :     case OPT_fdiagnostics_column_unit_:
    2968                 :          35 :       dc->m_column_unit = (enum diagnostics_column_unit)value;
    2969                 :          35 :       break;
    2970                 :             : 
    2971                 :          15 :     case OPT_fdiagnostics_column_origin_:
    2972                 :          15 :       dc->m_column_origin = value;
    2973                 :          15 :       break;
    2974                 :             : 
    2975                 :           4 :     case OPT_fdiagnostics_escape_format_:
    2976                 :           4 :       dc->set_escape_format ((enum diagnostics_escape_format)value);
    2977                 :           4 :       break;
    2978                 :             : 
    2979                 :           0 :     case OPT_fdiagnostics_show_cwe:
    2980                 :           0 :       dc->set_show_cwe (value);
    2981                 :           0 :       break;
    2982                 :             : 
    2983                 :           0 :     case OPT_fdiagnostics_show_rules:
    2984                 :           0 :       dc->set_show_rules (value);
    2985                 :           0 :       break;
    2986                 :             : 
    2987                 :      287182 :     case OPT_fdiagnostics_path_format_:
    2988                 :      287182 :       dc->set_path_format ((enum diagnostic_path_format)value);
    2989                 :      287182 :       break;
    2990                 :             : 
    2991                 :          92 :     case OPT_fdiagnostics_show_path_depths:
    2992                 :          92 :       dc->set_show_path_depths (value);
    2993                 :          92 :       break;
    2994                 :             : 
    2995                 :          60 :     case OPT_fdiagnostics_show_option:
    2996                 :          60 :       dc->set_show_option_requested (value);
    2997                 :          60 :       break;
    2998                 :             : 
    2999                 :           1 :     case OPT_fdiagnostics_minimum_margin_width_:
    3000                 :           1 :       dc->m_source_printing.min_margin_width = value;
    3001                 :           1 :       break;
    3002                 :             : 
    3003                 :             :     case OPT_fdump_:
    3004                 :             :       /* Deferred.  */
    3005                 :             :       break;
    3006                 :             : 
    3007                 :      545338 :     case OPT_ffast_math:
    3008                 :      545338 :       set_fast_math_flags (opts, value);
    3009                 :      545338 :       break;
    3010                 :             : 
    3011                 :         331 :     case OPT_funsafe_math_optimizations:
    3012                 :         331 :       set_unsafe_math_optimizations_flags (opts, value);
    3013                 :         331 :       break;
    3014                 :             : 
    3015                 :             :     case OPT_ffixed_:
    3016                 :             :       /* Deferred.  */
    3017                 :             :       break;
    3018                 :             : 
    3019                 :          10 :     case OPT_finline_limit_:
    3020                 :          10 :       SET_OPTION_IF_UNSET (opts, opts_set, param_max_inline_insns_single,
    3021                 :             :                            value / 2);
    3022                 :          10 :       SET_OPTION_IF_UNSET (opts, opts_set, param_max_inline_insns_auto,
    3023                 :             :                            value / 2);
    3024                 :             :       break;
    3025                 :             : 
    3026                 :           1 :     case OPT_finstrument_functions_exclude_function_list_:
    3027                 :           1 :       add_comma_separated_to_vector
    3028                 :           1 :         (&opts->x_flag_instrument_functions_exclude_functions, arg);
    3029                 :           1 :       break;
    3030                 :             : 
    3031                 :           1 :     case OPT_finstrument_functions_exclude_file_list_:
    3032                 :           1 :       add_comma_separated_to_vector
    3033                 :           1 :         (&opts->x_flag_instrument_functions_exclude_files, arg);
    3034                 :           1 :       break;
    3035                 :             : 
    3036                 :      106833 :     case OPT_fmessage_length_:
    3037                 :      106833 :       pp_set_line_maximum_length (dc->printer, value);
    3038                 :      106833 :       diagnostic_set_caret_max_width (dc, value);
    3039                 :      106833 :       break;
    3040                 :             : 
    3041                 :             :     case OPT_fopt_info:
    3042                 :             :     case OPT_fopt_info_:
    3043                 :             :       /* Deferred.  */
    3044                 :             :       break;
    3045                 :             : 
    3046                 :             :     case OPT_foffload_options_:
    3047                 :             :       /* Deferred.  */
    3048                 :             :       break;
    3049                 :             : 
    3050                 :           0 :     case OPT_foffload_abi_:
    3051                 :             : #ifdef ACCEL_COMPILER
    3052                 :             :       /* Handled in the 'mkoffload's.  */
    3053                 :             : #else
    3054                 :           0 :       error_at (loc, "%<-foffload-abi%> option can be specified only for "
    3055                 :             :                 "offload compiler");
    3056                 :             : #endif
    3057                 :           0 :       break;
    3058                 :             : 
    3059                 :           1 :     case OPT_fpack_struct_:
    3060                 :           1 :       if (value <= 0 || (value & (value - 1)) || value > 16)
    3061                 :           0 :         error_at (loc,
    3062                 :             :                   "structure alignment must be a small power of two, not %wu",
    3063                 :             :                   value);
    3064                 :             :       else
    3065                 :           1 :         opts->x_initial_max_fld_align = value;
    3066                 :             :       break;
    3067                 :             : 
    3068                 :             :     case OPT_fplugin_:
    3069                 :             :     case OPT_fplugin_arg_:
    3070                 :             :       /* Deferred.  */
    3071                 :             :       break;
    3072                 :             : 
    3073                 :           0 :     case OPT_fprofile_use_:
    3074                 :           0 :       opts->x_profile_data_prefix = xstrdup (arg);
    3075                 :           0 :       opts->x_flag_profile_use = true;
    3076                 :           0 :       value = true;
    3077                 :             :       /* No break here - do -fprofile-use processing. */
    3078                 :             :       /* FALLTHRU */
    3079                 :         156 :     case OPT_fprofile_use:
    3080                 :         156 :       enable_fdo_optimizations (opts, opts_set, value);
    3081                 :         156 :       SET_OPTION_IF_UNSET (opts, opts_set, flag_profile_reorder_functions,
    3082                 :             :                            value);
    3083                 :             :         /* Indirect call profiling should do all useful transformations
    3084                 :             :            speculative devirtualization does.  */
    3085                 :         156 :       if (opts->x_flag_value_profile_transformations)
    3086                 :         156 :         SET_OPTION_IF_UNSET (opts, opts_set, flag_devirtualize_speculatively,
    3087                 :             :                              false);
    3088                 :             :       break;
    3089                 :             : 
    3090                 :           0 :     case OPT_fauto_profile_:
    3091                 :           0 :       opts->x_auto_profile_file = xstrdup (arg);
    3092                 :           0 :       opts->x_flag_auto_profile = true;
    3093                 :           0 :       value = true;
    3094                 :             :       /* No break here - do -fauto-profile processing. */
    3095                 :             :       /* FALLTHRU */
    3096                 :           0 :     case OPT_fauto_profile:
    3097                 :           0 :       enable_fdo_optimizations (opts, opts_set, value);
    3098                 :           0 :       SET_OPTION_IF_UNSET (opts, opts_set, flag_profile_correction, value);
    3099                 :             :       break;
    3100                 :             : 
    3101                 :           2 :     case OPT_fprofile_generate_:
    3102                 :           2 :       opts->x_profile_data_prefix = xstrdup (arg);
    3103                 :           2 :       value = true;
    3104                 :             :       /* No break here - do -fprofile-generate processing. */
    3105                 :             :       /* FALLTHRU */
    3106                 :         237 :     case OPT_fprofile_generate:
    3107                 :         237 :       SET_OPTION_IF_UNSET (opts, opts_set, profile_arc_flag, value);
    3108                 :         237 :       SET_OPTION_IF_UNSET (opts, opts_set, flag_profile_values, value);
    3109                 :         237 :       SET_OPTION_IF_UNSET (opts, opts_set, flag_inline_functions, value);
    3110                 :         237 :       SET_OPTION_IF_UNSET (opts, opts_set, flag_ipa_bit_cp, value);
    3111                 :             :       break;
    3112                 :             : 
    3113                 :           2 :     case OPT_fprofile_info_section:
    3114                 :           2 :       opts->x_profile_info_section = ".gcov_info";
    3115                 :           2 :       break;
    3116                 :             : 
    3117                 :          44 :     case OPT_fpatchable_function_entry_:
    3118                 :          44 :       {
    3119                 :          44 :         HOST_WIDE_INT patch_area_size, patch_area_start;
    3120                 :          44 :         parse_and_check_patch_area (arg, true, &patch_area_size,
    3121                 :             :                                     &patch_area_start);
    3122                 :             :       }
    3123                 :          44 :       break;
    3124                 :             : 
    3125                 :             :     case OPT_ftree_vectorize:
    3126                 :             :       /* Automatically sets -ftree-loop-vectorize and
    3127                 :             :          -ftree-slp-vectorize.  Nothing more to do here.  */
    3128                 :             :       break;
    3129                 :          88 :     case OPT_fzero_call_used_regs_:
    3130                 :          88 :       opts->x_flag_zero_call_used_regs
    3131                 :          88 :         = parse_zero_call_used_regs_options (arg);
    3132                 :          88 :       break;
    3133                 :             : 
    3134                 :       13245 :     case OPT_fshow_column:
    3135                 :       13245 :       dc->m_show_column = value;
    3136                 :       13245 :       break;
    3137                 :             : 
    3138                 :           0 :     case OPT_frandom_seed:
    3139                 :             :       /* The real switch is -fno-random-seed.  */
    3140                 :           0 :       if (value)
    3141                 :             :         return false;
    3142                 :             :       /* Deferred.  */
    3143                 :             :       break;
    3144                 :             : 
    3145                 :             :     case OPT_frandom_seed_:
    3146                 :             :       /* Deferred.  */
    3147                 :             :       break;
    3148                 :             : 
    3149                 :             :     case OPT_fsched_verbose_:
    3150                 :             : #ifdef INSN_SCHEDULING
    3151                 :             :       /* Handled with Var in common.opt.  */
    3152                 :             :       break;
    3153                 :             : #else
    3154                 :             :       return false;
    3155                 :             : #endif
    3156                 :             : 
    3157                 :           1 :     case OPT_fsched_stalled_insns_:
    3158                 :           1 :       opts->x_flag_sched_stalled_insns = value;
    3159                 :           1 :       if (opts->x_flag_sched_stalled_insns == 0)
    3160                 :           1 :         opts->x_flag_sched_stalled_insns = -1;
    3161                 :             :       break;
    3162                 :             : 
    3163                 :           0 :     case OPT_fsched_stalled_insns_dep_:
    3164                 :           0 :       opts->x_flag_sched_stalled_insns_dep = value;
    3165                 :           0 :       break;
    3166                 :             : 
    3167                 :          63 :     case OPT_fstack_check_:
    3168                 :          63 :       if (!strcmp (arg, "no"))
    3169                 :           0 :         opts->x_flag_stack_check = NO_STACK_CHECK;
    3170                 :          63 :       else if (!strcmp (arg, "generic"))
    3171                 :             :         /* This is the old stack checking method.  */
    3172                 :          28 :         opts->x_flag_stack_check = STACK_CHECK_BUILTIN
    3173                 :             :                            ? FULL_BUILTIN_STACK_CHECK
    3174                 :             :                            : GENERIC_STACK_CHECK;
    3175                 :          35 :       else if (!strcmp (arg, "specific"))
    3176                 :             :         /* This is the new stack checking method.  */
    3177                 :          35 :         opts->x_flag_stack_check = STACK_CHECK_BUILTIN
    3178                 :             :                            ? FULL_BUILTIN_STACK_CHECK
    3179                 :             :                            : STACK_CHECK_STATIC_BUILTIN
    3180                 :             :                              ? STATIC_BUILTIN_STACK_CHECK
    3181                 :             :                              : GENERIC_STACK_CHECK;
    3182                 :             :       else
    3183                 :           0 :         warning_at (loc, 0, "unknown stack check parameter %qs", arg);
    3184                 :             :       break;
    3185                 :             : 
    3186                 :           1 :     case OPT_fstack_limit:
    3187                 :             :       /* The real switch is -fno-stack-limit.  */
    3188                 :           1 :       if (value)
    3189                 :             :         return false;
    3190                 :             :       /* Deferred.  */
    3191                 :             :       break;
    3192                 :             : 
    3193                 :             :     case OPT_fstack_limit_register_:
    3194                 :             :     case OPT_fstack_limit_symbol_:
    3195                 :             :       /* Deferred.  */
    3196                 :             :       break;
    3197                 :             : 
    3198                 :         558 :     case OPT_fstack_usage:
    3199                 :         558 :       opts->x_flag_stack_usage = value;
    3200                 :         558 :       opts->x_flag_stack_usage_info = value != 0;
    3201                 :         558 :       break;
    3202                 :             : 
    3203                 :      124177 :     case OPT_g:
    3204                 :      124177 :       set_debug_level (NO_DEBUG, DEFAULT_GDB_EXTENSIONS, arg, opts, opts_set,
    3205                 :             :                        loc);
    3206                 :      124177 :       break;
    3207                 :             : 
    3208                 :             :     case OPT_gcodeview:
    3209                 :             :       break;
    3210                 :             : 
    3211                 :         144 :     case OPT_gbtf:
    3212                 :         144 :       set_debug_level (BTF_DEBUG, false, arg, opts, opts_set, loc);
    3213                 :             :       /* set the debug level to level 2, but if already at level 3,
    3214                 :             :          don't lower it.  */
    3215                 :         144 :       if (opts->x_debug_info_level < DINFO_LEVEL_NORMAL)
    3216                 :         144 :         opts->x_debug_info_level = DINFO_LEVEL_NORMAL;
    3217                 :             :       break;
    3218                 :             : 
    3219                 :         599 :     case OPT_gctf:
    3220                 :         599 :       set_debug_level (CTF_DEBUG, false, arg, opts, opts_set, loc);
    3221                 :             :       /* CTF generation feeds off DWARF dies.  For optimal CTF, switch debug
    3222                 :             :          info level to 2.  If off or at level 1, set it to level 2, but if
    3223                 :             :          already at level 3, don't lower it.  */
    3224                 :         599 :       if (opts->x_debug_info_level < DINFO_LEVEL_NORMAL
    3225                 :         593 :           && opts->x_ctf_debug_info_level > CTFINFO_LEVEL_NONE)
    3226                 :         591 :         opts->x_debug_info_level = DINFO_LEVEL_NORMAL;
    3227                 :             :       break;
    3228                 :             : 
    3229                 :         237 :     case OPT_gdwarf:
    3230                 :         237 :       if (arg && strlen (arg) != 0)
    3231                 :             :         {
    3232                 :           0 :           error_at (loc, "%<-gdwarf%s%> is ambiguous; "
    3233                 :             :                     "use %<-gdwarf-%s%> for DWARF version "
    3234                 :             :                     "or %<-gdwarf%> %<-g%s%> for debug level", arg, arg, arg);
    3235                 :           0 :           break;
    3236                 :             :         }
    3237                 :             :       else
    3238                 :         237 :         value = opts->x_dwarf_version;
    3239                 :             :       
    3240                 :             :       /* FALLTHRU */
    3241                 :        4933 :     case OPT_gdwarf_:
    3242                 :        4933 :       if (value < 2 || value > 5)
    3243                 :           0 :         error_at (loc, "dwarf version %wu is not supported", value);
    3244                 :             :       else
    3245                 :        4933 :         opts->x_dwarf_version = value;
    3246                 :        4933 :       set_debug_level (DWARF2_DEBUG, false, "", opts, opts_set, loc);
    3247                 :        4933 :       break;
    3248                 :             : 
    3249                 :          18 :     case OPT_ggdb:
    3250                 :          18 :       set_debug_level (NO_DEBUG, 2, arg, opts, opts_set, loc);
    3251                 :          18 :       break;
    3252                 :             : 
    3253                 :           0 :     case OPT_gvms:
    3254                 :           0 :       set_debug_level (VMS_DEBUG, false, arg, opts, opts_set, loc);
    3255                 :           0 :       break;
    3256                 :             : 
    3257                 :             :     case OPT_gz:
    3258                 :             :     case OPT_gz_:
    3259                 :             :       /* Handled completely via specs.  */
    3260                 :             :       break;
    3261                 :             : 
    3262                 :       63431 :     case OPT_pedantic_errors:
    3263                 :       63431 :       dc->m_pedantic_errors = 1;
    3264                 :       63431 :       control_warning_option (OPT_Wpedantic, DK_ERROR, NULL, value,
    3265                 :             :                               loc, lang_mask,
    3266                 :             :                               handlers, opts, opts_set,
    3267                 :             :                               dc);
    3268                 :       63431 :       break;
    3269                 :             : 
    3270                 :       23892 :     case OPT_flto:
    3271                 :       23892 :       opts->x_flag_lto = value ? "" : NULL;
    3272                 :       23892 :       break;
    3273                 :             : 
    3274                 :           3 :     case OPT_flto_:
    3275                 :           3 :       if (strcmp (arg, "none") != 0
    3276                 :           3 :           && strcmp (arg, "jobserver") != 0
    3277                 :           3 :           && strcmp (arg, "auto") != 0
    3278                 :           1 :           && atoi (arg) == 0)
    3279                 :           1 :         error_at (loc,
    3280                 :             :                   "unrecognized argument to %<-flto=%> option: %qs", arg);
    3281                 :             :       break;
    3282                 :             : 
    3283                 :       43449 :     case OPT_w:
    3284                 :       43449 :       dc->m_inhibit_warnings = true;
    3285                 :       43449 :       break;
    3286                 :             : 
    3287                 :          44 :     case OPT_fmax_errors_:
    3288                 :          44 :       dc->set_max_errors (value);
    3289                 :          44 :       break;
    3290                 :             : 
    3291                 :             :     case OPT_fuse_ld_bfd:
    3292                 :             :     case OPT_fuse_ld_gold:
    3293                 :             :     case OPT_fuse_ld_lld:
    3294                 :             :     case OPT_fuse_ld_mold:
    3295                 :             :     case OPT_fuse_linker_plugin:
    3296                 :             :       /* No-op. Used by the driver and passed to us because it starts with f.*/
    3297                 :             :       break;
    3298                 :             : 
    3299                 :         381 :     case OPT_fwrapv:
    3300                 :         381 :       if (value)
    3301                 :         375 :         opts->x_flag_trapv = 0;
    3302                 :             :       break;
    3303                 :             : 
    3304                 :         142 :     case OPT_ftrapv:
    3305                 :         142 :       if (value)
    3306                 :         142 :         opts->x_flag_wrapv = 0;
    3307                 :             :       break;
    3308                 :             : 
    3309                 :         209 :     case OPT_fstrict_overflow:
    3310                 :         209 :       opts->x_flag_wrapv = !value;
    3311                 :         209 :       opts->x_flag_wrapv_pointer = !value;
    3312                 :         209 :       if (!value)
    3313                 :          54 :         opts->x_flag_trapv = 0;
    3314                 :             :       break;
    3315                 :             : 
    3316                 :      544517 :     case OPT_fipa_icf:
    3317                 :      544517 :       opts->x_flag_ipa_icf_functions = value;
    3318                 :      544517 :       opts->x_flag_ipa_icf_variables = value;
    3319                 :      544517 :       break;
    3320                 :             : 
    3321                 :           2 :     case OPT_falign_loops_:
    3322                 :           2 :       check_alignment_argument (loc, arg, "loops",
    3323                 :             :                                 &opts->x_flag_align_loops,
    3324                 :             :                                 &opts->x_str_align_loops);
    3325                 :           2 :       break;
    3326                 :             : 
    3327                 :           2 :     case OPT_falign_jumps_:
    3328                 :           2 :       check_alignment_argument (loc, arg, "jumps",
    3329                 :             :                                 &opts->x_flag_align_jumps,
    3330                 :             :                                 &opts->x_str_align_jumps);
    3331                 :           2 :       break;
    3332                 :             : 
    3333                 :           3 :     case OPT_falign_labels_:
    3334                 :           3 :       check_alignment_argument (loc, arg, "labels",
    3335                 :             :                                 &opts->x_flag_align_labels,
    3336                 :             :                                 &opts->x_str_align_labels);
    3337                 :           3 :       break;
    3338                 :             : 
    3339                 :          13 :     case OPT_falign_functions_:
    3340                 :          13 :       check_alignment_argument (loc, arg, "functions",
    3341                 :             :                                 &opts->x_flag_align_functions,
    3342                 :             :                                 &opts->x_str_align_functions);
    3343                 :          13 :       break;
    3344                 :             : 
    3345                 :          15 :     case OPT_ftabstop_:
    3346                 :             :       /* It is documented that we silently ignore silly values.  */
    3347                 :          15 :       if (value >= 1 && value <= 100)
    3348                 :          10 :         dc->m_tabstop = value;
    3349                 :             :       break;
    3350                 :             : 
    3351                 :           8 :     case OPT_freport_bug:
    3352                 :           8 :       dc->set_report_bug (value);
    3353                 :           8 :       break;
    3354                 :             : 
    3355                 :           0 :     case OPT_fmultiflags:
    3356                 :           0 :       gcc_checking_assert (lang_mask == CL_DRIVER);
    3357                 :             :       break;
    3358                 :             : 
    3359                 :    61917749 :     default:
    3360                 :             :       /* If the flag was handled in a standard way, assume the lack of
    3361                 :             :          processing here is intentional.  */
    3362                 :    61917749 :       gcc_assert (option_flag_var (scode, opts));
    3363                 :             :       break;
    3364                 :             :     }
    3365                 :             : 
    3366                 :    66952298 :   common_handle_option_auto (opts, opts_set, decoded, lang_mask, kind,
    3367                 :             :                              loc, handlers, dc);
    3368                 :    66952298 :   return true;
    3369                 :             : }
    3370                 :             : 
    3371                 :             : /* Used to set the level of strict aliasing warnings in OPTS,
    3372                 :             :    when no level is specified (i.e., when -Wstrict-aliasing, and not
    3373                 :             :    -Wstrict-aliasing=level was given).
    3374                 :             :    ONOFF is assumed to take value 1 when -Wstrict-aliasing is specified,
    3375                 :             :    and 0 otherwise.  After calling this function, wstrict_aliasing will be
    3376                 :             :    set to the default value of -Wstrict_aliasing=level, currently 3.  */
    3377                 :             : static void
    3378                 :          71 : set_Wstrict_aliasing (struct gcc_options *opts, int onoff)
    3379                 :             : {
    3380                 :          71 :   gcc_assert (onoff == 0 || onoff == 1);
    3381                 :          71 :   if (onoff != 0)
    3382                 :          70 :     opts->x_warn_strict_aliasing = 3;
    3383                 :             :   else
    3384                 :           1 :     opts->x_warn_strict_aliasing = 0;
    3385                 :          71 : }
    3386                 :             : 
    3387                 :             : /* The following routines are useful in setting all the flags that
    3388                 :             :    -ffast-math and -fno-fast-math imply.  */
    3389                 :             : static void
    3390                 :      545338 : set_fast_math_flags (struct gcc_options *opts, int set)
    3391                 :             : {
    3392                 :      545338 :   if (!opts->frontend_set_flag_unsafe_math_optimizations)
    3393                 :             :     {
    3394                 :      545338 :       opts->x_flag_unsafe_math_optimizations = set;
    3395                 :      545338 :       set_unsafe_math_optimizations_flags (opts, set);
    3396                 :             :     }
    3397                 :      545338 :   if (!opts->frontend_set_flag_finite_math_only)
    3398                 :      545338 :     opts->x_flag_finite_math_only = set;
    3399                 :      545338 :   if (!opts->frontend_set_flag_errno_math)
    3400                 :      494217 :     opts->x_flag_errno_math = !set;
    3401                 :      545338 :   if (set)
    3402                 :             :     {
    3403                 :        1847 :       if (opts->frontend_set_flag_excess_precision == EXCESS_PRECISION_DEFAULT)
    3404                 :        1847 :         opts->x_flag_excess_precision
    3405                 :        1847 :           = set ? EXCESS_PRECISION_FAST : EXCESS_PRECISION_DEFAULT;
    3406                 :        1847 :       if (!opts->frontend_set_flag_signaling_nans)
    3407                 :        1847 :         opts->x_flag_signaling_nans = 0;
    3408                 :        1847 :       if (!opts->frontend_set_flag_rounding_math)
    3409                 :        1847 :         opts->x_flag_rounding_math = 0;
    3410                 :        1847 :       if (!opts->frontend_set_flag_cx_limited_range)
    3411                 :        1847 :         opts->x_flag_cx_limited_range = 1;
    3412                 :             :     }
    3413                 :      545338 : }
    3414                 :             : 
    3415                 :             : /* When -funsafe-math-optimizations is set the following
    3416                 :             :    flags are set as well.  */
    3417                 :             : static void
    3418                 :      545669 : set_unsafe_math_optimizations_flags (struct gcc_options *opts, int set)
    3419                 :             : {
    3420                 :      545669 :   if (!opts->frontend_set_flag_trapping_math)
    3421                 :      545669 :     opts->x_flag_trapping_math = !set;
    3422                 :      545669 :   if (!opts->frontend_set_flag_signed_zeros)
    3423                 :      545669 :     opts->x_flag_signed_zeros = !set;
    3424                 :      545669 :   if (!opts->frontend_set_flag_associative_math)
    3425                 :      515791 :     opts->x_flag_associative_math = set;
    3426                 :      545669 :   if (!opts->frontend_set_flag_reciprocal_math)
    3427                 :      545669 :     opts->x_flag_reciprocal_math = set;
    3428                 :      545669 : }
    3429                 :             : 
    3430                 :             : /* Return true iff flags in OPTS are set as if -ffast-math.  */
    3431                 :             : bool
    3432                 :    45743286 : fast_math_flags_set_p (const struct gcc_options *opts)
    3433                 :             : {
    3434                 :    45743286 :   return (!opts->x_flag_trapping_math
    3435                 :      945253 :           && opts->x_flag_unsafe_math_optimizations
    3436                 :      945050 :           && opts->x_flag_finite_math_only
    3437                 :      944986 :           && !opts->x_flag_signed_zeros
    3438                 :      944972 :           && !opts->x_flag_errno_math
    3439                 :    46688254 :           && opts->x_flag_excess_precision == EXCESS_PRECISION_FAST);
    3440                 :             : }
    3441                 :             : 
    3442                 :             : /* Return true iff flags are set as if -ffast-math but using the flags stored
    3443                 :             :    in the struct cl_optimization structure.  */
    3444                 :             : bool
    3445                 :         884 : fast_math_flags_struct_set_p (struct cl_optimization *opt)
    3446                 :             : {
    3447                 :         884 :   return (!opt->x_flag_trapping_math
    3448                 :          12 :           && opt->x_flag_unsafe_math_optimizations
    3449                 :           4 :           && opt->x_flag_finite_math_only
    3450                 :           4 :           && !opt->x_flag_signed_zeros
    3451                 :         888 :           && !opt->x_flag_errno_math);
    3452                 :             : }
    3453                 :             : 
    3454                 :             : /* Handle a debug output -g switch for options OPTS
    3455                 :             :    (OPTS_SET->x_write_symbols storing whether a debug format was passed
    3456                 :             :    explicitly), location LOC.  EXTENDED is true or false to support
    3457                 :             :    extended output (2 is special and means "-ggdb" was given).  */
    3458                 :             : static void
    3459                 :      129871 : set_debug_level (uint32_t dinfo, int extended, const char *arg,
    3460                 :             :                  struct gcc_options *opts, struct gcc_options *opts_set,
    3461                 :             :                  location_t loc)
    3462                 :             : {
    3463                 :      129871 :   if (dinfo == NO_DEBUG)
    3464                 :             :     {
    3465                 :      124195 :       if (opts->x_write_symbols == NO_DEBUG)
    3466                 :             :         {
    3467                 :      108246 :           opts->x_write_symbols = PREFERRED_DEBUGGING_TYPE;
    3468                 :             : 
    3469                 :      108246 :           if (extended == 2)
    3470                 :             :             {
    3471                 :             : #if defined DWARF2_DEBUGGING_INFO || defined DWARF2_LINENO_DEBUGGING_INFO
    3472                 :      108246 :               if (opts->x_write_symbols & CTF_DEBUG)
    3473                 :             :                 opts->x_write_symbols |= DWARF2_DEBUG;
    3474                 :             :               else
    3475                 :      108246 :                 opts->x_write_symbols = DWARF2_DEBUG;
    3476                 :             : #endif
    3477                 :             :             }
    3478                 :             : 
    3479                 :      108246 :           if (opts->x_write_symbols == NO_DEBUG)
    3480                 :             :             warning_at (loc, 0, "target system does not support debug output");
    3481                 :             :         }
    3482                 :       15949 :       else if ((opts->x_write_symbols & CTF_DEBUG)
    3483                 :       15949 :                || (opts->x_write_symbols & BTF_DEBUG))
    3484                 :             :         {
    3485                 :          34 :           opts->x_write_symbols |= DWARF2_DEBUG;
    3486                 :          34 :           opts_set->x_write_symbols |= DWARF2_DEBUG;
    3487                 :             :         }
    3488                 :             :     }
    3489                 :             :   else
    3490                 :             :     {
    3491                 :             :       /* Make and retain the choice if both CTF and DWARF debug info are to
    3492                 :             :          be generated.  */
    3493                 :        5676 :       if (((dinfo == DWARF2_DEBUG) || (dinfo == CTF_DEBUG))
    3494                 :        5532 :           && ((opts->x_write_symbols == (DWARF2_DEBUG|CTF_DEBUG))
    3495                 :             :               || (opts->x_write_symbols == DWARF2_DEBUG)
    3496                 :             :               || (opts->x_write_symbols == CTF_DEBUG)))
    3497                 :             :         {
    3498                 :         128 :           opts->x_write_symbols |= dinfo;
    3499                 :         128 :           opts_set->x_write_symbols |= dinfo;
    3500                 :             :         }
    3501                 :             :       /* However, CTF and BTF are not allowed together at this time.  */
    3502                 :        5548 :       else if (((dinfo == DWARF2_DEBUG) || (dinfo == BTF_DEBUG))
    3503                 :        4955 :                && ((opts->x_write_symbols == (DWARF2_DEBUG|BTF_DEBUG))
    3504                 :             :                    || (opts->x_write_symbols == DWARF2_DEBUG)
    3505                 :             :                    || (opts->x_write_symbols == BTF_DEBUG)))
    3506                 :             :         {
    3507                 :           0 :           opts->x_write_symbols |= dinfo;
    3508                 :           0 :           opts_set->x_write_symbols |= dinfo;
    3509                 :             :         }
    3510                 :             :       else
    3511                 :             :         {
    3512                 :             :           /* Does it conflict with an already selected debug format?  */
    3513                 :        5548 :           if (opts_set->x_write_symbols != NO_DEBUG
    3514                 :           0 :               && opts->x_write_symbols != NO_DEBUG
    3515                 :           0 :               && dinfo != opts->x_write_symbols)
    3516                 :             :             {
    3517                 :           0 :               gcc_assert (debug_set_count (dinfo) <= 1);
    3518                 :           0 :               error_at (loc, "debug format %qs conflicts with prior selection",
    3519                 :           0 :                         debug_type_names[debug_set_to_format (dinfo)]);
    3520                 :             :             }
    3521                 :        5548 :           opts->x_write_symbols = dinfo;
    3522                 :        5548 :           opts_set->x_write_symbols = dinfo;
    3523                 :             :         }
    3524                 :             :     }
    3525                 :             : 
    3526                 :      129871 :   if (dinfo != BTF_DEBUG)
    3527                 :             :     {
    3528                 :             :       /* A debug flag without a level defaults to level 2.
    3529                 :             :          If off or at level 1, set it to level 2, but if already
    3530                 :             :          at level 3, don't lower it.  */
    3531                 :      129727 :       if (*arg == '\0')
    3532                 :             :         {
    3533                 :      124436 :           if (dinfo == CTF_DEBUG)
    3534                 :         597 :             opts->x_ctf_debug_info_level = CTFINFO_LEVEL_NORMAL;
    3535                 :      123839 :           else if (opts->x_debug_info_level < DINFO_LEVEL_NORMAL)
    3536                 :      110334 :             opts->x_debug_info_level = DINFO_LEVEL_NORMAL;
    3537                 :             :         }
    3538                 :             :       else
    3539                 :             :         {
    3540                 :        5291 :           int argval = integral_argument (arg);
    3541                 :        5291 :           if (argval == -1)
    3542                 :           0 :             error_at (loc, "unrecognized debug output level %qs", arg);
    3543                 :        5291 :           else if (argval > 3)
    3544                 :           0 :             error_at (loc, "debug output level %qs is too high", arg);
    3545                 :             :           else
    3546                 :             :             {
    3547                 :        5291 :               if (dinfo == CTF_DEBUG)
    3548                 :           2 :                 opts->x_ctf_debug_info_level
    3549                 :           2 :                   = (enum ctf_debug_info_levels) argval;
    3550                 :             :               else
    3551                 :        5289 :                 opts->x_debug_info_level = (enum debug_info_levels) argval;
    3552                 :             :             }
    3553                 :             :         }
    3554                 :             :     }
    3555                 :         144 :   else if (*arg != '\0')
    3556                 :           0 :     error_at (loc, "unrecognized btf debug output level %qs", arg);
    3557                 :      129871 : }
    3558                 :             : 
    3559                 :             : /* Arrange to dump core on error for diagnostic context DC.  (The
    3560                 :             :    regular error message is still printed first, except in the case of
    3561                 :             :    abort ().)  */
    3562                 :             : 
    3563                 :             : static void
    3564                 :          13 : setup_core_dumping (diagnostic_context *dc)
    3565                 :             : {
    3566                 :             : #ifdef SIGABRT
    3567                 :          13 :   signal (SIGABRT, SIG_DFL);
    3568                 :             : #endif
    3569                 :             : #if defined(HAVE_SETRLIMIT)
    3570                 :          13 :   {
    3571                 :          13 :     struct rlimit rlim;
    3572                 :          13 :     if (getrlimit (RLIMIT_CORE, &rlim) != 0)
    3573                 :           0 :       fatal_error (input_location, "getting core file size maximum limit: %m");
    3574                 :          13 :     rlim.rlim_cur = rlim.rlim_max;
    3575                 :          13 :     if (setrlimit (RLIMIT_CORE, &rlim) != 0)
    3576                 :           0 :       fatal_error (input_location,
    3577                 :             :                    "setting core file size limit to maximum: %m");
    3578                 :             :   }
    3579                 :             : #endif
    3580                 :          13 :   diagnostic_abort_on_error (dc);
    3581                 :          13 : }
    3582                 :             : 
    3583                 :             : /* Parse a -d<ARG> command line switch for OPTS, location LOC,
    3584                 :             :    diagnostic context DC.  */
    3585                 :             : 
    3586                 :             : static void
    3587                 :        1732 : decode_d_option (const char *arg, struct gcc_options *opts,
    3588                 :             :                  location_t loc, diagnostic_context *dc)
    3589                 :             : {
    3590                 :        1732 :   int c;
    3591                 :             : 
    3592                 :        3464 :   while (*arg)
    3593                 :        1732 :     switch (c = *arg++)
    3594                 :             :       {
    3595                 :         746 :       case 'A':
    3596                 :         746 :         opts->x_flag_debug_asm = 1;
    3597                 :         746 :         break;
    3598                 :         121 :       case 'p':
    3599                 :         121 :         opts->x_flag_print_asm_name = 1;
    3600                 :         121 :         break;
    3601                 :           5 :       case 'P':
    3602                 :           5 :         opts->x_flag_dump_rtl_in_asm = 1;
    3603                 :           5 :         opts->x_flag_print_asm_name = 1;
    3604                 :           5 :         break;
    3605                 :          10 :       case 'x':
    3606                 :          10 :         opts->x_rtl_dump_and_exit = 1;
    3607                 :          10 :         break;
    3608                 :             :       case 'D': /* These are handled by the preprocessor.  */
    3609                 :             :       case 'I':
    3610                 :             :       case 'M':
    3611                 :             :       case 'N':
    3612                 :             :       case 'U':
    3613                 :             :         break;
    3614                 :          13 :       case 'H':
    3615                 :          13 :         setup_core_dumping (dc);
    3616                 :          13 :         break;
    3617                 :           5 :       case 'a':
    3618                 :           5 :         opts->x_flag_dump_all_passed = true;
    3619                 :           5 :         break;
    3620                 :             : 
    3621                 :           0 :       default:
    3622                 :           0 :           warning_at (loc, 0, "unrecognized gcc debugging option: %c", c);
    3623                 :           0 :         break;
    3624                 :             :       }
    3625                 :        1732 : }
    3626                 :             : 
    3627                 :             : /* Enable (or disable if VALUE is 0) a warning option ARG (language
    3628                 :             :    mask LANG_MASK, option handlers HANDLERS) as an error for option
    3629                 :             :    structures OPTS and OPTS_SET, diagnostic context DC (possibly
    3630                 :             :    NULL), location LOC.  This is used by -Werror=.  */
    3631                 :             : 
    3632                 :             : static void
    3633                 :        5252 : enable_warning_as_error (const char *arg, int value, unsigned int lang_mask,
    3634                 :             :                          const struct cl_option_handlers *handlers,
    3635                 :             :                          struct gcc_options *opts,
    3636                 :             :                          struct gcc_options *opts_set,
    3637                 :             :                          location_t loc, diagnostic_context *dc)
    3638                 :             : {
    3639                 :        5252 :   char *new_option;
    3640                 :        5252 :   int option_index;
    3641                 :             : 
    3642                 :        5252 :   new_option = XNEWVEC (char, strlen (arg) + 2);
    3643                 :        5252 :   new_option[0] = 'W';
    3644                 :        5252 :   strcpy (new_option + 1, arg);
    3645                 :        5252 :   option_index = find_opt (new_option, lang_mask);
    3646                 :        5252 :   if (option_index == OPT_SPECIAL_unknown)
    3647                 :             :     {
    3648                 :           2 :       option_proposer op;
    3649                 :           2 :       const char *hint = op.suggest_option (new_option);
    3650                 :           2 :       if (hint)
    3651                 :           3 :         error_at (loc, "%<-W%serror=%s%>: no option %<-%s%>;"
    3652                 :             :                   " did you mean %<-%s%>?", value ? "" : "no-",
    3653                 :             :                   arg, new_option, hint);
    3654                 :             :       else
    3655                 :           0 :         error_at (loc, "%<-W%serror=%s%>: no option %<-%s%>",
    3656                 :             :                   value ? "" : "no-", arg, new_option);
    3657                 :           2 :     }
    3658                 :        5250 :   else if (!(cl_options[option_index].flags & CL_WARNING))
    3659                 :           4 :     error_at (loc, "%<-Werror=%s%>: %<-%s%> is not an option that "
    3660                 :             :               "controls warnings", arg, new_option);
    3661                 :             :   else
    3662                 :             :     {
    3663                 :        5246 :       const diagnostic_t kind = value ? DK_ERROR : DK_WARNING;
    3664                 :        5246 :       const char *arg = NULL;
    3665                 :             : 
    3666                 :        5246 :       if (cl_options[option_index].flags & CL_JOINED)
    3667                 :          20 :         arg = new_option + cl_options[option_index].opt_len;
    3668                 :        5246 :       control_warning_option (option_index, (int) kind, arg, value,
    3669                 :             :                               loc, lang_mask,
    3670                 :             :                               handlers, opts, opts_set, dc);
    3671                 :             :     }
    3672                 :        5252 :   free (new_option);
    3673                 :        5252 : }
    3674                 :             : 
    3675                 :             : /* Return malloced memory for the name of the option OPTION_INDEX
    3676                 :             :    which enabled a diagnostic (context CONTEXT), originally of type
    3677                 :             :    ORIG_DIAG_KIND but possibly converted to DIAG_KIND by options such
    3678                 :             :    as -Werror.  */
    3679                 :             : 
    3680                 :             : char *
    3681                 :     1388323 : option_name (const diagnostic_context *context, int option_index,
    3682                 :             :              diagnostic_t orig_diag_kind, diagnostic_t diag_kind)
    3683                 :             : {
    3684                 :     1388323 :   if (option_index)
    3685                 :             :     {
    3686                 :             :       /* A warning classified as an error.  */
    3687                 :       80262 :       if ((orig_diag_kind == DK_WARNING || orig_diag_kind == DK_PEDWARN)
    3688                 :       72367 :           && diag_kind == DK_ERROR)
    3689                 :         235 :         return concat (cl_options[OPT_Werror_].opt_text,
    3690                 :             :                        /* Skip over "-W".  */
    3691                 :         235 :                        cl_options[option_index].opt_text + 2,
    3692                 :         235 :                        NULL);
    3693                 :             :       /* A warning with option.  */
    3694                 :             :       else
    3695                 :       80027 :         return xstrdup (cl_options[option_index].opt_text);
    3696                 :             :     }
    3697                 :             :   /* A warning without option classified as an error.  */
    3698                 :     1308061 :   else if ((orig_diag_kind == DK_WARNING || orig_diag_kind == DK_PEDWARN
    3699                 :     1278338 :             || diag_kind == DK_WARNING)
    3700                 :     1308061 :            && context->warning_as_error_requested_p ())
    3701                 :         102 :     return xstrdup (cl_options[OPT_Werror].opt_text);
    3702                 :             :   else
    3703                 :             :     return NULL;
    3704                 :             : }
    3705                 :             : 
    3706                 :             : /* Get the page within the documentation for this option.  */
    3707                 :             : 
    3708                 :             : static const char *
    3709                 :           8 : get_option_html_page (int option_index)
    3710                 :             : {
    3711                 :           8 :   const cl_option *cl_opt = &cl_options[option_index];
    3712                 :             : 
    3713                 :             : #ifdef CL_Fortran
    3714                 :           8 :   if ((cl_opt->flags & CL_Fortran) != 0
    3715                 :             :       /* If it is option common to both C/C++ and Fortran, it is documented
    3716                 :             :          in gcc/ rather than gfortran/ docs.  */
    3717                 :             :       && (cl_opt->flags & CL_C) == 0
    3718                 :             : #ifdef CL_CXX
    3719                 :           0 :       && (cl_opt->flags & CL_CXX) == 0
    3720                 :             : #endif
    3721                 :             :      )
    3722                 :           0 :     return "gfortran/Error-and-Warning-Options.html";
    3723                 :             : #endif
    3724                 :             : 
    3725                 :             :   return nullptr;
    3726                 :             : }
    3727                 :             : 
    3728                 :             : /* Get the url within the documentation for this option, or NULL.  */
    3729                 :             : 
    3730                 :             : label_text
    3731                 :         126 : get_option_url_suffix (int option_index, unsigned lang_mask)
    3732                 :             : {
    3733                 :         126 :   if (const char *url = get_opt_url_suffix (option_index, lang_mask))
    3734                 :             : 
    3735                 :         118 :     return label_text::borrow (url);
    3736                 :             : 
    3737                 :             :   /* Fallback code for some options that aren't handled byt opt_url_suffixes
    3738                 :             :      e.g. links below "gfortran/".  */
    3739                 :           8 :   if (const char *html_page = get_option_html_page (option_index))
    3740                 :           4 :     return label_text::take
    3741                 :             :       (concat (html_page,
    3742                 :             :                /* Expect an anchor of the form "index-Wfoo" e.g.
    3743                 :             :                   <a name="index-Wformat"></a>, and thus an id within
    3744                 :             :                   the page of "#index-Wformat".  */
    3745                 :             :                "#index",
    3746                 :           4 :                cl_options[option_index].opt_text,
    3747                 :           4 :                NULL));
    3748                 :             : 
    3749                 :           4 :   return label_text ();
    3750                 :             : }
    3751                 :             : 
    3752                 :             : /* Return malloced memory for a URL describing the option OPTION_INDEX
    3753                 :             :    which enabled a diagnostic (context CONTEXT).  */
    3754                 :             : 
    3755                 :             : char *
    3756                 :         132 : get_option_url (const diagnostic_context *,
    3757                 :             :                 int option_index,
    3758                 :             :                 unsigned lang_mask)
    3759                 :             : {
    3760                 :         132 :   if (option_index)
    3761                 :             :     {
    3762                 :          90 :       label_text url_suffix = get_option_url_suffix (option_index, lang_mask);
    3763                 :          90 :       if (url_suffix.get ())
    3764                 :             :         {
    3765                 :          90 :           char infix[32];
    3766                 :             :           /* On release branches, append to DOCUMENTATION_ROOT_URL the
    3767                 :             :              subdirectory with documentation of the latest release made
    3768                 :             :              from the branch.  */
    3769                 :          90 :           if (BUILDING_GCC_MINOR != 0 && BUILDING_GCC_PATCHLEVEL <= 1U)
    3770                 :             :             sprintf (infix, "gcc-%u.%u.0/",
    3771                 :             :                      BUILDING_GCC_MAJOR, BUILDING_GCC_MINOR);
    3772                 :             :           else
    3773                 :          90 :             infix[0] = '\0';
    3774                 :          90 :           return concat (DOCUMENTATION_ROOT_URL, infix, url_suffix.get (),
    3775                 :             :                          nullptr);
    3776                 :             :         }
    3777                 :          90 :     }
    3778                 :             : 
    3779                 :             :   return nullptr;
    3780                 :             : }
    3781                 :             : 
    3782                 :             : /* Return a heap allocated producer with command line options.  */
    3783                 :             : 
    3784                 :             : char *
    3785                 :       51899 : gen_command_line_string (cl_decoded_option *options,
    3786                 :             :                          unsigned int options_count)
    3787                 :             : {
    3788                 :       51899 :   auto_vec<const char *> switches;
    3789                 :       51899 :   char *options_string, *tail;
    3790                 :       51899 :   const char *p;
    3791                 :       51899 :   size_t len = 0;
    3792                 :             : 
    3793                 :     1712424 :   for (unsigned i = 0; i < options_count; i++)
    3794                 :     1660525 :     switch (options[i].opt_index)
    3795                 :             :       {
    3796                 :      769781 :       case OPT_o:
    3797                 :      769781 :       case OPT_d:
    3798                 :      769781 :       case OPT_dumpbase:
    3799                 :      769781 :       case OPT_dumpbase_ext:
    3800                 :      769781 :       case OPT_dumpdir:
    3801                 :      769781 :       case OPT_quiet:
    3802                 :      769781 :       case OPT_version:
    3803                 :      769781 :       case OPT_v:
    3804                 :      769781 :       case OPT_w:
    3805                 :      769781 :       case OPT_L:
    3806                 :      769781 :       case OPT_D:
    3807                 :      769781 :       case OPT_I:
    3808                 :      769781 :       case OPT_U:
    3809                 :      769781 :       case OPT_SPECIAL_unknown:
    3810                 :      769781 :       case OPT_SPECIAL_ignore:
    3811                 :      769781 :       case OPT_SPECIAL_warn_removed:
    3812                 :      769781 :       case OPT_SPECIAL_program_name:
    3813                 :      769781 :       case OPT_SPECIAL_input_file:
    3814                 :      769781 :       case OPT_grecord_gcc_switches:
    3815                 :      769781 :       case OPT_frecord_gcc_switches:
    3816                 :      769781 :       case OPT__output_pch:
    3817                 :      769781 :       case OPT_fdiagnostics_show_location_:
    3818                 :      769781 :       case OPT_fdiagnostics_show_option:
    3819                 :      769781 :       case OPT_fdiagnostics_show_caret:
    3820                 :      769781 :       case OPT_fdiagnostics_show_labels:
    3821                 :      769781 :       case OPT_fdiagnostics_show_line_numbers:
    3822                 :      769781 :       case OPT_fdiagnostics_color_:
    3823                 :      769781 :       case OPT_fdiagnostics_format_:
    3824                 :      769781 :       case OPT_fverbose_asm:
    3825                 :      769781 :       case OPT____:
    3826                 :      769781 :       case OPT__sysroot_:
    3827                 :      769781 :       case OPT_nostdinc:
    3828                 :      769781 :       case OPT_nostdinc__:
    3829                 :      769781 :       case OPT_fpreprocessed:
    3830                 :      769781 :       case OPT_fltrans_output_list_:
    3831                 :      769781 :       case OPT_fresolution_:
    3832                 :      769781 :       case OPT_fdebug_prefix_map_:
    3833                 :      769781 :       case OPT_fmacro_prefix_map_:
    3834                 :      769781 :       case OPT_ffile_prefix_map_:
    3835                 :      769781 :       case OPT_fprofile_prefix_map_:
    3836                 :      769781 :       case OPT_fcanon_prefix_map:
    3837                 :      769781 :       case OPT_fcompare_debug:
    3838                 :      769781 :       case OPT_fchecking:
    3839                 :      769781 :       case OPT_fchecking_:
    3840                 :             :         /* Ignore these.  */
    3841                 :      769781 :         continue;
    3842                 :           0 :       case OPT_flto_:
    3843                 :           0 :         {
    3844                 :           0 :           const char *lto_canonical = "-flto";
    3845                 :           0 :           switches.safe_push (lto_canonical);
    3846                 :           0 :           len += strlen (lto_canonical) + 1;
    3847                 :           0 :           break;
    3848                 :             :         }
    3849                 :      890744 :       default:
    3850                 :      891494 :         if (cl_options[options[i].opt_index].flags
    3851                 :      890744 :             & CL_NO_DWARF_RECORD)
    3852                 :         750 :           continue;
    3853                 :      889994 :         gcc_checking_assert (options[i].canonical_option[0][0] == '-');
    3854                 :      889994 :         switch (options[i].canonical_option[0][1])
    3855                 :             :           {
    3856                 :      254031 :           case 'M':
    3857                 :      254031 :           case 'i':
    3858                 :      254031 :           case 'W':
    3859                 :      254031 :             continue;
    3860                 :      363784 :           case 'f':
    3861                 :      363784 :             if (strncmp (options[i].canonical_option[0] + 2,
    3862                 :             :                          "dump", 4) == 0)
    3863                 :        1667 :               continue;
    3864                 :             :             break;
    3865                 :             :           default:
    3866                 :             :             break;
    3867                 :             :           }
    3868                 :      634296 :         switches.safe_push (options[i].orig_option_with_args_text);
    3869                 :      634296 :         len += strlen (options[i].orig_option_with_args_text) + 1;
    3870                 :      634296 :         break;
    3871                 :      769781 :       }
    3872                 :             : 
    3873                 :       51899 :   options_string = XNEWVEC (char, len + 1);
    3874                 :       51899 :   tail = options_string;
    3875                 :             : 
    3876                 :       51899 :   unsigned i;
    3877                 :      738094 :   FOR_EACH_VEC_ELT (switches, i, p)
    3878                 :             :     {
    3879                 :      634296 :       len = strlen (p);
    3880                 :      634296 :       memcpy (tail, p, len);
    3881                 :      634296 :       tail += len;
    3882                 :      634296 :       if (i != switches.length () - 1)
    3883                 :             :         {
    3884                 :      582397 :           *tail = ' ';
    3885                 :      582397 :           ++tail;
    3886                 :             :         }
    3887                 :             :     }
    3888                 :             : 
    3889                 :       51899 :   *tail = '\0';
    3890                 :       51899 :   return options_string;
    3891                 :       51899 : }
    3892                 :             : 
    3893                 :             : /* Return a heap allocated producer string including command line options.  */
    3894                 :             : 
    3895                 :             : char *
    3896                 :       51888 : gen_producer_string (const char *language_string, cl_decoded_option *options,
    3897                 :             :                      unsigned int options_count)
    3898                 :             : {
    3899                 :       51888 :   char *cmdline = gen_command_line_string (options, options_count);
    3900                 :       51888 :   char *combined = concat (language_string, " ", version_string, " ",
    3901                 :             :                            cmdline, NULL);
    3902                 :       51888 :   free (cmdline);
    3903                 :       51888 :   return combined;
    3904                 :             : }
    3905                 :             : 
    3906                 :             : #if CHECKING_P
    3907                 :             : 
    3908                 :             : namespace selftest {
    3909                 :             : 
    3910                 :             : /* Verify that get_option_url_suffix works as expected.  */
    3911                 :             : 
    3912                 :             : static void
    3913                 :           4 : test_get_option_url_suffix ()
    3914                 :             : {
    3915                 :           4 :   ASSERT_STREQ (get_option_url_suffix (OPT_Wcpp, 0).get (),
    3916                 :             :                 "gcc/Warning-Options.html#index-Wcpp");
    3917                 :           4 :   ASSERT_STREQ (get_option_url_suffix (OPT_Wanalyzer_double_free, 0).get (),
    3918                 :             :                 "gcc/Static-Analyzer-Options.html#index-Wanalyzer-double-free");
    3919                 :             : 
    3920                 :             :   /* Test of a D-specific option.  */
    3921                 :             : #ifdef CL_D
    3922                 :           4 :   ASSERT_EQ (get_option_url_suffix (OPT_fbounds_check_, 0).get (), nullptr);
    3923                 :           4 :   ASSERT_STREQ (get_option_url_suffix (OPT_fbounds_check_, CL_D).get (),
    3924                 :             :                 "gdc/Runtime-Options.html#index-fbounds-check");
    3925                 :             : 
    3926                 :             :   /* Test of a D-specific override to an option URL.  */
    3927                 :             :   /* Generic URL.  */
    3928                 :           4 :   ASSERT_STREQ (get_option_url_suffix (OPT_fmax_errors_, 0).get (),
    3929                 :             :                 "gcc/Warning-Options.html#index-fmax-errors");
    3930                 :             :   /* D-specific URL.  */
    3931                 :           4 :   ASSERT_STREQ (get_option_url_suffix (OPT_fmax_errors_, CL_D).get (),
    3932                 :             :                 "gdc/Warnings.html#index-fmax-errors");
    3933                 :             : #endif
    3934                 :             : 
    3935                 :             : #ifdef CL_Fortran
    3936                 :           4 :   ASSERT_STREQ
    3937                 :             :     (get_option_url_suffix (OPT_Wline_truncation, CL_Fortran).get (),
    3938                 :             :      "gfortran/Error-and-Warning-Options.html#index-Wline-truncation");
    3939                 :             : #endif
    3940                 :           4 : }
    3941                 :             : 
    3942                 :             : /* Verify EnumSet and EnumBitSet requirements.  */
    3943                 :             : 
    3944                 :             : static void
    3945                 :           4 : test_enum_sets ()
    3946                 :             : {
    3947                 :        9380 :   for (unsigned i = 0; i < cl_options_count; ++i)
    3948                 :        9376 :     if (cl_options[i].var_type == CLVC_ENUM
    3949                 :         312 :         && cl_options[i].var_value != CLEV_NORMAL)
    3950                 :             :       {
    3951                 :          24 :         const struct cl_enum *e = &cl_enums[cl_options[i].var_enum];
    3952                 :          24 :         unsigned HOST_WIDE_INT used_sets = 0;
    3953                 :          24 :         unsigned HOST_WIDE_INT mask = 0;
    3954                 :          24 :         unsigned highest_set = 0;
    3955                 :         132 :         for (unsigned j = 0; e->values[j].arg; ++j)
    3956                 :             :           {
    3957                 :         108 :             unsigned set = e->values[j].flags >> CL_ENUM_SET_SHIFT;
    3958                 :         108 :             if (cl_options[i].var_value == CLEV_BITSET)
    3959                 :             :               {
    3960                 :             :                 /* For EnumBitSet Set shouldn't be used and Value should
    3961                 :             :                    be a power of two.  */
    3962                 :           8 :                 ASSERT_TRUE (set == 0);
    3963                 :          16 :                 ASSERT_TRUE (pow2p_hwi (e->values[j].value));
    3964                 :           8 :                 continue;
    3965                 :           8 :               }
    3966                 :             :             /* Test that enumerators referenced in EnumSet have all
    3967                 :             :                Set(n) on them within the valid range.  */
    3968                 :         100 :             ASSERT_TRUE (set >= 1 && set <= HOST_BITS_PER_WIDE_INT);
    3969                 :         100 :             highest_set = MAX (set, highest_set);
    3970                 :         100 :             used_sets |= HOST_WIDE_INT_1U << (set - 1);
    3971                 :             :           }
    3972                 :          24 :         if (cl_options[i].var_value == CLEV_BITSET)
    3973                 :           4 :           continue;
    3974                 :             :         /* If there is just one set, no point to using EnumSet.  */
    3975                 :          20 :         ASSERT_TRUE (highest_set >= 2);
    3976                 :             :         /* Test that there are no gaps in between the sets.  */
    3977                 :          20 :         if (highest_set == HOST_BITS_PER_WIDE_INT)
    3978                 :           0 :           ASSERT_TRUE (used_sets == HOST_WIDE_INT_M1U);
    3979                 :             :         else
    3980                 :          20 :           ASSERT_TRUE (used_sets == (HOST_WIDE_INT_1U << highest_set) - 1);
    3981                 :          88 :         for (unsigned int j = 1; j <= highest_set; ++j)
    3982                 :             :           {
    3983                 :             :             unsigned HOST_WIDE_INT this_mask = 0;
    3984                 :         412 :             for (unsigned k = 0; e->values[k].arg; ++k)
    3985                 :             :               {
    3986                 :         344 :                 unsigned set = e->values[j].flags >> CL_ENUM_SET_SHIFT;
    3987                 :         344 :                 if (set == j)
    3988                 :          56 :                   this_mask |= e->values[j].value;
    3989                 :             :               }
    3990                 :          68 :             ASSERT_TRUE ((mask & this_mask) == 0);
    3991                 :          68 :             mask |= this_mask;
    3992                 :             :           }
    3993                 :             :       }
    3994                 :           4 : }
    3995                 :             : 
    3996                 :             : /* Run all of the selftests within this file.  */
    3997                 :             : 
    3998                 :             : void
    3999                 :           4 : opts_cc_tests ()
    4000                 :             : {
    4001                 :           4 :   test_get_option_url_suffix ();
    4002                 :           4 :   test_enum_sets ();
    4003                 :           4 : }
    4004                 :             : 
    4005                 :             : } // namespace selftest
    4006                 :             : 
    4007                 :             : #endif /* #if CHECKING_P */
        

Generated by: LCOV version 2.1-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.