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