1 /* Command line option handling.
2 Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
3 Contributed by Neil Booth.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
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
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
25 #include "coretypes.h"
31 #include "langhooks.h"
37 #include "diagnostic.h"
38 #include "tm_p.h" /* For OPTIMIZATION_OPTIONS. */
39 #include "insn-attr.h" /* For INSN_SCHEDULING. */
41 #include "tree-pass.h"
43 /* Value of the -G xx switch, and whether it was passed or not. */
44 unsigned HOST_WIDE_INT g_switch_value
;
47 /* True if we should exit after parsing options. */
48 bool exit_after_options
;
50 /* Print various extra warnings. -W/-Wextra. */
53 /* True to warn about any objects definitions whose size is larger
54 than N bytes. Also want about function definitions whose returned
55 values are larger than N bytes, where N is `larger_than_size'. */
56 bool warn_larger_than
;
57 HOST_WIDE_INT larger_than_size
;
59 /* Nonzero means warn about constructs which might not be
60 strict-aliasing safe. */
61 int warn_strict_aliasing
;
63 /* Hack for cooperation between set_Wunused and set_Wextra. */
64 static bool maybe_warn_unused_parameter
;
66 /* Type(s) of debugging information we are producing (if any). See
67 flags.h for the definitions of the different possible types of
68 debugging information. */
69 enum debug_info_type write_symbols
= NO_DEBUG
;
71 /* Level of debugging information we are producing. See flags.h for
72 the definitions of the different possible levels. */
73 enum debug_info_level debug_info_level
= DINFO_LEVEL_NONE
;
75 /* Nonzero means use GNU-only extensions in the generated symbolic
76 debugging information. Currently, this only has an effect when
77 write_symbols is set to DBX_DEBUG, XCOFF_DEBUG, or DWARF_DEBUG. */
78 bool use_gnu_debug_info_extensions
;
80 /* The default visibility for all symbols (unless overridden) */
81 enum symbol_visibility default_visibility
= VISIBILITY_DEFAULT
;
83 /* Global visibility options. */
84 struct visibility_flags visibility_options
;
86 /* Columns of --help display. */
87 static unsigned int columns
= 80;
89 /* What to print when a switch has no documentation. */
90 static const char undocumented_msg
[] = N_("This switch lacks documentation");
92 /* Used for bookkeeping on whether user set these flags so
93 -fprofile-use/-fprofile-generate does not use them. */
94 static bool profile_arc_flag_set
, flag_profile_values_set
;
95 static bool flag_unroll_loops_set
, flag_tracer_set
;
96 static bool flag_value_profile_transformations_set
;
97 static bool flag_peel_loops_set
, flag_branch_probabilities_set
;
98 static bool flag_loop_optimize_set
;
100 /* Input file names. */
101 const char **in_fnames
;
102 unsigned num_in_fnames
;
104 static size_t find_opt (const char *, int);
105 static int common_handle_option (size_t scode
, const char *arg
, int value
);
106 static void handle_param (const char *);
107 static void set_Wextra (int);
108 static unsigned int handle_option (const char **argv
, unsigned int lang_mask
);
109 static char *write_langs (unsigned int lang_mask
);
110 static void complain_wrong_lang (const char *, const struct cl_option
*,
111 unsigned int lang_mask
);
112 static void handle_options (unsigned int, const char **, unsigned int);
113 static void wrap_help (const char *help
, const char *item
, unsigned int);
114 static void print_target_help (void);
115 static void print_help (void);
116 static void print_param_help (void);
117 static void print_filtered_help (unsigned int);
118 static unsigned int print_switch (const char *text
, unsigned int indent
);
119 static void set_debug_level (enum debug_info_type type
, int extended
,
122 /* Perform a binary search to find which option the command-line INPUT
123 matches. Returns its index in the option array, and N_OPTS
124 (cl_options_count) on failure.
126 This routine is quite subtle. A normal binary search is not good
127 enough because some options can be suffixed with an argument, and
128 multiple sub-matches can occur, e.g. input of "-pedantic" matching
129 the initial substring of "-pedantic-errors".
131 A more complicated example is -gstabs. It should match "-g" with
132 an argument of "stabs". Suppose, however, that the number and list
133 of switches are such that the binary search tests "-gen-decls"
134 before having tested "-g". This doesn't match, and as "-gen-decls"
135 is less than "-gstabs", it will become the lower bound of the
136 binary search range, and "-g" will never be seen. To resolve this
137 issue, opts.sh makes "-gen-decls" point, via the back_chain member,
138 to "-g" so that failed searches that end between "-gen-decls" and
139 the lexicographically subsequent switch know to go back and see if
140 "-g" causes a match (which it does in this example).
142 This search is done in such a way that the longest match for the
143 front end in question wins. If there is no match for the current
144 front end, the longest match for a different front end is returned
145 (or N_OPTS if none) and the caller emits an error message. */
147 find_opt (const char *input
, int lang_mask
)
149 size_t mn
, mx
, md
, opt_len
;
150 size_t match_wrong_lang
;
154 mx
= cl_options_count
;
156 /* Find mn such this lexicographical inequality holds:
157 cl_options[mn] <= input < cl_options[mn + 1]. */
161 opt_len
= cl_options
[md
].opt_len
;
162 comp
= strncmp (input
, cl_options
[md
].opt_text
+ 1, opt_len
);
170 /* This is the switch that is the best match but for a different
171 front end, or cl_options_count if there is no match at all. */
172 match_wrong_lang
= cl_options_count
;
174 /* Backtrace the chain of possible matches, returning the longest
175 one, if any, that fits best. With current GCC switches, this
176 loop executes at most twice. */
179 const struct cl_option
*opt
= &cl_options
[mn
];
181 /* Is the input either an exact match or a prefix that takes a
183 if (!strncmp (input
, opt
->opt_text
+ 1, opt
->opt_len
)
184 && (input
[opt
->opt_len
] == '\0' || (opt
->flags
& CL_JOINED
)))
186 /* If language is OK, return it. */
187 if (opt
->flags
& lang_mask
)
190 /* If we haven't remembered a prior match, remember this
191 one. Any prior match is necessarily better. */
192 if (match_wrong_lang
== cl_options_count
)
193 match_wrong_lang
= mn
;
196 /* Try the next possibility. This is cl_options_count if there
198 mn
= opt
->back_chain
;
200 while (mn
!= cl_options_count
);
202 /* Return the best wrong match, or cl_options_count if none. */
203 return match_wrong_lang
;
206 /* If ARG is a non-negative integer made up solely of digits, return its
207 value, otherwise return -1. */
209 integral_argument (const char *arg
)
213 while (*p
&& ISDIGIT (*p
))
222 /* Return a malloced slash-separated list of languages in MASK. */
224 write_langs (unsigned int mask
)
226 unsigned int n
= 0, len
= 0;
227 const char *lang_name
;
230 for (n
= 0; (lang_name
= lang_names
[n
]) != 0; n
++)
231 if (mask
& (1U << n
))
232 len
+= strlen (lang_name
) + 1;
234 result
= xmalloc (len
);
236 for (n
= 0; (lang_name
= lang_names
[n
]) != 0; n
++)
237 if (mask
& (1U << n
))
241 strcpy (result
+ len
, lang_name
);
242 len
+= strlen (lang_name
);
250 /* Complain that switch OPT_INDEX does not apply to this front end. */
252 complain_wrong_lang (const char *text
, const struct cl_option
*option
,
253 unsigned int lang_mask
)
255 char *ok_langs
, *bad_lang
;
257 ok_langs
= write_langs (option
->flags
);
258 bad_lang
= write_langs (lang_mask
);
260 /* Eventually this should become a hard error IMO. */
261 warning (0, "command line option \"%s\" is valid for %s but not for %s",
262 text
, ok_langs
, bad_lang
);
268 /* Handle the switch beginning at ARGV for the language indicated by
269 LANG_MASK. Returns the number of switches consumed. */
271 handle_option (const char **argv
, unsigned int lang_mask
)
274 const char *opt
, *arg
= 0;
277 unsigned int result
= 0;
278 const struct cl_option
*option
;
282 opt_index
= find_opt (opt
+ 1, lang_mask
| CL_COMMON
| CL_TARGET
);
283 if (opt_index
== cl_options_count
284 && (opt
[1] == 'W' || opt
[1] == 'f' || opt
[1] == 'm')
285 && opt
[2] == 'n' && opt
[3] == 'o' && opt
[4] == '-')
287 /* Drop the "no-" from negative switches. */
288 size_t len
= strlen (opt
) - 3;
290 dup
= xmalloc (len
+ 1);
293 memcpy (dup
+ 2, opt
+ 5, len
- 2 + 1);
296 opt_index
= find_opt (opt
+ 1, lang_mask
| CL_COMMON
| CL_TARGET
);
299 if (opt_index
== cl_options_count
)
302 option
= &cl_options
[opt_index
];
304 /* Reject negative form of switches that don't take negatives as
306 if (!value
&& (option
->flags
& CL_REJECT_NEGATIVE
))
309 /* We've recognized this switch. */
312 /* Check to see if the option is disabled for this configuration. */
313 if (option
->flags
& CL_DISABLED
)
315 error ("command line option %qs"
316 " is not supported by this configuration", opt
);
320 /* Sort out any argument the switch takes. */
321 if (option
->flags
& CL_JOINED
)
323 /* Have arg point to the original switch. This is because
324 some code, such as disable_builtin_function, expects its
325 argument to be persistent until the program exits. */
326 arg
= argv
[0] + cl_options
[opt_index
].opt_len
+ 1;
328 arg
+= strlen ("no-");
330 if (*arg
== '\0' && !(option
->flags
& CL_MISSING_OK
))
332 if (option
->flags
& CL_SEPARATE
)
338 /* Missing argument. */
342 else if (option
->flags
& CL_SEPARATE
)
348 /* Now we've swallowed any potential argument, complain if this
349 is a switch for a different front end. */
350 if (!(option
->flags
& (lang_mask
| CL_COMMON
| CL_TARGET
)))
352 complain_wrong_lang (argv
[0], option
, lang_mask
);
356 if (arg
== NULL
&& (option
->flags
& (CL_JOINED
| CL_SEPARATE
)))
358 if (!lang_hooks
.missing_argument (opt
, opt_index
))
359 error ("missing argument to \"%s\"", opt
);
363 /* If the switch takes an integer, convert it. */
364 if (arg
&& (option
->flags
& CL_UINTEGER
))
366 value
= integral_argument (arg
);
369 error ("argument to \"%s\" should be a non-negative integer",
375 if (option
->flag_var
)
376 switch (option
->var_type
)
379 *(int *) option
->flag_var
= value
;
383 *(int *) option
->flag_var
= (value
385 : !option
->var_value
);
390 if ((value
!= 0) == (option
->var_type
== CLVC_BIT_SET
))
391 *(int *) option
->flag_var
|= option
->var_value
;
393 *(int *) option
->flag_var
&= ~option
->var_value
;
394 if (option
->flag_var
== &target_flags
)
395 target_flags_explicit
|= option
->var_value
;
399 *(const char **) option
->flag_var
= arg
;
403 if (option
->flags
& lang_mask
)
404 if (lang_hooks
.handle_option (opt_index
, arg
, value
) == 0)
407 if (result
&& (option
->flags
& CL_COMMON
))
408 if (common_handle_option (opt_index
, arg
, value
) == 0)
411 if (result
&& (option
->flags
& CL_TARGET
))
412 if (!targetm
.handle_option (opt_index
, arg
, value
))
421 /* Handle FILENAME from the command line. */
423 add_input_filename (const char *filename
)
426 in_fnames
= xrealloc (in_fnames
, num_in_fnames
* sizeof (in_fnames
[0]));
427 in_fnames
[num_in_fnames
- 1] = filename
;
430 /* Decode and handle the vector of command line options. LANG_MASK
431 contains has a single bit set representing the current
434 handle_options (unsigned int argc
, const char **argv
, unsigned int lang_mask
)
438 for (i
= 1; i
< argc
; i
+= n
)
440 const char *opt
= argv
[i
];
442 /* Interpret "-" or a non-switch as a file name. */
443 if (opt
[0] != '-' || opt
[1] == '\0')
445 if (main_input_filename
== NULL
)
446 main_input_filename
= opt
;
447 add_input_filename (opt
);
452 n
= handle_option (argv
+ i
, lang_mask
);
457 error ("unrecognized command line option \"%s\"", opt
);
462 /* Parse command line options and set default flag values. Do minimal
463 options processing. */
465 decode_options (unsigned int argc
, const char **argv
)
467 unsigned int i
, lang_mask
;
469 /* Perform language-specific options initialization. */
470 lang_mask
= lang_hooks
.init_options (argc
, argv
);
472 lang_hooks
.initialize_diagnostics (global_dc
);
474 /* Scan to see what optimization level has been specified. That will
475 determine the default value of many flags. */
476 for (i
= 1; i
< argc
; i
++)
478 if (!strcmp (argv
[i
], "-O"))
483 else if (argv
[i
][0] == '-' && argv
[i
][1] == 'O')
485 /* Handle -Os, -O2, -O3, -O69, ... */
486 const char *p
= &argv
[i
][2];
488 if ((p
[0] == 's') && (p
[1] == 0))
492 /* Optimizing for size forces optimize to be 2. */
497 const int optimize_val
= read_integral_parameter (p
, p
- 2, -1);
498 if (optimize_val
!= -1)
500 optimize
= optimize_val
;
509 flag_merge_constants
= 0;
516 flag_delayed_branch
= 1;
518 #ifdef CAN_DEBUG_WITHOUT_FP
519 flag_omit_frame_pointer
= 1;
521 flag_guess_branch_prob
= 1;
522 flag_cprop_registers
= 1;
523 flag_loop_optimize
= 1;
524 flag_if_conversion
= 1;
525 flag_if_conversion2
= 1;
526 flag_ipa_pure_const
= 1;
527 flag_ipa_reference
= 1;
533 flag_tree_live_range_split
= 1;
535 flag_tree_copyrename
= 1;
537 flag_tree_copy_prop
= 1;
538 flag_tree_reassoc
= 1;
540 flag_tree_salias
= 1;
541 flag_unit_at_a_time
= 1;
545 /* Loop header copying usually increases size of the code. This used
546 not to be true, since quite often it is possible to verify that
547 the condition is satisfied in the first iteration and therefore
548 to eliminate it. Jump threading handles these cases now. */
555 flag_thread_jumps
= 1;
556 flag_crossjumping
= 1;
557 flag_optimize_sibling_calls
= 1;
558 flag_cse_follow_jumps
= 1;
559 flag_cse_skip_blocks
= 1;
561 flag_expensive_optimizations
= 1;
562 flag_ipa_type_escape
= 1;
563 flag_strength_reduce
= 1;
564 flag_rerun_cse_after_loop
= 1;
565 flag_rerun_loop_opt
= 1;
566 flag_caller_saves
= 1;
568 #ifdef INSN_SCHEDULING
569 flag_schedule_insns
= 1;
570 flag_schedule_insns_after_reload
= 1;
573 flag_strict_aliasing
= 1;
574 flag_delete_null_pointer_checks
= 1;
575 flag_reorder_blocks
= 1;
576 flag_reorder_functions
= 1;
577 flag_tree_store_ccp
= 1;
578 flag_tree_store_copy_prop
= 1;
583 /* PRE tends to generate bigger code. */
590 flag_inline_functions
= 1;
591 flag_unswitch_loops
= 1;
592 flag_gcse_after_reload
= 1;
595 if (optimize
< 2 || optimize_size
)
602 /* Don't reorder blocks when optimizing for size because extra
603 jump insns may be created; also barrier may create extra padding.
605 More correctly we should have a block reordering mode that tried
606 to minimize the combined size of all the jumps. This would more
607 or less automatically remove extra jumps, but would also try to
608 use more short jumps instead of long jumps. */
609 flag_reorder_blocks
= 0;
610 flag_reorder_blocks_and_partition
= 0;
615 /* Inlining of very small functions usually reduces total size. */
616 set_param_value ("max-inline-insns-single", 5);
617 set_param_value ("max-inline-insns-auto", 5);
618 flag_inline_functions
= 1;
620 /* We want to crossjump as much as possible. */
621 set_param_value ("min-crossjump-insns", 1);
624 /* Initialize whether `char' is signed. */
625 flag_signed_char
= DEFAULT_SIGNED_CHAR
;
626 /* Set this to a special "uninitialized" value. The actual default is set
627 after target options have been processed. */
628 flag_short_enums
= 2;
630 /* Initialize target_flags before OPTIMIZATION_OPTIONS so the latter can
632 target_flags
= targetm
.default_target_flags
;
634 /* Some tagets have ABI-specified unwind tables. */
635 flag_unwind_tables
= targetm
.unwind_tables_default
;
637 #ifdef OPTIMIZATION_OPTIONS
638 /* Allow default optimizations to be specified on a per-machine basis. */
639 OPTIMIZATION_OPTIONS (optimize
, optimize_size
);
642 handle_options (argc
, argv
, lang_mask
);
646 if (flag_pic
&& !flag_pie
)
649 if (flag_no_inline
== 2)
652 flag_really_no_inline
= flag_no_inline
;
654 /* Set flag_no_inline before the post_options () hook. The C front
655 ends use it to determine tree inlining defaults. FIXME: such
656 code should be lang-independent when all front ends use tree
657 inlining, in which case it, and this condition, should be moved
658 to the top of process_options() instead. */
661 /* Inlining does not work if not optimizing,
662 so force it not to be done. */
666 /* The c_decode_option function and decode_option hook set
667 this to `2' if -Wall is used, so we can avoid giving out
668 lots of errors for people who don't realize what -Wall does. */
669 if (warn_uninitialized
== 1)
670 warning (OPT_Wuninitialized
,
671 "-Wuninitialized is not supported without -O");
674 if (flag_really_no_inline
== 2)
675 flag_really_no_inline
= flag_no_inline
;
677 /* The optimization to partition hot and cold basic blocks into separate
678 sections of the .o and executable files does not work (currently)
679 with exception handling. This is because there is no support for
680 generating unwind info. If flag_exceptions is turned on we need to
681 turn off the partitioning optimization. */
683 if (flag_exceptions
&& flag_reorder_blocks_and_partition
)
686 ("-freorder-blocks-and-partition does not work with exceptions");
687 flag_reorder_blocks_and_partition
= 0;
688 flag_reorder_blocks
= 1;
691 /* If user requested unwind info, then turn off the partitioning
694 if (flag_unwind_tables
&& ! targetm
.unwind_tables_default
695 && flag_reorder_blocks_and_partition
)
697 inform ("-freorder-blocks-and-partition does not support unwind info");
698 flag_reorder_blocks_and_partition
= 0;
699 flag_reorder_blocks
= 1;
702 /* If the target requested unwind info, then turn off the partitioning
703 optimization with a different message. Likewise, if the target does not
704 support named sections. */
706 if (flag_reorder_blocks_and_partition
707 && (!targetm
.have_named_sections
708 || (flag_unwind_tables
&& targetm
.unwind_tables_default
)))
711 ("-freorder-blocks-and-partition does not work on this architecture");
712 flag_reorder_blocks_and_partition
= 0;
713 flag_reorder_blocks
= 1;
717 /* Handle target- and language-independent options. Return zero to
718 generate an "unknown option" message. Only options that need
719 extra handling need to be listed here; if you simply want
720 VALUE assigned to a variable, it happens automatically. */
723 common_handle_option (size_t scode
, const char *arg
, int value
)
725 enum opt_code code
= (enum opt_code
) scode
;
731 exit_after_options
= true;
738 case OPT__target_help
:
739 print_target_help ();
740 exit_after_options
= true;
744 print_version (stderr
, "");
745 exit_after_options
= true;
749 g_switch_value
= value
;
755 /* Currently handled in a prescan. */
759 /* For backward compatibility, -W is the same as -Wextra. */
767 case OPT_Wlarger_than_
:
768 larger_than_size
= value
;
769 warn_larger_than
= value
!= -1;
772 case OPT_Wstrict_aliasing
:
773 case OPT_Wstrict_aliasing_
:
774 warn_strict_aliasing
= value
;
783 aux_info_file_name
= arg
;
784 flag_gen_aux_info
= 1;
791 case OPT_auxbase_strip
:
793 char *tmp
= xstrdup (arg
);
794 strip_off_ending (tmp
, strlen (tmp
));
801 decode_d_option (arg
);
805 dump_base_name
= arg
;
808 case OPT_falign_functions_
:
809 align_functions
= value
;
812 case OPT_falign_jumps_
:
816 case OPT_falign_labels_
:
817 align_labels
= value
;
820 case OPT_falign_loops_
:
824 case OPT_fbranch_probabilities
:
825 flag_branch_probabilities_set
= true;
828 case OPT_floop_optimize
:
829 flag_loop_optimize_set
= true;
832 case OPT_fcall_used_
:
833 fix_register (arg
, 0, 1);
836 case OPT_fcall_saved_
:
837 fix_register (arg
, 0, 0);
840 case OPT_fdiagnostics_show_location_
:
841 if (!strcmp (arg
, "once"))
842 diagnostic_prefixing_rule (global_dc
) = DIAGNOSTICS_SHOW_PREFIX_ONCE
;
843 else if (!strcmp (arg
, "every-line"))
844 diagnostic_prefixing_rule (global_dc
)
845 = DIAGNOSTICS_SHOW_PREFIX_EVERY_LINE
;
850 case OPT_fdiagnostics_show_option
:
851 global_dc
->show_option_requested
= true;
855 if (!dump_switch_p (arg
))
860 set_fast_math_flags (value
);
864 fix_register (arg
, 1, 1);
867 case OPT_finline_limit_
:
868 case OPT_finline_limit_eq
:
869 set_param_value ("max-inline-insns-single", value
/ 2);
870 set_param_value ("max-inline-insns-auto", value
/ 2);
873 case OPT_fmessage_length_
:
874 pp_set_line_maximum_length (global_dc
->printer
, value
);
877 case OPT_fpack_struct_
:
878 if (value
<= 0 || (value
& (value
- 1)) || value
> 16)
879 error("structure alignment must be a small power of two, not %d", value
);
882 initial_max_fld_align
= value
;
883 maximum_field_alignment
= value
* BITS_PER_UNIT
;
887 case OPT_fpeel_loops
:
888 flag_peel_loops_set
= true;
891 case OPT_fprofile_arcs
:
892 profile_arc_flag_set
= true;
895 case OPT_fprofile_use
:
896 if (!flag_branch_probabilities_set
)
897 flag_branch_probabilities
= value
;
898 if (!flag_profile_values_set
)
899 flag_profile_values
= value
;
900 if (!flag_unroll_loops_set
)
901 flag_unroll_loops
= value
;
902 if (!flag_peel_loops_set
)
903 flag_peel_loops
= value
;
904 if (!flag_tracer_set
)
906 if (!flag_value_profile_transformations_set
)
907 flag_value_profile_transformations
= value
;
908 /* Old loop optimizer is incompatible with tree profiling. */
909 if (!flag_loop_optimize_set
)
910 flag_loop_optimize
= 0;
913 case OPT_fprofile_generate
:
914 if (!profile_arc_flag_set
)
915 profile_arc_flag
= value
;
916 if (!flag_profile_values_set
)
917 flag_profile_values
= value
;
918 if (!flag_value_profile_transformations_set
)
919 flag_value_profile_transformations
= value
;
922 case OPT_fprofile_values
:
923 flag_profile_values_set
= true;
926 case OPT_fvisibility_
:
928 if (!strcmp(arg
, "default"))
929 default_visibility
= VISIBILITY_DEFAULT
;
930 else if (!strcmp(arg
, "internal"))
931 default_visibility
= VISIBILITY_INTERNAL
;
932 else if (!strcmp(arg
, "hidden"))
933 default_visibility
= VISIBILITY_HIDDEN
;
934 else if (!strcmp(arg
, "protected"))
935 default_visibility
= VISIBILITY_PROTECTED
;
937 error ("unrecognized visibility value \"%s\"", arg
);
942 flag_value_profile_transformations_set
= true;
945 case OPT_frandom_seed
:
946 /* The real switch is -fno-random-seed. */
949 flag_random_seed
= NULL
;
952 case OPT_frandom_seed_
:
953 flag_random_seed
= arg
;
956 case OPT_fsched_verbose_
:
957 #ifdef INSN_SCHEDULING
958 fix_sched_param ("verbose", arg
);
964 case OPT_fsched_stalled_insns_
:
965 flag_sched_stalled_insns
= value
;
966 if (flag_sched_stalled_insns
== 0)
967 flag_sched_stalled_insns
= -1;
970 case OPT_fsched_stalled_insns_dep_
:
971 flag_sched_stalled_insns_dep
= value
;
974 case OPT_fstack_limit
:
975 /* The real switch is -fno-stack-limit. */
978 stack_limit_rtx
= NULL_RTX
;
981 case OPT_fstack_limit_register_
:
983 int reg
= decode_reg_name (arg
);
985 error ("unrecognized register name \"%s\"", arg
);
987 stack_limit_rtx
= gen_rtx_REG (Pmode
, reg
);
991 case OPT_fstack_limit_symbol_
:
992 stack_limit_rtx
= gen_rtx_SYMBOL_REF (Pmode
, ggc_strdup (arg
));
995 case OPT_ftree_vectorizer_verbose_
:
996 vect_set_verbosity_level (arg
);
999 case OPT_ftls_model_
:
1000 if (!strcmp (arg
, "global-dynamic"))
1001 flag_tls_default
= TLS_MODEL_GLOBAL_DYNAMIC
;
1002 else if (!strcmp (arg
, "local-dynamic"))
1003 flag_tls_default
= TLS_MODEL_LOCAL_DYNAMIC
;
1004 else if (!strcmp (arg
, "initial-exec"))
1005 flag_tls_default
= TLS_MODEL_INITIAL_EXEC
;
1006 else if (!strcmp (arg
, "local-exec"))
1007 flag_tls_default
= TLS_MODEL_LOCAL_EXEC
;
1009 warning (0, "unknown tls-model \"%s\"", arg
);
1013 flag_tracer_set
= true;
1016 case OPT_funroll_loops
:
1017 flag_unroll_loops_set
= true;
1021 set_debug_level (NO_DEBUG
, DEFAULT_GDB_EXTENSIONS
, arg
);
1025 set_debug_level (SDB_DEBUG
, false, arg
);
1029 set_debug_level (DWARF2_DEBUG
, false, arg
);
1033 set_debug_level (NO_DEBUG
, 2, arg
);
1038 set_debug_level (DBX_DEBUG
, code
== OPT_gstabs_
, arg
);
1042 set_debug_level (VMS_DEBUG
, false, arg
);
1047 set_debug_level (XCOFF_DEBUG
, code
== OPT_gxcoff_
, arg
);
1051 asm_file_name
= arg
;
1054 case OPT_pedantic_errors
:
1055 flag_pedantic_errors
= pedantic
= 1;
1058 case OPT_fforce_mem
:
1059 warning (0, "-f[no-]force-mem is nop and option will be removed in 4.2");
1063 /* If the flag was handled in a standard way, assume the lack of
1064 processing here is intentional. */
1065 gcc_assert (cl_options
[scode
].flag_var
);
1072 /* Handle --param NAME=VALUE. */
1074 handle_param (const char *carg
)
1079 arg
= xstrdup (carg
);
1080 equal
= strchr (arg
, '=');
1082 error ("%s: --param arguments should be of the form NAME=VALUE", arg
);
1085 value
= integral_argument (equal
+ 1);
1087 error ("invalid --param value %qs", equal
+ 1);
1091 set_param_value (arg
, value
);
1098 /* Handle -W and -Wextra. */
1100 set_Wextra (int setting
)
1102 extra_warnings
= setting
;
1103 warn_unused_value
= setting
;
1104 warn_unused_parameter
= (setting
&& maybe_warn_unused_parameter
);
1106 /* We save the value of warn_uninitialized, since if they put
1107 -Wuninitialized on the command line, we need to generate a
1108 warning about not using it without also specifying -O. */
1110 warn_uninitialized
= 0;
1111 else if (warn_uninitialized
!= 1)
1112 warn_uninitialized
= 2;
1115 /* Initialize unused warning flags. */
1117 set_Wunused (int setting
)
1119 warn_unused_function
= setting
;
1120 warn_unused_label
= setting
;
1121 /* Unused function parameter warnings are reported when either
1122 ``-Wextra -Wunused'' or ``-Wunused-parameter'' is specified.
1123 Thus, if -Wextra has already been seen, set warn_unused_parameter;
1124 otherwise set maybe_warn_extra_parameter, which will be picked up
1126 maybe_warn_unused_parameter
= setting
;
1127 warn_unused_parameter
= (setting
&& extra_warnings
);
1128 warn_unused_variable
= setting
;
1129 warn_unused_value
= setting
;
1132 /* The following routines are useful in setting all the flags that
1133 -ffast-math and -fno-fast-math imply. */
1135 set_fast_math_flags (int set
)
1137 flag_trapping_math
= !set
;
1138 flag_unsafe_math_optimizations
= set
;
1139 flag_finite_math_only
= set
;
1140 flag_errno_math
= !set
;
1143 flag_signaling_nans
= 0;
1144 flag_rounding_math
= 0;
1145 flag_cx_limited_range
= 1;
1149 /* Return true iff flags are set as if -ffast-math. */
1151 fast_math_flags_set_p (void)
1153 return (!flag_trapping_math
1154 && flag_unsafe_math_optimizations
1155 && flag_finite_math_only
1156 && !flag_errno_math
);
1159 /* Handle a debug output -g switch. EXTENDED is true or false to support
1160 extended output (2 is special and means "-ggdb" was given). */
1162 set_debug_level (enum debug_info_type type
, int extended
, const char *arg
)
1164 static bool type_explicit
;
1166 use_gnu_debug_info_extensions
= extended
;
1168 if (type
== NO_DEBUG
)
1170 if (write_symbols
== NO_DEBUG
)
1172 write_symbols
= PREFERRED_DEBUGGING_TYPE
;
1176 #ifdef DWARF2_DEBUGGING_INFO
1177 write_symbols
= DWARF2_DEBUG
;
1178 #elif defined DBX_DEBUGGING_INFO
1179 write_symbols
= DBX_DEBUG
;
1183 if (write_symbols
== NO_DEBUG
)
1184 warning (0, "target system does not support debug output");
1189 /* Does it conflict with an already selected type? */
1190 if (type_explicit
&& write_symbols
!= NO_DEBUG
&& type
!= write_symbols
)
1191 error ("debug format \"%s\" conflicts with prior selection",
1192 debug_type_names
[type
]);
1193 write_symbols
= type
;
1194 type_explicit
= true;
1197 /* A debug flag without a level defaults to level 2. */
1200 if (!debug_info_level
)
1201 debug_info_level
= 2;
1205 debug_info_level
= integral_argument (arg
);
1206 if (debug_info_level
== (unsigned int) -1)
1207 error ("unrecognised debug output level \"%s\"", arg
);
1208 else if (debug_info_level
> 3)
1209 error ("debug output level %s is too high", arg
);
1213 /* Display help for target options. */
1215 print_target_help (void)
1218 static bool displayed
= false;
1220 /* Avoid double printing for --help --target-help. */
1225 for (i
= 0; i
< cl_options_count
; i
++)
1226 if ((cl_options
[i
].flags
& (CL_TARGET
| CL_UNDOCUMENTED
)) == CL_TARGET
)
1228 printf (_("\nTarget specific options:\n"));
1229 print_filtered_help (CL_TARGET
);
1234 /* Output --help text. */
1241 GET_ENVIRONMENT (p
, "COLUMNS");
1244 int value
= atoi (p
);
1249 puts (_("The following options are language-independent:\n"));
1251 print_filtered_help (CL_COMMON
);
1252 print_param_help ();
1254 for (i
= 0; lang_names
[i
]; i
++)
1256 printf (_("The %s front end recognizes the following options:\n\n"),
1258 print_filtered_help (1U << i
);
1260 print_target_help ();
1263 /* Print the help for --param. */
1265 print_param_help (void)
1269 puts (_("The --param option recognizes the following as parameters:\n"));
1271 for (i
= 0; i
< LAST_PARAM
; i
++)
1273 const char *help
= compiler_params
[i
].help
;
1274 const char *param
= compiler_params
[i
].option
;
1276 if (help
== NULL
|| *help
== '\0')
1277 help
= undocumented_msg
;
1279 /* Get the translation. */
1282 wrap_help (help
, param
, strlen (param
));
1288 /* Print help for a specific front-end, etc. */
1290 print_filtered_help (unsigned int flag
)
1292 unsigned int i
, len
, filter
, indent
= 0;
1293 bool duplicates
= false;
1294 const char *help
, *opt
, *tab
;
1295 static char *printed
;
1297 if (flag
== CL_COMMON
|| flag
== CL_TARGET
)
1301 printed
= xmalloc (cl_options_count
);
1302 memset (printed
, 0, cl_options_count
);
1306 /* Don't print COMMON options twice. */
1307 filter
= flag
| CL_COMMON
;
1309 for (i
= 0; i
< cl_options_count
; i
++)
1311 if ((cl_options
[i
].flags
& filter
) != flag
)
1314 /* Skip help for internal switches. */
1315 if (cl_options
[i
].flags
& CL_UNDOCUMENTED
)
1318 /* Skip switches that have already been printed, mark them to be
1323 indent
= print_switch (cl_options
[i
].opt_text
, indent
);
1334 for (i
= 0; i
< cl_options_count
; i
++)
1336 if ((cl_options
[i
].flags
& filter
) != flag
)
1339 /* Skip help for internal switches. */
1340 if (cl_options
[i
].flags
& CL_UNDOCUMENTED
)
1343 /* Skip switches that have already been printed. */
1349 help
= cl_options
[i
].help
;
1351 help
= undocumented_msg
;
1353 /* Get the translation. */
1356 tab
= strchr (help
, '\t');
1365 opt
= cl_options
[i
].opt_text
;
1369 wrap_help (help
, opt
, len
);
1375 /* Output ITEM, of length ITEM_WIDTH, in the left column, followed by
1376 word-wrapped HELP in a second column. */
1378 print_switch (const char *text
, unsigned int indent
)
1380 unsigned int len
= strlen (text
) + 1; /* trailing comma */
1385 if (indent
+ len
> columns
)
1396 fputs (text
, stdout
);
1398 return indent
+ len
+ 1;
1401 /* Output ITEM, of length ITEM_WIDTH, in the left column, followed by
1402 word-wrapped HELP in a second column. */
1404 wrap_help (const char *help
, const char *item
, unsigned int item_width
)
1406 unsigned int col_width
= 27;
1407 unsigned int remaining
, room
, len
;
1409 remaining
= strlen (help
);
1413 room
= columns
- 3 - MAX (col_width
, item_width
);
1422 for (i
= 0; help
[i
]; i
++)
1424 if (i
>= room
&& len
!= remaining
)
1428 else if ((help
[i
] == '-' || help
[i
] == '/')
1429 && help
[i
+ 1] != ' '
1430 && i
> 0 && ISALPHA (help
[i
- 1]))
1435 printf( " %-*.*s %.*s\n", col_width
, item_width
, item
, len
, help
);
1437 while (help
[len
] == ' ')
1445 /* Return 1 if OPTION is enabled, 0 if it is disabled, or -1 if it isn't
1446 a simple on-off switch. */
1449 option_enabled (int opt_idx
)
1451 const struct cl_option
*option
= &(cl_options
[opt_idx
]);
1452 if (option
->flag_var
)
1453 switch (option
->var_type
)
1456 return *(int *) option
->flag_var
!= 0;
1459 return *(int *) option
->flag_var
== option
->var_value
;
1461 case CLVC_BIT_CLEAR
:
1462 return (*(int *) option
->flag_var
& option
->var_value
) == 0;
1465 return (*(int *) option
->flag_var
& option
->var_value
) != 0;
1473 /* Fill STATE with the current state of option OPTION. Return true if
1474 there is some state to store. */
1477 get_option_state (int option
, struct cl_option_state
*state
)
1479 if (cl_options
[option
].flag_var
== 0)
1482 switch (cl_options
[option
].var_type
)
1486 state
->data
= cl_options
[option
].flag_var
;
1487 state
->size
= sizeof (int);
1490 case CLVC_BIT_CLEAR
:
1492 state
->ch
= option_enabled (option
);
1493 state
->data
= &state
->ch
;
1498 state
->data
= *(const char **) cl_options
[option
].flag_var
;
1499 if (state
->data
== 0)
1501 state
->size
= strlen (state
->data
) + 1;