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