gcc/c-family/ChangeLog:
[official-gcc.git] / gcc / c-family / c-opts.c
blobc2783f7e5603be64a8af2b6e8fcb95b31f3b5516
1 /* C/ObjC/C++ command line option handling.
2 Copyright (C) 2002-2016 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 "c-target.h"
26 #include "c-common.h"
27 #include "tm_p.h" /* For C_COMMON_OVERRIDE_OPTIONS. */
28 #include "diagnostic.h"
29 #include "c-pragma.h"
30 #include "flags.h"
31 #include "toplev.h"
32 #include "langhooks.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 "dumpfile.h"
43 #ifndef DOLLARS_IN_IDENTIFIERS
44 # define DOLLARS_IN_IDENTIFIERS true
45 #endif
47 #ifndef TARGET_SYSTEM_ROOT
48 # define TARGET_SYSTEM_ROOT NULL
49 #endif
51 #ifndef TARGET_OPTF
52 #define TARGET_OPTF(ARG)
53 #endif
55 /* CPP's options. */
56 cpp_options *cpp_opts;
58 /* Input filename. */
59 static const char *this_input_filename;
61 /* Filename and stream for preprocessed output. */
62 static const char *out_fname;
63 static FILE *out_stream;
65 /* Append dependencies to deps_file. */
66 static bool deps_append;
68 /* If dependency switches (-MF etc.) have been given. */
69 static bool deps_seen;
71 /* If -v seen. */
72 static bool verbose;
74 /* Dependency output file. */
75 static const char *deps_file;
77 /* The prefix given by -iprefix, if any. */
78 static const char *iprefix;
80 /* The multilib directory given by -imultilib, if any. */
81 static const char *imultilib;
83 /* The system root, if any. Overridden by -isysroot. */
84 static const char *sysroot = TARGET_SYSTEM_ROOT;
86 /* Zero disables all standard directories for headers. */
87 static bool std_inc = true;
89 /* Zero disables the C++-specific standard directories for headers. */
90 static bool std_cxx_inc = true;
92 /* If the quote chain has been split by -I-. */
93 static bool quote_chain_split;
95 /* Number of deferred options. */
96 static size_t deferred_count;
98 /* Number of deferred options scanned for -include. */
99 static size_t include_cursor;
101 /* Dump files/flags to use during parsing. */
102 static FILE *original_dump_file = NULL;
103 static int original_dump_flags;
104 static FILE *class_dump_file = NULL;
105 static int class_dump_flags;
107 /* Whether any standard preincluded header has been preincluded. */
108 static bool done_preinclude;
110 static void handle_OPT_d (const char *);
111 static void set_std_cxx98 (int);
112 static void set_std_cxx11 (int);
113 static void set_std_cxx14 (int);
114 static void set_std_cxx1z (int);
115 static void set_std_c89 (int, int);
116 static void set_std_c99 (int);
117 static void set_std_c11 (int);
118 static void check_deps_environment_vars (void);
119 static void handle_deferred_opts (void);
120 static void sanitize_cpp_opts (void);
121 static void add_prefixed_path (const char *, size_t);
122 static void push_command_line_include (void);
123 static void cb_file_change (cpp_reader *, const line_map_ordinary *);
124 static void cb_dir_change (cpp_reader *, const char *);
125 static void c_finish_options (void);
127 #ifndef STDC_0_IN_SYSTEM_HEADERS
128 #define STDC_0_IN_SYSTEM_HEADERS 0
129 #endif
131 /* Holds switches parsed by c_common_handle_option (), but whose
132 handling is deferred to c_common_post_options (). */
133 static void defer_opt (enum opt_code, const char *);
134 static struct deferred_opt
136 enum opt_code code;
137 const char *arg;
138 } *deferred_opts;
141 extern const unsigned int
142 c_family_lang_mask = (CL_C | CL_CXX | CL_ObjC | CL_ObjCXX);
144 /* Defer option CODE with argument ARG. */
145 static void
146 defer_opt (enum opt_code code, const char *arg)
148 deferred_opts[deferred_count].code = code;
149 deferred_opts[deferred_count].arg = arg;
150 deferred_count++;
153 /* Return language mask for option parsing. */
154 unsigned int
155 c_common_option_lang_mask (void)
157 static const unsigned int lang_flags[] = {CL_C, CL_ObjC, CL_CXX, CL_ObjCXX};
159 return lang_flags[c_language];
162 /* Diagnostic finalizer for C/C++/Objective-C/Objective-C++. */
163 static void
164 c_diagnostic_finalizer (diagnostic_context *context,
165 diagnostic_info *diagnostic)
167 diagnostic_show_locus (context, diagnostic);
168 /* By default print macro expansion contexts in the diagnostic
169 finalizer -- for tokens resulting from macro expansion. */
170 virt_loc_aware_diagnostic_finalizer (context, diagnostic);
171 pp_destroy_prefix (context->printer);
172 pp_flush (context->printer);
175 /* Common default settings for diagnostics. */
176 void
177 c_common_diagnostics_set_defaults (diagnostic_context *context)
179 diagnostic_finalizer (context) = c_diagnostic_finalizer;
180 context->opt_permissive = OPT_fpermissive;
183 /* Whether options from all C-family languages should be accepted
184 quietly. */
185 static bool accept_all_c_family_options = false;
187 /* Return whether to complain about a wrong-language option. */
188 bool
189 c_common_complain_wrong_lang_p (const struct cl_option *option)
191 if (accept_all_c_family_options
192 && (option->flags & c_family_lang_mask))
193 return false;
195 return true;
198 /* Initialize options structure OPTS. */
199 void
200 c_common_init_options_struct (struct gcc_options *opts)
202 opts->x_flag_exceptions = c_dialect_cxx ();
203 opts->x_warn_pointer_arith = c_dialect_cxx ();
204 opts->x_warn_write_strings = c_dialect_cxx ();
205 opts->x_flag_warn_unused_result = true;
207 /* By default, C99-like requirements for complex multiply and divide. */
208 opts->x_flag_complex_method = 2;
211 /* Common initialization before calling option handlers. */
212 void
213 c_common_init_options (unsigned int decoded_options_count,
214 struct cl_decoded_option *decoded_options)
216 unsigned int i;
217 struct cpp_callbacks *cb;
219 parse_in = cpp_create_reader (c_dialect_cxx () ? CLK_GNUCXX: CLK_GNUC89,
220 ident_hash, line_table);
221 cb = cpp_get_callbacks (parse_in);
222 cb->error = c_cpp_error;
224 cpp_opts = cpp_get_options (parse_in);
225 cpp_opts->dollars_in_ident = DOLLARS_IN_IDENTIFIERS;
226 cpp_opts->objc = c_dialect_objc ();
228 /* Reset to avoid warnings on internal definitions. We set it just
229 before passing on command-line options to cpplib. */
230 cpp_opts->warn_dollars = 0;
232 deferred_opts = XNEWVEC (struct deferred_opt, decoded_options_count);
234 if (c_language == clk_c)
236 /* The default for C is gnu11. */
237 set_std_c11 (false /* ISO */);
239 /* If preprocessing assembly language, accept any of the C-family
240 front end options since the driver may pass them through. */
241 for (i = 1; i < decoded_options_count; i++)
242 if (decoded_options[i].opt_index == OPT_lang_asm)
244 accept_all_c_family_options = true;
245 break;
249 /* Set C++ standard to C++14 if not specified on the command line. */
250 if (c_dialect_cxx ())
251 set_std_cxx14 (/*ISO*/false);
253 global_dc->colorize_source_p = true;
256 /* Handle switch SCODE with argument ARG. VALUE is true, unless no-
257 form of an -f or -W option was given. Returns false if the switch was
258 invalid, true if valid. Use HANDLERS in recursive handle_option calls. */
259 bool
260 c_common_handle_option (size_t scode, const char *arg, int value,
261 int kind, location_t loc,
262 const struct cl_option_handlers *handlers)
264 const struct cl_option *option = &cl_options[scode];
265 enum opt_code code = (enum opt_code) scode;
266 bool result = true;
268 /* Prevent resetting the language standard to a C dialect when the driver
269 has already determined that we're looking at assembler input. */
270 bool preprocessing_asm_p = (cpp_get_options (parse_in)->lang == CLK_ASM);
272 switch (code)
274 default:
275 if (cl_options[code].flags & c_family_lang_mask)
277 if ((option->flags & CL_TARGET)
278 && ! targetcm.handle_c_option (scode, arg, value))
279 result = false;
280 break;
282 result = false;
283 break;
285 case OPT__output_pch_:
286 pch_file = arg;
287 break;
289 case OPT_A:
290 defer_opt (code, arg);
291 break;
293 case OPT_C:
294 cpp_opts->discard_comments = 0;
295 break;
297 case OPT_CC:
298 cpp_opts->discard_comments = 0;
299 cpp_opts->discard_comments_in_macro_exp = 0;
300 break;
302 case OPT_D:
303 defer_opt (code, arg);
304 break;
306 case OPT_H:
307 cpp_opts->print_include_names = 1;
308 break;
310 case OPT_F:
311 TARGET_OPTF (xstrdup (arg));
312 break;
314 case OPT_I:
315 if (strcmp (arg, "-"))
316 add_path (xstrdup (arg), BRACKET, 0, true);
317 else
319 if (quote_chain_split)
320 error ("-I- specified twice");
321 quote_chain_split = true;
322 split_quote_chain ();
323 inform (input_location, "obsolete option -I- used, please use -iquote instead");
325 break;
327 case OPT_M:
328 case OPT_MM:
329 /* When doing dependencies with -M or -MM, suppress normal
330 preprocessed output, but still do -dM etc. as software
331 depends on this. Preprocessed output does occur if -MD, -MMD
332 or environment var dependency generation is used. */
333 cpp_opts->deps.style = (code == OPT_M ? DEPS_SYSTEM: DEPS_USER);
334 flag_no_output = 1;
335 break;
337 case OPT_MD:
338 case OPT_MMD:
339 cpp_opts->deps.style = (code == OPT_MD ? DEPS_SYSTEM: DEPS_USER);
340 cpp_opts->deps.need_preprocessor_output = true;
341 deps_file = arg;
342 break;
344 case OPT_MF:
345 deps_seen = true;
346 deps_file = arg;
347 break;
349 case OPT_MG:
350 deps_seen = true;
351 cpp_opts->deps.missing_files = true;
352 break;
354 case OPT_MP:
355 deps_seen = true;
356 cpp_opts->deps.phony_targets = true;
357 break;
359 case OPT_MQ:
360 case OPT_MT:
361 deps_seen = true;
362 defer_opt (code, arg);
363 break;
365 case OPT_P:
366 flag_no_line_commands = 1;
367 break;
369 case OPT_U:
370 defer_opt (code, arg);
371 break;
373 case OPT_Wall:
374 /* ??? Don't add new options here. Use LangEnabledBy in c.opt. */
376 cpp_opts->warn_num_sign_change = value;
377 break;
379 case OPT_Wunknown_pragmas:
380 /* Set to greater than 1, so that even unknown pragmas in
381 system headers will be warned about. */
382 /* ??? There is no way to handle this automatically for now. */
383 warn_unknown_pragmas = value * 2;
384 break;
386 case OPT_ansi:
387 if (!c_dialect_cxx ())
388 set_std_c89 (false, true);
389 else
390 set_std_cxx98 (true);
391 break;
393 case OPT_d:
394 handle_OPT_d (arg);
395 break;
397 case OPT_Wabi_:
398 warn_abi = true;
399 if (value == 1)
401 warning (0, "%<-Wabi=1%> is not supported, using =2");
402 value = 2;
404 warn_abi_version = value;
405 if (flag_abi_compat_version == -1)
406 flag_abi_compat_version = value;
407 break;
409 case OPT_fcanonical_system_headers:
410 cpp_opts->canonical_system_headers = value;
411 break;
413 case OPT_fcond_mismatch:
414 if (!c_dialect_cxx ())
416 flag_cond_mismatch = value;
417 break;
419 warning (0, "switch %qs is no longer supported", option->opt_text);
420 break;
422 case OPT_fbuiltin_:
423 if (value)
424 result = false;
425 else
426 disable_builtin_function (arg);
427 break;
429 case OPT_fdirectives_only:
430 cpp_opts->directives_only = value;
431 break;
433 case OPT_fdollars_in_identifiers:
434 cpp_opts->dollars_in_ident = value;
435 break;
437 case OPT_ffreestanding:
438 value = !value;
439 /* Fall through.... */
440 case OPT_fhosted:
441 flag_hosted = value;
442 flag_no_builtin = !value;
443 break;
445 case OPT_fconstant_string_class_:
446 constant_string_class_name = arg;
447 break;
449 case OPT_fextended_identifiers:
450 cpp_opts->extended_identifiers = value;
451 break;
453 case OPT_foperator_names:
454 cpp_opts->operator_names = value;
455 break;
457 case OPT_fpch_deps:
458 cpp_opts->restore_pch_deps = value;
459 break;
461 case OPT_fpch_preprocess:
462 flag_pch_preprocess = value;
463 break;
465 case OPT_fpermissive:
466 flag_permissive = value;
467 global_dc->permissive = value;
468 break;
470 case OPT_fpreprocessed:
471 cpp_opts->preprocessed = value;
472 break;
474 case OPT_fdebug_cpp:
475 cpp_opts->debug = 1;
476 break;
478 case OPT_ftrack_macro_expansion:
479 if (value)
480 value = 2;
481 /* Fall Through. */
483 case OPT_ftrack_macro_expansion_:
484 if (arg && *arg != '\0')
485 cpp_opts->track_macro_expansion = value;
486 else
487 cpp_opts->track_macro_expansion = 2;
488 break;
490 case OPT_frepo:
491 flag_use_repository = value;
492 if (value)
493 flag_implicit_templates = 0;
494 break;
496 case OPT_ftabstop_:
497 /* It is documented that we silently ignore silly values. */
498 if (value >= 1 && value <= 100)
499 cpp_opts->tabstop = value;
500 break;
502 case OPT_fexec_charset_:
503 cpp_opts->narrow_charset = arg;
504 break;
506 case OPT_fwide_exec_charset_:
507 cpp_opts->wide_charset = arg;
508 break;
510 case OPT_finput_charset_:
511 cpp_opts->input_charset = arg;
512 break;
514 case OPT_ftemplate_depth_:
515 max_tinst_depth = value;
516 break;
518 case OPT_fvisibility_inlines_hidden:
519 visibility_options.inlines_hidden = value;
520 break;
522 case OPT_femit_struct_debug_baseonly:
523 set_struct_debug_option (&global_options, loc, "base");
524 break;
526 case OPT_femit_struct_debug_reduced:
527 set_struct_debug_option (&global_options, loc,
528 "dir:ord:sys,dir:gen:any,ind:base");
529 break;
531 case OPT_femit_struct_debug_detailed_:
532 set_struct_debug_option (&global_options, loc, arg);
533 break;
535 case OPT_fext_numeric_literals:
536 cpp_opts->ext_numeric_literals = value;
537 break;
539 case OPT_idirafter:
540 add_path (xstrdup (arg), AFTER, 0, true);
541 break;
543 case OPT_imacros:
544 case OPT_include:
545 defer_opt (code, arg);
546 break;
548 case OPT_imultilib:
549 imultilib = arg;
550 break;
552 case OPT_iprefix:
553 iprefix = arg;
554 break;
556 case OPT_iquote:
557 add_path (xstrdup (arg), QUOTE, 0, true);
558 break;
560 case OPT_isysroot:
561 sysroot = arg;
562 break;
564 case OPT_isystem:
565 add_path (xstrdup (arg), SYSTEM, 0, true);
566 break;
568 case OPT_iwithprefix:
569 add_prefixed_path (arg, SYSTEM);
570 break;
572 case OPT_iwithprefixbefore:
573 add_prefixed_path (arg, BRACKET);
574 break;
576 case OPT_lang_asm:
577 cpp_set_lang (parse_in, CLK_ASM);
578 cpp_opts->dollars_in_ident = false;
579 break;
581 case OPT_nostdinc:
582 std_inc = false;
583 break;
585 case OPT_nostdinc__:
586 std_cxx_inc = false;
587 break;
589 case OPT_o:
590 if (!out_fname)
591 out_fname = arg;
592 else
593 error ("output filename specified twice");
594 break;
596 case OPT_print_objc_runtime_info:
597 print_struct_values = 1;
598 break;
600 case OPT_remap:
601 cpp_opts->remap = 1;
602 break;
604 case OPT_std_c__98:
605 case OPT_std_gnu__98:
606 if (!preprocessing_asm_p)
607 set_std_cxx98 (code == OPT_std_c__98 /* ISO */);
608 break;
610 case OPT_std_c__11:
611 case OPT_std_gnu__11:
612 if (!preprocessing_asm_p)
614 set_std_cxx11 (code == OPT_std_c__11 /* ISO */);
615 if (code == OPT_std_c__11)
616 cpp_opts->ext_numeric_literals = 0;
618 break;
620 case OPT_std_c__14:
621 case OPT_std_gnu__14:
622 if (!preprocessing_asm_p)
624 set_std_cxx14 (code == OPT_std_c__14 /* ISO */);
625 if (code == OPT_std_c__14)
626 cpp_opts->ext_numeric_literals = 0;
628 break;
630 case OPT_std_c__1z:
631 case OPT_std_gnu__1z:
632 if (!preprocessing_asm_p)
634 set_std_cxx1z (code == OPT_std_c__1z /* ISO */);
635 if (code == OPT_std_c__1z)
636 cpp_opts->ext_numeric_literals = 0;
638 break;
640 case OPT_std_c90:
641 case OPT_std_iso9899_199409:
642 if (!preprocessing_asm_p)
643 set_std_c89 (code == OPT_std_iso9899_199409 /* c94 */, true /* ISO */);
644 break;
646 case OPT_std_gnu90:
647 if (!preprocessing_asm_p)
648 set_std_c89 (false /* c94 */, false /* ISO */);
649 break;
651 case OPT_std_c99:
652 if (!preprocessing_asm_p)
653 set_std_c99 (true /* ISO */);
654 break;
656 case OPT_std_gnu99:
657 if (!preprocessing_asm_p)
658 set_std_c99 (false /* ISO */);
659 break;
661 case OPT_std_c11:
662 if (!preprocessing_asm_p)
663 set_std_c11 (true /* ISO */);
664 break;
666 case OPT_std_gnu11:
667 if (!preprocessing_asm_p)
668 set_std_c11 (false /* ISO */);
669 break;
671 case OPT_trigraphs:
672 cpp_opts->trigraphs = 1;
673 break;
675 case OPT_traditional_cpp:
676 cpp_opts->traditional = 1;
677 break;
679 case OPT_v:
680 verbose = true;
681 break;
684 switch (c_language)
686 case clk_c:
687 C_handle_option_auto (&global_options, &global_options_set,
688 scode, arg, value,
689 c_family_lang_mask, kind,
690 loc, handlers, global_dc);
691 break;
693 case clk_objc:
694 ObjC_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_cxx:
701 CXX_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_objcxx:
708 ObjCXX_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 default:
715 gcc_unreachable ();
718 cpp_handle_option_auto (&global_options, scode, cpp_opts);
719 return result;
722 /* Default implementation of TARGET_HANDLE_C_OPTION. */
724 bool
725 default_handle_c_option (size_t code ATTRIBUTE_UNUSED,
726 const char *arg ATTRIBUTE_UNUSED,
727 int value ATTRIBUTE_UNUSED)
729 return false;
732 /* Post-switch processing. */
733 bool
734 c_common_post_options (const char **pfilename)
736 struct cpp_callbacks *cb;
738 /* Canonicalize the input and output filenames. */
739 if (in_fnames == NULL)
741 in_fnames = XNEWVEC (const char *, 1);
742 in_fnames[0] = "";
744 else if (strcmp (in_fnames[0], "-") == 0)
745 in_fnames[0] = "";
747 if (out_fname == NULL || !strcmp (out_fname, "-"))
748 out_fname = "";
750 if (cpp_opts->deps.style == DEPS_NONE)
751 check_deps_environment_vars ();
753 handle_deferred_opts ();
755 sanitize_cpp_opts ();
757 register_include_chains (parse_in, sysroot, iprefix, imultilib,
758 std_inc, std_cxx_inc && c_dialect_cxx (), verbose);
760 #ifdef C_COMMON_OVERRIDE_OPTIONS
761 /* Some machines may reject certain combinations of C
762 language-specific options. */
763 C_COMMON_OVERRIDE_OPTIONS;
764 #endif
766 /* Excess precision other than "fast" requires front-end
767 support. */
768 if (c_dialect_cxx ())
770 if (flag_excess_precision_cmdline == EXCESS_PRECISION_STANDARD
771 && TARGET_FLT_EVAL_METHOD_NON_DEFAULT)
772 sorry ("-fexcess-precision=standard for C++");
773 flag_excess_precision_cmdline = EXCESS_PRECISION_FAST;
775 else if (flag_excess_precision_cmdline == EXCESS_PRECISION_DEFAULT)
776 flag_excess_precision_cmdline = (flag_iso
777 ? EXCESS_PRECISION_STANDARD
778 : EXCESS_PRECISION_FAST);
780 /* ISO C restricts floating-point expression contraction to within
781 source-language expressions (-ffp-contract=on, currently an alias
782 for -ffp-contract=off). */
783 if (flag_iso
784 && !c_dialect_cxx ()
785 && (global_options_set.x_flag_fp_contract_mode
786 == (enum fp_contract_mode) 0)
787 && flag_unsafe_math_optimizations == 0)
788 flag_fp_contract_mode = FP_CONTRACT_OFF;
790 /* By default we use C99 inline semantics in GNU99 or C99 mode. C99
791 inline semantics are not supported in GNU89 or C89 mode. */
792 if (flag_gnu89_inline == -1)
793 flag_gnu89_inline = !flag_isoc99;
794 else if (!flag_gnu89_inline && !flag_isoc99)
795 error ("-fno-gnu89-inline is only supported in GNU99 or C99 mode");
797 /* Default to ObjC sjlj exception handling if NeXT runtime. */
798 if (flag_objc_sjlj_exceptions < 0)
799 flag_objc_sjlj_exceptions = flag_next_runtime;
800 if (flag_objc_exceptions && !flag_objc_sjlj_exceptions)
801 flag_exceptions = 1;
803 /* If -ffreestanding, -fno-hosted or -fno-builtin then disable
804 pattern recognition. */
805 if (!global_options_set.x_flag_tree_loop_distribute_patterns
806 && flag_no_builtin)
807 flag_tree_loop_distribute_patterns = 0;
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 flag_isoc94 = 0;
1523 flag_isoc99 = 0;
1524 cxx_dialect = cxx98;
1525 lang_hooks.name = "GNU C++98";
1528 /* Set the C++ 2011 standard (without GNU extensions if ISO). */
1529 static void
1530 set_std_cxx11 (int iso)
1532 cpp_set_lang (parse_in, iso ? CLK_CXX11: CLK_GNUCXX11);
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 cxx_dialect = cxx11;
1540 lang_hooks.name = "GNU C++11";
1543 /* Set the C++ 2014 draft standard (without GNU extensions if ISO). */
1544 static void
1545 set_std_cxx14 (int iso)
1547 cpp_set_lang (parse_in, iso ? CLK_CXX14: CLK_GNUCXX14);
1548 flag_no_gnu_keywords = iso;
1549 flag_no_nonansi_builtin = iso;
1550 flag_iso = iso;
1551 /* C++11 includes the C99 standard library. */
1552 flag_isoc94 = 1;
1553 flag_isoc99 = 1;
1554 cxx_dialect = cxx14;
1555 lang_hooks.name = "GNU C++14";
1558 /* Set the C++ 201z draft standard (without GNU extensions if ISO). */
1559 static void
1560 set_std_cxx1z (int iso)
1562 cpp_set_lang (parse_in, iso ? CLK_CXX1Z: CLK_GNUCXX1Z);
1563 flag_no_gnu_keywords = iso;
1564 flag_no_nonansi_builtin = iso;
1565 flag_iso = iso;
1566 /* C++11 includes the C99 standard library. */
1567 flag_isoc94 = 1;
1568 flag_isoc99 = 1;
1569 /* Enable concepts by default. */
1570 flag_concepts = 1;
1571 flag_isoc11 = 1;
1572 cxx_dialect = cxx1z;
1573 lang_hooks.name = "GNU C++14"; /* Pretend C++14 till standarization. */
1576 /* Args to -d specify what to dump. Silently ignore
1577 unrecognized options; they may be aimed at toplev.c. */
1578 static void
1579 handle_OPT_d (const char *arg)
1581 char c;
1583 while ((c = *arg++) != '\0')
1584 switch (c)
1586 case 'M': /* Dump macros only. */
1587 case 'N': /* Dump names. */
1588 case 'D': /* Dump definitions. */
1589 case 'U': /* Dump used macros. */
1590 flag_dump_macros = c;
1591 break;
1593 case 'I':
1594 flag_dump_includes = 1;
1595 break;