* config/darwin-c.c: Remove c-tree.h include.
[official-gcc.git] / gcc / c-opts.c
blobd1cb317c47a0d2dff082f2dc753fa00c835ab4b4
1 /* C/ObjC/C++ 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 "coretypes.h"
25 #include "tree.h"
26 #include "c-common.h"
27 #include "c-pragma.h"
28 #include "flags.h"
29 #include "toplev.h"
30 #include "langhooks.h"
31 #include "diagnostic.h"
32 #include "intl.h"
33 #include "cppdefault.h"
34 #include "incpath.h"
35 #include "debug.h" /* For debug_hooks. */
36 #include "opts.h"
37 #include "options.h"
38 #include "mkdeps.h"
39 #include "target.h" /* For gcc_targetcm. */
40 #include "c-tree.h" /* For c_cpp_error. */
42 #ifndef DOLLARS_IN_IDENTIFIERS
43 # define DOLLARS_IN_IDENTIFIERS true
44 #endif
46 #ifndef TARGET_SYSTEM_ROOT
47 # define TARGET_SYSTEM_ROOT NULL
48 #endif
50 #ifndef TARGET_OPTF
51 #define TARGET_OPTF(ARG)
52 #endif
54 /* CPP's options. */
55 cpp_options *cpp_opts;
57 /* Input filename. */
58 static const char *this_input_filename;
60 /* Filename and stream for preprocessed output. */
61 static const char *out_fname;
62 static FILE *out_stream;
64 /* Append dependencies to deps_file. */
65 static bool deps_append;
67 /* If dependency switches (-MF etc.) have been given. */
68 static bool deps_seen;
70 /* If -v seen. */
71 static bool verbose;
73 /* Dependency output file. */
74 static const char *deps_file;
76 /* The prefix given by -iprefix, if any. */
77 static const char *iprefix;
79 /* The multilib directory given by -imultilib, if any. */
80 static const char *imultilib;
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 /* If -Wvariadic-macros. */
98 static bool warn_variadic_macros = true;
100 /* Number of deferred options. */
101 static size_t deferred_count;
103 /* Number of deferred options scanned for -include. */
104 static size_t include_cursor;
106 static void handle_OPT_d (const char *);
107 static void set_std_cxx98 (int);
108 static void set_std_cxx0x (int);
109 static void set_std_c89 (int, int);
110 static void set_std_c99 (int);
111 static void set_std_c1x (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 cb_dir_change (cpp_reader *, const char *);
119 static void finish_options (void);
121 #ifndef STDC_0_IN_SYSTEM_HEADERS
122 #define STDC_0_IN_SYSTEM_HEADERS 0
123 #endif
125 /* Holds switches parsed by c_common_handle_option (), but whose
126 handling is deferred to c_common_post_options (). */
127 static void defer_opt (enum opt_code, const char *);
128 static struct deferred_opt
130 enum opt_code code;
131 const char *arg;
132 } *deferred_opts;
135 static const unsigned int
136 c_family_lang_mask = (CL_C | CL_CXX | CL_ObjC | CL_ObjCXX);
138 /* Complain that switch CODE expects an argument but none was
139 provided. OPT was the command-line option. Return FALSE to get
140 the default message in opts.c, TRUE if we provide a specialized
141 one. */
142 bool
143 c_common_missing_argument (const char *opt, size_t code)
145 switch (code)
147 default:
148 /* Pick up the default message. */
149 return false;
151 case OPT_fconstant_string_class_:
152 error ("no class name specified with %qs", opt);
153 break;
155 case OPT_A:
156 error ("assertion missing after %qs", opt);
157 break;
159 case OPT_D:
160 case OPT_U:
161 error ("macro name missing after %qs", opt);
162 break;
164 case OPT_F:
165 case OPT_I:
166 case OPT_idirafter:
167 case OPT_isysroot:
168 case OPT_isystem:
169 case OPT_iquote:
170 error ("missing path after %qs", opt);
171 break;
173 case OPT_MF:
174 case OPT_MD:
175 case OPT_MMD:
176 case OPT_include:
177 case OPT_imacros:
178 case OPT_o:
179 error ("missing filename after %qs", opt);
180 break;
182 case OPT_MQ:
183 case OPT_MT:
184 error ("missing makefile target after %qs", opt);
185 break;
188 return true;
191 /* Defer option CODE with argument ARG. */
192 static void
193 defer_opt (enum opt_code code, const char *arg)
195 deferred_opts[deferred_count].code = code;
196 deferred_opts[deferred_count].arg = arg;
197 deferred_count++;
200 /* -Werror= may set a warning option to enable a warning that is emitted
201 by the preprocessor. Set any corresponding flag in cpp_opts. */
203 static void
204 warning_as_error_callback (int option_index)
206 switch (option_index)
208 default:
209 /* Ignore options not associated with the preprocessor. */
210 break;
212 case OPT_Wdeprecated:
213 cpp_opts->warn_deprecated = 1;
214 break;
216 case OPT_Wcomment:
217 case OPT_Wcomments:
218 cpp_opts->warn_comments = 1;
219 break;
221 case OPT_Wtrigraphs:
222 cpp_opts->warn_trigraphs = 1;
223 break;
225 case OPT_Wmultichar:
226 cpp_opts->warn_multichar = 1;
227 break;
229 case OPT_Wtraditional:
230 cpp_opts->warn_traditional = 1;
231 break;
233 case OPT_Wlong_long:
234 cpp_opts->warn_long_long = 1;
235 break;
237 case OPT_Wendif_labels:
238 cpp_opts->warn_endif_labels = 1;
239 break;
241 case OPT_Wvariadic_macros:
242 /* Set the local flag that is used later to update cpp_opts. */
243 warn_variadic_macros = 1;
244 break;
246 case OPT_Wbuiltin_macro_redefined:
247 cpp_opts->warn_builtin_macro_redefined = 1;
248 break;
250 case OPT_Wundef:
251 cpp_opts->warn_undef = 1;
252 break;
254 case OPT_Wunused_macros:
255 /* Set the local flag that is used later to update cpp_opts. */
256 warn_unused_macros = 1;
257 break;
259 case OPT_Wc___compat:
260 /* Add warnings in the same way as c_common_handle_option below. */
261 if (warn_enum_compare == -1)
262 warn_enum_compare = 1;
263 if (warn_jump_misses_init == -1)
264 warn_jump_misses_init = 1;
265 cpp_opts->warn_cxx_operator_names = 1;
266 break;
268 case OPT_Wnormalized_:
269 inform (input_location, "-Werror=normalized=: Set -Wnormalized=nfc");
270 cpp_opts->warn_normalize = normalized_C;
271 break;
273 case OPT_Winvalid_pch:
274 cpp_opts->warn_invalid_pch = 1;
275 break;
277 case OPT_Wcpp:
278 /* Handled by standard diagnostics using the option's associated
279 boolean variable. */
280 break;
284 /* Common initialization before parsing options. */
285 unsigned int
286 c_common_init_options (unsigned int argc, const char **argv)
288 static const unsigned int lang_flags[] = {CL_C, CL_ObjC, CL_CXX, CL_ObjCXX};
289 unsigned int i, result;
290 struct cpp_callbacks *cb;
292 /* Register callback for warnings enabled by -Werror=. */
293 register_warning_as_error_callback (warning_as_error_callback);
295 /* This is conditionalized only because that is the way the front
296 ends used to do it. Maybe this should be unconditional? */
297 if (c_dialect_cxx ())
299 /* By default wrap lines at 80 characters. Is getenv
300 ("COLUMNS") preferable? */
301 diagnostic_line_cutoff (global_dc) = 80;
302 /* By default, emit location information once for every
303 diagnostic message. */
304 diagnostic_prefixing_rule (global_dc) = DIAGNOSTICS_SHOW_PREFIX_ONCE;
307 global_dc->opt_permissive = OPT_fpermissive;
309 parse_in = cpp_create_reader (c_dialect_cxx () ? CLK_GNUCXX: CLK_GNUC89,
310 ident_hash, line_table);
311 cb = cpp_get_callbacks (parse_in);
312 cb->error = c_cpp_error;
314 cpp_opts = cpp_get_options (parse_in);
315 cpp_opts->dollars_in_ident = DOLLARS_IN_IDENTIFIERS;
316 cpp_opts->objc = c_dialect_objc ();
318 /* Reset to avoid warnings on internal definitions. We set it just
319 before passing on command-line options to cpplib. */
320 cpp_opts->warn_dollars = 0;
322 flag_exceptions = c_dialect_cxx ();
323 warn_pointer_arith = c_dialect_cxx ();
324 warn_write_strings = c_dialect_cxx();
325 flag_warn_unused_result = true;
327 /* By default, C99-like requirements for complex multiply and divide. */
328 flag_complex_method = 2;
330 deferred_opts = XNEWVEC (struct deferred_opt, argc);
332 result = lang_flags[c_language];
334 if (c_language == clk_c)
336 /* If preprocessing assembly language, accept any of the C-family
337 front end options since the driver may pass them through. */
338 for (i = 1; i < argc; i++)
339 if (! strcmp (argv[i], "-lang-asm"))
341 result |= CL_C | CL_ObjC | CL_CXX | CL_ObjCXX;
342 break;
346 return result;
349 /* Handle switch SCODE with argument ARG. VALUE is true, unless no-
350 form of an -f or -W option was given. Returns 0 if the switch was
351 invalid, a negative number to prevent language-independent
352 processing in toplev.c (a hack necessary for the short-term). */
354 c_common_handle_option (size_t scode, const char *arg, int value,
355 int kind)
357 const struct cl_option *option = &cl_options[scode];
358 enum opt_code code = (enum opt_code) scode;
359 int result = 1;
361 /* Prevent resetting the language standard to a C dialect when the driver
362 has already determined that we're looking at assembler input. */
363 bool preprocessing_asm_p = (cpp_get_options (parse_in)->lang == CLK_ASM);
365 switch (code)
367 default:
368 if (cl_options[code].flags & c_family_lang_mask)
370 if ((option->flags & CL_TARGET)
371 && ! targetcm.handle_c_option (scode, arg, value))
372 result = 0;
373 break;
375 result = 0;
376 break;
378 case OPT__output_pch_:
379 pch_file = arg;
380 break;
382 case OPT_A:
383 defer_opt (code, arg);
384 break;
386 case OPT_C:
387 cpp_opts->discard_comments = 0;
388 break;
390 case OPT_CC:
391 cpp_opts->discard_comments = 0;
392 cpp_opts->discard_comments_in_macro_exp = 0;
393 break;
395 case OPT_D:
396 defer_opt (code, arg);
397 break;
399 case OPT_E:
400 flag_preprocess_only = 1;
401 break;
403 case OPT_H:
404 cpp_opts->print_include_names = 1;
405 break;
407 case OPT_F:
408 TARGET_OPTF (xstrdup (arg));
409 break;
411 case OPT_I:
412 if (strcmp (arg, "-"))
413 add_path (xstrdup (arg), BRACKET, 0, true);
414 else
416 if (quote_chain_split)
417 error ("-I- specified twice");
418 quote_chain_split = true;
419 split_quote_chain ();
420 inform (input_location, "obsolete option -I- used, please use -iquote instead");
422 break;
424 case OPT_M:
425 case OPT_MM:
426 /* When doing dependencies with -M or -MM, suppress normal
427 preprocessed output, but still do -dM etc. as software
428 depends on this. Preprocessed output does occur if -MD, -MMD
429 or environment var dependency generation is used. */
430 cpp_opts->deps.style = (code == OPT_M ? DEPS_SYSTEM: DEPS_USER);
431 flag_no_output = 1;
432 break;
434 case OPT_MD:
435 case OPT_MMD:
436 cpp_opts->deps.style = (code == OPT_MD ? DEPS_SYSTEM: DEPS_USER);
437 cpp_opts->deps.need_preprocessor_output = true;
438 deps_file = arg;
439 break;
441 case OPT_MF:
442 deps_seen = true;
443 deps_file = arg;
444 break;
446 case OPT_MG:
447 deps_seen = true;
448 cpp_opts->deps.missing_files = true;
449 break;
451 case OPT_MP:
452 deps_seen = true;
453 cpp_opts->deps.phony_targets = true;
454 break;
456 case OPT_MQ:
457 case OPT_MT:
458 deps_seen = true;
459 defer_opt (code, arg);
460 break;
462 case OPT_P:
463 flag_no_line_commands = 1;
464 break;
466 case OPT_fworking_directory:
467 flag_working_directory = value;
468 break;
470 case OPT_U:
471 defer_opt (code, arg);
472 break;
474 case OPT_Wall:
475 warn_unused = value;
476 set_Wformat (value);
477 handle_option (OPT_Wimplicit, value, NULL, c_family_lang_mask, kind);
478 warn_char_subscripts = value;
479 warn_missing_braces = value;
480 warn_parentheses = value;
481 warn_return_type = value;
482 warn_sequence_point = value; /* Was C only. */
483 warn_switch = value;
484 if (warn_strict_aliasing == -1)
485 set_Wstrict_aliasing (value);
486 warn_address = value;
487 if (warn_strict_overflow == -1)
488 warn_strict_overflow = value;
489 warn_array_bounds = value;
490 warn_volatile_register_var = value;
492 /* Only warn about unknown pragmas that are not in system
493 headers. */
494 warn_unknown_pragmas = value;
496 warn_uninitialized = value;
498 if (!c_dialect_cxx ())
500 /* We set this to 2 here, but 1 in -Wmain, so -ffreestanding
501 can turn it off only if it's not explicit. */
502 if (warn_main == -1)
503 warn_main = (value ? 2 : 0);
505 /* In C, -Wall turns on -Wenum-compare, which we do here.
506 In C++ it is on by default, which is done in
507 c_common_post_options. */
508 if (warn_enum_compare == -1)
509 warn_enum_compare = value;
511 else
513 /* C++-specific warnings. */
514 warn_sign_compare = value;
515 warn_reorder = value;
516 warn_cxx0x_compat = value;
519 cpp_opts->warn_trigraphs = value;
520 cpp_opts->warn_comments = value;
521 cpp_opts->warn_num_sign_change = value;
523 if (warn_pointer_sign == -1)
524 warn_pointer_sign = value;
525 break;
527 case OPT_Wbuiltin_macro_redefined:
528 cpp_opts->warn_builtin_macro_redefined = value;
529 break;
531 case OPT_Wcomment:
532 case OPT_Wcomments:
533 cpp_opts->warn_comments = value;
534 break;
536 case OPT_Wc___compat:
537 /* Because -Wenum-compare is the default in C++, -Wc++-compat
538 implies -Wenum-compare. */
539 if (warn_enum_compare == -1 && value)
540 warn_enum_compare = value;
541 /* Because C++ always warns about a goto which misses an
542 initialization, -Wc++-compat turns on -Wjump-misses-init. */
543 if (warn_jump_misses_init == -1 && value)
544 warn_jump_misses_init = value;
545 cpp_opts->warn_cxx_operator_names = value;
546 break;
548 case OPT_Wdeprecated:
549 cpp_opts->warn_deprecated = value;
550 break;
552 case OPT_Wendif_labels:
553 cpp_opts->warn_endif_labels = value;
554 break;
556 case OPT_Werror:
557 global_dc->warning_as_error_requested = value;
558 break;
560 case OPT_Werror_implicit_function_declaration:
561 /* For backward compatibility, this is the same as
562 -Werror=implicit-function-declaration. */
563 enable_warning_as_error ("implicit-function-declaration", value, CL_C | CL_ObjC);
564 break;
566 case OPT_Wformat:
567 set_Wformat (value);
568 break;
570 case OPT_Wformat_:
571 set_Wformat (atoi (arg));
572 break;
574 case OPT_Wimplicit:
575 gcc_assert (value == 0 || value == 1);
576 if (warn_implicit_int == -1)
577 handle_option (OPT_Wimplicit_int, value, NULL,
578 c_family_lang_mask, kind);
579 if (warn_implicit_function_declaration == -1)
580 handle_option (OPT_Wimplicit_function_declaration, value, NULL,
581 c_family_lang_mask, kind);
582 break;
584 case OPT_Wimport:
585 /* Silently ignore for now. */
586 break;
588 case OPT_Winvalid_pch:
589 cpp_opts->warn_invalid_pch = value;
590 break;
592 case OPT_Wmissing_include_dirs:
593 cpp_opts->warn_missing_include_dirs = value;
594 break;
596 case OPT_Wmultichar:
597 cpp_opts->warn_multichar = value;
598 break;
600 case OPT_Wnormalized_:
601 if (!value || (arg && strcasecmp (arg, "none") == 0))
602 cpp_opts->warn_normalize = normalized_none;
603 else if (!arg || strcasecmp (arg, "nfkc") == 0)
604 cpp_opts->warn_normalize = normalized_KC;
605 else if (strcasecmp (arg, "id") == 0)
606 cpp_opts->warn_normalize = normalized_identifier_C;
607 else if (strcasecmp (arg, "nfc") == 0)
608 cpp_opts->warn_normalize = normalized_C;
609 else
610 error ("argument %qs to %<-Wnormalized%> not recognized", arg);
611 break;
613 case OPT_Wreturn_type:
614 warn_return_type = value;
615 break;
617 case OPT_Wstrict_null_sentinel:
618 warn_strict_null_sentinel = value;
619 break;
621 case OPT_Wtraditional:
622 cpp_opts->warn_traditional = value;
623 break;
625 case OPT_Wtrigraphs:
626 cpp_opts->warn_trigraphs = value;
627 break;
629 case OPT_Wundef:
630 cpp_opts->warn_undef = value;
631 break;
633 case OPT_Wunknown_pragmas:
634 /* Set to greater than 1, so that even unknown pragmas in
635 system headers will be warned about. */
636 warn_unknown_pragmas = value * 2;
637 break;
639 case OPT_Wunused_macros:
640 warn_unused_macros = value;
641 break;
643 case OPT_Wvariadic_macros:
644 warn_variadic_macros = value;
645 break;
647 case OPT_Wwrite_strings:
648 warn_write_strings = value;
649 break;
651 case OPT_Weffc__:
652 warn_ecpp = value;
653 if (value)
654 warn_nonvdtor = true;
655 break;
657 case OPT_ansi:
658 if (!c_dialect_cxx ())
659 set_std_c89 (false, true);
660 else
661 set_std_cxx98 (true);
662 break;
664 case OPT_d:
665 handle_OPT_d (arg);
666 break;
668 case OPT_fcond_mismatch:
669 if (!c_dialect_cxx ())
671 flag_cond_mismatch = value;
672 break;
674 /* Fall through. */
676 case OPT_fall_virtual:
677 case OPT_falt_external_templates:
678 case OPT_fenum_int_equiv:
679 case OPT_fexternal_templates:
680 case OPT_fguiding_decls:
681 case OPT_fhonor_std:
682 case OPT_fhuge_objects:
683 case OPT_flabels_ok:
684 case OPT_fname_mangling_version_:
685 case OPT_fnew_abi:
686 case OPT_fnonnull_objects:
687 case OPT_fsquangle:
688 case OPT_fstrict_prototype:
689 case OPT_fthis_is_variable:
690 case OPT_fvtable_thunks:
691 case OPT_fxref:
692 case OPT_fvtable_gc:
693 warning (0, "switch %qs is no longer supported", option->opt_text);
694 break;
696 case OPT_faccess_control:
697 flag_access_control = value;
698 break;
700 case OPT_fasm:
701 flag_no_asm = !value;
702 break;
704 case OPT_fbuiltin:
705 flag_no_builtin = !value;
706 break;
708 case OPT_fbuiltin_:
709 if (value)
710 result = 0;
711 else
712 disable_builtin_function (arg);
713 break;
715 case OPT_fdirectives_only:
716 cpp_opts->directives_only = value;
717 break;
719 case OPT_fdollars_in_identifiers:
720 cpp_opts->dollars_in_ident = value;
721 break;
723 case OPT_ffreestanding:
724 value = !value;
725 /* Fall through.... */
726 case OPT_fhosted:
727 flag_hosted = value;
728 flag_no_builtin = !value;
729 break;
731 case OPT_fshort_double:
732 flag_short_double = value;
733 break;
735 case OPT_fshort_enums:
736 flag_short_enums = value;
737 break;
739 case OPT_fshort_wchar:
740 flag_short_wchar = value;
741 break;
743 case OPT_fsigned_bitfields:
744 flag_signed_bitfields = value;
745 break;
747 case OPT_fsigned_char:
748 flag_signed_char = value;
749 break;
751 case OPT_funsigned_bitfields:
752 flag_signed_bitfields = !value;
753 break;
755 case OPT_funsigned_char:
756 flag_signed_char = !value;
757 break;
759 case OPT_fcheck_new:
760 flag_check_new = value;
761 break;
763 case OPT_fconserve_space:
764 flag_conserve_space = value;
765 break;
767 case OPT_fconstant_string_class_:
768 constant_string_class_name = arg;
769 break;
771 case OPT_fdefault_inline:
772 flag_default_inline = value;
773 break;
775 case OPT_felide_constructors:
776 flag_elide_constructors = value;
777 break;
779 case OPT_fenforce_eh_specs:
780 flag_enforce_eh_specs = value;
781 break;
783 case OPT_fextended_identifiers:
784 cpp_opts->extended_identifiers = value;
785 break;
787 case OPT_ffor_scope:
788 flag_new_for_scope = value;
789 break;
791 case OPT_fgnu_keywords:
792 flag_no_gnu_keywords = !value;
793 break;
795 case OPT_fgnu_runtime:
796 flag_next_runtime = !value;
797 break;
799 case OPT_fhandle_exceptions:
800 warning (0, "-fhandle-exceptions has been renamed -fexceptions (and is now on by default)");
801 flag_exceptions = value;
802 break;
804 case OPT_fimplement_inlines:
805 flag_implement_inlines = value;
806 break;
808 case OPT_fimplicit_inline_templates:
809 flag_implicit_inline_templates = value;
810 break;
812 case OPT_fimplicit_templates:
813 flag_implicit_templates = value;
814 break;
816 case OPT_flax_vector_conversions:
817 flag_lax_vector_conversions = value;
818 break;
820 case OPT_fms_extensions:
821 flag_ms_extensions = value;
822 break;
824 case OPT_fnext_runtime:
825 flag_next_runtime = value;
826 break;
828 case OPT_fnil_receivers:
829 flag_nil_receivers = value;
830 break;
832 case OPT_fnonansi_builtins:
833 flag_no_nonansi_builtin = !value;
834 break;
836 case OPT_foperator_names:
837 cpp_opts->operator_names = value;
838 break;
840 case OPT_foptional_diags:
841 flag_optional_diags = value;
842 break;
844 case OPT_fpch_deps:
845 cpp_opts->restore_pch_deps = value;
846 break;
848 case OPT_fpch_preprocess:
849 flag_pch_preprocess = value;
850 break;
852 case OPT_fpermissive:
853 global_dc->permissive = flag_permissive = value;
854 break;
856 case OPT_fpreprocessed:
857 cpp_opts->preprocessed = value;
858 break;
860 case OPT_freplace_objc_classes:
861 flag_replace_objc_classes = value;
862 break;
864 case OPT_frepo:
865 flag_use_repository = value;
866 if (value)
867 flag_implicit_templates = 0;
868 break;
870 case OPT_frtti:
871 flag_rtti = value;
872 break;
874 case OPT_fshow_column:
875 cpp_opts->show_column = value;
876 break;
878 case OPT_fstats:
879 flag_detailed_statistics = value;
880 break;
882 case OPT_ftabstop_:
883 /* It is documented that we silently ignore silly values. */
884 if (value >= 1 && value <= 100)
885 cpp_opts->tabstop = value;
886 break;
888 case OPT_fexec_charset_:
889 cpp_opts->narrow_charset = arg;
890 break;
892 case OPT_fwide_exec_charset_:
893 cpp_opts->wide_charset = arg;
894 break;
896 case OPT_finput_charset_:
897 cpp_opts->input_charset = arg;
898 break;
900 case OPT_ftemplate_depth_:
901 /* Kept for backwards compatibility. */
902 case OPT_ftemplate_depth_eq:
903 max_tinst_depth = value;
904 break;
906 case OPT_fuse_cxa_atexit:
907 flag_use_cxa_atexit = value;
908 break;
910 case OPT_fuse_cxa_get_exception_ptr:
911 flag_use_cxa_get_exception_ptr = value;
912 break;
914 case OPT_fvisibility_inlines_hidden:
915 visibility_options.inlines_hidden = value;
916 break;
918 case OPT_fweak:
919 flag_weak = value;
920 break;
922 case OPT_fthreadsafe_statics:
923 flag_threadsafe_statics = value;
924 break;
926 case OPT_fpretty_templates:
927 flag_pretty_templates = value;
928 break;
930 case OPT_fzero_link:
931 flag_zero_link = value;
932 break;
934 case OPT_gen_decls:
935 flag_gen_declaration = 1;
936 break;
938 case OPT_femit_struct_debug_baseonly:
939 set_struct_debug_option ("base");
940 break;
942 case OPT_femit_struct_debug_reduced:
943 set_struct_debug_option ("dir:ord:sys,dir:gen:any,ind:base");
944 break;
946 case OPT_femit_struct_debug_detailed_:
947 set_struct_debug_option (arg);
948 break;
950 case OPT_idirafter:
951 add_path (xstrdup (arg), AFTER, 0, true);
952 break;
954 case OPT_imacros:
955 case OPT_include:
956 defer_opt (code, arg);
957 break;
959 case OPT_imultilib:
960 imultilib = arg;
961 break;
963 case OPT_iprefix:
964 iprefix = arg;
965 break;
967 case OPT_iquote:
968 add_path (xstrdup (arg), QUOTE, 0, true);
969 break;
971 case OPT_isysroot:
972 sysroot = arg;
973 break;
975 case OPT_isystem:
976 add_path (xstrdup (arg), SYSTEM, 0, true);
977 break;
979 case OPT_iwithprefix:
980 add_prefixed_path (arg, SYSTEM);
981 break;
983 case OPT_iwithprefixbefore:
984 add_prefixed_path (arg, BRACKET);
985 break;
987 case OPT_lang_asm:
988 cpp_set_lang (parse_in, CLK_ASM);
989 cpp_opts->dollars_in_ident = false;
990 break;
992 case OPT_lang_objc:
993 cpp_opts->objc = 1;
994 break;
996 case OPT_nostdinc:
997 std_inc = false;
998 break;
1000 case OPT_nostdinc__:
1001 std_cxx_inc = false;
1002 break;
1004 case OPT_o:
1005 if (!out_fname)
1006 out_fname = arg;
1007 else
1008 error ("output filename specified twice");
1009 break;
1011 /* We need to handle the -pedantic switches here, rather than in
1012 c_common_post_options, so that a subsequent -Wno-endif-labels
1013 is not overridden. */
1014 case OPT_pedantic_errors:
1015 case OPT_pedantic:
1016 cpp_opts->pedantic = 1;
1017 cpp_opts->warn_endif_labels = 1;
1018 if (warn_pointer_sign == -1)
1019 warn_pointer_sign = 1;
1020 if (warn_overlength_strings == -1)
1021 warn_overlength_strings = 1;
1022 if (warn_main == -1)
1023 warn_main = 2;
1024 break;
1026 case OPT_print_objc_runtime_info:
1027 print_struct_values = 1;
1028 break;
1030 case OPT_print_pch_checksum:
1031 c_common_print_pch_checksum (stdout);
1032 exit_after_options = true;
1033 break;
1035 case OPT_remap:
1036 cpp_opts->remap = 1;
1037 break;
1039 case OPT_std_c__98:
1040 case OPT_std_gnu__98:
1041 if (!preprocessing_asm_p)
1042 set_std_cxx98 (code == OPT_std_c__98 /* ISO */);
1043 break;
1045 case OPT_std_c__0x:
1046 case OPT_std_gnu__0x:
1047 if (!preprocessing_asm_p)
1048 set_std_cxx0x (code == OPT_std_c__0x /* ISO */);
1049 break;
1051 case OPT_std_c89:
1052 case OPT_std_c90:
1053 case OPT_std_iso9899_1990:
1054 case OPT_std_iso9899_199409:
1055 if (!preprocessing_asm_p)
1056 set_std_c89 (code == OPT_std_iso9899_199409 /* c94 */, true /* ISO */);
1057 break;
1059 case OPT_std_gnu89:
1060 case OPT_std_gnu90:
1061 if (!preprocessing_asm_p)
1062 set_std_c89 (false /* c94 */, false /* ISO */);
1063 break;
1065 case OPT_std_c99:
1066 case OPT_std_c9x:
1067 case OPT_std_iso9899_1999:
1068 case OPT_std_iso9899_199x:
1069 if (!preprocessing_asm_p)
1070 set_std_c99 (true /* ISO */);
1071 break;
1073 case OPT_std_gnu99:
1074 case OPT_std_gnu9x:
1075 if (!preprocessing_asm_p)
1076 set_std_c99 (false /* ISO */);
1077 break;
1079 case OPT_std_c1x:
1080 if (!preprocessing_asm_p)
1081 set_std_c1x (true /* ISO */);
1082 break;
1084 case OPT_std_gnu1x:
1085 if (!preprocessing_asm_p)
1086 set_std_c1x (false /* ISO */);
1087 break;
1089 case OPT_trigraphs:
1090 cpp_opts->trigraphs = 1;
1091 break;
1093 case OPT_traditional_cpp:
1094 cpp_opts->traditional = 1;
1095 break;
1097 case OPT_undef:
1098 flag_undef = 1;
1099 break;
1101 case OPT_v:
1102 verbose = true;
1103 break;
1105 case OPT_Wabi:
1106 warn_psabi = value;
1107 break;
1110 return result;
1113 /* Post-switch processing. */
1114 bool
1115 c_common_post_options (const char **pfilename)
1117 struct cpp_callbacks *cb;
1119 /* Canonicalize the input and output filenames. */
1120 if (in_fnames == NULL)
1122 in_fnames = XNEWVEC (const char *, 1);
1123 in_fnames[0] = "";
1125 else if (strcmp (in_fnames[0], "-") == 0)
1126 in_fnames[0] = "";
1128 if (out_fname == NULL || !strcmp (out_fname, "-"))
1129 out_fname = "";
1131 if (cpp_opts->deps.style == DEPS_NONE)
1132 check_deps_environment_vars ();
1134 handle_deferred_opts ();
1136 sanitize_cpp_opts ();
1138 register_include_chains (parse_in, sysroot, iprefix, imultilib,
1139 std_inc, std_cxx_inc && c_dialect_cxx (), verbose);
1141 #ifdef C_COMMON_OVERRIDE_OPTIONS
1142 /* Some machines may reject certain combinations of C
1143 language-specific options. */
1144 C_COMMON_OVERRIDE_OPTIONS;
1145 #endif
1147 /* Excess precision other than "fast" requires front-end
1148 support. */
1149 if (c_dialect_cxx ())
1151 if (flag_excess_precision_cmdline == EXCESS_PRECISION_STANDARD
1152 && TARGET_FLT_EVAL_METHOD_NON_DEFAULT)
1153 sorry ("-fexcess-precision=standard for C++");
1154 flag_excess_precision_cmdline = EXCESS_PRECISION_FAST;
1156 else if (flag_excess_precision_cmdline == EXCESS_PRECISION_DEFAULT)
1157 flag_excess_precision_cmdline = (flag_iso
1158 ? EXCESS_PRECISION_STANDARD
1159 : EXCESS_PRECISION_FAST);
1161 /* By default we use C99 inline semantics in GNU99 or C99 mode. C99
1162 inline semantics are not supported in GNU89 or C89 mode. */
1163 if (flag_gnu89_inline == -1)
1164 flag_gnu89_inline = !flag_isoc99;
1165 else if (!flag_gnu89_inline && !flag_isoc99)
1166 error ("-fno-gnu89-inline is only supported in GNU99 or C99 mode");
1168 /* Default to ObjC sjlj exception handling if NeXT runtime. */
1169 if (flag_objc_sjlj_exceptions < 0)
1170 flag_objc_sjlj_exceptions = flag_next_runtime;
1171 if (flag_objc_exceptions && !flag_objc_sjlj_exceptions)
1172 flag_exceptions = 1;
1174 /* -Wextra implies the following flags
1175 unless explicitly overridden. */
1176 if (warn_type_limits == -1)
1177 warn_type_limits = extra_warnings;
1178 if (warn_clobbered == -1)
1179 warn_clobbered = extra_warnings;
1180 if (warn_empty_body == -1)
1181 warn_empty_body = extra_warnings;
1182 if (warn_sign_compare == -1)
1183 warn_sign_compare = extra_warnings;
1184 if (warn_missing_field_initializers == -1)
1185 warn_missing_field_initializers = extra_warnings;
1186 if (warn_missing_parameter_type == -1)
1187 warn_missing_parameter_type = extra_warnings;
1188 if (warn_old_style_declaration == -1)
1189 warn_old_style_declaration = extra_warnings;
1190 if (warn_override_init == -1)
1191 warn_override_init = extra_warnings;
1192 if (warn_ignored_qualifiers == -1)
1193 warn_ignored_qualifiers = extra_warnings;
1195 /* -Wpointer-sign is disabled by default, but it is enabled if any
1196 of -Wall or -pedantic are given. */
1197 if (warn_pointer_sign == -1)
1198 warn_pointer_sign = 0;
1200 if (warn_strict_aliasing == -1)
1201 warn_strict_aliasing = 0;
1202 if (warn_strict_overflow == -1)
1203 warn_strict_overflow = 0;
1204 if (warn_jump_misses_init == -1)
1205 warn_jump_misses_init = 0;
1207 /* -Woverlength-strings is off by default, but is enabled by -pedantic.
1208 It is never enabled in C++, as the minimum limit is not normative
1209 in that standard. */
1210 if (warn_overlength_strings == -1 || c_dialect_cxx ())
1211 warn_overlength_strings = 0;
1213 /* Wmain is enabled by default in C++ but not in C. */
1214 /* Wmain is disabled by default for -ffreestanding (!flag_hosted),
1215 even if -Wall was given (warn_main will be 2 if set by -Wall, 1
1216 if set by -Wmain). */
1217 if (warn_main == -1)
1218 warn_main = (c_dialect_cxx () && flag_hosted) ? 1 : 0;
1219 else if (warn_main == 2)
1220 warn_main = flag_hosted ? 1 : 0;
1222 /* In C, -Wconversion enables -Wsign-conversion (unless disabled
1223 through -Wno-sign-conversion). While in C++,
1224 -Wsign-conversion needs to be requested explicitly. */
1225 if (warn_sign_conversion == -1)
1226 warn_sign_conversion = (c_dialect_cxx ()) ? 0 : warn_conversion;
1228 /* In C, -Wall and -Wc++-compat enable -Wenum-compare, which we do
1229 in c_common_handle_option; if it has not yet been set, it is
1230 disabled by default. In C++, it is enabled by default. */
1231 if (warn_enum_compare == -1)
1232 warn_enum_compare = c_dialect_cxx () ? 1 : 0;
1234 /* -Wpacked-bitfield-compat is on by default for the C languages. The
1235 warning is issued in stor-layout.c which is not part of the front-end so
1236 we need to selectively turn it on here. */
1237 if (warn_packed_bitfield_compat == -1)
1238 warn_packed_bitfield_compat = 1;
1240 /* Special format checking options don't work without -Wformat; warn if
1241 they are used. */
1242 if (!warn_format)
1244 warning (OPT_Wformat_y2k,
1245 "-Wformat-y2k ignored without -Wformat");
1246 warning (OPT_Wformat_extra_args,
1247 "-Wformat-extra-args ignored without -Wformat");
1248 warning (OPT_Wformat_zero_length,
1249 "-Wformat-zero-length ignored without -Wformat");
1250 warning (OPT_Wformat_nonliteral,
1251 "-Wformat-nonliteral ignored without -Wformat");
1252 warning (OPT_Wformat_contains_nul,
1253 "-Wformat-contains-nul ignored without -Wformat");
1254 warning (OPT_Wformat_security,
1255 "-Wformat-security ignored without -Wformat");
1258 if (warn_implicit == -1)
1259 warn_implicit = 0;
1261 if (warn_implicit_int == -1)
1262 warn_implicit_int = 0;
1264 /* -Wimplicit-function-declaration is enabled by default for C99. */
1265 if (warn_implicit_function_declaration == -1)
1266 warn_implicit_function_declaration = flag_isoc99;
1268 /* If we're allowing C++0x constructs, don't warn about C++0x
1269 compatibility problems. */
1270 if (cxx_dialect == cxx0x)
1271 warn_cxx0x_compat = 0;
1273 if (flag_preprocess_only)
1275 /* Open the output now. We must do so even if flag_no_output is
1276 on, because there may be other output than from the actual
1277 preprocessing (e.g. from -dM). */
1278 if (out_fname[0] == '\0')
1279 out_stream = stdout;
1280 else
1281 out_stream = fopen (out_fname, "w");
1283 if (out_stream == NULL)
1285 fatal_error ("opening output file %s: %m", out_fname);
1286 return false;
1289 if (num_in_fnames > 1)
1290 error ("too many filenames given. Type %s --help for usage",
1291 progname);
1293 init_pp_output (out_stream);
1295 else
1297 init_c_lex ();
1299 /* Yuk. WTF is this? I do know ObjC relies on it somewhere. */
1300 input_location = UNKNOWN_LOCATION;
1303 cb = cpp_get_callbacks (parse_in);
1304 cb->file_change = cb_file_change;
1305 cb->dir_change = cb_dir_change;
1306 cpp_post_options (parse_in);
1308 input_location = UNKNOWN_LOCATION;
1310 *pfilename = this_input_filename
1311 = cpp_read_main_file (parse_in, in_fnames[0]);
1312 /* Don't do any compilation or preprocessing if there is no input file. */
1313 if (this_input_filename == NULL)
1315 errorcount++;
1316 return false;
1319 if (flag_working_directory
1320 && flag_preprocess_only && !flag_no_line_commands)
1321 pp_dir_change (parse_in, get_src_pwd ());
1323 return flag_preprocess_only;
1326 /* Front end initialization common to C, ObjC and C++. */
1327 bool
1328 c_common_init (void)
1330 /* Set up preprocessor arithmetic. Must be done after call to
1331 c_common_nodes_and_builtins for type nodes to be good. */
1332 cpp_opts->precision = TYPE_PRECISION (intmax_type_node);
1333 cpp_opts->char_precision = TYPE_PRECISION (char_type_node);
1334 cpp_opts->int_precision = TYPE_PRECISION (integer_type_node);
1335 cpp_opts->wchar_precision = TYPE_PRECISION (wchar_type_node);
1336 cpp_opts->unsigned_wchar = TYPE_UNSIGNED (wchar_type_node);
1337 cpp_opts->bytes_big_endian = BYTES_BIG_ENDIAN;
1339 /* This can't happen until after wchar_precision and bytes_big_endian
1340 are known. */
1341 cpp_init_iconv (parse_in);
1343 if (version_flag)
1344 c_common_print_pch_checksum (stderr);
1346 /* Has to wait until now so that cpplib has its hash table. */
1347 init_pragma ();
1349 if (flag_preprocess_only)
1351 finish_options ();
1352 preprocess_file (parse_in);
1353 return false;
1356 return true;
1359 /* Initialize the integrated preprocessor after debug output has been
1360 initialized; loop over each input file. */
1361 void
1362 c_common_parse_file (int set_yydebug)
1364 unsigned int i;
1366 if (set_yydebug)
1367 switch (c_language)
1369 case clk_c:
1370 warning(0, "The C parser does not support -dy, option ignored");
1371 break;
1372 case clk_objc:
1373 warning(0,
1374 "The Objective-C parser does not support -dy, option ignored");
1375 break;
1376 case clk_cxx:
1377 warning(0, "The C++ parser does not support -dy, option ignored");
1378 break;
1379 case clk_objcxx:
1380 warning(0,
1381 "The Objective-C++ parser does not support -dy, option ignored");
1382 break;
1383 default:
1384 gcc_unreachable ();
1387 i = 0;
1388 for (;;)
1390 finish_options ();
1391 pch_init ();
1392 push_file_scope ();
1393 c_parse_file ();
1394 finish_file ();
1395 pop_file_scope ();
1396 /* And end the main input file, if the debug writer wants it */
1397 if (debug_hooks->start_end_main_source_file)
1398 (*debug_hooks->end_source_file) (0);
1399 if (++i >= num_in_fnames)
1400 break;
1401 cpp_undef_all (parse_in);
1402 cpp_clear_file_cache (parse_in);
1403 this_input_filename
1404 = cpp_read_main_file (parse_in, in_fnames[i]);
1405 /* If an input file is missing, abandon further compilation.
1406 cpplib has issued a diagnostic. */
1407 if (!this_input_filename)
1408 break;
1412 /* Common finish hook for the C, ObjC and C++ front ends. */
1413 void
1414 c_common_finish (void)
1416 FILE *deps_stream = NULL;
1418 /* Don't write the deps file if there are errors. */
1419 if (cpp_opts->deps.style != DEPS_NONE && !seen_error ())
1421 /* If -M or -MM was seen without -MF, default output to the
1422 output stream. */
1423 if (!deps_file)
1424 deps_stream = out_stream;
1425 else
1427 deps_stream = fopen (deps_file, deps_append ? "a": "w");
1428 if (!deps_stream)
1429 fatal_error ("opening dependency file %s: %m", deps_file);
1433 /* For performance, avoid tearing down cpplib's internal structures
1434 with cpp_destroy (). */
1435 cpp_finish (parse_in, deps_stream);
1437 if (deps_stream && deps_stream != out_stream
1438 && (ferror (deps_stream) || fclose (deps_stream)))
1439 fatal_error ("closing dependency file %s: %m", deps_file);
1441 if (out_stream && (ferror (out_stream) || fclose (out_stream)))
1442 fatal_error ("when writing output to %s: %m", out_fname);
1445 /* Either of two environment variables can specify output of
1446 dependencies. Their value is either "OUTPUT_FILE" or "OUTPUT_FILE
1447 DEPS_TARGET", where OUTPUT_FILE is the file to write deps info to
1448 and DEPS_TARGET is the target to mention in the deps. They also
1449 result in dependency information being appended to the output file
1450 rather than overwriting it, and like Sun's compiler
1451 SUNPRO_DEPENDENCIES suppresses the dependency on the main file. */
1452 static void
1453 check_deps_environment_vars (void)
1455 char *spec;
1457 GET_ENVIRONMENT (spec, "DEPENDENCIES_OUTPUT");
1458 if (spec)
1459 cpp_opts->deps.style = DEPS_USER;
1460 else
1462 GET_ENVIRONMENT (spec, "SUNPRO_DEPENDENCIES");
1463 if (spec)
1465 cpp_opts->deps.style = DEPS_SYSTEM;
1466 cpp_opts->deps.ignore_main_file = true;
1470 if (spec)
1472 /* Find the space before the DEPS_TARGET, if there is one. */
1473 char *s = strchr (spec, ' ');
1474 if (s)
1476 /* Let the caller perform MAKE quoting. */
1477 defer_opt (OPT_MT, s + 1);
1478 *s = '\0';
1481 /* Command line -MF overrides environment variables and default. */
1482 if (!deps_file)
1483 deps_file = spec;
1485 deps_append = 1;
1486 deps_seen = true;
1490 /* Handle deferred command line switches. */
1491 static void
1492 handle_deferred_opts (void)
1494 size_t i;
1495 struct deps *deps;
1497 /* Avoid allocating the deps buffer if we don't need it.
1498 (This flag may be true without there having been -MT or -MQ
1499 options, but we'll still need the deps buffer.) */
1500 if (!deps_seen)
1501 return;
1503 deps = cpp_get_deps (parse_in);
1505 for (i = 0; i < deferred_count; i++)
1507 struct deferred_opt *opt = &deferred_opts[i];
1509 if (opt->code == OPT_MT || opt->code == OPT_MQ)
1510 deps_add_target (deps, opt->arg, opt->code == OPT_MQ);
1514 /* These settings are appropriate for GCC, but not necessarily so for
1515 cpplib as a library. */
1516 static void
1517 sanitize_cpp_opts (void)
1519 /* If we don't know what style of dependencies to output, complain
1520 if any other dependency switches have been given. */
1521 if (deps_seen && cpp_opts->deps.style == DEPS_NONE)
1522 error ("to generate dependencies you must specify either -M or -MM");
1524 /* -dM and dependencies suppress normal output; do it here so that
1525 the last -d[MDN] switch overrides earlier ones. */
1526 if (flag_dump_macros == 'M')
1527 flag_no_output = 1;
1529 /* By default, -fdirectives-only implies -dD. This allows subsequent phases
1530 to perform proper macro expansion. */
1531 if (cpp_opts->directives_only && !cpp_opts->preprocessed && !flag_dump_macros)
1532 flag_dump_macros = 'D';
1534 /* Disable -dD, -dN and -dI if normal output is suppressed. Allow
1535 -dM since at least glibc relies on -M -dM to work. */
1536 /* Also, flag_no_output implies flag_no_line_commands, always. */
1537 if (flag_no_output)
1539 if (flag_dump_macros != 'M')
1540 flag_dump_macros = 0;
1541 flag_dump_includes = 0;
1542 flag_no_line_commands = 1;
1544 else if (cpp_opts->deps.missing_files)
1545 error ("-MG may only be used with -M or -MM");
1547 cpp_opts->unsigned_char = !flag_signed_char;
1548 cpp_opts->stdc_0_in_system_headers = STDC_0_IN_SYSTEM_HEADERS;
1550 /* Wlong-long is disabled by default. It is enabled by:
1551 [-pedantic | -Wtraditional] -std=[gnu|c]++98 ; or
1552 [-pedantic | -Wtraditional] -std=non-c99 .
1554 Either -Wlong-long or -Wno-long-long override any other settings. */
1555 if (warn_long_long == -1)
1556 warn_long_long = ((pedantic || warn_traditional)
1557 && (c_dialect_cxx () ? cxx_dialect == cxx98 : !flag_isoc99));
1558 cpp_opts->warn_long_long = warn_long_long;
1560 /* Similarly with -Wno-variadic-macros. No check for c99 here, since
1561 this also turns off warnings about GCCs extension. */
1562 cpp_opts->warn_variadic_macros
1563 = warn_variadic_macros && (pedantic || warn_traditional);
1565 /* If we're generating preprocessor output, emit current directory
1566 if explicitly requested or if debugging information is enabled.
1567 ??? Maybe we should only do it for debugging formats that
1568 actually output the current directory? */
1569 if (flag_working_directory == -1)
1570 flag_working_directory = (debug_info_level != DINFO_LEVEL_NONE);
1572 if (cpp_opts->directives_only)
1574 if (warn_unused_macros)
1575 error ("-fdirectives-only is incompatible with -Wunused_macros");
1576 if (cpp_opts->traditional)
1577 error ("-fdirectives-only is incompatible with -traditional");
1581 /* Add include path with a prefix at the front of its name. */
1582 static void
1583 add_prefixed_path (const char *suffix, size_t chain)
1585 char *path;
1586 const char *prefix;
1587 size_t prefix_len, suffix_len;
1589 suffix_len = strlen (suffix);
1590 prefix = iprefix ? iprefix : cpp_GCC_INCLUDE_DIR;
1591 prefix_len = iprefix ? strlen (iprefix) : cpp_GCC_INCLUDE_DIR_len;
1593 path = (char *) xmalloc (prefix_len + suffix_len + 1);
1594 memcpy (path, prefix, prefix_len);
1595 memcpy (path + prefix_len, suffix, suffix_len);
1596 path[prefix_len + suffix_len] = '\0';
1598 add_path (path, chain, 0, false);
1601 /* Handle -D, -U, -A, -imacros, and the first -include. */
1602 static void
1603 finish_options (void)
1605 if (!cpp_opts->preprocessed)
1607 size_t i;
1609 cb_file_change (parse_in,
1610 linemap_add (line_table, LC_RENAME, 0,
1611 _("<built-in>"), 0));
1613 cpp_init_builtins (parse_in, flag_hosted);
1614 c_cpp_builtins (parse_in);
1616 /* We're about to send user input to cpplib, so make it warn for
1617 things that we previously (when we sent it internal definitions)
1618 told it to not warn.
1620 C99 permits implementation-defined characters in identifiers.
1621 The documented meaning of -std= is to turn off extensions that
1622 conflict with the specified standard, and since a strictly
1623 conforming program cannot contain a '$', we do not condition
1624 their acceptance on the -std= setting. */
1625 cpp_opts->warn_dollars = (cpp_opts->pedantic && !cpp_opts->c99);
1627 cb_file_change (parse_in,
1628 linemap_add (line_table, LC_RENAME, 0,
1629 _("<command-line>"), 0));
1631 for (i = 0; i < deferred_count; i++)
1633 struct deferred_opt *opt = &deferred_opts[i];
1635 if (opt->code == OPT_D)
1636 cpp_define (parse_in, opt->arg);
1637 else if (opt->code == OPT_U)
1638 cpp_undef (parse_in, opt->arg);
1639 else if (opt->code == OPT_A)
1641 if (opt->arg[0] == '-')
1642 cpp_unassert (parse_in, opt->arg + 1);
1643 else
1644 cpp_assert (parse_in, opt->arg);
1648 /* Start the main input file, if the debug writer wants it. */
1649 if (debug_hooks->start_end_main_source_file
1650 && !flag_preprocess_only)
1651 (*debug_hooks->start_source_file) (0, this_input_filename);
1653 /* Handle -imacros after -D and -U. */
1654 for (i = 0; i < deferred_count; i++)
1656 struct deferred_opt *opt = &deferred_opts[i];
1658 if (opt->code == OPT_imacros
1659 && cpp_push_include (parse_in, opt->arg))
1661 /* Disable push_command_line_include callback for now. */
1662 include_cursor = deferred_count + 1;
1663 cpp_scan_nooutput (parse_in);
1667 else
1669 if (cpp_opts->directives_only)
1670 cpp_init_special_builtins (parse_in);
1672 /* Start the main input file, if the debug writer wants it. */
1673 if (debug_hooks->start_end_main_source_file
1674 && !flag_preprocess_only)
1675 (*debug_hooks->start_source_file) (0, this_input_filename);
1678 include_cursor = 0;
1679 push_command_line_include ();
1682 /* Give CPP the next file given by -include, if any. */
1683 static void
1684 push_command_line_include (void)
1686 while (include_cursor < deferred_count)
1688 struct deferred_opt *opt = &deferred_opts[include_cursor++];
1690 if (!cpp_opts->preprocessed && opt->code == OPT_include
1691 && cpp_push_include (parse_in, opt->arg))
1692 return;
1695 if (include_cursor == deferred_count)
1697 include_cursor++;
1698 /* -Wunused-macros should only warn about macros defined hereafter. */
1699 cpp_opts->warn_unused_macros = warn_unused_macros;
1700 /* Restore the line map from <command line>. */
1701 if (!cpp_opts->preprocessed)
1702 cpp_change_file (parse_in, LC_RENAME, this_input_filename);
1704 /* Set this here so the client can change the option if it wishes,
1705 and after stacking the main file so we don't trace the main file. */
1706 line_table->trace_includes = cpp_opts->print_include_names;
1710 /* File change callback. Has to handle -include files. */
1711 static void
1712 cb_file_change (cpp_reader * ARG_UNUSED (pfile),
1713 const struct line_map *new_map)
1715 if (flag_preprocess_only)
1716 pp_file_change (new_map);
1717 else
1718 fe_file_change (new_map);
1720 if (new_map == 0 || (new_map->reason == LC_LEAVE && MAIN_FILE_P (new_map)))
1721 push_command_line_include ();
1724 void
1725 cb_dir_change (cpp_reader * ARG_UNUSED (pfile), const char *dir)
1727 if (!set_src_pwd (dir))
1728 warning (0, "too late for # directive to set debug directory");
1731 /* Set the C 89 standard (with 1994 amendments if C94, without GNU
1732 extensions if ISO). There is no concept of gnu94. */
1733 static void
1734 set_std_c89 (int c94, int iso)
1736 cpp_set_lang (parse_in, c94 ? CLK_STDC94: iso ? CLK_STDC89: CLK_GNUC89);
1737 flag_iso = iso;
1738 flag_no_asm = iso;
1739 flag_no_gnu_keywords = iso;
1740 flag_no_nonansi_builtin = iso;
1741 flag_isoc94 = c94;
1742 flag_isoc99 = 0;
1743 flag_isoc1x = 0;
1746 /* Set the C 99 standard (without GNU extensions if ISO). */
1747 static void
1748 set_std_c99 (int iso)
1750 cpp_set_lang (parse_in, iso ? CLK_STDC99: CLK_GNUC99);
1751 flag_no_asm = iso;
1752 flag_no_nonansi_builtin = iso;
1753 flag_iso = iso;
1754 flag_isoc1x = 0;
1755 flag_isoc99 = 1;
1756 flag_isoc94 = 1;
1759 /* Set the C 1X standard draft (without GNU extensions if ISO). */
1760 static void
1761 set_std_c1x (int iso)
1763 cpp_set_lang (parse_in, iso ? CLK_STDC1X: CLK_GNUC1X);
1764 flag_no_asm = iso;
1765 flag_no_nonansi_builtin = iso;
1766 flag_iso = iso;
1767 flag_isoc1x = 1;
1768 flag_isoc99 = 1;
1769 flag_isoc94 = 1;
1772 /* Set the C++ 98 standard (without GNU extensions if ISO). */
1773 static void
1774 set_std_cxx98 (int iso)
1776 cpp_set_lang (parse_in, iso ? CLK_CXX98: CLK_GNUCXX);
1777 flag_no_gnu_keywords = iso;
1778 flag_no_nonansi_builtin = iso;
1779 flag_iso = iso;
1780 cxx_dialect = cxx98;
1783 /* Set the C++ 0x working draft "standard" (without GNU extensions if ISO). */
1784 static void
1785 set_std_cxx0x (int iso)
1787 cpp_set_lang (parse_in, iso ? CLK_CXX0X: CLK_GNUCXX0X);
1788 flag_no_gnu_keywords = iso;
1789 flag_no_nonansi_builtin = iso;
1790 flag_iso = iso;
1791 cxx_dialect = cxx0x;
1794 /* Args to -d specify what to dump. Silently ignore
1795 unrecognized options; they may be aimed at toplev.c. */
1796 static void
1797 handle_OPT_d (const char *arg)
1799 char c;
1801 while ((c = *arg++) != '\0')
1802 switch (c)
1804 case 'M': /* Dump macros only. */
1805 case 'N': /* Dump names. */
1806 case 'D': /* Dump definitions. */
1807 case 'U': /* Dump used macros. */
1808 flag_dump_macros = c;
1809 break;
1811 case 'I':
1812 flag_dump_includes = 1;
1813 break;