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