Add support for -std=c++2a.
[gcc.git] / gcc / c-family / c-opts.c
1 /* C/ObjC/C++ command line option handling.
2 Copyright (C) 2002-2017 Free Software Foundation, Inc.
3 Contributed by Neil Booth.
4
5 This file is part of GCC.
6
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.
11
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.
16
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/>. */
20
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 "memmodel.h"
28 #include "tm_p.h" /* For C_COMMON_OVERRIDE_OPTIONS. */
29 #include "diagnostic.h"
30 #include "c-pragma.h"
31 #include "flags.h"
32 #include "toplev.h"
33 #include "langhooks.h"
34 #include "tree-diagnostic.h" /* for virt_loc_aware_diagnostic_finalizer */
35 #include "intl.h"
36 #include "cppdefault.h"
37 #include "incpath.h"
38 #include "debug.h" /* For debug_hooks. */
39 #include "opts.h"
40 #include "plugin.h" /* For PLUGIN_INCLUDE_FILE event. */
41 #include "mkdeps.h"
42 #include "dumpfile.h"
43
44 #ifndef DOLLARS_IN_IDENTIFIERS
45 # define DOLLARS_IN_IDENTIFIERS true
46 #endif
47
48 #ifndef TARGET_SYSTEM_ROOT
49 # define TARGET_SYSTEM_ROOT NULL
50 #endif
51
52 #ifndef TARGET_OPTF
53 #define TARGET_OPTF(ARG)
54 #endif
55
56 /* CPP's options. */
57 cpp_options *cpp_opts;
58
59 /* Input filename. */
60 static const char *this_input_filename;
61
62 /* Filename and stream for preprocessed output. */
63 static const char *out_fname;
64 static FILE *out_stream;
65
66 /* Append dependencies to deps_file. */
67 static bool deps_append;
68
69 /* If dependency switches (-MF etc.) have been given. */
70 static bool deps_seen;
71
72 /* If -v seen. */
73 static bool verbose;
74
75 /* Dependency output file. */
76 static const char *deps_file;
77
78 /* The prefix given by -iprefix, if any. */
79 static const char *iprefix;
80
81 /* The multilib directory given by -imultilib, if any. */
82 static const char *imultilib;
83
84 /* The system root, if any. Overridden by -isysroot. */
85 static const char *sysroot = TARGET_SYSTEM_ROOT;
86
87 /* Zero disables all standard directories for headers. */
88 static bool std_inc = true;
89
90 /* Zero disables the C++-specific standard directories for headers. */
91 static bool std_cxx_inc = true;
92
93 /* If the quote chain has been split by -I-. */
94 static bool quote_chain_split;
95
96 /* Number of deferred options. */
97 static size_t deferred_count;
98
99 /* Number of deferred options scanned for -include. */
100 static size_t include_cursor;
101
102 /* Dump files/flags to use during parsing. */
103 static FILE *original_dump_file = NULL;
104 static dump_flags_t original_dump_flags;
105
106 /* Whether any standard preincluded header has been preincluded. */
107 static bool done_preinclude;
108
109 static void handle_OPT_d (const char *);
110 static void set_std_cxx98 (int);
111 static void set_std_cxx11 (int);
112 static void set_std_cxx14 (int);
113 static void set_std_cxx17 (int);
114 static void set_std_cxx2a (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);
126
127 #ifndef STDC_0_IN_SYSTEM_HEADERS
128 #define STDC_0_IN_SYSTEM_HEADERS 0
129 #endif
130
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
135 {
136 enum opt_code code;
137 const char *arg;
138 } *deferred_opts;
139
140
141 extern const unsigned int
142 c_family_lang_mask = (CL_C | CL_CXX | CL_ObjC | CL_ObjCXX);
143
144 /* Defer option CODE with argument ARG. */
145 static void
146 defer_opt (enum opt_code code, const char *arg)
147 {
148 deferred_opts[deferred_count].code = code;
149 deferred_opts[deferred_count].arg = arg;
150 deferred_count++;
151 }
152
153 /* Return language mask for option parsing. */
154 unsigned int
155 c_common_option_lang_mask (void)
156 {
157 static const unsigned int lang_flags[] = {CL_C, CL_ObjC, CL_CXX, CL_ObjCXX};
158
159 return lang_flags[c_language];
160 }
161
162 /* Diagnostic finalizer for C/C++/Objective-C/Objective-C++. */
163 static void
164 c_diagnostic_finalizer (diagnostic_context *context,
165 diagnostic_info *diagnostic)
166 {
167 diagnostic_show_locus (context, diagnostic->richloc, diagnostic->kind);
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);
173 }
174
175 /* Common default settings for diagnostics. */
176 void
177 c_common_diagnostics_set_defaults (diagnostic_context *context)
178 {
179 diagnostic_finalizer (context) = c_diagnostic_finalizer;
180 context->opt_permissive = OPT_fpermissive;
181 }
182
183 /* Whether options from all C-family languages should be accepted
184 quietly. */
185 static bool accept_all_c_family_options = false;
186
187 /* Return whether to complain about a wrong-language option. */
188 bool
189 c_common_complain_wrong_lang_p (const struct cl_option *option)
190 {
191 if (accept_all_c_family_options
192 && (option->flags & c_family_lang_mask))
193 return false;
194
195 return true;
196 }
197
198 /* Initialize options structure OPTS. */
199 void
200 c_common_init_options_struct (struct gcc_options *opts)
201 {
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;
206
207 /* By default, C99-like requirements for complex multiply and divide. */
208 opts->x_flag_complex_method = 2;
209 }
210
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)
215 {
216 unsigned int i;
217 struct cpp_callbacks *cb;
218
219 g_string_concat_db
220 = new (ggc_alloc <string_concat_db> ()) string_concat_db ();
221
222 parse_in = cpp_create_reader (c_dialect_cxx () ? CLK_GNUCXX: CLK_GNUC89,
223 ident_hash, line_table);
224 cb = cpp_get_callbacks (parse_in);
225 cb->error = c_cpp_error;
226
227 cpp_opts = cpp_get_options (parse_in);
228 cpp_opts->dollars_in_ident = DOLLARS_IN_IDENTIFIERS;
229 cpp_opts->objc = c_dialect_objc ();
230
231 /* Reset to avoid warnings on internal definitions. We set it just
232 before passing on command-line options to cpplib. */
233 cpp_opts->warn_dollars = 0;
234
235 deferred_opts = XNEWVEC (struct deferred_opt, decoded_options_count);
236
237 if (c_language == clk_c)
238 {
239 /* The default for C is gnu11. */
240 set_std_c11 (false /* ISO */);
241
242 /* If preprocessing assembly language, accept any of the C-family
243 front end options since the driver may pass them through. */
244 for (i = 1; i < decoded_options_count; i++)
245 if (decoded_options[i].opt_index == OPT_lang_asm)
246 {
247 accept_all_c_family_options = true;
248 break;
249 }
250 }
251
252 /* Set C++ standard to C++14 if not specified on the command line. */
253 if (c_dialect_cxx ())
254 set_std_cxx14 (/*ISO*/false);
255
256 global_dc->colorize_source_p = true;
257 }
258
259 /* Handle switch SCODE with argument ARG. VALUE is true, unless no-
260 form of an -f or -W option was given. Returns false if the switch was
261 invalid, true if valid. Use HANDLERS in recursive handle_option calls. */
262 bool
263 c_common_handle_option (size_t scode, const char *arg, int value,
264 int kind, location_t loc,
265 const struct cl_option_handlers *handlers)
266 {
267 const struct cl_option *option = &cl_options[scode];
268 enum opt_code code = (enum opt_code) scode;
269 bool result = true;
270
271 /* Prevent resetting the language standard to a C dialect when the driver
272 has already determined that we're looking at assembler input. */
273 bool preprocessing_asm_p = (cpp_get_options (parse_in)->lang == CLK_ASM);
274
275 switch (code)
276 {
277 default:
278 if (cl_options[code].flags & c_family_lang_mask)
279 {
280 if ((option->flags & CL_TARGET)
281 && ! targetcm.handle_c_option (scode, arg, value))
282 result = false;
283 break;
284 }
285 result = false;
286 break;
287
288 case OPT__output_pch_:
289 pch_file = arg;
290 break;
291
292 case OPT_A:
293 defer_opt (code, arg);
294 break;
295
296 case OPT_C:
297 cpp_opts->discard_comments = 0;
298 break;
299
300 case OPT_CC:
301 cpp_opts->discard_comments = 0;
302 cpp_opts->discard_comments_in_macro_exp = 0;
303 break;
304
305 case OPT_D:
306 defer_opt (code, arg);
307 break;
308
309 case OPT_H:
310 cpp_opts->print_include_names = 1;
311 break;
312
313 case OPT_F:
314 TARGET_OPTF (xstrdup (arg));
315 break;
316
317 case OPT_I:
318 if (strcmp (arg, "-"))
319 add_path (xstrdup (arg), BRACKET, 0, true);
320 else
321 {
322 if (quote_chain_split)
323 error ("-I- specified twice");
324 quote_chain_split = true;
325 split_quote_chain ();
326 inform (input_location, "obsolete option -I- used, please use -iquote instead");
327 }
328 break;
329
330 case OPT_M:
331 case OPT_MM:
332 /* When doing dependencies with -M or -MM, suppress normal
333 preprocessed output, but still do -dM etc. as software
334 depends on this. Preprocessed output does occur if -MD, -MMD
335 or environment var dependency generation is used. */
336 cpp_opts->deps.style = (code == OPT_M ? DEPS_SYSTEM: DEPS_USER);
337 flag_no_output = 1;
338 break;
339
340 case OPT_MD:
341 case OPT_MMD:
342 cpp_opts->deps.style = (code == OPT_MD ? DEPS_SYSTEM: DEPS_USER);
343 cpp_opts->deps.need_preprocessor_output = true;
344 deps_file = arg;
345 break;
346
347 case OPT_MF:
348 deps_seen = true;
349 deps_file = arg;
350 break;
351
352 case OPT_MG:
353 deps_seen = true;
354 cpp_opts->deps.missing_files = true;
355 break;
356
357 case OPT_MP:
358 deps_seen = true;
359 cpp_opts->deps.phony_targets = true;
360 break;
361
362 case OPT_MQ:
363 case OPT_MT:
364 deps_seen = true;
365 defer_opt (code, arg);
366 break;
367
368 case OPT_P:
369 flag_no_line_commands = 1;
370 break;
371
372 case OPT_U:
373 defer_opt (code, arg);
374 break;
375
376 case OPT_Wall:
377 /* ??? Don't add new options here. Use LangEnabledBy in c.opt. */
378
379 cpp_opts->warn_num_sign_change = value;
380 break;
381
382 case OPT_Walloca_larger_than_:
383 if (!value)
384 inform (loc, "-Walloca-larger-than=0 is meaningless");
385 break;
386
387 case OPT_Wvla_larger_than_:
388 if (!value)
389 inform (loc, "-Wvla-larger-than=0 is meaningless");
390 break;
391
392 case OPT_Wunknown_pragmas:
393 /* Set to greater than 1, so that even unknown pragmas in
394 system headers will be warned about. */
395 /* ??? There is no way to handle this automatically for now. */
396 warn_unknown_pragmas = value * 2;
397 break;
398
399 case OPT_ansi:
400 if (!c_dialect_cxx ())
401 set_std_c89 (false, true);
402 else
403 set_std_cxx98 (true);
404 break;
405
406 case OPT_d:
407 handle_OPT_d (arg);
408 break;
409
410 case OPT_Wabi_:
411 warn_abi = true;
412 if (value == 1)
413 {
414 warning (0, "%<-Wabi=1%> is not supported, using =2");
415 value = 2;
416 }
417 warn_abi_version = value;
418 if (flag_abi_compat_version == -1)
419 flag_abi_compat_version = value;
420 break;
421
422 case OPT_fcanonical_system_headers:
423 cpp_opts->canonical_system_headers = value;
424 break;
425
426 case OPT_fcond_mismatch:
427 if (!c_dialect_cxx ())
428 {
429 flag_cond_mismatch = value;
430 break;
431 }
432 warning (0, "switch %qs is no longer supported", option->opt_text);
433 break;
434
435 case OPT_fbuiltin_:
436 if (value)
437 result = false;
438 else
439 disable_builtin_function (arg);
440 break;
441
442 case OPT_fdirectives_only:
443 cpp_opts->directives_only = value;
444 break;
445
446 case OPT_fdollars_in_identifiers:
447 cpp_opts->dollars_in_ident = value;
448 break;
449
450 case OPT_ffreestanding:
451 value = !value;
452 /* Fall through. */
453 case OPT_fhosted:
454 flag_hosted = value;
455 flag_no_builtin = !value;
456 break;
457
458 case OPT_fconstant_string_class_:
459 constant_string_class_name = arg;
460 break;
461
462 case OPT_fextended_identifiers:
463 cpp_opts->extended_identifiers = value;
464 break;
465
466 case OPT_foperator_names:
467 cpp_opts->operator_names = value;
468 break;
469
470 case OPT_fpch_deps:
471 cpp_opts->restore_pch_deps = value;
472 break;
473
474 case OPT_fpch_preprocess:
475 flag_pch_preprocess = value;
476 break;
477
478 case OPT_fpermissive:
479 flag_permissive = value;
480 global_dc->permissive = value;
481 break;
482
483 case OPT_fpreprocessed:
484 cpp_opts->preprocessed = value;
485 break;
486
487 case OPT_fdebug_cpp:
488 cpp_opts->debug = 1;
489 break;
490
491 case OPT_ftrack_macro_expansion:
492 if (value)
493 value = 2;
494 /* Fall Through. */
495
496 case OPT_ftrack_macro_expansion_:
497 if (arg && *arg != '\0')
498 cpp_opts->track_macro_expansion = value;
499 else
500 cpp_opts->track_macro_expansion = 2;
501 break;
502
503 case OPT_frepo:
504 flag_use_repository = value;
505 if (value)
506 flag_implicit_templates = 0;
507 break;
508
509 case OPT_ftabstop_:
510 /* It is documented that we silently ignore silly values. */
511 if (value >= 1 && value <= 100)
512 cpp_opts->tabstop = value;
513 break;
514
515 case OPT_fexec_charset_:
516 cpp_opts->narrow_charset = arg;
517 break;
518
519 case OPT_fwide_exec_charset_:
520 cpp_opts->wide_charset = arg;
521 break;
522
523 case OPT_finput_charset_:
524 cpp_opts->input_charset = arg;
525 break;
526
527 case OPT_ftemplate_depth_:
528 max_tinst_depth = value;
529 break;
530
531 case OPT_fvisibility_inlines_hidden:
532 visibility_options.inlines_hidden = value;
533 break;
534
535 case OPT_femit_struct_debug_baseonly:
536 set_struct_debug_option (&global_options, loc, "base");
537 break;
538
539 case OPT_femit_struct_debug_reduced:
540 set_struct_debug_option (&global_options, loc,
541 "dir:ord:sys,dir:gen:any,ind:base");
542 break;
543
544 case OPT_femit_struct_debug_detailed_:
545 set_struct_debug_option (&global_options, loc, arg);
546 break;
547
548 case OPT_fext_numeric_literals:
549 cpp_opts->ext_numeric_literals = value;
550 break;
551
552 case OPT_idirafter:
553 add_path (xstrdup (arg), AFTER, 0, true);
554 break;
555
556 case OPT_imacros:
557 case OPT_include:
558 defer_opt (code, arg);
559 break;
560
561 case OPT_imultilib:
562 imultilib = arg;
563 break;
564
565 case OPT_iprefix:
566 iprefix = arg;
567 break;
568
569 case OPT_iquote:
570 add_path (xstrdup (arg), QUOTE, 0, true);
571 break;
572
573 case OPT_isysroot:
574 sysroot = arg;
575 break;
576
577 case OPT_isystem:
578 add_path (xstrdup (arg), SYSTEM, 0, true);
579 break;
580
581 case OPT_iwithprefix:
582 add_prefixed_path (arg, SYSTEM);
583 break;
584
585 case OPT_iwithprefixbefore:
586 add_prefixed_path (arg, BRACKET);
587 break;
588
589 case OPT_lang_asm:
590 cpp_set_lang (parse_in, CLK_ASM);
591 cpp_opts->dollars_in_ident = false;
592 break;
593
594 case OPT_nostdinc:
595 std_inc = false;
596 break;
597
598 case OPT_nostdinc__:
599 std_cxx_inc = false;
600 break;
601
602 case OPT_o:
603 if (!out_fname)
604 out_fname = arg;
605 else
606 error ("output filename specified twice");
607 break;
608
609 case OPT_print_objc_runtime_info:
610 print_struct_values = 1;
611 break;
612
613 case OPT_remap:
614 cpp_opts->remap = 1;
615 break;
616
617 case OPT_std_c__98:
618 case OPT_std_gnu__98:
619 if (!preprocessing_asm_p)
620 set_std_cxx98 (code == OPT_std_c__98 /* ISO */);
621 break;
622
623 case OPT_std_c__11:
624 case OPT_std_gnu__11:
625 if (!preprocessing_asm_p)
626 set_std_cxx11 (code == OPT_std_c__11 /* ISO */);
627 break;
628
629 case OPT_std_c__14:
630 case OPT_std_gnu__14:
631 if (!preprocessing_asm_p)
632 set_std_cxx14 (code == OPT_std_c__14 /* ISO */);
633 break;
634
635 case OPT_std_c__17:
636 case OPT_std_gnu__17:
637 if (!preprocessing_asm_p)
638 set_std_cxx17 (code == OPT_std_c__17 /* ISO */);
639 break;
640
641 case OPT_std_c__2a:
642 case OPT_std_gnu__2a:
643 if (!preprocessing_asm_p)
644 set_std_cxx2a (code == OPT_std_c__2a /* ISO */);
645 break;
646
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;
652
653 case OPT_std_gnu90:
654 if (!preprocessing_asm_p)
655 set_std_c89 (false /* c94 */, false /* ISO */);
656 break;
657
658 case OPT_std_c99:
659 if (!preprocessing_asm_p)
660 set_std_c99 (true /* ISO */);
661 break;
662
663 case OPT_std_gnu99:
664 if (!preprocessing_asm_p)
665 set_std_c99 (false /* ISO */);
666 break;
667
668 case OPT_std_c11:
669 if (!preprocessing_asm_p)
670 set_std_c11 (true /* ISO */);
671 break;
672
673 case OPT_std_gnu11:
674 if (!preprocessing_asm_p)
675 set_std_c11 (false /* ISO */);
676 break;
677
678 case OPT_trigraphs:
679 cpp_opts->trigraphs = 1;
680 break;
681
682 case OPT_traditional_cpp:
683 cpp_opts->traditional = 1;
684 break;
685
686 case OPT_v:
687 verbose = true;
688 break;
689 }
690
691 switch (c_language)
692 {
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;
699
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;
706
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;
713
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;
720
721 default:
722 gcc_unreachable ();
723 }
724
725 cpp_handle_option_auto (&global_options, scode, cpp_opts);
726 return result;
727 }
728
729 /* Default implementation of TARGET_HANDLE_C_OPTION. */
730
731 bool
732 default_handle_c_option (size_t code ATTRIBUTE_UNUSED,
733 const char *arg ATTRIBUTE_UNUSED,
734 int value ATTRIBUTE_UNUSED)
735 {
736 return false;
737 }
738
739 /* Post-switch processing. */
740 bool
741 c_common_post_options (const char **pfilename)
742 {
743 struct cpp_callbacks *cb;
744
745 /* Canonicalize the input and output filenames. */
746 if (in_fnames == NULL)
747 {
748 in_fnames = XNEWVEC (const char *, 1);
749 in_fnames[0] = "";
750 }
751 else if (strcmp (in_fnames[0], "-") == 0)
752 {
753 if (pch_file)
754 error ("cannot use %<-%> as input filename for a precompiled header");
755
756 in_fnames[0] = "";
757 }
758
759 if (out_fname == NULL || !strcmp (out_fname, "-"))
760 out_fname = "";
761
762 if (cpp_opts->deps.style == DEPS_NONE)
763 check_deps_environment_vars ();
764
765 handle_deferred_opts ();
766
767 sanitize_cpp_opts ();
768
769 register_include_chains (parse_in, sysroot, iprefix, imultilib,
770 std_inc, std_cxx_inc && c_dialect_cxx (), verbose);
771
772 #ifdef C_COMMON_OVERRIDE_OPTIONS
773 /* Some machines may reject certain combinations of C
774 language-specific options. */
775 C_COMMON_OVERRIDE_OPTIONS;
776 #endif
777
778 /* Excess precision other than "fast" requires front-end
779 support. */
780 if (c_dialect_cxx ())
781 {
782 if (flag_excess_precision_cmdline == EXCESS_PRECISION_STANDARD)
783 sorry ("-fexcess-precision=standard for C++");
784 flag_excess_precision_cmdline = EXCESS_PRECISION_FAST;
785 }
786 else if (flag_excess_precision_cmdline == EXCESS_PRECISION_DEFAULT)
787 flag_excess_precision_cmdline = (flag_iso
788 ? EXCESS_PRECISION_STANDARD
789 : EXCESS_PRECISION_FAST);
790
791 /* ISO C restricts floating-point expression contraction to within
792 source-language expressions (-ffp-contract=on, currently an alias
793 for -ffp-contract=off). */
794 if (flag_iso
795 && !c_dialect_cxx ()
796 && (global_options_set.x_flag_fp_contract_mode
797 == (enum fp_contract_mode) 0)
798 && flag_unsafe_math_optimizations == 0)
799 flag_fp_contract_mode = FP_CONTRACT_OFF;
800
801 /* If we are compiling C, and we are outside of a standards mode,
802 we can permit the new values from ISO/IEC TS 18661-3 for
803 FLT_EVAL_METHOD. Otherwise, we must restrict the possible values to
804 the set specified in ISO C99/C11. */
805 if (!flag_iso
806 && !c_dialect_cxx ()
807 && (global_options_set.x_flag_permitted_flt_eval_methods
808 == PERMITTED_FLT_EVAL_METHODS_DEFAULT))
809 flag_permitted_flt_eval_methods = PERMITTED_FLT_EVAL_METHODS_TS_18661;
810 else
811 flag_permitted_flt_eval_methods = PERMITTED_FLT_EVAL_METHODS_C11;
812
813 /* By default we use C99 inline semantics in GNU99 or C99 mode. C99
814 inline semantics are not supported in GNU89 or C89 mode. */
815 if (flag_gnu89_inline == -1)
816 flag_gnu89_inline = !flag_isoc99;
817 else if (!flag_gnu89_inline && !flag_isoc99)
818 error ("-fno-gnu89-inline is only supported in GNU99 or C99 mode");
819
820 /* Default to ObjC sjlj exception handling if NeXT runtime. */
821 if (flag_objc_sjlj_exceptions < 0)
822 flag_objc_sjlj_exceptions = flag_next_runtime;
823 if (flag_objc_exceptions && !flag_objc_sjlj_exceptions)
824 flag_exceptions = 1;
825
826 /* If -ffreestanding, -fno-hosted or -fno-builtin then disable
827 pattern recognition. */
828 if (!global_options_set.x_flag_tree_loop_distribute_patterns
829 && flag_no_builtin)
830 flag_tree_loop_distribute_patterns = 0;
831
832 /* -Woverlength-strings is off by default, but is enabled by -Wpedantic.
833 It is never enabled in C++, as the minimum limit is not normative
834 in that standard. */
835 if (c_dialect_cxx ())
836 warn_overlength_strings = 0;
837
838 /* Wmain is enabled by default in C++ but not in C. */
839 /* Wmain is disabled by default for -ffreestanding (!flag_hosted),
840 even if -Wall or -Wpedantic was given (warn_main will be 2 if set
841 by -Wall, 1 if set by -Wmain). */
842 if (warn_main == -1)
843 warn_main = (c_dialect_cxx () && flag_hosted) ? 1 : 0;
844 else if (warn_main == 2)
845 warn_main = flag_hosted ? 1 : 0;
846
847 /* In C, -Wall and -Wc++-compat enable -Wenum-compare; if it has not
848 yet been set, it is disabled by default. In C++, it is enabled
849 by default. */
850 if (warn_enum_compare == -1)
851 warn_enum_compare = c_dialect_cxx () ? 1 : 0;
852
853 /* -Wpacked-bitfield-compat is on by default for the C languages. The
854 warning is issued in stor-layout.c which is not part of the front-end so
855 we need to selectively turn it on here. */
856 if (warn_packed_bitfield_compat == -1)
857 warn_packed_bitfield_compat = 1;
858
859 /* Special format checking options don't work without -Wformat; warn if
860 they are used. */
861 if (!warn_format)
862 {
863 warning (OPT_Wformat_y2k,
864 "-Wformat-y2k ignored without -Wformat");
865 warning (OPT_Wformat_extra_args,
866 "-Wformat-extra-args ignored without -Wformat");
867 warning (OPT_Wformat_zero_length,
868 "-Wformat-zero-length ignored without -Wformat");
869 warning (OPT_Wformat_nonliteral,
870 "-Wformat-nonliteral ignored without -Wformat");
871 warning (OPT_Wformat_contains_nul,
872 "-Wformat-contains-nul ignored without -Wformat");
873 warning (OPT_Wformat_security,
874 "-Wformat-security ignored without -Wformat");
875 }
876
877 /* -Wimplicit-function-declaration is enabled by default for C99. */
878 if (warn_implicit_function_declaration == -1)
879 warn_implicit_function_declaration = flag_isoc99;
880
881 /* -Wimplicit-int is enabled by default for C99. */
882 if (warn_implicit_int == -1)
883 warn_implicit_int = flag_isoc99;
884
885 /* -Wshift-overflow is enabled by default in C99 and C++11 modes. */
886 if (warn_shift_overflow == -1)
887 warn_shift_overflow = cxx_dialect >= cxx11 || flag_isoc99;
888
889 /* -Wshift-negative-value is enabled by -Wextra in C99 and C++11 modes. */
890 if (warn_shift_negative_value == -1)
891 warn_shift_negative_value = (extra_warnings
892 && (cxx_dialect >= cxx11 || flag_isoc99));
893
894 /* -Wregister is enabled by default in C++17. */
895 if (!global_options_set.x_warn_register)
896 warn_register = cxx_dialect >= cxx17;
897
898 /* Declone C++ 'structors if -Os. */
899 if (flag_declone_ctor_dtor == -1)
900 flag_declone_ctor_dtor = optimize_size;
901
902 if (warn_abi_version == -1)
903 {
904 if (flag_abi_compat_version != -1)
905 warn_abi_version = flag_abi_compat_version;
906 else
907 warn_abi_version = 0;
908 }
909
910 if (flag_abi_compat_version == 1)
911 {
912 warning (0, "%<-fabi-compat-version=1%> is not supported, using =2");
913 flag_abi_compat_version = 2;
914 }
915 else if (flag_abi_compat_version == -1)
916 {
917 /* Generate compatibility aliases for ABI v11 (7.1) by default. */
918 flag_abi_compat_version
919 = (flag_abi_version == 0 ? 11 : 0);
920 }
921
922 /* Change flag_abi_version to be the actual current ABI level for the
923 benefit of c_cpp_builtins. */
924 if (flag_abi_version == 0)
925 flag_abi_version = 12;
926
927 /* By default, enable the new inheriting constructor semantics along with ABI
928 11. New and old should coexist fine, but it is a change in what
929 artificial symbols are generated. */
930 if (!global_options_set.x_flag_new_inheriting_ctors)
931 flag_new_inheriting_ctors = abi_version_at_least (11);
932
933 /* For GCC 7, only enable DR150 resolution by default if -std=c++17. */
934 if (!global_options_set.x_flag_new_ttp)
935 flag_new_ttp = (cxx_dialect >= cxx17);
936
937 if (cxx_dialect >= cxx11)
938 {
939 /* If we're allowing C++0x constructs, don't warn about C++98
940 identifiers which are keywords in C++0x. */
941 warn_cxx11_compat = 0;
942 cpp_opts->cpp_warn_cxx11_compat = 0;
943
944 if (warn_narrowing == -1)
945 warn_narrowing = 1;
946
947 /* Unless -f{,no-}ext-numeric-literals has been used explicitly,
948 for -std=c++{11,14,17,2a} default to -fno-ext-numeric-literals. */
949 if (flag_iso && !global_options_set.x_flag_ext_numeric_literals)
950 cpp_opts->ext_numeric_literals = 0;
951 }
952 else if (warn_narrowing == -1)
953 warn_narrowing = 0;
954
955 /* C++17 has stricter evaluation order requirements; let's use some of them
956 for earlier C++ as well, so chaining works as expected. */
957 if (c_dialect_cxx ()
958 && flag_strong_eval_order == -1)
959 flag_strong_eval_order = (cxx_dialect >= cxx17 ? 2 : 1);
960
961 /* Global sized deallocation is new in C++14. */
962 if (flag_sized_deallocation == -1)
963 flag_sized_deallocation = (cxx_dialect >= cxx14);
964
965 if (flag_extern_tls_init)
966 {
967 if (!TARGET_SUPPORTS_ALIASES || !SUPPORTS_WEAK)
968 {
969 /* Lazy TLS initialization for a variable in another TU requires
970 alias and weak reference support. */
971 if (flag_extern_tls_init > 0)
972 sorry ("external TLS initialization functions not supported "
973 "on this target");
974
975 flag_extern_tls_init = 0;
976 }
977 else
978 flag_extern_tls_init = 1;
979 }
980
981 if (num_in_fnames > 1)
982 error ("too many filenames given. Type %s --help for usage",
983 progname);
984
985 if (flag_preprocess_only)
986 {
987 /* Open the output now. We must do so even if flag_no_output is
988 on, because there may be other output than from the actual
989 preprocessing (e.g. from -dM). */
990 if (out_fname[0] == '\0')
991 out_stream = stdout;
992 else
993 out_stream = fopen (out_fname, "w");
994
995 if (out_stream == NULL)
996 {
997 fatal_error (input_location, "opening output file %s: %m", out_fname);
998 return false;
999 }
1000
1001 init_pp_output (out_stream);
1002 }
1003 else
1004 {
1005 init_c_lex ();
1006
1007 /* When writing a PCH file, avoid reading some other PCH file,
1008 because the default address space slot then can't be used
1009 for the output PCH file. */
1010 if (pch_file)
1011 {
1012 c_common_no_more_pch ();
1013 /* Only -g0 and -gdwarf* are supported with PCH, for other
1014 debug formats we warn here and refuse to load any PCH files. */
1015 if (write_symbols != NO_DEBUG && write_symbols != DWARF2_DEBUG)
1016 warning (OPT_Wdeprecated,
1017 "the \"%s\" debug format cannot be used with "
1018 "pre-compiled headers", debug_type_names[write_symbols]);
1019 }
1020 else if (write_symbols != NO_DEBUG && write_symbols != DWARF2_DEBUG)
1021 c_common_no_more_pch ();
1022
1023 /* Yuk. WTF is this? I do know ObjC relies on it somewhere. */
1024 input_location = UNKNOWN_LOCATION;
1025 }
1026
1027 cb = cpp_get_callbacks (parse_in);
1028 cb->file_change = cb_file_change;
1029 cb->dir_change = cb_dir_change;
1030 cpp_post_options (parse_in);
1031 init_global_opts_from_cpp (&global_options, cpp_get_options (parse_in));
1032
1033 input_location = UNKNOWN_LOCATION;
1034
1035 *pfilename = this_input_filename
1036 = cpp_read_main_file (parse_in, in_fnames[0]);
1037 /* Don't do any compilation or preprocessing if there is no input file. */
1038 if (this_input_filename == NULL)
1039 {
1040 errorcount++;
1041 return false;
1042 }
1043
1044 if (flag_working_directory
1045 && flag_preprocess_only && !flag_no_line_commands)
1046 pp_dir_change (parse_in, get_src_pwd ());
1047
1048 /* Disable LTO output when outputting a precompiled header. */
1049 if (pch_file && flag_lto)
1050 {
1051 flag_lto = 0;
1052 flag_generate_lto = 0;
1053 }
1054
1055 return flag_preprocess_only;
1056 }
1057
1058 /* Front end initialization common to C, ObjC and C++. */
1059 bool
1060 c_common_init (void)
1061 {
1062 /* Set up preprocessor arithmetic. Must be done after call to
1063 c_common_nodes_and_builtins for type nodes to be good. */
1064 cpp_opts->precision = TYPE_PRECISION (intmax_type_node);
1065 cpp_opts->char_precision = TYPE_PRECISION (char_type_node);
1066 cpp_opts->int_precision = TYPE_PRECISION (integer_type_node);
1067 cpp_opts->wchar_precision = TYPE_PRECISION (wchar_type_node);
1068 cpp_opts->unsigned_wchar = TYPE_UNSIGNED (wchar_type_node);
1069 cpp_opts->bytes_big_endian = BYTES_BIG_ENDIAN;
1070
1071 /* This can't happen until after wchar_precision and bytes_big_endian
1072 are known. */
1073 cpp_init_iconv (parse_in);
1074
1075 if (version_flag)
1076 {
1077 int i;
1078 fputs ("Compiler executable checksum: ", stderr);
1079 for (i = 0; i < 16; i++)
1080 fprintf (stderr, "%02x", executable_checksum[i]);
1081 putc ('\n', stderr);
1082 }
1083
1084 /* Has to wait until now so that cpplib has its hash table. */
1085 init_pragma ();
1086
1087 if (flag_preprocess_only)
1088 {
1089 c_finish_options ();
1090 preprocess_file (parse_in);
1091 return false;
1092 }
1093
1094 return true;
1095 }
1096
1097 /* Initialize the integrated preprocessor after debug output has been
1098 initialized; loop over each input file. */
1099 void
1100 c_common_parse_file (void)
1101 {
1102 unsigned int i;
1103
1104 i = 0;
1105 for (;;)
1106 {
1107 c_finish_options ();
1108 /* Open the dump file to use for the original dump output
1109 here, to be used during parsing for the current file. */
1110 original_dump_file = dump_begin (TDI_original, &original_dump_flags);
1111 pch_init ();
1112 push_file_scope ();
1113 c_parse_file ();
1114 pop_file_scope ();
1115 /* And end the main input file, if the debug writer wants it */
1116 if (debug_hooks->start_end_main_source_file)
1117 (*debug_hooks->end_source_file) (0);
1118 if (++i >= num_in_fnames)
1119 break;
1120 cpp_undef_all (parse_in);
1121 cpp_clear_file_cache (parse_in);
1122 this_input_filename
1123 = cpp_read_main_file (parse_in, in_fnames[i]);
1124 if (original_dump_file)
1125 {
1126 dump_end (TDI_original, original_dump_file);
1127 original_dump_file = NULL;
1128 }
1129 /* If an input file is missing, abandon further compilation.
1130 cpplib has issued a diagnostic. */
1131 if (!this_input_filename)
1132 break;
1133 }
1134
1135 c_parse_final_cleanups ();
1136 }
1137
1138 /* Returns the appropriate dump file for PHASE to dump with FLAGS. */
1139
1140 FILE *
1141 get_dump_info (int phase, dump_flags_t *flags)
1142 {
1143 gcc_assert (phase == TDI_original);
1144
1145 *flags = original_dump_flags;
1146 return original_dump_file;
1147 }
1148
1149 /* Common finish hook for the C, ObjC and C++ front ends. */
1150 void
1151 c_common_finish (void)
1152 {
1153 FILE *deps_stream = NULL;
1154
1155 /* Note that we write the dependencies even if there are errors. This is
1156 useful for handling outdated generated headers that now trigger errors
1157 (for example, with #error) which would be resolved by re-generating
1158 them. In a sense, this complements -MG. */
1159 if (cpp_opts->deps.style != DEPS_NONE)
1160 {
1161 /* If -M or -MM was seen without -MF, default output to the
1162 output stream. */
1163 if (!deps_file)
1164 deps_stream = out_stream;
1165 else if (deps_file[0] == '-' && deps_file[1] == '\0')
1166 deps_stream = stdout;
1167 else
1168 {
1169 deps_stream = fopen (deps_file, deps_append ? "a": "w");
1170 if (!deps_stream)
1171 fatal_error (input_location, "opening dependency file %s: %m",
1172 deps_file);
1173 }
1174 }
1175
1176 /* For performance, avoid tearing down cpplib's internal structures
1177 with cpp_destroy (). */
1178 cpp_finish (parse_in, deps_stream);
1179
1180 if (deps_stream && deps_stream != out_stream && deps_stream != stdout
1181 && (ferror (deps_stream) || fclose (deps_stream)))
1182 fatal_error (input_location, "closing dependency file %s: %m", deps_file);
1183
1184 if (out_stream && (ferror (out_stream) || fclose (out_stream)))
1185 fatal_error (input_location, "when writing output to %s: %m", out_fname);
1186 }
1187
1188 /* Either of two environment variables can specify output of
1189 dependencies. Their value is either "OUTPUT_FILE" or "OUTPUT_FILE
1190 DEPS_TARGET", where OUTPUT_FILE is the file to write deps info to
1191 and DEPS_TARGET is the target to mention in the deps. They also
1192 result in dependency information being appended to the output file
1193 rather than overwriting it, and like Sun's compiler
1194 SUNPRO_DEPENDENCIES suppresses the dependency on the main file. */
1195 static void
1196 check_deps_environment_vars (void)
1197 {
1198 char *spec;
1199
1200 spec = getenv ("DEPENDENCIES_OUTPUT");
1201 if (spec)
1202 cpp_opts->deps.style = DEPS_USER;
1203 else
1204 {
1205 spec = getenv ("SUNPRO_DEPENDENCIES");
1206 if (spec)
1207 {
1208 cpp_opts->deps.style = DEPS_SYSTEM;
1209 cpp_opts->deps.ignore_main_file = true;
1210 }
1211 }
1212
1213 if (spec)
1214 {
1215 /* Find the space before the DEPS_TARGET, if there is one. */
1216 char *s = strchr (spec, ' ');
1217 if (s)
1218 {
1219 /* Let the caller perform MAKE quoting. */
1220 defer_opt (OPT_MT, s + 1);
1221 *s = '\0';
1222 }
1223
1224 /* Command line -MF overrides environment variables and default. */
1225 if (!deps_file)
1226 deps_file = spec;
1227
1228 deps_append = 1;
1229 deps_seen = true;
1230 }
1231 }
1232
1233 /* Handle deferred command line switches. */
1234 static void
1235 handle_deferred_opts (void)
1236 {
1237 size_t i;
1238 struct deps *deps;
1239
1240 /* Avoid allocating the deps buffer if we don't need it.
1241 (This flag may be true without there having been -MT or -MQ
1242 options, but we'll still need the deps buffer.) */
1243 if (!deps_seen)
1244 return;
1245
1246 deps = cpp_get_deps (parse_in);
1247
1248 for (i = 0; i < deferred_count; i++)
1249 {
1250 struct deferred_opt *opt = &deferred_opts[i];
1251
1252 if (opt->code == OPT_MT || opt->code == OPT_MQ)
1253 deps_add_target (deps, opt->arg, opt->code == OPT_MQ);
1254 }
1255 }
1256
1257 /* These settings are appropriate for GCC, but not necessarily so for
1258 cpplib as a library. */
1259 static void
1260 sanitize_cpp_opts (void)
1261 {
1262 /* If we don't know what style of dependencies to output, complain
1263 if any other dependency switches have been given. */
1264 if (deps_seen && cpp_opts->deps.style == DEPS_NONE)
1265 error ("to generate dependencies you must specify either -M or -MM");
1266
1267 /* -dM and dependencies suppress normal output; do it here so that
1268 the last -d[MDN] switch overrides earlier ones. */
1269 if (flag_dump_macros == 'M')
1270 flag_no_output = 1;
1271
1272 /* By default, -fdirectives-only implies -dD. This allows subsequent phases
1273 to perform proper macro expansion. */
1274 if (cpp_opts->directives_only && !cpp_opts->preprocessed && !flag_dump_macros)
1275 flag_dump_macros = 'D';
1276
1277 /* Disable -dD, -dN and -dI if normal output is suppressed. Allow
1278 -dM since at least glibc relies on -M -dM to work. */
1279 /* Also, flag_no_output implies flag_no_line_commands, always. */
1280 if (flag_no_output)
1281 {
1282 if (flag_dump_macros != 'M')
1283 flag_dump_macros = 0;
1284 flag_dump_includes = 0;
1285 flag_no_line_commands = 1;
1286 }
1287 else if (cpp_opts->deps.missing_files)
1288 error ("-MG may only be used with -M or -MM");
1289
1290 cpp_opts->unsigned_char = !flag_signed_char;
1291 cpp_opts->stdc_0_in_system_headers = STDC_0_IN_SYSTEM_HEADERS;
1292
1293 /* Wlong-long is disabled by default. It is enabled by:
1294 [-Wpedantic | -Wtraditional] -std=[gnu|c]++98 ; or
1295 [-Wpedantic | -Wtraditional] -std=non-c99
1296
1297 Either -Wlong-long or -Wno-long-long override any other settings.
1298 ??? These conditions should be handled in c.opt. */
1299 if (warn_long_long == -1)
1300 {
1301 warn_long_long = ((pedantic || warn_traditional)
1302 && (c_dialect_cxx () ? cxx_dialect == cxx98 : !flag_isoc99));
1303 cpp_opts->cpp_warn_long_long = warn_long_long;
1304 }
1305
1306 /* If we're generating preprocessor output, emit current directory
1307 if explicitly requested or if debugging information is enabled.
1308 ??? Maybe we should only do it for debugging formats that
1309 actually output the current directory? */
1310 if (flag_working_directory == -1)
1311 flag_working_directory = (debug_info_level != DINFO_LEVEL_NONE);
1312
1313 if (warn_implicit_fallthrough < 5)
1314 cpp_opts->cpp_warn_implicit_fallthrough = warn_implicit_fallthrough;
1315 else
1316 cpp_opts->cpp_warn_implicit_fallthrough = 0;
1317
1318 if (cpp_opts->directives_only)
1319 {
1320 if (cpp_warn_unused_macros)
1321 error ("-fdirectives-only is incompatible with -Wunused_macros");
1322 if (cpp_opts->traditional)
1323 error ("-fdirectives-only is incompatible with -traditional");
1324 }
1325 }
1326
1327 /* Add include path with a prefix at the front of its name. */
1328 static void
1329 add_prefixed_path (const char *suffix, size_t chain)
1330 {
1331 char *path;
1332 const char *prefix;
1333 size_t prefix_len, suffix_len;
1334
1335 suffix_len = strlen (suffix);
1336 prefix = iprefix ? iprefix : cpp_GCC_INCLUDE_DIR;
1337 prefix_len = iprefix ? strlen (iprefix) : cpp_GCC_INCLUDE_DIR_len;
1338
1339 path = (char *) xmalloc (prefix_len + suffix_len + 1);
1340 memcpy (path, prefix, prefix_len);
1341 memcpy (path + prefix_len, suffix, suffix_len);
1342 path[prefix_len + suffix_len] = '\0';
1343
1344 add_path (path, chain, 0, false);
1345 }
1346
1347 /* Handle -D, -U, -A, -imacros, and the first -include. */
1348 static void
1349 c_finish_options (void)
1350 {
1351 if (!cpp_opts->preprocessed)
1352 {
1353 size_t i;
1354
1355 cb_file_change (parse_in,
1356 linemap_check_ordinary (linemap_add (line_table,
1357 LC_RENAME, 0,
1358 _("<built-in>"),
1359 0)));
1360 /* Make sure all of the builtins about to be declared have
1361 BUILTINS_LOCATION has their source_location. */
1362 source_location builtins_loc = BUILTINS_LOCATION;
1363 cpp_force_token_locations (parse_in, &builtins_loc);
1364
1365 cpp_init_builtins (parse_in, flag_hosted);
1366 c_cpp_builtins (parse_in);
1367
1368 cpp_stop_forcing_token_locations (parse_in);
1369
1370 /* We're about to send user input to cpplib, so make it warn for
1371 things that we previously (when we sent it internal definitions)
1372 told it to not warn.
1373
1374 C99 permits implementation-defined characters in identifiers.
1375 The documented meaning of -std= is to turn off extensions that
1376 conflict with the specified standard, and since a strictly
1377 conforming program cannot contain a '$', we do not condition
1378 their acceptance on the -std= setting. */
1379 cpp_opts->warn_dollars = (cpp_opts->cpp_pedantic && !cpp_opts->c99);
1380
1381 cb_file_change (parse_in,
1382 linemap_check_ordinary (linemap_add (line_table, LC_RENAME, 0,
1383 _("<command-line>"), 0)));
1384
1385 for (i = 0; i < deferred_count; i++)
1386 {
1387 struct deferred_opt *opt = &deferred_opts[i];
1388
1389 if (opt->code == OPT_D)
1390 cpp_define (parse_in, opt->arg);
1391 else if (opt->code == OPT_U)
1392 cpp_undef (parse_in, opt->arg);
1393 else if (opt->code == OPT_A)
1394 {
1395 if (opt->arg[0] == '-')
1396 cpp_unassert (parse_in, opt->arg + 1);
1397 else
1398 cpp_assert (parse_in, opt->arg);
1399 }
1400 }
1401
1402 /* Start the main input file, if the debug writer wants it. */
1403 if (debug_hooks->start_end_main_source_file
1404 && !flag_preprocess_only)
1405 (*debug_hooks->start_source_file) (0, this_input_filename);
1406
1407 /* Handle -imacros after -D and -U. */
1408 for (i = 0; i < deferred_count; i++)
1409 {
1410 struct deferred_opt *opt = &deferred_opts[i];
1411
1412 if (opt->code == OPT_imacros
1413 && cpp_push_include (parse_in, opt->arg))
1414 {
1415 /* Disable push_command_line_include callback for now. */
1416 include_cursor = deferred_count + 1;
1417 cpp_scan_nooutput (parse_in);
1418 }
1419 }
1420 }
1421 else
1422 {
1423 if (cpp_opts->directives_only)
1424 cpp_init_special_builtins (parse_in);
1425
1426 /* Start the main input file, if the debug writer wants it. */
1427 if (debug_hooks->start_end_main_source_file
1428 && !flag_preprocess_only)
1429 (*debug_hooks->start_source_file) (0, this_input_filename);
1430 }
1431
1432 include_cursor = 0;
1433 push_command_line_include ();
1434 }
1435
1436 /* Give CPP the next file given by -include, if any. */
1437 static void
1438 push_command_line_include (void)
1439 {
1440 /* This can happen if disabled by -imacros for example.
1441 Punt so that we don't set "<command-line>" as the filename for
1442 the header. */
1443 if (include_cursor > deferred_count)
1444 return;
1445
1446 if (!done_preinclude)
1447 {
1448 done_preinclude = true;
1449 if (flag_hosted && std_inc && !cpp_opts->preprocessed)
1450 {
1451 const char *preinc = targetcm.c_preinclude ();
1452 if (preinc && cpp_push_default_include (parse_in, preinc))
1453 return;
1454 }
1455 }
1456
1457 pch_cpp_save_state ();
1458
1459 while (include_cursor < deferred_count)
1460 {
1461 struct deferred_opt *opt = &deferred_opts[include_cursor++];
1462
1463 if (!cpp_opts->preprocessed && opt->code == OPT_include
1464 && cpp_push_include (parse_in, opt->arg))
1465 return;
1466 }
1467
1468 if (include_cursor == deferred_count)
1469 {
1470 include_cursor++;
1471 /* -Wunused-macros should only warn about macros defined hereafter. */
1472 cpp_opts->warn_unused_macros = cpp_warn_unused_macros;
1473 /* Restore the line map from <command line>. */
1474 if (!cpp_opts->preprocessed)
1475 cpp_change_file (parse_in, LC_RENAME, this_input_filename);
1476
1477 /* Set this here so the client can change the option if it wishes,
1478 and after stacking the main file so we don't trace the main file. */
1479 line_table->trace_includes = cpp_opts->print_include_names;
1480 }
1481 }
1482
1483 /* File change callback. Has to handle -include files. */
1484 static void
1485 cb_file_change (cpp_reader * ARG_UNUSED (pfile),
1486 const line_map_ordinary *new_map)
1487 {
1488 if (flag_preprocess_only)
1489 pp_file_change (new_map);
1490 else
1491 fe_file_change (new_map);
1492
1493 if (new_map
1494 && (new_map->reason == LC_ENTER || new_map->reason == LC_RENAME))
1495 {
1496 /* Signal to plugins that a file is included. This could happen
1497 several times with the same file path, e.g. because of
1498 several '#include' or '#line' directives... */
1499 invoke_plugin_callbacks
1500 (PLUGIN_INCLUDE_FILE,
1501 const_cast<char*> (ORDINARY_MAP_FILE_NAME (new_map)));
1502 }
1503
1504 if (new_map == 0 || (new_map->reason == LC_LEAVE && MAIN_FILE_P (new_map)))
1505 {
1506 pch_cpp_save_state ();
1507 push_command_line_include ();
1508 }
1509 }
1510
1511 void
1512 cb_dir_change (cpp_reader * ARG_UNUSED (pfile), const char *dir)
1513 {
1514 if (!set_src_pwd (dir))
1515 warning (0, "too late for # directive to set debug directory");
1516 }
1517
1518 /* Set the C 89 standard (with 1994 amendments if C94, without GNU
1519 extensions if ISO). There is no concept of gnu94. */
1520 static void
1521 set_std_c89 (int c94, int iso)
1522 {
1523 cpp_set_lang (parse_in, c94 ? CLK_STDC94: iso ? CLK_STDC89: CLK_GNUC89);
1524 flag_iso = iso;
1525 flag_no_asm = iso;
1526 flag_no_gnu_keywords = iso;
1527 flag_no_nonansi_builtin = iso;
1528 flag_isoc94 = c94;
1529 flag_isoc99 = 0;
1530 flag_isoc11 = 0;
1531 lang_hooks.name = "GNU C89";
1532 }
1533
1534 /* Set the C 99 standard (without GNU extensions if ISO). */
1535 static void
1536 set_std_c99 (int iso)
1537 {
1538 cpp_set_lang (parse_in, iso ? CLK_STDC99: CLK_GNUC99);
1539 flag_no_asm = iso;
1540 flag_no_nonansi_builtin = iso;
1541 flag_iso = iso;
1542 flag_isoc11 = 0;
1543 flag_isoc99 = 1;
1544 flag_isoc94 = 1;
1545 lang_hooks.name = "GNU C99";
1546 }
1547
1548 /* Set the C 11 standard (without GNU extensions if ISO). */
1549 static void
1550 set_std_c11 (int iso)
1551 {
1552 cpp_set_lang (parse_in, iso ? CLK_STDC11: CLK_GNUC11);
1553 flag_no_asm = iso;
1554 flag_no_nonansi_builtin = iso;
1555 flag_iso = iso;
1556 flag_isoc11 = 1;
1557 flag_isoc99 = 1;
1558 flag_isoc94 = 1;
1559 lang_hooks.name = "GNU C11";
1560 }
1561
1562 /* Set the C++ 98 standard (without GNU extensions if ISO). */
1563 static void
1564 set_std_cxx98 (int iso)
1565 {
1566 cpp_set_lang (parse_in, iso ? CLK_CXX98: CLK_GNUCXX);
1567 flag_no_gnu_keywords = iso;
1568 flag_no_nonansi_builtin = iso;
1569 flag_iso = iso;
1570 flag_isoc94 = 0;
1571 flag_isoc99 = 0;
1572 cxx_dialect = cxx98;
1573 lang_hooks.name = "GNU C++98";
1574 }
1575
1576 /* Set the C++ 2011 standard (without GNU extensions if ISO). */
1577 static void
1578 set_std_cxx11 (int iso)
1579 {
1580 cpp_set_lang (parse_in, iso ? CLK_CXX11: CLK_GNUCXX11);
1581 flag_no_gnu_keywords = iso;
1582 flag_no_nonansi_builtin = iso;
1583 flag_iso = iso;
1584 /* C++11 includes the C99 standard library. */
1585 flag_isoc94 = 1;
1586 flag_isoc99 = 1;
1587 cxx_dialect = cxx11;
1588 lang_hooks.name = "GNU C++11";
1589 }
1590
1591 /* Set the C++ 2014 standard (without GNU extensions if ISO). */
1592 static void
1593 set_std_cxx14 (int iso)
1594 {
1595 cpp_set_lang (parse_in, iso ? CLK_CXX14: CLK_GNUCXX14);
1596 flag_no_gnu_keywords = iso;
1597 flag_no_nonansi_builtin = iso;
1598 flag_iso = iso;
1599 /* C++14 includes the C99 standard library. */
1600 flag_isoc94 = 1;
1601 flag_isoc99 = 1;
1602 cxx_dialect = cxx14;
1603 lang_hooks.name = "GNU C++14";
1604 }
1605
1606 /* Set the C++ 2017 standard (without GNU extensions if ISO). */
1607 static void
1608 set_std_cxx17 (int iso)
1609 {
1610 cpp_set_lang (parse_in, iso ? CLK_CXX17: CLK_GNUCXX17);
1611 flag_no_gnu_keywords = iso;
1612 flag_no_nonansi_builtin = iso;
1613 flag_iso = iso;
1614 /* C++17 includes the C11 standard library. */
1615 flag_isoc94 = 1;
1616 flag_isoc99 = 1;
1617 flag_isoc11 = 1;
1618 cxx_dialect = cxx17;
1619 lang_hooks.name = "GNU C++17";
1620 }
1621
1622 /* Set the C++ 202a draft standard (without GNU extensions if ISO). */
1623 static void
1624 set_std_cxx2a (int iso)
1625 {
1626 cpp_set_lang (parse_in, iso ? CLK_CXX2A: CLK_GNUCXX2A);
1627 flag_no_gnu_keywords = iso;
1628 flag_no_nonansi_builtin = iso;
1629 flag_iso = iso;
1630 /* C++17 includes the C11 standard library. */
1631 flag_isoc94 = 1;
1632 flag_isoc99 = 1;
1633 flag_isoc11 = 1;
1634 cxx_dialect = cxx2a;
1635 lang_hooks.name = "GNU C++17"; /* Pretend C++17 until standardization. */
1636 }
1637
1638 /* Args to -d specify what to dump. Silently ignore
1639 unrecognized options; they may be aimed at toplev.c. */
1640 static void
1641 handle_OPT_d (const char *arg)
1642 {
1643 char c;
1644
1645 while ((c = *arg++) != '\0')
1646 switch (c)
1647 {
1648 case 'M': /* Dump macros only. */
1649 case 'N': /* Dump names. */
1650 case 'D': /* Dump definitions. */
1651 case 'U': /* Dump used macros. */
1652 flag_dump_macros = c;
1653 break;
1654
1655 case 'I':
1656 flag_dump_includes = 1;
1657 break;
1658 }
1659 }