2014-09-12 Marc Glisse <marc.glisse@inria.fr>
[official-gcc.git] / gcc / c-family / c-opts.c
blob74866911e5be4455fffbf4d5f790d0f5372fcbb2
1 /* C/ObjC/C++ command line option handling.
2 Copyright (C) 2002-2014 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 3, 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 COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tree.h"
25 #include "c-common.h"
26 #include "c-pragma.h"
27 #include "flags.h"
28 #include "toplev.h"
29 #include "langhooks.h"
30 #include "diagnostic.h"
31 #include "tree-diagnostic.h" /* for virt_loc_aware_diagnostic_finalizer */
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 "plugin.h" /* For PLUGIN_INCLUDE_FILE event. */
39 #include "mkdeps.h"
40 #include "c-target.h"
41 #include "tm.h" /* For BYTES_BIG_ENDIAN,
42 DOLLARS_IN_IDENTIFIERS,
43 STDC_0_IN_SYSTEM_HEADERS,
44 TARGET_FLT_EVAL_METHOD_NON_DEFAULT and
45 TARGET_OPTF. */
46 #include "tm_p.h" /* For C_COMMON_OVERRIDE_OPTIONS. */
47 #include "dumpfile.h"
49 #ifndef DOLLARS_IN_IDENTIFIERS
50 # define DOLLARS_IN_IDENTIFIERS true
51 #endif
53 #ifndef TARGET_SYSTEM_ROOT
54 # define TARGET_SYSTEM_ROOT NULL
55 #endif
57 #ifndef TARGET_OPTF
58 #define TARGET_OPTF(ARG)
59 #endif
61 /* CPP's options. */
62 cpp_options *cpp_opts;
64 /* Input filename. */
65 static const char *this_input_filename;
67 /* Filename and stream for preprocessed output. */
68 static const char *out_fname;
69 static FILE *out_stream;
71 /* Append dependencies to deps_file. */
72 static bool deps_append;
74 /* If dependency switches (-MF etc.) have been given. */
75 static bool deps_seen;
77 /* If -v seen. */
78 static bool verbose;
80 /* Dependency output file. */
81 static const char *deps_file;
83 /* The prefix given by -iprefix, if any. */
84 static const char *iprefix;
86 /* The multilib directory given by -imultilib, if any. */
87 static const char *imultilib;
89 /* The system root, if any. Overridden by -isysroot. */
90 static const char *sysroot = TARGET_SYSTEM_ROOT;
92 /* Zero disables all standard directories for headers. */
93 static bool std_inc = true;
95 /* Zero disables the C++-specific standard directories for headers. */
96 static bool std_cxx_inc = true;
98 /* If the quote chain has been split by -I-. */
99 static bool quote_chain_split;
101 /* Number of deferred options. */
102 static size_t deferred_count;
104 /* Number of deferred options scanned for -include. */
105 static size_t include_cursor;
107 /* Dump files/flags to use during parsing. */
108 static FILE *original_dump_file = NULL;
109 static int original_dump_flags;
110 static FILE *class_dump_file = NULL;
111 static int class_dump_flags;
113 /* Whether any standard preincluded header has been preincluded. */
114 static bool done_preinclude;
116 static void handle_OPT_d (const char *);
117 static void set_std_cxx98 (int);
118 static void set_std_cxx11 (int);
119 static void set_std_cxx14 (int);
120 static void set_std_cxx1z (int);
121 static void set_std_c89 (int, int);
122 static void set_std_c99 (int);
123 static void set_std_c11 (int);
124 static void check_deps_environment_vars (void);
125 static void handle_deferred_opts (void);
126 static void sanitize_cpp_opts (void);
127 static void add_prefixed_path (const char *, size_t);
128 static void push_command_line_include (void);
129 static void cb_file_change (cpp_reader *, const struct line_map *);
130 static void cb_dir_change (cpp_reader *, const char *);
131 static void c_finish_options (void);
133 #ifndef STDC_0_IN_SYSTEM_HEADERS
134 #define STDC_0_IN_SYSTEM_HEADERS 0
135 #endif
137 /* Holds switches parsed by c_common_handle_option (), but whose
138 handling is deferred to c_common_post_options (). */
139 static void defer_opt (enum opt_code, const char *);
140 static struct deferred_opt
142 enum opt_code code;
143 const char *arg;
144 } *deferred_opts;
147 extern const unsigned int
148 c_family_lang_mask = (CL_C | CL_CXX | CL_ObjC | CL_ObjCXX);
150 /* Defer option CODE with argument ARG. */
151 static void
152 defer_opt (enum opt_code code, const char *arg)
154 deferred_opts[deferred_count].code = code;
155 deferred_opts[deferred_count].arg = arg;
156 deferred_count++;
159 /* Return language mask for option parsing. */
160 unsigned int
161 c_common_option_lang_mask (void)
163 static const unsigned int lang_flags[] = {CL_C, CL_ObjC, CL_CXX, CL_ObjCXX};
165 return lang_flags[c_language];
168 /* Diagnostic finalizer for C/C++/Objective-C/Objective-C++. */
169 static void
170 c_diagnostic_finalizer (diagnostic_context *context,
171 diagnostic_info *diagnostic)
173 diagnostic_show_locus (context, diagnostic);
174 /* By default print macro expansion contexts in the diagnostic
175 finalizer -- for tokens resulting from macro expansion. */
176 virt_loc_aware_diagnostic_finalizer (context, diagnostic);
177 pp_destroy_prefix (context->printer);
178 pp_newline_and_flush (context->printer);
181 /* Common diagnostics initialization. */
182 void
183 c_common_initialize_diagnostics (diagnostic_context *context)
185 /* This is conditionalized only because that is the way the front
186 ends used to do it. Maybe this should be unconditional? */
187 if (c_dialect_cxx ())
189 /* By default wrap lines at 80 characters. Is getenv
190 ("COLUMNS") preferable? */
191 diagnostic_line_cutoff (context) = 80;
192 /* By default, emit location information once for every
193 diagnostic message. */
194 diagnostic_prefixing_rule (context) = DIAGNOSTICS_SHOW_PREFIX_ONCE;
196 diagnostic_finalizer (context) = c_diagnostic_finalizer;
197 context->opt_permissive = OPT_fpermissive;
200 /* Whether options from all C-family languages should be accepted
201 quietly. */
202 static bool accept_all_c_family_options = false;
204 /* Return whether to complain about a wrong-language option. */
205 bool
206 c_common_complain_wrong_lang_p (const struct cl_option *option)
208 if (accept_all_c_family_options
209 && (option->flags & c_family_lang_mask))
210 return false;
212 return true;
215 /* Initialize options structure OPTS. */
216 void
217 c_common_init_options_struct (struct gcc_options *opts)
219 opts->x_flag_exceptions = c_dialect_cxx ();
220 opts->x_warn_pointer_arith = c_dialect_cxx ();
221 opts->x_warn_write_strings = c_dialect_cxx ();
222 opts->x_flag_warn_unused_result = true;
224 /* By default, C99-like requirements for complex multiply and divide. */
225 opts->x_flag_complex_method = 2;
228 /* Common initialization before calling option handlers. */
229 void
230 c_common_init_options (unsigned int decoded_options_count,
231 struct cl_decoded_option *decoded_options)
233 unsigned int i;
234 struct cpp_callbacks *cb;
236 parse_in = cpp_create_reader (c_dialect_cxx () ? CLK_GNUCXX: CLK_GNUC89,
237 ident_hash, line_table);
238 cb = cpp_get_callbacks (parse_in);
239 cb->error = c_cpp_error;
241 cpp_opts = cpp_get_options (parse_in);
242 cpp_opts->dollars_in_ident = DOLLARS_IN_IDENTIFIERS;
243 cpp_opts->objc = c_dialect_objc ();
245 /* Reset to avoid warnings on internal definitions. We set it just
246 before passing on command-line options to cpplib. */
247 cpp_opts->warn_dollars = 0;
249 deferred_opts = XNEWVEC (struct deferred_opt, decoded_options_count);
251 if (c_language == clk_c)
253 /* If preprocessing assembly language, accept any of the C-family
254 front end options since the driver may pass them through. */
255 for (i = 1; i < decoded_options_count; i++)
256 if (decoded_options[i].opt_index == OPT_lang_asm)
258 accept_all_c_family_options = true;
259 break;
264 /* Handle switch SCODE with argument ARG. VALUE is true, unless no-
265 form of an -f or -W option was given. Returns false if the switch was
266 invalid, true if valid. Use HANDLERS in recursive handle_option calls. */
267 bool
268 c_common_handle_option (size_t scode, const char *arg, int value,
269 int kind, location_t loc,
270 const struct cl_option_handlers *handlers)
272 const struct cl_option *option = &cl_options[scode];
273 enum opt_code code = (enum opt_code) scode;
274 bool result = true;
276 /* Prevent resetting the language standard to a C dialect when the driver
277 has already determined that we're looking at assembler input. */
278 bool preprocessing_asm_p = (cpp_get_options (parse_in)->lang == CLK_ASM);
280 switch (code)
282 default:
283 if (cl_options[code].flags & c_family_lang_mask)
285 if ((option->flags & CL_TARGET)
286 && ! targetcm.handle_c_option (scode, arg, value))
287 result = false;
288 break;
290 result = false;
291 break;
293 case OPT__output_pch_:
294 pch_file = arg;
295 break;
297 case OPT_A:
298 defer_opt (code, arg);
299 break;
301 case OPT_C:
302 cpp_opts->discard_comments = 0;
303 break;
305 case OPT_CC:
306 cpp_opts->discard_comments = 0;
307 cpp_opts->discard_comments_in_macro_exp = 0;
308 break;
310 case OPT_D:
311 defer_opt (code, arg);
312 break;
314 case OPT_H:
315 cpp_opts->print_include_names = 1;
316 break;
318 case OPT_F:
319 TARGET_OPTF (xstrdup (arg));
320 break;
322 case OPT_I:
323 if (strcmp (arg, "-"))
324 add_path (xstrdup (arg), BRACKET, 0, true);
325 else
327 if (quote_chain_split)
328 error ("-I- specified twice");
329 quote_chain_split = true;
330 split_quote_chain ();
331 inform (input_location, "obsolete option -I- used, please use -iquote instead");
333 break;
335 case OPT_M:
336 case OPT_MM:
337 /* When doing dependencies with -M or -MM, suppress normal
338 preprocessed output, but still do -dM etc. as software
339 depends on this. Preprocessed output does occur if -MD, -MMD
340 or environment var dependency generation is used. */
341 cpp_opts->deps.style = (code == OPT_M ? DEPS_SYSTEM: DEPS_USER);
342 flag_no_output = 1;
343 break;
345 case OPT_MD:
346 case OPT_MMD:
347 cpp_opts->deps.style = (code == OPT_MD ? DEPS_SYSTEM: DEPS_USER);
348 cpp_opts->deps.need_preprocessor_output = true;
349 deps_file = arg;
350 break;
352 case OPT_MF:
353 deps_seen = true;
354 deps_file = arg;
355 break;
357 case OPT_MG:
358 deps_seen = true;
359 cpp_opts->deps.missing_files = true;
360 break;
362 case OPT_MP:
363 deps_seen = true;
364 cpp_opts->deps.phony_targets = true;
365 break;
367 case OPT_MQ:
368 case OPT_MT:
369 deps_seen = true;
370 defer_opt (code, arg);
371 break;
373 case OPT_P:
374 flag_no_line_commands = 1;
375 break;
377 case OPT_U:
378 defer_opt (code, arg);
379 break;
381 case OPT_Wall:
382 /* ??? Don't add new options here. Use LangEnabledBy in c.opt. */
384 cpp_opts->warn_num_sign_change = value;
385 break;
387 case OPT_Wunknown_pragmas:
388 /* Set to greater than 1, so that even unknown pragmas in
389 system headers will be warned about. */
390 /* ??? There is no way to handle this automatically for now. */
391 warn_unknown_pragmas = value * 2;
392 break;
394 case OPT_ansi:
395 if (!c_dialect_cxx ())
396 set_std_c89 (false, true);
397 else
398 set_std_cxx98 (true);
399 break;
401 case OPT_d:
402 handle_OPT_d (arg);
403 break;
405 case OPT_Wabi_:
406 warn_abi = true;
407 if (value == 1)
409 warning (0, "%<-Wabi=1%> is not supported, using =2");
410 value = 2;
412 flag_abi_compat_version = value;
413 break;
415 case OPT_fcanonical_system_headers:
416 cpp_opts->canonical_system_headers = value;
417 break;
419 case OPT_fcond_mismatch:
420 if (!c_dialect_cxx ())
422 flag_cond_mismatch = value;
423 break;
425 warning (0, "switch %qs is no longer supported", option->opt_text);
426 break;
428 case OPT_fbuiltin_:
429 if (value)
430 result = false;
431 else
432 disable_builtin_function (arg);
433 break;
435 case OPT_fdirectives_only:
436 cpp_opts->directives_only = value;
437 break;
439 case OPT_fdollars_in_identifiers:
440 cpp_opts->dollars_in_ident = value;
441 break;
443 case OPT_ffreestanding:
444 value = !value;
445 /* Fall through.... */
446 case OPT_fhosted:
447 flag_hosted = value;
448 flag_no_builtin = !value;
449 break;
451 case OPT_fconstant_string_class_:
452 constant_string_class_name = arg;
453 break;
455 case OPT_fextended_identifiers:
456 cpp_opts->extended_identifiers = value;
457 break;
459 case OPT_foperator_names:
460 cpp_opts->operator_names = value;
461 break;
463 case OPT_fpch_deps:
464 cpp_opts->restore_pch_deps = value;
465 break;
467 case OPT_fpch_preprocess:
468 flag_pch_preprocess = value;
469 break;
471 case OPT_fpermissive:
472 flag_permissive = value;
473 global_dc->permissive = value;
474 break;
476 case OPT_fpreprocessed:
477 cpp_opts->preprocessed = value;
478 break;
480 case OPT_fdebug_cpp:
481 cpp_opts->debug = 1;
482 break;
484 case OPT_ftrack_macro_expansion:
485 if (value)
486 value = 2;
487 /* Fall Through. */
489 case OPT_ftrack_macro_expansion_:
490 if (arg && *arg != '\0')
491 cpp_opts->track_macro_expansion = value;
492 else
493 cpp_opts->track_macro_expansion = 2;
494 break;
496 case OPT_frepo:
497 flag_use_repository = value;
498 if (value)
499 flag_implicit_templates = 0;
500 break;
502 case OPT_ftabstop_:
503 /* It is documented that we silently ignore silly values. */
504 if (value >= 1 && value <= 100)
505 cpp_opts->tabstop = value;
506 break;
508 case OPT_fexec_charset_:
509 cpp_opts->narrow_charset = arg;
510 break;
512 case OPT_fwide_exec_charset_:
513 cpp_opts->wide_charset = arg;
514 break;
516 case OPT_finput_charset_:
517 cpp_opts->input_charset = arg;
518 break;
520 case OPT_ftemplate_depth_:
521 max_tinst_depth = value;
522 break;
524 case OPT_fvisibility_inlines_hidden:
525 visibility_options.inlines_hidden = value;
526 break;
528 case OPT_femit_struct_debug_baseonly:
529 set_struct_debug_option (&global_options, loc, "base");
530 break;
532 case OPT_femit_struct_debug_reduced:
533 set_struct_debug_option (&global_options, loc,
534 "dir:ord:sys,dir:gen:any,ind:base");
535 break;
537 case OPT_femit_struct_debug_detailed_:
538 set_struct_debug_option (&global_options, loc, arg);
539 break;
541 case OPT_fext_numeric_literals:
542 cpp_opts->ext_numeric_literals = value;
543 break;
545 case OPT_idirafter:
546 add_path (xstrdup (arg), AFTER, 0, true);
547 break;
549 case OPT_imacros:
550 case OPT_include:
551 defer_opt (code, arg);
552 break;
554 case OPT_imultilib:
555 imultilib = arg;
556 break;
558 case OPT_iprefix:
559 iprefix = arg;
560 break;
562 case OPT_iquote:
563 add_path (xstrdup (arg), QUOTE, 0, true);
564 break;
566 case OPT_isysroot:
567 sysroot = arg;
568 break;
570 case OPT_isystem:
571 add_path (xstrdup (arg), SYSTEM, 0, true);
572 break;
574 case OPT_iwithprefix:
575 add_prefixed_path (arg, SYSTEM);
576 break;
578 case OPT_iwithprefixbefore:
579 add_prefixed_path (arg, BRACKET);
580 break;
582 case OPT_lang_asm:
583 cpp_set_lang (parse_in, CLK_ASM);
584 cpp_opts->dollars_in_ident = false;
585 break;
587 case OPT_nostdinc:
588 std_inc = false;
589 break;
591 case OPT_nostdinc__:
592 std_cxx_inc = false;
593 break;
595 case OPT_o:
596 if (!out_fname)
597 out_fname = arg;
598 else
599 error ("output filename specified twice");
600 break;
602 case OPT_print_objc_runtime_info:
603 print_struct_values = 1;
604 break;
606 case OPT_remap:
607 cpp_opts->remap = 1;
608 break;
610 case OPT_std_c__98:
611 case OPT_std_gnu__98:
612 if (!preprocessing_asm_p)
613 set_std_cxx98 (code == OPT_std_c__98 /* ISO */);
614 break;
616 case OPT_std_c__11:
617 case OPT_std_gnu__11:
618 if (!preprocessing_asm_p)
620 set_std_cxx11 (code == OPT_std_c__11 /* ISO */);
621 if (code == OPT_std_c__11)
622 cpp_opts->ext_numeric_literals = 0;
624 break;
626 case OPT_std_c__14:
627 case OPT_std_gnu__14:
628 if (!preprocessing_asm_p)
630 set_std_cxx14 (code == OPT_std_c__14 /* ISO */);
631 if (code == OPT_std_c__14)
632 cpp_opts->ext_numeric_literals = 0;
634 break;
636 case OPT_std_c__1z:
637 case OPT_std_gnu__1z:
638 if (!preprocessing_asm_p)
640 set_std_cxx1z (code == OPT_std_c__1z /* ISO */);
641 if (code == OPT_std_c__1z)
642 cpp_opts->ext_numeric_literals = 0;
644 break;
646 case OPT_std_c90:
647 case OPT_std_iso9899_199409:
648 if (!preprocessing_asm_p)
649 set_std_c89 (code == OPT_std_iso9899_199409 /* c94 */, true /* ISO */);
650 break;
652 case OPT_std_gnu90:
653 if (!preprocessing_asm_p)
654 set_std_c89 (false /* c94 */, false /* ISO */);
655 break;
657 case OPT_std_c99:
658 if (!preprocessing_asm_p)
659 set_std_c99 (true /* ISO */);
660 break;
662 case OPT_std_gnu99:
663 if (!preprocessing_asm_p)
664 set_std_c99 (false /* ISO */);
665 break;
667 case OPT_std_c11:
668 if (!preprocessing_asm_p)
669 set_std_c11 (true /* ISO */);
670 break;
672 case OPT_std_gnu11:
673 if (!preprocessing_asm_p)
674 set_std_c11 (false /* ISO */);
675 break;
677 case OPT_trigraphs:
678 cpp_opts->trigraphs = 1;
679 break;
681 case OPT_traditional_cpp:
682 cpp_opts->traditional = 1;
683 break;
685 case OPT_v:
686 verbose = true;
687 break;
689 case OPT_Wabi:
690 warn_psabi = value;
691 break;
694 switch (c_language)
696 case clk_c:
697 C_handle_option_auto (&global_options, &global_options_set,
698 scode, arg, value,
699 c_family_lang_mask, kind,
700 loc, handlers, global_dc);
701 break;
703 case clk_objc:
704 ObjC_handle_option_auto (&global_options, &global_options_set,
705 scode, arg, value,
706 c_family_lang_mask, kind,
707 loc, handlers, global_dc);
708 break;
710 case clk_cxx:
711 CXX_handle_option_auto (&global_options, &global_options_set,
712 scode, arg, value,
713 c_family_lang_mask, kind,
714 loc, handlers, global_dc);
715 break;
717 case clk_objcxx:
718 ObjCXX_handle_option_auto (&global_options, &global_options_set,
719 scode, arg, value,
720 c_family_lang_mask, kind,
721 loc, handlers, global_dc);
722 break;
724 default:
725 gcc_unreachable ();
728 cpp_handle_option_auto (&global_options, scode, cpp_opts);
729 return result;
732 /* Default implementation of TARGET_HANDLE_C_OPTION. */
734 bool
735 default_handle_c_option (size_t code ATTRIBUTE_UNUSED,
736 const char *arg ATTRIBUTE_UNUSED,
737 int value ATTRIBUTE_UNUSED)
739 return false;
742 /* Post-switch processing. */
743 bool
744 c_common_post_options (const char **pfilename)
746 struct cpp_callbacks *cb;
748 /* Canonicalize the input and output filenames. */
749 if (in_fnames == NULL)
751 in_fnames = XNEWVEC (const char *, 1);
752 in_fnames[0] = "";
754 else if (strcmp (in_fnames[0], "-") == 0)
755 in_fnames[0] = "";
757 if (out_fname == NULL || !strcmp (out_fname, "-"))
758 out_fname = "";
760 if (cpp_opts->deps.style == DEPS_NONE)
761 check_deps_environment_vars ();
763 handle_deferred_opts ();
765 sanitize_cpp_opts ();
767 register_include_chains (parse_in, sysroot, iprefix, imultilib,
768 std_inc, std_cxx_inc && c_dialect_cxx (), verbose);
770 #ifdef C_COMMON_OVERRIDE_OPTIONS
771 /* Some machines may reject certain combinations of C
772 language-specific options. */
773 C_COMMON_OVERRIDE_OPTIONS;
774 #endif
776 /* Excess precision other than "fast" requires front-end
777 support. */
778 if (c_dialect_cxx ())
780 if (flag_excess_precision_cmdline == EXCESS_PRECISION_STANDARD
781 && TARGET_FLT_EVAL_METHOD_NON_DEFAULT)
782 sorry ("-fexcess-precision=standard for C++");
783 flag_excess_precision_cmdline = EXCESS_PRECISION_FAST;
785 else if (flag_excess_precision_cmdline == EXCESS_PRECISION_DEFAULT)
786 flag_excess_precision_cmdline = (flag_iso
787 ? EXCESS_PRECISION_STANDARD
788 : EXCESS_PRECISION_FAST);
790 /* ISO C restricts floating-point expression contraction to within
791 source-language expressions (-ffp-contract=on, currently an alias
792 for -ffp-contract=off). */
793 if (flag_iso
794 && !c_dialect_cxx ()
795 && (global_options_set.x_flag_fp_contract_mode
796 == (enum fp_contract_mode) 0)
797 && flag_unsafe_math_optimizations == 0)
798 flag_fp_contract_mode = FP_CONTRACT_OFF;
800 /* By default we use C99 inline semantics in GNU99 or C99 mode. C99
801 inline semantics are not supported in GNU89 or C89 mode. */
802 if (flag_gnu89_inline == -1)
803 flag_gnu89_inline = !flag_isoc99;
804 else if (!flag_gnu89_inline && !flag_isoc99)
805 error ("-fno-gnu89-inline is only supported in GNU99 or C99 mode");
807 /* Default to ObjC sjlj exception handling if NeXT runtime. */
808 if (flag_objc_sjlj_exceptions < 0)
809 flag_objc_sjlj_exceptions = flag_next_runtime;
810 if (flag_objc_exceptions && !flag_objc_sjlj_exceptions)
811 flag_exceptions = 1;
813 /* If -ffreestanding, -fno-hosted or -fno-builtin then disable
814 pattern recognition. */
815 if (!global_options_set.x_flag_tree_loop_distribute_patterns
816 && flag_no_builtin)
817 flag_tree_loop_distribute_patterns = 0;
819 /* -Woverlength-strings is off by default, but is enabled by -Wpedantic.
820 It is never enabled in C++, as the minimum limit is not normative
821 in that standard. */
822 if (c_dialect_cxx ())
823 warn_overlength_strings = 0;
825 /* Wmain is enabled by default in C++ but not in C. */
826 /* Wmain is disabled by default for -ffreestanding (!flag_hosted),
827 even if -Wall or -Wpedantic was given (warn_main will be 2 if set
828 by -Wall, 1 if set by -Wmain). */
829 if (warn_main == -1)
830 warn_main = (c_dialect_cxx () && flag_hosted) ? 1 : 0;
831 else if (warn_main == 2)
832 warn_main = flag_hosted ? 1 : 0;
834 /* In C, -Wall and -Wc++-compat enable -Wenum-compare; if it has not
835 yet been set, it is disabled by default. In C++, it is enabled
836 by default. */
837 if (warn_enum_compare == -1)
838 warn_enum_compare = c_dialect_cxx () ? 1 : 0;
840 /* -Wpacked-bitfield-compat is on by default for the C languages. The
841 warning is issued in stor-layout.c which is not part of the front-end so
842 we need to selectively turn it on here. */
843 if (warn_packed_bitfield_compat == -1)
844 warn_packed_bitfield_compat = 1;
846 /* Special format checking options don't work without -Wformat; warn if
847 they are used. */
848 if (!warn_format)
850 warning (OPT_Wformat_y2k,
851 "-Wformat-y2k ignored without -Wformat");
852 warning (OPT_Wformat_extra_args,
853 "-Wformat-extra-args ignored without -Wformat");
854 warning (OPT_Wformat_zero_length,
855 "-Wformat-zero-length ignored without -Wformat");
856 warning (OPT_Wformat_nonliteral,
857 "-Wformat-nonliteral ignored without -Wformat");
858 warning (OPT_Wformat_contains_nul,
859 "-Wformat-contains-nul ignored without -Wformat");
860 warning (OPT_Wformat_security,
861 "-Wformat-security ignored without -Wformat");
864 /* -Wimplicit-function-declaration is enabled by default for C99. */
865 if (warn_implicit_function_declaration == -1)
866 warn_implicit_function_declaration = flag_isoc99;
868 /* Declone C++ 'structors if -Os. */
869 if (flag_declone_ctor_dtor == -1)
870 flag_declone_ctor_dtor = optimize_size;
872 if (flag_abi_compat_version == 1)
874 warning (0, "%<-fabi-compat-version=1%> is not supported, using =2");
875 flag_abi_compat_version = 2;
877 else if (flag_abi_compat_version == -1)
879 /* Generate compatibility aliases for ABI v2 (3.4-4.9) by default. */
880 flag_abi_compat_version = (flag_abi_version == 0 ? 2 : 0);
882 /* But don't warn about backward compatibility unless explicitly
883 requested with -Wabi=n. */
884 if (flag_abi_version == 0)
885 warn_abi = false;
888 if (cxx_dialect >= cxx11)
890 /* If we're allowing C++0x constructs, don't warn about C++98
891 identifiers which are keywords in C++0x. */
892 warn_cxx0x_compat = 0;
894 if (warn_narrowing == -1)
895 warn_narrowing = 1;
897 else if (warn_narrowing == -1)
898 warn_narrowing = 0;
900 if (flag_extern_tls_init)
902 #if !defined (ASM_OUTPUT_DEF) || !SUPPORTS_WEAK
903 /* Lazy TLS initialization for a variable in another TU requires
904 alias and weak reference support. */
905 if (flag_extern_tls_init > 0)
906 sorry ("external TLS initialization functions not supported "
907 "on this target");
908 flag_extern_tls_init = 0;
909 #else
910 flag_extern_tls_init = 1;
911 #endif
914 if (flag_preprocess_only)
916 /* Open the output now. We must do so even if flag_no_output is
917 on, because there may be other output than from the actual
918 preprocessing (e.g. from -dM). */
919 if (out_fname[0] == '\0')
920 out_stream = stdout;
921 else
922 out_stream = fopen (out_fname, "w");
924 if (out_stream == NULL)
926 fatal_error ("opening output file %s: %m", out_fname);
927 return false;
930 if (num_in_fnames > 1)
931 error ("too many filenames given. Type %s --help for usage",
932 progname);
934 init_pp_output (out_stream);
936 else
938 init_c_lex ();
940 /* When writing a PCH file, avoid reading some other PCH file,
941 because the default address space slot then can't be used
942 for the output PCH file. */
943 if (pch_file)
945 c_common_no_more_pch ();
946 /* Only -g0 and -gdwarf* are supported with PCH, for other
947 debug formats we warn here and refuse to load any PCH files. */
948 if (write_symbols != NO_DEBUG && write_symbols != DWARF2_DEBUG)
949 warning (OPT_Wdeprecated,
950 "the \"%s\" debug format cannot be used with "
951 "pre-compiled headers", debug_type_names[write_symbols]);
953 else if (write_symbols != NO_DEBUG && write_symbols != DWARF2_DEBUG)
954 c_common_no_more_pch ();
956 /* Yuk. WTF is this? I do know ObjC relies on it somewhere. */
957 input_location = UNKNOWN_LOCATION;
960 cb = cpp_get_callbacks (parse_in);
961 cb->file_change = cb_file_change;
962 cb->dir_change = cb_dir_change;
963 cpp_post_options (parse_in);
964 init_global_opts_from_cpp (&global_options, cpp_get_options (parse_in));
966 input_location = UNKNOWN_LOCATION;
968 *pfilename = this_input_filename
969 = cpp_read_main_file (parse_in, in_fnames[0]);
970 /* Don't do any compilation or preprocessing if there is no input file. */
971 if (this_input_filename == NULL)
973 errorcount++;
974 return false;
977 if (flag_working_directory
978 && flag_preprocess_only && !flag_no_line_commands)
979 pp_dir_change (parse_in, get_src_pwd ());
981 /* Disable LTO output when outputting a precompiled header. */
982 if (pch_file && flag_lto)
984 flag_lto = 0;
985 flag_generate_lto = 0;
988 return flag_preprocess_only;
991 /* Front end initialization common to C, ObjC and C++. */
992 bool
993 c_common_init (void)
995 /* Set up preprocessor arithmetic. Must be done after call to
996 c_common_nodes_and_builtins for type nodes to be good. */
997 cpp_opts->precision = TYPE_PRECISION (intmax_type_node);
998 cpp_opts->char_precision = TYPE_PRECISION (char_type_node);
999 cpp_opts->int_precision = TYPE_PRECISION (integer_type_node);
1000 cpp_opts->wchar_precision = TYPE_PRECISION (wchar_type_node);
1001 cpp_opts->unsigned_wchar = TYPE_UNSIGNED (wchar_type_node);
1002 cpp_opts->bytes_big_endian = BYTES_BIG_ENDIAN;
1004 /* This can't happen until after wchar_precision and bytes_big_endian
1005 are known. */
1006 cpp_init_iconv (parse_in);
1008 if (version_flag)
1010 int i;
1011 fputs ("Compiler executable checksum: ", stderr);
1012 for (i = 0; i < 16; i++)
1013 fprintf (stderr, "%02x", executable_checksum[i]);
1014 putc ('\n', stderr);
1017 /* Has to wait until now so that cpplib has its hash table. */
1018 init_pragma ();
1020 if (flag_preprocess_only)
1022 c_finish_options ();
1023 preprocess_file (parse_in);
1024 return false;
1027 return true;
1030 /* Initialize the integrated preprocessor after debug output has been
1031 initialized; loop over each input file. */
1032 void
1033 c_common_parse_file (void)
1035 unsigned int i;
1037 i = 0;
1038 for (;;)
1040 c_finish_options ();
1041 /* Open the dump files to use for the original and class dump output
1042 here, to be used during parsing for the current file. */
1043 original_dump_file = dump_begin (TDI_original, &original_dump_flags);
1044 class_dump_file = dump_begin (TDI_class, &class_dump_flags);
1045 pch_init ();
1046 push_file_scope ();
1047 c_parse_file ();
1048 pop_file_scope ();
1049 /* And end the main input file, if the debug writer wants it */
1050 if (debug_hooks->start_end_main_source_file)
1051 (*debug_hooks->end_source_file) (0);
1052 if (++i >= num_in_fnames)
1053 break;
1054 cpp_undef_all (parse_in);
1055 cpp_clear_file_cache (parse_in);
1056 this_input_filename
1057 = cpp_read_main_file (parse_in, in_fnames[i]);
1058 if (original_dump_file)
1060 dump_end (TDI_original, original_dump_file);
1061 original_dump_file = NULL;
1063 if (class_dump_file)
1065 dump_end (TDI_class, class_dump_file);
1066 class_dump_file = NULL;
1068 /* If an input file is missing, abandon further compilation.
1069 cpplib has issued a diagnostic. */
1070 if (!this_input_filename)
1071 break;
1075 /* Returns the appropriate dump file for PHASE to dump with FLAGS. */
1076 FILE *
1077 get_dump_info (int phase, int *flags)
1079 gcc_assert (phase == TDI_original || phase == TDI_class);
1080 if (phase == TDI_original)
1082 *flags = original_dump_flags;
1083 return original_dump_file;
1085 else
1087 *flags = class_dump_flags;
1088 return class_dump_file;
1092 /* Common finish hook for the C, ObjC and C++ front ends. */
1093 void
1094 c_common_finish (void)
1096 FILE *deps_stream = NULL;
1098 /* Don't write the deps file if there are errors. */
1099 if (cpp_opts->deps.style != DEPS_NONE && !seen_error ())
1101 /* If -M or -MM was seen without -MF, default output to the
1102 output stream. */
1103 if (!deps_file)
1104 deps_stream = out_stream;
1105 else
1107 deps_stream = fopen (deps_file, deps_append ? "a": "w");
1108 if (!deps_stream)
1109 fatal_error ("opening dependency file %s: %m", deps_file);
1113 /* For performance, avoid tearing down cpplib's internal structures
1114 with cpp_destroy (). */
1115 cpp_finish (parse_in, deps_stream);
1117 if (deps_stream && deps_stream != out_stream
1118 && (ferror (deps_stream) || fclose (deps_stream)))
1119 fatal_error ("closing dependency file %s: %m", deps_file);
1121 if (out_stream && (ferror (out_stream) || fclose (out_stream)))
1122 fatal_error ("when writing output to %s: %m", out_fname);
1125 /* Either of two environment variables can specify output of
1126 dependencies. Their value is either "OUTPUT_FILE" or "OUTPUT_FILE
1127 DEPS_TARGET", where OUTPUT_FILE is the file to write deps info to
1128 and DEPS_TARGET is the target to mention in the deps. They also
1129 result in dependency information being appended to the output file
1130 rather than overwriting it, and like Sun's compiler
1131 SUNPRO_DEPENDENCIES suppresses the dependency on the main file. */
1132 static void
1133 check_deps_environment_vars (void)
1135 char *spec;
1137 spec = getenv ("DEPENDENCIES_OUTPUT");
1138 if (spec)
1139 cpp_opts->deps.style = DEPS_USER;
1140 else
1142 spec = getenv ("SUNPRO_DEPENDENCIES");
1143 if (spec)
1145 cpp_opts->deps.style = DEPS_SYSTEM;
1146 cpp_opts->deps.ignore_main_file = true;
1150 if (spec)
1152 /* Find the space before the DEPS_TARGET, if there is one. */
1153 char *s = strchr (spec, ' ');
1154 if (s)
1156 /* Let the caller perform MAKE quoting. */
1157 defer_opt (OPT_MT, s + 1);
1158 *s = '\0';
1161 /* Command line -MF overrides environment variables and default. */
1162 if (!deps_file)
1163 deps_file = spec;
1165 deps_append = 1;
1166 deps_seen = true;
1170 /* Handle deferred command line switches. */
1171 static void
1172 handle_deferred_opts (void)
1174 size_t i;
1175 struct deps *deps;
1177 /* Avoid allocating the deps buffer if we don't need it.
1178 (This flag may be true without there having been -MT or -MQ
1179 options, but we'll still need the deps buffer.) */
1180 if (!deps_seen)
1181 return;
1183 deps = cpp_get_deps (parse_in);
1185 for (i = 0; i < deferred_count; i++)
1187 struct deferred_opt *opt = &deferred_opts[i];
1189 if (opt->code == OPT_MT || opt->code == OPT_MQ)
1190 deps_add_target (deps, opt->arg, opt->code == OPT_MQ);
1194 /* These settings are appropriate for GCC, but not necessarily so for
1195 cpplib as a library. */
1196 static void
1197 sanitize_cpp_opts (void)
1199 /* If we don't know what style of dependencies to output, complain
1200 if any other dependency switches have been given. */
1201 if (deps_seen && cpp_opts->deps.style == DEPS_NONE)
1202 error ("to generate dependencies you must specify either -M or -MM");
1204 /* -dM and dependencies suppress normal output; do it here so that
1205 the last -d[MDN] switch overrides earlier ones. */
1206 if (flag_dump_macros == 'M')
1207 flag_no_output = 1;
1209 /* By default, -fdirectives-only implies -dD. This allows subsequent phases
1210 to perform proper macro expansion. */
1211 if (cpp_opts->directives_only && !cpp_opts->preprocessed && !flag_dump_macros)
1212 flag_dump_macros = 'D';
1214 /* Disable -dD, -dN and -dI if normal output is suppressed. Allow
1215 -dM since at least glibc relies on -M -dM to work. */
1216 /* Also, flag_no_output implies flag_no_line_commands, always. */
1217 if (flag_no_output)
1219 if (flag_dump_macros != 'M')
1220 flag_dump_macros = 0;
1221 flag_dump_includes = 0;
1222 flag_no_line_commands = 1;
1224 else if (cpp_opts->deps.missing_files)
1225 error ("-MG may only be used with -M or -MM");
1227 cpp_opts->unsigned_char = !flag_signed_char;
1228 cpp_opts->stdc_0_in_system_headers = STDC_0_IN_SYSTEM_HEADERS;
1230 /* Wlong-long is disabled by default. It is enabled by:
1231 [-Wpedantic | -Wtraditional] -std=[gnu|c]++98 ; or
1232 [-Wpedantic | -Wtraditional] -std=non-c99
1234 Either -Wlong-long or -Wno-long-long override any other settings.
1235 ??? These conditions should be handled in c.opt. */
1236 if (warn_long_long == -1)
1238 warn_long_long = ((pedantic || warn_traditional)
1239 && (c_dialect_cxx () ? cxx_dialect == cxx98 : !flag_isoc99));
1240 cpp_opts->cpp_warn_long_long = warn_long_long;
1243 /* If we're generating preprocessor output, emit current directory
1244 if explicitly requested or if debugging information is enabled.
1245 ??? Maybe we should only do it for debugging formats that
1246 actually output the current directory? */
1247 if (flag_working_directory == -1)
1248 flag_working_directory = (debug_info_level != DINFO_LEVEL_NONE);
1250 if (cpp_opts->directives_only)
1252 if (cpp_warn_unused_macros)
1253 error ("-fdirectives-only is incompatible with -Wunused_macros");
1254 if (cpp_opts->traditional)
1255 error ("-fdirectives-only is incompatible with -traditional");
1259 /* Add include path with a prefix at the front of its name. */
1260 static void
1261 add_prefixed_path (const char *suffix, size_t chain)
1263 char *path;
1264 const char *prefix;
1265 size_t prefix_len, suffix_len;
1267 suffix_len = strlen (suffix);
1268 prefix = iprefix ? iprefix : cpp_GCC_INCLUDE_DIR;
1269 prefix_len = iprefix ? strlen (iprefix) : cpp_GCC_INCLUDE_DIR_len;
1271 path = (char *) xmalloc (prefix_len + suffix_len + 1);
1272 memcpy (path, prefix, prefix_len);
1273 memcpy (path + prefix_len, suffix, suffix_len);
1274 path[prefix_len + suffix_len] = '\0';
1276 add_path (path, chain, 0, false);
1279 /* Handle -D, -U, -A, -imacros, and the first -include. */
1280 static void
1281 c_finish_options (void)
1283 if (!cpp_opts->preprocessed)
1285 size_t i;
1287 cb_file_change (parse_in,
1288 linemap_add (line_table, LC_RENAME, 0,
1289 _("<built-in>"), 0));
1290 /* Make sure all of the builtins about to be declared have
1291 BUILTINS_LOCATION has their source_location. */
1292 source_location builtins_loc = BUILTINS_LOCATION;
1293 cpp_force_token_locations (parse_in, &builtins_loc);
1295 cpp_init_builtins (parse_in, flag_hosted);
1296 c_cpp_builtins (parse_in);
1298 cpp_stop_forcing_token_locations (parse_in);
1300 /* We're about to send user input to cpplib, so make it warn for
1301 things that we previously (when we sent it internal definitions)
1302 told it to not warn.
1304 C99 permits implementation-defined characters in identifiers.
1305 The documented meaning of -std= is to turn off extensions that
1306 conflict with the specified standard, and since a strictly
1307 conforming program cannot contain a '$', we do not condition
1308 their acceptance on the -std= setting. */
1309 cpp_opts->warn_dollars = (cpp_opts->cpp_pedantic && !cpp_opts->c99);
1311 cb_file_change (parse_in,
1312 linemap_add (line_table, LC_RENAME, 0,
1313 _("<command-line>"), 0));
1315 for (i = 0; i < deferred_count; i++)
1317 struct deferred_opt *opt = &deferred_opts[i];
1319 if (opt->code == OPT_D)
1320 cpp_define (parse_in, opt->arg);
1321 else if (opt->code == OPT_U)
1322 cpp_undef (parse_in, opt->arg);
1323 else if (opt->code == OPT_A)
1325 if (opt->arg[0] == '-')
1326 cpp_unassert (parse_in, opt->arg + 1);
1327 else
1328 cpp_assert (parse_in, opt->arg);
1332 /* Start the main input file, if the debug writer wants it. */
1333 if (debug_hooks->start_end_main_source_file
1334 && !flag_preprocess_only)
1335 (*debug_hooks->start_source_file) (0, this_input_filename);
1337 /* Handle -imacros after -D and -U. */
1338 for (i = 0; i < deferred_count; i++)
1340 struct deferred_opt *opt = &deferred_opts[i];
1342 if (opt->code == OPT_imacros
1343 && cpp_push_include (parse_in, opt->arg))
1345 /* Disable push_command_line_include callback for now. */
1346 include_cursor = deferred_count + 1;
1347 cpp_scan_nooutput (parse_in);
1351 else
1353 if (cpp_opts->directives_only)
1354 cpp_init_special_builtins (parse_in);
1356 /* Start the main input file, if the debug writer wants it. */
1357 if (debug_hooks->start_end_main_source_file
1358 && !flag_preprocess_only)
1359 (*debug_hooks->start_source_file) (0, this_input_filename);
1362 include_cursor = 0;
1363 push_command_line_include ();
1366 /* Give CPP the next file given by -include, if any. */
1367 static void
1368 push_command_line_include (void)
1370 /* This can happen if disabled by -imacros for example.
1371 Punt so that we don't set "<command-line>" as the filename for
1372 the header. */
1373 if (include_cursor > deferred_count)
1374 return;
1376 if (!done_preinclude)
1378 done_preinclude = true;
1379 if (flag_hosted && std_inc && !cpp_opts->preprocessed)
1381 const char *preinc = targetcm.c_preinclude ();
1382 if (preinc && cpp_push_default_include (parse_in, preinc))
1383 return;
1387 pch_cpp_save_state ();
1389 while (include_cursor < deferred_count)
1391 struct deferred_opt *opt = &deferred_opts[include_cursor++];
1393 if (!cpp_opts->preprocessed && opt->code == OPT_include
1394 && cpp_push_include (parse_in, opt->arg))
1395 return;
1398 if (include_cursor == deferred_count)
1400 include_cursor++;
1401 /* -Wunused-macros should only warn about macros defined hereafter. */
1402 cpp_opts->warn_unused_macros = cpp_warn_unused_macros;
1403 /* Restore the line map from <command line>. */
1404 if (!cpp_opts->preprocessed)
1405 cpp_change_file (parse_in, LC_RENAME, this_input_filename);
1407 /* Set this here so the client can change the option if it wishes,
1408 and after stacking the main file so we don't trace the main file. */
1409 line_table->trace_includes = cpp_opts->print_include_names;
1413 /* File change callback. Has to handle -include files. */
1414 static void
1415 cb_file_change (cpp_reader * ARG_UNUSED (pfile),
1416 const struct line_map *new_map)
1418 if (flag_preprocess_only)
1419 pp_file_change (new_map);
1420 else
1421 fe_file_change (new_map);
1423 if (new_map
1424 && (new_map->reason == LC_ENTER || new_map->reason == LC_RENAME))
1426 /* Signal to plugins that a file is included. This could happen
1427 several times with the same file path, e.g. because of
1428 several '#include' or '#line' directives... */
1429 invoke_plugin_callbacks
1430 (PLUGIN_INCLUDE_FILE,
1431 const_cast<char*> (ORDINARY_MAP_FILE_NAME (new_map)));
1434 if (new_map == 0 || (new_map->reason == LC_LEAVE && MAIN_FILE_P (new_map)))
1436 pch_cpp_save_state ();
1437 push_command_line_include ();
1441 void
1442 cb_dir_change (cpp_reader * ARG_UNUSED (pfile), const char *dir)
1444 if (!set_src_pwd (dir))
1445 warning (0, "too late for # directive to set debug directory");
1448 /* Set the C 89 standard (with 1994 amendments if C94, without GNU
1449 extensions if ISO). There is no concept of gnu94. */
1450 static void
1451 set_std_c89 (int c94, int iso)
1453 cpp_set_lang (parse_in, c94 ? CLK_STDC94: iso ? CLK_STDC89: CLK_GNUC89);
1454 flag_iso = iso;
1455 flag_no_asm = iso;
1456 flag_no_gnu_keywords = iso;
1457 flag_no_nonansi_builtin = iso;
1458 flag_isoc94 = c94;
1459 flag_isoc99 = 0;
1460 flag_isoc11 = 0;
1463 /* Set the C 99 standard (without GNU extensions if ISO). */
1464 static void
1465 set_std_c99 (int iso)
1467 cpp_set_lang (parse_in, iso ? CLK_STDC99: CLK_GNUC99);
1468 flag_no_asm = iso;
1469 flag_no_nonansi_builtin = iso;
1470 flag_iso = iso;
1471 flag_isoc11 = 0;
1472 flag_isoc99 = 1;
1473 flag_isoc94 = 1;
1476 /* Set the C 11 standard (without GNU extensions if ISO). */
1477 static void
1478 set_std_c11 (int iso)
1480 cpp_set_lang (parse_in, iso ? CLK_STDC11: CLK_GNUC11);
1481 flag_no_asm = iso;
1482 flag_no_nonansi_builtin = iso;
1483 flag_iso = iso;
1484 flag_isoc11 = 1;
1485 flag_isoc99 = 1;
1486 flag_isoc94 = 1;
1489 /* Set the C++ 98 standard (without GNU extensions if ISO). */
1490 static void
1491 set_std_cxx98 (int iso)
1493 cpp_set_lang (parse_in, iso ? CLK_CXX98: CLK_GNUCXX);
1494 flag_no_gnu_keywords = iso;
1495 flag_no_nonansi_builtin = iso;
1496 flag_iso = iso;
1497 cxx_dialect = cxx98;
1500 /* Set the C++ 2011 standard (without GNU extensions if ISO). */
1501 static void
1502 set_std_cxx11 (int iso)
1504 cpp_set_lang (parse_in, iso ? CLK_CXX11: CLK_GNUCXX11);
1505 flag_no_gnu_keywords = iso;
1506 flag_no_nonansi_builtin = iso;
1507 flag_iso = iso;
1508 /* C++11 includes the C99 standard library. */
1509 flag_isoc94 = 1;
1510 flag_isoc99 = 1;
1511 cxx_dialect = cxx11;
1514 /* Set the C++ 2014 draft standard (without GNU extensions if ISO). */
1515 static void
1516 set_std_cxx14 (int iso)
1518 cpp_set_lang (parse_in, iso ? CLK_CXX14: CLK_GNUCXX14);
1519 flag_no_gnu_keywords = iso;
1520 flag_no_nonansi_builtin = iso;
1521 flag_iso = iso;
1522 /* C++11 includes the C99 standard library. */
1523 flag_isoc94 = 1;
1524 flag_isoc99 = 1;
1525 cxx_dialect = cxx14;
1528 /* Set the C++ 201z draft standard (without GNU extensions if ISO). */
1529 static void
1530 set_std_cxx1z (int iso)
1532 cpp_set_lang (parse_in, iso ? CLK_CXX1Z: CLK_GNUCXX1Z);
1533 flag_no_gnu_keywords = iso;
1534 flag_no_nonansi_builtin = iso;
1535 flag_iso = iso;
1536 /* C++11 includes the C99 standard library. */
1537 flag_isoc94 = 1;
1538 flag_isoc99 = 1;
1539 flag_isoc11 = 1;
1540 cxx_dialect = cxx1z;
1543 /* Args to -d specify what to dump. Silently ignore
1544 unrecognized options; they may be aimed at toplev.c. */
1545 static void
1546 handle_OPT_d (const char *arg)
1548 char c;
1550 while ((c = *arg++) != '\0')
1551 switch (c)
1553 case 'M': /* Dump macros only. */
1554 case 'N': /* Dump names. */
1555 case 'D': /* Dump definitions. */
1556 case 'U': /* Dump used macros. */
1557 flag_dump_macros = c;
1558 break;
1560 case 'I':
1561 flag_dump_includes = 1;
1562 break;