2017-07-18 François Dumont <fdumont@gcc.gnu.org>
[official-gcc.git] / gcc / opts.c
blob3182bc99d65f40815cf838922d1e6ab027614eba
1 /* Command line option handling.
2 Copyright (C) 2002-2017 Free Software Foundation, Inc.
3 Contributed by Neil Booth.
5 This file is part of GCC.
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.
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.
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/>. */
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 "params.h"
29 #include "diagnostic.h"
30 #include "opts-diagnostic.h"
31 #include "insn-attr-common.h"
32 #include "common/common-target.h"
33 #include "spellcheck.h"
35 static void set_Wstrict_aliasing (struct gcc_options *opts, int onoff);
37 /* Indexed by enum debug_info_type. */
38 const char *const debug_type_names[] =
40 "none", "stabs", "coff", "dwarf-2", "xcoff", "vms"
43 /* Parse the -femit-struct-debug-detailed option value
44 and set the flag variables. */
46 #define MATCH( prefix, string ) \
47 ((strncmp (prefix, string, sizeof prefix - 1) == 0) \
48 ? ((string += sizeof prefix - 1), 1) : 0)
50 void
51 set_struct_debug_option (struct gcc_options *opts, location_t loc,
52 const char *spec)
54 /* various labels for comparison */
55 static const char dfn_lbl[] = "dfn:", dir_lbl[] = "dir:", ind_lbl[] = "ind:";
56 static const char ord_lbl[] = "ord:", gen_lbl[] = "gen:";
57 static const char none_lbl[] = "none", any_lbl[] = "any";
58 static const char base_lbl[] = "base", sys_lbl[] = "sys";
60 enum debug_struct_file files = DINFO_STRUCT_FILE_ANY;
61 /* Default is to apply to as much as possible. */
62 enum debug_info_usage usage = DINFO_USAGE_NUM_ENUMS;
63 int ord = 1, gen = 1;
65 /* What usage? */
66 if (MATCH (dfn_lbl, spec))
67 usage = DINFO_USAGE_DFN;
68 else if (MATCH (dir_lbl, spec))
69 usage = DINFO_USAGE_DIR_USE;
70 else if (MATCH (ind_lbl, spec))
71 usage = DINFO_USAGE_IND_USE;
73 /* Generics or not? */
74 if (MATCH (ord_lbl, spec))
75 gen = 0;
76 else if (MATCH (gen_lbl, spec))
77 ord = 0;
79 /* What allowable environment? */
80 if (MATCH (none_lbl, spec))
81 files = DINFO_STRUCT_FILE_NONE;
82 else if (MATCH (any_lbl, spec))
83 files = DINFO_STRUCT_FILE_ANY;
84 else if (MATCH (sys_lbl, spec))
85 files = DINFO_STRUCT_FILE_SYS;
86 else if (MATCH (base_lbl, spec))
87 files = DINFO_STRUCT_FILE_BASE;
88 else
89 error_at (loc,
90 "argument %qs to %<-femit-struct-debug-detailed%> "
91 "not recognized",
92 spec);
94 /* Effect the specification. */
95 if (usage == DINFO_USAGE_NUM_ENUMS)
97 if (ord)
99 opts->x_debug_struct_ordinary[DINFO_USAGE_DFN] = files;
100 opts->x_debug_struct_ordinary[DINFO_USAGE_DIR_USE] = files;
101 opts->x_debug_struct_ordinary[DINFO_USAGE_IND_USE] = files;
103 if (gen)
105 opts->x_debug_struct_generic[DINFO_USAGE_DFN] = files;
106 opts->x_debug_struct_generic[DINFO_USAGE_DIR_USE] = files;
107 opts->x_debug_struct_generic[DINFO_USAGE_IND_USE] = files;
110 else
112 if (ord)
113 opts->x_debug_struct_ordinary[usage] = files;
114 if (gen)
115 opts->x_debug_struct_generic[usage] = files;
118 if (*spec == ',')
119 set_struct_debug_option (opts, loc, spec+1);
120 else
122 /* No more -femit-struct-debug-detailed specifications.
123 Do final checks. */
124 if (*spec != '\0')
125 error_at (loc,
126 "argument %qs to %<-femit-struct-debug-detailed%> unknown",
127 spec);
128 if (opts->x_debug_struct_ordinary[DINFO_USAGE_DIR_USE]
129 < opts->x_debug_struct_ordinary[DINFO_USAGE_IND_USE]
130 || opts->x_debug_struct_generic[DINFO_USAGE_DIR_USE]
131 < opts->x_debug_struct_generic[DINFO_USAGE_IND_USE])
132 error_at (loc,
133 "%<-femit-struct-debug-detailed=dir:...%> must allow "
134 "at least as much as "
135 "%<-femit-struct-debug-detailed=ind:...%>");
139 /* Strip off a legitimate source ending from the input string NAME of
140 length LEN. Rather than having to know the names used by all of
141 our front ends, we strip off an ending of a period followed by
142 up to fource characters. (C++ uses ".cpp".) */
144 void
145 strip_off_ending (char *name, int len)
147 int i;
148 for (i = 2; i < 5 && len > i; i++)
150 if (name[len - i] == '.')
152 name[len - i] = '\0';
153 break;
158 /* Find the base name of a path, stripping off both directories and
159 a single final extension. */
161 base_of_path (const char *path, const char **base_out)
163 const char *base = path;
164 const char *dot = 0;
165 const char *p = path;
166 char c = *p;
167 while (c)
169 if (IS_DIR_SEPARATOR (c))
171 base = p + 1;
172 dot = 0;
174 else if (c == '.')
175 dot = p;
176 c = *++p;
178 if (!dot)
179 dot = p;
180 *base_out = base;
181 return dot - base;
184 /* What to print when a switch has no documentation. */
185 static const char undocumented_msg[] = N_("This option lacks documentation.");
186 static const char use_diagnosed_msg[] = N_("Uses of this option are diagnosed.");
188 typedef char *char_p; /* For DEF_VEC_P. */
190 static void handle_param (struct gcc_options *opts,
191 struct gcc_options *opts_set, location_t loc,
192 const char *carg);
193 static void set_debug_level (enum debug_info_type type, int extended,
194 const char *arg, struct gcc_options *opts,
195 struct gcc_options *opts_set,
196 location_t loc);
197 static void set_fast_math_flags (struct gcc_options *opts, int set);
198 static void decode_d_option (const char *arg, struct gcc_options *opts,
199 location_t loc, diagnostic_context *dc);
200 static void set_unsafe_math_optimizations_flags (struct gcc_options *opts,
201 int set);
202 static void enable_warning_as_error (const char *arg, int value,
203 unsigned int lang_mask,
204 const struct cl_option_handlers *handlers,
205 struct gcc_options *opts,
206 struct gcc_options *opts_set,
207 location_t loc,
208 diagnostic_context *dc);
210 /* Handle a back-end option; arguments and return value as for
211 handle_option. */
213 bool
214 target_handle_option (struct gcc_options *opts,
215 struct gcc_options *opts_set,
216 const struct cl_decoded_option *decoded,
217 unsigned int lang_mask ATTRIBUTE_UNUSED, int kind,
218 location_t loc,
219 const struct cl_option_handlers *handlers ATTRIBUTE_UNUSED,
220 diagnostic_context *dc)
222 gcc_assert (dc == global_dc);
223 gcc_assert (kind == DK_UNSPECIFIED);
224 return targetm_common.handle_option (opts, opts_set, decoded, loc);
227 /* Add comma-separated strings to a char_p vector. */
229 static void
230 add_comma_separated_to_vector (void **pvec, const char *arg)
232 char *tmp;
233 char *r;
234 char *w;
235 char *token_start;
236 vec<char_p> *v = (vec<char_p> *) *pvec;
238 vec_check_alloc (v, 1);
240 /* We never free this string. */
241 tmp = xstrdup (arg);
243 r = tmp;
244 w = tmp;
245 token_start = tmp;
247 while (*r != '\0')
249 if (*r == ',')
251 *w++ = '\0';
252 ++r;
253 v->safe_push (token_start);
254 token_start = w;
256 if (*r == '\\' && r[1] == ',')
258 *w++ = ',';
259 r += 2;
261 else
262 *w++ = *r++;
264 if (*token_start != '\0')
265 v->safe_push (token_start);
267 *pvec = v;
270 /* Initialize opts_obstack. */
272 void
273 init_opts_obstack (void)
275 gcc_obstack_init (&opts_obstack);
278 /* Initialize OPTS and OPTS_SET before using them in parsing options. */
280 void
281 init_options_struct (struct gcc_options *opts, struct gcc_options *opts_set)
283 size_t num_params = get_num_compiler_params ();
285 /* Ensure that opts_obstack has already been initialized by the time
286 that we initialize any gcc_options instances (PR jit/68446). */
287 gcc_assert (opts_obstack.chunk_size > 0);
289 *opts = global_options_init;
291 if (opts_set)
292 memset (opts_set, 0, sizeof (*opts_set));
294 opts->x_param_values = XNEWVEC (int, num_params);
296 if (opts_set)
297 opts_set->x_param_values = XCNEWVEC (int, num_params);
299 init_param_values (opts->x_param_values);
301 /* Initialize whether `char' is signed. */
302 opts->x_flag_signed_char = DEFAULT_SIGNED_CHAR;
303 /* Set this to a special "uninitialized" value. The actual default
304 is set after target options have been processed. */
305 opts->x_flag_short_enums = 2;
307 /* Initialize target_flags before default_options_optimization
308 so the latter can modify it. */
309 opts->x_target_flags = targetm_common.default_target_flags;
311 /* Some targets have ABI-specified unwind tables. */
312 opts->x_flag_unwind_tables = targetm_common.unwind_tables_default;
314 /* Some targets have other target-specific initialization. */
315 targetm_common.option_init_struct (opts);
318 /* Release any allocations owned by OPTS. */
320 void
321 finalize_options_struct (struct gcc_options *opts)
323 XDELETEVEC (opts->x_param_values);
326 /* If indicated by the optimization level LEVEL (-Os if SIZE is set,
327 -Ofast if FAST is set, -Og if DEBUG is set), apply the option DEFAULT_OPT
328 to OPTS and OPTS_SET, diagnostic context DC, location LOC, with language
329 mask LANG_MASK and option handlers HANDLERS. */
331 static void
332 maybe_default_option (struct gcc_options *opts,
333 struct gcc_options *opts_set,
334 const struct default_options *default_opt,
335 int level, bool size, bool fast, bool debug,
336 unsigned int lang_mask,
337 const struct cl_option_handlers *handlers,
338 location_t loc,
339 diagnostic_context *dc)
341 const struct cl_option *option = &cl_options[default_opt->opt_index];
342 bool enabled;
344 if (size)
345 gcc_assert (level == 2);
346 if (fast)
347 gcc_assert (level == 3);
348 if (debug)
349 gcc_assert (level == 1);
351 switch (default_opt->levels)
353 case OPT_LEVELS_ALL:
354 enabled = true;
355 break;
357 case OPT_LEVELS_0_ONLY:
358 enabled = (level == 0);
359 break;
361 case OPT_LEVELS_1_PLUS:
362 enabled = (level >= 1);
363 break;
365 case OPT_LEVELS_1_PLUS_SPEED_ONLY:
366 enabled = (level >= 1 && !size && !debug);
367 break;
369 case OPT_LEVELS_1_PLUS_NOT_DEBUG:
370 enabled = (level >= 1 && !debug);
371 break;
373 case OPT_LEVELS_2_PLUS:
374 enabled = (level >= 2);
375 break;
377 case OPT_LEVELS_2_PLUS_SPEED_ONLY:
378 enabled = (level >= 2 && !size && !debug);
379 break;
381 case OPT_LEVELS_3_PLUS:
382 enabled = (level >= 3);
383 break;
385 case OPT_LEVELS_3_PLUS_AND_SIZE:
386 enabled = (level >= 3 || size);
387 break;
389 case OPT_LEVELS_SIZE:
390 enabled = size;
391 break;
393 case OPT_LEVELS_FAST:
394 enabled = fast;
395 break;
397 case OPT_LEVELS_NONE:
398 default:
399 gcc_unreachable ();
402 if (enabled)
403 handle_generated_option (opts, opts_set, default_opt->opt_index,
404 default_opt->arg, default_opt->value,
405 lang_mask, DK_UNSPECIFIED, loc,
406 handlers, true, dc);
407 else if (default_opt->arg == NULL
408 && !option->cl_reject_negative)
409 handle_generated_option (opts, opts_set, default_opt->opt_index,
410 default_opt->arg, !default_opt->value,
411 lang_mask, DK_UNSPECIFIED, loc,
412 handlers, true, dc);
415 /* As indicated by the optimization level LEVEL (-Os if SIZE is set,
416 -Ofast if FAST is set), apply the options in array DEFAULT_OPTS to
417 OPTS and OPTS_SET, diagnostic context DC, location LOC, with
418 language mask LANG_MASK and option handlers HANDLERS. */
420 static void
421 maybe_default_options (struct gcc_options *opts,
422 struct gcc_options *opts_set,
423 const struct default_options *default_opts,
424 int level, bool size, bool fast, bool debug,
425 unsigned int lang_mask,
426 const struct cl_option_handlers *handlers,
427 location_t loc,
428 diagnostic_context *dc)
430 size_t i;
432 for (i = 0; default_opts[i].levels != OPT_LEVELS_NONE; i++)
433 maybe_default_option (opts, opts_set, &default_opts[i],
434 level, size, fast, debug,
435 lang_mask, handlers, loc, dc);
438 /* Table of options enabled by default at different levels. */
440 static const struct default_options default_options_table[] =
442 /* -O1 optimizations. */
443 { OPT_LEVELS_1_PLUS, OPT_fdefer_pop, NULL, 1 },
444 #if DELAY_SLOTS
445 { OPT_LEVELS_1_PLUS, OPT_fdelayed_branch, NULL, 1 },
446 #endif
447 { OPT_LEVELS_1_PLUS, OPT_fguess_branch_probability, NULL, 1 },
448 { OPT_LEVELS_1_PLUS, OPT_fcprop_registers, NULL, 1 },
449 { OPT_LEVELS_1_PLUS, OPT_fforward_propagate, NULL, 1 },
450 { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_fif_conversion, NULL, 1 },
451 { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_fif_conversion2, NULL, 1 },
452 { OPT_LEVELS_1_PLUS, OPT_fipa_pure_const, NULL, 1 },
453 { OPT_LEVELS_1_PLUS, OPT_fipa_reference, NULL, 1 },
454 { OPT_LEVELS_1_PLUS, OPT_fipa_profile, NULL, 1 },
455 { OPT_LEVELS_1_PLUS, OPT_fmerge_constants, NULL, 1 },
456 { OPT_LEVELS_1_PLUS, OPT_freorder_blocks, NULL, 1 },
457 { OPT_LEVELS_1_PLUS, OPT_fshrink_wrap, NULL, 1 },
458 { OPT_LEVELS_1_PLUS, OPT_fsplit_wide_types, NULL, 1 },
459 { OPT_LEVELS_1_PLUS, OPT_ftree_ccp, NULL, 1 },
460 { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_ftree_bit_ccp, NULL, 1 },
461 { OPT_LEVELS_1_PLUS, OPT_ftree_coalesce_vars, NULL, 1 },
462 { OPT_LEVELS_1_PLUS, OPT_ftree_dce, NULL, 1 },
463 { OPT_LEVELS_1_PLUS, OPT_ftree_dominator_opts, NULL, 1 },
464 { OPT_LEVELS_1_PLUS, OPT_ftree_dse, NULL, 1 },
465 { OPT_LEVELS_1_PLUS, OPT_ftree_ter, NULL, 1 },
466 { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_ftree_sra, NULL, 1 },
467 { OPT_LEVELS_1_PLUS, OPT_ftree_fre, NULL, 1 },
468 { OPT_LEVELS_1_PLUS, OPT_ftree_copy_prop, NULL, 1 },
469 { OPT_LEVELS_1_PLUS, OPT_ftree_sink, NULL, 1 },
470 { OPT_LEVELS_1_PLUS, OPT_ftree_ch, NULL, 1 },
471 { OPT_LEVELS_1_PLUS, OPT_fcombine_stack_adjustments, NULL, 1 },
472 { OPT_LEVELS_1_PLUS, OPT_fcompare_elim, NULL, 1 },
473 { OPT_LEVELS_1_PLUS, OPT_ftree_slsr, NULL, 1 },
474 { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_fbranch_count_reg, NULL, 1 },
475 { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_fmove_loop_invariants, NULL, 1 },
476 { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_ftree_pta, NULL, 1 },
477 { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_fssa_phiopt, NULL, 1 },
478 { OPT_LEVELS_1_PLUS, OPT_ftree_builtin_call_dce, NULL, 1 },
480 /* -O2 optimizations. */
481 { OPT_LEVELS_2_PLUS, OPT_finline_small_functions, NULL, 1 },
482 { OPT_LEVELS_2_PLUS, OPT_findirect_inlining, NULL, 1 },
483 { OPT_LEVELS_2_PLUS, OPT_fpartial_inlining, NULL, 1 },
484 { OPT_LEVELS_2_PLUS, OPT_fthread_jumps, NULL, 1 },
485 { OPT_LEVELS_2_PLUS, OPT_fcrossjumping, NULL, 1 },
486 { OPT_LEVELS_2_PLUS, OPT_foptimize_sibling_calls, NULL, 1 },
487 { OPT_LEVELS_2_PLUS, OPT_fcse_follow_jumps, NULL, 1 },
488 { OPT_LEVELS_2_PLUS, OPT_fgcse, NULL, 1 },
489 { OPT_LEVELS_2_PLUS, OPT_fexpensive_optimizations, NULL, 1 },
490 { OPT_LEVELS_2_PLUS, OPT_frerun_cse_after_loop, NULL, 1 },
491 { OPT_LEVELS_2_PLUS, OPT_fcaller_saves, NULL, 1 },
492 { OPT_LEVELS_2_PLUS, OPT_fpeephole2, NULL, 1 },
493 #ifdef INSN_SCHEDULING
494 /* Only run the pre-regalloc scheduling pass if optimizing for speed. */
495 { OPT_LEVELS_2_PLUS_SPEED_ONLY, OPT_fschedule_insns, NULL, 1 },
496 { OPT_LEVELS_2_PLUS, OPT_fschedule_insns2, NULL, 1 },
497 #endif
498 { OPT_LEVELS_2_PLUS, OPT_fstrict_aliasing, NULL, 1 },
499 { OPT_LEVELS_2_PLUS_SPEED_ONLY, OPT_freorder_blocks_algorithm_, NULL,
500 REORDER_BLOCKS_ALGORITHM_STC },
501 { OPT_LEVELS_2_PLUS, OPT_freorder_functions, NULL, 1 },
502 { OPT_LEVELS_2_PLUS, OPT_ftree_vrp, NULL, 1 },
503 { OPT_LEVELS_2_PLUS, OPT_fcode_hoisting, NULL, 1 },
504 { OPT_LEVELS_2_PLUS, OPT_ftree_pre, NULL, 1 },
505 { OPT_LEVELS_2_PLUS, OPT_ftree_switch_conversion, NULL, 1 },
506 { OPT_LEVELS_2_PLUS, OPT_fipa_cp, NULL, 1 },
507 { OPT_LEVELS_2_PLUS, OPT_fipa_bit_cp, NULL, 1 },
508 { OPT_LEVELS_2_PLUS, OPT_fipa_vrp, NULL, 1 },
509 { OPT_LEVELS_2_PLUS, OPT_fdevirtualize, NULL, 1 },
510 { OPT_LEVELS_2_PLUS, OPT_fdevirtualize_speculatively, NULL, 1 },
511 { OPT_LEVELS_2_PLUS, OPT_fipa_sra, NULL, 1 },
512 { OPT_LEVELS_2_PLUS, OPT_falign_loops, NULL, 1 },
513 { OPT_LEVELS_2_PLUS, OPT_falign_jumps, NULL, 1 },
514 { OPT_LEVELS_2_PLUS, OPT_falign_labels, NULL, 1 },
515 { OPT_LEVELS_2_PLUS, OPT_falign_functions, NULL, 1 },
516 { OPT_LEVELS_2_PLUS, OPT_ftree_tail_merge, NULL, 1 },
517 { OPT_LEVELS_2_PLUS, OPT_fvect_cost_model_, NULL, VECT_COST_MODEL_CHEAP },
518 { OPT_LEVELS_2_PLUS_SPEED_ONLY, OPT_foptimize_strlen, NULL, 1 },
519 { OPT_LEVELS_2_PLUS, OPT_fhoist_adjacent_loads, NULL, 1 },
520 { OPT_LEVELS_2_PLUS, OPT_fipa_icf, NULL, 1 },
521 { OPT_LEVELS_2_PLUS, OPT_fisolate_erroneous_paths_dereference, NULL, 1 },
522 { OPT_LEVELS_2_PLUS, OPT_fipa_ra, NULL, 1 },
523 { OPT_LEVELS_2_PLUS, OPT_flra_remat, NULL, 1 },
524 { OPT_LEVELS_2_PLUS, OPT_fstore_merging, NULL, 1 },
526 /* -O3 optimizations. */
527 { OPT_LEVELS_3_PLUS, OPT_ftree_loop_distribute_patterns, NULL, 1 },
528 { OPT_LEVELS_3_PLUS, OPT_fpredictive_commoning, NULL, 1 },
529 { OPT_LEVELS_3_PLUS, OPT_fsplit_paths, NULL, 1 },
530 /* Inlining of functions reducing size is a good idea with -Os
531 regardless of them being declared inline. */
532 { OPT_LEVELS_3_PLUS_AND_SIZE, OPT_finline_functions, NULL, 1 },
533 { OPT_LEVELS_1_PLUS_NOT_DEBUG, OPT_finline_functions_called_once, NULL, 1 },
534 { OPT_LEVELS_3_PLUS, OPT_fsplit_loops, NULL, 1 },
535 { OPT_LEVELS_3_PLUS, OPT_funswitch_loops, NULL, 1 },
536 { OPT_LEVELS_3_PLUS, OPT_fgcse_after_reload, NULL, 1 },
537 { OPT_LEVELS_3_PLUS, OPT_ftree_loop_vectorize, NULL, 1 },
538 { OPT_LEVELS_3_PLUS, OPT_ftree_slp_vectorize, NULL, 1 },
539 { OPT_LEVELS_3_PLUS, OPT_fvect_cost_model_, NULL, VECT_COST_MODEL_DYNAMIC },
540 { OPT_LEVELS_3_PLUS, OPT_fipa_cp_clone, NULL, 1 },
541 { OPT_LEVELS_3_PLUS, OPT_ftree_partial_pre, NULL, 1 },
542 { OPT_LEVELS_3_PLUS, OPT_fpeel_loops, NULL, 1 },
544 /* -Ofast adds optimizations to -O3. */
545 { OPT_LEVELS_FAST, OPT_ffast_math, NULL, 1 },
547 { OPT_LEVELS_NONE, 0, NULL, 0 }
550 /* Default the options in OPTS and OPTS_SET based on the optimization
551 settings in DECODED_OPTIONS and DECODED_OPTIONS_COUNT. */
552 void
553 default_options_optimization (struct gcc_options *opts,
554 struct gcc_options *opts_set,
555 struct cl_decoded_option *decoded_options,
556 unsigned int decoded_options_count,
557 location_t loc,
558 unsigned int lang_mask,
559 const struct cl_option_handlers *handlers,
560 diagnostic_context *dc)
562 unsigned int i;
563 int opt2;
564 bool openacc_mode = false;
566 /* Scan to see what optimization level has been specified. That will
567 determine the default value of many flags. */
568 for (i = 1; i < decoded_options_count; i++)
570 struct cl_decoded_option *opt = &decoded_options[i];
571 switch (opt->opt_index)
573 case OPT_O:
574 if (*opt->arg == '\0')
576 opts->x_optimize = 1;
577 opts->x_optimize_size = 0;
578 opts->x_optimize_fast = 0;
579 opts->x_optimize_debug = 0;
581 else
583 const int optimize_val = integral_argument (opt->arg);
584 if (optimize_val == -1)
585 error_at (loc, "argument to %<-O%> should be a non-negative "
586 "integer, %<g%>, %<s%> or %<fast%>");
587 else
589 opts->x_optimize = optimize_val;
590 if ((unsigned int) opts->x_optimize > 255)
591 opts->x_optimize = 255;
592 opts->x_optimize_size = 0;
593 opts->x_optimize_fast = 0;
594 opts->x_optimize_debug = 0;
597 break;
599 case OPT_Os:
600 opts->x_optimize_size = 1;
602 /* Optimizing for size forces optimize to be 2. */
603 opts->x_optimize = 2;
604 opts->x_optimize_fast = 0;
605 opts->x_optimize_debug = 0;
606 break;
608 case OPT_Ofast:
609 /* -Ofast only adds flags to -O3. */
610 opts->x_optimize_size = 0;
611 opts->x_optimize = 3;
612 opts->x_optimize_fast = 1;
613 opts->x_optimize_debug = 0;
614 break;
616 case OPT_Og:
617 /* -Og selects optimization level 1. */
618 opts->x_optimize_size = 0;
619 opts->x_optimize = 1;
620 opts->x_optimize_fast = 0;
621 opts->x_optimize_debug = 1;
622 break;
624 case OPT_fopenacc:
625 if (opt->value)
626 openacc_mode = true;
627 break;
629 default:
630 /* Ignore other options in this prescan. */
631 break;
635 maybe_default_options (opts, opts_set, default_options_table,
636 opts->x_optimize, opts->x_optimize_size,
637 opts->x_optimize_fast, opts->x_optimize_debug,
638 lang_mask, handlers, loc, dc);
640 /* -O2 param settings. */
641 opt2 = (opts->x_optimize >= 2);
643 if (openacc_mode
644 && !opts_set->x_flag_ipa_pta)
645 opts->x_flag_ipa_pta = true;
647 /* Track fields in field-sensitive alias analysis. */
648 maybe_set_param_value
649 (PARAM_MAX_FIELDS_FOR_FIELD_SENSITIVE,
650 opt2 ? 100 : default_param_value (PARAM_MAX_FIELDS_FOR_FIELD_SENSITIVE),
651 opts->x_param_values, opts_set->x_param_values);
653 /* For -O1 only do loop invariant motion for very small loops. */
654 maybe_set_param_value
655 (PARAM_LOOP_INVARIANT_MAX_BBS_IN_LOOP,
656 opt2 ? default_param_value (PARAM_LOOP_INVARIANT_MAX_BBS_IN_LOOP) : 1000,
657 opts->x_param_values, opts_set->x_param_values);
659 /* At -Ofast, allow store motion to introduce potential race conditions. */
660 maybe_set_param_value
661 (PARAM_ALLOW_STORE_DATA_RACES,
662 opts->x_optimize_fast ? 1
663 : default_param_value (PARAM_ALLOW_STORE_DATA_RACES),
664 opts->x_param_values, opts_set->x_param_values);
666 if (opts->x_optimize_size)
667 /* We want to crossjump as much as possible. */
668 maybe_set_param_value (PARAM_MIN_CROSSJUMP_INSNS, 1,
669 opts->x_param_values, opts_set->x_param_values);
670 else
671 maybe_set_param_value (PARAM_MIN_CROSSJUMP_INSNS,
672 default_param_value (PARAM_MIN_CROSSJUMP_INSNS),
673 opts->x_param_values, opts_set->x_param_values);
675 /* Restrict the amount of work combine does at -Og while retaining
676 most of its useful transforms. */
677 if (opts->x_optimize_debug)
678 maybe_set_param_value (PARAM_MAX_COMBINE_INSNS, 2,
679 opts->x_param_values, opts_set->x_param_values);
681 /* Allow default optimizations to be specified on a per-machine basis. */
682 maybe_default_options (opts, opts_set,
683 targetm_common.option_optimization_table,
684 opts->x_optimize, opts->x_optimize_size,
685 opts->x_optimize_fast, opts->x_optimize_debug,
686 lang_mask, handlers, loc, dc);
689 /* After all options at LOC have been read into OPTS and OPTS_SET,
690 finalize settings of those options and diagnose incompatible
691 combinations. */
692 void
693 finish_options (struct gcc_options *opts, struct gcc_options *opts_set,
694 location_t loc)
696 enum unwind_info_type ui_except;
698 if (opts->x_dump_base_name
699 && ! IS_ABSOLUTE_PATH (opts->x_dump_base_name)
700 && ! opts->x_dump_base_name_prefixed)
702 /* First try to make OPTS->X_DUMP_BASE_NAME relative to the
703 OPTS->X_DUMP_DIR_NAME directory. Then try to make
704 OPTS->X_DUMP_BASE_NAME relative to the OPTS->X_AUX_BASE_NAME
705 directory, typically the directory to contain the object
706 file. */
707 if (opts->x_dump_dir_name)
708 opts->x_dump_base_name = opts_concat (opts->x_dump_dir_name,
709 opts->x_dump_base_name, NULL);
710 else if (opts->x_aux_base_name
711 && strcmp (opts->x_aux_base_name, HOST_BIT_BUCKET) != 0)
713 const char *aux_base;
715 base_of_path (opts->x_aux_base_name, &aux_base);
716 if (opts->x_aux_base_name != aux_base)
718 int dir_len = aux_base - opts->x_aux_base_name;
719 char *new_dump_base_name
720 = XOBNEWVEC (&opts_obstack, char,
721 strlen (opts->x_dump_base_name) + dir_len + 1);
723 /* Copy directory component from OPTS->X_AUX_BASE_NAME. */
724 memcpy (new_dump_base_name, opts->x_aux_base_name, dir_len);
725 /* Append existing OPTS->X_DUMP_BASE_NAME. */
726 strcpy (new_dump_base_name + dir_len, opts->x_dump_base_name);
727 opts->x_dump_base_name = new_dump_base_name;
730 opts->x_dump_base_name_prefixed = true;
733 /* Handle related options for unit-at-a-time, toplevel-reorder, and
734 section-anchors. */
735 if (!opts->x_flag_unit_at_a_time)
737 if (opts->x_flag_section_anchors && opts_set->x_flag_section_anchors)
738 error_at (loc, "section anchors must be disabled when unit-at-a-time "
739 "is disabled");
740 opts->x_flag_section_anchors = 0;
741 if (opts->x_flag_toplevel_reorder == 1)
742 error_at (loc, "toplevel reorder must be disabled when unit-at-a-time "
743 "is disabled");
744 opts->x_flag_toplevel_reorder = 0;
747 /* -fself-test depends on the state of the compiler prior to
748 compiling anything. Ideally it should be run on an empty source
749 file. However, in case we get run with actual source, assume
750 -fsyntax-only which will inhibit any compiler initialization
751 which may confuse the self tests. */
752 if (opts->x_flag_self_test)
753 opts->x_flag_syntax_only = 1;
755 if (opts->x_flag_tm && opts->x_flag_non_call_exceptions)
756 sorry ("transactional memory is not supported with non-call exceptions");
758 /* Unless the user has asked for section anchors, we disable toplevel
759 reordering at -O0 to disable transformations that might be surprising
760 to end users and to get -fno-toplevel-reorder tested. */
761 if (!opts->x_optimize
762 && opts->x_flag_toplevel_reorder == 2
763 && !(opts->x_flag_section_anchors && opts_set->x_flag_section_anchors))
765 opts->x_flag_toplevel_reorder = 0;
766 opts->x_flag_section_anchors = 0;
768 if (!opts->x_flag_toplevel_reorder)
770 if (opts->x_flag_section_anchors && opts_set->x_flag_section_anchors)
771 error_at (loc, "section anchors must be disabled when toplevel reorder"
772 " is disabled");
773 opts->x_flag_section_anchors = 0;
776 if (!opts->x_flag_opts_finished)
778 /* We initialize opts->x_flag_pie to -1 so that targets can set a
779 default value. */
780 if (opts->x_flag_pie == -1)
782 /* We initialize opts->x_flag_pic to -1 so that we can tell if
783 -fpic, -fPIC, -fno-pic or -fno-PIC is used. */
784 if (opts->x_flag_pic == -1)
785 opts->x_flag_pie = DEFAULT_FLAG_PIE;
786 else
787 opts->x_flag_pie = 0;
789 /* If -fPIE or -fpie is used, turn on PIC. */
790 if (opts->x_flag_pie)
791 opts->x_flag_pic = opts->x_flag_pie;
792 else if (opts->x_flag_pic == -1)
793 opts->x_flag_pic = 0;
794 if (opts->x_flag_pic && !opts->x_flag_pie)
795 opts->x_flag_shlib = 1;
796 opts->x_flag_opts_finished = true;
799 /* We initialize opts->x_flag_stack_protect to -1 so that targets
800 can set a default value. */
801 if (opts->x_flag_stack_protect == -1)
802 opts->x_flag_stack_protect = DEFAULT_FLAG_SSP;
804 if (opts->x_optimize == 0)
806 /* Inlining does not work if not optimizing,
807 so force it not to be done. */
808 opts->x_warn_inline = 0;
809 opts->x_flag_no_inline = 1;
812 /* The optimization to partition hot and cold basic blocks into separate
813 sections of the .o and executable files does not work (currently)
814 with exception handling. This is because there is no support for
815 generating unwind info. If opts->x_flag_exceptions is turned on
816 we need to turn off the partitioning optimization. */
818 ui_except = targetm_common.except_unwind_info (opts);
820 if (opts->x_flag_exceptions
821 && opts->x_flag_reorder_blocks_and_partition
822 && (ui_except == UI_SJLJ || ui_except >= UI_TARGET))
824 if (opts_set->x_flag_reorder_blocks_and_partition)
825 inform (loc,
826 "%<-freorder-blocks-and-partition%> does not work "
827 "with exceptions on this architecture");
828 opts->x_flag_reorder_blocks_and_partition = 0;
829 opts->x_flag_reorder_blocks = 1;
832 /* If user requested unwind info, then turn off the partitioning
833 optimization. */
835 if (opts->x_flag_unwind_tables
836 && !targetm_common.unwind_tables_default
837 && opts->x_flag_reorder_blocks_and_partition
838 && (ui_except == UI_SJLJ || ui_except >= UI_TARGET))
840 if (opts_set->x_flag_reorder_blocks_and_partition)
841 inform (loc,
842 "%<-freorder-blocks-and-partition%> does not support "
843 "unwind info on this architecture");
844 opts->x_flag_reorder_blocks_and_partition = 0;
845 opts->x_flag_reorder_blocks = 1;
848 /* If the target requested unwind info, then turn off the partitioning
849 optimization with a different message. Likewise, if the target does not
850 support named sections. */
852 if (opts->x_flag_reorder_blocks_and_partition
853 && (!targetm_common.have_named_sections
854 || (opts->x_flag_unwind_tables
855 && targetm_common.unwind_tables_default
856 && (ui_except == UI_SJLJ || ui_except >= UI_TARGET))))
858 if (opts_set->x_flag_reorder_blocks_and_partition)
859 inform (loc,
860 "%<-freorder-blocks-and-partition%> does not work "
861 "on this architecture");
862 opts->x_flag_reorder_blocks_and_partition = 0;
863 opts->x_flag_reorder_blocks = 1;
867 /* Pipelining of outer loops is only possible when general pipelining
868 capabilities are requested. */
869 if (!opts->x_flag_sel_sched_pipelining)
870 opts->x_flag_sel_sched_pipelining_outer_loops = 0;
872 if (opts->x_flag_conserve_stack)
874 maybe_set_param_value (PARAM_LARGE_STACK_FRAME, 100,
875 opts->x_param_values, opts_set->x_param_values);
876 maybe_set_param_value (PARAM_STACK_FRAME_GROWTH, 40,
877 opts->x_param_values, opts_set->x_param_values);
880 if (opts->x_flag_lto)
882 #ifdef ENABLE_LTO
883 opts->x_flag_generate_lto = 1;
885 /* When generating IL, do not operate in whole-program mode.
886 Otherwise, symbols will be privatized too early, causing link
887 errors later. */
888 opts->x_flag_whole_program = 0;
889 #else
890 error_at (loc, "LTO support has not been enabled in this configuration");
891 #endif
892 if (!opts->x_flag_fat_lto_objects
893 && (!HAVE_LTO_PLUGIN
894 || (opts_set->x_flag_use_linker_plugin
895 && !opts->x_flag_use_linker_plugin)))
897 if (opts_set->x_flag_fat_lto_objects)
898 error_at (loc, "%<-fno-fat-lto-objects%> are supported only with "
899 "linker plugin");
900 opts->x_flag_fat_lto_objects = 1;
904 /* We initialize opts->x_flag_split_stack to -1 so that targets can set a
905 default value if they choose based on other options. */
906 if (opts->x_flag_split_stack == -1)
907 opts->x_flag_split_stack = 0;
908 else if (opts->x_flag_split_stack)
910 if (!targetm_common.supports_split_stack (true, opts))
912 error_at (loc, "%<-fsplit-stack%> is not supported by "
913 "this compiler configuration");
914 opts->x_flag_split_stack = 0;
918 /* If stack splitting is turned on, and the user did not explicitly
919 request function partitioning, turn off partitioning, as it
920 confuses the linker when trying to handle partitioned split-stack
921 code that calls a non-split-stack functions. But if partitioning
922 was turned on explicitly just hope for the best. */
923 if (opts->x_flag_split_stack
924 && opts->x_flag_reorder_blocks_and_partition
925 && !opts_set->x_flag_reorder_blocks_and_partition)
926 opts->x_flag_reorder_blocks_and_partition = 0;
928 if (opts->x_flag_reorder_blocks_and_partition
929 && !opts_set->x_flag_reorder_functions)
930 opts->x_flag_reorder_functions = 1;
932 /* Tune vectorization related parametees according to cost model. */
933 if (opts->x_flag_vect_cost_model == VECT_COST_MODEL_CHEAP)
935 maybe_set_param_value (PARAM_VECT_MAX_VERSION_FOR_ALIAS_CHECKS,
936 6, opts->x_param_values, opts_set->x_param_values);
937 maybe_set_param_value (PARAM_VECT_MAX_VERSION_FOR_ALIGNMENT_CHECKS,
938 0, opts->x_param_values, opts_set->x_param_values);
939 maybe_set_param_value (PARAM_VECT_MAX_PEELING_FOR_ALIGNMENT,
940 0, opts->x_param_values, opts_set->x_param_values);
943 /* Set PARAM_MAX_STORES_TO_SINK to 0 if either vectorization or if-conversion
944 is disabled. */
945 if ((!opts->x_flag_tree_loop_vectorize && !opts->x_flag_tree_slp_vectorize)
946 || !opts->x_flag_tree_loop_if_convert)
947 maybe_set_param_value (PARAM_MAX_STORES_TO_SINK, 0,
948 opts->x_param_values, opts_set->x_param_values);
950 /* The -gsplit-dwarf option requires -ggnu-pubnames. */
951 if (opts->x_dwarf_split_debug_info)
952 opts->x_debug_generate_pub_sections = 2;
954 /* Userspace and kernel ASan conflict with each other. */
955 if ((opts->x_flag_sanitize & SANITIZE_USER_ADDRESS)
956 && (opts->x_flag_sanitize & SANITIZE_KERNEL_ADDRESS))
957 error_at (loc,
958 "%<-fsanitize=address%> is incompatible with "
959 "%<-fsanitize=kernel-address%>");
961 /* And with TSan. */
962 if ((opts->x_flag_sanitize & SANITIZE_ADDRESS)
963 && (opts->x_flag_sanitize & SANITIZE_THREAD))
964 error_at (loc,
965 "%<-fsanitize=address%> and %<-fsanitize=kernel-address%> "
966 "are incompatible with %<-fsanitize=thread%>");
968 if ((opts->x_flag_sanitize & SANITIZE_LEAK)
969 && (opts->x_flag_sanitize & SANITIZE_THREAD))
970 error_at (loc,
971 "%<-fsanitize=leak%> is incompatible with %<-fsanitize=thread%>");
973 /* Check error recovery for -fsanitize-recover option. */
974 for (int i = 0; sanitizer_opts[i].name != NULL; ++i)
975 if ((opts->x_flag_sanitize_recover & sanitizer_opts[i].flag)
976 && !sanitizer_opts[i].can_recover)
977 error_at (loc, "%<-fsanitize-recover=%s%> is not supported",
978 sanitizer_opts[i].name);
980 /* When instrumenting the pointers, we don't want to remove
981 the null pointer checks. */
982 if (opts->x_flag_sanitize & (SANITIZE_NULL | SANITIZE_NONNULL_ATTRIBUTE
983 | SANITIZE_RETURNS_NONNULL_ATTRIBUTE))
984 opts->x_flag_delete_null_pointer_checks = 0;
986 /* Aggressive compiler optimizations may cause false negatives. */
987 if (opts->x_flag_sanitize & ~(SANITIZE_LEAK | SANITIZE_UNREACHABLE))
988 opts->x_flag_aggressive_loop_optimizations = 0;
990 /* Enable -fsanitize-address-use-after-scope if address sanitizer is
991 enabled. */
992 if ((opts->x_flag_sanitize & SANITIZE_USER_ADDRESS)
993 && !opts_set->x_flag_sanitize_address_use_after_scope)
994 opts->x_flag_sanitize_address_use_after_scope = true;
996 /* Force -fstack-reuse=none in case -fsanitize-address-use-after-scope
997 is enabled. */
998 if (opts->x_flag_sanitize_address_use_after_scope)
1000 if (opts->x_flag_stack_reuse != SR_NONE
1001 && opts_set->x_flag_stack_reuse != SR_NONE)
1002 error_at (loc,
1003 "%<-fsanitize-address-use-after-scope%> requires "
1004 "%<-fstack-reuse=none%> option");
1006 opts->x_flag_stack_reuse = SR_NONE;
1009 if ((opts->x_flag_sanitize & SANITIZE_USER_ADDRESS) && opts->x_flag_tm)
1010 sorry ("transactional memory is not supported with %<-fsanitize=address%>");
1012 if ((opts->x_flag_sanitize & SANITIZE_KERNEL_ADDRESS) && opts->x_flag_tm)
1013 sorry ("transactional memory is not supported with "
1014 "%<-fsanitize=kernel-address%>");
1017 #define LEFT_COLUMN 27
1019 /* Output ITEM, of length ITEM_WIDTH, in the left column,
1020 followed by word-wrapped HELP in a second column. */
1021 static void
1022 wrap_help (const char *help,
1023 const char *item,
1024 unsigned int item_width,
1025 unsigned int columns)
1027 unsigned int col_width = LEFT_COLUMN;
1028 unsigned int remaining, room, len;
1030 remaining = strlen (help);
1034 room = columns - 3 - MAX (col_width, item_width);
1035 if (room > columns)
1036 room = 0;
1037 len = remaining;
1039 if (room < len)
1041 unsigned int i;
1043 for (i = 0; help[i]; i++)
1045 if (i >= room && len != remaining)
1046 break;
1047 if (help[i] == ' ')
1048 len = i;
1049 else if ((help[i] == '-' || help[i] == '/')
1050 && help[i + 1] != ' '
1051 && i > 0 && ISALPHA (help[i - 1]))
1052 len = i + 1;
1056 printf (" %-*.*s %.*s\n", col_width, item_width, item, len, help);
1057 item_width = 0;
1058 while (help[len] == ' ')
1059 len++;
1060 help += len;
1061 remaining -= len;
1063 while (remaining);
1066 /* Print help for a specific front-end, etc. */
1067 static void
1068 print_filtered_help (unsigned int include_flags,
1069 unsigned int exclude_flags,
1070 unsigned int any_flags,
1071 unsigned int columns,
1072 struct gcc_options *opts,
1073 unsigned int lang_mask)
1075 unsigned int i;
1076 const char *help;
1077 bool found = false;
1078 bool displayed = false;
1079 char new_help[256];
1081 if (include_flags == CL_PARAMS)
1083 for (i = 0; i < LAST_PARAM; i++)
1085 const char *param = compiler_params[i].option;
1087 help = compiler_params[i].help;
1088 if (help == NULL || *help == '\0')
1090 if (exclude_flags & CL_UNDOCUMENTED)
1091 continue;
1092 help = undocumented_msg;
1095 /* Get the translation. */
1096 help = _(help);
1098 if (!opts->x_quiet_flag)
1100 snprintf (new_help, sizeof (new_help),
1101 _("default %d minimum %d maximum %d"),
1102 compiler_params[i].default_value,
1103 compiler_params[i].min_value,
1104 compiler_params[i].max_value);
1105 help = new_help;
1107 wrap_help (help, param, strlen (param), columns);
1109 putchar ('\n');
1110 return;
1113 if (!opts->x_help_printed)
1114 opts->x_help_printed = XCNEWVAR (char, cl_options_count);
1116 if (!opts->x_help_enum_printed)
1117 opts->x_help_enum_printed = XCNEWVAR (char, cl_enums_count);
1119 for (i = 0; i < cl_options_count; i++)
1121 const struct cl_option *option = cl_options + i;
1122 unsigned int len;
1123 const char *opt;
1124 const char *tab;
1126 if (include_flags == 0
1127 || ((option->flags & include_flags) != include_flags))
1129 if ((option->flags & any_flags) == 0)
1130 continue;
1133 /* Skip unwanted switches. */
1134 if ((option->flags & exclude_flags) != 0)
1135 continue;
1137 /* The driver currently prints its own help text. */
1138 if ((option->flags & CL_DRIVER) != 0
1139 && (option->flags & (((1U << cl_lang_count) - 1)
1140 | CL_COMMON | CL_TARGET)) == 0)
1141 continue;
1143 found = true;
1144 /* Skip switches that have already been printed. */
1145 if (opts->x_help_printed[i])
1146 continue;
1148 opts->x_help_printed[i] = true;
1150 help = option->help;
1151 if (help == NULL)
1153 if (exclude_flags & CL_UNDOCUMENTED)
1154 continue;
1156 help = undocumented_msg;
1159 if (option->alias_target < N_OPTS
1160 && cl_options [option->alias_target].help)
1162 if (help == undocumented_msg)
1164 /* For undocumented options that are aliases for other options
1165 that are documented, point the reader to the other option in
1166 preference of the former. */
1167 snprintf (new_help, sizeof new_help,
1168 _("Same as %s. Use the latter option instead."),
1169 cl_options [option->alias_target].opt_text);
1171 else
1173 /* For documented options with aliases, mention the aliased
1174 option's name for reference. */
1175 snprintf (new_help, sizeof new_help,
1176 _("%s Same as %s."),
1177 help, cl_options [option->alias_target].opt_text);
1180 help = new_help;
1183 if (option->warn_message)
1185 /* Mention that the use of the option will trigger a warning. */
1186 if (help == new_help)
1187 snprintf (new_help + strlen (new_help),
1188 sizeof new_help - strlen (new_help),
1189 " %s", _(use_diagnosed_msg));
1190 else
1191 snprintf (new_help, sizeof new_help,
1192 "%s %s", help, _(use_diagnosed_msg));
1194 help = new_help;
1197 /* Get the translation. */
1198 help = _(help);
1200 /* Find the gap between the name of the
1201 option and its descriptive text. */
1202 tab = strchr (help, '\t');
1203 if (tab)
1205 len = tab - help;
1206 opt = help;
1207 help = tab + 1;
1209 else
1211 opt = option->opt_text;
1212 len = strlen (opt);
1215 /* With the -Q option enabled we change the descriptive text associated
1216 with an option to be an indication of its current setting. */
1217 if (!opts->x_quiet_flag)
1219 void *flag_var = option_flag_var (i, opts);
1221 if (len < (LEFT_COLUMN + 2))
1222 strcpy (new_help, "\t\t");
1223 else
1224 strcpy (new_help, "\t");
1226 if (flag_var != NULL
1227 && option->var_type != CLVC_DEFER)
1229 if (option->flags & CL_JOINED)
1231 if (option->var_type == CLVC_STRING)
1233 if (* (const char **) flag_var != NULL)
1234 snprintf (new_help + strlen (new_help),
1235 sizeof (new_help) - strlen (new_help),
1236 "%s", * (const char **) flag_var);
1238 else if (option->var_type == CLVC_ENUM)
1240 const struct cl_enum *e = &cl_enums[option->var_enum];
1241 int value;
1242 const char *arg = NULL;
1244 value = e->get (flag_var);
1245 enum_value_to_arg (e->values, &arg, value, lang_mask);
1246 if (arg == NULL)
1247 arg = _("[default]");
1248 snprintf (new_help + strlen (new_help),
1249 sizeof (new_help) - strlen (new_help),
1250 "%s", arg);
1252 else
1253 sprintf (new_help + strlen (new_help),
1254 "%d", * (int *) flag_var);
1256 else
1257 strcat (new_help, option_enabled (i, opts)
1258 ? _("[enabled]") : _("[disabled]"));
1261 help = new_help;
1264 if (option->range_max != -1)
1266 char b[128];
1267 snprintf (b, sizeof (b), "<%d,%d>", option->range_min,
1268 option->range_max);
1269 opt = concat (opt, b, NULL);
1270 len += strlen (b);
1273 wrap_help (help, opt, len, columns);
1274 displayed = true;
1276 if (option->var_type == CLVC_ENUM
1277 && opts->x_help_enum_printed[option->var_enum] != 2)
1278 opts->x_help_enum_printed[option->var_enum] = 1;
1281 if (! found)
1283 unsigned int langs = include_flags & CL_LANG_ALL;
1285 if (langs == 0)
1286 printf (_(" No options with the desired characteristics were found\n"));
1287 else
1289 unsigned int i;
1291 /* PR 31349: Tell the user how to see all of the
1292 options supported by a specific front end. */
1293 for (i = 0; (1U << i) < CL_LANG_ALL; i ++)
1294 if ((1U << i) & langs)
1295 printf (_(" None found. Use --help=%s to show *all* the options supported by the %s front-end.\n"),
1296 lang_names[i], lang_names[i]);
1300 else if (! displayed)
1301 printf (_(" All options with the desired characteristics have already been displayed\n"));
1303 putchar ('\n');
1305 /* Print details of enumerated option arguments, if those
1306 enumerations have help text headings provided. If no help text
1307 is provided, presume that the possible values are listed in the
1308 help text for the relevant options. */
1309 for (i = 0; i < cl_enums_count; i++)
1311 unsigned int j, pos;
1313 if (opts->x_help_enum_printed[i] != 1)
1314 continue;
1315 if (cl_enums[i].help == NULL)
1316 continue;
1317 printf (" %s\n ", _(cl_enums[i].help));
1318 pos = 4;
1319 for (j = 0; cl_enums[i].values[j].arg != NULL; j++)
1321 unsigned int len = strlen (cl_enums[i].values[j].arg);
1323 if (pos > 4 && pos + 1 + len <= columns)
1325 printf (" %s", cl_enums[i].values[j].arg);
1326 pos += 1 + len;
1328 else
1330 if (pos > 4)
1332 printf ("\n ");
1333 pos = 4;
1335 printf ("%s", cl_enums[i].values[j].arg);
1336 pos += len;
1339 printf ("\n\n");
1340 opts->x_help_enum_printed[i] = 2;
1344 /* Display help for a specified type of option.
1345 The options must have ALL of the INCLUDE_FLAGS set
1346 ANY of the flags in the ANY_FLAGS set
1347 and NONE of the EXCLUDE_FLAGS set. The current option state is in
1348 OPTS; LANG_MASK is used for interpreting enumerated option state. */
1349 static void
1350 print_specific_help (unsigned int include_flags,
1351 unsigned int exclude_flags,
1352 unsigned int any_flags,
1353 struct gcc_options *opts,
1354 unsigned int lang_mask)
1356 unsigned int all_langs_mask = (1U << cl_lang_count) - 1;
1357 const char * description = NULL;
1358 const char * descrip_extra = "";
1359 size_t i;
1360 unsigned int flag;
1362 /* Sanity check: Make sure that we do not have more
1363 languages than we have bits available to enumerate them. */
1364 gcc_assert ((1U << cl_lang_count) <= CL_MIN_OPTION_CLASS);
1366 /* If we have not done so already, obtain
1367 the desired maximum width of the output. */
1368 if (opts->x_help_columns == 0)
1370 opts->x_help_columns = get_terminal_width ();
1371 if (opts->x_help_columns == INT_MAX)
1372 /* Use a reasonable default. */
1373 opts->x_help_columns = 80;
1376 /* Decide upon the title for the options that we are going to display. */
1377 for (i = 0, flag = 1; flag <= CL_MAX_OPTION_CLASS; flag <<= 1, i ++)
1379 switch (flag & include_flags)
1381 case 0:
1382 case CL_DRIVER:
1383 break;
1385 case CL_TARGET:
1386 description = _("The following options are target specific");
1387 break;
1388 case CL_WARNING:
1389 description = _("The following options control compiler warning messages");
1390 break;
1391 case CL_OPTIMIZATION:
1392 description = _("The following options control optimizations");
1393 break;
1394 case CL_COMMON:
1395 description = _("The following options are language-independent");
1396 break;
1397 case CL_PARAMS:
1398 description = _("The --param option recognizes the following as parameters");
1399 break;
1400 default:
1401 if (i >= cl_lang_count)
1402 break;
1403 if (exclude_flags & all_langs_mask)
1404 description = _("The following options are specific to just the language ");
1405 else
1406 description = _("The following options are supported by the language ");
1407 descrip_extra = lang_names [i];
1408 break;
1412 if (description == NULL)
1414 if (any_flags == 0)
1416 if (include_flags & CL_UNDOCUMENTED)
1417 description = _("The following options are not documented");
1418 else if (include_flags & CL_SEPARATE)
1419 description = _("The following options take separate arguments");
1420 else if (include_flags & CL_JOINED)
1421 description = _("The following options take joined arguments");
1422 else
1424 internal_error ("unrecognized include_flags 0x%x passed to print_specific_help",
1425 include_flags);
1426 return;
1429 else
1431 if (any_flags & all_langs_mask)
1432 description = _("The following options are language-related");
1433 else
1434 description = _("The following options are language-independent");
1438 printf ("%s%s:\n", description, descrip_extra);
1439 print_filtered_help (include_flags, exclude_flags, any_flags,
1440 opts->x_help_columns, opts, lang_mask);
1443 /* Enable FDO-related flags. */
1445 static void
1446 enable_fdo_optimizations (struct gcc_options *opts,
1447 struct gcc_options *opts_set,
1448 int value)
1450 if (!opts_set->x_flag_branch_probabilities)
1451 opts->x_flag_branch_probabilities = value;
1452 if (!opts_set->x_flag_profile_values)
1453 opts->x_flag_profile_values = value;
1454 if (!opts_set->x_flag_unroll_loops)
1455 opts->x_flag_unroll_loops = value;
1456 if (!opts_set->x_flag_peel_loops)
1457 opts->x_flag_peel_loops = value;
1458 if (!opts_set->x_flag_tracer)
1459 opts->x_flag_tracer = value;
1460 if (!opts_set->x_flag_value_profile_transformations)
1461 opts->x_flag_value_profile_transformations = value;
1462 if (!opts_set->x_flag_inline_functions)
1463 opts->x_flag_inline_functions = value;
1464 if (!opts_set->x_flag_ipa_cp)
1465 opts->x_flag_ipa_cp = value;
1466 if (!opts_set->x_flag_ipa_cp_clone
1467 && value && opts->x_flag_ipa_cp)
1468 opts->x_flag_ipa_cp_clone = value;
1469 if (!opts_set->x_flag_ipa_bit_cp
1470 && value && opts->x_flag_ipa_cp)
1471 opts->x_flag_ipa_bit_cp = value;
1472 if (!opts_set->x_flag_predictive_commoning)
1473 opts->x_flag_predictive_commoning = value;
1474 if (!opts_set->x_flag_split_loops)
1475 opts->x_flag_split_loops = value;
1476 if (!opts_set->x_flag_unswitch_loops)
1477 opts->x_flag_unswitch_loops = value;
1478 if (!opts_set->x_flag_gcse_after_reload)
1479 opts->x_flag_gcse_after_reload = value;
1480 if (!opts_set->x_flag_tree_loop_vectorize
1481 && !opts_set->x_flag_tree_vectorize)
1482 opts->x_flag_tree_loop_vectorize = value;
1483 if (!opts_set->x_flag_tree_slp_vectorize
1484 && !opts_set->x_flag_tree_vectorize)
1485 opts->x_flag_tree_slp_vectorize = value;
1486 if (!opts_set->x_flag_vect_cost_model)
1487 opts->x_flag_vect_cost_model = VECT_COST_MODEL_DYNAMIC;
1488 if (!opts_set->x_flag_tree_loop_distribute_patterns)
1489 opts->x_flag_tree_loop_distribute_patterns = value;
1492 /* -f{,no-}sanitize{,-recover}= suboptions. */
1493 const struct sanitizer_opts_s sanitizer_opts[] =
1495 #define SANITIZER_OPT(name, flags, recover) \
1496 { #name, flags, sizeof #name - 1, recover }
1497 SANITIZER_OPT (address, (SANITIZE_ADDRESS | SANITIZE_USER_ADDRESS), true),
1498 SANITIZER_OPT (kernel-address, (SANITIZE_ADDRESS | SANITIZE_KERNEL_ADDRESS),
1499 true),
1500 SANITIZER_OPT (thread, SANITIZE_THREAD, false),
1501 SANITIZER_OPT (leak, SANITIZE_LEAK, false),
1502 SANITIZER_OPT (shift, SANITIZE_SHIFT, true),
1503 SANITIZER_OPT (shift-base, SANITIZE_SHIFT_BASE, true),
1504 SANITIZER_OPT (shift-exponent, SANITIZE_SHIFT_EXPONENT, true),
1505 SANITIZER_OPT (integer-divide-by-zero, SANITIZE_DIVIDE, true),
1506 SANITIZER_OPT (undefined, SANITIZE_UNDEFINED, true),
1507 SANITIZER_OPT (unreachable, SANITIZE_UNREACHABLE, false),
1508 SANITIZER_OPT (vla-bound, SANITIZE_VLA, true),
1509 SANITIZER_OPT (return, SANITIZE_RETURN, false),
1510 SANITIZER_OPT (null, SANITIZE_NULL, true),
1511 SANITIZER_OPT (signed-integer-overflow, SANITIZE_SI_OVERFLOW, true),
1512 SANITIZER_OPT (bool, SANITIZE_BOOL, true),
1513 SANITIZER_OPT (enum, SANITIZE_ENUM, true),
1514 SANITIZER_OPT (float-divide-by-zero, SANITIZE_FLOAT_DIVIDE, true),
1515 SANITIZER_OPT (float-cast-overflow, SANITIZE_FLOAT_CAST, true),
1516 SANITIZER_OPT (bounds, SANITIZE_BOUNDS, true),
1517 SANITIZER_OPT (bounds-strict, SANITIZE_BOUNDS | SANITIZE_BOUNDS_STRICT, true),
1518 SANITIZER_OPT (alignment, SANITIZE_ALIGNMENT, true),
1519 SANITIZER_OPT (nonnull-attribute, SANITIZE_NONNULL_ATTRIBUTE, true),
1520 SANITIZER_OPT (returns-nonnull-attribute, SANITIZE_RETURNS_NONNULL_ATTRIBUTE,
1521 true),
1522 SANITIZER_OPT (object-size, SANITIZE_OBJECT_SIZE, true),
1523 SANITIZER_OPT (vptr, SANITIZE_VPTR, true),
1524 SANITIZER_OPT (all, ~0U, true),
1525 #undef SANITIZER_OPT
1526 { NULL, 0U, 0UL, false }
1529 /* A struct for describing a run of chars within a string. */
1531 struct string_fragment
1533 string_fragment (const char *start, size_t len)
1534 : m_start (start), m_len (len) {}
1536 const char *m_start;
1537 size_t m_len;
1540 /* Specialization of edit_distance_traits for string_fragment,
1541 for use by get_closest_sanitizer_option. */
1543 template <>
1544 struct edit_distance_traits<const string_fragment &>
1546 static size_t get_length (const string_fragment &fragment)
1548 return fragment.m_len;
1551 static const char *get_string (const string_fragment &fragment)
1553 return fragment.m_start;
1557 /* Given ARG, an unrecognized sanitizer option, return the best
1558 matching sanitizer option, or NULL if there isn't one.
1559 CODE is OPT_fsanitize_ or OPT_fsanitize_recover_.
1560 VALUE is non-zero for the regular form of the option, zero
1561 for the "no-" form (e.g. "-fno-sanitize-recover="). */
1563 static const char *
1564 get_closest_sanitizer_option (const string_fragment &arg,
1565 enum opt_code code, int value)
1567 best_match <const string_fragment &, const char*> bm (arg);
1568 for (int i = 0; sanitizer_opts[i].name != NULL; ++i)
1570 /* -fsanitize=all is not valid, so don't offer it. */
1571 if (sanitizer_opts[i].flag == ~0U
1572 && code == OPT_fsanitize_
1573 && value)
1574 continue;
1576 /* For -fsanitize-recover= (and not -fno-sanitize-recover=),
1577 don't offer the non-recoverable options. */
1578 if (!sanitizer_opts[i].can_recover
1579 && code == OPT_fsanitize_recover_
1580 && value)
1581 continue;
1583 bm.consider (sanitizer_opts[i].name);
1585 return bm.get_best_meaningful_candidate ();
1588 /* Parse comma separated sanitizer suboptions from P for option SCODE,
1589 adjust previous FLAGS and return new ones. If COMPLAIN is false,
1590 don't issue diagnostics. */
1592 unsigned int
1593 parse_sanitizer_options (const char *p, location_t loc, int scode,
1594 unsigned int flags, int value, bool complain)
1596 enum opt_code code = (enum opt_code) scode;
1597 while (*p != 0)
1599 size_t len, i;
1600 bool found = false;
1601 const char *comma = strchr (p, ',');
1603 if (comma == NULL)
1604 len = strlen (p);
1605 else
1606 len = comma - p;
1607 if (len == 0)
1609 p = comma + 1;
1610 continue;
1613 /* Check to see if the string matches an option class name. */
1614 for (i = 0; sanitizer_opts[i].name != NULL; ++i)
1615 if (len == sanitizer_opts[i].len
1616 && memcmp (p, sanitizer_opts[i].name, len) == 0)
1618 /* Handle both -fsanitize and -fno-sanitize cases. */
1619 if (value && sanitizer_opts[i].flag == ~0U)
1621 if (code == OPT_fsanitize_)
1623 if (complain)
1624 error_at (loc, "%<-fsanitize=all%> option is not valid");
1626 else
1627 flags |= ~(SANITIZE_THREAD | SANITIZE_LEAK
1628 | SANITIZE_UNREACHABLE | SANITIZE_RETURN);
1630 else if (value)
1632 /* Do not enable -fsanitize-recover=unreachable and
1633 -fsanitize-recover=return if -fsanitize-recover=undefined
1634 is selected. */
1635 if (code == OPT_fsanitize_recover_
1636 && sanitizer_opts[i].flag == SANITIZE_UNDEFINED)
1637 flags |= (SANITIZE_UNDEFINED
1638 & ~(SANITIZE_UNREACHABLE | SANITIZE_RETURN));
1639 else
1640 flags |= sanitizer_opts[i].flag;
1642 else
1643 flags &= ~sanitizer_opts[i].flag;
1644 found = true;
1645 break;
1648 if (! found && complain)
1650 const char *hint
1651 = get_closest_sanitizer_option (string_fragment (p, len),
1652 code, value);
1654 if (hint)
1655 error_at (loc,
1656 "unrecognized argument to -f%ssanitize%s= option: %q.*s;"
1657 " did you mean %qs?",
1658 value ? "" : "no-",
1659 code == OPT_fsanitize_ ? "" : "-recover",
1660 (int) len, p, hint);
1661 else
1662 error_at (loc,
1663 "unrecognized argument to -f%ssanitize%s= option: %q.*s",
1664 value ? "" : "no-",
1665 code == OPT_fsanitize_ ? "" : "-recover",
1666 (int) len, p);
1669 if (comma == NULL)
1670 break;
1671 p = comma + 1;
1673 return flags;
1676 /* Parse string values of no_sanitize attribute passed in VALUE.
1677 Values are separated with comma. Wrong argument is stored to
1678 WRONG_ARGUMENT variable. */
1680 unsigned int
1681 parse_no_sanitize_attribute (char *value, char **wrong_argument)
1683 unsigned int flags = 0;
1684 unsigned int i;
1685 char *q = strtok (value, ",");
1687 while (q != NULL)
1689 for (i = 0; sanitizer_opts[i].name != NULL; ++i)
1690 if (strcmp (sanitizer_opts[i].name, q) == 0)
1692 flags |= sanitizer_opts[i].flag;
1693 if (sanitizer_opts[i].flag == SANITIZE_UNDEFINED)
1694 flags |= SANITIZE_UNDEFINED_NONDEFAULT;
1695 break;
1698 if (sanitizer_opts[i].name == NULL)
1699 *wrong_argument = q;
1701 q = strtok (NULL, ",");
1704 return flags;
1707 /* Handle target- and language-independent options. Return zero to
1708 generate an "unknown option" message. Only options that need
1709 extra handling need to be listed here; if you simply want
1710 DECODED->value assigned to a variable, it happens automatically. */
1712 bool
1713 common_handle_option (struct gcc_options *opts,
1714 struct gcc_options *opts_set,
1715 const struct cl_decoded_option *decoded,
1716 unsigned int lang_mask, int kind ATTRIBUTE_UNUSED,
1717 location_t loc,
1718 const struct cl_option_handlers *handlers,
1719 diagnostic_context *dc)
1721 size_t scode = decoded->opt_index;
1722 const char *arg = decoded->arg;
1723 int value = decoded->value;
1724 enum opt_code code = (enum opt_code) scode;
1726 gcc_assert (decoded->canonical_option_num_elements <= 2);
1728 switch (code)
1730 case OPT__param:
1731 handle_param (opts, opts_set, loc, arg);
1732 break;
1734 case OPT__help:
1736 unsigned int all_langs_mask = (1U << cl_lang_count) - 1;
1737 unsigned int undoc_mask;
1738 unsigned int i;
1740 if (lang_mask == CL_DRIVER)
1741 break;
1743 undoc_mask = ((opts->x_verbose_flag | opts->x_extra_warnings)
1745 : CL_UNDOCUMENTED);
1746 /* First display any single language specific options. */
1747 for (i = 0; i < cl_lang_count; i++)
1748 print_specific_help
1749 (1U << i, (all_langs_mask & (~ (1U << i))) | undoc_mask, 0, opts,
1750 lang_mask);
1751 /* Next display any multi language specific options. */
1752 print_specific_help (0, undoc_mask, all_langs_mask, opts, lang_mask);
1753 /* Then display any remaining, non-language options. */
1754 for (i = CL_MIN_OPTION_CLASS; i <= CL_MAX_OPTION_CLASS; i <<= 1)
1755 if (i != CL_DRIVER)
1756 print_specific_help (i, undoc_mask, 0, opts, lang_mask);
1757 opts->x_exit_after_options = true;
1758 break;
1761 case OPT__target_help:
1762 if (lang_mask == CL_DRIVER)
1763 break;
1765 print_specific_help (CL_TARGET, CL_UNDOCUMENTED, 0, opts, lang_mask);
1766 opts->x_exit_after_options = true;
1767 break;
1769 case OPT__help_:
1771 const char *a = arg;
1772 unsigned int include_flags = 0;
1773 /* Note - by default we include undocumented options when listing
1774 specific classes. If you only want to see documented options
1775 then add ",^undocumented" to the --help= option. E.g.:
1777 --help=target,^undocumented */
1778 unsigned int exclude_flags = 0;
1780 if (lang_mask == CL_DRIVER)
1781 break;
1783 /* Walk along the argument string, parsing each word in turn.
1784 The format is:
1785 arg = [^]{word}[,{arg}]
1786 word = {optimizers|target|warnings|undocumented|
1787 params|common|<language>} */
1788 while (*a != 0)
1790 static const struct
1792 const char *string;
1793 unsigned int flag;
1795 specifics[] =
1797 { "optimizers", CL_OPTIMIZATION },
1798 { "target", CL_TARGET },
1799 { "warnings", CL_WARNING },
1800 { "undocumented", CL_UNDOCUMENTED },
1801 { "params", CL_PARAMS },
1802 { "joined", CL_JOINED },
1803 { "separate", CL_SEPARATE },
1804 { "common", CL_COMMON },
1805 { NULL, 0 }
1807 unsigned int *pflags;
1808 const char *comma;
1809 unsigned int lang_flag, specific_flag;
1810 unsigned int len;
1811 unsigned int i;
1813 if (*a == '^')
1815 ++a;
1816 if (*a == '\0')
1818 error_at (loc, "missing argument to %qs", "--help=^");
1819 break;
1821 pflags = &exclude_flags;
1823 else
1824 pflags = &include_flags;
1826 comma = strchr (a, ',');
1827 if (comma == NULL)
1828 len = strlen (a);
1829 else
1830 len = comma - a;
1831 if (len == 0)
1833 a = comma + 1;
1834 continue;
1837 /* Check to see if the string matches an option class name. */
1838 for (i = 0, specific_flag = 0; specifics[i].string != NULL; i++)
1839 if (strncasecmp (a, specifics[i].string, len) == 0)
1841 specific_flag = specifics[i].flag;
1842 break;
1845 /* Check to see if the string matches a language name.
1846 Note - we rely upon the alpha-sorted nature of the entries in
1847 the lang_names array, specifically that shorter names appear
1848 before their longer variants. (i.e. C before C++). That way
1849 when we are attempting to match --help=c for example we will
1850 match with C first and not C++. */
1851 for (i = 0, lang_flag = 0; i < cl_lang_count; i++)
1852 if (strncasecmp (a, lang_names[i], len) == 0)
1854 lang_flag = 1U << i;
1855 break;
1858 if (specific_flag != 0)
1860 if (lang_flag == 0)
1861 *pflags |= specific_flag;
1862 else
1864 /* The option's argument matches both the start of a
1865 language name and the start of an option class name.
1866 We have a special case for when the user has
1867 specified "--help=c", but otherwise we have to issue
1868 a warning. */
1869 if (strncasecmp (a, "c", len) == 0)
1870 *pflags |= lang_flag;
1871 else
1872 warning_at (loc, 0,
1873 "--help argument %q.*s is ambiguous, "
1874 "please be more specific",
1875 len, a);
1878 else if (lang_flag != 0)
1879 *pflags |= lang_flag;
1880 else
1881 warning_at (loc, 0,
1882 "unrecognized argument to --help= option: %q.*s",
1883 len, a);
1885 if (comma == NULL)
1886 break;
1887 a = comma + 1;
1890 if (include_flags)
1891 print_specific_help (include_flags, exclude_flags, 0, opts,
1892 lang_mask);
1893 opts->x_exit_after_options = true;
1894 break;
1897 case OPT__version:
1898 if (lang_mask == CL_DRIVER)
1899 break;
1901 opts->x_exit_after_options = true;
1902 break;
1904 case OPT_fsanitize_:
1905 opts->x_flag_sanitize
1906 = parse_sanitizer_options (arg, loc, code,
1907 opts->x_flag_sanitize, value, true);
1909 /* Kernel ASan implies normal ASan but does not yet support
1910 all features. */
1911 if (opts->x_flag_sanitize & SANITIZE_KERNEL_ADDRESS)
1913 maybe_set_param_value (PARAM_ASAN_INSTRUMENTATION_WITH_CALL_THRESHOLD,
1914 0, opts->x_param_values,
1915 opts_set->x_param_values);
1916 maybe_set_param_value (PARAM_ASAN_GLOBALS, 0, opts->x_param_values,
1917 opts_set->x_param_values);
1918 maybe_set_param_value (PARAM_ASAN_STACK, 0, opts->x_param_values,
1919 opts_set->x_param_values);
1920 maybe_set_param_value (PARAM_ASAN_PROTECT_ALLOCAS, 0,
1921 opts->x_param_values,
1922 opts_set->x_param_values);
1923 maybe_set_param_value (PARAM_ASAN_USE_AFTER_RETURN, 0,
1924 opts->x_param_values,
1925 opts_set->x_param_values);
1927 break;
1929 case OPT_fsanitize_recover_:
1930 opts->x_flag_sanitize_recover
1931 = parse_sanitizer_options (arg, loc, code,
1932 opts->x_flag_sanitize_recover, value, true);
1933 break;
1935 case OPT_fasan_shadow_offset_:
1936 /* Deferred. */
1937 break;
1939 case OPT_fsanitize_address_use_after_scope:
1940 opts->x_flag_sanitize_address_use_after_scope = value;
1941 break;
1943 case OPT_fsanitize_recover:
1944 if (value)
1945 opts->x_flag_sanitize_recover
1946 |= (SANITIZE_UNDEFINED | SANITIZE_UNDEFINED_NONDEFAULT)
1947 & ~(SANITIZE_UNREACHABLE | SANITIZE_RETURN);
1948 else
1949 opts->x_flag_sanitize_recover
1950 &= ~(SANITIZE_UNDEFINED | SANITIZE_UNDEFINED_NONDEFAULT);
1951 break;
1953 case OPT_O:
1954 case OPT_Os:
1955 case OPT_Ofast:
1956 case OPT_Og:
1957 /* Currently handled in a prescan. */
1958 break;
1960 case OPT_Werror:
1961 dc->warning_as_error_requested = value;
1962 break;
1964 case OPT_Werror_:
1965 if (lang_mask == CL_DRIVER)
1966 break;
1968 enable_warning_as_error (arg, value, lang_mask, handlers,
1969 opts, opts_set, loc, dc);
1970 break;
1972 case OPT_Wlarger_than_:
1973 opts->x_larger_than_size = value;
1974 opts->x_warn_larger_than = value != -1;
1975 break;
1977 case OPT_Wfatal_errors:
1978 dc->fatal_errors = value;
1979 break;
1981 case OPT_Wframe_larger_than_:
1982 opts->x_frame_larger_than_size = value;
1983 opts->x_warn_frame_larger_than = value != -1;
1984 break;
1986 case OPT_Wstack_usage_:
1987 opts->x_warn_stack_usage = value;
1988 opts->x_flag_stack_usage_info = value != -1;
1989 break;
1991 case OPT_Wstrict_aliasing:
1992 set_Wstrict_aliasing (opts, value);
1993 break;
1995 case OPT_Wstrict_overflow:
1996 opts->x_warn_strict_overflow = (value
1997 ? (int) WARN_STRICT_OVERFLOW_CONDITIONAL
1998 : 0);
1999 break;
2001 case OPT_Wsystem_headers:
2002 dc->dc_warn_system_headers = value;
2003 break;
2005 case OPT_aux_info:
2006 opts->x_flag_gen_aux_info = 1;
2007 break;
2009 case OPT_auxbase_strip:
2011 char *tmp = xstrdup (arg);
2012 strip_off_ending (tmp, strlen (tmp));
2013 if (tmp[0])
2014 opts->x_aux_base_name = tmp;
2015 else
2016 free (tmp);
2018 break;
2020 case OPT_d:
2021 decode_d_option (arg, opts, loc, dc);
2022 break;
2024 case OPT_fcall_used_:
2025 case OPT_fcall_saved_:
2026 /* Deferred. */
2027 break;
2029 case OPT_fdbg_cnt_:
2030 /* Deferred. */
2031 break;
2033 case OPT_fdbg_cnt_list:
2034 /* Deferred. */
2035 opts->x_exit_after_options = true;
2036 break;
2038 case OPT_fdebug_prefix_map_:
2039 /* Deferred. */
2040 break;
2042 case OPT_fdiagnostics_show_location_:
2043 diagnostic_prefixing_rule (dc) = (diagnostic_prefixing_rule_t) value;
2044 break;
2046 case OPT_fdiagnostics_show_caret:
2047 dc->show_caret = value;
2048 break;
2050 case OPT_fdiagnostics_color_:
2051 diagnostic_color_init (dc, value);
2052 break;
2054 case OPT_fdiagnostics_parseable_fixits:
2055 dc->parseable_fixits_p = value;
2056 break;
2058 case OPT_fdiagnostics_show_option:
2059 dc->show_option_requested = value;
2060 break;
2062 case OPT_fdump_:
2063 /* Deferred. */
2064 break;
2066 case OPT_ffast_math:
2067 set_fast_math_flags (opts, value);
2068 break;
2070 case OPT_funsafe_math_optimizations:
2071 set_unsafe_math_optimizations_flags (opts, value);
2072 break;
2074 case OPT_ffixed_:
2075 /* Deferred. */
2076 break;
2078 case OPT_finline_limit_:
2079 set_param_value ("max-inline-insns-single", value / 2,
2080 opts->x_param_values, opts_set->x_param_values);
2081 set_param_value ("max-inline-insns-auto", value / 2,
2082 opts->x_param_values, opts_set->x_param_values);
2083 break;
2085 case OPT_finstrument_functions_exclude_function_list_:
2086 add_comma_separated_to_vector
2087 (&opts->x_flag_instrument_functions_exclude_functions, arg);
2088 break;
2090 case OPT_finstrument_functions_exclude_file_list_:
2091 add_comma_separated_to_vector
2092 (&opts->x_flag_instrument_functions_exclude_files, arg);
2093 break;
2095 case OPT_fmessage_length_:
2096 pp_set_line_maximum_length (dc->printer, value);
2097 diagnostic_set_caret_max_width (dc, value);
2098 break;
2100 case OPT_fopt_info:
2101 case OPT_fopt_info_:
2102 /* Deferred. */
2103 break;
2105 case OPT_foffload_:
2107 const char *p = arg;
2108 opts->x_flag_disable_hsa = true;
2109 while (*p != 0)
2111 const char *comma = strchr (p, ',');
2113 if ((strncmp (p, "disable", 7) == 0)
2114 && (p[7] == ',' || p[7] == '\0'))
2116 opts->x_flag_disable_hsa = true;
2117 break;
2120 if ((strncmp (p, "hsa", 3) == 0)
2121 && (p[3] == ',' || p[3] == '\0'))
2123 #ifdef ENABLE_HSA
2124 opts->x_flag_disable_hsa = false;
2125 #else
2126 sorry ("HSA has not been enabled during configuration");
2127 #endif
2129 if (!comma)
2130 break;
2131 p = comma + 1;
2133 break;
2136 #ifndef ACCEL_COMPILER
2137 case OPT_foffload_abi_:
2138 error_at (loc, "%<-foffload-abi%> option can be specified only for "
2139 "offload compiler");
2140 break;
2141 #endif
2143 case OPT_fpack_struct_:
2144 if (value <= 0 || (value & (value - 1)) || value > 16)
2145 error_at (loc,
2146 "structure alignment must be a small power of two, not %d",
2147 value);
2148 else
2149 opts->x_initial_max_fld_align = value;
2150 break;
2152 case OPT_fplugin_:
2153 case OPT_fplugin_arg_:
2154 /* Deferred. */
2155 break;
2157 case OPT_fprofile_use_:
2158 opts->x_profile_data_prefix = xstrdup (arg);
2159 opts->x_flag_profile_use = true;
2160 value = true;
2161 /* No break here - do -fprofile-use processing. */
2162 /* FALLTHRU */
2163 case OPT_fprofile_use:
2164 enable_fdo_optimizations (opts, opts_set, value);
2165 if (!opts_set->x_flag_profile_reorder_functions)
2166 opts->x_flag_profile_reorder_functions = value;
2167 /* Indirect call profiling should do all useful transformations
2168 speculative devirtualization does. */
2169 if (!opts_set->x_flag_devirtualize_speculatively
2170 && opts->x_flag_value_profile_transformations)
2171 opts->x_flag_devirtualize_speculatively = false;
2172 break;
2174 case OPT_fauto_profile_:
2175 opts->x_auto_profile_file = xstrdup (arg);
2176 opts->x_flag_auto_profile = true;
2177 value = true;
2178 /* No break here - do -fauto-profile processing. */
2179 /* FALLTHRU */
2180 case OPT_fauto_profile:
2181 enable_fdo_optimizations (opts, opts_set, value);
2182 if (!opts_set->x_flag_profile_correction)
2183 opts->x_flag_profile_correction = value;
2184 maybe_set_param_value (
2185 PARAM_EARLY_INLINER_MAX_ITERATIONS, 10,
2186 opts->x_param_values, opts_set->x_param_values);
2187 break;
2189 case OPT_fprofile_generate_:
2190 opts->x_profile_data_prefix = xstrdup (arg);
2191 value = true;
2192 /* No break here - do -fprofile-generate processing. */
2193 /* FALLTHRU */
2194 case OPT_fprofile_generate:
2195 if (!opts_set->x_profile_arc_flag)
2196 opts->x_profile_arc_flag = value;
2197 if (!opts_set->x_flag_profile_values)
2198 opts->x_flag_profile_values = value;
2199 if (!opts_set->x_flag_inline_functions)
2200 opts->x_flag_inline_functions = value;
2201 if (!opts_set->x_flag_ipa_bit_cp)
2202 opts->x_flag_ipa_bit_cp = value;
2203 /* FIXME: Instrumentation we insert makes ipa-reference bitmaps
2204 quadratic. Disable the pass until better memory representation
2205 is done. */
2206 if (!opts_set->x_flag_ipa_reference)
2207 opts->x_flag_ipa_reference = false;
2208 break;
2210 case OPT_ftree_vectorize:
2211 if (!opts_set->x_flag_tree_loop_vectorize)
2212 opts->x_flag_tree_loop_vectorize = value;
2213 if (!opts_set->x_flag_tree_slp_vectorize)
2214 opts->x_flag_tree_slp_vectorize = value;
2215 break;
2216 case OPT_fshow_column:
2217 dc->show_column = value;
2218 break;
2220 case OPT_frandom_seed:
2221 /* The real switch is -fno-random-seed. */
2222 if (value)
2223 return false;
2224 /* Deferred. */
2225 break;
2227 case OPT_frandom_seed_:
2228 /* Deferred. */
2229 break;
2231 case OPT_fsched_verbose_:
2232 #ifdef INSN_SCHEDULING
2233 /* Handled with Var in common.opt. */
2234 break;
2235 #else
2236 return false;
2237 #endif
2239 case OPT_fsched_stalled_insns_:
2240 opts->x_flag_sched_stalled_insns = value;
2241 if (opts->x_flag_sched_stalled_insns == 0)
2242 opts->x_flag_sched_stalled_insns = -1;
2243 break;
2245 case OPT_fsched_stalled_insns_dep_:
2246 opts->x_flag_sched_stalled_insns_dep = value;
2247 break;
2249 case OPT_fstack_check_:
2250 if (!strcmp (arg, "no"))
2251 opts->x_flag_stack_check = NO_STACK_CHECK;
2252 else if (!strcmp (arg, "generic"))
2253 /* This is the old stack checking method. */
2254 opts->x_flag_stack_check = STACK_CHECK_BUILTIN
2255 ? FULL_BUILTIN_STACK_CHECK
2256 : GENERIC_STACK_CHECK;
2257 else if (!strcmp (arg, "specific"))
2258 /* This is the new stack checking method. */
2259 opts->x_flag_stack_check = STACK_CHECK_BUILTIN
2260 ? FULL_BUILTIN_STACK_CHECK
2261 : STACK_CHECK_STATIC_BUILTIN
2262 ? STATIC_BUILTIN_STACK_CHECK
2263 : GENERIC_STACK_CHECK;
2264 else
2265 warning_at (loc, 0, "unknown stack check parameter %qs", arg);
2266 break;
2268 case OPT_fstack_limit:
2269 /* The real switch is -fno-stack-limit. */
2270 if (value)
2271 return false;
2272 /* Deferred. */
2273 break;
2275 case OPT_fstack_limit_register_:
2276 case OPT_fstack_limit_symbol_:
2277 /* Deferred. */
2278 break;
2280 case OPT_fstack_usage:
2281 opts->x_flag_stack_usage = value;
2282 opts->x_flag_stack_usage_info = value != 0;
2283 break;
2285 case OPT_g:
2286 set_debug_level (NO_DEBUG, DEFAULT_GDB_EXTENSIONS, arg, opts, opts_set,
2287 loc);
2288 break;
2290 case OPT_gcoff:
2291 set_debug_level (SDB_DEBUG, false, arg, opts, opts_set, loc);
2292 break;
2294 case OPT_gdwarf:
2295 if (arg && strlen (arg) != 0)
2297 error_at (loc, "%<-gdwarf%s%> is ambiguous; "
2298 "use %<-gdwarf-%s%> for DWARF version "
2299 "or %<-gdwarf -g%s%> for debug level", arg, arg, arg);
2300 break;
2302 else
2303 value = opts->x_dwarf_version;
2305 /* FALLTHRU */
2306 case OPT_gdwarf_:
2307 if (value < 2 || value > 5)
2308 error_at (loc, "dwarf version %d is not supported", value);
2309 else
2310 opts->x_dwarf_version = value;
2311 set_debug_level (DWARF2_DEBUG, false, "", opts, opts_set, loc);
2312 break;
2314 case OPT_gsplit_dwarf:
2315 set_debug_level (NO_DEBUG, DEFAULT_GDB_EXTENSIONS, "", opts, opts_set,
2316 loc);
2317 break;
2319 case OPT_ggdb:
2320 set_debug_level (NO_DEBUG, 2, arg, opts, opts_set, loc);
2321 break;
2323 case OPT_gstabs:
2324 case OPT_gstabs_:
2325 set_debug_level (DBX_DEBUG, code == OPT_gstabs_, arg, opts, opts_set,
2326 loc);
2327 break;
2329 case OPT_gvms:
2330 set_debug_level (VMS_DEBUG, false, arg, opts, opts_set, loc);
2331 break;
2333 case OPT_gxcoff:
2334 case OPT_gxcoff_:
2335 set_debug_level (XCOFF_DEBUG, code == OPT_gxcoff_, arg, opts, opts_set,
2336 loc);
2337 break;
2339 case OPT_gz:
2340 case OPT_gz_:
2341 /* Handled completely via specs. */
2342 break;
2344 case OPT_pedantic_errors:
2345 dc->pedantic_errors = 1;
2346 control_warning_option (OPT_Wpedantic, DK_ERROR, NULL, value,
2347 loc, lang_mask,
2348 handlers, opts, opts_set,
2349 dc);
2350 break;
2352 case OPT_flto:
2353 opts->x_flag_lto = value ? "" : NULL;
2354 break;
2356 case OPT_w:
2357 dc->dc_inhibit_warnings = true;
2358 break;
2360 case OPT_fmax_errors_:
2361 dc->max_errors = value;
2362 break;
2364 case OPT_fuse_ld_bfd:
2365 case OPT_fuse_ld_gold:
2366 case OPT_fuse_linker_plugin:
2367 /* No-op. Used by the driver and passed to us because it starts with f.*/
2368 break;
2370 case OPT_fwrapv:
2371 if (value)
2372 opts->x_flag_trapv = 0;
2373 break;
2375 case OPT_ftrapv:
2376 if (value)
2377 opts->x_flag_wrapv = 0;
2378 break;
2380 case OPT_fipa_icf:
2381 opts->x_flag_ipa_icf_functions = value;
2382 opts->x_flag_ipa_icf_variables = value;
2383 break;
2385 default:
2386 /* If the flag was handled in a standard way, assume the lack of
2387 processing here is intentional. */
2388 gcc_assert (option_flag_var (scode, opts));
2389 break;
2392 common_handle_option_auto (opts, opts_set, decoded, lang_mask, kind,
2393 loc, handlers, dc);
2394 return true;
2397 /* Handle --param NAME=VALUE. */
2398 static void
2399 handle_param (struct gcc_options *opts, struct gcc_options *opts_set,
2400 location_t loc, const char *carg)
2402 char *equal, *arg;
2403 int value;
2405 arg = xstrdup (carg);
2406 equal = strchr (arg, '=');
2407 if (!equal)
2408 error_at (loc, "%s: --param arguments should be of the form NAME=VALUE",
2409 arg);
2410 else
2412 *equal = '\0';
2414 enum compiler_param index;
2415 if (!find_param (arg, &index))
2417 const char *suggestion = find_param_fuzzy (arg);
2418 if (suggestion)
2419 error_at (loc, "invalid --param name %qs; did you mean %qs?",
2420 arg, suggestion);
2421 else
2422 error_at (loc, "invalid --param name %qs", arg);
2424 else
2426 if (!param_string_value_p (index, equal + 1, &value))
2427 value = integral_argument (equal + 1);
2429 if (value == -1)
2430 error_at (loc, "invalid --param value %qs", equal + 1);
2431 else
2432 set_param_value (arg, value,
2433 opts->x_param_values, opts_set->x_param_values);
2437 free (arg);
2440 /* Used to set the level of strict aliasing warnings in OPTS,
2441 when no level is specified (i.e., when -Wstrict-aliasing, and not
2442 -Wstrict-aliasing=level was given).
2443 ONOFF is assumed to take value 1 when -Wstrict-aliasing is specified,
2444 and 0 otherwise. After calling this function, wstrict_aliasing will be
2445 set to the default value of -Wstrict_aliasing=level, currently 3. */
2446 static void
2447 set_Wstrict_aliasing (struct gcc_options *opts, int onoff)
2449 gcc_assert (onoff == 0 || onoff == 1);
2450 if (onoff != 0)
2451 opts->x_warn_strict_aliasing = 3;
2452 else
2453 opts->x_warn_strict_aliasing = 0;
2456 /* The following routines are useful in setting all the flags that
2457 -ffast-math and -fno-fast-math imply. */
2458 static void
2459 set_fast_math_flags (struct gcc_options *opts, int set)
2461 if (!opts->frontend_set_flag_unsafe_math_optimizations)
2463 opts->x_flag_unsafe_math_optimizations = set;
2464 set_unsafe_math_optimizations_flags (opts, set);
2466 if (!opts->frontend_set_flag_finite_math_only)
2467 opts->x_flag_finite_math_only = set;
2468 if (!opts->frontend_set_flag_errno_math)
2469 opts->x_flag_errno_math = !set;
2470 if (set)
2472 if (opts->frontend_set_flag_excess_precision_cmdline
2473 == EXCESS_PRECISION_DEFAULT)
2474 opts->x_flag_excess_precision_cmdline
2475 = set ? EXCESS_PRECISION_FAST : EXCESS_PRECISION_DEFAULT;
2476 if (!opts->frontend_set_flag_signaling_nans)
2477 opts->x_flag_signaling_nans = 0;
2478 if (!opts->frontend_set_flag_rounding_math)
2479 opts->x_flag_rounding_math = 0;
2480 if (!opts->frontend_set_flag_cx_limited_range)
2481 opts->x_flag_cx_limited_range = 1;
2485 /* When -funsafe-math-optimizations is set the following
2486 flags are set as well. */
2487 static void
2488 set_unsafe_math_optimizations_flags (struct gcc_options *opts, int set)
2490 if (!opts->frontend_set_flag_trapping_math)
2491 opts->x_flag_trapping_math = !set;
2492 if (!opts->frontend_set_flag_signed_zeros)
2493 opts->x_flag_signed_zeros = !set;
2494 if (!opts->frontend_set_flag_associative_math)
2495 opts->x_flag_associative_math = set;
2496 if (!opts->frontend_set_flag_reciprocal_math)
2497 opts->x_flag_reciprocal_math = set;
2500 /* Return true iff flags in OPTS are set as if -ffast-math. */
2501 bool
2502 fast_math_flags_set_p (const struct gcc_options *opts)
2504 return (!opts->x_flag_trapping_math
2505 && opts->x_flag_unsafe_math_optimizations
2506 && opts->x_flag_finite_math_only
2507 && !opts->x_flag_signed_zeros
2508 && !opts->x_flag_errno_math
2509 && opts->x_flag_excess_precision_cmdline
2510 == EXCESS_PRECISION_FAST);
2513 /* Return true iff flags are set as if -ffast-math but using the flags stored
2514 in the struct cl_optimization structure. */
2515 bool
2516 fast_math_flags_struct_set_p (struct cl_optimization *opt)
2518 return (!opt->x_flag_trapping_math
2519 && opt->x_flag_unsafe_math_optimizations
2520 && opt->x_flag_finite_math_only
2521 && !opt->x_flag_signed_zeros
2522 && !opt->x_flag_errno_math);
2525 /* Handle a debug output -g switch for options OPTS
2526 (OPTS_SET->x_write_symbols storing whether a debug type was passed
2527 explicitly), location LOC. EXTENDED is true or false to support
2528 extended output (2 is special and means "-ggdb" was given). */
2529 static void
2530 set_debug_level (enum debug_info_type type, int extended, const char *arg,
2531 struct gcc_options *opts, struct gcc_options *opts_set,
2532 location_t loc)
2534 opts->x_use_gnu_debug_info_extensions = extended;
2536 if (type == NO_DEBUG)
2538 if (opts->x_write_symbols == NO_DEBUG)
2540 opts->x_write_symbols = PREFERRED_DEBUGGING_TYPE;
2542 if (extended == 2)
2544 #if defined DWARF2_DEBUGGING_INFO || defined DWARF2_LINENO_DEBUGGING_INFO
2545 opts->x_write_symbols = DWARF2_DEBUG;
2546 #elif defined DBX_DEBUGGING_INFO
2547 opts->x_write_symbols = DBX_DEBUG;
2548 #endif
2551 if (opts->x_write_symbols == NO_DEBUG)
2552 warning_at (loc, 0, "target system does not support debug output");
2555 else
2557 /* Does it conflict with an already selected type? */
2558 if (opts_set->x_write_symbols != NO_DEBUG
2559 && opts->x_write_symbols != NO_DEBUG
2560 && type != opts->x_write_symbols)
2561 error_at (loc, "debug format %qs conflicts with prior selection",
2562 debug_type_names[type]);
2563 opts->x_write_symbols = type;
2564 opts_set->x_write_symbols = type;
2567 /* A debug flag without a level defaults to level 2.
2568 If off or at level 1, set it to level 2, but if already
2569 at level 3, don't lower it. */
2570 if (*arg == '\0')
2572 if (opts->x_debug_info_level < DINFO_LEVEL_NORMAL)
2573 opts->x_debug_info_level = DINFO_LEVEL_NORMAL;
2575 else
2577 int argval = integral_argument (arg);
2578 if (argval == -1)
2579 error_at (loc, "unrecognized debug output level %qs", arg);
2580 else if (argval > 3)
2581 error_at (loc, "debug output level %qs is too high", arg);
2582 else
2583 opts->x_debug_info_level = (enum debug_info_levels) argval;
2587 /* Arrange to dump core on error for diagnostic context DC. (The
2588 regular error message is still printed first, except in the case of
2589 abort ().) */
2591 static void
2592 setup_core_dumping (diagnostic_context *dc)
2594 #ifdef SIGABRT
2595 signal (SIGABRT, SIG_DFL);
2596 #endif
2597 #if defined(HAVE_SETRLIMIT)
2599 struct rlimit rlim;
2600 if (getrlimit (RLIMIT_CORE, &rlim) != 0)
2601 fatal_error (input_location, "getting core file size maximum limit: %m");
2602 rlim.rlim_cur = rlim.rlim_max;
2603 if (setrlimit (RLIMIT_CORE, &rlim) != 0)
2604 fatal_error (input_location,
2605 "setting core file size limit to maximum: %m");
2607 #endif
2608 diagnostic_abort_on_error (dc);
2611 /* Parse a -d<ARG> command line switch for OPTS, location LOC,
2612 diagnostic context DC. */
2614 static void
2615 decode_d_option (const char *arg, struct gcc_options *opts,
2616 location_t loc, diagnostic_context *dc)
2618 int c;
2620 while (*arg)
2621 switch (c = *arg++)
2623 case 'A':
2624 opts->x_flag_debug_asm = 1;
2625 break;
2626 case 'p':
2627 opts->x_flag_print_asm_name = 1;
2628 break;
2629 case 'P':
2630 opts->x_flag_dump_rtl_in_asm = 1;
2631 opts->x_flag_print_asm_name = 1;
2632 break;
2633 case 'x':
2634 opts->x_rtl_dump_and_exit = 1;
2635 break;
2636 case 'D': /* These are handled by the preprocessor. */
2637 case 'I':
2638 case 'M':
2639 case 'N':
2640 case 'U':
2641 break;
2642 case 'H':
2643 setup_core_dumping (dc);
2644 break;
2645 case 'a':
2646 opts->x_flag_dump_all_passed = true;
2647 break;
2649 default:
2650 warning_at (loc, 0, "unrecognized gcc debugging option: %c", c);
2651 break;
2655 /* Enable (or disable if VALUE is 0) a warning option ARG (language
2656 mask LANG_MASK, option handlers HANDLERS) as an error for option
2657 structures OPTS and OPTS_SET, diagnostic context DC (possibly
2658 NULL), location LOC. This is used by -Werror=. */
2660 static void
2661 enable_warning_as_error (const char *arg, int value, unsigned int lang_mask,
2662 const struct cl_option_handlers *handlers,
2663 struct gcc_options *opts,
2664 struct gcc_options *opts_set,
2665 location_t loc, diagnostic_context *dc)
2667 char *new_option;
2668 int option_index;
2670 new_option = XNEWVEC (char, strlen (arg) + 2);
2671 new_option[0] = 'W';
2672 strcpy (new_option + 1, arg);
2673 option_index = find_opt (new_option, lang_mask);
2674 if (option_index == OPT_SPECIAL_unknown)
2675 error_at (loc, "-Werror=%s: no option -%s", arg, new_option);
2676 else if (!(cl_options[option_index].flags & CL_WARNING))
2677 error_at (loc, "-Werror=%s: -%s is not an option that controls warnings",
2678 arg, new_option);
2679 else
2681 const diagnostic_t kind = value ? DK_ERROR : DK_WARNING;
2682 const char *arg = NULL;
2684 if (cl_options[option_index].flags & CL_JOINED)
2685 arg = new_option + cl_options[option_index].opt_len;
2686 control_warning_option (option_index, (int) kind, arg, value,
2687 loc, lang_mask,
2688 handlers, opts, opts_set, dc);
2690 free (new_option);
2693 /* Return malloced memory for the name of the option OPTION_INDEX
2694 which enabled a diagnostic (context CONTEXT), originally of type
2695 ORIG_DIAG_KIND but possibly converted to DIAG_KIND by options such
2696 as -Werror. */
2698 char *
2699 option_name (diagnostic_context *context, int option_index,
2700 diagnostic_t orig_diag_kind, diagnostic_t diag_kind)
2702 if (option_index)
2704 /* A warning classified as an error. */
2705 if ((orig_diag_kind == DK_WARNING || orig_diag_kind == DK_PEDWARN)
2706 && diag_kind == DK_ERROR)
2707 return concat (cl_options[OPT_Werror_].opt_text,
2708 /* Skip over "-W". */
2709 cl_options[option_index].opt_text + 2,
2710 NULL);
2711 /* A warning with option. */
2712 else
2713 return xstrdup (cl_options[option_index].opt_text);
2715 /* A warning without option classified as an error. */
2716 else if ((orig_diag_kind == DK_WARNING || orig_diag_kind == DK_PEDWARN
2717 || diag_kind == DK_WARNING)
2718 && context->warning_as_error_requested)
2719 return xstrdup (cl_options[OPT_Werror].opt_text);
2720 else
2721 return NULL;