1 /* C/ObjC/C++ command line option handling.
2 Copyright (C) 2002-2015 Free Software Foundation, Inc.
3 Contributed by Neil Booth.
5 This file is part of GCC.
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
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
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/>. */
23 #include "coretypes.h"
32 #include "langhooks.h"
33 #include "diagnostic.h"
34 #include "tree-diagnostic.h" /* for virt_loc_aware_diagnostic_finalizer */
36 #include "cppdefault.h"
38 #include "debug.h" /* For debug_hooks. */
40 #include "plugin.h" /* For PLUGIN_INCLUDE_FILE event. */
43 #include "tm.h" /* For BYTES_BIG_ENDIAN,
44 DOLLARS_IN_IDENTIFIERS,
45 STDC_0_IN_SYSTEM_HEADERS,
46 TARGET_FLT_EVAL_METHOD_NON_DEFAULT and
48 #include "tm_p.h" /* For C_COMMON_OVERRIDE_OPTIONS. */
51 #ifndef DOLLARS_IN_IDENTIFIERS
52 # define DOLLARS_IN_IDENTIFIERS true
55 #ifndef TARGET_SYSTEM_ROOT
56 # define TARGET_SYSTEM_ROOT NULL
60 #define TARGET_OPTF(ARG)
64 cpp_options
*cpp_opts
;
67 static const char *this_input_filename
;
69 /* Filename and stream for preprocessed output. */
70 static const char *out_fname
;
71 static FILE *out_stream
;
73 /* Append dependencies to deps_file. */
74 static bool deps_append
;
76 /* If dependency switches (-MF etc.) have been given. */
77 static bool deps_seen
;
82 /* Dependency output file. */
83 static const char *deps_file
;
85 /* The prefix given by -iprefix, if any. */
86 static const char *iprefix
;
88 /* The multilib directory given by -imultilib, if any. */
89 static const char *imultilib
;
91 /* The system root, if any. Overridden by -isysroot. */
92 static const char *sysroot
= TARGET_SYSTEM_ROOT
;
94 /* Zero disables all standard directories for headers. */
95 static bool std_inc
= true;
97 /* Zero disables the C++-specific standard directories for headers. */
98 static bool std_cxx_inc
= true;
100 /* If the quote chain has been split by -I-. */
101 static bool quote_chain_split
;
103 /* Number of deferred options. */
104 static size_t deferred_count
;
106 /* Number of deferred options scanned for -include. */
107 static size_t include_cursor
;
109 /* Dump files/flags to use during parsing. */
110 static FILE *original_dump_file
= NULL
;
111 static int original_dump_flags
;
112 static FILE *class_dump_file
= NULL
;
113 static int class_dump_flags
;
115 /* Whether any standard preincluded header has been preincluded. */
116 static bool done_preinclude
;
118 static void handle_OPT_d (const char *);
119 static void set_std_cxx98 (int);
120 static void set_std_cxx11 (int);
121 static void set_std_cxx14 (int);
122 static void set_std_cxx1z (int);
123 static void set_std_c89 (int, int);
124 static void set_std_c99 (int);
125 static void set_std_c11 (int);
126 static void check_deps_environment_vars (void);
127 static void handle_deferred_opts (void);
128 static void sanitize_cpp_opts (void);
129 static void add_prefixed_path (const char *, size_t);
130 static void push_command_line_include (void);
131 static void cb_file_change (cpp_reader
*, const line_map_ordinary
*);
132 static void cb_dir_change (cpp_reader
*, const char *);
133 static void c_finish_options (void);
135 #ifndef STDC_0_IN_SYSTEM_HEADERS
136 #define STDC_0_IN_SYSTEM_HEADERS 0
139 /* Holds switches parsed by c_common_handle_option (), but whose
140 handling is deferred to c_common_post_options (). */
141 static void defer_opt (enum opt_code
, const char *);
142 static struct deferred_opt
149 extern const unsigned int
150 c_family_lang_mask
= (CL_C
| CL_CXX
| CL_ObjC
| CL_ObjCXX
);
152 /* Defer option CODE with argument ARG. */
154 defer_opt (enum opt_code code
, const char *arg
)
156 deferred_opts
[deferred_count
].code
= code
;
157 deferred_opts
[deferred_count
].arg
= arg
;
161 /* Return language mask for option parsing. */
163 c_common_option_lang_mask (void)
165 static const unsigned int lang_flags
[] = {CL_C
, CL_ObjC
, CL_CXX
, CL_ObjCXX
};
167 return lang_flags
[c_language
];
170 /* Diagnostic finalizer for C/C++/Objective-C/Objective-C++. */
172 c_diagnostic_finalizer (diagnostic_context
*context
,
173 diagnostic_info
*diagnostic
)
175 diagnostic_show_locus (context
, diagnostic
);
176 /* By default print macro expansion contexts in the diagnostic
177 finalizer -- for tokens resulting from macro expansion. */
178 virt_loc_aware_diagnostic_finalizer (context
, diagnostic
);
179 pp_destroy_prefix (context
->printer
);
180 pp_newline_and_flush (context
->printer
);
183 /* Common default settings for diagnostics. */
185 c_common_diagnostics_set_defaults (diagnostic_context
*context
)
187 diagnostic_finalizer (context
) = c_diagnostic_finalizer
;
188 context
->opt_permissive
= OPT_fpermissive
;
191 /* Whether options from all C-family languages should be accepted
193 static bool accept_all_c_family_options
= false;
195 /* Return whether to complain about a wrong-language option. */
197 c_common_complain_wrong_lang_p (const struct cl_option
*option
)
199 if (accept_all_c_family_options
200 && (option
->flags
& c_family_lang_mask
))
206 /* Initialize options structure OPTS. */
208 c_common_init_options_struct (struct gcc_options
*opts
)
210 opts
->x_flag_exceptions
= c_dialect_cxx ();
211 opts
->x_warn_pointer_arith
= c_dialect_cxx ();
212 opts
->x_warn_write_strings
= c_dialect_cxx ();
213 opts
->x_flag_warn_unused_result
= true;
215 /* By default, C99-like requirements for complex multiply and divide. */
216 opts
->x_flag_complex_method
= 2;
219 /* Common initialization before calling option handlers. */
221 c_common_init_options (unsigned int decoded_options_count
,
222 struct cl_decoded_option
*decoded_options
)
225 struct cpp_callbacks
*cb
;
227 parse_in
= cpp_create_reader (c_dialect_cxx () ? CLK_GNUCXX
: CLK_GNUC89
,
228 ident_hash
, line_table
);
229 cb
= cpp_get_callbacks (parse_in
);
230 cb
->error
= c_cpp_error
;
232 cpp_opts
= cpp_get_options (parse_in
);
233 cpp_opts
->dollars_in_ident
= DOLLARS_IN_IDENTIFIERS
;
234 cpp_opts
->objc
= c_dialect_objc ();
236 /* Reset to avoid warnings on internal definitions. We set it just
237 before passing on command-line options to cpplib. */
238 cpp_opts
->warn_dollars
= 0;
240 deferred_opts
= XNEWVEC (struct deferred_opt
, decoded_options_count
);
242 if (c_language
== clk_c
)
244 /* The default for C is gnu11. */
245 set_std_c11 (false /* ISO */);
247 /* If preprocessing assembly language, accept any of the C-family
248 front end options since the driver may pass them through. */
249 for (i
= 1; i
< decoded_options_count
; i
++)
250 if (decoded_options
[i
].opt_index
== OPT_lang_asm
)
252 accept_all_c_family_options
= true;
258 /* Handle switch SCODE with argument ARG. VALUE is true, unless no-
259 form of an -f or -W option was given. Returns false if the switch was
260 invalid, true if valid. Use HANDLERS in recursive handle_option calls. */
262 c_common_handle_option (size_t scode
, const char *arg
, int value
,
263 int kind
, location_t loc
,
264 const struct cl_option_handlers
*handlers
)
266 const struct cl_option
*option
= &cl_options
[scode
];
267 enum opt_code code
= (enum opt_code
) scode
;
270 /* Prevent resetting the language standard to a C dialect when the driver
271 has already determined that we're looking at assembler input. */
272 bool preprocessing_asm_p
= (cpp_get_options (parse_in
)->lang
== CLK_ASM
);
277 if (cl_options
[code
].flags
& c_family_lang_mask
)
279 if ((option
->flags
& CL_TARGET
)
280 && ! targetcm
.handle_c_option (scode
, arg
, value
))
287 case OPT__output_pch_
:
292 defer_opt (code
, arg
);
296 cpp_opts
->discard_comments
= 0;
300 cpp_opts
->discard_comments
= 0;
301 cpp_opts
->discard_comments_in_macro_exp
= 0;
305 defer_opt (code
, arg
);
309 cpp_opts
->print_include_names
= 1;
313 TARGET_OPTF (xstrdup (arg
));
317 if (strcmp (arg
, "-"))
318 add_path (xstrdup (arg
), BRACKET
, 0, true);
321 if (quote_chain_split
)
322 error ("-I- specified twice");
323 quote_chain_split
= true;
324 split_quote_chain ();
325 inform (input_location
, "obsolete option -I- used, please use -iquote instead");
331 /* When doing dependencies with -M or -MM, suppress normal
332 preprocessed output, but still do -dM etc. as software
333 depends on this. Preprocessed output does occur if -MD, -MMD
334 or environment var dependency generation is used. */
335 cpp_opts
->deps
.style
= (code
== OPT_M
? DEPS_SYSTEM
: DEPS_USER
);
341 cpp_opts
->deps
.style
= (code
== OPT_MD
? DEPS_SYSTEM
: DEPS_USER
);
342 cpp_opts
->deps
.need_preprocessor_output
= true;
353 cpp_opts
->deps
.missing_files
= true;
358 cpp_opts
->deps
.phony_targets
= true;
364 defer_opt (code
, arg
);
368 flag_no_line_commands
= 1;
372 defer_opt (code
, arg
);
376 /* ??? Don't add new options here. Use LangEnabledBy in c.opt. */
378 cpp_opts
->warn_num_sign_change
= value
;
381 case OPT_Wunknown_pragmas
:
382 /* Set to greater than 1, so that even unknown pragmas in
383 system headers will be warned about. */
384 /* ??? There is no way to handle this automatically for now. */
385 warn_unknown_pragmas
= value
* 2;
389 if (!c_dialect_cxx ())
390 set_std_c89 (false, true);
392 set_std_cxx98 (true);
403 warning (0, "%<-Wabi=1%> is not supported, using =2");
406 flag_abi_compat_version
= value
;
409 case OPT_fcanonical_system_headers
:
410 cpp_opts
->canonical_system_headers
= value
;
413 case OPT_fcond_mismatch
:
414 if (!c_dialect_cxx ())
416 flag_cond_mismatch
= value
;
419 warning (0, "switch %qs is no longer supported", option
->opt_text
);
426 disable_builtin_function (arg
);
429 case OPT_fdirectives_only
:
430 cpp_opts
->directives_only
= value
;
433 case OPT_fdollars_in_identifiers
:
434 cpp_opts
->dollars_in_ident
= value
;
437 case OPT_ffreestanding
:
439 /* Fall through.... */
442 flag_no_builtin
= !value
;
445 case OPT_fconstant_string_class_
:
446 constant_string_class_name
= arg
;
449 case OPT_fextended_identifiers
:
450 cpp_opts
->extended_identifiers
= value
;
453 case OPT_foperator_names
:
454 cpp_opts
->operator_names
= value
;
458 cpp_opts
->restore_pch_deps
= value
;
461 case OPT_fpch_preprocess
:
462 flag_pch_preprocess
= value
;
465 case OPT_fpermissive
:
466 flag_permissive
= value
;
467 global_dc
->permissive
= value
;
470 case OPT_fpreprocessed
:
471 cpp_opts
->preprocessed
= value
;
478 case OPT_ftrack_macro_expansion
:
483 case OPT_ftrack_macro_expansion_
:
484 if (arg
&& *arg
!= '\0')
485 cpp_opts
->track_macro_expansion
= value
;
487 cpp_opts
->track_macro_expansion
= 2;
491 flag_use_repository
= value
;
493 flag_implicit_templates
= 0;
497 /* It is documented that we silently ignore silly values. */
498 if (value
>= 1 && value
<= 100)
499 cpp_opts
->tabstop
= value
;
502 case OPT_fexec_charset_
:
503 cpp_opts
->narrow_charset
= arg
;
506 case OPT_fwide_exec_charset_
:
507 cpp_opts
->wide_charset
= arg
;
510 case OPT_finput_charset_
:
511 cpp_opts
->input_charset
= arg
;
514 case OPT_ftemplate_depth_
:
515 max_tinst_depth
= value
;
518 case OPT_fvisibility_inlines_hidden
:
519 visibility_options
.inlines_hidden
= value
;
522 case OPT_femit_struct_debug_baseonly
:
523 set_struct_debug_option (&global_options
, loc
, "base");
526 case OPT_femit_struct_debug_reduced
:
527 set_struct_debug_option (&global_options
, loc
,
528 "dir:ord:sys,dir:gen:any,ind:base");
531 case OPT_femit_struct_debug_detailed_
:
532 set_struct_debug_option (&global_options
, loc
, arg
);
535 case OPT_fext_numeric_literals
:
536 cpp_opts
->ext_numeric_literals
= value
;
540 add_path (xstrdup (arg
), AFTER
, 0, true);
545 defer_opt (code
, arg
);
557 add_path (xstrdup (arg
), QUOTE
, 0, true);
565 add_path (xstrdup (arg
), SYSTEM
, 0, true);
568 case OPT_iwithprefix
:
569 add_prefixed_path (arg
, SYSTEM
);
572 case OPT_iwithprefixbefore
:
573 add_prefixed_path (arg
, BRACKET
);
577 cpp_set_lang (parse_in
, CLK_ASM
);
578 cpp_opts
->dollars_in_ident
= false;
593 error ("output filename specified twice");
596 case OPT_print_objc_runtime_info
:
597 print_struct_values
= 1;
605 case OPT_std_gnu__98
:
606 if (!preprocessing_asm_p
)
607 set_std_cxx98 (code
== OPT_std_c__98
/* ISO */);
611 case OPT_std_gnu__11
:
612 if (!preprocessing_asm_p
)
614 set_std_cxx11 (code
== OPT_std_c__11
/* ISO */);
615 if (code
== OPT_std_c__11
)
616 cpp_opts
->ext_numeric_literals
= 0;
621 case OPT_std_gnu__14
:
622 if (!preprocessing_asm_p
)
624 set_std_cxx14 (code
== OPT_std_c__14
/* ISO */);
625 if (code
== OPT_std_c__14
)
626 cpp_opts
->ext_numeric_literals
= 0;
631 case OPT_std_gnu__1z
:
632 if (!preprocessing_asm_p
)
634 set_std_cxx1z (code
== OPT_std_c__1z
/* ISO */);
635 if (code
== OPT_std_c__1z
)
636 cpp_opts
->ext_numeric_literals
= 0;
641 case OPT_std_iso9899_199409
:
642 if (!preprocessing_asm_p
)
643 set_std_c89 (code
== OPT_std_iso9899_199409
/* c94 */, true /* ISO */);
647 if (!preprocessing_asm_p
)
648 set_std_c89 (false /* c94 */, false /* ISO */);
652 if (!preprocessing_asm_p
)
653 set_std_c99 (true /* ISO */);
657 if (!preprocessing_asm_p
)
658 set_std_c99 (false /* ISO */);
662 if (!preprocessing_asm_p
)
663 set_std_c11 (true /* ISO */);
667 if (!preprocessing_asm_p
)
668 set_std_c11 (false /* ISO */);
672 cpp_opts
->trigraphs
= 1;
675 case OPT_traditional_cpp
:
676 cpp_opts
->traditional
= 1;
687 C_handle_option_auto (&global_options
, &global_options_set
,
689 c_family_lang_mask
, kind
,
690 loc
, handlers
, global_dc
);
694 ObjC_handle_option_auto (&global_options
, &global_options_set
,
696 c_family_lang_mask
, kind
,
697 loc
, handlers
, global_dc
);
701 CXX_handle_option_auto (&global_options
, &global_options_set
,
703 c_family_lang_mask
, kind
,
704 loc
, handlers
, global_dc
);
708 ObjCXX_handle_option_auto (&global_options
, &global_options_set
,
710 c_family_lang_mask
, kind
,
711 loc
, handlers
, global_dc
);
718 cpp_handle_option_auto (&global_options
, scode
, cpp_opts
);
722 /* Default implementation of TARGET_HANDLE_C_OPTION. */
725 default_handle_c_option (size_t code ATTRIBUTE_UNUSED
,
726 const char *arg ATTRIBUTE_UNUSED
,
727 int value ATTRIBUTE_UNUSED
)
732 /* Post-switch processing. */
734 c_common_post_options (const char **pfilename
)
736 struct cpp_callbacks
*cb
;
738 /* Canonicalize the input and output filenames. */
739 if (in_fnames
== NULL
)
741 in_fnames
= XNEWVEC (const char *, 1);
744 else if (strcmp (in_fnames
[0], "-") == 0)
747 if (out_fname
== NULL
|| !strcmp (out_fname
, "-"))
750 if (cpp_opts
->deps
.style
== DEPS_NONE
)
751 check_deps_environment_vars ();
753 handle_deferred_opts ();
755 sanitize_cpp_opts ();
757 register_include_chains (parse_in
, sysroot
, iprefix
, imultilib
,
758 std_inc
, std_cxx_inc
&& c_dialect_cxx (), verbose
);
760 #ifdef C_COMMON_OVERRIDE_OPTIONS
761 /* Some machines may reject certain combinations of C
762 language-specific options. */
763 C_COMMON_OVERRIDE_OPTIONS
;
766 /* Excess precision other than "fast" requires front-end
768 if (c_dialect_cxx ())
770 if (flag_excess_precision_cmdline
== EXCESS_PRECISION_STANDARD
771 && TARGET_FLT_EVAL_METHOD_NON_DEFAULT
)
772 sorry ("-fexcess-precision=standard for C++");
773 flag_excess_precision_cmdline
= EXCESS_PRECISION_FAST
;
775 else if (flag_excess_precision_cmdline
== EXCESS_PRECISION_DEFAULT
)
776 flag_excess_precision_cmdline
= (flag_iso
777 ? EXCESS_PRECISION_STANDARD
778 : EXCESS_PRECISION_FAST
);
780 /* ISO C restricts floating-point expression contraction to within
781 source-language expressions (-ffp-contract=on, currently an alias
782 for -ffp-contract=off). */
785 && (global_options_set
.x_flag_fp_contract_mode
786 == (enum fp_contract_mode
) 0)
787 && flag_unsafe_math_optimizations
== 0)
788 flag_fp_contract_mode
= FP_CONTRACT_OFF
;
790 /* By default we use C99 inline semantics in GNU99 or C99 mode. C99
791 inline semantics are not supported in GNU89 or C89 mode. */
792 if (flag_gnu89_inline
== -1)
793 flag_gnu89_inline
= !flag_isoc99
;
794 else if (!flag_gnu89_inline
&& !flag_isoc99
)
795 error ("-fno-gnu89-inline is only supported in GNU99 or C99 mode");
797 /* Default to ObjC sjlj exception handling if NeXT runtime. */
798 if (flag_objc_sjlj_exceptions
< 0)
799 flag_objc_sjlj_exceptions
= flag_next_runtime
;
800 if (flag_objc_exceptions
&& !flag_objc_sjlj_exceptions
)
803 /* If -ffreestanding, -fno-hosted or -fno-builtin then disable
804 pattern recognition. */
805 if (!global_options_set
.x_flag_tree_loop_distribute_patterns
807 flag_tree_loop_distribute_patterns
= 0;
809 /* -Woverlength-strings is off by default, but is enabled by -Wpedantic.
810 It is never enabled in C++, as the minimum limit is not normative
812 if (c_dialect_cxx ())
813 warn_overlength_strings
= 0;
815 /* Wmain is enabled by default in C++ but not in C. */
816 /* Wmain is disabled by default for -ffreestanding (!flag_hosted),
817 even if -Wall or -Wpedantic was given (warn_main will be 2 if set
818 by -Wall, 1 if set by -Wmain). */
820 warn_main
= (c_dialect_cxx () && flag_hosted
) ? 1 : 0;
821 else if (warn_main
== 2)
822 warn_main
= flag_hosted
? 1 : 0;
824 /* In C, -Wall and -Wc++-compat enable -Wenum-compare; if it has not
825 yet been set, it is disabled by default. In C++, it is enabled
827 if (warn_enum_compare
== -1)
828 warn_enum_compare
= c_dialect_cxx () ? 1 : 0;
830 /* -Wpacked-bitfield-compat is on by default for the C languages. The
831 warning is issued in stor-layout.c which is not part of the front-end so
832 we need to selectively turn it on here. */
833 if (warn_packed_bitfield_compat
== -1)
834 warn_packed_bitfield_compat
= 1;
836 /* Special format checking options don't work without -Wformat; warn if
840 warning (OPT_Wformat_y2k
,
841 "-Wformat-y2k ignored without -Wformat");
842 warning (OPT_Wformat_extra_args
,
843 "-Wformat-extra-args ignored without -Wformat");
844 warning (OPT_Wformat_zero_length
,
845 "-Wformat-zero-length ignored without -Wformat");
846 warning (OPT_Wformat_nonliteral
,
847 "-Wformat-nonliteral ignored without -Wformat");
848 warning (OPT_Wformat_contains_nul
,
849 "-Wformat-contains-nul ignored without -Wformat");
850 warning (OPT_Wformat_security
,
851 "-Wformat-security ignored without -Wformat");
854 /* -Wimplicit-function-declaration is enabled by default for C99. */
855 if (warn_implicit_function_declaration
== -1)
856 warn_implicit_function_declaration
= flag_isoc99
;
858 /* -Wimplicit-int is enabled by default for C99. */
859 if (warn_implicit_int
== -1)
860 warn_implicit_int
= flag_isoc99
;
862 /* -Wshift-negative-value is enabled by -Wextra in C99 and C++11 modes. */
863 if (warn_shift_negative_value
== -1)
864 warn_shift_negative_value
= (extra_warnings
865 && (cxx_dialect
>= cxx11
|| flag_isoc99
));
867 /* Declone C++ 'structors if -Os. */
868 if (flag_declone_ctor_dtor
== -1)
869 flag_declone_ctor_dtor
= optimize_size
;
871 if (flag_abi_compat_version
== 1)
873 warning (0, "%<-fabi-compat-version=1%> is not supported, using =2");
874 flag_abi_compat_version
= 2;
876 else if (flag_abi_compat_version
== -1)
878 /* Generate compatibility aliases for ABI v2 (3.4-4.9) by default. */
879 flag_abi_compat_version
= (flag_abi_version
== 0 ? 2 : 0);
881 /* But don't warn about backward compatibility unless explicitly
882 requested with -Wabi=n. */
883 if (flag_abi_version
== 0)
887 /* Change flag_abi_version to be the actual current ABI level for the
888 benefit of c_cpp_builtins. */
889 if (flag_abi_version
== 0)
890 flag_abi_version
= 9;
892 /* Set C++ standard to C++98 if not specified on the command line. */
893 if (c_dialect_cxx () && cxx_dialect
== cxx_unset
)
894 set_std_cxx98 (/*ISO*/false);
896 if (cxx_dialect
>= cxx11
)
898 /* If we're allowing C++0x constructs, don't warn about C++98
899 identifiers which are keywords in C++0x. */
900 warn_cxx11_compat
= 0;
901 cpp_opts
->cpp_warn_cxx11_compat
= 0;
903 if (warn_narrowing
== -1)
906 else if (warn_narrowing
== -1)
909 /* Global sized deallocation is new in C++14. */
910 if (flag_sized_deallocation
== -1)
911 flag_sized_deallocation
= (cxx_dialect
>= cxx14
);
913 if (flag_extern_tls_init
)
915 #if !defined (ASM_OUTPUT_DEF) || !SUPPORTS_WEAK
916 /* Lazy TLS initialization for a variable in another TU requires
917 alias and weak reference support. */
918 if (flag_extern_tls_init
> 0)
919 sorry ("external TLS initialization functions not supported "
921 flag_extern_tls_init
= 0;
923 flag_extern_tls_init
= 1;
927 if (flag_preprocess_only
)
929 /* Open the output now. We must do so even if flag_no_output is
930 on, because there may be other output than from the actual
931 preprocessing (e.g. from -dM). */
932 if (out_fname
[0] == '\0')
935 out_stream
= fopen (out_fname
, "w");
937 if (out_stream
== NULL
)
939 fatal_error (input_location
, "opening output file %s: %m", out_fname
);
943 if (num_in_fnames
> 1)
944 error ("too many filenames given. Type %s --help for usage",
947 init_pp_output (out_stream
);
953 /* When writing a PCH file, avoid reading some other PCH file,
954 because the default address space slot then can't be used
955 for the output PCH file. */
958 c_common_no_more_pch ();
959 /* Only -g0 and -gdwarf* are supported with PCH, for other
960 debug formats we warn here and refuse to load any PCH files. */
961 if (write_symbols
!= NO_DEBUG
&& write_symbols
!= DWARF2_DEBUG
)
962 warning (OPT_Wdeprecated
,
963 "the \"%s\" debug format cannot be used with "
964 "pre-compiled headers", debug_type_names
[write_symbols
]);
966 else if (write_symbols
!= NO_DEBUG
&& write_symbols
!= DWARF2_DEBUG
)
967 c_common_no_more_pch ();
969 /* Yuk. WTF is this? I do know ObjC relies on it somewhere. */
970 input_location
= UNKNOWN_LOCATION
;
973 cb
= cpp_get_callbacks (parse_in
);
974 cb
->file_change
= cb_file_change
;
975 cb
->dir_change
= cb_dir_change
;
976 cpp_post_options (parse_in
);
977 init_global_opts_from_cpp (&global_options
, cpp_get_options (parse_in
));
979 input_location
= UNKNOWN_LOCATION
;
981 *pfilename
= this_input_filename
982 = cpp_read_main_file (parse_in
, in_fnames
[0]);
983 /* Don't do any compilation or preprocessing if there is no input file. */
984 if (this_input_filename
== NULL
)
990 if (flag_working_directory
991 && flag_preprocess_only
&& !flag_no_line_commands
)
992 pp_dir_change (parse_in
, get_src_pwd ());
994 /* Disable LTO output when outputting a precompiled header. */
995 if (pch_file
&& flag_lto
)
998 flag_generate_lto
= 0;
1001 return flag_preprocess_only
;
1004 /* Front end initialization common to C, ObjC and C++. */
1006 c_common_init (void)
1008 /* Set up preprocessor arithmetic. Must be done after call to
1009 c_common_nodes_and_builtins for type nodes to be good. */
1010 cpp_opts
->precision
= TYPE_PRECISION (intmax_type_node
);
1011 cpp_opts
->char_precision
= TYPE_PRECISION (char_type_node
);
1012 cpp_opts
->int_precision
= TYPE_PRECISION (integer_type_node
);
1013 cpp_opts
->wchar_precision
= TYPE_PRECISION (wchar_type_node
);
1014 cpp_opts
->unsigned_wchar
= TYPE_UNSIGNED (wchar_type_node
);
1015 cpp_opts
->bytes_big_endian
= BYTES_BIG_ENDIAN
;
1017 /* This can't happen until after wchar_precision and bytes_big_endian
1019 cpp_init_iconv (parse_in
);
1024 fputs ("Compiler executable checksum: ", stderr
);
1025 for (i
= 0; i
< 16; i
++)
1026 fprintf (stderr
, "%02x", executable_checksum
[i
]);
1027 putc ('\n', stderr
);
1030 /* Has to wait until now so that cpplib has its hash table. */
1033 if (flag_preprocess_only
)
1035 c_finish_options ();
1036 preprocess_file (parse_in
);
1043 /* Initialize the integrated preprocessor after debug output has been
1044 initialized; loop over each input file. */
1046 c_common_parse_file (void)
1053 c_finish_options ();
1054 /* Open the dump files to use for the original and class dump output
1055 here, to be used during parsing for the current file. */
1056 original_dump_file
= dump_begin (TDI_original
, &original_dump_flags
);
1057 class_dump_file
= dump_begin (TDI_class
, &class_dump_flags
);
1062 /* And end the main input file, if the debug writer wants it */
1063 if (debug_hooks
->start_end_main_source_file
)
1064 (*debug_hooks
->end_source_file
) (0);
1065 if (++i
>= num_in_fnames
)
1067 cpp_undef_all (parse_in
);
1068 cpp_clear_file_cache (parse_in
);
1070 = cpp_read_main_file (parse_in
, in_fnames
[i
]);
1071 if (original_dump_file
)
1073 dump_end (TDI_original
, original_dump_file
);
1074 original_dump_file
= NULL
;
1076 if (class_dump_file
)
1078 dump_end (TDI_class
, class_dump_file
);
1079 class_dump_file
= NULL
;
1081 /* If an input file is missing, abandon further compilation.
1082 cpplib has issued a diagnostic. */
1083 if (!this_input_filename
)
1087 c_parse_final_cleanups ();
1090 /* Returns the appropriate dump file for PHASE to dump with FLAGS. */
1092 get_dump_info (int phase
, int *flags
)
1094 gcc_assert (phase
== TDI_original
|| phase
== TDI_class
);
1095 if (phase
== TDI_original
)
1097 *flags
= original_dump_flags
;
1098 return original_dump_file
;
1102 *flags
= class_dump_flags
;
1103 return class_dump_file
;
1107 /* Common finish hook for the C, ObjC and C++ front ends. */
1109 c_common_finish (void)
1111 FILE *deps_stream
= NULL
;
1113 /* Don't write the deps file if there are errors. */
1114 if (cpp_opts
->deps
.style
!= DEPS_NONE
&& !seen_error ())
1116 /* If -M or -MM was seen without -MF, default output to the
1119 deps_stream
= out_stream
;
1122 deps_stream
= fopen (deps_file
, deps_append
? "a": "w");
1124 fatal_error (input_location
, "opening dependency file %s: %m",
1129 /* For performance, avoid tearing down cpplib's internal structures
1130 with cpp_destroy (). */
1131 cpp_finish (parse_in
, deps_stream
);
1133 if (deps_stream
&& deps_stream
!= out_stream
1134 && (ferror (deps_stream
) || fclose (deps_stream
)))
1135 fatal_error (input_location
, "closing dependency file %s: %m", deps_file
);
1137 if (out_stream
&& (ferror (out_stream
) || fclose (out_stream
)))
1138 fatal_error (input_location
, "when writing output to %s: %m", out_fname
);
1141 /* Either of two environment variables can specify output of
1142 dependencies. Their value is either "OUTPUT_FILE" or "OUTPUT_FILE
1143 DEPS_TARGET", where OUTPUT_FILE is the file to write deps info to
1144 and DEPS_TARGET is the target to mention in the deps. They also
1145 result in dependency information being appended to the output file
1146 rather than overwriting it, and like Sun's compiler
1147 SUNPRO_DEPENDENCIES suppresses the dependency on the main file. */
1149 check_deps_environment_vars (void)
1153 spec
= getenv ("DEPENDENCIES_OUTPUT");
1155 cpp_opts
->deps
.style
= DEPS_USER
;
1158 spec
= getenv ("SUNPRO_DEPENDENCIES");
1161 cpp_opts
->deps
.style
= DEPS_SYSTEM
;
1162 cpp_opts
->deps
.ignore_main_file
= true;
1168 /* Find the space before the DEPS_TARGET, if there is one. */
1169 char *s
= strchr (spec
, ' ');
1172 /* Let the caller perform MAKE quoting. */
1173 defer_opt (OPT_MT
, s
+ 1);
1177 /* Command line -MF overrides environment variables and default. */
1186 /* Handle deferred command line switches. */
1188 handle_deferred_opts (void)
1193 /* Avoid allocating the deps buffer if we don't need it.
1194 (This flag may be true without there having been -MT or -MQ
1195 options, but we'll still need the deps buffer.) */
1199 deps
= cpp_get_deps (parse_in
);
1201 for (i
= 0; i
< deferred_count
; i
++)
1203 struct deferred_opt
*opt
= &deferred_opts
[i
];
1205 if (opt
->code
== OPT_MT
|| opt
->code
== OPT_MQ
)
1206 deps_add_target (deps
, opt
->arg
, opt
->code
== OPT_MQ
);
1210 /* These settings are appropriate for GCC, but not necessarily so for
1211 cpplib as a library. */
1213 sanitize_cpp_opts (void)
1215 /* If we don't know what style of dependencies to output, complain
1216 if any other dependency switches have been given. */
1217 if (deps_seen
&& cpp_opts
->deps
.style
== DEPS_NONE
)
1218 error ("to generate dependencies you must specify either -M or -MM");
1220 /* -dM and dependencies suppress normal output; do it here so that
1221 the last -d[MDN] switch overrides earlier ones. */
1222 if (flag_dump_macros
== 'M')
1225 /* By default, -fdirectives-only implies -dD. This allows subsequent phases
1226 to perform proper macro expansion. */
1227 if (cpp_opts
->directives_only
&& !cpp_opts
->preprocessed
&& !flag_dump_macros
)
1228 flag_dump_macros
= 'D';
1230 /* Disable -dD, -dN and -dI if normal output is suppressed. Allow
1231 -dM since at least glibc relies on -M -dM to work. */
1232 /* Also, flag_no_output implies flag_no_line_commands, always. */
1235 if (flag_dump_macros
!= 'M')
1236 flag_dump_macros
= 0;
1237 flag_dump_includes
= 0;
1238 flag_no_line_commands
= 1;
1240 else if (cpp_opts
->deps
.missing_files
)
1241 error ("-MG may only be used with -M or -MM");
1243 cpp_opts
->unsigned_char
= !flag_signed_char
;
1244 cpp_opts
->stdc_0_in_system_headers
= STDC_0_IN_SYSTEM_HEADERS
;
1246 /* Wlong-long is disabled by default. It is enabled by:
1247 [-Wpedantic | -Wtraditional] -std=[gnu|c]++98 ; or
1248 [-Wpedantic | -Wtraditional] -std=non-c99
1250 Either -Wlong-long or -Wno-long-long override any other settings.
1251 ??? These conditions should be handled in c.opt. */
1252 if (warn_long_long
== -1)
1254 warn_long_long
= ((pedantic
|| warn_traditional
)
1255 && (c_dialect_cxx () ? cxx_dialect
== cxx98
: !flag_isoc99
));
1256 cpp_opts
->cpp_warn_long_long
= warn_long_long
;
1259 /* If we're generating preprocessor output, emit current directory
1260 if explicitly requested or if debugging information is enabled.
1261 ??? Maybe we should only do it for debugging formats that
1262 actually output the current directory? */
1263 if (flag_working_directory
== -1)
1264 flag_working_directory
= (debug_info_level
!= DINFO_LEVEL_NONE
);
1266 if (cpp_opts
->directives_only
)
1268 if (cpp_warn_unused_macros
)
1269 error ("-fdirectives-only is incompatible with -Wunused_macros");
1270 if (cpp_opts
->traditional
)
1271 error ("-fdirectives-only is incompatible with -traditional");
1275 /* Add include path with a prefix at the front of its name. */
1277 add_prefixed_path (const char *suffix
, size_t chain
)
1281 size_t prefix_len
, suffix_len
;
1283 suffix_len
= strlen (suffix
);
1284 prefix
= iprefix
? iprefix
: cpp_GCC_INCLUDE_DIR
;
1285 prefix_len
= iprefix
? strlen (iprefix
) : cpp_GCC_INCLUDE_DIR_len
;
1287 path
= (char *) xmalloc (prefix_len
+ suffix_len
+ 1);
1288 memcpy (path
, prefix
, prefix_len
);
1289 memcpy (path
+ prefix_len
, suffix
, suffix_len
);
1290 path
[prefix_len
+ suffix_len
] = '\0';
1292 add_path (path
, chain
, 0, false);
1295 /* Handle -D, -U, -A, -imacros, and the first -include. */
1297 c_finish_options (void)
1299 if (!cpp_opts
->preprocessed
)
1303 cb_file_change (parse_in
,
1304 linemap_check_ordinary (linemap_add (line_table
,
1308 /* Make sure all of the builtins about to be declared have
1309 BUILTINS_LOCATION has their source_location. */
1310 source_location builtins_loc
= BUILTINS_LOCATION
;
1311 cpp_force_token_locations (parse_in
, &builtins_loc
);
1313 cpp_init_builtins (parse_in
, flag_hosted
);
1314 c_cpp_builtins (parse_in
);
1316 cpp_stop_forcing_token_locations (parse_in
);
1318 /* We're about to send user input to cpplib, so make it warn for
1319 things that we previously (when we sent it internal definitions)
1320 told it to not warn.
1322 C99 permits implementation-defined characters in identifiers.
1323 The documented meaning of -std= is to turn off extensions that
1324 conflict with the specified standard, and since a strictly
1325 conforming program cannot contain a '$', we do not condition
1326 their acceptance on the -std= setting. */
1327 cpp_opts
->warn_dollars
= (cpp_opts
->cpp_pedantic
&& !cpp_opts
->c99
);
1329 cb_file_change (parse_in
,
1330 linemap_check_ordinary (linemap_add (line_table
, LC_RENAME
, 0,
1331 _("<command-line>"), 0)));
1333 for (i
= 0; i
< deferred_count
; i
++)
1335 struct deferred_opt
*opt
= &deferred_opts
[i
];
1337 if (opt
->code
== OPT_D
)
1338 cpp_define (parse_in
, opt
->arg
);
1339 else if (opt
->code
== OPT_U
)
1340 cpp_undef (parse_in
, opt
->arg
);
1341 else if (opt
->code
== OPT_A
)
1343 if (opt
->arg
[0] == '-')
1344 cpp_unassert (parse_in
, opt
->arg
+ 1);
1346 cpp_assert (parse_in
, opt
->arg
);
1350 /* Start the main input file, if the debug writer wants it. */
1351 if (debug_hooks
->start_end_main_source_file
1352 && !flag_preprocess_only
)
1353 (*debug_hooks
->start_source_file
) (0, this_input_filename
);
1355 /* Handle -imacros after -D and -U. */
1356 for (i
= 0; i
< deferred_count
; i
++)
1358 struct deferred_opt
*opt
= &deferred_opts
[i
];
1360 if (opt
->code
== OPT_imacros
1361 && cpp_push_include (parse_in
, opt
->arg
))
1363 /* Disable push_command_line_include callback for now. */
1364 include_cursor
= deferred_count
+ 1;
1365 cpp_scan_nooutput (parse_in
);
1371 if (cpp_opts
->directives_only
)
1372 cpp_init_special_builtins (parse_in
);
1374 /* Start the main input file, if the debug writer wants it. */
1375 if (debug_hooks
->start_end_main_source_file
1376 && !flag_preprocess_only
)
1377 (*debug_hooks
->start_source_file
) (0, this_input_filename
);
1381 push_command_line_include ();
1384 /* Give CPP the next file given by -include, if any. */
1386 push_command_line_include (void)
1388 /* This can happen if disabled by -imacros for example.
1389 Punt so that we don't set "<command-line>" as the filename for
1391 if (include_cursor
> deferred_count
)
1394 if (!done_preinclude
)
1396 done_preinclude
= true;
1397 if (flag_hosted
&& std_inc
&& !cpp_opts
->preprocessed
)
1399 const char *preinc
= targetcm
.c_preinclude ();
1400 if (preinc
&& cpp_push_default_include (parse_in
, preinc
))
1405 pch_cpp_save_state ();
1407 while (include_cursor
< deferred_count
)
1409 struct deferred_opt
*opt
= &deferred_opts
[include_cursor
++];
1411 if (!cpp_opts
->preprocessed
&& opt
->code
== OPT_include
1412 && cpp_push_include (parse_in
, opt
->arg
))
1416 if (include_cursor
== deferred_count
)
1419 /* -Wunused-macros should only warn about macros defined hereafter. */
1420 cpp_opts
->warn_unused_macros
= cpp_warn_unused_macros
;
1421 /* Restore the line map from <command line>. */
1422 if (!cpp_opts
->preprocessed
)
1423 cpp_change_file (parse_in
, LC_RENAME
, this_input_filename
);
1425 /* Set this here so the client can change the option if it wishes,
1426 and after stacking the main file so we don't trace the main file. */
1427 line_table
->trace_includes
= cpp_opts
->print_include_names
;
1431 /* File change callback. Has to handle -include files. */
1433 cb_file_change (cpp_reader
* ARG_UNUSED (pfile
),
1434 const line_map_ordinary
*new_map
)
1436 if (flag_preprocess_only
)
1437 pp_file_change (new_map
);
1439 fe_file_change (new_map
);
1442 && (new_map
->reason
== LC_ENTER
|| new_map
->reason
== LC_RENAME
))
1444 /* Signal to plugins that a file is included. This could happen
1445 several times with the same file path, e.g. because of
1446 several '#include' or '#line' directives... */
1447 invoke_plugin_callbacks
1448 (PLUGIN_INCLUDE_FILE
,
1449 const_cast<char*> (ORDINARY_MAP_FILE_NAME (new_map
)));
1452 if (new_map
== 0 || (new_map
->reason
== LC_LEAVE
&& MAIN_FILE_P (new_map
)))
1454 pch_cpp_save_state ();
1455 push_command_line_include ();
1460 cb_dir_change (cpp_reader
* ARG_UNUSED (pfile
), const char *dir
)
1462 if (!set_src_pwd (dir
))
1463 warning (0, "too late for # directive to set debug directory");
1466 /* Set the C 89 standard (with 1994 amendments if C94, without GNU
1467 extensions if ISO). There is no concept of gnu94. */
1469 set_std_c89 (int c94
, int iso
)
1471 cpp_set_lang (parse_in
, c94
? CLK_STDC94
: iso
? CLK_STDC89
: CLK_GNUC89
);
1474 flag_no_gnu_keywords
= iso
;
1475 flag_no_nonansi_builtin
= iso
;
1479 lang_hooks
.name
= "GNU C89";
1482 /* Set the C 99 standard (without GNU extensions if ISO). */
1484 set_std_c99 (int iso
)
1486 cpp_set_lang (parse_in
, iso
? CLK_STDC99
: CLK_GNUC99
);
1488 flag_no_nonansi_builtin
= iso
;
1493 lang_hooks
.name
= "GNU C99";
1496 /* Set the C 11 standard (without GNU extensions if ISO). */
1498 set_std_c11 (int iso
)
1500 cpp_set_lang (parse_in
, iso
? CLK_STDC11
: CLK_GNUC11
);
1502 flag_no_nonansi_builtin
= iso
;
1507 lang_hooks
.name
= "GNU C11";
1510 /* Set the C++ 98 standard (without GNU extensions if ISO). */
1512 set_std_cxx98 (int iso
)
1514 cpp_set_lang (parse_in
, iso
? CLK_CXX98
: CLK_GNUCXX
);
1515 flag_no_gnu_keywords
= iso
;
1516 flag_no_nonansi_builtin
= iso
;
1518 cxx_dialect
= cxx98
;
1519 lang_hooks
.name
= "GNU C++98";
1522 /* Set the C++ 2011 standard (without GNU extensions if ISO). */
1524 set_std_cxx11 (int iso
)
1526 cpp_set_lang (parse_in
, iso
? CLK_CXX11
: CLK_GNUCXX11
);
1527 flag_no_gnu_keywords
= iso
;
1528 flag_no_nonansi_builtin
= iso
;
1530 /* C++11 includes the C99 standard library. */
1533 cxx_dialect
= cxx11
;
1534 lang_hooks
.name
= "GNU C++11";
1537 /* Set the C++ 2014 draft standard (without GNU extensions if ISO). */
1539 set_std_cxx14 (int iso
)
1541 cpp_set_lang (parse_in
, iso
? CLK_CXX14
: CLK_GNUCXX14
);
1542 flag_no_gnu_keywords
= iso
;
1543 flag_no_nonansi_builtin
= iso
;
1545 /* C++11 includes the C99 standard library. */
1548 cxx_dialect
= cxx14
;
1549 lang_hooks
.name
= "GNU C++14";
1552 /* Set the C++ 201z draft standard (without GNU extensions if ISO). */
1554 set_std_cxx1z (int iso
)
1556 cpp_set_lang (parse_in
, iso
? CLK_CXX1Z
: CLK_GNUCXX1Z
);
1557 flag_no_gnu_keywords
= iso
;
1558 flag_no_nonansi_builtin
= iso
;
1560 /* C++11 includes the C99 standard library. */
1564 cxx_dialect
= cxx1z
;
1565 lang_hooks
.name
= "GNU C++14"; /* Pretend C++14 till standarization. */
1568 /* Args to -d specify what to dump. Silently ignore
1569 unrecognized options; they may be aimed at toplev.c. */
1571 handle_OPT_d (const char *arg
)
1575 while ((c
= *arg
++) != '\0')
1578 case 'M': /* Dump macros only. */
1579 case 'N': /* Dump names. */
1580 case 'D': /* Dump definitions. */
1581 case 'U': /* Dump used macros. */
1582 flag_dump_macros
= c
;
1586 flag_dump_includes
= 1;