* MAINTAINERS: Updated my email address.
[official-gcc.git] / gcc / opts.c
blobb2019c67a38cc39213a1fd377d00ad880342078d
1 /* Command line option handling.
2 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
4 Contributed by Neil Booth.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "intl.h"
25 #include "coretypes.h"
26 #include "tm.h"
27 #include "tree.h"
28 #include "rtl.h"
29 #include "expr.h"
30 #include "ggc.h"
31 #include "output.h"
32 #include "langhooks.h"
33 #include "opts.h"
34 #include "options.h"
35 #include "flags.h"
36 #include "toplev.h"
37 #include "params.h"
38 #include "diagnostic.h"
39 #include "opts-diagnostic.h"
40 #include "insn-attr.h" /* For INSN_SCHEDULING. */
41 #include "target.h"
42 #include "tree-pass.h"
43 #include "dbgcnt.h"
44 #include "debug.h"
45 #include "plugin.h"
46 #include "except.h"
47 #include "lto-streamer.h"
49 /* True if we should exit after parsing options. */
50 bool exit_after_options;
52 /* True to warn about any objects definitions whose size is larger
53 than N bytes. Also want about function definitions whose returned
54 values are larger than N bytes, where N is `larger_than_size'. */
55 bool warn_larger_than;
56 HOST_WIDE_INT larger_than_size;
58 /* True to warn about any function whose frame size is larger
59 than N bytes. */
60 bool warn_frame_larger_than;
61 HOST_WIDE_INT frame_larger_than_size;
63 /* Type(s) of debugging information we are producing (if any). See
64 flags.h for the definitions of the different possible types of
65 debugging information. */
66 enum debug_info_type write_symbols = NO_DEBUG;
68 /* Level of debugging information we are producing. See flags.h for
69 the definitions of the different possible levels. */
70 enum debug_info_level debug_info_level = DINFO_LEVEL_NONE;
72 /* A major contribution to object and executable size is debug
73 information size. A major contribution to debug information size
74 is struct descriptions replicated in several object files. The
75 following flags attempt to reduce this information. The basic
76 idea is to not emit struct debugging information in the current
77 compilation unit when that information will be generated by
78 another compilation unit.
80 Debug information for a struct defined in the current source
81 file should be generated in the object file. Likewise the
82 debug information for a struct defined in a header should be
83 generated in the object file of the corresponding source file.
84 Both of these case are handled when the base name of the file of
85 the struct definition matches the base name of the source file
86 of the current compilation unit. This matching emits minimal
87 struct debugging information.
89 The base file name matching rule above will fail to emit debug
90 information for structs defined in system headers. So a second
91 category of files includes system headers in addition to files
92 with matching bases.
94 The remaining types of files are library headers and application
95 headers. We cannot currently distinguish these two types. */
97 enum debug_struct_file
99 DINFO_STRUCT_FILE_NONE, /* Debug no structs. */
100 DINFO_STRUCT_FILE_BASE, /* Debug structs defined in files with the
101 same base name as the compilation unit. */
102 DINFO_STRUCT_FILE_SYS, /* Also debug structs defined in system
103 header files. */
104 DINFO_STRUCT_FILE_ANY /* Debug structs defined in all files. */
107 /* Generic structs (e.g. templates not explicitly specialized)
108 may not have a compilation unit associated with them, and so
109 may need to be treated differently from ordinary structs.
111 Structs only handled by reference (indirectly), will also usually
112 not need as much debugging information. */
114 static enum debug_struct_file debug_struct_ordinary[DINFO_USAGE_NUM_ENUMS]
115 = { DINFO_STRUCT_FILE_ANY, DINFO_STRUCT_FILE_ANY, DINFO_STRUCT_FILE_ANY };
116 static enum debug_struct_file debug_struct_generic[DINFO_USAGE_NUM_ENUMS]
117 = { DINFO_STRUCT_FILE_ANY, DINFO_STRUCT_FILE_ANY, DINFO_STRUCT_FILE_ANY };
119 /* Run the second compilation of -fcompare-debug. Not defined using
120 Var in common.opt because this is used in Ada code and so must be
121 an actual variable not a macro. */
122 int flag_compare_debug;
124 /* Parse the -femit-struct-debug-detailed option value
125 and set the flag variables. */
127 #define MATCH( prefix, string ) \
128 ((strncmp (prefix, string, sizeof prefix - 1) == 0) \
129 ? ((string += sizeof prefix - 1), 1) : 0)
131 void
132 set_struct_debug_option (const char *spec)
134 /* various labels for comparison */
135 static char dfn_lbl[] = "dfn:", dir_lbl[] = "dir:", ind_lbl[] = "ind:";
136 static char ord_lbl[] = "ord:", gen_lbl[] = "gen:";
137 static char none_lbl[] = "none", any_lbl[] = "any";
138 static char base_lbl[] = "base", sys_lbl[] = "sys";
140 enum debug_struct_file files = DINFO_STRUCT_FILE_ANY;
141 /* Default is to apply to as much as possible. */
142 enum debug_info_usage usage = DINFO_USAGE_NUM_ENUMS;
143 int ord = 1, gen = 1;
145 /* What usage? */
146 if (MATCH (dfn_lbl, spec))
147 usage = DINFO_USAGE_DFN;
148 else if (MATCH (dir_lbl, spec))
149 usage = DINFO_USAGE_DIR_USE;
150 else if (MATCH (ind_lbl, spec))
151 usage = DINFO_USAGE_IND_USE;
153 /* Generics or not? */
154 if (MATCH (ord_lbl, spec))
155 gen = 0;
156 else if (MATCH (gen_lbl, spec))
157 ord = 0;
159 /* What allowable environment? */
160 if (MATCH (none_lbl, spec))
161 files = DINFO_STRUCT_FILE_NONE;
162 else if (MATCH (any_lbl, spec))
163 files = DINFO_STRUCT_FILE_ANY;
164 else if (MATCH (sys_lbl, spec))
165 files = DINFO_STRUCT_FILE_SYS;
166 else if (MATCH (base_lbl, spec))
167 files = DINFO_STRUCT_FILE_BASE;
168 else
169 error ("argument %qs to %<-femit-struct-debug-detailed%> not recognized",
170 spec);
172 /* Effect the specification. */
173 if (usage == DINFO_USAGE_NUM_ENUMS)
175 if (ord)
177 debug_struct_ordinary[DINFO_USAGE_DFN] = files;
178 debug_struct_ordinary[DINFO_USAGE_DIR_USE] = files;
179 debug_struct_ordinary[DINFO_USAGE_IND_USE] = files;
181 if (gen)
183 debug_struct_generic[DINFO_USAGE_DFN] = files;
184 debug_struct_generic[DINFO_USAGE_DIR_USE] = files;
185 debug_struct_generic[DINFO_USAGE_IND_USE] = files;
188 else
190 if (ord)
191 debug_struct_ordinary[usage] = files;
192 if (gen)
193 debug_struct_generic[usage] = files;
196 if (*spec == ',')
197 set_struct_debug_option (spec+1);
198 else
200 /* No more -femit-struct-debug-detailed specifications.
201 Do final checks. */
202 if (*spec != '\0')
203 error ("argument %qs to %<-femit-struct-debug-detailed%> unknown",
204 spec);
205 if (debug_struct_ordinary[DINFO_USAGE_DIR_USE]
206 < debug_struct_ordinary[DINFO_USAGE_IND_USE]
207 || debug_struct_generic[DINFO_USAGE_DIR_USE]
208 < debug_struct_generic[DINFO_USAGE_IND_USE])
209 error ("%<-femit-struct-debug-detailed=dir:...%> must allow at least"
210 " as much as %<-femit-struct-debug-detailed=ind:...%>");
214 /* Find the base name of a path, stripping off both directories and
215 a single final extension. */
216 static int
217 base_of_path (const char *path, const char **base_out)
219 const char *base = path;
220 const char *dot = 0;
221 const char *p = path;
222 char c = *p;
223 while (c)
225 if (IS_DIR_SEPARATOR(c))
227 base = p + 1;
228 dot = 0;
230 else if (c == '.')
231 dot = p;
232 c = *++p;
234 if (!dot)
235 dot = p;
236 *base_out = base;
237 return dot - base;
240 /* Match the base name of a file to the base name of a compilation unit. */
242 static const char *main_input_basename;
243 static int main_input_baselength;
245 static int
246 matches_main_base (const char *path)
248 /* Cache the last query. */
249 static const char *last_path = NULL;
250 static int last_match = 0;
251 if (path != last_path)
253 const char *base;
254 int length = base_of_path (path, &base);
255 last_path = path;
256 last_match = (length == main_input_baselength
257 && memcmp (base, main_input_basename, length) == 0);
259 return last_match;
262 #ifdef DEBUG_DEBUG_STRUCT
264 static int
265 dump_struct_debug (tree type, enum debug_info_usage usage,
266 enum debug_struct_file criterion, int generic,
267 int matches, int result)
269 /* Find the type name. */
270 tree type_decl = TYPE_STUB_DECL (type);
271 tree t = type_decl;
272 const char *name = 0;
273 if (TREE_CODE (t) == TYPE_DECL)
274 t = DECL_NAME (t);
275 if (t)
276 name = IDENTIFIER_POINTER (t);
278 fprintf (stderr, " struct %d %s %s %s %s %d %p %s\n",
279 criterion,
280 DECL_IN_SYSTEM_HEADER (type_decl) ? "sys" : "usr",
281 matches ? "bas" : "hdr",
282 generic ? "gen" : "ord",
283 usage == DINFO_USAGE_DFN ? ";" :
284 usage == DINFO_USAGE_DIR_USE ? "." : "*",
285 result,
286 (void*) type_decl, name);
287 return result;
289 #define DUMP_GSTRUCT(type, usage, criterion, generic, matches, result) \
290 dump_struct_debug (type, usage, criterion, generic, matches, result)
292 #else
294 #define DUMP_GSTRUCT(type, usage, criterion, generic, matches, result) \
295 (result)
297 #endif
300 bool
301 should_emit_struct_debug (tree type, enum debug_info_usage usage)
303 enum debug_struct_file criterion;
304 tree type_decl;
305 bool generic = lang_hooks.types.generic_p (type);
307 if (generic)
308 criterion = debug_struct_generic[usage];
309 else
310 criterion = debug_struct_ordinary[usage];
312 if (criterion == DINFO_STRUCT_FILE_NONE)
313 return DUMP_GSTRUCT (type, usage, criterion, generic, false, false);
314 if (criterion == DINFO_STRUCT_FILE_ANY)
315 return DUMP_GSTRUCT (type, usage, criterion, generic, false, true);
317 type_decl = TYPE_STUB_DECL (type);
319 if (criterion == DINFO_STRUCT_FILE_SYS && DECL_IN_SYSTEM_HEADER (type_decl))
320 return DUMP_GSTRUCT (type, usage, criterion, generic, false, true);
322 if (matches_main_base (DECL_SOURCE_FILE (type_decl)))
323 return DUMP_GSTRUCT (type, usage, criterion, generic, true, true);
324 return DUMP_GSTRUCT (type, usage, criterion, generic, false, false);
327 /* Nonzero means use GNU-only extensions in the generated symbolic
328 debugging information. Currently, this only has an effect when
329 write_symbols is set to DBX_DEBUG, XCOFF_DEBUG, or DWARF_DEBUG. */
330 bool use_gnu_debug_info_extensions;
332 /* The default visibility for all symbols (unless overridden) */
333 enum symbol_visibility default_visibility = VISIBILITY_DEFAULT;
335 /* Global visibility options. */
336 struct visibility_flags visibility_options;
338 /* What to print when a switch has no documentation. */
339 static const char undocumented_msg[] = N_("This switch lacks documentation");
341 /* Functions excluded from profiling. */
343 typedef char *char_p; /* For DEF_VEC_P. */
344 DEF_VEC_P(char_p);
345 DEF_VEC_ALLOC_P(char_p,heap);
347 static VEC(char_p,heap) *flag_instrument_functions_exclude_functions;
348 static VEC(char_p,heap) *flag_instrument_functions_exclude_files;
350 typedef const char *const_char_p; /* For DEF_VEC_P. */
351 DEF_VEC_P(const_char_p);
352 DEF_VEC_ALLOC_P(const_char_p,heap);
354 static VEC(const_char_p,heap) *ignored_options;
356 /* Input file names. */
357 const char **in_fnames;
358 unsigned num_in_fnames;
360 static bool common_handle_option (struct gcc_options *opts,
361 struct gcc_options *opts_set,
362 const struct cl_decoded_option *decoded,
363 unsigned int lang_mask, int kind,
364 const struct cl_option_handlers *handlers);
365 static void handle_param (struct gcc_options *opts,
366 struct gcc_options *opts_set, const char *carg);
367 static char *write_langs (unsigned int lang_mask);
368 static void complain_wrong_lang (const struct cl_decoded_option *,
369 unsigned int lang_mask);
370 static void set_debug_level (enum debug_info_type type, int extended,
371 const char *arg);
372 static void set_fast_math_flags (int set);
373 static void set_unsafe_math_optimizations_flags (int set);
375 /* Return a malloced slash-separated list of languages in MASK. */
376 static char *
377 write_langs (unsigned int mask)
379 unsigned int n = 0, len = 0;
380 const char *lang_name;
381 char *result;
383 for (n = 0; (lang_name = lang_names[n]) != 0; n++)
384 if (mask & (1U << n))
385 len += strlen (lang_name) + 1;
387 result = XNEWVEC (char, len);
388 len = 0;
389 for (n = 0; (lang_name = lang_names[n]) != 0; n++)
390 if (mask & (1U << n))
392 if (len)
393 result[len++] = '/';
394 strcpy (result + len, lang_name);
395 len += strlen (lang_name);
398 result[len] = 0;
400 return result;
403 /* Complain that switch DECODED does not apply to this front end (mask
404 LANG_MASK). */
405 static void
406 complain_wrong_lang (const struct cl_decoded_option *decoded,
407 unsigned int lang_mask)
409 const struct cl_option *option = &cl_options[decoded->opt_index];
410 const char *text = decoded->orig_option_with_args_text;
411 char *ok_langs = NULL, *bad_lang = NULL;
412 unsigned int opt_flags = option->flags;
414 if (!lang_hooks.complain_wrong_lang_p (option))
415 return;
417 opt_flags &= ((1U << cl_lang_count) - 1) | CL_DRIVER;
418 if (opt_flags != CL_DRIVER)
419 ok_langs = write_langs (opt_flags);
420 if (lang_mask != CL_DRIVER)
421 bad_lang = write_langs (lang_mask);
423 if (opt_flags == CL_DRIVER)
424 error ("command line option %qs is valid for the driver but not for %s",
425 text, bad_lang);
426 else if (lang_mask == CL_DRIVER)
427 gcc_unreachable ();
428 else
429 /* Eventually this should become a hard error IMO. */
430 warning (0, "command line option %qs is valid for %s but not for %s",
431 text, ok_langs, bad_lang);
433 free (ok_langs);
434 free (bad_lang);
437 /* Buffer the unknown option described by the string OPT. Currently,
438 we only complain about unknown -Wno-* options if they may have
439 prevented a diagnostic. Otherwise, we just ignore them.
440 Note that if we do complain, it is only as a warning, not an error;
441 passing the compiler an unrecognised -Wno-* option should never
442 change whether the compilation succeeds or fails. */
444 static void postpone_unknown_option_warning(const char *opt)
446 VEC_safe_push (const_char_p, heap, ignored_options, opt);
449 /* Produce a warning for each option previously buffered. */
451 void print_ignored_options (void)
453 location_t saved_loc = input_location;
455 input_location = 0;
457 while (!VEC_empty (const_char_p, ignored_options))
459 const char *opt;
460 opt = VEC_pop (const_char_p, ignored_options);
461 warning (0, "unrecognized command line option \"%s\"", opt);
464 input_location = saved_loc;
467 /* Handle an unknown option DECODED, returning true if an error should be
468 given. */
470 static bool
471 unknown_option_callback (const struct cl_decoded_option *decoded)
473 const char *opt = decoded->arg;
475 if (opt[1] == 'W' && opt[2] == 'n' && opt[3] == 'o' && opt[4] == '-'
476 && !(decoded->errors & CL_ERR_NEGATIVE))
478 /* We don't generate warnings for unknown -Wno-* options unless
479 we issue diagnostics. */
480 postpone_unknown_option_warning (opt);
481 return false;
483 else
484 return true;
487 /* Note that an option DECODED has been successfully handled with a
488 handler for mask MASK. */
490 static void
491 post_handling_callback (const struct cl_decoded_option *decoded ATTRIBUTE_UNUSED,
492 unsigned int mask ATTRIBUTE_UNUSED)
494 #ifdef ENABLE_LTO
495 lto_register_user_option (decoded->opt_index, decoded->arg,
496 decoded->value, mask);
497 #endif
500 /* Handle a front-end option; arguments and return value as for
501 handle_option. */
503 static bool
504 lang_handle_option (struct gcc_options *opts,
505 struct gcc_options *opts_set,
506 const struct cl_decoded_option *decoded,
507 unsigned int lang_mask ATTRIBUTE_UNUSED, int kind,
508 const struct cl_option_handlers *handlers)
510 gcc_assert (opts == &global_options);
511 gcc_assert (opts_set == &global_options_set);
512 gcc_assert (decoded->canonical_option_num_elements <= 2);
513 return lang_hooks.handle_option (decoded->opt_index, decoded->arg,
514 decoded->value, kind, handlers);
517 /* Handle a back-end option; arguments and return value as for
518 handle_option. */
520 static bool
521 target_handle_option (struct gcc_options *opts,
522 struct gcc_options *opts_set,
523 const struct cl_decoded_option *decoded,
524 unsigned int lang_mask ATTRIBUTE_UNUSED, int kind,
525 const struct cl_option_handlers *handlers ATTRIBUTE_UNUSED)
527 gcc_assert (opts == &global_options);
528 gcc_assert (opts_set == &global_options_set);
529 gcc_assert (decoded->canonical_option_num_elements <= 2);
530 gcc_assert (kind == DK_UNSPECIFIED);
531 return targetm.handle_option (decoded->opt_index, decoded->arg,
532 decoded->value);
535 /* Handle FILENAME from the command line. */
536 static void
537 add_input_filename (const char *filename)
539 num_in_fnames++;
540 in_fnames = XRESIZEVEC (const char *, in_fnames, num_in_fnames);
541 in_fnames[num_in_fnames - 1] = filename;
544 /* Add comma-separated strings to a char_p vector. */
546 static void
547 add_comma_separated_to_vector (VEC(char_p,heap) **pvec, const char* arg)
549 char *tmp;
550 char *r;
551 char *w;
552 char *token_start;
554 /* We never free this string. */
555 tmp = xstrdup (arg);
557 r = tmp;
558 w = tmp;
559 token_start = tmp;
561 while (*r != '\0')
563 if (*r == ',')
565 *w++ = '\0';
566 ++r;
567 VEC_safe_push (char_p, heap, *pvec, token_start);
568 token_start = w;
570 if (*r == '\\' && r[1] == ',')
572 *w++ = ',';
573 r += 2;
575 else
576 *w++ = *r++;
578 if (*token_start != '\0')
579 VEC_safe_push (char_p, heap, *pvec, token_start);
582 /* Return whether we should exclude FNDECL from instrumentation. */
584 bool
585 flag_instrument_functions_exclude_p (tree fndecl)
587 if (VEC_length (char_p, flag_instrument_functions_exclude_functions) > 0)
589 const char *name;
590 int i;
591 char *s;
593 name = lang_hooks.decl_printable_name (fndecl, 0);
594 FOR_EACH_VEC_ELT (char_p, flag_instrument_functions_exclude_functions,
595 i, s)
596 if (strstr (name, s) != NULL)
597 return true;
600 if (VEC_length (char_p, flag_instrument_functions_exclude_files) > 0)
602 const char *name;
603 int i;
604 char *s;
606 name = DECL_SOURCE_FILE (fndecl);
607 FOR_EACH_VEC_ELT (char_p, flag_instrument_functions_exclude_files, i, s)
608 if (strstr (name, s) != NULL)
609 return true;
612 return false;
616 /* Handle the vector of command line options, storing the results of
617 processing DECODED_OPTIONS and DECODED_OPTIONS_COUNT in OPTS and
618 OPTS_SET. LANG_MASK contains has a single bit set representing the
619 current language. HANDLERS describes what functions to call for
620 the options. */
621 static void
622 read_cmdline_options (struct gcc_options *opts, struct gcc_options *opts_set,
623 struct cl_decoded_option *decoded_options,
624 unsigned int decoded_options_count,
625 unsigned int lang_mask,
626 const struct cl_option_handlers *handlers)
628 unsigned int i;
630 for (i = 1; i < decoded_options_count; i++)
632 if (decoded_options[i].opt_index == OPT_SPECIAL_input_file)
634 /* Input files should only ever appear on the main command
635 line. */
636 gcc_assert (opts == &global_options);
637 gcc_assert (opts_set == &global_options_set);
639 if (main_input_filename == NULL)
641 main_input_filename = decoded_options[i].arg;
642 main_input_baselength
643 = base_of_path (main_input_filename, &main_input_basename);
645 add_input_filename (decoded_options[i].arg);
646 continue;
649 read_cmdline_option (opts, opts_set,
650 decoded_options + i, lang_mask, handlers,
651 global_dc);
655 /* Language mask determined at initialization. */
656 static unsigned int initial_lang_mask;
658 /* Initialize global options-related settings at start-up. */
660 void
661 init_options_once (void)
663 /* Perform language-specific options initialization. */
664 initial_lang_mask = lang_hooks.option_lang_mask ();
666 lang_hooks.initialize_diagnostics (global_dc);
669 /* Initialize OPTS and OPTS_SET before using them in parsing options. */
671 void
672 init_options_struct (struct gcc_options *opts, struct gcc_options *opts_set)
674 size_t num_params = get_num_compiler_params ();
676 *opts = global_options_init;
677 memset (opts_set, 0, sizeof (*opts_set));
679 opts->x_param_values = XNEWVEC (int, num_params);
680 opts_set->x_param_values = XCNEWVEC (int, num_params);
681 init_param_values (opts->x_param_values);
683 /* Use priority coloring if cover classes is not defined for the
684 target. */
685 if (targetm.ira_cover_classes == NULL)
686 opts->x_flag_ira_algorithm = IRA_ALGORITHM_PRIORITY;
688 /* Initialize whether `char' is signed. */
689 opts->x_flag_signed_char = DEFAULT_SIGNED_CHAR;
690 /* Set this to a special "uninitialized" value. The actual default
691 is set after target options have been processed. */
692 opts->x_flag_short_enums = 2;
694 /* Initialize target_flags before targetm.target_option.optimization
695 so the latter can modify it. */
696 opts->x_target_flags = targetm.default_target_flags;
698 /* Some targets have ABI-specified unwind tables. */
699 opts->x_flag_unwind_tables = targetm.unwind_tables_default;
701 /* Some targets have other target-specific initialization. */
702 targetm.target_option.init_struct (opts);
705 /* Decode command-line options to an array, like
706 decode_cmdline_options_to_array and with the same arguments but
707 using the default lang_mask. */
709 void
710 decode_cmdline_options_to_array_default_mask (unsigned int argc,
711 const char **argv,
712 struct cl_decoded_option **decoded_options,
713 unsigned int *decoded_options_count)
715 decode_cmdline_options_to_array (argc, argv,
716 initial_lang_mask | CL_COMMON | CL_TARGET,
717 decoded_options, decoded_options_count);
720 /* If indicated by the optimization level LEVEL (-Os if SIZE is set,
721 -Ofast if FAST is set), apply the option DEFAULT_OPT to OPTS and
722 OPTS_SET, diagnostic context DC, with language mask LANG_MASK and
723 option handlers HANDLERS. */
725 static void
726 maybe_default_option (struct gcc_options *opts,
727 struct gcc_options *opts_set,
728 const struct default_options *default_opt,
729 int level, bool size, bool fast,
730 unsigned int lang_mask,
731 const struct cl_option_handlers *handlers,
732 diagnostic_context *dc)
734 const struct cl_option *option = &cl_options[default_opt->opt_index];
735 bool enabled;
737 if (size)
738 gcc_assert (level == 2);
739 if (fast)
740 gcc_assert (level == 3);
742 switch (default_opt->levels)
744 case OPT_LEVELS_ALL:
745 enabled = true;
746 break;
748 case OPT_LEVELS_0_ONLY:
749 enabled = (level == 0);
750 break;
752 case OPT_LEVELS_1_PLUS:
753 enabled = (level >= 1);
754 break;
756 case OPT_LEVELS_1_PLUS_SPEED_ONLY:
757 enabled = (level >= 1 && !size);
758 break;
760 case OPT_LEVELS_2_PLUS:
761 enabled = (level >= 2);
762 break;
764 case OPT_LEVELS_2_PLUS_SPEED_ONLY:
765 enabled = (level >= 2 && !size);
766 break;
768 case OPT_LEVELS_3_PLUS:
769 enabled = (level >= 3);
770 break;
772 case OPT_LEVELS_3_PLUS_AND_SIZE:
773 enabled = (level >= 3 || size);
774 break;
776 case OPT_LEVELS_SIZE:
777 enabled = size;
778 break;
780 case OPT_LEVELS_FAST:
781 enabled = fast;
782 break;
784 case OPT_LEVELS_NONE:
785 default:
786 gcc_unreachable ();
789 if (enabled)
790 handle_generated_option (opts, opts_set, default_opt->opt_index,
791 default_opt->arg, default_opt->value,
792 lang_mask, DK_UNSPECIFIED, handlers, dc);
793 else if (default_opt->arg == NULL
794 && !(option->flags & CL_REJECT_NEGATIVE))
795 handle_generated_option (opts, opts_set, default_opt->opt_index,
796 default_opt->arg, !default_opt->value,
797 lang_mask, DK_UNSPECIFIED, handlers, dc);
800 /* As indicated by the optimization level LEVEL (-Os if SIZE is set,
801 -Ofast if FAST is set), apply the options in array DEFAULT_OPTS to
802 OPTS and OPTS_SET, diagnostic context DC, with language mask
803 LANG_MASK and option handlers HANDLERS. */
805 static void
806 maybe_default_options (struct gcc_options *opts,
807 struct gcc_options *opts_set,
808 const struct default_options *default_opts,
809 int level, bool size, bool fast,
810 unsigned int lang_mask,
811 const struct cl_option_handlers *handlers,
812 diagnostic_context *dc)
814 size_t i;
816 for (i = 0; default_opts[i].levels != OPT_LEVELS_NONE; i++)
817 maybe_default_option (opts, opts_set, &default_opts[i],
818 level, size, fast, lang_mask, handlers, dc);
821 /* Table of options enabled by default at different levels. */
823 static const struct default_options default_options_table[] =
825 /* -O1 optimizations. */
826 { OPT_LEVELS_1_PLUS, OPT_fdefer_pop, NULL, 1 },
827 #ifdef DELAY_SLOTS
828 { OPT_LEVELS_1_PLUS, OPT_fdelayed_branch, NULL, 1 },
829 #endif
830 { OPT_LEVELS_1_PLUS, OPT_fguess_branch_probability, NULL, 1 },
831 { OPT_LEVELS_1_PLUS, OPT_fcprop_registers, NULL, 1 },
832 { OPT_LEVELS_1_PLUS, OPT_fforward_propagate, NULL, 1 },
833 { OPT_LEVELS_1_PLUS, OPT_fif_conversion, NULL, 1 },
834 { OPT_LEVELS_1_PLUS, OPT_fif_conversion2, NULL, 1 },
835 { OPT_LEVELS_1_PLUS, OPT_fipa_pure_const, NULL, 1 },
836 { OPT_LEVELS_1_PLUS, OPT_fipa_reference, NULL, 1 },
837 { OPT_LEVELS_1_PLUS, OPT_fipa_profile, NULL, 1 },
838 { OPT_LEVELS_1_PLUS, OPT_fmerge_constants, NULL, 1 },
839 { OPT_LEVELS_1_PLUS, OPT_fsplit_wide_types, NULL, 1 },
840 { OPT_LEVELS_1_PLUS, OPT_ftree_ccp, NULL, 1 },
841 { OPT_LEVELS_1_PLUS, OPT_ftree_bit_ccp, NULL, 1 },
842 { OPT_LEVELS_1_PLUS, OPT_ftree_dce, NULL, 1 },
843 { OPT_LEVELS_1_PLUS, OPT_ftree_dominator_opts, NULL, 1 },
844 { OPT_LEVELS_1_PLUS, OPT_ftree_dse, NULL, 1 },
845 { OPT_LEVELS_1_PLUS, OPT_ftree_ter, NULL, 1 },
846 { OPT_LEVELS_1_PLUS, OPT_ftree_sra, NULL, 1 },
847 { OPT_LEVELS_1_PLUS, OPT_ftree_copyrename, NULL, 1 },
848 { OPT_LEVELS_1_PLUS, OPT_ftree_fre, NULL, 1 },
849 { OPT_LEVELS_1_PLUS, OPT_ftree_copy_prop, NULL, 1 },
850 { OPT_LEVELS_1_PLUS, OPT_ftree_sink, NULL, 1 },
851 { OPT_LEVELS_1_PLUS, OPT_ftree_ch, NULL, 1 },
852 { OPT_LEVELS_1_PLUS, OPT_fcombine_stack_adjustments, NULL, 1 },
854 /* -O2 optimizations. */
855 { OPT_LEVELS_2_PLUS, OPT_finline_small_functions, NULL, 1 },
856 { OPT_LEVELS_2_PLUS, OPT_findirect_inlining, NULL, 1 },
857 { OPT_LEVELS_2_PLUS, OPT_fpartial_inlining, NULL, 1 },
858 { OPT_LEVELS_2_PLUS, OPT_fthread_jumps, NULL, 1 },
859 { OPT_LEVELS_2_PLUS, OPT_fcrossjumping, NULL, 1 },
860 { OPT_LEVELS_2_PLUS, OPT_foptimize_sibling_calls, NULL, 1 },
861 { OPT_LEVELS_2_PLUS, OPT_fcse_follow_jumps, NULL, 1 },
862 { OPT_LEVELS_2_PLUS, OPT_fgcse, NULL, 1 },
863 { OPT_LEVELS_2_PLUS, OPT_fexpensive_optimizations, NULL, 1 },
864 { OPT_LEVELS_2_PLUS, OPT_frerun_cse_after_loop, NULL, 1 },
865 { OPT_LEVELS_2_PLUS, OPT_fcaller_saves, NULL, 1 },
866 { OPT_LEVELS_2_PLUS, OPT_fpeephole2, NULL, 1 },
867 #ifdef INSN_SCHEDULING
868 /* Only run the pre-regalloc scheduling pass if optimizing for speed. */
869 { OPT_LEVELS_2_PLUS_SPEED_ONLY, OPT_fschedule_insns, NULL, 1 },
870 { OPT_LEVELS_2_PLUS, OPT_fschedule_insns2, NULL, 1 },
871 #endif
872 { OPT_LEVELS_2_PLUS, OPT_fregmove, NULL, 1 },
873 { OPT_LEVELS_2_PLUS, OPT_fstrict_aliasing, NULL, 1 },
874 { OPT_LEVELS_2_PLUS, OPT_fstrict_overflow, NULL, 1 },
875 { OPT_LEVELS_2_PLUS, OPT_freorder_blocks, NULL, 1 },
876 { OPT_LEVELS_2_PLUS, OPT_freorder_functions, NULL, 1 },
877 { OPT_LEVELS_2_PLUS, OPT_ftree_vrp, NULL, 1 },
878 { OPT_LEVELS_2_PLUS, OPT_ftree_builtin_call_dce, NULL, 1 },
879 { OPT_LEVELS_2_PLUS, OPT_ftree_pre, NULL, 1 },
880 { OPT_LEVELS_2_PLUS, OPT_ftree_switch_conversion, NULL, 1 },
881 { OPT_LEVELS_2_PLUS, OPT_fipa_cp, NULL, 1 },
882 { OPT_LEVELS_2_PLUS, OPT_fipa_sra, NULL, 1 },
883 { OPT_LEVELS_2_PLUS, OPT_falign_loops, NULL, 1 },
884 { OPT_LEVELS_2_PLUS, OPT_falign_jumps, NULL, 1 },
885 { OPT_LEVELS_2_PLUS, OPT_falign_labels, NULL, 1 },
886 { OPT_LEVELS_2_PLUS, OPT_falign_functions, NULL, 1 },
888 /* -O3 optimizations. */
889 { OPT_LEVELS_3_PLUS, OPT_ftree_loop_distribute_patterns, NULL, 1 },
890 { OPT_LEVELS_3_PLUS, OPT_fpredictive_commoning, NULL, 1 },
891 /* Inlining of functions reducing size is a good idea with -Os
892 regardless of them being declared inline. */
893 { OPT_LEVELS_3_PLUS_AND_SIZE, OPT_finline_functions, NULL, 1 },
894 { OPT_LEVELS_3_PLUS, OPT_funswitch_loops, NULL, 1 },
895 { OPT_LEVELS_3_PLUS, OPT_fgcse_after_reload, NULL, 1 },
896 { OPT_LEVELS_3_PLUS, OPT_ftree_vectorize, NULL, 1 },
897 { OPT_LEVELS_3_PLUS, OPT_fipa_cp_clone, NULL, 1 },
899 /* -Ofast adds optimizations to -O3. */
900 { OPT_LEVELS_FAST, OPT_ffast_math, NULL, 1 },
902 { OPT_LEVELS_NONE, 0, NULL, 0 }
905 /* Default the options in OPTS and OPTS_SET based on the optimization
906 settings in DECODED_OPTIONS and DECODED_OPTIONS_COUNT. */
907 static void
908 default_options_optimization (struct gcc_options *opts,
909 struct gcc_options *opts_set,
910 struct cl_decoded_option *decoded_options,
911 unsigned int decoded_options_count,
912 unsigned int lang_mask,
913 const struct cl_option_handlers *handlers,
914 diagnostic_context *dc)
916 unsigned int i;
917 int opt2;
918 int ofast = 0;
920 /* Scan to see what optimization level has been specified. That will
921 determine the default value of many flags. */
922 for (i = 1; i < decoded_options_count; i++)
924 struct cl_decoded_option *opt = &decoded_options[i];
925 switch (opt->opt_index)
927 case OPT_O:
928 if (*opt->arg == '\0')
930 opts->x_optimize = 1;
931 opts->x_optimize_size = 0;
932 ofast = 0;
934 else
936 const int optimize_val = integral_argument (opt->arg);
937 if (optimize_val == -1)
938 error ("argument to %qs should be a non-negative integer",
939 "-O");
940 else
942 opts->x_optimize = optimize_val;
943 if ((unsigned int) opts->x_optimize > 255)
944 opts->x_optimize = 255;
945 opts->x_optimize_size = 0;
946 ofast = 0;
949 break;
951 case OPT_Os:
952 opts->x_optimize_size = 1;
954 /* Optimizing for size forces optimize to be 2. */
955 opts->x_optimize = 2;
956 ofast = 0;
957 break;
959 case OPT_Ofast:
960 /* -Ofast only adds flags to -O3. */
961 opts->x_optimize_size = 0;
962 opts->x_optimize = 3;
963 ofast = 1;
964 break;
966 default:
967 /* Ignore other options in this prescan. */
968 break;
972 maybe_default_options (opts, opts_set, default_options_table,
973 opts->x_optimize, opts->x_optimize_size,
974 ofast, lang_mask, handlers, dc);
976 /* -O2 param settings. */
977 opt2 = (opts->x_optimize >= 2);
979 /* Track fields in field-sensitive alias analysis. */
980 maybe_set_param_value
981 (PARAM_MAX_FIELDS_FOR_FIELD_SENSITIVE,
982 opt2 ? 100 : default_param_value (PARAM_MAX_FIELDS_FOR_FIELD_SENSITIVE),
983 opts->x_param_values, opts_set->x_param_values);
985 /* For -O1 only do loop invariant motion for very small loops. */
986 maybe_set_param_value
987 (PARAM_LOOP_INVARIANT_MAX_BBS_IN_LOOP,
988 opt2 ? default_param_value (PARAM_LOOP_INVARIANT_MAX_BBS_IN_LOOP) : 1000,
989 opts->x_param_values, opts_set->x_param_values);
991 if (opts->x_optimize_size)
992 /* We want to crossjump as much as possible. */
993 maybe_set_param_value (PARAM_MIN_CROSSJUMP_INSNS, 1,
994 opts->x_param_values, opts_set->x_param_values);
995 else
996 maybe_set_param_value (PARAM_MIN_CROSSJUMP_INSNS,
997 default_param_value (PARAM_MIN_CROSSJUMP_INSNS),
998 opts->x_param_values, opts_set->x_param_values);
1000 /* Allow default optimizations to be specified on a per-machine basis. */
1001 maybe_default_options (opts, opts_set,
1002 targetm.target_option.optimization_table,
1003 opts->x_optimize, opts->x_optimize_size,
1004 ofast, lang_mask, handlers, dc);
1007 static void finish_options (struct gcc_options *, struct gcc_options *);
1009 /* Parse command line options and set default flag values. Do minimal
1010 options processing. The decoded options are in *DECODED_OPTIONS
1011 and *DECODED_OPTIONS_COUNT. */
1012 void
1013 decode_options (struct gcc_options *opts, struct gcc_options *opts_set,
1014 struct cl_decoded_option *decoded_options,
1015 unsigned int decoded_options_count)
1017 struct cl_option_handlers handlers;
1019 unsigned int lang_mask;
1021 lang_mask = initial_lang_mask;
1023 handlers.unknown_option_callback = unknown_option_callback;
1024 handlers.wrong_lang_callback = complain_wrong_lang;
1025 handlers.post_handling_callback = post_handling_callback;
1026 handlers.num_handlers = 3;
1027 handlers.handlers[0].handler = lang_handle_option;
1028 handlers.handlers[0].mask = lang_mask;
1029 handlers.handlers[1].handler = common_handle_option;
1030 handlers.handlers[1].mask = CL_COMMON;
1031 handlers.handlers[2].handler = target_handle_option;
1032 handlers.handlers[2].mask = CL_TARGET;
1034 /* Enable -Werror=coverage-mismatch by default */
1035 enable_warning_as_error ("coverage-mismatch", 1, lang_mask, &handlers,
1036 global_dc);
1038 default_options_optimization (opts, opts_set,
1039 decoded_options, decoded_options_count,
1040 lang_mask, &handlers, global_dc);
1042 #ifdef ENABLE_LTO
1043 /* Clear any options currently held for LTO. */
1044 lto_clear_user_options ();
1045 #endif
1047 read_cmdline_options (opts, opts_set,
1048 decoded_options, decoded_options_count, lang_mask,
1049 &handlers);
1051 finish_options (opts, opts_set);
1054 /* After all options have been read into OPTS and OPTS_SET, finalize
1055 settings of those options and diagnose incompatible
1056 combinations. */
1057 static void
1058 finish_options (struct gcc_options *opts, struct gcc_options *opts_set)
1060 static bool first_time_p = true;
1061 enum unwind_info_type ui_except;
1063 gcc_assert (opts == &global_options);
1064 gcc_assert (opts_set = &global_options_set);
1066 if (dump_base_name && ! IS_ABSOLUTE_PATH (dump_base_name))
1068 /* First try to make DUMP_BASE_NAME relative to the DUMP_DIR_NAME
1069 directory. Then try to make DUMP_BASE_NAME relative to the
1070 AUX_BASE_NAME directory, typically the directory to contain
1071 the object file. */
1072 if (dump_dir_name)
1073 dump_base_name = concat (dump_dir_name, dump_base_name, NULL);
1074 else if (aux_base_name)
1076 const char *aux_base;
1078 base_of_path (aux_base_name, &aux_base);
1079 if (aux_base_name != aux_base)
1081 int dir_len = aux_base - aux_base_name;
1082 char *new_dump_base_name =
1083 XNEWVEC (char, strlen(dump_base_name) + dir_len + 1);
1085 /* Copy directory component from AUX_BASE_NAME. */
1086 memcpy (new_dump_base_name, aux_base_name, dir_len);
1087 /* Append existing DUMP_BASE_NAME. */
1088 strcpy (new_dump_base_name + dir_len, dump_base_name);
1089 dump_base_name = new_dump_base_name;
1094 /* Handle related options for unit-at-a-time, toplevel-reorder, and
1095 section-anchors. */
1096 if (!flag_unit_at_a_time)
1098 if (flag_section_anchors && opts_set->x_flag_section_anchors)
1099 error ("Section anchors must be disabled when unit-at-a-time "
1100 "is disabled.");
1101 flag_section_anchors = 0;
1102 if (flag_toplevel_reorder == 1)
1103 error ("Toplevel reorder must be disabled when unit-at-a-time "
1104 "is disabled.");
1105 flag_toplevel_reorder = 0;
1108 /* -Wmissing-noreturn is alias for -Wsuggest-attribute=noreturn. */
1109 if (warn_missing_noreturn)
1110 warn_suggest_attribute_noreturn = true;
1112 /* Unless the user has asked for section anchors, we disable toplevel
1113 reordering at -O0 to disable transformations that might be surprising
1114 to end users and to get -fno-toplevel-reorder tested. */
1115 if (!optimize
1116 && flag_toplevel_reorder == 2
1117 && !(flag_section_anchors && opts_set->x_flag_section_anchors))
1119 flag_toplevel_reorder = 0;
1120 flag_section_anchors = 0;
1122 if (!flag_toplevel_reorder)
1124 if (flag_section_anchors && opts_set->x_flag_section_anchors)
1125 error ("section anchors must be disabled when toplevel reorder"
1126 " is disabled");
1127 flag_section_anchors = 0;
1130 if (first_time_p)
1132 if (flag_pie)
1133 flag_pic = flag_pie;
1134 if (flag_pic && !flag_pie)
1135 flag_shlib = 1;
1136 first_time_p = false;
1139 if (optimize == 0)
1141 /* Inlining does not work if not optimizing,
1142 so force it not to be done. */
1143 warn_inline = 0;
1144 flag_no_inline = 1;
1147 /* The optimization to partition hot and cold basic blocks into separate
1148 sections of the .o and executable files does not work (currently)
1149 with exception handling. This is because there is no support for
1150 generating unwind info. If flag_exceptions is turned on we need to
1151 turn off the partitioning optimization. */
1153 ui_except = targetm.except_unwind_info ();
1155 if (flag_exceptions
1156 && flag_reorder_blocks_and_partition
1157 && (ui_except == UI_SJLJ || ui_except == UI_TARGET))
1159 inform (input_location,
1160 "-freorder-blocks-and-partition does not work "
1161 "with exceptions on this architecture");
1162 flag_reorder_blocks_and_partition = 0;
1163 flag_reorder_blocks = 1;
1166 /* If user requested unwind info, then turn off the partitioning
1167 optimization. */
1169 if (flag_unwind_tables
1170 && !targetm.unwind_tables_default
1171 && flag_reorder_blocks_and_partition
1172 && (ui_except == UI_SJLJ || ui_except == UI_TARGET))
1174 inform (input_location,
1175 "-freorder-blocks-and-partition does not support "
1176 "unwind info on this architecture");
1177 flag_reorder_blocks_and_partition = 0;
1178 flag_reorder_blocks = 1;
1181 /* If the target requested unwind info, then turn off the partitioning
1182 optimization with a different message. Likewise, if the target does not
1183 support named sections. */
1185 if (flag_reorder_blocks_and_partition
1186 && (!targetm.have_named_sections
1187 || (flag_unwind_tables
1188 && targetm.unwind_tables_default
1189 && (ui_except == UI_SJLJ || ui_except == UI_TARGET))))
1191 inform (input_location,
1192 "-freorder-blocks-and-partition does not work "
1193 "on this architecture");
1194 flag_reorder_blocks_and_partition = 0;
1195 flag_reorder_blocks = 1;
1198 /* Pipelining of outer loops is only possible when general pipelining
1199 capabilities are requested. */
1200 if (!flag_sel_sched_pipelining)
1201 flag_sel_sched_pipelining_outer_loops = 0;
1203 if (!targetm.ira_cover_classes
1204 && flag_ira_algorithm == IRA_ALGORITHM_CB)
1206 inform (input_location,
1207 "-fira-algorithm=CB does not work on this architecture");
1208 flag_ira_algorithm = IRA_ALGORITHM_PRIORITY;
1211 if (flag_conserve_stack)
1213 maybe_set_param_value (PARAM_LARGE_STACK_FRAME, 100,
1214 opts->x_param_values, opts_set->x_param_values);
1215 maybe_set_param_value (PARAM_STACK_FRAME_GROWTH, 40,
1216 opts->x_param_values, opts_set->x_param_values);
1218 if (flag_wpa || flag_ltrans)
1220 /* These passes are not WHOPR compatible yet. */
1221 flag_ipa_pta = 0;
1222 flag_ipa_struct_reorg = 0;
1225 if (flag_lto || flag_whopr)
1227 #ifdef ENABLE_LTO
1228 flag_generate_lto = 1;
1230 /* When generating IL, do not operate in whole-program mode.
1231 Otherwise, symbols will be privatized too early, causing link
1232 errors later. */
1233 flag_whole_program = 0;
1234 #else
1235 error ("LTO support has not been enabled in this configuration");
1236 #endif
1238 if (flag_lto_partition_balanced || flag_lto_partition_1to1)
1240 if (flag_lto_partition_balanced && flag_lto_partition_1to1)
1241 error ("Only one -flto-partitoin value can be specified");
1242 if (!flag_whopr && !flag_wpa && !flag_ltrans)
1243 error ("-flto-partition has no effect without -fwhopr");
1246 /* Reconcile -flto and -fwhopr. Set additional flags as appropriate and
1247 check option consistency. */
1248 if (flag_lto && flag_whopr)
1249 error ("-flto and -fwhopr are mutually exclusive");
1251 /* We initialize flag_split_stack to -1 so that targets can set a
1252 default value if they choose based on other options. */
1253 if (flag_split_stack == -1)
1254 flag_split_stack = 0;
1255 else if (flag_split_stack)
1257 if (!targetm.supports_split_stack (true))
1259 error ("%<-fsplit-stack%> is not supported by "
1260 "this compiler configuration");
1261 flag_split_stack = 0;
1266 #define LEFT_COLUMN 27
1268 /* Output ITEM, of length ITEM_WIDTH, in the left column,
1269 followed by word-wrapped HELP in a second column. */
1270 static void
1271 wrap_help (const char *help,
1272 const char *item,
1273 unsigned int item_width,
1274 unsigned int columns)
1276 unsigned int col_width = LEFT_COLUMN;
1277 unsigned int remaining, room, len;
1279 remaining = strlen (help);
1283 room = columns - 3 - MAX (col_width, item_width);
1284 if (room > columns)
1285 room = 0;
1286 len = remaining;
1288 if (room < len)
1290 unsigned int i;
1292 for (i = 0; help[i]; i++)
1294 if (i >= room && len != remaining)
1295 break;
1296 if (help[i] == ' ')
1297 len = i;
1298 else if ((help[i] == '-' || help[i] == '/')
1299 && help[i + 1] != ' '
1300 && i > 0 && ISALPHA (help[i - 1]))
1301 len = i + 1;
1305 printf( " %-*.*s %.*s\n", col_width, item_width, item, len, help);
1306 item_width = 0;
1307 while (help[len] == ' ')
1308 len++;
1309 help += len;
1310 remaining -= len;
1312 while (remaining);
1315 /* Print help for a specific front-end, etc. */
1316 static void
1317 print_filtered_help (unsigned int include_flags,
1318 unsigned int exclude_flags,
1319 unsigned int any_flags,
1320 unsigned int columns)
1322 unsigned int i;
1323 const char *help;
1324 static char *printed = NULL;
1325 bool found = false;
1326 bool displayed = false;
1328 if (include_flags == CL_PARAMS)
1330 for (i = 0; i < LAST_PARAM; i++)
1332 const char *param = compiler_params[i].option;
1334 help = compiler_params[i].help;
1335 if (help == NULL || *help == '\0')
1337 if (exclude_flags & CL_UNDOCUMENTED)
1338 continue;
1339 help = undocumented_msg;
1342 /* Get the translation. */
1343 help = _(help);
1345 wrap_help (help, param, strlen (param), columns);
1347 putchar ('\n');
1348 return;
1351 if (!printed)
1352 printed = XCNEWVAR (char, cl_options_count);
1354 for (i = 0; i < cl_options_count; i++)
1356 static char new_help[128];
1357 const struct cl_option *option = cl_options + i;
1358 unsigned int len;
1359 const char *opt;
1360 const char *tab;
1362 if (include_flags == 0
1363 || ((option->flags & include_flags) != include_flags))
1365 if ((option->flags & any_flags) == 0)
1366 continue;
1369 /* Skip unwanted switches. */
1370 if ((option->flags & exclude_flags) != 0)
1371 continue;
1373 /* The driver currently prints its own help text. */
1374 if ((option->flags & CL_DRIVER) != 0
1375 && (option->flags & (((1U << cl_lang_count) - 1)
1376 | CL_COMMON | CL_TARGET)) == 0)
1377 continue;
1379 found = true;
1380 /* Skip switches that have already been printed. */
1381 if (printed[i])
1382 continue;
1384 printed[i] = true;
1386 help = option->help;
1387 if (help == NULL)
1389 if (exclude_flags & CL_UNDOCUMENTED)
1390 continue;
1391 help = undocumented_msg;
1394 /* Get the translation. */
1395 help = _(help);
1397 /* Find the gap between the name of the
1398 option and its descriptive text. */
1399 tab = strchr (help, '\t');
1400 if (tab)
1402 len = tab - help;
1403 opt = help;
1404 help = tab + 1;
1406 else
1408 opt = option->opt_text;
1409 len = strlen (opt);
1412 /* With the -Q option enabled we change the descriptive text associated
1413 with an option to be an indication of its current setting. */
1414 if (!quiet_flag)
1416 void *flag_var = option_flag_var (i, &global_options);
1418 if (len < (LEFT_COLUMN + 2))
1419 strcpy (new_help, "\t\t");
1420 else
1421 strcpy (new_help, "\t");
1423 if (flag_var != NULL)
1425 if (option->flags & CL_JOINED)
1427 if (option->var_type == CLVC_STRING)
1429 if (* (const char **) flag_var != NULL)
1430 snprintf (new_help + strlen (new_help),
1431 sizeof (new_help) - strlen (new_help),
1432 * (const char **) flag_var);
1434 else
1435 sprintf (new_help + strlen (new_help),
1436 "%#x", * (int *) flag_var);
1438 else
1439 strcat (new_help, option_enabled (i, &global_options)
1440 ? _("[enabled]") : _("[disabled]"));
1443 help = new_help;
1446 wrap_help (help, opt, len, columns);
1447 displayed = true;
1450 if (! found)
1452 unsigned int langs = include_flags & CL_LANG_ALL;
1454 if (langs == 0)
1455 printf (_(" No options with the desired characteristics were found\n"));
1456 else
1458 unsigned int i;
1460 /* PR 31349: Tell the user how to see all of the
1461 options supported by a specific front end. */
1462 for (i = 0; (1U << i) < CL_LANG_ALL; i ++)
1463 if ((1U << i) & langs)
1464 printf (_(" None found. Use --help=%s to show *all* the options supported by the %s front-end\n"),
1465 lang_names[i], lang_names[i]);
1469 else if (! displayed)
1470 printf (_(" All options with the desired characteristics have already been displayed\n"));
1472 putchar ('\n');
1475 /* Display help for a specified type of option.
1476 The options must have ALL of the INCLUDE_FLAGS set
1477 ANY of the flags in the ANY_FLAGS set
1478 and NONE of the EXCLUDE_FLAGS set. */
1479 static void
1480 print_specific_help (unsigned int include_flags,
1481 unsigned int exclude_flags,
1482 unsigned int any_flags)
1484 unsigned int all_langs_mask = (1U << cl_lang_count) - 1;
1485 const char * description = NULL;
1486 const char * descrip_extra = "";
1487 size_t i;
1488 unsigned int flag;
1489 static unsigned int columns = 0;
1491 /* Sanity check: Make sure that we do not have more
1492 languages than we have bits available to enumerate them. */
1493 gcc_assert ((1U << cl_lang_count) < CL_MIN_OPTION_CLASS);
1495 /* If we have not done so already, obtain
1496 the desired maximum width of the output. */
1497 if (columns == 0)
1499 const char *p;
1501 GET_ENVIRONMENT (p, "COLUMNS");
1502 if (p != NULL)
1504 int value = atoi (p);
1506 if (value > 0)
1507 columns = value;
1510 if (columns == 0)
1511 /* Use a reasonable default. */
1512 columns = 80;
1515 /* Decide upon the title for the options that we are going to display. */
1516 for (i = 0, flag = 1; flag <= CL_MAX_OPTION_CLASS; flag <<= 1, i ++)
1518 switch (flag & include_flags)
1520 case 0:
1521 case CL_DRIVER:
1522 break;
1524 case CL_TARGET:
1525 description = _("The following options are target specific");
1526 break;
1527 case CL_WARNING:
1528 description = _("The following options control compiler warning messages");
1529 break;
1530 case CL_OPTIMIZATION:
1531 description = _("The following options control optimizations");
1532 break;
1533 case CL_COMMON:
1534 description = _("The following options are language-independent");
1535 break;
1536 case CL_PARAMS:
1537 description = _("The --param option recognizes the following as parameters");
1538 break;
1539 default:
1540 if (i >= cl_lang_count)
1541 break;
1542 if (exclude_flags & all_langs_mask)
1543 description = _("The following options are specific to just the language ");
1544 else
1545 description = _("The following options are supported by the language ");
1546 descrip_extra = lang_names [i];
1547 break;
1551 if (description == NULL)
1553 if (any_flags == 0)
1555 if (include_flags & CL_UNDOCUMENTED)
1556 description = _("The following options are not documented");
1557 else if (include_flags & CL_SEPARATE)
1558 description = _("The following options take separate arguments");
1559 else if (include_flags & CL_JOINED)
1560 description = _("The following options take joined arguments");
1561 else
1563 internal_error ("unrecognized include_flags 0x%x passed to print_specific_help",
1564 include_flags);
1565 return;
1568 else
1570 if (any_flags & all_langs_mask)
1571 description = _("The following options are language-related");
1572 else
1573 description = _("The following options are language-independent");
1577 printf ("%s%s:\n", description, descrip_extra);
1578 print_filtered_help (include_flags, exclude_flags, any_flags, columns);
1581 /* Handle target- and language-independent options. Return zero to
1582 generate an "unknown option" message. Only options that need
1583 extra handling need to be listed here; if you simply want
1584 DECODED->value assigned to a variable, it happens automatically. */
1586 static bool
1587 common_handle_option (struct gcc_options *opts,
1588 struct gcc_options *opts_set,
1589 const struct cl_decoded_option *decoded,
1590 unsigned int lang_mask, int kind ATTRIBUTE_UNUSED,
1591 const struct cl_option_handlers *handlers)
1593 size_t scode = decoded->opt_index;
1594 const char *arg = decoded->arg;
1595 int value = decoded->value;
1596 static bool verbose = false;
1597 enum opt_code code = (enum opt_code) scode;
1599 gcc_assert (opts == &global_options);
1600 gcc_assert (opts_set == &global_options_set);
1601 gcc_assert (decoded->canonical_option_num_elements <= 2);
1603 switch (code)
1605 case OPT__param:
1606 handle_param (opts, opts_set, arg);
1607 break;
1609 case OPT_v:
1610 verbose = true;
1611 break;
1613 case OPT__help:
1615 unsigned int all_langs_mask = (1U << cl_lang_count) - 1;
1616 unsigned int undoc_mask;
1617 unsigned int i;
1619 undoc_mask = (verbose | extra_warnings) ? 0 : CL_UNDOCUMENTED;
1620 /* First display any single language specific options. */
1621 for (i = 0; i < cl_lang_count; i++)
1622 print_specific_help
1623 (1U << i, (all_langs_mask & (~ (1U << i))) | undoc_mask, 0);
1624 /* Next display any multi language specific options. */
1625 print_specific_help (0, undoc_mask, all_langs_mask);
1626 /* Then display any remaining, non-language options. */
1627 for (i = CL_MIN_OPTION_CLASS; i <= CL_MAX_OPTION_CLASS; i <<= 1)
1628 if (i != CL_DRIVER)
1629 print_specific_help (i, undoc_mask, 0);
1630 exit_after_options = true;
1631 break;
1634 case OPT__target_help:
1635 print_specific_help (CL_TARGET, CL_UNDOCUMENTED, 0);
1636 exit_after_options = true;
1638 /* Allow the target a chance to give the user some additional information. */
1639 if (targetm.help)
1640 targetm.help ();
1641 break;
1643 case OPT__help_:
1645 const char * a = arg;
1646 unsigned int include_flags = 0;
1647 /* Note - by default we include undocumented options when listing
1648 specific classes. If you only want to see documented options
1649 then add ",^undocumented" to the --help= option. E.g.:
1651 --help=target,^undocumented */
1652 unsigned int exclude_flags = 0;
1654 /* Walk along the argument string, parsing each word in turn.
1655 The format is:
1656 arg = [^]{word}[,{arg}]
1657 word = {optimizers|target|warnings|undocumented|
1658 params|common|<language>} */
1659 while (* a != 0)
1661 static struct
1663 const char * string;
1664 unsigned int flag;
1666 specifics[] =
1668 { "optimizers", CL_OPTIMIZATION },
1669 { "target", CL_TARGET },
1670 { "warnings", CL_WARNING },
1671 { "undocumented", CL_UNDOCUMENTED },
1672 { "params", CL_PARAMS },
1673 { "joined", CL_JOINED },
1674 { "separate", CL_SEPARATE },
1675 { "common", CL_COMMON },
1676 { NULL, 0 }
1678 unsigned int * pflags;
1679 const char * comma;
1680 unsigned int lang_flag, specific_flag;
1681 unsigned int len;
1682 unsigned int i;
1684 if (* a == '^')
1686 ++ a;
1687 pflags = & exclude_flags;
1689 else
1690 pflags = & include_flags;
1692 comma = strchr (a, ',');
1693 if (comma == NULL)
1694 len = strlen (a);
1695 else
1696 len = comma - a;
1697 if (len == 0)
1699 a = comma + 1;
1700 continue;
1703 /* Check to see if the string matches an option class name. */
1704 for (i = 0, specific_flag = 0; specifics[i].string != NULL; i++)
1705 if (strncasecmp (a, specifics[i].string, len) == 0)
1707 specific_flag = specifics[i].flag;
1708 break;
1711 /* Check to see if the string matches a language name.
1712 Note - we rely upon the alpha-sorted nature of the entries in
1713 the lang_names array, specifically that shorter names appear
1714 before their longer variants. (i.e. C before C++). That way
1715 when we are attempting to match --help=c for example we will
1716 match with C first and not C++. */
1717 for (i = 0, lang_flag = 0; i < cl_lang_count; i++)
1718 if (strncasecmp (a, lang_names[i], len) == 0)
1720 lang_flag = 1U << i;
1721 break;
1724 if (specific_flag != 0)
1726 if (lang_flag == 0)
1727 * pflags |= specific_flag;
1728 else
1730 /* The option's argument matches both the start of a
1731 language name and the start of an option class name.
1732 We have a special case for when the user has
1733 specified "--help=c", but otherwise we have to issue
1734 a warning. */
1735 if (strncasecmp (a, "c", len) == 0)
1736 * pflags |= lang_flag;
1737 else
1738 fnotice (stderr,
1739 "warning: --help argument %.*s is ambiguous, please be more specific\n",
1740 len, a);
1743 else if (lang_flag != 0)
1744 * pflags |= lang_flag;
1745 else
1746 fnotice (stderr,
1747 "warning: unrecognized argument to --help= option: %.*s\n",
1748 len, a);
1750 if (comma == NULL)
1751 break;
1752 a = comma + 1;
1755 if (include_flags)
1756 print_specific_help (include_flags, exclude_flags, 0);
1757 exit_after_options = true;
1758 break;
1761 case OPT__version:
1762 exit_after_options = true;
1763 break;
1765 case OPT_O:
1766 case OPT_Os:
1767 case OPT_Ofast:
1768 /* Currently handled in a prescan. */
1769 break;
1771 case OPT_Werror_:
1772 enable_warning_as_error (arg, value, lang_mask, handlers, global_dc);
1773 break;
1775 case OPT_Wlarger_than_:
1776 larger_than_size = value;
1777 warn_larger_than = value != -1;
1778 break;
1780 case OPT_Wfatal_errors:
1781 global_dc->fatal_errors = value;
1782 break;
1784 case OPT_Wframe_larger_than_:
1785 frame_larger_than_size = value;
1786 warn_frame_larger_than = value != -1;
1787 break;
1789 case OPT_Wstrict_aliasing:
1790 set_Wstrict_aliasing (value);
1791 break;
1793 case OPT_Wstrict_aliasing_:
1794 warn_strict_aliasing = value;
1795 break;
1797 case OPT_Wstrict_overflow:
1798 warn_strict_overflow = (value
1799 ? (int) WARN_STRICT_OVERFLOW_CONDITIONAL
1800 : 0);
1801 break;
1803 case OPT_Wstrict_overflow_:
1804 warn_strict_overflow = value;
1805 break;
1807 case OPT_Wsystem_headers:
1808 global_dc->dc_warn_system_headers = value;
1809 break;
1811 case OPT_Wunused:
1812 warn_unused = value;
1813 break;
1815 case OPT_aux_info:
1816 aux_info_file_name = arg;
1817 flag_gen_aux_info = 1;
1818 break;
1820 case OPT_auxbase:
1821 aux_base_name = arg;
1822 break;
1824 case OPT_auxbase_strip:
1826 char *tmp = xstrdup (arg);
1827 strip_off_ending (tmp, strlen (tmp));
1828 if (tmp[0])
1829 aux_base_name = tmp;
1831 break;
1833 case OPT_d:
1834 decode_d_option (arg);
1835 break;
1837 case OPT_dumpbase:
1838 dump_base_name = arg;
1839 break;
1841 case OPT_dumpdir:
1842 dump_dir_name = arg;
1843 break;
1845 case OPT_falign_functions_:
1846 align_functions = value;
1847 break;
1849 case OPT_falign_jumps_:
1850 align_jumps = value;
1851 break;
1853 case OPT_falign_labels_:
1854 align_labels = value;
1855 break;
1857 case OPT_falign_loops_:
1858 align_loops = value;
1859 break;
1861 case OPT_fcall_used_:
1862 fix_register (arg, 0, 1);
1863 break;
1865 case OPT_fcall_saved_:
1866 fix_register (arg, 0, 0);
1867 break;
1869 case OPT_fcompare_debug_second:
1870 flag_compare_debug = value;
1871 break;
1873 case OPT_fdbg_cnt_:
1874 dbg_cnt_process_opt (arg);
1875 break;
1877 case OPT_fdbg_cnt_list:
1878 dbg_cnt_list_all_counters ();
1879 break;
1881 case OPT_fdebug_prefix_map_:
1882 add_debug_prefix_map (arg);
1883 break;
1885 case OPT_fdiagnostics_show_location_:
1886 if (!strcmp (arg, "once"))
1887 diagnostic_prefixing_rule (global_dc) = DIAGNOSTICS_SHOW_PREFIX_ONCE;
1888 else if (!strcmp (arg, "every-line"))
1889 diagnostic_prefixing_rule (global_dc)
1890 = DIAGNOSTICS_SHOW_PREFIX_EVERY_LINE;
1891 else
1892 return false;
1893 break;
1895 case OPT_fdiagnostics_show_option:
1896 global_dc->show_option_requested = value;
1897 break;
1899 case OPT_fdump_:
1900 if (!dump_switch_p (arg))
1901 return false;
1902 break;
1904 case OPT_ffp_contract_:
1905 if (!strcmp (arg, "on"))
1906 /* Not implemented, fall back to conservative FP_CONTRACT_OFF. */
1907 flag_fp_contract_mode = FP_CONTRACT_OFF;
1908 else if (!strcmp (arg, "off"))
1909 flag_fp_contract_mode = FP_CONTRACT_OFF;
1910 else if (!strcmp (arg, "fast"))
1911 flag_fp_contract_mode = FP_CONTRACT_FAST;
1912 else
1913 error ("unknown floating point contraction style \"%s\"", arg);
1914 break;
1916 case OPT_fexcess_precision_:
1917 if (!strcmp (arg, "fast"))
1918 flag_excess_precision_cmdline = EXCESS_PRECISION_FAST;
1919 else if (!strcmp (arg, "standard"))
1920 flag_excess_precision_cmdline = EXCESS_PRECISION_STANDARD;
1921 else
1922 error ("unknown excess precision style \"%s\"", arg);
1923 break;
1925 case OPT_ffast_math:
1926 set_fast_math_flags (value);
1927 break;
1929 case OPT_funsafe_math_optimizations:
1930 set_unsafe_math_optimizations_flags (value);
1931 break;
1933 case OPT_ffixed_:
1934 fix_register (arg, 1, 1);
1935 break;
1937 case OPT_finline_limit_:
1938 set_param_value ("max-inline-insns-single", value / 2,
1939 opts->x_param_values, opts_set->x_param_values);
1940 set_param_value ("max-inline-insns-auto", value / 2,
1941 opts->x_param_values, opts_set->x_param_values);
1942 break;
1944 case OPT_finstrument_functions_exclude_function_list_:
1945 add_comma_separated_to_vector
1946 (&flag_instrument_functions_exclude_functions, arg);
1947 break;
1949 case OPT_finstrument_functions_exclude_file_list_:
1950 add_comma_separated_to_vector
1951 (&flag_instrument_functions_exclude_files, arg);
1952 break;
1954 case OPT_fmessage_length_:
1955 pp_set_line_maximum_length (global_dc->printer, value);
1956 break;
1958 case OPT_fpack_struct_:
1959 if (value <= 0 || (value & (value - 1)) || value > 16)
1960 error ("structure alignment must be a small power of two, not %d", value);
1961 else
1963 initial_max_fld_align = value;
1964 maximum_field_alignment = value * BITS_PER_UNIT;
1966 break;
1968 case OPT_fplugin_:
1969 #ifdef ENABLE_PLUGIN
1970 add_new_plugin (arg);
1971 #else
1972 error ("Plugin support is disabled. Configure with --enable-plugin.");
1973 #endif
1974 break;
1976 case OPT_fplugin_arg_:
1977 #ifdef ENABLE_PLUGIN
1978 parse_plugin_arg_opt (arg);
1979 #else
1980 error ("Plugin support is disabled. Configure with --enable-plugin.");
1981 #endif
1982 break;
1984 case OPT_fprofile_dir_:
1985 profile_data_prefix = xstrdup (arg);
1986 break;
1988 case OPT_fprofile_use_:
1989 profile_data_prefix = xstrdup (arg);
1990 flag_profile_use = true;
1991 value = true;
1992 /* No break here - do -fprofile-use processing. */
1993 case OPT_fprofile_use:
1994 if (!opts_set->x_flag_branch_probabilities)
1995 flag_branch_probabilities = value;
1996 if (!opts_set->x_flag_profile_values)
1997 flag_profile_values = value;
1998 if (!opts_set->x_flag_unroll_loops)
1999 flag_unroll_loops = value;
2000 if (!opts_set->x_flag_peel_loops)
2001 flag_peel_loops = value;
2002 if (!opts_set->x_flag_tracer)
2003 flag_tracer = value;
2004 if (!opts_set->x_flag_value_profile_transformations)
2005 flag_value_profile_transformations = value;
2006 if (!opts_set->x_flag_inline_functions)
2007 flag_inline_functions = value;
2008 if (!opts_set->x_flag_ipa_cp)
2009 flag_ipa_cp = value;
2010 if (!opts_set->x_flag_ipa_cp_clone
2011 && value && flag_ipa_cp)
2012 flag_ipa_cp_clone = value;
2013 if (!opts_set->x_flag_predictive_commoning)
2014 flag_predictive_commoning = value;
2015 if (!opts_set->x_flag_unswitch_loops)
2016 flag_unswitch_loops = value;
2017 if (!opts_set->x_flag_gcse_after_reload)
2018 flag_gcse_after_reload = value;
2019 break;
2021 case OPT_fprofile_generate_:
2022 profile_data_prefix = xstrdup (arg);
2023 value = true;
2024 /* No break here - do -fprofile-generate processing. */
2025 case OPT_fprofile_generate:
2026 if (!opts_set->x_profile_arc_flag)
2027 profile_arc_flag = value;
2028 if (!opts_set->x_flag_profile_values)
2029 flag_profile_values = value;
2030 if (!opts_set->x_flag_value_profile_transformations)
2031 flag_value_profile_transformations = value;
2032 if (!opts_set->x_flag_inline_functions)
2033 flag_inline_functions = value;
2034 break;
2036 case OPT_fshow_column:
2037 global_dc->show_column = value;
2038 break;
2040 case OPT_fvisibility_:
2042 if (!strcmp(arg, "default"))
2043 default_visibility = VISIBILITY_DEFAULT;
2044 else if (!strcmp(arg, "internal"))
2045 default_visibility = VISIBILITY_INTERNAL;
2046 else if (!strcmp(arg, "hidden"))
2047 default_visibility = VISIBILITY_HIDDEN;
2048 else if (!strcmp(arg, "protected"))
2049 default_visibility = VISIBILITY_PROTECTED;
2050 else
2051 error ("unrecognized visibility value \"%s\"", arg);
2053 break;
2055 case OPT_frandom_seed:
2056 /* The real switch is -fno-random-seed. */
2057 if (value)
2058 return false;
2059 set_random_seed (NULL);
2060 break;
2062 case OPT_frandom_seed_:
2063 set_random_seed (arg);
2064 break;
2066 case OPT_fsched_verbose_:
2067 #ifdef INSN_SCHEDULING
2068 fix_sched_param ("verbose", arg);
2069 break;
2070 #else
2071 return false;
2072 #endif
2074 case OPT_fsched_stalled_insns_:
2075 flag_sched_stalled_insns = value;
2076 if (flag_sched_stalled_insns == 0)
2077 flag_sched_stalled_insns = -1;
2078 break;
2080 case OPT_fsched_stalled_insns_dep_:
2081 flag_sched_stalled_insns_dep = value;
2082 break;
2084 case OPT_fstack_check_:
2085 if (!strcmp (arg, "no"))
2086 flag_stack_check = NO_STACK_CHECK;
2087 else if (!strcmp (arg, "generic"))
2088 /* This is the old stack checking method. */
2089 flag_stack_check = STACK_CHECK_BUILTIN
2090 ? FULL_BUILTIN_STACK_CHECK
2091 : GENERIC_STACK_CHECK;
2092 else if (!strcmp (arg, "specific"))
2093 /* This is the new stack checking method. */
2094 flag_stack_check = STACK_CHECK_BUILTIN
2095 ? FULL_BUILTIN_STACK_CHECK
2096 : STACK_CHECK_STATIC_BUILTIN
2097 ? STATIC_BUILTIN_STACK_CHECK
2098 : GENERIC_STACK_CHECK;
2099 else
2100 warning (0, "unknown stack check parameter \"%s\"", arg);
2101 break;
2103 case OPT_fstack_limit:
2104 /* The real switch is -fno-stack-limit. */
2105 if (value)
2106 return false;
2107 stack_limit_rtx = NULL_RTX;
2108 break;
2110 case OPT_fstack_limit_register_:
2112 int reg = decode_reg_name (arg);
2113 if (reg < 0)
2114 error ("unrecognized register name \"%s\"", arg);
2115 else
2116 stack_limit_rtx = gen_rtx_REG (Pmode, reg);
2118 break;
2120 case OPT_fstack_limit_symbol_:
2121 stack_limit_rtx = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (arg));
2122 break;
2124 case OPT_ftree_vectorizer_verbose_:
2125 vect_set_verbosity_level (arg);
2126 break;
2128 case OPT_ftls_model_:
2129 if (!strcmp (arg, "global-dynamic"))
2130 flag_tls_default = TLS_MODEL_GLOBAL_DYNAMIC;
2131 else if (!strcmp (arg, "local-dynamic"))
2132 flag_tls_default = TLS_MODEL_LOCAL_DYNAMIC;
2133 else if (!strcmp (arg, "initial-exec"))
2134 flag_tls_default = TLS_MODEL_INITIAL_EXEC;
2135 else if (!strcmp (arg, "local-exec"))
2136 flag_tls_default = TLS_MODEL_LOCAL_EXEC;
2137 else
2138 warning (0, "unknown tls-model \"%s\"", arg);
2139 break;
2141 case OPT_fira_algorithm_:
2142 if (!strcmp (arg, "CB"))
2143 flag_ira_algorithm = IRA_ALGORITHM_CB;
2144 else if (!strcmp (arg, "priority"))
2145 flag_ira_algorithm = IRA_ALGORITHM_PRIORITY;
2146 else
2147 warning (0, "unknown ira algorithm \"%s\"", arg);
2148 break;
2150 case OPT_fira_region_:
2151 if (!strcmp (arg, "one"))
2152 flag_ira_region = IRA_REGION_ONE;
2153 else if (!strcmp (arg, "all"))
2154 flag_ira_region = IRA_REGION_ALL;
2155 else if (!strcmp (arg, "mixed"))
2156 flag_ira_region = IRA_REGION_MIXED;
2157 else
2158 warning (0, "unknown ira region \"%s\"", arg);
2159 break;
2161 case OPT_fira_verbose_:
2162 flag_ira_verbose = value;
2163 break;
2165 case OPT_g:
2166 set_debug_level (NO_DEBUG, DEFAULT_GDB_EXTENSIONS, arg);
2167 break;
2169 case OPT_gcoff:
2170 set_debug_level (SDB_DEBUG, false, arg);
2171 break;
2173 case OPT_gdwarf_:
2174 if (value < 2 || value > 4)
2175 error ("dwarf version %d is not supported", value);
2176 else
2177 dwarf_version = value;
2178 set_debug_level (DWARF2_DEBUG, false, "");
2179 break;
2181 case OPT_ggdb:
2182 set_debug_level (NO_DEBUG, 2, arg);
2183 break;
2185 case OPT_gstabs:
2186 case OPT_gstabs_:
2187 set_debug_level (DBX_DEBUG, code == OPT_gstabs_, arg);
2188 break;
2190 case OPT_gvms:
2191 set_debug_level (VMS_DEBUG, false, arg);
2192 break;
2194 case OPT_gxcoff:
2195 case OPT_gxcoff_:
2196 set_debug_level (XCOFF_DEBUG, code == OPT_gxcoff_, arg);
2197 break;
2199 case OPT_o:
2200 asm_file_name = arg;
2201 break;
2203 case OPT_pedantic_errors:
2204 flag_pedantic_errors = pedantic = 1;
2205 global_dc->pedantic_errors = 1;
2206 break;
2208 case OPT_fwhopr_:
2209 flag_whopr = arg;
2210 break;
2212 case OPT_fwhopr:
2213 flag_whopr = "";
2214 break;
2216 case OPT_w:
2217 global_dc->dc_inhibit_warnings = true;
2218 break;
2220 case OPT_fuse_linker_plugin:
2221 /* No-op. Used by the driver and passed to us because it starts with f.*/
2222 break;
2224 default:
2225 /* If the flag was handled in a standard way, assume the lack of
2226 processing here is intentional. */
2227 gcc_assert (option_flag_var (scode, opts));
2228 break;
2231 return true;
2234 /* Handle --param NAME=VALUE. */
2235 static void
2236 handle_param (struct gcc_options *opts, struct gcc_options *opts_set,
2237 const char *carg)
2239 char *equal, *arg;
2240 int value;
2242 arg = xstrdup (carg);
2243 equal = strchr (arg, '=');
2244 if (!equal)
2245 error ("%s: --param arguments should be of the form NAME=VALUE", arg);
2246 else
2248 value = integral_argument (equal + 1);
2249 if (value == -1)
2250 error ("invalid --param value %qs", equal + 1);
2251 else
2253 *equal = '\0';
2254 set_param_value (arg, value,
2255 opts->x_param_values, opts_set->x_param_values);
2259 free (arg);
2262 /* Used to set the level of strict aliasing warnings,
2263 when no level is specified (i.e., when -Wstrict-aliasing, and not
2264 -Wstrict-aliasing=level was given).
2265 ONOFF is assumed to take value 1 when -Wstrict-aliasing is specified,
2266 and 0 otherwise. After calling this function, wstrict_aliasing will be
2267 set to the default value of -Wstrict_aliasing=level, currently 3. */
2268 void
2269 set_Wstrict_aliasing (int onoff)
2271 gcc_assert (onoff == 0 || onoff == 1);
2272 if (onoff != 0)
2273 warn_strict_aliasing = 3;
2274 else
2275 warn_strict_aliasing = 0;
2278 /* The following routines are useful in setting all the flags that
2279 -ffast-math and -fno-fast-math imply. */
2280 static void
2281 set_fast_math_flags (int set)
2283 flag_unsafe_math_optimizations = set;
2284 set_unsafe_math_optimizations_flags (set);
2285 flag_finite_math_only = set;
2286 flag_errno_math = !set;
2287 if (set)
2289 flag_signaling_nans = 0;
2290 flag_rounding_math = 0;
2291 flag_cx_limited_range = 1;
2295 /* When -funsafe-math-optimizations is set the following
2296 flags are set as well. */
2297 static void
2298 set_unsafe_math_optimizations_flags (int set)
2300 flag_trapping_math = !set;
2301 flag_signed_zeros = !set;
2302 flag_associative_math = set;
2303 flag_reciprocal_math = set;
2306 /* Return true iff flags are set as if -ffast-math. */
2307 bool
2308 fast_math_flags_set_p (void)
2310 return (!flag_trapping_math
2311 && flag_unsafe_math_optimizations
2312 && flag_finite_math_only
2313 && !flag_signed_zeros
2314 && !flag_errno_math);
2317 /* Return true iff flags are set as if -ffast-math but using the flags stored
2318 in the struct cl_optimization structure. */
2319 bool
2320 fast_math_flags_struct_set_p (struct cl_optimization *opt)
2322 return (!opt->x_flag_trapping_math
2323 && opt->x_flag_unsafe_math_optimizations
2324 && opt->x_flag_finite_math_only
2325 && !opt->x_flag_signed_zeros
2326 && !opt->x_flag_errno_math);
2329 /* Handle a debug output -g switch. EXTENDED is true or false to support
2330 extended output (2 is special and means "-ggdb" was given). */
2331 static void
2332 set_debug_level (enum debug_info_type type, int extended, const char *arg)
2334 static bool type_explicit;
2336 use_gnu_debug_info_extensions = extended;
2338 if (type == NO_DEBUG)
2340 if (write_symbols == NO_DEBUG)
2342 write_symbols = PREFERRED_DEBUGGING_TYPE;
2344 if (extended == 2)
2346 #ifdef DWARF2_DEBUGGING_INFO
2347 write_symbols = DWARF2_DEBUG;
2348 #elif defined DBX_DEBUGGING_INFO
2349 write_symbols = DBX_DEBUG;
2350 #endif
2353 if (write_symbols == NO_DEBUG)
2354 warning (0, "target system does not support debug output");
2357 else
2359 /* Does it conflict with an already selected type? */
2360 if (type_explicit && write_symbols != NO_DEBUG && type != write_symbols)
2361 error ("debug format \"%s\" conflicts with prior selection",
2362 debug_type_names[type]);
2363 write_symbols = type;
2364 type_explicit = true;
2367 /* A debug flag without a level defaults to level 2. */
2368 if (*arg == '\0')
2370 if (!debug_info_level)
2371 debug_info_level = DINFO_LEVEL_NORMAL;
2373 else
2375 int argval = integral_argument (arg);
2376 if (argval == -1)
2377 error ("unrecognised debug output level \"%s\"", arg);
2378 else if (argval > 3)
2379 error ("debug output level %s is too high", arg);
2380 else
2381 debug_info_level = (enum debug_info_level) argval;
2385 /* Return 1 if option OPT_IDX is enabled in OPTS, 0 if it is disabled,
2386 or -1 if it isn't a simple on-off switch. */
2389 option_enabled (int opt_idx, void *opts)
2391 const struct cl_option *option = &(cl_options[opt_idx]);
2392 struct gcc_options *optsg = (struct gcc_options *) opts;
2393 void *flag_var = option_flag_var (opt_idx, optsg);
2395 if (flag_var)
2396 switch (option->var_type)
2398 case CLVC_BOOLEAN:
2399 return *(int *) flag_var != 0;
2401 case CLVC_EQUAL:
2402 return *(int *) flag_var == option->var_value;
2404 case CLVC_BIT_CLEAR:
2405 return (*(int *) flag_var & option->var_value) == 0;
2407 case CLVC_BIT_SET:
2408 return (*(int *) flag_var & option->var_value) != 0;
2410 case CLVC_STRING:
2411 break;
2413 return -1;
2416 /* Fill STATE with the current state of option OPTION in OPTS. Return
2417 true if there is some state to store. */
2419 bool
2420 get_option_state (struct gcc_options *opts, int option,
2421 struct cl_option_state *state)
2423 void *flag_var = option_flag_var (option, opts);
2425 if (flag_var == 0)
2426 return false;
2428 switch (cl_options[option].var_type)
2430 case CLVC_BOOLEAN:
2431 case CLVC_EQUAL:
2432 state->data = flag_var;
2433 state->size = sizeof (int);
2434 break;
2436 case CLVC_BIT_CLEAR:
2437 case CLVC_BIT_SET:
2438 state->ch = option_enabled (option, opts);
2439 state->data = &state->ch;
2440 state->size = 1;
2441 break;
2443 case CLVC_STRING:
2444 state->data = *(const char **) flag_var;
2445 if (state->data == 0)
2446 state->data = "";
2447 state->size = strlen ((const char *) state->data) + 1;
2448 break;
2450 return true;
2453 /* Callback function, called when -Werror= enables a warning. */
2455 static void (*warning_as_error_callback) (int) = NULL;
2457 /* Register a callback for enable_warning_as_error calls. */
2459 void
2460 register_warning_as_error_callback (void (*callback) (int))
2462 gcc_assert (warning_as_error_callback == NULL || callback == NULL);
2463 warning_as_error_callback = callback;
2466 /* Enable (or disable if VALUE is 0) a warning option ARG (language
2467 mask LANG_MASK, option handlers HANDLERS) as an error for
2468 diagnostic context DC (possibly NULL). This is used by
2469 -Werror=. */
2471 void
2472 enable_warning_as_error (const char *arg, int value, unsigned int lang_mask,
2473 const struct cl_option_handlers *handlers,
2474 diagnostic_context *dc)
2476 char *new_option;
2477 int option_index;
2479 new_option = XNEWVEC (char, strlen (arg) + 2);
2480 new_option[0] = 'W';
2481 strcpy (new_option + 1, arg);
2482 option_index = find_opt (new_option, lang_mask);
2483 if (option_index == OPT_SPECIAL_unknown)
2485 error ("-Werror=%s: No option -%s", arg, new_option);
2487 else
2489 const struct cl_option *option = &cl_options[option_index];
2490 const diagnostic_t kind = value ? DK_ERROR : DK_WARNING;
2492 if (option->alias_target != N_OPTS)
2493 option_index = option->alias_target;
2494 if (option_index == OPT_SPECIAL_ignore)
2495 return;
2496 if (dc)
2497 diagnostic_classify_diagnostic (dc, option_index, kind,
2498 UNKNOWN_LOCATION);
2499 if (kind == DK_ERROR)
2501 const struct cl_option * const option = cl_options + option_index;
2503 /* -Werror=foo implies -Wfoo. */
2504 if (option->var_type == CLVC_BOOLEAN)
2505 handle_generated_option (&global_options, &global_options_set,
2506 option_index, NULL, value, lang_mask,
2507 (int)kind, handlers,
2508 dc);
2510 if (warning_as_error_callback)
2511 warning_as_error_callback (option_index);
2514 free (new_option);
2517 /* Return malloced memory for the name of the option OPTION_INDEX
2518 which enabled a diagnostic (context CONTEXT), originally of type
2519 ORIG_DIAG_KIND but possibly converted to DIAG_KIND by options such
2520 as -Werror. */
2522 char *
2523 option_name (diagnostic_context *context, int option_index,
2524 diagnostic_t orig_diag_kind, diagnostic_t diag_kind)
2526 if (option_index)
2528 /* A warning classified as an error. */
2529 if ((orig_diag_kind == DK_WARNING || orig_diag_kind == DK_PEDWARN)
2530 && diag_kind == DK_ERROR)
2531 return concat (cl_options[OPT_Werror_].opt_text,
2532 /* Skip over "-W". */
2533 cl_options[option_index].opt_text + 2,
2534 NULL);
2535 /* A warning with option. */
2536 else
2537 return xstrdup (cl_options[option_index].opt_text);
2539 /* A warning without option classified as an error. */
2540 else if (orig_diag_kind == DK_WARNING || orig_diag_kind == DK_PEDWARN
2541 || diag_kind == DK_WARNING)
2543 if (context->warning_as_error_requested)
2544 return xstrdup (cl_options[OPT_Werror].opt_text);
2545 else
2546 return xstrdup (_("enabled by default"));
2548 else
2549 return NULL;