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