1 /* Command line option handling. Code involving global state that
2 should not be shared with the driver.
3 Copyright (C) 2002-2015 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
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 COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
24 #include "diagnostic.h"
33 #include "fold-const.h"
34 #include "internal-fn.h"
35 #include "langhooks.h"
43 #include "tree-pass.h"
47 typedef const char *const_char_p
; /* For DEF_VEC_P. */
49 static vec
<const_char_p
> ignored_options
;
51 /* Input file names. */
52 const char **in_fnames
;
53 unsigned num_in_fnames
;
55 /* Return a malloced slash-separated list of languages in MASK. */
58 write_langs (unsigned int mask
)
60 unsigned int n
= 0, len
= 0;
61 const char *lang_name
;
64 for (n
= 0; (lang_name
= lang_names
[n
]) != 0; n
++)
66 len
+= strlen (lang_name
) + 1;
68 result
= XNEWVEC (char, len
);
70 for (n
= 0; (lang_name
= lang_names
[n
]) != 0; n
++)
75 strcpy (result
+ len
, lang_name
);
76 len
+= strlen (lang_name
);
84 /* Complain that switch DECODED does not apply to this front end (mask
88 complain_wrong_lang (const struct cl_decoded_option
*decoded
,
89 unsigned int lang_mask
)
91 const struct cl_option
*option
= &cl_options
[decoded
->opt_index
];
92 const char *text
= decoded
->orig_option_with_args_text
;
93 char *ok_langs
= NULL
, *bad_lang
= NULL
;
94 unsigned int opt_flags
= option
->flags
;
96 if (!lang_hooks
.complain_wrong_lang_p (option
))
99 opt_flags
&= ((1U << cl_lang_count
) - 1) | CL_DRIVER
;
100 if (opt_flags
!= CL_DRIVER
)
101 ok_langs
= write_langs (opt_flags
);
102 if (lang_mask
!= CL_DRIVER
)
103 bad_lang
= write_langs (lang_mask
);
105 if (opt_flags
== CL_DRIVER
)
106 error ("command line option %qs is valid for the driver but not for %s",
108 else if (lang_mask
== CL_DRIVER
)
111 /* Eventually this should become a hard error IMO. */
112 warning (0, "command line option %qs is valid for %s but not for %s",
113 text
, ok_langs
, bad_lang
);
119 /* Buffer the unknown option described by the string OPT. Currently,
120 we only complain about unknown -Wno-* options if they may have
121 prevented a diagnostic. Otherwise, we just ignore them. Note that
122 if we do complain, it is only as a warning, not an error; passing
123 the compiler an unrecognized -Wno-* option should never change
124 whether the compilation succeeds or fails. */
127 postpone_unknown_option_warning (const char *opt
)
129 ignored_options
.safe_push (opt
);
132 /* Produce a warning for each option previously buffered. */
135 print_ignored_options (void)
137 while (!ignored_options
.is_empty ())
141 opt
= ignored_options
.pop ();
142 warning_at (UNKNOWN_LOCATION
, 0,
143 "unrecognized command line option %qs", opt
);
147 /* Handle an unknown option DECODED, returning true if an error should
151 unknown_option_callback (const struct cl_decoded_option
*decoded
)
153 const char *opt
= decoded
->arg
;
155 if (opt
[1] == 'W' && opt
[2] == 'n' && opt
[3] == 'o' && opt
[4] == '-'
156 && !(decoded
->errors
& CL_ERR_NEGATIVE
))
158 /* We don't generate warnings for unknown -Wno-* options unless
159 we issue diagnostics. */
160 postpone_unknown_option_warning (opt
);
167 /* Handle a front-end option; arguments and return value as for
171 lang_handle_option (struct gcc_options
*opts
,
172 struct gcc_options
*opts_set
,
173 const struct cl_decoded_option
*decoded
,
174 unsigned int lang_mask ATTRIBUTE_UNUSED
, int kind
,
176 const struct cl_option_handlers
*handlers
,
177 diagnostic_context
*dc
)
179 gcc_assert (opts
== &global_options
);
180 gcc_assert (opts_set
== &global_options_set
);
181 gcc_assert (dc
== global_dc
);
182 gcc_assert (decoded
->canonical_option_num_elements
<= 2);
183 return lang_hooks
.handle_option (decoded
->opt_index
, decoded
->arg
,
184 decoded
->value
, kind
, loc
, handlers
);
187 /* Handle FILENAME from the command line. */
190 add_input_filename (const char *filename
)
193 in_fnames
= XRESIZEVEC (const char *, in_fnames
, num_in_fnames
);
194 in_fnames
[num_in_fnames
- 1] = filename
;
197 /* Handle the vector of command line options (located at LOC), storing
198 the results of processing DECODED_OPTIONS and DECODED_OPTIONS_COUNT
199 in OPTS and OPTS_SET and using DC for diagnostic state. LANG_MASK
200 contains has a single bit set representing the current language.
201 HANDLERS describes what functions to call for the options. */
204 read_cmdline_options (struct gcc_options
*opts
, struct gcc_options
*opts_set
,
205 struct cl_decoded_option
*decoded_options
,
206 unsigned int decoded_options_count
,
208 unsigned int lang_mask
,
209 const struct cl_option_handlers
*handlers
,
210 diagnostic_context
*dc
)
214 for (i
= 1; i
< decoded_options_count
; i
++)
216 if (decoded_options
[i
].opt_index
== OPT_SPECIAL_input_file
)
218 /* Input files should only ever appear on the main command
220 gcc_assert (opts
== &global_options
);
221 gcc_assert (opts_set
== &global_options_set
);
223 if (opts
->x_main_input_filename
== NULL
)
225 opts
->x_main_input_filename
= decoded_options
[i
].arg
;
226 opts
->x_main_input_baselength
227 = base_of_path (opts
->x_main_input_filename
,
228 &opts
->x_main_input_basename
);
230 add_input_filename (decoded_options
[i
].arg
);
234 read_cmdline_option (opts
, opts_set
,
235 decoded_options
+ i
, loc
, lang_mask
, handlers
,
240 /* Language mask determined at initialization. */
241 static unsigned int initial_lang_mask
;
243 /* Initialize global options-related settings at start-up. */
246 init_options_once (void)
248 /* Perform language-specific options initialization. */
249 initial_lang_mask
= lang_hooks
.option_lang_mask ();
251 lang_hooks
.initialize_diagnostics (global_dc
);
252 /* ??? Ideally, we should do this earlier and the FEs will override
253 it if desired (none do it so far). However, the way the FEs
254 construct their pretty-printers means that all previous settings
256 diagnostic_color_init (global_dc
);
259 /* Decode command-line options to an array, like
260 decode_cmdline_options_to_array and with the same arguments but
261 using the default lang_mask. */
264 decode_cmdline_options_to_array_default_mask (unsigned int argc
,
266 struct cl_decoded_option
**decoded_options
,
267 unsigned int *decoded_options_count
)
269 decode_cmdline_options_to_array (argc
, argv
,
270 initial_lang_mask
| CL_COMMON
| CL_TARGET
,
271 decoded_options
, decoded_options_count
);
274 /* Set *HANDLERS to the default set of option handlers for use in the
275 compilers proper (not the driver). */
277 set_default_handlers (struct cl_option_handlers
*handlers
)
279 handlers
->unknown_option_callback
= unknown_option_callback
;
280 handlers
->wrong_lang_callback
= complain_wrong_lang
;
281 handlers
->num_handlers
= 3;
282 handlers
->handlers
[0].handler
= lang_handle_option
;
283 handlers
->handlers
[0].mask
= initial_lang_mask
;
284 handlers
->handlers
[1].handler
= common_handle_option
;
285 handlers
->handlers
[1].mask
= CL_COMMON
;
286 handlers
->handlers
[2].handler
= target_handle_option
;
287 handlers
->handlers
[2].mask
= CL_TARGET
;
290 /* Parse command line options and set default flag values. Do minimal
291 options processing. The decoded options are in *DECODED_OPTIONS
292 and *DECODED_OPTIONS_COUNT; settings go in OPTS, OPTS_SET and DC;
293 the options are located at LOC. */
295 decode_options (struct gcc_options
*opts
, struct gcc_options
*opts_set
,
296 struct cl_decoded_option
*decoded_options
,
297 unsigned int decoded_options_count
,
298 location_t loc
, diagnostic_context
*dc
)
300 struct cl_option_handlers handlers
;
302 unsigned int lang_mask
;
304 lang_mask
= initial_lang_mask
;
306 set_default_handlers (&handlers
);
308 default_options_optimization (opts
, opts_set
,
309 decoded_options
, decoded_options_count
,
310 loc
, lang_mask
, &handlers
, dc
);
312 read_cmdline_options (opts
, opts_set
,
313 decoded_options
, decoded_options_count
,
317 finish_options (opts
, opts_set
, loc
);
320 /* Process common options that have been deferred until after the
321 handlers have been called for all options. */
324 handle_common_deferred_options (void)
327 cl_deferred_option
*opt
;
328 vec
<cl_deferred_option
> v
;
330 if (common_deferred_options
)
331 v
= *((vec
<cl_deferred_option
> *) common_deferred_options
);
335 if (flag_dump_all_passed
)
336 enable_rtl_dump_file ();
339 opt_info_switch_p (NULL
);
341 FOR_EACH_VEC_ELT (v
, i
, opt
)
343 switch (opt
->opt_index
)
345 case OPT_fcall_used_
:
346 fix_register (opt
->arg
, 0, 1);
349 case OPT_fcall_saved_
:
350 fix_register (opt
->arg
, 0, 0);
354 dbg_cnt_process_opt (opt
->arg
);
357 case OPT_fdbg_cnt_list
:
358 dbg_cnt_list_all_counters ();
361 case OPT_fdebug_prefix_map_
:
362 add_debug_prefix_map (opt
->arg
);
366 if (!g
->get_dumps ()->dump_switch_p (opt
->arg
))
367 error ("unrecognized command line option %<-fdump-%s%>", opt
->arg
);
371 if (!opt_info_switch_p (opt
->arg
))
372 error ("unrecognized command line option %<-fopt-info-%s%>",
378 if (opt
->opt_index
== OPT_fenable_
)
379 enable_pass (opt
->arg
);
381 disable_pass (opt
->arg
);
386 fix_register (opt
->arg
, 1, 1);
391 add_new_plugin (opt
->arg
);
393 error ("plugin support is disabled; configure with --enable-plugin");
397 case OPT_fplugin_arg_
:
399 parse_plugin_arg_opt (opt
->arg
);
401 error ("plugin support is disabled; configure with --enable-plugin");
405 case OPT_frandom_seed
:
406 /* The real switch is -fno-random-seed. */
408 set_random_seed (NULL
);
411 case OPT_frandom_seed_
:
412 set_random_seed (opt
->arg
);
415 case OPT_fstack_limit
:
416 /* The real switch is -fno-stack-limit. */
418 stack_limit_rtx
= NULL_RTX
;
421 case OPT_fstack_limit_register_
:
423 int reg
= decode_reg_name (opt
->arg
);
425 error ("unrecognized register name %qs", opt
->arg
);
427 stack_limit_rtx
= gen_rtx_REG (Pmode
, reg
);
431 case OPT_fstack_limit_symbol_
:
432 stack_limit_rtx
= gen_rtx_SYMBOL_REF (Pmode
, ggc_strdup (opt
->arg
));
435 case OPT_fasan_shadow_offset_
:
436 if (!(flag_sanitize
& SANITIZE_KERNEL_ADDRESS
))
437 error ("-fasan-shadow-offset should only be used "
438 "with -fsanitize=kernel-address");
439 if (!set_asan_shadow_offset (opt
->arg
))
440 error ("unrecognized shadow offset %qs", opt
->arg
);
443 case OPT_fsanitize_sections_
:
444 set_sanitized_sections (opt
->arg
);