(read_braced_string): Check for EOF. If encountered issue an error message.
[official-gcc.git] / gcc / c-opts.c
blob3de89e488f6135e25c116089b3b45af5db984591
1 /* C/ObjC/C++ command line option handling.
2 Copyright (C) 2002, 2003 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
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
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, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "tree.h"
27 #include "c-common.h"
28 #include "c-pragma.h"
29 #include "flags.h"
30 #include "toplev.h"
31 #include "langhooks.h"
32 #include "tree-inline.h"
33 #include "diagnostic.h"
34 #include "intl.h"
35 #include "cppdefault.h"
36 #include "c-incpath.h"
37 #include "debug.h" /* For debug_hooks. */
38 #include "opts.h"
39 #include "options.h"
41 #ifndef DOLLARS_IN_IDENTIFIERS
42 # define DOLLARS_IN_IDENTIFIERS true
43 #endif
45 #ifndef TARGET_SYSTEM_ROOT
46 # define TARGET_SYSTEM_ROOT NULL
47 #endif
49 #ifndef TARGET_EBCDIC
50 # define TARGET_EBCDIC 0
51 #endif
53 static const int lang_flags[] = {CL_C, CL_ObjC, CL_CXX, CL_ObjCXX};
55 static int saved_lineno;
57 /* CPP's options. */
58 static cpp_options *cpp_opts;
60 /* Input filename. */
61 static const char *in_fname;
63 /* Filename and stream for preprocessed output. */
64 static const char *out_fname;
65 static FILE *out_stream;
67 /* Append dependencies to deps_file. */
68 static bool deps_append;
70 /* If dependency switches (-MF etc.) have been given. */
71 static bool deps_seen;
73 /* If -v seen. */
74 static bool verbose;
76 /* Dependency output file. */
77 static const char *deps_file;
79 /* The prefix given by -iprefix, if any. */
80 static const char *iprefix;
82 /* The system root, if any. Overridden by -isysroot. */
83 static const char *sysroot = TARGET_SYSTEM_ROOT;
85 /* Zero disables all standard directories for headers. */
86 static bool std_inc = true;
88 /* Zero disables the C++-specific standard directories for headers. */
89 static bool std_cxx_inc = true;
91 /* If the quote chain has been split by -I-. */
92 static bool quote_chain_split;
94 /* If -Wunused-macros. */
95 static bool warn_unused_macros;
97 /* Number of deferred options, deferred options array size. */
98 static size_t deferred_count, deferred_size;
100 /* Number of deferred options scanned for -include. */
101 static size_t include_cursor;
103 static void missing_arg (enum opt_code);
104 static void set_Wimplicit (int);
105 static void complain_wrong_lang (size_t, int);
106 static void write_langs (char *, int);
107 static void print_help (void);
108 static void handle_OPT_d (const char *);
109 static void set_std_cxx98 (int);
110 static void set_std_c89 (int, int);
111 static void set_std_c99 (int);
112 static void check_deps_environment_vars (void);
113 static void handle_deferred_opts (void);
114 static void sanitize_cpp_opts (void);
115 static void add_prefixed_path (const char *, size_t);
116 static void push_command_line_include (void);
117 static void cb_file_change (cpp_reader *, const struct line_map *);
118 static void finish_options (void);
120 #ifndef STDC_0_IN_SYSTEM_HEADERS
121 #define STDC_0_IN_SYSTEM_HEADERS 0
122 #endif
124 /* Holds switches parsed by c_common_handle_option (), but whose
125 handling is deferred to c_common_post_options (). */
126 static void defer_opt (enum opt_code, const char *);
127 static struct deferred_opt
129 enum opt_code code;
130 const char *arg;
131 } *deferred_opts;
133 /* Complain that switch OPT_INDEX expects an argument but none was
134 provided. */
135 static void
136 missing_arg (enum opt_code code)
138 const char *opt_text = cl_options[code].opt_text;
140 switch (code)
142 case OPT__output_pch_:
143 case OPT_Wformat_:
144 case OPT_d:
145 case OPT_fabi_version_:
146 case OPT_fbuiltin_:
147 case OPT_fdump_:
148 case OPT_fname_mangling_version_:
149 case OPT_ftabstop_:
150 case OPT_ftemplate_depth_:
151 case OPT_iprefix:
152 case OPT_iwithprefix:
153 case OPT_iwithprefixbefore:
154 default:
155 error ("missing argument to \"-%s\"", opt_text);
156 break;
158 case OPT_fconstant_string_class_:
159 error ("no class name specified with \"-%s\"", opt_text);
160 break;
162 case OPT_A:
163 error ("assertion missing after \"-%s\"", opt_text);
164 break;
166 case OPT_D:
167 case OPT_U:
168 error ("macro name missing after \"-%s\"", opt_text);
169 break;
171 case OPT_I:
172 case OPT_idirafter:
173 case OPT_isysroot:
174 case OPT_isystem:
175 error ("missing path after \"-%s\"", opt_text);
176 break;
178 case OPT_MF:
179 case OPT_MD:
180 case OPT_MMD:
181 case OPT_include:
182 case OPT_imacros:
183 case OPT_o:
184 error ("missing filename after \"-%s\"", opt_text);
185 break;
187 case OPT_MQ:
188 case OPT_MT:
189 error ("missing target after \"-%s\"", opt_text);
190 break;
194 /* Defer option CODE with argument ARG. */
195 static void
196 defer_opt (enum opt_code code, const char *arg)
198 /* FIXME: this should be in c_common_init_options, which should take
199 argc and argv. */
200 if (!deferred_opts)
202 extern int save_argc;
203 deferred_size = save_argc;
204 deferred_opts = (struct deferred_opt *)
205 xmalloc (deferred_size * sizeof (struct deferred_opt));
208 if (deferred_count == deferred_size)
209 abort ();
211 deferred_opts[deferred_count].code = code;
212 deferred_opts[deferred_count].arg = arg;
213 deferred_count++;
216 /* Common initialization before parsing options. */
218 c_common_init_options (enum c_language_kind lang)
220 c_language = lang;
221 parse_in = cpp_create_reader (lang == clk_c ? CLK_GNUC89 : CLK_GNUCXX,
222 ident_hash);
223 cpp_opts = cpp_get_options (parse_in);
224 cpp_opts->dollars_in_ident = DOLLARS_IN_IDENTIFIERS;
226 /* Reset to avoid warnings on internal definitions. We set it just
227 before passing on command-line options to cpplib. */
228 cpp_opts->warn_dollars = 0;
230 if (flag_objc)
231 cpp_opts->objc = 1;
233 flag_const_strings = (lang == clk_cplusplus);
234 warn_pointer_arith = (lang == clk_cplusplus);
236 return lang_flags[(c_language << 1) + flag_objc];
239 /* Handle switch SCODE with argument ARG. ON is true, unless no-
240 form of an -f or -W option was given. Returns 0 if the switch was
241 invalid, a negative number to prevent language-independent
242 processing in toplev.c (a hack necessary for the short-term). */
244 c_common_handle_option (size_t scode, const char *arg, int value)
246 const struct cl_option *option = &cl_options[scode];
247 enum opt_code code = (enum opt_code) scode;
248 int result = 1, lang_mask;
250 if (code == N_OPTS)
252 if (!in_fname)
253 in_fname = arg;
254 else if (!out_fname)
255 out_fname = arg;
256 else
257 error ("too many filenames given. Type %s --help for usage",
258 progname);
259 return 1;
262 lang_mask = lang_flags[(c_language << 1) + flag_objc];
263 if (!(option->flags & lang_mask))
265 complain_wrong_lang (code, value);
266 return 1;
269 if (arg == NULL && (option->flags & (CL_JOINED | CL_SEPARATE)))
271 missing_arg (code);
272 return 1;
275 switch (code)
277 default:
278 return 0;
280 case OPT__help:
281 print_help ();
282 break;
284 case OPT__output_pch_:
285 pch_file = arg;
286 break;
288 case OPT_A:
289 defer_opt (code, arg);
290 break;
292 case OPT_C:
293 cpp_opts->discard_comments = 0;
294 break;
296 case OPT_CC:
297 cpp_opts->discard_comments = 0;
298 cpp_opts->discard_comments_in_macro_exp = 0;
299 break;
301 case OPT_D:
302 defer_opt (code, arg);
303 break;
305 case OPT_E:
306 flag_preprocess_only = 1;
307 break;
309 case OPT_H:
310 cpp_opts->print_include_names = 1;
311 break;
313 case OPT_I:
314 if (strcmp (arg, "-"))
315 add_path (xstrdup (arg), BRACKET, 0);
316 else
318 if (quote_chain_split)
319 error ("-I- specified twice");
320 quote_chain_split = true;
321 split_quote_chain ();
323 break;
325 case OPT_M:
326 case OPT_MM:
327 /* When doing dependencies with -M or -MM, suppress normal
328 preprocessed output, but still do -dM etc. as software
329 depends on this. Preprocessed output does occur if -MD, -MMD
330 or environment var dependency generation is used. */
331 cpp_opts->deps.style = (code == OPT_M ? DEPS_SYSTEM: DEPS_USER);
332 flag_no_output = 1;
333 cpp_opts->inhibit_warnings = 1;
334 break;
336 case OPT_MD:
337 case OPT_MMD:
338 cpp_opts->deps.style = (code == OPT_MD ? DEPS_SYSTEM: DEPS_USER);
339 deps_file = arg;
340 break;
342 case OPT_MF:
343 deps_seen = true;
344 deps_file = arg;
345 break;
347 case OPT_MG:
348 deps_seen = true;
349 cpp_opts->deps.missing_files = true;
350 break;
352 case OPT_MP:
353 deps_seen = true;
354 cpp_opts->deps.phony_targets = true;
355 break;
357 case OPT_MQ:
358 case OPT_MT:
359 deps_seen = true;
360 defer_opt (code, arg);
361 break;
363 case OPT_P:
364 flag_no_line_commands = 1;
365 break;
367 case OPT_U:
368 defer_opt (code, arg);
369 break;
371 case OPT_Wabi:
372 warn_abi = value;
373 break;
375 case OPT_Wall:
376 set_Wunused (value);
377 set_Wformat (value);
378 set_Wimplicit (value);
379 warn_char_subscripts = value;
380 warn_missing_braces = value;
381 warn_parentheses = value;
382 warn_return_type = value;
383 warn_sequence_point = value; /* Was C only. */
384 if (c_language == clk_cplusplus)
385 warn_sign_compare = value;
386 warn_switch = value;
387 warn_strict_aliasing = value;
389 /* Only warn about unknown pragmas that are not in system
390 headers. */
391 warn_unknown_pragmas = value;
393 /* We save the value of warn_uninitialized, since if they put
394 -Wuninitialized on the command line, we need to generate a
395 warning about not using it without also specifying -O. */
396 if (warn_uninitialized != 1)
397 warn_uninitialized = (value ? 2 : 0);
399 if (c_language == clk_c)
400 /* We set this to 2 here, but 1 in -Wmain, so -ffreestanding
401 can turn it off only if it's not explicit. */
402 warn_main = value * 2;
403 else
405 /* C++-specific warnings. */
406 warn_nonvdtor = value;
407 warn_reorder = value;
408 warn_nontemplate_friend = value;
411 cpp_opts->warn_trigraphs = value;
412 cpp_opts->warn_comments = value;
413 cpp_opts->warn_num_sign_change = value;
414 cpp_opts->warn_multichar = value; /* Was C++ only. */
415 break;
417 case OPT_Wbad_function_cast:
418 warn_bad_function_cast = value;
419 break;
421 case OPT_Wcast_qual:
422 warn_cast_qual = value;
423 break;
425 case OPT_Wchar_subscripts:
426 warn_char_subscripts = value;
427 break;
429 case OPT_Wcomment:
430 case OPT_Wcomments:
431 cpp_opts->warn_comments = value;
432 break;
434 case OPT_Wconversion:
435 warn_conversion = value;
436 break;
438 case OPT_Wctor_dtor_privacy:
439 warn_ctor_dtor_privacy = value;
440 break;
442 case OPT_Wdeprecated:
443 warn_deprecated = value;
444 cpp_opts->warn_deprecated = value;
445 break;
447 case OPT_Wdiv_by_zero:
448 warn_div_by_zero = value;
449 break;
451 case OPT_Weffc__:
452 warn_ecpp = value;
453 break;
455 case OPT_Wendif_labels:
456 cpp_opts->warn_endif_labels = value;
457 break;
459 case OPT_Werror:
460 cpp_opts->warnings_are_errors = value;
461 break;
463 case OPT_Werror_implicit_function_declaration:
464 mesg_implicit_function_declaration = 2;
465 break;
467 case OPT_Wfloat_equal:
468 warn_float_equal = value;
469 break;
471 case OPT_Wformat:
472 set_Wformat (value);
473 break;
475 case OPT_Wformat_:
476 set_Wformat (atoi (arg));
477 break;
479 case OPT_Wformat_extra_args:
480 warn_format_extra_args = value;
481 break;
483 case OPT_Wformat_nonliteral:
484 warn_format_nonliteral = value;
485 break;
487 case OPT_Wformat_security:
488 warn_format_security = value;
489 break;
491 case OPT_Wformat_y2k:
492 warn_format_y2k = value;
493 break;
495 case OPT_Wformat_zero_length:
496 warn_format_zero_length = value;
497 break;
499 case OPT_Wimplicit:
500 set_Wimplicit (value);
501 break;
503 case OPT_Wimplicit_function_declaration:
504 mesg_implicit_function_declaration = value;
505 break;
507 case OPT_Wimplicit_int:
508 warn_implicit_int = value;
509 break;
511 case OPT_Wimport:
512 cpp_opts->warn_import = value;
513 break;
515 case OPT_Winvalid_offsetof:
516 warn_invalid_offsetof = value;
517 break;
519 case OPT_Winvalid_pch:
520 cpp_opts->warn_invalid_pch = value;
521 break;
523 case OPT_Wlong_long:
524 warn_long_long = value;
525 break;
527 case OPT_Wmain:
528 if (value)
529 warn_main = 1;
530 else
531 warn_main = -1;
532 break;
534 case OPT_Wmissing_braces:
535 warn_missing_braces = value;
536 break;
538 case OPT_Wmissing_declarations:
539 warn_missing_declarations = value;
540 break;
542 case OPT_Wmissing_format_attribute:
543 warn_missing_format_attribute = value;
544 break;
546 case OPT_Wmissing_prototypes:
547 warn_missing_prototypes = value;
548 break;
550 case OPT_Wmultichar:
551 cpp_opts->warn_multichar = value;
552 break;
554 case OPT_Wnested_externs:
555 warn_nested_externs = value;
556 break;
558 case OPT_Wnon_template_friend:
559 warn_nontemplate_friend = value;
560 break;
562 case OPT_Wnon_virtual_dtor:
563 warn_nonvdtor = value;
564 break;
566 case OPT_Wnonnull:
567 warn_nonnull = value;
568 break;
570 case OPT_Wold_style_cast:
571 warn_old_style_cast = value;
572 break;
574 case OPT_Woverloaded_virtual:
575 warn_overloaded_virtual = value;
576 break;
578 case OPT_Wparentheses:
579 warn_parentheses = value;
580 break;
582 case OPT_Wpmf_conversions:
583 warn_pmf2ptr = value;
584 break;
586 case OPT_Wpointer_arith:
587 warn_pointer_arith = value;
588 break;
590 case OPT_Wprotocol:
591 warn_protocol = value;
592 break;
594 case OPT_Wselector:
595 warn_selector = value;
596 break;
598 case OPT_Wredundant_decls:
599 warn_redundant_decls = value;
600 break;
602 case OPT_Wreorder:
603 warn_reorder = value;
604 break;
606 case OPT_Wreturn_type:
607 warn_return_type = value;
608 break;
610 case OPT_Wsequence_point:
611 warn_sequence_point = value;
612 break;
614 case OPT_Wsign_compare:
615 warn_sign_compare = value;
616 break;
618 case OPT_Wsign_promo:
619 warn_sign_promo = value;
620 break;
622 case OPT_Wstrict_prototypes:
623 warn_strict_prototypes = value;
624 break;
626 case OPT_Wsynth:
627 warn_synth = value;
628 break;
630 case OPT_Wsystem_headers:
631 cpp_opts->warn_system_headers = value;
632 break;
634 case OPT_Wtraditional:
635 warn_traditional = value;
636 cpp_opts->warn_traditional = value;
637 break;
639 case OPT_Wtrigraphs:
640 cpp_opts->warn_trigraphs = value;
641 break;
643 case OPT_Wundeclared_selector:
644 warn_undeclared_selector = value;
645 break;
647 case OPT_Wundef:
648 cpp_opts->warn_undef = value;
649 break;
651 case OPT_Wunknown_pragmas:
652 /* Set to greater than 1, so that even unknown pragmas in
653 system headers will be warned about. */
654 warn_unknown_pragmas = value * 2;
655 break;
657 case OPT_Wunused_macros:
658 warn_unused_macros = value;
659 break;
661 case OPT_Wwrite_strings:
662 if (c_language == clk_c)
663 flag_const_strings = value;
664 else
665 warn_write_strings = value;
666 break;
668 case OPT_ansi:
669 if (c_language == clk_c)
670 set_std_c89 (false, true);
671 else
672 set_std_cxx98 (true);
673 break;
675 case OPT_d:
676 handle_OPT_d (arg);
677 break;
679 case OPT_fcond_mismatch:
680 if (c_language == clk_c)
682 flag_cond_mismatch = value;
683 break;
685 /* Fall through. */
687 case OPT_fall_virtual:
688 case OPT_fenum_int_equiv:
689 case OPT_fguiding_decls:
690 case OPT_fhonor_std:
691 case OPT_fhuge_objects:
692 case OPT_flabels_ok:
693 case OPT_fname_mangling_version_:
694 case OPT_fnew_abi:
695 case OPT_fnonnull_objects:
696 case OPT_fsquangle:
697 case OPT_fstrict_prototype:
698 case OPT_fthis_is_variable:
699 case OPT_fvtable_thunks:
700 case OPT_fxref:
701 warning ("switch \"%s\" is no longer supported", option->opt_text);
702 break;
704 case OPT_fabi_version_:
705 flag_abi_version = value;
706 break;
708 case OPT_faccess_control:
709 flag_access_control = value;
710 break;
712 case OPT_falt_external_templates:
713 flag_alt_external_templates = value;
714 if (value)
715 flag_external_templates = true;
716 cp_deprecated:
717 warning ("switch \"%s\" is deprecated, please see documentation for details", option->opt_text);
718 break;
720 case OPT_fasm:
721 flag_no_asm = !value;
722 break;
724 case OPT_fbuiltin:
725 flag_no_builtin = !value;
726 break;
728 case OPT_fbuiltin_:
729 if (value)
730 result = 0;
731 else
732 disable_builtin_function (arg);
733 break;
735 case OPT_fdollars_in_identifiers:
736 cpp_opts->dollars_in_ident = value;
737 break;
739 case OPT_fdump_:
740 if (!dump_switch_p (arg))
741 result = 0;
742 break;
744 case OPT_ffreestanding:
745 value = !value;
746 /* Fall through... */
747 case OPT_fhosted:
748 flag_hosted = value;
749 flag_no_builtin = !value;
750 /* warn_main will be 2 if set by -Wall, 1 if set by -Wmain */
751 if (!value && warn_main == 2)
752 warn_main = 0;
753 break;
755 case OPT_fshort_double:
756 flag_short_double = value;
757 break;
759 case OPT_fshort_enums:
760 flag_short_enums = value;
761 break;
763 case OPT_fshort_wchar:
764 flag_short_wchar = value;
765 break;
767 case OPT_fsigned_bitfields:
768 flag_signed_bitfields = value;
769 explicit_flag_signed_bitfields = 1;
770 break;
772 case OPT_fsigned_char:
773 flag_signed_char = value;
774 break;
776 case OPT_funsigned_bitfields:
777 flag_signed_bitfields = !value;
778 explicit_flag_signed_bitfields = 1;
779 break;
781 case OPT_funsigned_char:
782 flag_signed_char = !value;
783 break;
785 case OPT_fcheck_new:
786 flag_check_new = value;
787 break;
789 case OPT_fconserve_space:
790 flag_conserve_space = value;
791 break;
793 case OPT_fconst_strings:
794 flag_const_strings = value;
795 break;
797 case OPT_fconstant_string_class_:
798 constant_string_class_name = arg;
799 break;
801 case OPT_fdefault_inline:
802 flag_default_inline = value;
803 break;
805 case OPT_felide_constructors:
806 flag_elide_constructors = value;
807 break;
809 case OPT_fenforce_eh_specs:
810 flag_enforce_eh_specs = value;
811 break;
813 case OPT_fexternal_templates:
814 flag_external_templates = value;
815 goto cp_deprecated;
817 case OPT_ffixed_form:
818 case OPT_ffixed_line_length_:
819 /* Fortran front end options ignored when preprocessing only. */
820 if (!flag_preprocess_only)
821 result = 0;
822 break;
824 case OPT_ffor_scope:
825 flag_new_for_scope = value;
826 break;
828 case OPT_fgnu_keywords:
829 flag_no_gnu_keywords = !value;
830 break;
832 case OPT_fgnu_runtime:
833 flag_next_runtime = !value;
834 break;
836 case OPT_fhandle_exceptions:
837 warning ("-fhandle-exceptions has been renamed -fexceptions (and is now on by default)");
838 flag_exceptions = value;
839 break;
841 case OPT_fimplement_inlines:
842 flag_implement_inlines = value;
843 break;
845 case OPT_fimplicit_inline_templates:
846 flag_implicit_inline_templates = value;
847 break;
849 case OPT_fimplicit_templates:
850 flag_implicit_templates = value;
851 break;
853 case OPT_fms_extensions:
854 flag_ms_extensions = value;
855 break;
857 case OPT_fnext_runtime:
858 flag_next_runtime = value;
859 break;
861 case OPT_fnonansi_builtins:
862 flag_no_nonansi_builtin = !value;
863 break;
865 case OPT_foperator_names:
866 cpp_opts->operator_names = value;
867 break;
869 case OPT_foptional_diags:
870 flag_optional_diags = value;
871 break;
873 case OPT_fpch_deps:
874 cpp_opts->restore_pch_deps = value;
875 break;
877 case OPT_fpermissive:
878 flag_permissive = value;
879 break;
881 case OPT_fpreprocessed:
882 cpp_opts->preprocessed = value;
883 break;
885 case OPT_frepo:
886 flag_use_repository = value;
887 if (value)
888 flag_implicit_templates = 0;
889 break;
891 case OPT_frtti:
892 flag_rtti = value;
893 break;
895 case OPT_fshow_column:
896 cpp_opts->show_column = value;
897 break;
899 case OPT_fstats:
900 flag_detailed_statistics = value;
901 break;
903 case OPT_ftabstop_:
904 /* It is documented that we silently ignore silly values. */
905 if (value >= 1 && value <= 100)
906 cpp_opts->tabstop = value;
907 break;
909 case OPT_ftemplate_depth_:
910 max_tinst_depth = value;
911 break;
913 case OPT_fvtable_gc:
914 flag_vtable_gc = value;
915 break;
917 case OPT_fuse_cxa_atexit:
918 flag_use_cxa_atexit = value;
919 break;
921 case OPT_fweak:
922 flag_weak = value;
923 break;
925 case OPT_gen_decls:
926 flag_gen_declaration = 1;
927 break;
929 case OPT_idirafter:
930 add_path (xstrdup (arg), AFTER, 0);
931 break;
933 case OPT_imacros:
934 case OPT_include:
935 defer_opt (code, arg);
936 break;
938 case OPT_iprefix:
939 iprefix = arg;
940 break;
942 case OPT_isysroot:
943 sysroot = arg;
944 break;
946 case OPT_isystem:
947 add_path (xstrdup (arg), SYSTEM, 0);
948 break;
950 case OPT_iwithprefix:
951 add_prefixed_path (arg, SYSTEM);
952 break;
954 case OPT_iwithprefixbefore:
955 add_prefixed_path (arg, BRACKET);
956 break;
958 case OPT_lang_asm:
959 cpp_set_lang (parse_in, CLK_ASM);
960 cpp_opts->dollars_in_ident = false;
961 break;
963 case OPT_lang_objc:
964 cpp_opts->objc = 1;
965 break;
967 case OPT_nostdinc:
968 std_inc = false;
969 break;
971 case OPT_nostdinc__:
972 std_cxx_inc = false;
973 break;
975 case OPT_o:
976 if (!out_fname)
977 out_fname = arg;
978 else
979 error ("output filename specified twice");
980 break;
982 /* We need to handle the -pedantic switches here, rather than in
983 c_common_post_options, so that a subsequent -Wno-endif-labels
984 is not overridden. */
985 case OPT_pedantic_errors:
986 cpp_opts->pedantic_errors = 1;
987 /* fall through */
988 case OPT_pedantic:
989 cpp_opts->pedantic = 1;
990 cpp_opts->warn_endif_labels = 1;
991 break;
993 case OPT_print_objc_runtime_info:
994 print_struct_values = 1;
995 break;
997 case OPT_remap:
998 cpp_opts->remap = 1;
999 break;
1001 case OPT_std_c__98:
1002 case OPT_std_gnu__98:
1003 set_std_cxx98 (code == OPT_std_c__98 /* ISO */);
1004 break;
1006 case OPT_std_c89:
1007 case OPT_std_iso9899_1990:
1008 case OPT_std_iso9899_199409:
1009 set_std_c89 (code == OPT_std_iso9899_199409 /* c94 */, true /* ISO */);
1010 break;
1012 case OPT_std_gnu89:
1013 set_std_c89 (false /* c94 */, false /* ISO */);
1014 break;
1016 case OPT_std_c99:
1017 case OPT_std_c9x:
1018 case OPT_std_iso9899_1999:
1019 case OPT_std_iso9899_199x:
1020 set_std_c99 (true /* ISO */);
1021 break;
1023 case OPT_std_gnu99:
1024 case OPT_std_gnu9x:
1025 set_std_c99 (false /* ISO */);
1026 break;
1028 case OPT_trigraphs:
1029 cpp_opts->trigraphs = 1;
1030 break;
1032 case OPT_traditional_cpp:
1033 cpp_opts->traditional = 1;
1034 break;
1036 case OPT_undef:
1037 flag_undef = 1;
1038 break;
1040 case OPT_w:
1041 cpp_opts->inhibit_warnings = 1;
1042 break;
1044 case OPT_v:
1045 verbose = true;
1046 break;
1049 return result;
1052 /* Post-switch processing. */
1053 bool
1054 c_common_post_options (const char **pfilename)
1056 /* Canonicalize the input and output filenames. */
1057 if (in_fname == NULL || !strcmp (in_fname, "-"))
1058 in_fname = "";
1060 if (out_fname == NULL || !strcmp (out_fname, "-"))
1061 out_fname = "";
1063 if (cpp_opts->deps.style == DEPS_NONE)
1064 check_deps_environment_vars ();
1066 handle_deferred_opts ();
1068 sanitize_cpp_opts ();
1070 register_include_chains (parse_in, sysroot, iprefix,
1071 std_inc, std_cxx_inc && c_language == clk_cplusplus,
1072 verbose);
1074 flag_inline_trees = 1;
1076 /* Use tree inlining if possible. Function instrumentation is only
1077 done in the RTL level, so we disable tree inlining. */
1078 if (! flag_instrument_function_entry_exit)
1080 if (!flag_no_inline)
1081 flag_no_inline = 1;
1082 if (flag_inline_functions)
1084 flag_inline_trees = 2;
1085 flag_inline_functions = 0;
1089 /* -Wextra implies -Wsign-compare, but not if explicitly
1090 overridden. */
1091 if (warn_sign_compare == -1)
1092 warn_sign_compare = extra_warnings;
1094 /* Special format checking options don't work without -Wformat; warn if
1095 they are used. */
1096 if (warn_format_y2k && !warn_format)
1097 warning ("-Wformat-y2k ignored without -Wformat");
1098 if (warn_format_extra_args && !warn_format)
1099 warning ("-Wformat-extra-args ignored without -Wformat");
1100 if (warn_format_zero_length && !warn_format)
1101 warning ("-Wformat-zero-length ignored without -Wformat");
1102 if (warn_format_nonliteral && !warn_format)
1103 warning ("-Wformat-nonliteral ignored without -Wformat");
1104 if (warn_format_security && !warn_format)
1105 warning ("-Wformat-security ignored without -Wformat");
1106 if (warn_missing_format_attribute && !warn_format)
1107 warning ("-Wmissing-format-attribute ignored without -Wformat");
1109 if (flag_preprocess_only)
1111 /* Open the output now. We must do so even if flag_no_output is
1112 on, because there may be other output than from the actual
1113 preprocessing (e.g. from -dM). */
1114 if (out_fname[0] == '\0')
1115 out_stream = stdout;
1116 else
1117 out_stream = fopen (out_fname, "w");
1119 if (out_stream == NULL)
1121 fatal_error ("opening output file %s: %m", out_fname);
1122 return false;
1125 init_pp_output (out_stream);
1127 else
1129 init_c_lex ();
1131 /* Yuk. WTF is this? I do know ObjC relies on it somewhere. */
1132 input_line = 0;
1135 cpp_get_callbacks (parse_in)->file_change = cb_file_change;
1137 /* NOTE: we use in_fname here, not the one supplied. */
1138 *pfilename = cpp_read_main_file (parse_in, in_fname);
1140 saved_lineno = input_line;
1141 input_line = 0;
1143 /* If an error has occurred in cpplib, note it so we fail
1144 immediately. */
1145 errorcount += cpp_errors (parse_in);
1147 return flag_preprocess_only;
1150 /* Front end initialization common to C, ObjC and C++. */
1151 bool
1152 c_common_init (void)
1154 input_line = saved_lineno;
1156 /* Set up preprocessor arithmetic. Must be done after call to
1157 c_common_nodes_and_builtins for type nodes to be good. */
1158 cpp_opts->precision = TYPE_PRECISION (intmax_type_node);
1159 cpp_opts->char_precision = TYPE_PRECISION (char_type_node);
1160 cpp_opts->int_precision = TYPE_PRECISION (integer_type_node);
1161 cpp_opts->wchar_precision = TYPE_PRECISION (wchar_type_node);
1162 cpp_opts->unsigned_wchar = TREE_UNSIGNED (wchar_type_node);
1163 cpp_opts->EBCDIC = TARGET_EBCDIC;
1165 if (flag_preprocess_only)
1167 finish_options ();
1168 preprocess_file (parse_in);
1169 return false;
1172 /* Has to wait until now so that cpplib has its hash table. */
1173 init_pragma ();
1175 return true;
1178 /* A thin wrapper around the real parser that initializes the
1179 integrated preprocessor after debug output has been initialized.
1180 Also, make sure the start_source_file debug hook gets called for
1181 the primary source file. */
1182 void
1183 c_common_parse_file (int set_yydebug ATTRIBUTE_UNUSED)
1185 #if YYDEBUG != 0
1186 yydebug = set_yydebug;
1187 #else
1188 warning ("YYDEBUG not defined");
1189 #endif
1191 (*debug_hooks->start_source_file) (input_line, input_filename);
1192 finish_options();
1193 pch_init();
1194 yyparse ();
1195 free_parser_stacks ();
1198 /* Common finish hook for the C, ObjC and C++ front ends. */
1199 void
1200 c_common_finish (void)
1202 FILE *deps_stream = NULL;
1204 if (cpp_opts->deps.style != DEPS_NONE)
1206 /* If -M or -MM was seen without -MF, default output to the
1207 output stream. */
1208 if (!deps_file)
1209 deps_stream = out_stream;
1210 else
1212 deps_stream = fopen (deps_file, deps_append ? "a": "w");
1213 if (!deps_stream)
1214 fatal_error ("opening dependency file %s: %m", deps_file);
1218 /* For performance, avoid tearing down cpplib's internal structures
1219 with cpp_destroy (). */
1220 errorcount += cpp_finish (parse_in, deps_stream);
1222 if (deps_stream && deps_stream != out_stream
1223 && (ferror (deps_stream) || fclose (deps_stream)))
1224 fatal_error ("closing dependency file %s: %m", deps_file);
1226 if (out_stream && (ferror (out_stream) || fclose (out_stream)))
1227 fatal_error ("when writing output to %s: %m", out_fname);
1230 /* Either of two environment variables can specify output of
1231 dependencies. Their value is either "OUTPUT_FILE" or "OUTPUT_FILE
1232 DEPS_TARGET", where OUTPUT_FILE is the file to write deps info to
1233 and DEPS_TARGET is the target to mention in the deps. They also
1234 result in dependency information being appended to the output file
1235 rather than overwriting it, and like Sun's compiler
1236 SUNPRO_DEPENDENCIES suppresses the dependency on the main file. */
1237 static void
1238 check_deps_environment_vars (void)
1240 char *spec;
1242 GET_ENVIRONMENT (spec, "DEPENDENCIES_OUTPUT");
1243 if (spec)
1244 cpp_opts->deps.style = DEPS_USER;
1245 else
1247 GET_ENVIRONMENT (spec, "SUNPRO_DEPENDENCIES");
1248 if (spec)
1250 cpp_opts->deps.style = DEPS_SYSTEM;
1251 cpp_opts->deps.ignore_main_file = true;
1255 if (spec)
1257 /* Find the space before the DEPS_TARGET, if there is one. */
1258 char *s = strchr (spec, ' ');
1259 if (s)
1261 /* Let the caller perform MAKE quoting. */
1262 defer_opt (OPT_MT, s + 1);
1263 *s = '\0';
1266 /* Command line -MF overrides environment variables and default. */
1267 if (!deps_file)
1268 deps_file = spec;
1270 deps_append = 1;
1274 /* Handle deferred command line switches. */
1275 static void
1276 handle_deferred_opts (void)
1278 size_t i;
1280 for (i = 0; i < deferred_count; i++)
1282 struct deferred_opt *opt = &deferred_opts[i];
1284 if (opt->code == OPT_MT || opt->code == OPT_MQ)
1285 cpp_add_dependency_target (parse_in, opt->arg, opt->code == OPT_MQ);
1289 /* These settings are appropriate for GCC, but not necessarily so for
1290 cpplib as a library. */
1291 static void
1292 sanitize_cpp_opts (void)
1294 /* If we don't know what style of dependencies to output, complain
1295 if any other dependency switches have been given. */
1296 if (deps_seen && cpp_opts->deps.style == DEPS_NONE)
1297 error ("to generate dependencies you must specify either -M or -MM");
1299 /* -dM and dependencies suppress normal output; do it here so that
1300 the last -d[MDN] switch overrides earlier ones. */
1301 if (flag_dump_macros == 'M')
1302 flag_no_output = 1;
1304 /* Disable -dD, -dN and -dI if normal output is suppressed. Allow
1305 -dM since at least glibc relies on -M -dM to work. */
1306 if (flag_no_output)
1308 if (flag_dump_macros != 'M')
1309 flag_dump_macros = 0;
1310 flag_dump_includes = 0;
1313 cpp_opts->unsigned_char = !flag_signed_char;
1314 cpp_opts->stdc_0_in_system_headers = STDC_0_IN_SYSTEM_HEADERS;
1316 /* We want -Wno-long-long to override -pedantic -std=non-c99
1317 and/or -Wtraditional, whatever the ordering. */
1318 cpp_opts->warn_long_long
1319 = warn_long_long && ((!flag_isoc99 && pedantic) || warn_traditional);
1322 /* Add include path with a prefix at the front of its name. */
1323 static void
1324 add_prefixed_path (const char *suffix, size_t chain)
1326 char *path;
1327 const char *prefix;
1328 size_t prefix_len, suffix_len;
1330 suffix_len = strlen (suffix);
1331 prefix = iprefix ? iprefix : cpp_GCC_INCLUDE_DIR;
1332 prefix_len = iprefix ? strlen (iprefix) : cpp_GCC_INCLUDE_DIR_len;
1334 path = xmalloc (prefix_len + suffix_len + 1);
1335 memcpy (path, prefix, prefix_len);
1336 memcpy (path + prefix_len, suffix, suffix_len);
1337 path[prefix_len + suffix_len] = '\0';
1339 add_path (path, chain, 0);
1342 /* Handle -D, -U, -A, -imacros, and the first -include. */
1343 static void
1344 finish_options (void)
1346 if (!cpp_opts->preprocessed)
1348 size_t i;
1350 cpp_change_file (parse_in, LC_RENAME, _("<built-in>"));
1351 cpp_init_builtins (parse_in, flag_hosted);
1352 c_cpp_builtins (parse_in);
1354 /* We're about to send user input to cpplib, so make it warn for
1355 things that we previously (when we sent it internal definitions)
1356 told it to not warn.
1358 C99 permits implementation-defined characters in identifiers.
1359 The documented meaning of -std= is to turn off extensions that
1360 conflict with the specified standard, and since a strictly
1361 conforming program cannot contain a '$', we do not condition
1362 their acceptance on the -std= setting. */
1363 cpp_opts->warn_dollars = (cpp_opts->pedantic && !cpp_opts->c99);
1365 cpp_change_file (parse_in, LC_RENAME, _("<command line>"));
1366 for (i = 0; i < deferred_count; i++)
1368 struct deferred_opt *opt = &deferred_opts[i];
1370 if (opt->code == OPT_D)
1371 cpp_define (parse_in, opt->arg);
1372 else if (opt->code == OPT_U)
1373 cpp_undef (parse_in, opt->arg);
1374 else if (opt->code == OPT_A)
1376 if (opt->arg[0] == '-')
1377 cpp_unassert (parse_in, opt->arg + 1);
1378 else
1379 cpp_assert (parse_in, opt->arg);
1383 /* Handle -imacros after -D and -U. */
1384 for (i = 0; i < deferred_count; i++)
1386 struct deferred_opt *opt = &deferred_opts[i];
1388 if (opt->code == OPT_imacros
1389 && cpp_push_include (parse_in, opt->arg))
1390 cpp_scan_nooutput (parse_in);
1394 push_command_line_include ();
1397 /* Give CPP the next file given by -include, if any. */
1398 static void
1399 push_command_line_include (void)
1401 if (cpp_opts->preprocessed)
1402 return;
1404 while (include_cursor < deferred_count)
1406 struct deferred_opt *opt = &deferred_opts[include_cursor++];
1408 if (opt->code == OPT_include && cpp_push_include (parse_in, opt->arg))
1409 return;
1412 if (include_cursor == deferred_count)
1414 /* Restore the line map from <command line>. */
1415 cpp_change_file (parse_in, LC_RENAME, main_input_filename);
1416 /* -Wunused-macros should only warn about macros defined hereafter. */
1417 cpp_opts->warn_unused_macros = warn_unused_macros;
1418 include_cursor++;
1422 /* File change callback. Has to handle -include files. */
1423 static void
1424 cb_file_change (cpp_reader *pfile ATTRIBUTE_UNUSED,
1425 const struct line_map *new_map)
1427 if (flag_preprocess_only)
1428 pp_file_change (new_map);
1429 else
1430 fe_file_change (new_map);
1432 if (new_map->reason == LC_LEAVE && MAIN_FILE_P (new_map))
1433 push_command_line_include ();
1436 /* Set the C 89 standard (with 1994 amendments if C94, without GNU
1437 extensions if ISO). There is no concept of gnu94. */
1438 static void
1439 set_std_c89 (int c94, int iso)
1441 cpp_set_lang (parse_in, c94 ? CLK_STDC94: iso ? CLK_STDC89: CLK_GNUC89);
1442 flag_iso = iso;
1443 flag_no_asm = iso;
1444 flag_no_gnu_keywords = iso;
1445 flag_no_nonansi_builtin = iso;
1446 flag_noniso_default_format_attributes = !iso;
1447 flag_isoc94 = c94;
1448 flag_isoc99 = 0;
1449 flag_writable_strings = 0;
1452 /* Set the C 99 standard (without GNU extensions if ISO). */
1453 static void
1454 set_std_c99 (int iso)
1456 cpp_set_lang (parse_in, iso ? CLK_STDC99: CLK_GNUC99);
1457 flag_no_asm = iso;
1458 flag_no_nonansi_builtin = iso;
1459 flag_noniso_default_format_attributes = !iso;
1460 flag_iso = iso;
1461 flag_isoc99 = 1;
1462 flag_isoc94 = 1;
1463 flag_writable_strings = 0;
1466 /* Set the C++ 98 standard (without GNU extensions if ISO). */
1467 static void
1468 set_std_cxx98 (int iso)
1470 cpp_set_lang (parse_in, iso ? CLK_CXX98: CLK_GNUCXX);
1471 flag_no_gnu_keywords = iso;
1472 flag_no_nonansi_builtin = iso;
1473 flag_noniso_default_format_attributes = !iso;
1474 flag_iso = iso;
1477 /* Handle setting implicit to ON. */
1478 static void
1479 set_Wimplicit (int on)
1481 warn_implicit = on;
1482 warn_implicit_int = on;
1483 if (on)
1485 if (mesg_implicit_function_declaration != 2)
1486 mesg_implicit_function_declaration = 1;
1488 else
1489 mesg_implicit_function_declaration = 0;
1492 /* Args to -d specify what to dump. Silently ignore
1493 unrecognized options; they may be aimed at toplev.c. */
1494 static void
1495 handle_OPT_d (const char *arg)
1497 char c;
1499 while ((c = *arg++) != '\0')
1500 switch (c)
1502 case 'M': /* Dump macros only. */
1503 case 'N': /* Dump names. */
1504 case 'D': /* Dump definitions. */
1505 flag_dump_macros = c;
1506 break;
1508 case 'I':
1509 flag_dump_includes = 1;
1510 break;
1514 /* Write a slash-separated list of languages in FLAGS to BUF. */
1515 static void
1516 write_langs (char *buf, int flags)
1518 *buf = '\0';
1519 if (flags & CL_C)
1520 strcat (buf, "C");
1521 if (flags & CL_ObjC)
1523 if (*buf)
1524 strcat (buf, "/");
1525 strcat (buf, "ObjC");
1527 if (flags & CL_CXX)
1529 if (*buf)
1530 strcat (buf, "/");
1531 strcat (buf, "C++");
1535 /* Complain that switch OPT_INDEX does not apply to this front end. */
1536 static void
1537 complain_wrong_lang (size_t opt_index, int on)
1539 char ok_langs[60], bad_langs[60];
1540 int ok_flags = cl_options[opt_index].flags;
1542 write_langs (ok_langs, ok_flags);
1543 write_langs (bad_langs, ~ok_flags);
1544 /* Eventually this should become a hard error. */
1545 warning ("\"-%c%s%s\" is valid for %s but not for %s",
1546 cl_options[opt_index].opt_text[0], on ? "" : "no-",
1547 cl_options[opt_index].opt_text + 1, ok_langs, bad_langs);
1550 /* Handle --help output. */
1551 static void
1552 print_help (void)
1554 /* To keep the lines from getting too long for some compilers, limit
1555 to about 500 characters (6 lines) per chunk. */
1556 fputs (_("\
1557 Switches:\n\
1558 -include <file> Include the contents of <file> before other files\n\
1559 -imacros <file> Accept definition of macros in <file>\n\
1560 -iprefix <path> Specify <path> as a prefix for next two options\n\
1561 -iwithprefix <dir> Add <dir> to the end of the system include path\n\
1562 -iwithprefixbefore <dir> Add <dir> to the end of the main include path\n\
1563 -isystem <dir> Add <dir> to the start of the system include path\n\
1564 "), stdout);
1565 fputs (_("\
1566 -idirafter <dir> Add <dir> to the end of the system include path\n\
1567 -I <dir> Add <dir> to the end of the main include path\n\
1568 -I- Fine-grained include path control; see info docs\n\
1569 -nostdinc Do not search system include directories\n\
1570 (dirs specified with -isystem will still be used)\n\
1571 -nostdinc++ Do not search system include directories for C++\n\
1572 -o <file> Put output into <file>\n\
1573 "), stdout);
1574 fputs (_("\
1575 -trigraphs Support ISO C trigraphs\n\
1576 -std=<std name> Specify the conformance standard; one of:\n\
1577 gnu89, gnu99, c89, c99, iso9899:1990,\n\
1578 iso9899:199409, iso9899:1999, c++98\n\
1579 -w Inhibit warning messages\n\
1580 -W[no-]trigraphs Warn if trigraphs are encountered\n\
1581 -W[no-]comment{s} Warn if one comment starts inside another\n\
1582 "), stdout);
1583 fputs (_("\
1584 -W[no-]traditional Warn about features not present in traditional C\n\
1585 -W[no-]undef Warn if an undefined macro is used by #if\n\
1586 -W[no-]import Warn about the use of the #import directive\n\
1587 "), stdout);
1588 fputs (_("\
1589 -W[no-]error Treat all warnings as errors\n\
1590 -W[no-]system-headers Do not suppress warnings from system headers\n\
1591 -W[no-]all Enable most preprocessor warnings\n\
1592 "), stdout);
1593 fputs (_("\
1594 -M Generate make dependencies\n\
1595 -MM As -M, but ignore system header files\n\
1596 -MD Generate make dependencies and compile\n\
1597 -MMD As -MD, but ignore system header files\n\
1598 -MF <file> Write dependency output to the given file\n\
1599 -MG Treat missing header file as generated files\n\
1600 "), stdout);
1601 fputs (_("\
1602 -MP Generate phony targets for all headers\n\
1603 -MQ <target> Add a MAKE-quoted target\n\
1604 -MT <target> Add an unquoted target\n\
1605 "), stdout);
1606 fputs (_("\
1607 -D<macro> Define a <macro> with string '1' as its value\n\
1608 -D<macro>=<val> Define a <macro> with <val> as its value\n\
1609 -A<question>=<answer> Assert the <answer> to <question>\n\
1610 -A-<question>=<answer> Disable the <answer> to <question>\n\
1611 -U<macro> Undefine <macro> \n\
1612 -v Display the version number\n\
1613 "), stdout);
1614 fputs (_("\
1615 -H Print the name of header files as they are used\n\
1616 -C Do not discard comments\n\
1617 -dM Display a list of macro definitions active at end\n\
1618 -dD Preserve macro definitions in output\n\
1619 -dN As -dD except that only the names are preserved\n\
1620 -dI Include #include directives in the output\n\
1621 "), stdout);
1622 fputs (_("\
1623 -f[no-]preprocessed Treat the input file as already preprocessed\n\
1624 -ftabstop=<number> Distance between tab stops for column reporting\n\
1625 -isysroot <dir> Set <dir> to be the system root directory\n\
1626 -P Do not generate #line directives\n\
1627 -remap Remap file names when including files\n\
1628 --help Display this information\n\
1629 "), stdout);