* g++.dg/debug/dwarf2/pr44641.C: Revert line number change. Remove
[official-gcc.git] / gcc / c-family / c-opts.c
blobbf2e6b07e07e162f84148ef2cdcddb3dcac0298b
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 "tm.h"
25 #include "alias.h"
26 #include "tree.h"
27 #include "c-common.h"
28 #include "c-pragma.h"
29 #include "flags.h"
30 #include "toplev.h"
31 #include "langhooks.h"
32 #include "diagnostic.h"
33 #include "tree-diagnostic.h" /* for virt_loc_aware_diagnostic_finalizer */
34 #include "intl.h"
35 #include "cppdefault.h"
36 #include "incpath.h"
37 #include "debug.h" /* For debug_hooks. */
38 #include "opts.h"
39 #include "plugin.h" /* For PLUGIN_INCLUDE_FILE event. */
40 #include "mkdeps.h"
41 #include "c-target.h"
42 #include "tm_p.h" /* For C_COMMON_OVERRIDE_OPTIONS. */
43 #include "dumpfile.h"
45 #ifndef DOLLARS_IN_IDENTIFIERS
46 # define DOLLARS_IN_IDENTIFIERS true
47 #endif
49 #ifndef TARGET_SYSTEM_ROOT
50 # define TARGET_SYSTEM_ROOT NULL
51 #endif
53 #ifndef TARGET_OPTF
54 #define TARGET_OPTF(ARG)
55 #endif
57 /* CPP's options. */
58 cpp_options *cpp_opts;
60 /* Input filename. */
61 static const char *this_input_filename;
63 /* Filename and stream for preprocessed output. */
64 static const char *out_fname;
65 static FILE *out_stream;
67 /* Append dependencies to deps_file. */
68 static bool deps_append;
70 /* If dependency switches (-MF etc.) have been given. */
71 static bool deps_seen;
73 /* If -v seen. */
74 static bool verbose;
76 /* Dependency output file. */
77 static const char *deps_file;
79 /* The prefix given by -iprefix, if any. */
80 static const char *iprefix;
82 /* The multilib directory given by -imultilib, if any. */
83 static const char *imultilib;
85 /* The system root, if any. Overridden by -isysroot. */
86 static const char *sysroot = TARGET_SYSTEM_ROOT;
88 /* Zero disables all standard directories for headers. */
89 static bool std_inc = true;
91 /* Zero disables the C++-specific standard directories for headers. */
92 static bool std_cxx_inc = true;
94 /* If the quote chain has been split by -I-. */
95 static bool quote_chain_split;
97 /* Number of deferred options. */
98 static size_t deferred_count;
100 /* Number of deferred options scanned for -include. */
101 static size_t include_cursor;
103 /* Dump files/flags to use during parsing. */
104 static FILE *original_dump_file = NULL;
105 static int original_dump_flags;
106 static FILE *class_dump_file = NULL;
107 static int class_dump_flags;
109 /* Whether any standard preincluded header has been preincluded. */
110 static bool done_preinclude;
112 static void handle_OPT_d (const char *);
113 static void set_std_cxx98 (int);
114 static void set_std_cxx11 (int);
115 static void set_std_cxx14 (int);
116 static void set_std_cxx1z (int);
117 static void set_std_c89 (int, int);
118 static void set_std_c99 (int);
119 static void set_std_c11 (int);
120 static void check_deps_environment_vars (void);
121 static void handle_deferred_opts (void);
122 static void sanitize_cpp_opts (void);
123 static void add_prefixed_path (const char *, size_t);
124 static void push_command_line_include (void);
125 static void cb_file_change (cpp_reader *, const line_map_ordinary *);
126 static void cb_dir_change (cpp_reader *, const char *);
127 static void c_finish_options (void);
129 #ifndef STDC_0_IN_SYSTEM_HEADERS
130 #define STDC_0_IN_SYSTEM_HEADERS 0
131 #endif
133 /* Holds switches parsed by c_common_handle_option (), but whose
134 handling is deferred to c_common_post_options (). */
135 static void defer_opt (enum opt_code, const char *);
136 static struct deferred_opt
138 enum opt_code code;
139 const char *arg;
140 } *deferred_opts;
143 extern const unsigned int
144 c_family_lang_mask = (CL_C | CL_CXX | CL_ObjC | CL_ObjCXX);
146 /* Defer option CODE with argument ARG. */
147 static void
148 defer_opt (enum opt_code code, const char *arg)
150 deferred_opts[deferred_count].code = code;
151 deferred_opts[deferred_count].arg = arg;
152 deferred_count++;
155 /* Return language mask for option parsing. */
156 unsigned int
157 c_common_option_lang_mask (void)
159 static const unsigned int lang_flags[] = {CL_C, CL_ObjC, CL_CXX, CL_ObjCXX};
161 return lang_flags[c_language];
164 /* Diagnostic finalizer for C/C++/Objective-C/Objective-C++. */
165 static void
166 c_diagnostic_finalizer (diagnostic_context *context,
167 diagnostic_info *diagnostic)
169 diagnostic_show_locus (context, diagnostic);
170 /* By default print macro expansion contexts in the diagnostic
171 finalizer -- for tokens resulting from macro expansion. */
172 virt_loc_aware_diagnostic_finalizer (context, diagnostic);
173 pp_destroy_prefix (context->printer);
174 pp_newline_and_flush (context->printer);
177 /* Common default settings for diagnostics. */
178 void
179 c_common_diagnostics_set_defaults (diagnostic_context *context)
181 diagnostic_finalizer (context) = c_diagnostic_finalizer;
182 context->opt_permissive = OPT_fpermissive;
185 /* Whether options from all C-family languages should be accepted
186 quietly. */
187 static bool accept_all_c_family_options = false;
189 /* Return whether to complain about a wrong-language option. */
190 bool
191 c_common_complain_wrong_lang_p (const struct cl_option *option)
193 if (accept_all_c_family_options
194 && (option->flags & c_family_lang_mask))
195 return false;
197 return true;
200 /* Initialize options structure OPTS. */
201 void
202 c_common_init_options_struct (struct gcc_options *opts)
204 opts->x_flag_exceptions = c_dialect_cxx ();
205 opts->x_warn_pointer_arith = c_dialect_cxx ();
206 opts->x_warn_write_strings = c_dialect_cxx ();
207 opts->x_flag_warn_unused_result = true;
209 /* By default, C99-like requirements for complex multiply and divide. */
210 opts->x_flag_complex_method = 2;
213 /* Common initialization before calling option handlers. */
214 void
215 c_common_init_options (unsigned int decoded_options_count,
216 struct cl_decoded_option *decoded_options)
218 unsigned int i;
219 struct cpp_callbacks *cb;
221 parse_in = cpp_create_reader (c_dialect_cxx () ? CLK_GNUCXX: CLK_GNUC89,
222 ident_hash, line_table);
223 cb = cpp_get_callbacks (parse_in);
224 cb->error = c_cpp_error;
226 cpp_opts = cpp_get_options (parse_in);
227 cpp_opts->dollars_in_ident = DOLLARS_IN_IDENTIFIERS;
228 cpp_opts->objc = c_dialect_objc ();
230 /* Reset to avoid warnings on internal definitions. We set it just
231 before passing on command-line options to cpplib. */
232 cpp_opts->warn_dollars = 0;
234 deferred_opts = XNEWVEC (struct deferred_opt, decoded_options_count);
236 if (c_language == clk_c)
238 /* The default for C is gnu11. */
239 set_std_c11 (false /* ISO */);
241 /* If preprocessing assembly language, accept any of the C-family
242 front end options since the driver may pass them through. */
243 for (i = 1; i < decoded_options_count; i++)
244 if (decoded_options[i].opt_index == OPT_lang_asm)
246 accept_all_c_family_options = true;
247 break;
252 /* Handle switch SCODE with argument ARG. VALUE is true, unless no-
253 form of an -f or -W option was given. Returns false if the switch was
254 invalid, true if valid. Use HANDLERS in recursive handle_option calls. */
255 bool
256 c_common_handle_option (size_t scode, const char *arg, int value,
257 int kind, location_t loc,
258 const struct cl_option_handlers *handlers)
260 const struct cl_option *option = &cl_options[scode];
261 enum opt_code code = (enum opt_code) scode;
262 bool result = true;
264 /* Prevent resetting the language standard to a C dialect when the driver
265 has already determined that we're looking at assembler input. */
266 bool preprocessing_asm_p = (cpp_get_options (parse_in)->lang == CLK_ASM);
268 switch (code)
270 default:
271 if (cl_options[code].flags & c_family_lang_mask)
273 if ((option->flags & CL_TARGET)
274 && ! targetcm.handle_c_option (scode, arg, value))
275 result = false;
276 break;
278 result = false;
279 break;
281 case OPT__output_pch_:
282 pch_file = arg;
283 break;
285 case OPT_A:
286 defer_opt (code, arg);
287 break;
289 case OPT_C:
290 cpp_opts->discard_comments = 0;
291 break;
293 case OPT_CC:
294 cpp_opts->discard_comments = 0;
295 cpp_opts->discard_comments_in_macro_exp = 0;
296 break;
298 case OPT_D:
299 defer_opt (code, arg);
300 break;
302 case OPT_H:
303 cpp_opts->print_include_names = 1;
304 break;
306 case OPT_F:
307 TARGET_OPTF (xstrdup (arg));
308 break;
310 case OPT_I:
311 if (strcmp (arg, "-"))
312 add_path (xstrdup (arg), BRACKET, 0, true);
313 else
315 if (quote_chain_split)
316 error ("-I- specified twice");
317 quote_chain_split = true;
318 split_quote_chain ();
319 inform (input_location, "obsolete option -I- used, please use -iquote instead");
321 break;
323 case OPT_M:
324 case OPT_MM:
325 /* When doing dependencies with -M or -MM, suppress normal
326 preprocessed output, but still do -dM etc. as software
327 depends on this. Preprocessed output does occur if -MD, -MMD
328 or environment var dependency generation is used. */
329 cpp_opts->deps.style = (code == OPT_M ? DEPS_SYSTEM: DEPS_USER);
330 flag_no_output = 1;
331 break;
333 case OPT_MD:
334 case OPT_MMD:
335 cpp_opts->deps.style = (code == OPT_MD ? DEPS_SYSTEM: DEPS_USER);
336 cpp_opts->deps.need_preprocessor_output = true;
337 deps_file = arg;
338 break;
340 case OPT_MF:
341 deps_seen = true;
342 deps_file = arg;
343 break;
345 case OPT_MG:
346 deps_seen = true;
347 cpp_opts->deps.missing_files = true;
348 break;
350 case OPT_MP:
351 deps_seen = true;
352 cpp_opts->deps.phony_targets = true;
353 break;
355 case OPT_MQ:
356 case OPT_MT:
357 deps_seen = true;
358 defer_opt (code, arg);
359 break;
361 case OPT_P:
362 flag_no_line_commands = 1;
363 break;
365 case OPT_U:
366 defer_opt (code, arg);
367 break;
369 case OPT_Wall:
370 /* ??? Don't add new options here. Use LangEnabledBy in c.opt. */
372 cpp_opts->warn_num_sign_change = value;
373 break;
375 case OPT_Wunknown_pragmas:
376 /* Set to greater than 1, so that even unknown pragmas in
377 system headers will be warned about. */
378 /* ??? There is no way to handle this automatically for now. */
379 warn_unknown_pragmas = value * 2;
380 break;
382 case OPT_ansi:
383 if (!c_dialect_cxx ())
384 set_std_c89 (false, true);
385 else
386 set_std_cxx98 (true);
387 break;
389 case OPT_d:
390 handle_OPT_d (arg);
391 break;
393 case OPT_Wabi_:
394 warn_abi = true;
395 if (value == 1)
397 warning (0, "%<-Wabi=1%> is not supported, using =2");
398 value = 2;
400 warn_abi_version = value;
401 if (flag_abi_compat_version == -1)
402 flag_abi_compat_version = value;
403 break;
405 case OPT_fcanonical_system_headers:
406 cpp_opts->canonical_system_headers = value;
407 break;
409 case OPT_fcond_mismatch:
410 if (!c_dialect_cxx ())
412 flag_cond_mismatch = value;
413 break;
415 warning (0, "switch %qs is no longer supported", option->opt_text);
416 break;
418 case OPT_fbuiltin_:
419 if (value)
420 result = false;
421 else
422 disable_builtin_function (arg);
423 break;
425 case OPT_fdirectives_only:
426 cpp_opts->directives_only = value;
427 break;
429 case OPT_fdollars_in_identifiers:
430 cpp_opts->dollars_in_ident = value;
431 break;
433 case OPT_ffreestanding:
434 value = !value;
435 /* Fall through.... */
436 case OPT_fhosted:
437 flag_hosted = value;
438 flag_no_builtin = !value;
439 break;
441 case OPT_fconstant_string_class_:
442 constant_string_class_name = arg;
443 break;
445 case OPT_fextended_identifiers:
446 cpp_opts->extended_identifiers = value;
447 break;
449 case OPT_foperator_names:
450 cpp_opts->operator_names = value;
451 break;
453 case OPT_fpch_deps:
454 cpp_opts->restore_pch_deps = value;
455 break;
457 case OPT_fpch_preprocess:
458 flag_pch_preprocess = value;
459 break;
461 case OPT_fpermissive:
462 flag_permissive = value;
463 global_dc->permissive = value;
464 break;
466 case OPT_fpreprocessed:
467 cpp_opts->preprocessed = value;
468 break;
470 case OPT_fdebug_cpp:
471 cpp_opts->debug = 1;
472 break;
474 case OPT_ftrack_macro_expansion:
475 if (value)
476 value = 2;
477 /* Fall Through. */
479 case OPT_ftrack_macro_expansion_:
480 if (arg && *arg != '\0')
481 cpp_opts->track_macro_expansion = value;
482 else
483 cpp_opts->track_macro_expansion = 2;
484 break;
486 case OPT_frepo:
487 flag_use_repository = value;
488 if (value)
489 flag_implicit_templates = 0;
490 break;
492 case OPT_ftabstop_:
493 /* It is documented that we silently ignore silly values. */
494 if (value >= 1 && value <= 100)
495 cpp_opts->tabstop = value;
496 break;
498 case OPT_fexec_charset_:
499 cpp_opts->narrow_charset = arg;
500 break;
502 case OPT_fwide_exec_charset_:
503 cpp_opts->wide_charset = arg;
504 break;
506 case OPT_finput_charset_:
507 cpp_opts->input_charset = arg;
508 break;
510 case OPT_ftemplate_depth_:
511 max_tinst_depth = value;
512 break;
514 case OPT_fvisibility_inlines_hidden:
515 visibility_options.inlines_hidden = value;
516 break;
518 case OPT_femit_struct_debug_baseonly:
519 set_struct_debug_option (&global_options, loc, "base");
520 break;
522 case OPT_femit_struct_debug_reduced:
523 set_struct_debug_option (&global_options, loc,
524 "dir:ord:sys,dir:gen:any,ind:base");
525 break;
527 case OPT_femit_struct_debug_detailed_:
528 set_struct_debug_option (&global_options, loc, arg);
529 break;
531 case OPT_fext_numeric_literals:
532 cpp_opts->ext_numeric_literals = value;
533 break;
535 case OPT_idirafter:
536 add_path (xstrdup (arg), AFTER, 0, true);
537 break;
539 case OPT_imacros:
540 case OPT_include:
541 defer_opt (code, arg);
542 break;
544 case OPT_imultilib:
545 imultilib = arg;
546 break;
548 case OPT_iprefix:
549 iprefix = arg;
550 break;
552 case OPT_iquote:
553 add_path (xstrdup (arg), QUOTE, 0, true);
554 break;
556 case OPT_isysroot:
557 sysroot = arg;
558 break;
560 case OPT_isystem:
561 add_path (xstrdup (arg), SYSTEM, 0, true);
562 break;
564 case OPT_iwithprefix:
565 add_prefixed_path (arg, SYSTEM);
566 break;
568 case OPT_iwithprefixbefore:
569 add_prefixed_path (arg, BRACKET);
570 break;
572 case OPT_lang_asm:
573 cpp_set_lang (parse_in, CLK_ASM);
574 cpp_opts->dollars_in_ident = false;
575 break;
577 case OPT_nostdinc:
578 std_inc = false;
579 break;
581 case OPT_nostdinc__:
582 std_cxx_inc = false;
583 break;
585 case OPT_o:
586 if (!out_fname)
587 out_fname = arg;
588 else
589 error ("output filename specified twice");
590 break;
592 case OPT_print_objc_runtime_info:
593 print_struct_values = 1;
594 break;
596 case OPT_remap:
597 cpp_opts->remap = 1;
598 break;
600 case OPT_std_c__98:
601 case OPT_std_gnu__98:
602 if (!preprocessing_asm_p)
603 set_std_cxx98 (code == OPT_std_c__98 /* ISO */);
604 break;
606 case OPT_std_c__11:
607 case OPT_std_gnu__11:
608 if (!preprocessing_asm_p)
610 set_std_cxx11 (code == OPT_std_c__11 /* ISO */);
611 if (code == OPT_std_c__11)
612 cpp_opts->ext_numeric_literals = 0;
614 break;
616 case OPT_std_c__14:
617 case OPT_std_gnu__14:
618 if (!preprocessing_asm_p)
620 set_std_cxx14 (code == OPT_std_c__14 /* ISO */);
621 if (code == OPT_std_c__14)
622 cpp_opts->ext_numeric_literals = 0;
624 break;
626 case OPT_std_c__1z:
627 case OPT_std_gnu__1z:
628 if (!preprocessing_asm_p)
630 set_std_cxx1z (code == OPT_std_c__1z /* ISO */);
631 if (code == OPT_std_c__1z)
632 cpp_opts->ext_numeric_literals = 0;
634 break;
636 case OPT_std_c90:
637 case OPT_std_iso9899_199409:
638 if (!preprocessing_asm_p)
639 set_std_c89 (code == OPT_std_iso9899_199409 /* c94 */, true /* ISO */);
640 break;
642 case OPT_std_gnu90:
643 if (!preprocessing_asm_p)
644 set_std_c89 (false /* c94 */, false /* ISO */);
645 break;
647 case OPT_std_c99:
648 if (!preprocessing_asm_p)
649 set_std_c99 (true /* ISO */);
650 break;
652 case OPT_std_gnu99:
653 if (!preprocessing_asm_p)
654 set_std_c99 (false /* ISO */);
655 break;
657 case OPT_std_c11:
658 if (!preprocessing_asm_p)
659 set_std_c11 (true /* ISO */);
660 break;
662 case OPT_std_gnu11:
663 if (!preprocessing_asm_p)
664 set_std_c11 (false /* ISO */);
665 break;
667 case OPT_trigraphs:
668 cpp_opts->trigraphs = 1;
669 break;
671 case OPT_traditional_cpp:
672 cpp_opts->traditional = 1;
673 break;
675 case OPT_v:
676 verbose = true;
677 break;
680 switch (c_language)
682 case clk_c:
683 C_handle_option_auto (&global_options, &global_options_set,
684 scode, arg, value,
685 c_family_lang_mask, kind,
686 loc, handlers, global_dc);
687 break;
689 case clk_objc:
690 ObjC_handle_option_auto (&global_options, &global_options_set,
691 scode, arg, value,
692 c_family_lang_mask, kind,
693 loc, handlers, global_dc);
694 break;
696 case clk_cxx:
697 CXX_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_objcxx:
704 ObjCXX_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 default:
711 gcc_unreachable ();
714 cpp_handle_option_auto (&global_options, scode, cpp_opts);
715 return result;
718 /* Default implementation of TARGET_HANDLE_C_OPTION. */
720 bool
721 default_handle_c_option (size_t code ATTRIBUTE_UNUSED,
722 const char *arg ATTRIBUTE_UNUSED,
723 int value ATTRIBUTE_UNUSED)
725 return false;
728 /* Post-switch processing. */
729 bool
730 c_common_post_options (const char **pfilename)
732 struct cpp_callbacks *cb;
734 /* Canonicalize the input and output filenames. */
735 if (in_fnames == NULL)
737 in_fnames = XNEWVEC (const char *, 1);
738 in_fnames[0] = "";
740 else if (strcmp (in_fnames[0], "-") == 0)
741 in_fnames[0] = "";
743 if (out_fname == NULL || !strcmp (out_fname, "-"))
744 out_fname = "";
746 if (cpp_opts->deps.style == DEPS_NONE)
747 check_deps_environment_vars ();
749 handle_deferred_opts ();
751 sanitize_cpp_opts ();
753 register_include_chains (parse_in, sysroot, iprefix, imultilib,
754 std_inc, std_cxx_inc && c_dialect_cxx (), verbose);
756 #ifdef C_COMMON_OVERRIDE_OPTIONS
757 /* Some machines may reject certain combinations of C
758 language-specific options. */
759 C_COMMON_OVERRIDE_OPTIONS;
760 #endif
762 /* Excess precision other than "fast" requires front-end
763 support. */
764 if (c_dialect_cxx ())
766 if (flag_excess_precision_cmdline == EXCESS_PRECISION_STANDARD
767 && TARGET_FLT_EVAL_METHOD_NON_DEFAULT)
768 sorry ("-fexcess-precision=standard for C++");
769 flag_excess_precision_cmdline = EXCESS_PRECISION_FAST;
771 else if (flag_excess_precision_cmdline == EXCESS_PRECISION_DEFAULT)
772 flag_excess_precision_cmdline = (flag_iso
773 ? EXCESS_PRECISION_STANDARD
774 : EXCESS_PRECISION_FAST);
776 /* ISO C restricts floating-point expression contraction to within
777 source-language expressions (-ffp-contract=on, currently an alias
778 for -ffp-contract=off). */
779 if (flag_iso
780 && !c_dialect_cxx ()
781 && (global_options_set.x_flag_fp_contract_mode
782 == (enum fp_contract_mode) 0)
783 && flag_unsafe_math_optimizations == 0)
784 flag_fp_contract_mode = FP_CONTRACT_OFF;
786 /* By default we use C99 inline semantics in GNU99 or C99 mode. C99
787 inline semantics are not supported in GNU89 or C89 mode. */
788 if (flag_gnu89_inline == -1)
789 flag_gnu89_inline = !flag_isoc99;
790 else if (!flag_gnu89_inline && !flag_isoc99)
791 error ("-fno-gnu89-inline is only supported in GNU99 or C99 mode");
793 /* Default to ObjC sjlj exception handling if NeXT runtime. */
794 if (flag_objc_sjlj_exceptions < 0)
795 flag_objc_sjlj_exceptions = flag_next_runtime;
796 if (flag_objc_exceptions && !flag_objc_sjlj_exceptions)
797 flag_exceptions = 1;
799 /* If -ffreestanding, -fno-hosted or -fno-builtin then disable
800 pattern recognition. */
801 if (!global_options_set.x_flag_tree_loop_distribute_patterns
802 && flag_no_builtin)
803 flag_tree_loop_distribute_patterns = 0;
805 /* Set C++ standard to C++14 if not specified on the command line. */
806 if (c_dialect_cxx () && cxx_dialect == cxx_unset)
807 set_std_cxx14 (/*ISO*/false);
809 /* -Woverlength-strings is off by default, but is enabled by -Wpedantic.
810 It is never enabled in C++, as the minimum limit is not normative
811 in that standard. */
812 if (c_dialect_cxx ())
813 warn_overlength_strings = 0;
815 /* Wmain is enabled by default in C++ but not in C. */
816 /* Wmain is disabled by default for -ffreestanding (!flag_hosted),
817 even if -Wall or -Wpedantic was given (warn_main will be 2 if set
818 by -Wall, 1 if set by -Wmain). */
819 if (warn_main == -1)
820 warn_main = (c_dialect_cxx () && flag_hosted) ? 1 : 0;
821 else if (warn_main == 2)
822 warn_main = flag_hosted ? 1 : 0;
824 /* In C, -Wall and -Wc++-compat enable -Wenum-compare; if it has not
825 yet been set, it is disabled by default. In C++, it is enabled
826 by default. */
827 if (warn_enum_compare == -1)
828 warn_enum_compare = c_dialect_cxx () ? 1 : 0;
830 /* -Wpacked-bitfield-compat is on by default for the C languages. The
831 warning is issued in stor-layout.c which is not part of the front-end so
832 we need to selectively turn it on here. */
833 if (warn_packed_bitfield_compat == -1)
834 warn_packed_bitfield_compat = 1;
836 /* Special format checking options don't work without -Wformat; warn if
837 they are used. */
838 if (!warn_format)
840 warning (OPT_Wformat_y2k,
841 "-Wformat-y2k ignored without -Wformat");
842 warning (OPT_Wformat_extra_args,
843 "-Wformat-extra-args ignored without -Wformat");
844 warning (OPT_Wformat_zero_length,
845 "-Wformat-zero-length ignored without -Wformat");
846 warning (OPT_Wformat_nonliteral,
847 "-Wformat-nonliteral ignored without -Wformat");
848 warning (OPT_Wformat_contains_nul,
849 "-Wformat-contains-nul ignored without -Wformat");
850 warning (OPT_Wformat_security,
851 "-Wformat-security ignored without -Wformat");
854 /* -Wimplicit-function-declaration is enabled by default for C99. */
855 if (warn_implicit_function_declaration == -1)
856 warn_implicit_function_declaration = flag_isoc99;
858 /* -Wimplicit-int is enabled by default for C99. */
859 if (warn_implicit_int == -1)
860 warn_implicit_int = flag_isoc99;
862 /* -Wshift-overflow is enabled by default in C99 and C++11 modes. */
863 if (warn_shift_overflow == -1)
864 warn_shift_overflow = cxx_dialect >= cxx11 || flag_isoc99;
866 /* -Wshift-negative-value is enabled by -Wextra in C99 and C++11 modes. */
867 if (warn_shift_negative_value == -1)
868 warn_shift_negative_value = (extra_warnings
869 && (cxx_dialect >= cxx11 || flag_isoc99));
871 /* Declone C++ 'structors if -Os. */
872 if (flag_declone_ctor_dtor == -1)
873 flag_declone_ctor_dtor = optimize_size;
875 if (warn_abi_version == -1)
877 if (flag_abi_compat_version != -1)
878 warn_abi_version = flag_abi_compat_version;
879 else
880 warn_abi_version = 0;
883 if (flag_abi_compat_version == 1)
885 warning (0, "%<-fabi-compat-version=1%> is not supported, using =2");
886 flag_abi_compat_version = 2;
888 else if (flag_abi_compat_version == -1)
890 /* Generate compatibility aliases for ABI v8 (5.1) by default. */
891 flag_abi_compat_version
892 = (flag_abi_version == 0 ? 8 : 0);
895 /* Change flag_abi_version to be the actual current ABI level for the
896 benefit of c_cpp_builtins. */
897 if (flag_abi_version == 0)
898 flag_abi_version = 10;
900 if (cxx_dialect >= cxx11)
902 /* If we're allowing C++0x constructs, don't warn about C++98
903 identifiers which are keywords in C++0x. */
904 warn_cxx11_compat = 0;
905 cpp_opts->cpp_warn_cxx11_compat = 0;
907 if (warn_narrowing == -1)
908 warn_narrowing = 1;
910 else if (warn_narrowing == -1)
911 warn_narrowing = 0;
913 /* Global sized deallocation is new in C++14. */
914 if (flag_sized_deallocation == -1)
915 flag_sized_deallocation = (cxx_dialect >= cxx14);
917 if (flag_extern_tls_init)
919 #if !defined (ASM_OUTPUT_DEF) || !SUPPORTS_WEAK
920 /* Lazy TLS initialization for a variable in another TU requires
921 alias and weak reference support. */
922 if (flag_extern_tls_init > 0)
923 sorry ("external TLS initialization functions not supported "
924 "on this target");
925 flag_extern_tls_init = 0;
926 #else
927 flag_extern_tls_init = 1;
928 #endif
931 if (flag_preprocess_only)
933 /* Open the output now. We must do so even if flag_no_output is
934 on, because there may be other output than from the actual
935 preprocessing (e.g. from -dM). */
936 if (out_fname[0] == '\0')
937 out_stream = stdout;
938 else
939 out_stream = fopen (out_fname, "w");
941 if (out_stream == NULL)
943 fatal_error (input_location, "opening output file %s: %m", out_fname);
944 return false;
947 if (num_in_fnames > 1)
948 error ("too many filenames given. Type %s --help for usage",
949 progname);
951 init_pp_output (out_stream);
953 else
955 init_c_lex ();
957 /* When writing a PCH file, avoid reading some other PCH file,
958 because the default address space slot then can't be used
959 for the output PCH file. */
960 if (pch_file)
962 c_common_no_more_pch ();
963 /* Only -g0 and -gdwarf* are supported with PCH, for other
964 debug formats we warn here and refuse to load any PCH files. */
965 if (write_symbols != NO_DEBUG && write_symbols != DWARF2_DEBUG)
966 warning (OPT_Wdeprecated,
967 "the \"%s\" debug format cannot be used with "
968 "pre-compiled headers", debug_type_names[write_symbols]);
970 else if (write_symbols != NO_DEBUG && write_symbols != DWARF2_DEBUG)
971 c_common_no_more_pch ();
973 /* Yuk. WTF is this? I do know ObjC relies on it somewhere. */
974 input_location = UNKNOWN_LOCATION;
977 cb = cpp_get_callbacks (parse_in);
978 cb->file_change = cb_file_change;
979 cb->dir_change = cb_dir_change;
980 cpp_post_options (parse_in);
981 init_global_opts_from_cpp (&global_options, cpp_get_options (parse_in));
983 input_location = UNKNOWN_LOCATION;
985 *pfilename = this_input_filename
986 = cpp_read_main_file (parse_in, in_fnames[0]);
987 /* Don't do any compilation or preprocessing if there is no input file. */
988 if (this_input_filename == NULL)
990 errorcount++;
991 return false;
994 if (flag_working_directory
995 && flag_preprocess_only && !flag_no_line_commands)
996 pp_dir_change (parse_in, get_src_pwd ());
998 /* Disable LTO output when outputting a precompiled header. */
999 if (pch_file && flag_lto)
1001 flag_lto = 0;
1002 flag_generate_lto = 0;
1005 return flag_preprocess_only;
1008 /* Front end initialization common to C, ObjC and C++. */
1009 bool
1010 c_common_init (void)
1012 /* Set up preprocessor arithmetic. Must be done after call to
1013 c_common_nodes_and_builtins for type nodes to be good. */
1014 cpp_opts->precision = TYPE_PRECISION (intmax_type_node);
1015 cpp_opts->char_precision = TYPE_PRECISION (char_type_node);
1016 cpp_opts->int_precision = TYPE_PRECISION (integer_type_node);
1017 cpp_opts->wchar_precision = TYPE_PRECISION (wchar_type_node);
1018 cpp_opts->unsigned_wchar = TYPE_UNSIGNED (wchar_type_node);
1019 cpp_opts->bytes_big_endian = BYTES_BIG_ENDIAN;
1021 /* This can't happen until after wchar_precision and bytes_big_endian
1022 are known. */
1023 cpp_init_iconv (parse_in);
1025 if (version_flag)
1027 int i;
1028 fputs ("Compiler executable checksum: ", stderr);
1029 for (i = 0; i < 16; i++)
1030 fprintf (stderr, "%02x", executable_checksum[i]);
1031 putc ('\n', stderr);
1034 /* Has to wait until now so that cpplib has its hash table. */
1035 init_pragma ();
1037 if (flag_preprocess_only)
1039 c_finish_options ();
1040 preprocess_file (parse_in);
1041 return false;
1044 return true;
1047 /* Initialize the integrated preprocessor after debug output has been
1048 initialized; loop over each input file. */
1049 void
1050 c_common_parse_file (void)
1052 unsigned int i;
1054 i = 0;
1055 for (;;)
1057 c_finish_options ();
1058 /* Open the dump files to use for the original and class dump output
1059 here, to be used during parsing for the current file. */
1060 original_dump_file = dump_begin (TDI_original, &original_dump_flags);
1061 class_dump_file = dump_begin (TDI_class, &class_dump_flags);
1062 pch_init ();
1063 push_file_scope ();
1064 c_parse_file ();
1065 pop_file_scope ();
1066 /* And end the main input file, if the debug writer wants it */
1067 if (debug_hooks->start_end_main_source_file)
1068 (*debug_hooks->end_source_file) (0);
1069 if (++i >= num_in_fnames)
1070 break;
1071 cpp_undef_all (parse_in);
1072 cpp_clear_file_cache (parse_in);
1073 this_input_filename
1074 = cpp_read_main_file (parse_in, in_fnames[i]);
1075 if (original_dump_file)
1077 dump_end (TDI_original, original_dump_file);
1078 original_dump_file = NULL;
1080 if (class_dump_file)
1082 dump_end (TDI_class, class_dump_file);
1083 class_dump_file = NULL;
1085 /* If an input file is missing, abandon further compilation.
1086 cpplib has issued a diagnostic. */
1087 if (!this_input_filename)
1088 break;
1091 c_parse_final_cleanups ();
1094 /* Returns the appropriate dump file for PHASE to dump with FLAGS. */
1095 FILE *
1096 get_dump_info (int phase, int *flags)
1098 gcc_assert (phase == TDI_original || phase == TDI_class);
1099 if (phase == TDI_original)
1101 *flags = original_dump_flags;
1102 return original_dump_file;
1104 else
1106 *flags = class_dump_flags;
1107 return class_dump_file;
1111 /* Common finish hook for the C, ObjC and C++ front ends. */
1112 void
1113 c_common_finish (void)
1115 FILE *deps_stream = NULL;
1117 /* Don't write the deps file if there are errors. */
1118 if (cpp_opts->deps.style != DEPS_NONE && !seen_error ())
1120 /* If -M or -MM was seen without -MF, default output to the
1121 output stream. */
1122 if (!deps_file)
1123 deps_stream = out_stream;
1124 else
1126 deps_stream = fopen (deps_file, deps_append ? "a": "w");
1127 if (!deps_stream)
1128 fatal_error (input_location, "opening dependency file %s: %m",
1129 deps_file);
1133 /* For performance, avoid tearing down cpplib's internal structures
1134 with cpp_destroy (). */
1135 cpp_finish (parse_in, deps_stream);
1137 if (deps_stream && deps_stream != out_stream
1138 && (ferror (deps_stream) || fclose (deps_stream)))
1139 fatal_error (input_location, "closing dependency file %s: %m", deps_file);
1141 if (out_stream && (ferror (out_stream) || fclose (out_stream)))
1142 fatal_error (input_location, "when writing output to %s: %m", out_fname);
1145 /* Either of two environment variables can specify output of
1146 dependencies. Their value is either "OUTPUT_FILE" or "OUTPUT_FILE
1147 DEPS_TARGET", where OUTPUT_FILE is the file to write deps info to
1148 and DEPS_TARGET is the target to mention in the deps. They also
1149 result in dependency information being appended to the output file
1150 rather than overwriting it, and like Sun's compiler
1151 SUNPRO_DEPENDENCIES suppresses the dependency on the main file. */
1152 static void
1153 check_deps_environment_vars (void)
1155 char *spec;
1157 spec = getenv ("DEPENDENCIES_OUTPUT");
1158 if (spec)
1159 cpp_opts->deps.style = DEPS_USER;
1160 else
1162 spec = getenv ("SUNPRO_DEPENDENCIES");
1163 if (spec)
1165 cpp_opts->deps.style = DEPS_SYSTEM;
1166 cpp_opts->deps.ignore_main_file = true;
1170 if (spec)
1172 /* Find the space before the DEPS_TARGET, if there is one. */
1173 char *s = strchr (spec, ' ');
1174 if (s)
1176 /* Let the caller perform MAKE quoting. */
1177 defer_opt (OPT_MT, s + 1);
1178 *s = '\0';
1181 /* Command line -MF overrides environment variables and default. */
1182 if (!deps_file)
1183 deps_file = spec;
1185 deps_append = 1;
1186 deps_seen = true;
1190 /* Handle deferred command line switches. */
1191 static void
1192 handle_deferred_opts (void)
1194 size_t i;
1195 struct deps *deps;
1197 /* Avoid allocating the deps buffer if we don't need it.
1198 (This flag may be true without there having been -MT or -MQ
1199 options, but we'll still need the deps buffer.) */
1200 if (!deps_seen)
1201 return;
1203 deps = cpp_get_deps (parse_in);
1205 for (i = 0; i < deferred_count; i++)
1207 struct deferred_opt *opt = &deferred_opts[i];
1209 if (opt->code == OPT_MT || opt->code == OPT_MQ)
1210 deps_add_target (deps, opt->arg, opt->code == OPT_MQ);
1214 /* These settings are appropriate for GCC, but not necessarily so for
1215 cpplib as a library. */
1216 static void
1217 sanitize_cpp_opts (void)
1219 /* If we don't know what style of dependencies to output, complain
1220 if any other dependency switches have been given. */
1221 if (deps_seen && cpp_opts->deps.style == DEPS_NONE)
1222 error ("to generate dependencies you must specify either -M or -MM");
1224 /* -dM and dependencies suppress normal output; do it here so that
1225 the last -d[MDN] switch overrides earlier ones. */
1226 if (flag_dump_macros == 'M')
1227 flag_no_output = 1;
1229 /* By default, -fdirectives-only implies -dD. This allows subsequent phases
1230 to perform proper macro expansion. */
1231 if (cpp_opts->directives_only && !cpp_opts->preprocessed && !flag_dump_macros)
1232 flag_dump_macros = 'D';
1234 /* Disable -dD, -dN and -dI if normal output is suppressed. Allow
1235 -dM since at least glibc relies on -M -dM to work. */
1236 /* Also, flag_no_output implies flag_no_line_commands, always. */
1237 if (flag_no_output)
1239 if (flag_dump_macros != 'M')
1240 flag_dump_macros = 0;
1241 flag_dump_includes = 0;
1242 flag_no_line_commands = 1;
1244 else if (cpp_opts->deps.missing_files)
1245 error ("-MG may only be used with -M or -MM");
1247 cpp_opts->unsigned_char = !flag_signed_char;
1248 cpp_opts->stdc_0_in_system_headers = STDC_0_IN_SYSTEM_HEADERS;
1250 /* Wlong-long is disabled by default. It is enabled by:
1251 [-Wpedantic | -Wtraditional] -std=[gnu|c]++98 ; or
1252 [-Wpedantic | -Wtraditional] -std=non-c99
1254 Either -Wlong-long or -Wno-long-long override any other settings.
1255 ??? These conditions should be handled in c.opt. */
1256 if (warn_long_long == -1)
1258 warn_long_long = ((pedantic || warn_traditional)
1259 && (c_dialect_cxx () ? cxx_dialect == cxx98 : !flag_isoc99));
1260 cpp_opts->cpp_warn_long_long = warn_long_long;
1263 /* If we're generating preprocessor output, emit current directory
1264 if explicitly requested or if debugging information is enabled.
1265 ??? Maybe we should only do it for debugging formats that
1266 actually output the current directory? */
1267 if (flag_working_directory == -1)
1268 flag_working_directory = (debug_info_level != DINFO_LEVEL_NONE);
1270 if (cpp_opts->directives_only)
1272 if (cpp_warn_unused_macros)
1273 error ("-fdirectives-only is incompatible with -Wunused_macros");
1274 if (cpp_opts->traditional)
1275 error ("-fdirectives-only is incompatible with -traditional");
1279 /* Add include path with a prefix at the front of its name. */
1280 static void
1281 add_prefixed_path (const char *suffix, size_t chain)
1283 char *path;
1284 const char *prefix;
1285 size_t prefix_len, suffix_len;
1287 suffix_len = strlen (suffix);
1288 prefix = iprefix ? iprefix : cpp_GCC_INCLUDE_DIR;
1289 prefix_len = iprefix ? strlen (iprefix) : cpp_GCC_INCLUDE_DIR_len;
1291 path = (char *) xmalloc (prefix_len + suffix_len + 1);
1292 memcpy (path, prefix, prefix_len);
1293 memcpy (path + prefix_len, suffix, suffix_len);
1294 path[prefix_len + suffix_len] = '\0';
1296 add_path (path, chain, 0, false);
1299 /* Handle -D, -U, -A, -imacros, and the first -include. */
1300 static void
1301 c_finish_options (void)
1303 if (!cpp_opts->preprocessed)
1305 size_t i;
1307 cb_file_change (parse_in,
1308 linemap_check_ordinary (linemap_add (line_table,
1309 LC_RENAME, 0,
1310 _("<built-in>"),
1311 0)));
1312 /* Make sure all of the builtins about to be declared have
1313 BUILTINS_LOCATION has their source_location. */
1314 source_location builtins_loc = BUILTINS_LOCATION;
1315 cpp_force_token_locations (parse_in, &builtins_loc);
1317 cpp_init_builtins (parse_in, flag_hosted);
1318 c_cpp_builtins (parse_in);
1320 cpp_stop_forcing_token_locations (parse_in);
1322 /* We're about to send user input to cpplib, so make it warn for
1323 things that we previously (when we sent it internal definitions)
1324 told it to not warn.
1326 C99 permits implementation-defined characters in identifiers.
1327 The documented meaning of -std= is to turn off extensions that
1328 conflict with the specified standard, and since a strictly
1329 conforming program cannot contain a '$', we do not condition
1330 their acceptance on the -std= setting. */
1331 cpp_opts->warn_dollars = (cpp_opts->cpp_pedantic && !cpp_opts->c99);
1333 cb_file_change (parse_in,
1334 linemap_check_ordinary (linemap_add (line_table, LC_RENAME, 0,
1335 _("<command-line>"), 0)));
1337 for (i = 0; i < deferred_count; i++)
1339 struct deferred_opt *opt = &deferred_opts[i];
1341 if (opt->code == OPT_D)
1342 cpp_define (parse_in, opt->arg);
1343 else if (opt->code == OPT_U)
1344 cpp_undef (parse_in, opt->arg);
1345 else if (opt->code == OPT_A)
1347 if (opt->arg[0] == '-')
1348 cpp_unassert (parse_in, opt->arg + 1);
1349 else
1350 cpp_assert (parse_in, opt->arg);
1354 /* Start the main input file, if the debug writer wants it. */
1355 if (debug_hooks->start_end_main_source_file
1356 && !flag_preprocess_only)
1357 (*debug_hooks->start_source_file) (0, this_input_filename);
1359 /* Handle -imacros after -D and -U. */
1360 for (i = 0; i < deferred_count; i++)
1362 struct deferred_opt *opt = &deferred_opts[i];
1364 if (opt->code == OPT_imacros
1365 && cpp_push_include (parse_in, opt->arg))
1367 /* Disable push_command_line_include callback for now. */
1368 include_cursor = deferred_count + 1;
1369 cpp_scan_nooutput (parse_in);
1373 else
1375 if (cpp_opts->directives_only)
1376 cpp_init_special_builtins (parse_in);
1378 /* Start the main input file, if the debug writer wants it. */
1379 if (debug_hooks->start_end_main_source_file
1380 && !flag_preprocess_only)
1381 (*debug_hooks->start_source_file) (0, this_input_filename);
1384 include_cursor = 0;
1385 push_command_line_include ();
1388 /* Give CPP the next file given by -include, if any. */
1389 static void
1390 push_command_line_include (void)
1392 /* This can happen if disabled by -imacros for example.
1393 Punt so that we don't set "<command-line>" as the filename for
1394 the header. */
1395 if (include_cursor > deferred_count)
1396 return;
1398 if (!done_preinclude)
1400 done_preinclude = true;
1401 if (flag_hosted && std_inc && !cpp_opts->preprocessed)
1403 const char *preinc = targetcm.c_preinclude ();
1404 if (preinc && cpp_push_default_include (parse_in, preinc))
1405 return;
1409 pch_cpp_save_state ();
1411 while (include_cursor < deferred_count)
1413 struct deferred_opt *opt = &deferred_opts[include_cursor++];
1415 if (!cpp_opts->preprocessed && opt->code == OPT_include
1416 && cpp_push_include (parse_in, opt->arg))
1417 return;
1420 if (include_cursor == deferred_count)
1422 include_cursor++;
1423 /* -Wunused-macros should only warn about macros defined hereafter. */
1424 cpp_opts->warn_unused_macros = cpp_warn_unused_macros;
1425 /* Restore the line map from <command line>. */
1426 if (!cpp_opts->preprocessed)
1427 cpp_change_file (parse_in, LC_RENAME, this_input_filename);
1429 /* Set this here so the client can change the option if it wishes,
1430 and after stacking the main file so we don't trace the main file. */
1431 line_table->trace_includes = cpp_opts->print_include_names;
1435 /* File change callback. Has to handle -include files. */
1436 static void
1437 cb_file_change (cpp_reader * ARG_UNUSED (pfile),
1438 const line_map_ordinary *new_map)
1440 if (flag_preprocess_only)
1441 pp_file_change (new_map);
1442 else
1443 fe_file_change (new_map);
1445 if (new_map
1446 && (new_map->reason == LC_ENTER || new_map->reason == LC_RENAME))
1448 /* Signal to plugins that a file is included. This could happen
1449 several times with the same file path, e.g. because of
1450 several '#include' or '#line' directives... */
1451 invoke_plugin_callbacks
1452 (PLUGIN_INCLUDE_FILE,
1453 const_cast<char*> (ORDINARY_MAP_FILE_NAME (new_map)));
1456 if (new_map == 0 || (new_map->reason == LC_LEAVE && MAIN_FILE_P (new_map)))
1458 pch_cpp_save_state ();
1459 push_command_line_include ();
1463 void
1464 cb_dir_change (cpp_reader * ARG_UNUSED (pfile), const char *dir)
1466 if (!set_src_pwd (dir))
1467 warning (0, "too late for # directive to set debug directory");
1470 /* Set the C 89 standard (with 1994 amendments if C94, without GNU
1471 extensions if ISO). There is no concept of gnu94. */
1472 static void
1473 set_std_c89 (int c94, int iso)
1475 cpp_set_lang (parse_in, c94 ? CLK_STDC94: iso ? CLK_STDC89: CLK_GNUC89);
1476 flag_iso = iso;
1477 flag_no_asm = iso;
1478 flag_no_gnu_keywords = iso;
1479 flag_no_nonansi_builtin = iso;
1480 flag_isoc94 = c94;
1481 flag_isoc99 = 0;
1482 flag_isoc11 = 0;
1483 lang_hooks.name = "GNU C89";
1486 /* Set the C 99 standard (without GNU extensions if ISO). */
1487 static void
1488 set_std_c99 (int iso)
1490 cpp_set_lang (parse_in, iso ? CLK_STDC99: CLK_GNUC99);
1491 flag_no_asm = iso;
1492 flag_no_nonansi_builtin = iso;
1493 flag_iso = iso;
1494 flag_isoc11 = 0;
1495 flag_isoc99 = 1;
1496 flag_isoc94 = 1;
1497 lang_hooks.name = "GNU C99";
1500 /* Set the C 11 standard (without GNU extensions if ISO). */
1501 static void
1502 set_std_c11 (int iso)
1504 cpp_set_lang (parse_in, iso ? CLK_STDC11: CLK_GNUC11);
1505 flag_no_asm = iso;
1506 flag_no_nonansi_builtin = iso;
1507 flag_iso = iso;
1508 flag_isoc11 = 1;
1509 flag_isoc99 = 1;
1510 flag_isoc94 = 1;
1511 lang_hooks.name = "GNU C11";
1514 /* Set the C++ 98 standard (without GNU extensions if ISO). */
1515 static void
1516 set_std_cxx98 (int iso)
1518 cpp_set_lang (parse_in, iso ? CLK_CXX98: CLK_GNUCXX);
1519 flag_no_gnu_keywords = iso;
1520 flag_no_nonansi_builtin = iso;
1521 flag_iso = iso;
1522 cxx_dialect = cxx98;
1523 lang_hooks.name = "GNU C++98";
1526 /* Set the C++ 2011 standard (without GNU extensions if ISO). */
1527 static void
1528 set_std_cxx11 (int iso)
1530 cpp_set_lang (parse_in, iso ? CLK_CXX11: CLK_GNUCXX11);
1531 flag_no_gnu_keywords = iso;
1532 flag_no_nonansi_builtin = iso;
1533 flag_iso = iso;
1534 /* C++11 includes the C99 standard library. */
1535 flag_isoc94 = 1;
1536 flag_isoc99 = 1;
1537 cxx_dialect = cxx11;
1538 lang_hooks.name = "GNU C++11";
1541 /* Set the C++ 2014 draft standard (without GNU extensions if ISO). */
1542 static void
1543 set_std_cxx14 (int iso)
1545 cpp_set_lang (parse_in, iso ? CLK_CXX14: CLK_GNUCXX14);
1546 flag_no_gnu_keywords = iso;
1547 flag_no_nonansi_builtin = iso;
1548 flag_iso = iso;
1549 /* C++11 includes the C99 standard library. */
1550 flag_isoc94 = 1;
1551 flag_isoc99 = 1;
1552 cxx_dialect = cxx14;
1553 lang_hooks.name = "GNU C++14";
1556 /* Set the C++ 201z draft standard (without GNU extensions if ISO). */
1557 static void
1558 set_std_cxx1z (int iso)
1560 cpp_set_lang (parse_in, iso ? CLK_CXX1Z: CLK_GNUCXX1Z);
1561 flag_no_gnu_keywords = iso;
1562 flag_no_nonansi_builtin = iso;
1563 flag_iso = iso;
1564 /* C++11 includes the C99 standard library. */
1565 flag_isoc94 = 1;
1566 flag_isoc99 = 1;
1567 /* Enable concepts by default. */
1568 flag_concepts = 1;
1569 flag_isoc11 = 1;
1570 cxx_dialect = cxx1z;
1571 lang_hooks.name = "GNU C++14"; /* Pretend C++14 till standarization. */
1574 /* Args to -d specify what to dump. Silently ignore
1575 unrecognized options; they may be aimed at toplev.c. */
1576 static void
1577 handle_OPT_d (const char *arg)
1579 char c;
1581 while ((c = *arg++) != '\0')
1582 switch (c)
1584 case 'M': /* Dump macros only. */
1585 case 'N': /* Dump names. */
1586 case 'D': /* Dump definitions. */
1587 case 'U': /* Dump used macros. */
1588 flag_dump_macros = c;
1589 break;
1591 case 'I':
1592 flag_dump_includes = 1;
1593 break;