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