* doc/extend.texi: Use @pxref instead of @xref.
[official-gcc.git] / gcc / c-family / c-opts.c
blobfe5fce78597f0600b6132797e1fdb04296206064
1 /* C/ObjC/C++ command line option handling.
2 Copyright (C) 2002-2015 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 "options.h"
25 #include "hash-set.h"
26 #include "machmode.h"
27 #include "vec.h"
28 #include "double-int.h"
29 #include "input.h"
30 #include "alias.h"
31 #include "symtab.h"
32 #include "wide-int.h"
33 #include "inchash.h"
34 #include "tree.h"
35 #include "c-common.h"
36 #include "c-pragma.h"
37 #include "flags.h"
38 #include "toplev.h"
39 #include "langhooks.h"
40 #include "diagnostic.h"
41 #include "tree-diagnostic.h" /* for virt_loc_aware_diagnostic_finalizer */
42 #include "intl.h"
43 #include "cppdefault.h"
44 #include "incpath.h"
45 #include "debug.h" /* For debug_hooks. */
46 #include "opts.h"
47 #include "plugin.h" /* For PLUGIN_INCLUDE_FILE event. */
48 #include "mkdeps.h"
49 #include "c-target.h"
50 #include "tm.h" /* For BYTES_BIG_ENDIAN,
51 DOLLARS_IN_IDENTIFIERS,
52 STDC_0_IN_SYSTEM_HEADERS,
53 TARGET_FLT_EVAL_METHOD_NON_DEFAULT and
54 TARGET_OPTF. */
55 #include "tm_p.h" /* For C_COMMON_OVERRIDE_OPTIONS. */
56 #include "dumpfile.h"
58 #ifndef DOLLARS_IN_IDENTIFIERS
59 # define DOLLARS_IN_IDENTIFIERS true
60 #endif
62 #ifndef TARGET_SYSTEM_ROOT
63 # define TARGET_SYSTEM_ROOT NULL
64 #endif
66 #ifndef TARGET_OPTF
67 #define TARGET_OPTF(ARG)
68 #endif
70 /* CPP's options. */
71 cpp_options *cpp_opts;
73 /* Input filename. */
74 static const char *this_input_filename;
76 /* Filename and stream for preprocessed output. */
77 static const char *out_fname;
78 static FILE *out_stream;
80 /* Append dependencies to deps_file. */
81 static bool deps_append;
83 /* If dependency switches (-MF etc.) have been given. */
84 static bool deps_seen;
86 /* If -v seen. */
87 static bool verbose;
89 /* Dependency output file. */
90 static const char *deps_file;
92 /* The prefix given by -iprefix, if any. */
93 static const char *iprefix;
95 /* The multilib directory given by -imultilib, if any. */
96 static const char *imultilib;
98 /* The system root, if any. Overridden by -isysroot. */
99 static const char *sysroot = TARGET_SYSTEM_ROOT;
101 /* Zero disables all standard directories for headers. */
102 static bool std_inc = true;
104 /* Zero disables the C++-specific standard directories for headers. */
105 static bool std_cxx_inc = true;
107 /* If the quote chain has been split by -I-. */
108 static bool quote_chain_split;
110 /* Number of deferred options. */
111 static size_t deferred_count;
113 /* Number of deferred options scanned for -include. */
114 static size_t include_cursor;
116 /* Dump files/flags to use during parsing. */
117 static FILE *original_dump_file = NULL;
118 static int original_dump_flags;
119 static FILE *class_dump_file = NULL;
120 static int class_dump_flags;
122 /* Whether any standard preincluded header has been preincluded. */
123 static bool done_preinclude;
125 static void handle_OPT_d (const char *);
126 static void set_std_cxx98 (int);
127 static void set_std_cxx11 (int);
128 static void set_std_cxx14 (int);
129 static void set_std_cxx1z (int);
130 static void set_std_c89 (int, int);
131 static void set_std_c99 (int);
132 static void set_std_c11 (int);
133 static void check_deps_environment_vars (void);
134 static void handle_deferred_opts (void);
135 static void sanitize_cpp_opts (void);
136 static void add_prefixed_path (const char *, size_t);
137 static void push_command_line_include (void);
138 static void cb_file_change (cpp_reader *, const line_map_ordinary *);
139 static void cb_dir_change (cpp_reader *, const char *);
140 static void c_finish_options (void);
142 #ifndef STDC_0_IN_SYSTEM_HEADERS
143 #define STDC_0_IN_SYSTEM_HEADERS 0
144 #endif
146 /* Holds switches parsed by c_common_handle_option (), but whose
147 handling is deferred to c_common_post_options (). */
148 static void defer_opt (enum opt_code, const char *);
149 static struct deferred_opt
151 enum opt_code code;
152 const char *arg;
153 } *deferred_opts;
156 extern const unsigned int
157 c_family_lang_mask = (CL_C | CL_CXX | CL_ObjC | CL_ObjCXX);
159 /* Defer option CODE with argument ARG. */
160 static void
161 defer_opt (enum opt_code code, const char *arg)
163 deferred_opts[deferred_count].code = code;
164 deferred_opts[deferred_count].arg = arg;
165 deferred_count++;
168 /* Return language mask for option parsing. */
169 unsigned int
170 c_common_option_lang_mask (void)
172 static const unsigned int lang_flags[] = {CL_C, CL_ObjC, CL_CXX, CL_ObjCXX};
174 return lang_flags[c_language];
177 /* Diagnostic finalizer for C/C++/Objective-C/Objective-C++. */
178 static void
179 c_diagnostic_finalizer (diagnostic_context *context,
180 diagnostic_info *diagnostic)
182 diagnostic_show_locus (context, diagnostic);
183 /* By default print macro expansion contexts in the diagnostic
184 finalizer -- for tokens resulting from macro expansion. */
185 virt_loc_aware_diagnostic_finalizer (context, diagnostic);
186 pp_destroy_prefix (context->printer);
187 pp_newline_and_flush (context->printer);
190 /* Common default settings for diagnostics. */
191 void
192 c_common_diagnostics_set_defaults (diagnostic_context *context)
194 diagnostic_finalizer (context) = c_diagnostic_finalizer;
195 context->opt_permissive = OPT_fpermissive;
198 /* Whether options from all C-family languages should be accepted
199 quietly. */
200 static bool accept_all_c_family_options = false;
202 /* Return whether to complain about a wrong-language option. */
203 bool
204 c_common_complain_wrong_lang_p (const struct cl_option *option)
206 if (accept_all_c_family_options
207 && (option->flags & c_family_lang_mask))
208 return false;
210 return true;
213 /* Initialize options structure OPTS. */
214 void
215 c_common_init_options_struct (struct gcc_options *opts)
217 opts->x_flag_exceptions = c_dialect_cxx ();
218 opts->x_warn_pointer_arith = c_dialect_cxx ();
219 opts->x_warn_write_strings = c_dialect_cxx ();
220 opts->x_flag_warn_unused_result = true;
222 /* By default, C99-like requirements for complex multiply and divide. */
223 opts->x_flag_complex_method = 2;
226 /* Common initialization before calling option handlers. */
227 void
228 c_common_init_options (unsigned int decoded_options_count,
229 struct cl_decoded_option *decoded_options)
231 unsigned int i;
232 struct cpp_callbacks *cb;
234 parse_in = cpp_create_reader (c_dialect_cxx () ? CLK_GNUCXX: CLK_GNUC89,
235 ident_hash, line_table);
236 cb = cpp_get_callbacks (parse_in);
237 cb->error = c_cpp_error;
239 cpp_opts = cpp_get_options (parse_in);
240 cpp_opts->dollars_in_ident = DOLLARS_IN_IDENTIFIERS;
241 cpp_opts->objc = c_dialect_objc ();
243 /* Reset to avoid warnings on internal definitions. We set it just
244 before passing on command-line options to cpplib. */
245 cpp_opts->warn_dollars = 0;
247 deferred_opts = XNEWVEC (struct deferred_opt, decoded_options_count);
249 if (c_language == clk_c)
251 /* The default for C is gnu11. */
252 set_std_c11 (false /* ISO */);
254 /* If preprocessing assembly language, accept any of the C-family
255 front end options since the driver may pass them through. */
256 for (i = 1; i < decoded_options_count; i++)
257 if (decoded_options[i].opt_index == OPT_lang_asm)
259 accept_all_c_family_options = true;
260 break;
265 /* Handle switch SCODE with argument ARG. VALUE is true, unless no-
266 form of an -f or -W option was given. Returns false if the switch was
267 invalid, true if valid. Use HANDLERS in recursive handle_option calls. */
268 bool
269 c_common_handle_option (size_t scode, const char *arg, int value,
270 int kind, location_t loc,
271 const struct cl_option_handlers *handlers)
273 const struct cl_option *option = &cl_options[scode];
274 enum opt_code code = (enum opt_code) scode;
275 bool result = true;
277 /* Prevent resetting the language standard to a C dialect when the driver
278 has already determined that we're looking at assembler input. */
279 bool preprocessing_asm_p = (cpp_get_options (parse_in)->lang == CLK_ASM);
281 switch (code)
283 default:
284 if (cl_options[code].flags & c_family_lang_mask)
286 if ((option->flags & CL_TARGET)
287 && ! targetcm.handle_c_option (scode, arg, value))
288 result = false;
289 break;
291 result = false;
292 break;
294 case OPT__output_pch_:
295 pch_file = arg;
296 break;
298 case OPT_A:
299 defer_opt (code, arg);
300 break;
302 case OPT_C:
303 cpp_opts->discard_comments = 0;
304 break;
306 case OPT_CC:
307 cpp_opts->discard_comments = 0;
308 cpp_opts->discard_comments_in_macro_exp = 0;
309 break;
311 case OPT_D:
312 defer_opt (code, arg);
313 break;
315 case OPT_H:
316 cpp_opts->print_include_names = 1;
317 break;
319 case OPT_F:
320 TARGET_OPTF (xstrdup (arg));
321 break;
323 case OPT_I:
324 if (strcmp (arg, "-"))
325 add_path (xstrdup (arg), BRACKET, 0, true);
326 else
328 if (quote_chain_split)
329 error ("-I- specified twice");
330 quote_chain_split = true;
331 split_quote_chain ();
332 inform (input_location, "obsolete option -I- used, please use -iquote instead");
334 break;
336 case OPT_M:
337 case OPT_MM:
338 /* When doing dependencies with -M or -MM, suppress normal
339 preprocessed output, but still do -dM etc. as software
340 depends on this. Preprocessed output does occur if -MD, -MMD
341 or environment var dependency generation is used. */
342 cpp_opts->deps.style = (code == OPT_M ? DEPS_SYSTEM: DEPS_USER);
343 flag_no_output = 1;
344 break;
346 case OPT_MD:
347 case OPT_MMD:
348 cpp_opts->deps.style = (code == OPT_MD ? DEPS_SYSTEM: DEPS_USER);
349 cpp_opts->deps.need_preprocessor_output = true;
350 deps_file = arg;
351 break;
353 case OPT_MF:
354 deps_seen = true;
355 deps_file = arg;
356 break;
358 case OPT_MG:
359 deps_seen = true;
360 cpp_opts->deps.missing_files = true;
361 break;
363 case OPT_MP:
364 deps_seen = true;
365 cpp_opts->deps.phony_targets = true;
366 break;
368 case OPT_MQ:
369 case OPT_MT:
370 deps_seen = true;
371 defer_opt (code, arg);
372 break;
374 case OPT_P:
375 flag_no_line_commands = 1;
376 break;
378 case OPT_U:
379 defer_opt (code, arg);
380 break;
382 case OPT_Wall:
383 /* ??? Don't add new options here. Use LangEnabledBy in c.opt. */
385 cpp_opts->warn_num_sign_change = value;
386 break;
388 case OPT_Wunknown_pragmas:
389 /* Set to greater than 1, so that even unknown pragmas in
390 system headers will be warned about. */
391 /* ??? There is no way to handle this automatically for now. */
392 warn_unknown_pragmas = value * 2;
393 break;
395 case OPT_ansi:
396 if (!c_dialect_cxx ())
397 set_std_c89 (false, true);
398 else
399 set_std_cxx98 (true);
400 break;
402 case OPT_d:
403 handle_OPT_d (arg);
404 break;
406 case OPT_Wabi_:
407 warn_abi = true;
408 if (value == 1)
410 warning (0, "%<-Wabi=1%> is not supported, using =2");
411 value = 2;
413 flag_abi_compat_version = value;
414 break;
416 case OPT_fcanonical_system_headers:
417 cpp_opts->canonical_system_headers = value;
418 break;
420 case OPT_fcond_mismatch:
421 if (!c_dialect_cxx ())
423 flag_cond_mismatch = value;
424 break;
426 warning (0, "switch %qs is no longer supported", option->opt_text);
427 break;
429 case OPT_fbuiltin_:
430 if (value)
431 result = false;
432 else
433 disable_builtin_function (arg);
434 break;
436 case OPT_fdirectives_only:
437 cpp_opts->directives_only = value;
438 break;
440 case OPT_fdollars_in_identifiers:
441 cpp_opts->dollars_in_ident = value;
442 break;
444 case OPT_ffreestanding:
445 value = !value;
446 /* Fall through.... */
447 case OPT_fhosted:
448 flag_hosted = value;
449 flag_no_builtin = !value;
450 break;
452 case OPT_fconstant_string_class_:
453 constant_string_class_name = arg;
454 break;
456 case OPT_fextended_identifiers:
457 cpp_opts->extended_identifiers = value;
458 break;
460 case OPT_foperator_names:
461 cpp_opts->operator_names = value;
462 break;
464 case OPT_fpch_deps:
465 cpp_opts->restore_pch_deps = value;
466 break;
468 case OPT_fpch_preprocess:
469 flag_pch_preprocess = value;
470 break;
472 case OPT_fpermissive:
473 flag_permissive = value;
474 global_dc->permissive = value;
475 break;
477 case OPT_fpreprocessed:
478 cpp_opts->preprocessed = value;
479 break;
481 case OPT_fdebug_cpp:
482 cpp_opts->debug = 1;
483 break;
485 case OPT_ftrack_macro_expansion:
486 if (value)
487 value = 2;
488 /* Fall Through. */
490 case OPT_ftrack_macro_expansion_:
491 if (arg && *arg != '\0')
492 cpp_opts->track_macro_expansion = value;
493 else
494 cpp_opts->track_macro_expansion = 2;
495 break;
497 case OPT_frepo:
498 flag_use_repository = value;
499 if (value)
500 flag_implicit_templates = 0;
501 break;
503 case OPT_ftabstop_:
504 /* It is documented that we silently ignore silly values. */
505 if (value >= 1 && value <= 100)
506 cpp_opts->tabstop = value;
507 break;
509 case OPT_fexec_charset_:
510 cpp_opts->narrow_charset = arg;
511 break;
513 case OPT_fwide_exec_charset_:
514 cpp_opts->wide_charset = arg;
515 break;
517 case OPT_finput_charset_:
518 cpp_opts->input_charset = arg;
519 break;
521 case OPT_ftemplate_depth_:
522 max_tinst_depth = value;
523 break;
525 case OPT_fvisibility_inlines_hidden:
526 visibility_options.inlines_hidden = value;
527 break;
529 case OPT_femit_struct_debug_baseonly:
530 set_struct_debug_option (&global_options, loc, "base");
531 break;
533 case OPT_femit_struct_debug_reduced:
534 set_struct_debug_option (&global_options, loc,
535 "dir:ord:sys,dir:gen:any,ind:base");
536 break;
538 case OPT_femit_struct_debug_detailed_:
539 set_struct_debug_option (&global_options, loc, arg);
540 break;
542 case OPT_fext_numeric_literals:
543 cpp_opts->ext_numeric_literals = value;
544 break;
546 case OPT_idirafter:
547 add_path (xstrdup (arg), AFTER, 0, true);
548 break;
550 case OPT_imacros:
551 case OPT_include:
552 defer_opt (code, arg);
553 break;
555 case OPT_imultilib:
556 imultilib = arg;
557 break;
559 case OPT_iprefix:
560 iprefix = arg;
561 break;
563 case OPT_iquote:
564 add_path (xstrdup (arg), QUOTE, 0, true);
565 break;
567 case OPT_isysroot:
568 sysroot = arg;
569 break;
571 case OPT_isystem:
572 add_path (xstrdup (arg), SYSTEM, 0, true);
573 break;
575 case OPT_iwithprefix:
576 add_prefixed_path (arg, SYSTEM);
577 break;
579 case OPT_iwithprefixbefore:
580 add_prefixed_path (arg, BRACKET);
581 break;
583 case OPT_lang_asm:
584 cpp_set_lang (parse_in, CLK_ASM);
585 cpp_opts->dollars_in_ident = false;
586 break;
588 case OPT_nostdinc:
589 std_inc = false;
590 break;
592 case OPT_nostdinc__:
593 std_cxx_inc = false;
594 break;
596 case OPT_o:
597 if (!out_fname)
598 out_fname = arg;
599 else
600 error ("output filename specified twice");
601 break;
603 case OPT_print_objc_runtime_info:
604 print_struct_values = 1;
605 break;
607 case OPT_remap:
608 cpp_opts->remap = 1;
609 break;
611 case OPT_std_c__98:
612 case OPT_std_gnu__98:
613 if (!preprocessing_asm_p)
614 set_std_cxx98 (code == OPT_std_c__98 /* ISO */);
615 break;
617 case OPT_std_c__11:
618 case OPT_std_gnu__11:
619 if (!preprocessing_asm_p)
621 set_std_cxx11 (code == OPT_std_c__11 /* ISO */);
622 if (code == OPT_std_c__11)
623 cpp_opts->ext_numeric_literals = 0;
625 break;
627 case OPT_std_c__14:
628 case OPT_std_gnu__14:
629 if (!preprocessing_asm_p)
631 set_std_cxx14 (code == OPT_std_c__14 /* ISO */);
632 if (code == OPT_std_c__14)
633 cpp_opts->ext_numeric_literals = 0;
635 break;
637 case OPT_std_c__1z:
638 case OPT_std_gnu__1z:
639 if (!preprocessing_asm_p)
641 set_std_cxx1z (code == OPT_std_c__1z /* ISO */);
642 if (code == OPT_std_c__1z)
643 cpp_opts->ext_numeric_literals = 0;
645 break;
647 case OPT_std_c90:
648 case OPT_std_iso9899_199409:
649 if (!preprocessing_asm_p)
650 set_std_c89 (code == OPT_std_iso9899_199409 /* c94 */, true /* ISO */);
651 break;
653 case OPT_std_gnu90:
654 if (!preprocessing_asm_p)
655 set_std_c89 (false /* c94 */, false /* ISO */);
656 break;
658 case OPT_std_c99:
659 if (!preprocessing_asm_p)
660 set_std_c99 (true /* ISO */);
661 break;
663 case OPT_std_gnu99:
664 if (!preprocessing_asm_p)
665 set_std_c99 (false /* ISO */);
666 break;
668 case OPT_std_c11:
669 if (!preprocessing_asm_p)
670 set_std_c11 (true /* ISO */);
671 break;
673 case OPT_std_gnu11:
674 if (!preprocessing_asm_p)
675 set_std_c11 (false /* ISO */);
676 break;
678 case OPT_trigraphs:
679 cpp_opts->trigraphs = 1;
680 break;
682 case OPT_traditional_cpp:
683 cpp_opts->traditional = 1;
684 break;
686 case OPT_v:
687 verbose = true;
688 break;
691 switch (c_language)
693 case clk_c:
694 C_handle_option_auto (&global_options, &global_options_set,
695 scode, arg, value,
696 c_family_lang_mask, kind,
697 loc, handlers, global_dc);
698 break;
700 case clk_objc:
701 ObjC_handle_option_auto (&global_options, &global_options_set,
702 scode, arg, value,
703 c_family_lang_mask, kind,
704 loc, handlers, global_dc);
705 break;
707 case clk_cxx:
708 CXX_handle_option_auto (&global_options, &global_options_set,
709 scode, arg, value,
710 c_family_lang_mask, kind,
711 loc, handlers, global_dc);
712 break;
714 case clk_objcxx:
715 ObjCXX_handle_option_auto (&global_options, &global_options_set,
716 scode, arg, value,
717 c_family_lang_mask, kind,
718 loc, handlers, global_dc);
719 break;
721 default:
722 gcc_unreachable ();
725 cpp_handle_option_auto (&global_options, scode, cpp_opts);
726 return result;
729 /* Default implementation of TARGET_HANDLE_C_OPTION. */
731 bool
732 default_handle_c_option (size_t code ATTRIBUTE_UNUSED,
733 const char *arg ATTRIBUTE_UNUSED,
734 int value ATTRIBUTE_UNUSED)
736 return false;
739 /* Post-switch processing. */
740 bool
741 c_common_post_options (const char **pfilename)
743 struct cpp_callbacks *cb;
745 /* Canonicalize the input and output filenames. */
746 if (in_fnames == NULL)
748 in_fnames = XNEWVEC (const char *, 1);
749 in_fnames[0] = "";
751 else if (strcmp (in_fnames[0], "-") == 0)
752 in_fnames[0] = "";
754 if (out_fname == NULL || !strcmp (out_fname, "-"))
755 out_fname = "";
757 if (cpp_opts->deps.style == DEPS_NONE)
758 check_deps_environment_vars ();
760 handle_deferred_opts ();
762 sanitize_cpp_opts ();
764 register_include_chains (parse_in, sysroot, iprefix, imultilib,
765 std_inc, std_cxx_inc && c_dialect_cxx (), verbose);
767 #ifdef C_COMMON_OVERRIDE_OPTIONS
768 /* Some machines may reject certain combinations of C
769 language-specific options. */
770 C_COMMON_OVERRIDE_OPTIONS;
771 #endif
773 /* Excess precision other than "fast" requires front-end
774 support. */
775 if (c_dialect_cxx ())
777 if (flag_excess_precision_cmdline == EXCESS_PRECISION_STANDARD
778 && TARGET_FLT_EVAL_METHOD_NON_DEFAULT)
779 sorry ("-fexcess-precision=standard for C++");
780 flag_excess_precision_cmdline = EXCESS_PRECISION_FAST;
782 else if (flag_excess_precision_cmdline == EXCESS_PRECISION_DEFAULT)
783 flag_excess_precision_cmdline = (flag_iso
784 ? EXCESS_PRECISION_STANDARD
785 : EXCESS_PRECISION_FAST);
787 /* ISO C restricts floating-point expression contraction to within
788 source-language expressions (-ffp-contract=on, currently an alias
789 for -ffp-contract=off). */
790 if (flag_iso
791 && !c_dialect_cxx ()
792 && (global_options_set.x_flag_fp_contract_mode
793 == (enum fp_contract_mode) 0)
794 && flag_unsafe_math_optimizations == 0)
795 flag_fp_contract_mode = FP_CONTRACT_OFF;
797 /* By default we use C99 inline semantics in GNU99 or C99 mode. C99
798 inline semantics are not supported in GNU89 or C89 mode. */
799 if (flag_gnu89_inline == -1)
800 flag_gnu89_inline = !flag_isoc99;
801 else if (!flag_gnu89_inline && !flag_isoc99)
802 error ("-fno-gnu89-inline is only supported in GNU99 or C99 mode");
804 /* Default to ObjC sjlj exception handling if NeXT runtime. */
805 if (flag_objc_sjlj_exceptions < 0)
806 flag_objc_sjlj_exceptions = flag_next_runtime;
807 if (flag_objc_exceptions && !flag_objc_sjlj_exceptions)
808 flag_exceptions = 1;
810 /* If -ffreestanding, -fno-hosted or -fno-builtin then disable
811 pattern recognition. */
812 if (!global_options_set.x_flag_tree_loop_distribute_patterns
813 && flag_no_builtin)
814 flag_tree_loop_distribute_patterns = 0;
816 /* -Woverlength-strings is off by default, but is enabled by -Wpedantic.
817 It is never enabled in C++, as the minimum limit is not normative
818 in that standard. */
819 if (c_dialect_cxx ())
820 warn_overlength_strings = 0;
822 /* Wmain is enabled by default in C++ but not in C. */
823 /* Wmain is disabled by default for -ffreestanding (!flag_hosted),
824 even if -Wall or -Wpedantic was given (warn_main will be 2 if set
825 by -Wall, 1 if set by -Wmain). */
826 if (warn_main == -1)
827 warn_main = (c_dialect_cxx () && flag_hosted) ? 1 : 0;
828 else if (warn_main == 2)
829 warn_main = flag_hosted ? 1 : 0;
831 /* In C, -Wall and -Wc++-compat enable -Wenum-compare; if it has not
832 yet been set, it is disabled by default. In C++, it is enabled
833 by default. */
834 if (warn_enum_compare == -1)
835 warn_enum_compare = c_dialect_cxx () ? 1 : 0;
837 /* -Wpacked-bitfield-compat is on by default for the C languages. The
838 warning is issued in stor-layout.c which is not part of the front-end so
839 we need to selectively turn it on here. */
840 if (warn_packed_bitfield_compat == -1)
841 warn_packed_bitfield_compat = 1;
843 /* Special format checking options don't work without -Wformat; warn if
844 they are used. */
845 if (!warn_format)
847 warning (OPT_Wformat_y2k,
848 "-Wformat-y2k ignored without -Wformat");
849 warning (OPT_Wformat_extra_args,
850 "-Wformat-extra-args ignored without -Wformat");
851 warning (OPT_Wformat_zero_length,
852 "-Wformat-zero-length ignored without -Wformat");
853 warning (OPT_Wformat_nonliteral,
854 "-Wformat-nonliteral ignored without -Wformat");
855 warning (OPT_Wformat_contains_nul,
856 "-Wformat-contains-nul ignored without -Wformat");
857 warning (OPT_Wformat_security,
858 "-Wformat-security ignored without -Wformat");
861 /* -Wimplicit-function-declaration is enabled by default for C99. */
862 if (warn_implicit_function_declaration == -1)
863 warn_implicit_function_declaration = flag_isoc99;
865 /* -Wimplicit-int is enabled by default for C99. */
866 if (warn_implicit_int == -1)
867 warn_implicit_int = flag_isoc99;
869 /* -Wshift-negative-value is enabled by -Wextra in C99 and C++11 modes. */
870 if (warn_shift_negative_value == -1)
871 warn_shift_negative_value = (extra_warnings
872 && (cxx_dialect >= cxx11 || flag_isoc99));
874 /* Declone C++ 'structors if -Os. */
875 if (flag_declone_ctor_dtor == -1)
876 flag_declone_ctor_dtor = optimize_size;
878 if (flag_abi_compat_version == 1)
880 warning (0, "%<-fabi-compat-version=1%> is not supported, using =2");
881 flag_abi_compat_version = 2;
883 else if (flag_abi_compat_version == -1)
885 /* Generate compatibility aliases for ABI v2 (3.4-4.9) by default. */
886 flag_abi_compat_version = (flag_abi_version == 0 ? 2 : 0);
888 /* But don't warn about backward compatibility unless explicitly
889 requested with -Wabi=n. */
890 if (flag_abi_version == 0)
891 warn_abi = false;
894 /* Change flag_abi_version to be the actual current ABI level for the
895 benefit of c_cpp_builtins. */
896 if (flag_abi_version == 0)
897 flag_abi_version = 8;
899 /* Set C++ standard to C++98 if not specified on the command line. */
900 if (c_dialect_cxx () && cxx_dialect == cxx_unset)
901 set_std_cxx98 (/*ISO*/false);
903 if (cxx_dialect >= cxx11)
905 /* If we're allowing C++0x constructs, don't warn about C++98
906 identifiers which are keywords in C++0x. */
907 warn_cxx11_compat = 0;
908 cpp_opts->cpp_warn_cxx11_compat = 0;
910 if (warn_narrowing == -1)
911 warn_narrowing = 1;
913 else if (warn_narrowing == -1)
914 warn_narrowing = 0;
916 /* Global sized deallocation is new in C++14. */
917 if (flag_sized_deallocation == -1)
918 flag_sized_deallocation = (cxx_dialect >= cxx14);
920 if (flag_extern_tls_init)
922 #if !defined (ASM_OUTPUT_DEF) || !SUPPORTS_WEAK
923 /* Lazy TLS initialization for a variable in another TU requires
924 alias and weak reference support. */
925 if (flag_extern_tls_init > 0)
926 sorry ("external TLS initialization functions not supported "
927 "on this target");
928 flag_extern_tls_init = 0;
929 #else
930 flag_extern_tls_init = 1;
931 #endif
934 if (flag_preprocess_only)
936 /* Open the output now. We must do so even if flag_no_output is
937 on, because there may be other output than from the actual
938 preprocessing (e.g. from -dM). */
939 if (out_fname[0] == '\0')
940 out_stream = stdout;
941 else
942 out_stream = fopen (out_fname, "w");
944 if (out_stream == NULL)
946 fatal_error (input_location, "opening output file %s: %m", out_fname);
947 return false;
950 if (num_in_fnames > 1)
951 error ("too many filenames given. Type %s --help for usage",
952 progname);
954 init_pp_output (out_stream);
956 else
958 init_c_lex ();
960 /* When writing a PCH file, avoid reading some other PCH file,
961 because the default address space slot then can't be used
962 for the output PCH file. */
963 if (pch_file)
965 c_common_no_more_pch ();
966 /* Only -g0 and -gdwarf* are supported with PCH, for other
967 debug formats we warn here and refuse to load any PCH files. */
968 if (write_symbols != NO_DEBUG && write_symbols != DWARF2_DEBUG)
969 warning (OPT_Wdeprecated,
970 "the \"%s\" debug format cannot be used with "
971 "pre-compiled headers", debug_type_names[write_symbols]);
973 else if (write_symbols != NO_DEBUG && write_symbols != DWARF2_DEBUG)
974 c_common_no_more_pch ();
976 /* Yuk. WTF is this? I do know ObjC relies on it somewhere. */
977 input_location = UNKNOWN_LOCATION;
980 cb = cpp_get_callbacks (parse_in);
981 cb->file_change = cb_file_change;
982 cb->dir_change = cb_dir_change;
983 cpp_post_options (parse_in);
984 init_global_opts_from_cpp (&global_options, cpp_get_options (parse_in));
986 input_location = UNKNOWN_LOCATION;
988 *pfilename = this_input_filename
989 = cpp_read_main_file (parse_in, in_fnames[0]);
990 /* Don't do any compilation or preprocessing if there is no input file. */
991 if (this_input_filename == NULL)
993 errorcount++;
994 return false;
997 if (flag_working_directory
998 && flag_preprocess_only && !flag_no_line_commands)
999 pp_dir_change (parse_in, get_src_pwd ());
1001 /* Disable LTO output when outputting a precompiled header. */
1002 if (pch_file && flag_lto)
1004 flag_lto = 0;
1005 flag_generate_lto = 0;
1008 return flag_preprocess_only;
1011 /* Front end initialization common to C, ObjC and C++. */
1012 bool
1013 c_common_init (void)
1015 /* Set up preprocessor arithmetic. Must be done after call to
1016 c_common_nodes_and_builtins for type nodes to be good. */
1017 cpp_opts->precision = TYPE_PRECISION (intmax_type_node);
1018 cpp_opts->char_precision = TYPE_PRECISION (char_type_node);
1019 cpp_opts->int_precision = TYPE_PRECISION (integer_type_node);
1020 cpp_opts->wchar_precision = TYPE_PRECISION (wchar_type_node);
1021 cpp_opts->unsigned_wchar = TYPE_UNSIGNED (wchar_type_node);
1022 cpp_opts->bytes_big_endian = BYTES_BIG_ENDIAN;
1024 /* This can't happen until after wchar_precision and bytes_big_endian
1025 are known. */
1026 cpp_init_iconv (parse_in);
1028 if (version_flag)
1030 int i;
1031 fputs ("Compiler executable checksum: ", stderr);
1032 for (i = 0; i < 16; i++)
1033 fprintf (stderr, "%02x", executable_checksum[i]);
1034 putc ('\n', stderr);
1037 /* Has to wait until now so that cpplib has its hash table. */
1038 init_pragma ();
1040 if (flag_preprocess_only)
1042 c_finish_options ();
1043 preprocess_file (parse_in);
1044 return false;
1047 return true;
1050 /* Initialize the integrated preprocessor after debug output has been
1051 initialized; loop over each input file. */
1052 void
1053 c_common_parse_file (void)
1055 unsigned int i;
1057 i = 0;
1058 for (;;)
1060 c_finish_options ();
1061 /* Open the dump files to use for the original and class dump output
1062 here, to be used during parsing for the current file. */
1063 original_dump_file = dump_begin (TDI_original, &original_dump_flags);
1064 class_dump_file = dump_begin (TDI_class, &class_dump_flags);
1065 pch_init ();
1066 push_file_scope ();
1067 c_parse_file ();
1068 pop_file_scope ();
1069 /* And end the main input file, if the debug writer wants it */
1070 if (debug_hooks->start_end_main_source_file)
1071 (*debug_hooks->end_source_file) (0);
1072 if (++i >= num_in_fnames)
1073 break;
1074 cpp_undef_all (parse_in);
1075 cpp_clear_file_cache (parse_in);
1076 this_input_filename
1077 = cpp_read_main_file (parse_in, in_fnames[i]);
1078 if (original_dump_file)
1080 dump_end (TDI_original, original_dump_file);
1081 original_dump_file = NULL;
1083 if (class_dump_file)
1085 dump_end (TDI_class, class_dump_file);
1086 class_dump_file = NULL;
1088 /* If an input file is missing, abandon further compilation.
1089 cpplib has issued a diagnostic. */
1090 if (!this_input_filename)
1091 break;
1095 /* Returns the appropriate dump file for PHASE to dump with FLAGS. */
1096 FILE *
1097 get_dump_info (int phase, int *flags)
1099 gcc_assert (phase == TDI_original || phase == TDI_class);
1100 if (phase == TDI_original)
1102 *flags = original_dump_flags;
1103 return original_dump_file;
1105 else
1107 *flags = class_dump_flags;
1108 return class_dump_file;
1112 /* Common finish hook for the C, ObjC and C++ front ends. */
1113 void
1114 c_common_finish (void)
1116 FILE *deps_stream = NULL;
1118 /* Don't write the deps file if there are errors. */
1119 if (cpp_opts->deps.style != DEPS_NONE && !seen_error ())
1121 /* If -M or -MM was seen without -MF, default output to the
1122 output stream. */
1123 if (!deps_file)
1124 deps_stream = out_stream;
1125 else
1127 deps_stream = fopen (deps_file, deps_append ? "a": "w");
1128 if (!deps_stream)
1129 fatal_error (input_location, "opening dependency file %s: %m",
1130 deps_file);
1134 /* For performance, avoid tearing down cpplib's internal structures
1135 with cpp_destroy (). */
1136 cpp_finish (parse_in, deps_stream);
1138 if (deps_stream && deps_stream != out_stream
1139 && (ferror (deps_stream) || fclose (deps_stream)))
1140 fatal_error (input_location, "closing dependency file %s: %m", deps_file);
1142 if (out_stream && (ferror (out_stream) || fclose (out_stream)))
1143 fatal_error (input_location, "when writing output to %s: %m", out_fname);
1146 /* Either of two environment variables can specify output of
1147 dependencies. Their value is either "OUTPUT_FILE" or "OUTPUT_FILE
1148 DEPS_TARGET", where OUTPUT_FILE is the file to write deps info to
1149 and DEPS_TARGET is the target to mention in the deps. They also
1150 result in dependency information being appended to the output file
1151 rather than overwriting it, and like Sun's compiler
1152 SUNPRO_DEPENDENCIES suppresses the dependency on the main file. */
1153 static void
1154 check_deps_environment_vars (void)
1156 char *spec;
1158 spec = getenv ("DEPENDENCIES_OUTPUT");
1159 if (spec)
1160 cpp_opts->deps.style = DEPS_USER;
1161 else
1163 spec = getenv ("SUNPRO_DEPENDENCIES");
1164 if (spec)
1166 cpp_opts->deps.style = DEPS_SYSTEM;
1167 cpp_opts->deps.ignore_main_file = true;
1171 if (spec)
1173 /* Find the space before the DEPS_TARGET, if there is one. */
1174 char *s = strchr (spec, ' ');
1175 if (s)
1177 /* Let the caller perform MAKE quoting. */
1178 defer_opt (OPT_MT, s + 1);
1179 *s = '\0';
1182 /* Command line -MF overrides environment variables and default. */
1183 if (!deps_file)
1184 deps_file = spec;
1186 deps_append = 1;
1187 deps_seen = true;
1191 /* Handle deferred command line switches. */
1192 static void
1193 handle_deferred_opts (void)
1195 size_t i;
1196 struct deps *deps;
1198 /* Avoid allocating the deps buffer if we don't need it.
1199 (This flag may be true without there having been -MT or -MQ
1200 options, but we'll still need the deps buffer.) */
1201 if (!deps_seen)
1202 return;
1204 deps = cpp_get_deps (parse_in);
1206 for (i = 0; i < deferred_count; i++)
1208 struct deferred_opt *opt = &deferred_opts[i];
1210 if (opt->code == OPT_MT || opt->code == OPT_MQ)
1211 deps_add_target (deps, opt->arg, opt->code == OPT_MQ);
1215 /* These settings are appropriate for GCC, but not necessarily so for
1216 cpplib as a library. */
1217 static void
1218 sanitize_cpp_opts (void)
1220 /* If we don't know what style of dependencies to output, complain
1221 if any other dependency switches have been given. */
1222 if (deps_seen && cpp_opts->deps.style == DEPS_NONE)
1223 error ("to generate dependencies you must specify either -M or -MM");
1225 /* -dM and dependencies suppress normal output; do it here so that
1226 the last -d[MDN] switch overrides earlier ones. */
1227 if (flag_dump_macros == 'M')
1228 flag_no_output = 1;
1230 /* By default, -fdirectives-only implies -dD. This allows subsequent phases
1231 to perform proper macro expansion. */
1232 if (cpp_opts->directives_only && !cpp_opts->preprocessed && !flag_dump_macros)
1233 flag_dump_macros = 'D';
1235 /* Disable -dD, -dN and -dI if normal output is suppressed. Allow
1236 -dM since at least glibc relies on -M -dM to work. */
1237 /* Also, flag_no_output implies flag_no_line_commands, always. */
1238 if (flag_no_output)
1240 if (flag_dump_macros != 'M')
1241 flag_dump_macros = 0;
1242 flag_dump_includes = 0;
1243 flag_no_line_commands = 1;
1245 else if (cpp_opts->deps.missing_files)
1246 error ("-MG may only be used with -M or -MM");
1248 cpp_opts->unsigned_char = !flag_signed_char;
1249 cpp_opts->stdc_0_in_system_headers = STDC_0_IN_SYSTEM_HEADERS;
1251 /* Wlong-long is disabled by default. It is enabled by:
1252 [-Wpedantic | -Wtraditional] -std=[gnu|c]++98 ; or
1253 [-Wpedantic | -Wtraditional] -std=non-c99
1255 Either -Wlong-long or -Wno-long-long override any other settings.
1256 ??? These conditions should be handled in c.opt. */
1257 if (warn_long_long == -1)
1259 warn_long_long = ((pedantic || warn_traditional)
1260 && (c_dialect_cxx () ? cxx_dialect == cxx98 : !flag_isoc99));
1261 cpp_opts->cpp_warn_long_long = warn_long_long;
1264 /* If we're generating preprocessor output, emit current directory
1265 if explicitly requested or if debugging information is enabled.
1266 ??? Maybe we should only do it for debugging formats that
1267 actually output the current directory? */
1268 if (flag_working_directory == -1)
1269 flag_working_directory = (debug_info_level != DINFO_LEVEL_NONE);
1271 if (cpp_opts->directives_only)
1273 if (cpp_warn_unused_macros)
1274 error ("-fdirectives-only is incompatible with -Wunused_macros");
1275 if (cpp_opts->traditional)
1276 error ("-fdirectives-only is incompatible with -traditional");
1280 /* Add include path with a prefix at the front of its name. */
1281 static void
1282 add_prefixed_path (const char *suffix, size_t chain)
1284 char *path;
1285 const char *prefix;
1286 size_t prefix_len, suffix_len;
1288 suffix_len = strlen (suffix);
1289 prefix = iprefix ? iprefix : cpp_GCC_INCLUDE_DIR;
1290 prefix_len = iprefix ? strlen (iprefix) : cpp_GCC_INCLUDE_DIR_len;
1292 path = (char *) xmalloc (prefix_len + suffix_len + 1);
1293 memcpy (path, prefix, prefix_len);
1294 memcpy (path + prefix_len, suffix, suffix_len);
1295 path[prefix_len + suffix_len] = '\0';
1297 add_path (path, chain, 0, false);
1300 /* Handle -D, -U, -A, -imacros, and the first -include. */
1301 static void
1302 c_finish_options (void)
1304 if (!cpp_opts->preprocessed)
1306 size_t i;
1308 cb_file_change (parse_in,
1309 linemap_check_ordinary (linemap_add (line_table,
1310 LC_RENAME, 0,
1311 _("<built-in>"),
1312 0)));
1313 /* Make sure all of the builtins about to be declared have
1314 BUILTINS_LOCATION has their source_location. */
1315 source_location builtins_loc = BUILTINS_LOCATION;
1316 cpp_force_token_locations (parse_in, &builtins_loc);
1318 cpp_init_builtins (parse_in, flag_hosted);
1319 c_cpp_builtins (parse_in);
1321 cpp_stop_forcing_token_locations (parse_in);
1323 /* We're about to send user input to cpplib, so make it warn for
1324 things that we previously (when we sent it internal definitions)
1325 told it to not warn.
1327 C99 permits implementation-defined characters in identifiers.
1328 The documented meaning of -std= is to turn off extensions that
1329 conflict with the specified standard, and since a strictly
1330 conforming program cannot contain a '$', we do not condition
1331 their acceptance on the -std= setting. */
1332 cpp_opts->warn_dollars = (cpp_opts->cpp_pedantic && !cpp_opts->c99);
1334 cb_file_change (parse_in,
1335 linemap_check_ordinary (linemap_add (line_table, LC_RENAME, 0,
1336 _("<command-line>"), 0)));
1338 for (i = 0; i < deferred_count; i++)
1340 struct deferred_opt *opt = &deferred_opts[i];
1342 if (opt->code == OPT_D)
1343 cpp_define (parse_in, opt->arg);
1344 else if (opt->code == OPT_U)
1345 cpp_undef (parse_in, opt->arg);
1346 else if (opt->code == OPT_A)
1348 if (opt->arg[0] == '-')
1349 cpp_unassert (parse_in, opt->arg + 1);
1350 else
1351 cpp_assert (parse_in, opt->arg);
1355 /* Start the main input file, if the debug writer wants it. */
1356 if (debug_hooks->start_end_main_source_file
1357 && !flag_preprocess_only)
1358 (*debug_hooks->start_source_file) (0, this_input_filename);
1360 /* Handle -imacros after -D and -U. */
1361 for (i = 0; i < deferred_count; i++)
1363 struct deferred_opt *opt = &deferred_opts[i];
1365 if (opt->code == OPT_imacros
1366 && cpp_push_include (parse_in, opt->arg))
1368 /* Disable push_command_line_include callback for now. */
1369 include_cursor = deferred_count + 1;
1370 cpp_scan_nooutput (parse_in);
1374 else
1376 if (cpp_opts->directives_only)
1377 cpp_init_special_builtins (parse_in);
1379 /* Start the main input file, if the debug writer wants it. */
1380 if (debug_hooks->start_end_main_source_file
1381 && !flag_preprocess_only)
1382 (*debug_hooks->start_source_file) (0, this_input_filename);
1385 include_cursor = 0;
1386 push_command_line_include ();
1389 /* Give CPP the next file given by -include, if any. */
1390 static void
1391 push_command_line_include (void)
1393 /* This can happen if disabled by -imacros for example.
1394 Punt so that we don't set "<command-line>" as the filename for
1395 the header. */
1396 if (include_cursor > deferred_count)
1397 return;
1399 if (!done_preinclude)
1401 done_preinclude = true;
1402 if (flag_hosted && std_inc && !cpp_opts->preprocessed)
1404 const char *preinc = targetcm.c_preinclude ();
1405 if (preinc && cpp_push_default_include (parse_in, preinc))
1406 return;
1410 pch_cpp_save_state ();
1412 while (include_cursor < deferred_count)
1414 struct deferred_opt *opt = &deferred_opts[include_cursor++];
1416 if (!cpp_opts->preprocessed && opt->code == OPT_include
1417 && cpp_push_include (parse_in, opt->arg))
1418 return;
1421 if (include_cursor == deferred_count)
1423 include_cursor++;
1424 /* -Wunused-macros should only warn about macros defined hereafter. */
1425 cpp_opts->warn_unused_macros = cpp_warn_unused_macros;
1426 /* Restore the line map from <command line>. */
1427 if (!cpp_opts->preprocessed)
1428 cpp_change_file (parse_in, LC_RENAME, this_input_filename);
1430 /* Set this here so the client can change the option if it wishes,
1431 and after stacking the main file so we don't trace the main file. */
1432 line_table->trace_includes = cpp_opts->print_include_names;
1436 /* File change callback. Has to handle -include files. */
1437 static void
1438 cb_file_change (cpp_reader * ARG_UNUSED (pfile),
1439 const line_map_ordinary *new_map)
1441 if (flag_preprocess_only)
1442 pp_file_change (new_map);
1443 else
1444 fe_file_change (new_map);
1446 if (new_map
1447 && (new_map->reason == LC_ENTER || new_map->reason == LC_RENAME))
1449 /* Signal to plugins that a file is included. This could happen
1450 several times with the same file path, e.g. because of
1451 several '#include' or '#line' directives... */
1452 invoke_plugin_callbacks
1453 (PLUGIN_INCLUDE_FILE,
1454 const_cast<char*> (ORDINARY_MAP_FILE_NAME (new_map)));
1457 if (new_map == 0 || (new_map->reason == LC_LEAVE && MAIN_FILE_P (new_map)))
1459 pch_cpp_save_state ();
1460 push_command_line_include ();
1464 void
1465 cb_dir_change (cpp_reader * ARG_UNUSED (pfile), const char *dir)
1467 if (!set_src_pwd (dir))
1468 warning (0, "too late for # directive to set debug directory");
1471 /* Set the C 89 standard (with 1994 amendments if C94, without GNU
1472 extensions if ISO). There is no concept of gnu94. */
1473 static void
1474 set_std_c89 (int c94, int iso)
1476 cpp_set_lang (parse_in, c94 ? CLK_STDC94: iso ? CLK_STDC89: CLK_GNUC89);
1477 flag_iso = iso;
1478 flag_no_asm = iso;
1479 flag_no_gnu_keywords = iso;
1480 flag_no_nonansi_builtin = iso;
1481 flag_isoc94 = c94;
1482 flag_isoc99 = 0;
1483 flag_isoc11 = 0;
1484 lang_hooks.name = "GNU C89";
1487 /* Set the C 99 standard (without GNU extensions if ISO). */
1488 static void
1489 set_std_c99 (int iso)
1491 cpp_set_lang (parse_in, iso ? CLK_STDC99: CLK_GNUC99);
1492 flag_no_asm = iso;
1493 flag_no_nonansi_builtin = iso;
1494 flag_iso = iso;
1495 flag_isoc11 = 0;
1496 flag_isoc99 = 1;
1497 flag_isoc94 = 1;
1498 lang_hooks.name = "GNU C99";
1501 /* Set the C 11 standard (without GNU extensions if ISO). */
1502 static void
1503 set_std_c11 (int iso)
1505 cpp_set_lang (parse_in, iso ? CLK_STDC11: CLK_GNUC11);
1506 flag_no_asm = iso;
1507 flag_no_nonansi_builtin = iso;
1508 flag_iso = iso;
1509 flag_isoc11 = 1;
1510 flag_isoc99 = 1;
1511 flag_isoc94 = 1;
1512 lang_hooks.name = "GNU C11";
1515 /* Set the C++ 98 standard (without GNU extensions if ISO). */
1516 static void
1517 set_std_cxx98 (int iso)
1519 cpp_set_lang (parse_in, iso ? CLK_CXX98: CLK_GNUCXX);
1520 flag_no_gnu_keywords = iso;
1521 flag_no_nonansi_builtin = iso;
1522 flag_iso = iso;
1523 cxx_dialect = cxx98;
1524 lang_hooks.name = "GNU C++98";
1527 /* Set the C++ 2011 standard (without GNU extensions if ISO). */
1528 static void
1529 set_std_cxx11 (int iso)
1531 cpp_set_lang (parse_in, iso ? CLK_CXX11: CLK_GNUCXX11);
1532 flag_no_gnu_keywords = iso;
1533 flag_no_nonansi_builtin = iso;
1534 flag_iso = iso;
1535 /* C++11 includes the C99 standard library. */
1536 flag_isoc94 = 1;
1537 flag_isoc99 = 1;
1538 cxx_dialect = cxx11;
1539 lang_hooks.name = "GNU C++11";
1542 /* Set the C++ 2014 draft standard (without GNU extensions if ISO). */
1543 static void
1544 set_std_cxx14 (int iso)
1546 cpp_set_lang (parse_in, iso ? CLK_CXX14: CLK_GNUCXX14);
1547 flag_no_gnu_keywords = iso;
1548 flag_no_nonansi_builtin = iso;
1549 flag_iso = iso;
1550 /* C++11 includes the C99 standard library. */
1551 flag_isoc94 = 1;
1552 flag_isoc99 = 1;
1553 cxx_dialect = cxx14;
1554 lang_hooks.name = "GNU C++14";
1557 /* Set the C++ 201z draft standard (without GNU extensions if ISO). */
1558 static void
1559 set_std_cxx1z (int iso)
1561 cpp_set_lang (parse_in, iso ? CLK_CXX1Z: CLK_GNUCXX1Z);
1562 flag_no_gnu_keywords = iso;
1563 flag_no_nonansi_builtin = iso;
1564 flag_iso = iso;
1565 /* C++11 includes the C99 standard library. */
1566 flag_isoc94 = 1;
1567 flag_isoc99 = 1;
1568 flag_isoc11 = 1;
1569 cxx_dialect = cxx1z;
1570 lang_hooks.name = "GNU C++14"; /* Pretend C++14 till standarization. */
1573 /* Args to -d specify what to dump. Silently ignore
1574 unrecognized options; they may be aimed at toplev.c. */
1575 static void
1576 handle_OPT_d (const char *arg)
1578 char c;
1580 while ((c = *arg++) != '\0')
1581 switch (c)
1583 case 'M': /* Dump macros only. */
1584 case 'N': /* Dump names. */
1585 case 'D': /* Dump definitions. */
1586 case 'U': /* Dump used macros. */
1587 flag_dump_macros = c;
1588 break;
1590 case 'I':
1591 flag_dump_includes = 1;
1592 break;