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