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