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