1 /* Top level of GCC compilers (cc1, cc1plus, etc.)
2 Copyright (C) 1987-2024 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* This is the top level of cc1/c++.
21 It parses command args, opens files, invokes the various passes
22 in the proper order, and counts the time used by each.
23 Error messages and low-level interface to malloc also handled here. */
27 #include "coretypes.h"
33 #include "alloc-pool.h"
37 #include "optabs-libfuncs.h"
38 #include "insn-config.h"
43 #include "diagnostic.h"
45 #include "tree-inline.h"
46 #include "realmpfr.h" /* For GMP/MPFR/MPC versions, in print_version. */
49 #include "insn-attr.h"
54 #include "tree-diagnostic.h"
57 #include "dwarf2asm.h"
59 #include "common/common-target.h"
60 #include "langhooks.h"
61 #include "cfgloop.h" /* for init_set_costs */
62 #include "hosthooks.h"
64 #include "opts-diagnostic.h"
65 #include "stringpool.h"
71 #include "pass_manager.h"
72 #include "auto-profile.h"
73 #include "dwarf2out.h"
74 #include "ipa-reference.h"
75 #include "symbol-summary.h"
78 #include "ipa-utils.h"
80 #include "omp-offload.h"
81 #include "edit-context.h"
82 #include "tree-pass.h"
84 #include "ipa-fnsummary.h"
85 #include "dump-context.h"
86 #include "print-tree.h"
87 #include "optinfo-emit-json.h"
88 #include "ipa-modref-tree.h"
89 #include "ipa-modref.h"
90 #include "ipa-param-manipulation.h"
92 #include "gcc-urlifier.h"
97 #include <isl/version.h>
100 static void general_init (const char *, bool);
101 static void backend_init (void);
102 static int lang_dependent_init (const char *);
103 static void init_asm_output (const char *);
104 static void finalize ();
106 static void crash_signal (int) ATTRIBUTE_NORETURN
;
107 static void compile_file (void);
109 /* Decoded options, and number of such options. */
110 struct cl_decoded_option
*save_decoded_options
;
111 unsigned int save_decoded_options_count
;
113 /* Vector of saved Optimization decoded command line options. */
114 vec
<cl_decoded_option
> *save_opt_decoded_options
;
116 /* Debug hooks - dependent upon command line options. */
118 const struct gcc_debug_hooks
*debug_hooks
;
120 /* The FUNCTION_DECL for the function currently being compiled,
121 or 0 if between functions. */
122 tree current_function_decl
;
124 /* Set to the FUNC_BEGIN label of the current function, or NULL
126 const char * current_function_func_begin_label
;
128 /* A random sequence of characters, unless overridden by user. */
129 static const char *flag_random_seed
;
131 /* A local time stamp derived from the time of compilation. It will be
132 zero if the system cannot provide a time. It will be -1u, if the
133 user has specified a particular random seed. */
136 /* Random number for this compilation */
137 HOST_WIDE_INT random_seed
;
141 /* When non-NULL, indicates that whenever space is allocated on the
142 stack, the resulting stack pointer must not pass this
143 address---that is, for stacks that grow downward, the stack pointer
144 must always be greater than or equal to this address; for stacks
145 that grow upward, the stack pointer must be less than this address.
146 At present, the rtx may be either a REG or a SYMBOL_REF, although
147 the support provided depends on the backend. */
150 class target_flag_state default_target_flag_state
;
151 #if SWITCHABLE_TARGET
152 class target_flag_state
*this_target_flag_state
= &default_target_flag_state
;
154 #define this_target_flag_state (&default_target_flag_state)
157 /* The user symbol prefix after having resolved same. */
158 const char *user_label_prefix
;
160 /* Output files for assembler code (real compiler output)
161 and debugging dumps. */
165 FILE *callgraph_info_file
= NULL
;
166 static bitmap callgraph_info_external_printed
;
167 FILE *stack_usage_file
= NULL
;
168 static bool no_backend
= false;
170 /* The current working directory of a translation. It's generally the
171 directory from which compilation was initiated, but a preprocessed
172 file may specify the original directory in which it was
175 static const char *src_pwd
;
177 /* Initialize src_pwd with the given string, and return true. If it
178 was already initialized, return false. As a special case, it may
179 be called with a NULL argument to test whether src_pwd has NOT been
183 set_src_pwd (const char *pwd
)
187 if (strcmp (src_pwd
, pwd
) == 0)
193 src_pwd
= xstrdup (pwd
);
197 /* Return the directory from which the translation unit was initiated,
198 in case set_src_pwd() was not called before to assign it a
214 /* Called when the start of a function definition is parsed,
215 this function prints on stderr the name of the function. */
217 announce_function (tree decl
)
221 if (rtl_dump_and_exit
)
222 fprintf (stderr
, "%s ",
223 identifier_to_locale (IDENTIFIER_POINTER (DECL_NAME (decl
))));
225 fprintf (stderr
, " %s",
226 identifier_to_locale (lang_hooks
.decl_printable_name (decl
, 2)));
228 pp_needs_newline (global_dc
->printer
) = true;
229 diagnostic_set_last_function (global_dc
, (diagnostic_info
*) NULL
);
233 /* Initialize local_tick with the time of day, or -1 if
234 flag_random_seed is set. */
237 init_local_tick (void)
239 if (!flag_random_seed
)
241 #ifdef HAVE_GETTIMEOFDAY
245 gettimeofday (&tv
, NULL
);
246 local_tick
= (unsigned) tv
.tv_sec
* 1000 + tv
.tv_usec
/ 1000;
250 time_t now
= time (NULL
);
252 if (now
!= (time_t)-1)
253 local_tick
= (unsigned) now
;
261 /* Obtain the random_seed. Unless NOINIT, initialize it if
262 it's not provided in the command line. */
265 get_random_seed (bool noinit
)
267 if (!random_seed
&& !noinit
)
269 int fd
= open ("/dev/urandom", O_RDONLY
);
272 if (read (fd
, &random_seed
, sizeof (random_seed
))
273 != sizeof (random_seed
))
278 random_seed
= local_tick
^ getpid ();
283 /* Set flag_random_seed to VAL, and if non-null, reinitialize random_seed. */
286 set_random_seed (const char *val
)
288 flag_random_seed
= val
;
289 if (flag_random_seed
)
293 /* When the driver passed in a hex number don't crc it again */
294 random_seed
= strtoul (flag_random_seed
, &endp
, 0);
295 if (!(endp
> flag_random_seed
&& *endp
== 0))
296 random_seed
= crc32_string (0, flag_random_seed
);
300 /* Handler for fatal signals, such as SIGSEGV. These are transformed
301 into ICE messages, which is much more user friendly. In case the
302 error printer crashes, reset the signal to prevent infinite recursion. */
305 crash_signal (int signo
)
307 signal (signo
, SIG_DFL
);
309 /* If we crashed while processing an ASM statement, then be a little more
310 graceful. It's most likely the user's fault. */
311 if (this_is_asm_operands
)
313 output_operand_lossage ("unrecoverable error");
314 exit (FATAL_EXIT_CODE
);
317 internal_error ("%s", strsignal (signo
));
320 /* A subroutine of wrapup_global_declarations. We've come to the end of
321 the compilation unit. All deferred variables should be undeferred,
322 and all incomplete decls should be finalized. */
325 wrapup_global_declaration_1 (tree decl
)
327 /* We're not deferring this any longer. Assignment is conditional to
328 avoid needlessly dirtying PCH pages. */
329 if (HAS_DECL_ASSEMBLER_NAME_P (decl
)
330 && DECL_DEFER_OUTPUT (decl
) != 0)
331 DECL_DEFER_OUTPUT (decl
) = 0;
333 if (VAR_P (decl
) && DECL_SIZE (decl
) == 0)
334 lang_hooks
.finish_incomplete_decl (decl
);
337 /* A subroutine of wrapup_global_declarations. Decide whether or not DECL
338 needs to be output. Return true if it is output. */
341 wrapup_global_declaration_2 (tree decl
)
343 if (TREE_ASM_WRITTEN (decl
) || DECL_EXTERNAL (decl
)
344 || (VAR_P (decl
) && DECL_HAS_VALUE_EXPR_P (decl
)))
347 /* Don't write out static consts, unless we still need them.
349 We also keep static consts if not optimizing (for debugging),
350 unless the user specified -fno-keep-static-consts.
351 ??? They might be better written into the debug information.
352 This is possible when using DWARF.
354 A language processor that wants static constants to be always
355 written out (even if it is not used) is responsible for
356 calling rest_of_decl_compilation itself. E.g. the C front-end
357 calls rest_of_decl_compilation from finish_decl.
358 One motivation for this is that is conventional in some
359 environments to write things like:
360 static const char rcsid[] = "... version string ...";
361 intending to force the string to be in the executable.
363 A language processor that would prefer to have unneeded
364 static constants "optimized away" would just defer writing
365 them out until here. E.g. C++ does this, because static
366 constants are often defined in header files.
368 ??? A tempting alternative (for both C and C++) would be
369 to force a constant to be written if and only if it is
370 defined in a main file, as opposed to an include file. */
372 if (VAR_P (decl
) && TREE_STATIC (decl
))
376 node
= varpool_node::get (decl
);
378 if (!node
&& flag_ltrans
)
380 else if (node
&& node
->definition
)
382 else if (node
&& node
->alias
)
384 else if (!symtab
->global_info_ready
386 || TREE_USED (DECL_ASSEMBLER_NAME (decl
))))
388 else if (node
&& node
->analyzed
)
390 else if (DECL_COMDAT (decl
))
392 else if (TREE_READONLY (decl
) && !TREE_PUBLIC (decl
)
393 && (optimize
|| !flag_keep_static_consts
394 || DECL_ARTIFICIAL (decl
)))
399 rest_of_decl_compilation (decl
, 1, 1);
407 /* Do any final processing required for the declarations in VEC, of
408 which there are LEN. We write out inline functions and variables
409 that have been deferred until this point, but which are required.
410 Returns nonzero if anything was put out. */
413 wrapup_global_declarations (tree
*vec
, int len
)
415 bool reconsider
, output_something
= false;
418 for (i
= 0; i
< len
; i
++)
419 wrapup_global_declaration_1 (vec
[i
]);
421 /* Now emit any global variables or functions that we have been
422 putting off. We need to loop in case one of the things emitted
423 here references another one which comes earlier in the list. */
427 for (i
= 0; i
< len
; i
++)
428 reconsider
|= wrapup_global_declaration_2 (vec
[i
]);
430 output_something
= true;
434 return output_something
;
437 /* Compile an entire translation unit. Write a file of assembly
438 output and various debugging dumps. */
443 timevar_start (TV_PHASE_PARSING
);
444 timevar_push (TV_PARSE_GLOBAL
);
446 /* Parse entire file and generate initial debug information. */
447 lang_hooks
.parse_file ();
449 timevar_pop (TV_PARSE_GLOBAL
);
450 timevar_stop (TV_PHASE_PARSING
);
452 if (flag_dump_locations
)
453 dump_location_info (stderr
);
457 /* Compilation is now finished except for writing
458 what's left of the symbol table output. */
460 if (flag_syntax_only
|| flag_wpa
)
463 /* Reset maximum_field_alignment, it can be adjusted by #pragma pack
464 and this shouldn't influence any types built by the middle-end
465 from now on (like gcov_info_type). */
466 maximum_field_alignment
= initial_max_fld_align
* BITS_PER_UNIT
;
468 ggc_protect_identifiers
= false;
470 /* Run the actual compilation process. */
473 timevar_start (TV_PHASE_OPT_GEN
);
474 symtab
->finalize_compilation_unit ();
475 timevar_stop (TV_PHASE_OPT_GEN
);
478 /* Perform any post compilation-proper parser cleanups and
479 processing. This is currently only needed for the C++ parser,
480 which can be hopefully cleaned up so this hook is no longer
482 if (lang_hooks
.decls
.post_compilation_parsing_cleanups
)
483 lang_hooks
.decls
.post_compilation_parsing_cleanups ();
485 dump_context::get ().finish_any_json_writer ();
490 timevar_start (TV_PHASE_LATE_ASM
);
492 /* Compilation unit is finalized. When producing non-fat LTO object, we are
493 basically finished. */
494 if ((in_lto_p
&& flag_incremental_link
!= INCREMENTAL_LINK_LTO
)
495 || !flag_lto
|| flag_fat_lto_objects
)
497 /* File-scope initialization for AddressSanitizer. */
498 if (flag_sanitize
& SANITIZE_ADDRESS
)
501 if (flag_sanitize
& SANITIZE_THREAD
)
505 hwasan_finish_file ();
509 output_shared_constant_pool ();
510 output_object_blocks ();
511 finish_tm_clone_pairs ();
513 /* Write out any pending weak symbol declarations. */
516 /* This must be at the end before unwind and debug info.
517 Some target ports emit PIC setup thunks here. */
518 insn_locations_init ();
519 targetm
.asm_out
.code_end ();
521 /* Do dbx symbols. */
522 timevar_push (TV_SYMOUT
);
524 #if defined DWARF2_DEBUGGING_INFO || defined DWARF2_UNWIND_INFO
525 dwarf2out_frame_finish ();
529 (*debug_hooks
->finish
) (main_input_filename
);
531 timevar_pop (TV_SYMOUT
);
533 /* Output some stuff at end of file if nec. */
535 dw2_output_indirect_constants ();
537 /* Flush any pending external directives. */
538 process_pending_assemble_externals ();
541 /* Let linker plugin know that this is a slim object and must be LTOed
542 even when user did not ask for it. */
543 if (flag_generate_lto
&& !flag_fat_lto_objects
)
545 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
546 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file
, NULL_TREE
, "__gnu_lto_slim",
547 HOST_WIDE_INT_1U
, 8);
548 #elif defined ASM_OUTPUT_ALIGNED_COMMON
549 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file
, "__gnu_lto_slim",
550 HOST_WIDE_INT_1U
, 8);
552 ASM_OUTPUT_COMMON (asm_out_file
, "__gnu_lto_slim",
558 /* Attach a special .ident directive to the end of the file to identify
559 the version of GCC which compiled this code. The format of the .ident
560 string is patterned after the ones produced by native SVR4 compilers. */
563 const char *pkg_version
= "(GNU) ";
566 if (strcmp ("(GCC) ", pkgversion_string
))
567 pkg_version
= pkgversion_string
;
569 ident_str
= ACONCAT (("GCC: ", pkg_version
, version_string
, NULL
));
570 targetm
.asm_out
.output_ident (ident_str
);
573 /* Auto profile finalization. */
574 if (flag_auto_profile
)
577 /* Invoke registered plugin callbacks. */
578 invoke_plugin_callbacks (PLUGIN_FINISH_UNIT
, NULL
);
580 /* This must be at the end. Some target ports emit end of file directives
581 into the assembly file here, and hence we cannot output anything to the
582 assembly file after this point. */
583 targetm
.asm_out
.file_end ();
585 timevar_stop (TV_PHASE_LATE_ASM
);
588 /* Print version information to FILE.
589 Each line begins with INDENT (for the case where FILE is the
590 assembler output file).
592 If SHOW_GLOBAL_STATE is true (for cc1 etc), we are within the compiler
593 proper and can print pertinent state (e.g. params and plugins).
595 If SHOW_GLOBAL_STATE is false (for use by libgccjit), we are outside the
596 compiler, and we don't hold the mutex on the compiler's global state:
597 we can't print params and plugins, since they might not be initialized,
598 or might be being manipulated by a compile running in another
602 print_version (FILE *file
, const char *indent
, bool show_global_state
)
604 static const char fmt1
[] =
606 N_("%s%s%s %sversion %s (%s)\n%s\tcompiled by GNU C version %s, ")
608 N_("%s%s%s %sversion %s (%s) compiled by CC, ")
611 static const char fmt2
[] =
612 N_("GMP version %s, MPFR version %s, MPC version %s, isl version %s\n");
613 static const char fmt3
[] =
614 N_("%s%swarning: %s header version %s differs from library version %s.\n");
615 static const char fmt4
[] =
616 N_("%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n");
618 #define __VERSION__ "[?]"
621 file
== stderr
? _(fmt1
) : fmt1
,
622 indent
, *indent
!= 0 ? " " : "",
623 lang_hooks
.name
, pkgversion_string
, version_string
, TARGET_NAME
,
624 indent
, __VERSION__
);
626 /* We need to stringify the GMP macro values. Ugh, gmp_version has
627 two string formats, "i.j.k" and "i.j" when k is zero. As of
628 gmp-4.3.0, GMP always uses the 3 number format. */
629 #define GCC_GMP_STRINGIFY_VERSION3(X) #X
630 #define GCC_GMP_STRINGIFY_VERSION2(X) GCC_GMP_STRINGIFY_VERSION3 (X)
631 #define GCC_GMP_VERSION_NUM(X,Y,Z) (((X) << 16L) | ((Y) << 8) | (Z))
632 #define GCC_GMP_VERSION \
633 GCC_GMP_VERSION_NUM(__GNU_MP_VERSION, __GNU_MP_VERSION_MINOR, __GNU_MP_VERSION_PATCHLEVEL)
634 #if GCC_GMP_VERSION < GCC_GMP_VERSION_NUM(4,3,0) && __GNU_MP_VERSION_PATCHLEVEL == 0
635 #define GCC_GMP_STRINGIFY_VERSION \
636 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION) "." \
637 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION_MINOR)
639 #define GCC_GMP_STRINGIFY_VERSION \
640 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION) "." \
641 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION_MINOR) "." \
642 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION_PATCHLEVEL)
645 file
== stderr
? _(fmt2
) : fmt2
,
646 GCC_GMP_STRINGIFY_VERSION
, MPFR_VERSION_STRING
, MPC_VERSION_STRING
,
653 if (strcmp (GCC_GMP_STRINGIFY_VERSION
, gmp_version
))
655 file
== stderr
? _(fmt3
) : fmt3
,
656 indent
, *indent
!= 0 ? " " : "",
657 "GMP", GCC_GMP_STRINGIFY_VERSION
, gmp_version
);
658 if (strcmp (MPFR_VERSION_STRING
, mpfr_get_version ()))
660 file
== stderr
? _(fmt3
) : fmt3
,
661 indent
, *indent
!= 0 ? " " : "",
662 "MPFR", MPFR_VERSION_STRING
, mpfr_get_version ());
663 if (strcmp (MPC_VERSION_STRING
, mpc_get_version ()))
665 file
== stderr
? _(fmt3
) : fmt3
,
666 indent
, *indent
!= 0 ? " " : "",
667 "MPC", MPC_VERSION_STRING
, mpc_get_version ());
669 if (show_global_state
)
672 file
== stderr
? _(fmt4
) : fmt4
,
673 indent
, *indent
!= 0 ? " " : "",
674 param_ggc_min_expand
, param_ggc_min_heapsize
);
676 print_plugins_versions (file
, indent
);
682 /* Open assembly code output file. Do this even if -fsyntax-only is
683 on, because then the driver will have provided the name of a
684 temporary file or bit bucket for us. NAME is the file specified on
685 the command line, possibly NULL. */
687 init_asm_output (const char *name
)
689 if (name
== NULL
&& asm_file_name
== 0)
690 asm_out_file
= stdout
;
693 if (asm_file_name
== 0)
695 int len
= strlen (dump_base_name
);
696 char *dumpname
= XNEWVEC (char, len
+ 6);
698 memcpy (dumpname
, dump_base_name
, len
+ 1);
699 strip_off_ending (dumpname
, len
);
700 strcat (dumpname
, ".s");
701 asm_file_name
= dumpname
;
703 if (!strcmp (asm_file_name
, "-"))
704 asm_out_file
= stdout
;
705 else if (!canonical_filename_eq (asm_file_name
, name
)
706 || !strcmp (asm_file_name
, HOST_BIT_BUCKET
))
707 asm_out_file
= fopen (asm_file_name
, "w");
709 /* Use UNKOWN_LOCATION to prevent gcc from printing the first
710 line in the current file. */
711 fatal_error (UNKNOWN_LOCATION
,
712 "input file %qs is the same as output file",
714 if (asm_out_file
== 0)
715 fatal_error (UNKNOWN_LOCATION
,
716 "cannot open %qs for writing: %m", asm_file_name
);
719 if (!flag_syntax_only
&& !(global_dc
->get_lang_mask () & CL_LTODump
))
721 targetm
.asm_out
.file_start ();
723 if (flag_record_gcc_switches
)
725 if (targetm
.asm_out
.record_gcc_switches
)
728 = gen_producer_string (lang_hooks
.name
,
729 save_decoded_options
,
730 save_decoded_options_count
);
731 targetm
.asm_out
.record_gcc_switches (str
);
734 inform (UNKNOWN_LOCATION
,
735 "%<-frecord-gcc-switches%> is not supported by "
736 "the current target");
739 if (flag_verbose_asm
)
741 print_version (asm_out_file
, ASM_COMMENT_START
, true);
742 fputs (ASM_COMMENT_START
, asm_out_file
);
743 fputs (" options passed: ", asm_out_file
);
744 char *cmdline
= gen_command_line_string (save_decoded_options
,
745 save_decoded_options_count
);
746 fputs (cmdline
, asm_out_file
);
748 fputc ('\n', asm_out_file
);
753 /* A helper function; used as the reallocator function for cpp's line
756 realloc_for_line_map (void *ptr
, size_t len
)
758 return ggc_realloc (ptr
, len
);
761 /* A helper function: used as the allocator function for
762 identifier_to_locale. */
764 alloc_for_identifier_to_locale (size_t len
)
766 return ggc_alloc_atomic (len
);
769 /* Output stack usage information. */
771 output_stack_usage_1 (FILE *cf
)
773 static bool warning_issued
= false;
774 enum stack_usage_kind_type
{ STATIC
= 0, DYNAMIC
, DYNAMIC_BOUNDED
};
775 const char *stack_usage_kind_str
[] = {
780 HOST_WIDE_INT stack_usage
= current_function_static_stack_size
;
781 enum stack_usage_kind_type stack_usage_kind
;
787 warning (0, "stack usage computation not supported for this target");
788 warning_issued
= true;
793 stack_usage_kind
= STATIC
;
795 /* Add the maximum amount of space pushed onto the stack. */
796 if (maybe_ne (current_function_pushed_stack_size
, 0))
799 if (current_function_pushed_stack_size
.is_constant (&extra
))
801 stack_usage
+= extra
;
802 stack_usage_kind
= DYNAMIC_BOUNDED
;
806 extra
= constant_lower_bound (current_function_pushed_stack_size
);
807 stack_usage
+= extra
;
808 stack_usage_kind
= DYNAMIC
;
812 /* Now on to the tricky part: dynamic stack allocation. */
813 if (current_function_allocates_dynamic_stack_space
)
815 if (stack_usage_kind
!= DYNAMIC
)
817 if (current_function_has_unbounded_dynamic_stack_size
)
818 stack_usage_kind
= DYNAMIC
;
820 stack_usage_kind
= DYNAMIC_BOUNDED
;
823 /* Add the size even in the unbounded case, this can't hurt. */
824 stack_usage
+= current_function_dynamic_stack_size
;
827 if (cf
&& flag_callgraph_info
& CALLGRAPH_INFO_STACK_USAGE
)
828 fprintf (cf
, "\\n" HOST_WIDE_INT_PRINT_DEC
" bytes (%s)",
830 stack_usage_kind_str
[stack_usage_kind
]);
832 if (stack_usage_file
)
834 print_decl_identifier (stack_usage_file
, current_function_decl
,
835 PRINT_DECL_ORIGIN
| PRINT_DECL_NAME
836 | PRINT_DECL_REMAP_DEBUG
);
837 fprintf (stack_usage_file
, "\t" HOST_WIDE_INT_PRINT_DEC
"\t%s\n",
838 stack_usage
, stack_usage_kind_str
[stack_usage_kind
]);
841 if (warn_stack_usage
>= 0 && warn_stack_usage
< HOST_WIDE_INT_MAX
)
843 const location_t loc
= DECL_SOURCE_LOCATION (current_function_decl
);
845 if (stack_usage_kind
== DYNAMIC
)
846 warning_at (loc
, OPT_Wstack_usage_
, "stack usage might be unbounded");
847 else if (stack_usage
> warn_stack_usage
)
849 if (stack_usage_kind
== DYNAMIC_BOUNDED
)
851 OPT_Wstack_usage_
, "stack usage might be %wu bytes",
854 warning_at (loc
, OPT_Wstack_usage_
, "stack usage is %wu bytes",
860 /* Dump placeholder node for indirect calls in VCG format. */
862 #define INDIRECT_CALL_NAME "__indirect_call"
865 dump_final_node_vcg_start (FILE *f
, tree decl
)
867 fputs ("node: { title: \"", f
);
869 print_decl_identifier (f
, decl
, PRINT_DECL_UNIQUE_NAME
);
871 fputs (INDIRECT_CALL_NAME
, f
);
872 fputs ("\" label: \"", f
);
875 print_decl_identifier (f
, decl
, PRINT_DECL_NAME
);
877 print_decl_identifier (f
, decl
, PRINT_DECL_ORIGIN
);
880 fputs ("Indirect Call Placeholder", f
);
883 /* Dump final cgraph edge in VCG format. */
886 dump_final_callee_vcg (FILE *f
, location_t location
, tree callee
)
888 if ((!callee
|| DECL_EXTERNAL (callee
))
889 && bitmap_set_bit (callgraph_info_external_printed
,
890 callee
? DECL_UID (callee
) + 1 : 0))
892 dump_final_node_vcg_start (f
, callee
);
893 fputs ("\" shape : ellipse }\n", f
);
896 fputs ("edge: { sourcename: \"", f
);
897 print_decl_identifier (f
, current_function_decl
, PRINT_DECL_UNIQUE_NAME
);
898 fputs ("\" targetname: \"", f
);
900 print_decl_identifier (f
, callee
, PRINT_DECL_UNIQUE_NAME
);
902 fputs (INDIRECT_CALL_NAME
, f
);
903 if (LOCATION_LOCUS (location
) != UNKNOWN_LOCATION
)
905 expanded_location loc
;
906 fputs ("\" label: \"", f
);
907 loc
= expand_location (location
);
908 fprintf (f
, "%s:%d:%d", loc
.file
, loc
.line
, loc
.column
);
913 /* Dump final cgraph node in VCG format. */
916 dump_final_node_vcg (FILE *f
)
918 dump_final_node_vcg_start (f
, current_function_decl
);
920 if (flag_stack_usage_info
921 || (flag_callgraph_info
& CALLGRAPH_INFO_STACK_USAGE
))
922 output_stack_usage_1 (f
);
924 if (flag_callgraph_info
& CALLGRAPH_INFO_DYNAMIC_ALLOC
)
926 fprintf (f
, "\\n%u dynamic objects", vec_safe_length (cfun
->su
->dallocs
));
929 callinfo_dalloc
*cda
;
930 FOR_EACH_VEC_SAFE_ELT (cfun
->su
->dallocs
, i
, cda
)
932 expanded_location loc
= expand_location (cda
->location
);
933 fprintf (f
, "\\n %s", cda
->name
);
934 fprintf (f
, " %s:%d:%d", loc
.file
, loc
.line
, loc
.column
);
937 vec_free (cfun
->su
->dallocs
);
938 cfun
->su
->dallocs
= NULL
;
945 FOR_EACH_VEC_SAFE_ELT (cfun
->su
->callees
, i
, c
)
946 dump_final_callee_vcg (f
, c
->location
, c
->decl
);
947 vec_free (cfun
->su
->callees
);
948 cfun
->su
->callees
= NULL
;
951 /* Output stack usage and callgraph info, as requested. */
953 output_stack_usage (void)
955 if (flag_callgraph_info
)
956 dump_final_node_vcg (callgraph_info_file
);
958 output_stack_usage_1 (NULL
);
961 /* Open an auxiliary output file. */
963 open_auxiliary_file (const char *ext
)
968 filename
= concat (aux_base_name
, ".", ext
, NULL
);
969 file
= fopen (filename
, "w");
971 fatal_error (input_location
, "cannot open %s for writing: %m", filename
);
976 /* Alternative diagnostics callback for reentered ICE reporting. */
979 internal_error_reentered (diagnostic_context
*, const char *, va_list *)
981 /* Flush the dump file if emergency_dump_function itself caused an ICE. */
986 /* Auxiliary callback for the diagnostics code. */
989 internal_error_function (diagnostic_context
*, const char *, va_list *)
991 global_dc
->m_internal_error
= internal_error_reentered
;
993 emergency_dump_function ();
996 /* Initialization of the front end environment, before command line
997 options are parsed. Signal handlers, internationalization etc.
998 ARGV0 is main's argv[0]. */
1000 general_init (const char *argv0
, bool init_signals
)
1004 p
= argv0
+ strlen (argv0
);
1005 while (p
!= argv0
&& !IS_DIR_SEPARATOR (p
[-1]))
1009 xmalloc_set_program_name (progname
);
1013 /* Unlock the stdio streams. */
1014 unlock_std_streams ();
1016 gcc_init_libintl ();
1018 identifier_to_locale_alloc
= alloc_for_identifier_to_locale
;
1019 identifier_to_locale_free
= ggc_free
;
1021 /* Initialize the diagnostics reporting machinery, so option parsing
1022 can give warnings and errors. */
1023 diagnostic_initialize (global_dc
, N_OPTS
);
1024 /* Set a default printer. Language specific initializations will
1025 override it later. */
1026 tree_diagnostics_defaults (global_dc
);
1028 global_dc
->m_source_printing
.enabled
1029 = global_options_init
.x_flag_diagnostics_show_caret
;
1030 global_dc
->m_source_printing
.show_labels_p
1031 = global_options_init
.x_flag_diagnostics_show_labels
;
1032 global_dc
->m_source_printing
.show_line_numbers_p
1033 = global_options_init
.x_flag_diagnostics_show_line_numbers
;
1034 global_dc
->set_show_cwe (global_options_init
.x_flag_diagnostics_show_cwe
);
1035 global_dc
->set_show_rules (global_options_init
.x_flag_diagnostics_show_rules
);
1036 global_dc
->set_path_format
1037 ((enum diagnostic_path_format
)
1038 global_options_init
.x_flag_diagnostics_path_format
);
1039 global_dc
->set_show_path_depths
1040 (global_options_init
.x_flag_diagnostics_show_path_depths
);
1041 global_dc
->set_show_option_requested
1042 (global_options_init
.x_flag_diagnostics_show_option
);
1043 global_dc
->m_source_printing
.min_margin_width
1044 = global_options_init
.x_diagnostics_minimum_margin_width
;
1045 global_dc
->m_show_column
1046 = global_options_init
.x_flag_show_column
;
1047 global_dc
->m_internal_error
= internal_error_function
;
1048 const unsigned lang_mask
= lang_hooks
.option_lang_mask ();
1049 global_dc
->set_option_hooks (option_enabled
,
1054 global_dc
->set_urlifier (make_gcc_urlifier (lang_mask
));
1058 /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages. */
1060 signal (SIGSEGV
, crash_signal
);
1063 signal (SIGILL
, crash_signal
);
1066 signal (SIGBUS
, crash_signal
);
1069 signal (SIGABRT
, crash_signal
);
1071 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
1072 signal (SIGIOT
, crash_signal
);
1075 signal (SIGFPE
, crash_signal
);
1078 /* Other host-specific signal setup. */
1079 (*host_hooks
.extra_signals
)();
1082 /* Initialize the garbage-collector, string pools and tree type hash
1086 input_location
= UNKNOWN_LOCATION
;
1087 line_table
= ggc_alloc
<line_maps
> ();
1088 linemap_init (line_table
, BUILTINS_LOCATION
);
1089 line_table
->m_reallocator
= realloc_for_line_map
;
1090 line_table
->m_round_alloc_size
= ggc_round_alloc_size
;
1091 line_table
->default_range_bits
= 5;
1094 /* Initialize register usage now so switches may override. */
1097 /* Create the singleton holder for global state. This creates the
1099 g
= new gcc::context ();
1101 /* Allow languages and middle-end to register their dumps before the
1102 optimization passes. */
1103 g
->get_dumps ()->register_dumps ();
1105 /* Create the passes. */
1106 g
->set_passes (new gcc::pass_manager (g
));
1108 symtab
= new (ggc_alloc
<symbol_table
> ()) symbol_table ();
1110 statistics_early_init ();
1111 debuginfo_early_init ();
1114 /* Return true if the current target supports -fsection-anchors. */
1117 target_supports_section_anchors_p (void)
1119 if (targetm
.min_anchor_offset
== 0 && targetm
.max_anchor_offset
== 0)
1122 if (targetm
.asm_out
.output_anchor
== NULL
)
1128 /* Parse "N[:M][:...]" into struct align_flags A.
1129 VALUES contains parsed values (in reverse order), all processed
1130 values are popped. */
1133 read_log_maxskip (auto_vec
<unsigned> &values
, align_flags_tuple
*a
)
1135 unsigned n
= values
.pop ();
1137 a
->log
= floor_log2 (n
* 2 - 1);
1139 if (values
.is_empty ())
1140 a
->maxskip
= n
? n
- 1 : 0;
1143 unsigned m
= values
.pop ();
1144 /* -falign-foo=N:M means M-1 max bytes of padding, not M. */
1150 /* Normalize the tuple. */
1154 /* Parse "N[:M[:N2[:M2]]]" string FLAG into a pair of struct align_flags. */
1157 parse_N_M (const char *flag
, align_flags
&a
)
1161 static hash_map
<nofree_string_hash
, align_flags
> cache
;
1162 align_flags
*entry
= cache
.get (flag
);
1169 auto_vec
<unsigned> result_values
;
1170 bool r
= parse_and_check_align_values (flag
, NULL
, result_values
, false,
1175 /* Reverse values for easier manipulation. */
1176 result_values
.reverse ();
1178 read_log_maxskip (result_values
, &a
.levels
[0]);
1179 if (!result_values
.is_empty ())
1180 read_log_maxskip (result_values
, &a
.levels
[1]);
1184 /* N2[:M2] is not specified. This arch has a default for N2.
1185 Before -falign-foo=N:M:N2:M2 was introduced, x86 had a tweak.
1186 -falign-functions=N with N > 8 was adding secondary alignment.
1187 -falign-functions=10 was emitting this before every function:
1190 Now this behavior (and more) can be explicitly requested:
1191 -falign-functions=16:10:8
1192 Retain old behavior if N2 is missing: */
1194 int align
= 1 << a
.levels
[0].log
;
1195 int subalign
= 1 << SUBALIGN_LOG
;
1197 if (a
.levels
[0].log
> SUBALIGN_LOG
1198 && a
.levels
[0].maxskip
>= subalign
- 1)
1200 /* Set N2 unless subalign can never have any effect. */
1201 if (align
> a
.levels
[0].maxskip
+ 1)
1203 a
.levels
[1].log
= SUBALIGN_LOG
;
1204 a
.levels
[1].normalize ();
1210 /* Cache seen value. */
1211 cache
.put (flag
, a
);
1215 /* Process -falign-foo=N[:M[:N2[:M2]]] options. */
1218 parse_alignment_opts (void)
1220 parse_N_M (str_align_loops
, align_loops
);
1221 parse_N_M (str_align_jumps
, align_jumps
);
1222 parse_N_M (str_align_labels
, align_labels
);
1223 parse_N_M (str_align_functions
, align_functions
);
1226 /* Process the options that have been parsed. */
1230 const char *language_string
= lang_hooks
.name
;
1232 maximum_field_alignment
= initial_max_fld_align
* BITS_PER_UNIT
;
1234 /* Some machines may reject certain combinations of options. */
1235 location_t saved_location
= input_location
;
1236 input_location
= UNKNOWN_LOCATION
;
1237 targetm
.target_option
.override ();
1238 input_location
= saved_location
;
1240 if (flag_diagnostics_generate_patch
)
1241 global_dc
->create_edit_context ();
1243 /* Avoid any informative notes in the second run of -fcompare-debug. */
1244 if (flag_compare_debug
)
1245 diagnostic_inhibit_notes (global_dc
);
1247 if (flag_section_anchors
&& !target_supports_section_anchors_p ())
1249 warning_at (UNKNOWN_LOCATION
, OPT_fsection_anchors
,
1250 "this target does not support %qs",
1251 "-fsection-anchors");
1252 flag_section_anchors
= 0;
1255 if (flag_short_enums
== 2)
1256 flag_short_enums
= targetm
.default_short_enums ();
1258 /* Set aux_base_name if not already set. */
1261 else if (dump_base_name
)
1263 const char *name
= dump_base_name
;
1266 if (dump_base_ext
&& (len
= strlen (dump_base_ext
))
1267 && (nlen
= strlen (name
)) && nlen
> len
1268 && strcmp (name
+ nlen
- len
, dump_base_ext
) == 0)
1270 char *p
= xstrndup (name
, nlen
- len
);
1274 aux_base_name
= name
;
1277 aux_base_name
= "gccaux";
1281 || flag_loop_nest_optimize
1282 || flag_graphite_identity
1283 || flag_loop_parallelize_all
)
1284 sorry ("Graphite loop optimizations cannot be used (isl is not available) "
1285 "(%<-fgraphite%>, %<-fgraphite-identity%>, "
1286 "%<-floop-nest-optimize%>, %<-floop-parallelize-all%>)");
1289 if (flag_cf_protection
!= CF_NONE
1290 && !(flag_cf_protection
& CF_SET
))
1292 if (flag_cf_protection
== CF_FULL
)
1294 error_at (UNKNOWN_LOCATION
,
1295 "%<-fcf-protection=full%> is not supported for this "
1297 flag_cf_protection
= CF_NONE
;
1299 if (flag_cf_protection
== CF_BRANCH
)
1301 error_at (UNKNOWN_LOCATION
,
1302 "%<-fcf-protection=branch%> is not supported for this "
1304 flag_cf_protection
= CF_NONE
;
1306 if (flag_cf_protection
== CF_RETURN
)
1308 error_at (UNKNOWN_LOCATION
,
1309 "%<-fcf-protection=return%> is not supported for this "
1311 flag_cf_protection
= CF_NONE
;
1315 /* One region RA really helps to decrease the code size. */
1316 if (!OPTION_SET_P (flag_ira_region
))
1318 = optimize_size
|| !optimize
? IRA_REGION_ONE
: IRA_REGION_MIXED
;
1320 if (!abi_version_at_least (2))
1322 /* -fabi-version=1 support was removed after GCC 4.9. */
1323 error_at (UNKNOWN_LOCATION
,
1324 "%<-fabi-version=1%> is no longer supported");
1325 flag_abi_version
= 2;
1328 if (flag_non_call_exceptions
)
1329 flag_asynchronous_unwind_tables
= 1;
1330 if (flag_asynchronous_unwind_tables
)
1331 flag_unwind_tables
= 1;
1333 if (flag_value_profile_transformations
)
1334 flag_profile_values
= 1;
1336 /* Warn about options that are not supported on this machine. */
1337 #ifndef INSN_SCHEDULING
1338 if (flag_schedule_insns
|| flag_schedule_insns_after_reload
)
1339 warning_at (UNKNOWN_LOCATION
, 0,
1340 "instruction scheduling not supported on this target machine");
1342 if (!DELAY_SLOTS
&& flag_delayed_branch
)
1343 warning_at (UNKNOWN_LOCATION
, 0,
1344 "this target machine does not have delayed branches");
1346 user_label_prefix
= USER_LABEL_PREFIX
;
1347 if (flag_leading_underscore
!= -1)
1349 /* If the default prefix is more complicated than "" or "_",
1350 issue a warning and ignore this option. */
1351 if (user_label_prefix
[0] == 0 ||
1352 (user_label_prefix
[0] == '_' && user_label_prefix
[1] == 0))
1354 user_label_prefix
= flag_leading_underscore
? "_" : "";
1357 warning_at (UNKNOWN_LOCATION
, 0,
1358 "%<-f%sleading-underscore%> not supported on this "
1359 "target machine", flag_leading_underscore
? "" : "no-");
1362 /* If we are in verbose mode, write out the version and maybe all the
1363 option flags in use. */
1366 /* We already printed the version header in main (). */
1369 fputs ("options passed: ", stderr
);
1370 char *cmdline
= gen_command_line_string (save_decoded_options
,
1371 save_decoded_options_count
);
1373 fputs (cmdline
, stderr
);
1375 fputc ('\n', stderr
);
1379 /* CTF is supported for only C at this time. */
1381 && ctf_debug_info_level
> CTFINFO_LEVEL_NONE
)
1383 /* Compiling with -flto results in frontend language of GNU GIMPLE. It
1384 is not useful to warn in that case. */
1385 if (!startswith (lang_hooks
.name
, "GNU GIMPLE"))
1386 inform (UNKNOWN_LOCATION
,
1387 "CTF debug info requested, but not supported for %qs frontend",
1389 ctf_debug_info_level
= CTFINFO_LEVEL_NONE
;
1392 if (flag_dump_final_insns
&& !flag_syntax_only
&& !no_backend
)
1394 FILE *final_output
= fopen (flag_dump_final_insns
, "w");
1397 error_at (UNKNOWN_LOCATION
,
1398 "could not open final insn dump file %qs: %m",
1399 flag_dump_final_insns
);
1400 flag_dump_final_insns
= NULL
;
1402 else if (fclose (final_output
))
1404 error_at (UNKNOWN_LOCATION
,
1405 "could not close zeroed insn dump file %qs: %m",
1406 flag_dump_final_insns
);
1407 flag_dump_final_insns
= NULL
;
1411 /* A lot of code assumes write_symbols == NO_DEBUG if the debugging
1413 if (debug_info_level
== DINFO_LEVEL_NONE
1414 && ctf_debug_info_level
== CTFINFO_LEVEL_NONE
)
1415 write_symbols
= NO_DEBUG
;
1417 if (write_symbols
== NO_DEBUG
)
1419 #ifdef DWARF2_DEBUGGING_INFO
1420 else if (dwarf_debuginfo_p ())
1421 debug_hooks
= &dwarf2_debug_hooks
;
1423 #ifdef CTF_DEBUGGING_INFO
1424 else if (ctf_debuginfo_p ())
1425 debug_hooks
= &dwarf2_debug_hooks
;
1427 #ifdef BTF_DEBUGGING_INFO
1428 else if (btf_debuginfo_p ())
1429 debug_hooks
= &dwarf2_debug_hooks
;
1431 #ifdef VMS_DEBUGGING_INFO
1432 else if (write_symbols
== VMS_DEBUG
|| write_symbols
== VMS_AND_DWARF2_DEBUG
)
1433 debug_hooks
= &vmsdbg_debug_hooks
;
1435 #ifdef DWARF2_LINENO_DEBUGGING_INFO
1436 else if (write_symbols
== DWARF2_DEBUG
)
1437 debug_hooks
= &dwarf2_lineno_debug_hooks
;
1441 gcc_assert (debug_set_count (write_symbols
) <= 1);
1442 error_at (UNKNOWN_LOCATION
,
1443 "target system does not support the %qs debug format",
1444 debug_type_names
[debug_set_to_format (write_symbols
)]);
1447 /* The debug hooks are used to implement -fdump-go-spec because it
1448 gives a simple and stable API for all the information we need to
1450 if (flag_dump_go_spec
!= NULL
)
1451 debug_hooks
= dump_go_spec_init (flag_dump_go_spec
, debug_hooks
);
1453 if (!OPTION_SET_P (dwarf2out_as_loc_support
))
1454 dwarf2out_as_loc_support
= dwarf2out_default_as_loc_support ();
1455 if (!OPTION_SET_P (dwarf2out_as_locview_support
))
1456 dwarf2out_as_locview_support
= dwarf2out_default_as_locview_support ();
1458 if (!OPTION_SET_P (debug_variable_location_views
))
1460 debug_variable_location_views
1461 = (flag_var_tracking
1462 && debug_info_level
>= DINFO_LEVEL_NORMAL
1463 && dwarf_debuginfo_p ()
1465 && dwarf2out_as_loc_support
1466 && dwarf2out_as_locview_support
);
1468 else if (debug_variable_location_views
== -1 && dwarf_version
!= 5)
1470 warning_at (UNKNOWN_LOCATION
, 0,
1471 "without %<-gdwarf-5%>, "
1472 "%<-gvariable-location-views=incompat5%> "
1473 "is equivalent to %<-gvariable-location-views%>");
1474 debug_variable_location_views
= 1;
1477 if (debug_internal_reset_location_views
== 2)
1479 debug_internal_reset_location_views
1480 = (debug_variable_location_views
1481 && targetm
.reset_location_view
);
1483 else if (debug_internal_reset_location_views
1484 && !debug_variable_location_views
)
1486 warning_at (UNKNOWN_LOCATION
, 0,
1487 "%<-ginternal-reset-location-views%> is forced disabled "
1488 "without %<-gvariable-location-views%>");
1489 debug_internal_reset_location_views
= 0;
1492 if (!OPTION_SET_P (debug_inline_points
))
1493 debug_inline_points
= debug_variable_location_views
;
1494 else if (debug_inline_points
&& !debug_nonbind_markers_p
)
1496 warning_at (UNKNOWN_LOCATION
, 0,
1497 "%<-ginline-points%> is forced disabled without "
1498 "%<-gstatement-frontiers%>");
1499 debug_inline_points
= 0;
1502 if (!OPTION_SET_P (flag_tree_cselim
))
1504 if (HAVE_conditional_move
)
1505 flag_tree_cselim
= 1;
1507 flag_tree_cselim
= 0;
1510 /* If auxiliary info generation is desired, open the output file.
1511 This goes in the same directory as the source file--unlike
1512 all the other output files. */
1513 if (flag_gen_aux_info
)
1515 aux_info_file
= fopen (aux_info_file_name
, "w");
1516 if (aux_info_file
== 0)
1517 fatal_error (UNKNOWN_LOCATION
,
1518 "cannot open %s: %m", aux_info_file_name
);
1521 if (!targetm_common
.have_named_sections
)
1523 if (flag_function_sections
)
1525 warning_at (UNKNOWN_LOCATION
, 0,
1526 "%<-ffunction-sections%> not supported for this target");
1527 flag_function_sections
= 0;
1529 if (flag_data_sections
)
1531 warning_at (UNKNOWN_LOCATION
, 0,
1532 "%<-fdata-sections%> not supported for this target");
1533 flag_data_sections
= 0;
1537 if (flag_prefetch_loop_arrays
> 0 && !targetm
.code_for_prefetch
)
1539 warning_at (UNKNOWN_LOCATION
, 0,
1540 "%<-fprefetch-loop-arrays%> not supported for this target");
1541 flag_prefetch_loop_arrays
= 0;
1543 else if (flag_prefetch_loop_arrays
> 0 && !targetm
.have_prefetch ())
1545 warning_at (UNKNOWN_LOCATION
, 0,
1546 "%<-fprefetch-loop-arrays%> not supported for this target "
1547 "(try %<-march%> switches)");
1548 flag_prefetch_loop_arrays
= 0;
1551 /* This combination of options isn't handled for i386 targets and doesn't
1552 make much sense anyway, so don't allow it. */
1553 if (flag_prefetch_loop_arrays
> 0 && optimize_size
)
1555 warning_at (UNKNOWN_LOCATION
, 0,
1556 "%<-fprefetch-loop-arrays%> is not supported with %<-Os%>");
1557 flag_prefetch_loop_arrays
= 0;
1560 /* The presence of IEEE signaling NaNs, implies all math can trap. */
1561 if (flag_signaling_nans
)
1562 flag_trapping_math
= 1;
1564 /* We cannot reassociate if we want traps or signed zeros. */
1565 if (flag_associative_math
&& (flag_trapping_math
|| flag_signed_zeros
))
1567 warning_at (UNKNOWN_LOCATION
, 0,
1568 "%<-fassociative-math%> disabled; other options take "
1570 flag_associative_math
= 0;
1573 if (flag_hardened
&& !HAVE_FHARDENED_SUPPORT
)
1575 warning_at (UNKNOWN_LOCATION
, 0,
1576 "%<-fhardened%> not supported for this target");
1580 /* -fstack-clash-protection is not currently supported on targets
1581 where the stack grows up. */
1582 if (flag_stack_clash_protection
&& !STACK_GROWS_DOWNWARD
)
1584 warning_at (UNKNOWN_LOCATION
, 0,
1585 "%<-fstack-clash-protection%> is not supported on targets "
1586 "where the stack grows from lower to higher addresses");
1587 flag_stack_clash_protection
= 0;
1589 else if (flag_hardened
)
1591 if (!flag_stack_clash_protection
1592 /* Don't enable -fstack-clash-protection when -fstack-check=
1593 is used: it would result in confusing errors. */
1594 && flag_stack_check
== NO_STACK_CHECK
)
1595 flag_stack_clash_protection
= 1;
1596 else if (flag_stack_check
!= NO_STACK_CHECK
)
1597 warning_at (UNKNOWN_LOCATION
, OPT_Whardened
,
1598 "%<-fstack-clash-protection%> is not enabled by "
1599 "%<-fhardened%> because %<-fstack-check%> was "
1600 "specified on the command line");
1603 /* We cannot support -fstack-check= and -fstack-clash-protection at
1605 if (flag_stack_check
!= NO_STACK_CHECK
&& flag_stack_clash_protection
)
1607 warning_at (UNKNOWN_LOCATION
, 0,
1608 "%<-fstack-check=%> and %<-fstack-clash-protection%> are "
1609 "mutually exclusive; disabling %<-fstack-check=%>");
1610 flag_stack_check
= NO_STACK_CHECK
;
1613 /* Targets must be able to place spill slots at lower addresses. If the
1614 target already uses a soft frame pointer, the transition is trivial. */
1615 if (!FRAME_GROWS_DOWNWARD
&& flag_stack_protect
)
1617 if (!flag_stack_protector_set_by_fhardened_p
)
1618 warning_at (UNKNOWN_LOCATION
, 0,
1619 "%<-fstack-protector%> not supported for this target");
1620 flag_stack_protect
= 0;
1622 if (!flag_stack_protect
)
1623 warn_stack_protect
= 0;
1625 /* Address Sanitizer needs porting to each target architecture. */
1627 if ((flag_sanitize
& SANITIZE_ADDRESS
)
1628 && !FRAME_GROWS_DOWNWARD
)
1630 warning_at (UNKNOWN_LOCATION
, 0,
1631 "%<-fsanitize=address%> and %<-fsanitize=kernel-address%> "
1632 "are not supported for this target");
1633 flag_sanitize
&= ~SANITIZE_ADDRESS
;
1636 if ((flag_sanitize
& SANITIZE_USER_ADDRESS
)
1637 && ((targetm
.asan_shadow_offset
== NULL
)
1638 || (targetm
.asan_shadow_offset () == 0)))
1640 warning_at (UNKNOWN_LOCATION
, 0,
1641 "%<-fsanitize=address%> not supported for this target");
1642 flag_sanitize
&= ~SANITIZE_ADDRESS
;
1645 if ((flag_sanitize
& SANITIZE_KERNEL_ADDRESS
)
1646 && (targetm
.asan_shadow_offset
== NULL
1647 && !asan_shadow_offset_set_p ()))
1649 warning_at (UNKNOWN_LOCATION
, 0,
1650 "%<-fsanitize=kernel-address%> with stack protection "
1651 "is not supported without %<-fasan-shadow-offset=%> "
1653 flag_sanitize
&= ~SANITIZE_ADDRESS
;
1656 /* HWAsan requires top byte ignore feature in the backend. */
1657 if (flag_sanitize
& SANITIZE_HWADDRESS
1658 && ! targetm
.memtag
.can_tag_addresses ())
1660 warning_at (UNKNOWN_LOCATION
, 0, "%qs is not supported for this target",
1661 "-fsanitize=hwaddress");
1662 flag_sanitize
&= ~SANITIZE_HWADDRESS
;
1665 if (flag_sanitize
& SANITIZE_SHADOW_CALL_STACK
)
1667 if (!targetm
.have_shadow_call_stack
)
1668 sorry ("%<-fsanitize=shadow-call-stack%> not supported "
1669 "in current platform");
1670 else if (flag_exceptions
)
1671 error_at (UNKNOWN_LOCATION
, "%<-fsanitize=shadow-call-stack%> "
1672 "requires %<-fno-exceptions%>");
1675 HOST_WIDE_INT patch_area_size
, patch_area_start
;
1676 parse_and_check_patch_area (flag_patchable_function_entry
, false,
1677 &patch_area_size
, &patch_area_start
);
1679 /* Do not use IPA optimizations for register allocation if profiler is active
1680 or patchable function entries are inserted for run-time instrumentation
1681 or port does not emit prologue and epilogue as RTL. */
1682 if (profile_flag
|| patch_area_size
1683 || !targetm
.have_prologue () || !targetm
.have_epilogue ())
1686 /* Enable -Werror=coverage-mismatch when -Werror and -Wno-error
1687 have not been set. */
1688 if (!OPTION_SET_P (warnings_are_errors
))
1690 if (warn_coverage_mismatch
1691 && option_unspecified_p (OPT_Wcoverage_mismatch
))
1692 diagnostic_classify_diagnostic (global_dc
, OPT_Wcoverage_mismatch
,
1693 DK_ERROR
, UNKNOWN_LOCATION
);
1694 if (warn_coverage_invalid_linenum
1695 && option_unspecified_p (OPT_Wcoverage_invalid_line_number
))
1696 diagnostic_classify_diagnostic (global_dc
, OPT_Wcoverage_invalid_line_number
,
1697 DK_ERROR
, UNKNOWN_LOCATION
);
1700 /* Save the current optimization options. */
1701 optimization_default_node
1702 = build_optimization_node (&global_options
, &global_options_set
);
1703 optimization_current_node
= optimization_default_node
;
1705 if (flag_checking
>= 2)
1706 hash_table_sanitize_eq_limit
1707 = param_hash_table_verification_limit
;
1709 if (flag_large_source_files
)
1710 line_table
->default_range_bits
= 0;
1712 diagnose_options (&global_options
, &global_options_set
, UNKNOWN_LOCATION
);
1714 /* Please don't change global_options after this point, those changes won't
1715 be reflected in optimization_{default,current}_node. */
1718 /* This function can be called multiple times to reinitialize the compiler
1719 back end when register classes or instruction sets have changed,
1720 before each function. */
1722 backend_init_target (void)
1724 /* This depends on stack_pointer_rtx. */
1725 init_fake_stack_mems ();
1727 /* Sets static_base_value[HARD_FRAME_POINTER_REGNUM], which is
1729 init_alias_target ();
1731 /* Depends on HARD_FRAME_POINTER_REGNUM. */
1735 /* Depends on the enabled attribute. */
1738 /* The following initialization functions need to generate rtl, so
1739 provide a dummy function context for them. */
1740 init_dummy_function_start ();
1742 /* rtx_cost is mode-dependent, so cached values need to be recomputed
1743 on a mode change. */
1745 init_lower_subreg ();
1748 init_expr_target ();
1751 /* We may need to recompute regno_save_code[] and regno_restore_code[]
1752 after a mode change as well. */
1753 caller_save_initialized_p
= false;
1755 expand_dummy_function_end ();
1758 /* Initialize the compiler back end. This function is called only once,
1759 when starting the compiler. */
1766 init_inline_once ();
1767 init_varasm_once ();
1768 save_register_info ();
1770 /* Middle end needs this initialization for default mem attributes
1771 used by early calls to make_decl_rtl. */
1774 /* Middle end needs this initialization for mode tables used to assign
1775 modes to vector variables. */
1779 /* Initialize things that are both lang-dependent and target-dependent.
1780 This function can be called more than once if target parameters change. */
1782 lang_dependent_init_target (void)
1784 /* This creates various _DECL nodes, so needs to be called after the
1785 front end is initialized. It also depends on the HAVE_xxx macros
1786 generated from the target machine description. */
1789 gcc_assert (!this_target_rtl
->target_specific_initialized
);
1792 /* Perform initializations that are lang-dependent or target-dependent.
1793 but matters only for late optimizations and RTL generation. */
1795 static int rtl_initialized
;
1798 initialize_rtl (void)
1800 auto_timevar
tv (g_timer
, TV_INITIALIZE_RTL
);
1802 /* Initialization done just once per compilation, but delayed
1803 till code generation. */
1804 if (!rtl_initialized
)
1806 rtl_initialized
= true;
1808 /* Target specific RTL backend initialization. */
1809 if (!this_target_rtl
->target_specific_initialized
)
1811 backend_init_target ();
1812 this_target_rtl
->target_specific_initialized
= true;
1816 /* Language-dependent initialization. Returns nonzero on success. */
1818 lang_dependent_init (const char *name
)
1820 location_t save_loc
= input_location
;
1821 if (!dump_base_name
)
1823 dump_base_name
= name
&& name
[0] ? name
: "gccdump";
1825 /* We do not want to derive a non-empty dumpbase-ext from an
1826 explicit -dumpbase argument, only from a defaulted
1830 const char *base
= lbasename (dump_base_name
);
1831 const char *ext
= strrchr (base
, '.');
1833 dump_base_ext
= ext
;
1837 /* Other front-end initialization. */
1838 input_location
= BUILTINS_LOCATION
;
1839 if (lang_hooks
.init () == 0)
1841 input_location
= save_loc
;
1845 init_asm_output (name
);
1847 if (!flag_generate_lto
&& !flag_compare_debug
)
1849 /* If stack usage information is desired, open the output file. */
1850 if (flag_stack_usage
)
1851 stack_usage_file
= open_auxiliary_file ("su");
1853 /* If call graph information is desired, open the output file. */
1854 if (flag_callgraph_info
)
1856 callgraph_info_file
= open_auxiliary_file ("ci");
1857 /* Write the file header. */
1858 fprintf (callgraph_info_file
,
1859 "graph: { title: \"%s\"\n", main_input_filename
);
1860 bitmap_obstack_initialize (NULL
);
1861 callgraph_info_external_printed
= BITMAP_ALLOC (NULL
);
1865 flag_stack_usage
= flag_callgraph_info
= false;
1868 /* This creates various _DECL nodes, so needs to be called after the
1869 front end is initialized. */
1872 /* Do the target-specific parts of the initialization. */
1873 lang_dependent_init_target ();
1877 /* If dbx symbol table desired, initialize writing it and output the
1878 predefined types. */
1879 timevar_push (TV_SYMOUT
);
1881 /* Now we have the correct original filename, we can initialize
1883 (*debug_hooks
->init
) (name
);
1885 timevar_pop (TV_SYMOUT
);
1892 /* Reinitialize everything when target parameters, such as register usage,
1895 target_reinit (void)
1900 struct rtl_data saved_x_rtl
;
1901 rtx
*saved_regno_reg_rtx
;
1902 tree saved_optimization_current_node
;
1903 struct target_optabs
*saved_this_fn_optabs
;
1905 /* Temporarily switch to the default optimization node, so that
1906 *this_target_optabs is set to the default, not reflecting
1907 whatever a previous function used for the optimize
1909 saved_optimization_current_node
= optimization_current_node
;
1910 saved_this_fn_optabs
= this_fn_optabs
;
1911 if (saved_optimization_current_node
!= optimization_default_node
)
1913 optimization_current_node
= optimization_default_node
;
1914 cl_optimization_restore
1915 (&global_options
, &global_options_set
,
1916 TREE_OPTIMIZATION (optimization_default_node
));
1918 this_fn_optabs
= this_target_optabs
;
1920 /* Save *crtl and regno_reg_rtx around the reinitialization
1921 to allow target_reinit being called even after prepare_function_start. */
1922 saved_regno_reg_rtx
= regno_reg_rtx
;
1923 if (saved_regno_reg_rtx
)
1925 saved_x_rtl
= *crtl
;
1926 memset (crtl
, '\0', sizeof (*crtl
));
1927 regno_reg_rtx
= NULL
;
1930 this_target_rtl
->target_specific_initialized
= false;
1932 /* This initializes hard_frame_pointer, and calls init_reg_modes_target()
1933 to initialize reg_raw_mode[]. */
1936 /* This invokes target hooks to set fixed_reg[] etc, which is
1940 /* Reinitialize lang-dependent parts. */
1941 lang_dependent_init_target ();
1943 /* Restore the original optimization node. */
1944 if (saved_optimization_current_node
!= optimization_default_node
)
1946 optimization_current_node
= saved_optimization_current_node
;
1947 cl_optimization_restore (&global_options
, &global_options_set
,
1948 TREE_OPTIMIZATION (optimization_current_node
));
1950 this_fn_optabs
= saved_this_fn_optabs
;
1952 /* Restore regno_reg_rtx at the end, as free_after_compilation from
1953 expand_dummy_function_end clears it. */
1954 if (saved_regno_reg_rtx
)
1956 *crtl
= saved_x_rtl
;
1957 regno_reg_rtx
= saved_regno_reg_rtx
;
1958 saved_regno_reg_rtx
= NULL
;
1963 dump_memory_report (const char *header
)
1965 /* Print significant header. */
1966 fputc ('\n', stderr
);
1967 for (unsigned i
= 0; i
< 80; i
++)
1968 fputc ('#', stderr
);
1969 fprintf (stderr
, "\n# %-77s#\n", header
);
1970 for (unsigned i
= 0; i
< 80; i
++)
1971 fputc ('#', stderr
);
1972 fputs ("\n\n", stderr
);
1974 dump_line_table_statistics ();
1975 ggc_print_statistics ();
1976 stringpool_statistics ();
1977 dump_tree_statistics ();
1978 dump_gimple_statistics ();
1979 dump_rtx_statistics ();
1980 dump_alloc_pool_statistics ();
1981 dump_bitmap_statistics ();
1982 dump_hash_table_loc_statistics ();
1983 dump_vec_loc_statistics ();
1984 dump_ggc_loc_statistics ();
1985 dump_alias_stats (stderr
);
1986 dump_pta_stats (stderr
);
1989 /* Clean up: close opened files, etc. */
1994 /* Close the dump files. */
1995 if (flag_gen_aux_info
)
1997 fclose (aux_info_file
);
1998 aux_info_file
= NULL
;
2000 unlink (aux_info_file_name
);
2003 /* Close non-debugging input and output files. Take special care to note
2004 whether fclose returns an error, since the pages might still be on the
2005 buffer chain while the file is open. */
2009 if (ferror (asm_out_file
) != 0)
2010 fatal_error (input_location
, "error writing to %s: %m", asm_file_name
);
2011 if (fclose (asm_out_file
) != 0)
2012 fatal_error (input_location
, "error closing %s: %m", asm_file_name
);
2013 asm_out_file
= NULL
;
2016 if (stack_usage_file
)
2018 fclose (stack_usage_file
);
2019 stack_usage_file
= NULL
;
2022 if (callgraph_info_file
)
2024 fputs ("}\n", callgraph_info_file
);
2025 fclose (callgraph_info_file
);
2026 callgraph_info_file
= NULL
;
2027 BITMAP_FREE (callgraph_info_external_printed
);
2028 bitmap_obstack_release (NULL
);
2032 coverage_remove_note_file ();
2039 g
->get_passes ()->finish_optimization_passes ();
2045 dump_memory_report ("Final");
2048 dump_profile_report ();
2050 if (flag_dbg_cnt_list
)
2051 dbg_cnt_list_all_counters ();
2053 /* Language-specific end of compilation actions. */
2054 lang_hooks
.finish ();
2058 standard_type_bitsize (int bitsize
)
2060 /* As a special exception, we always want __int128 enabled if possible. */
2063 if (bitsize
== CHAR_TYPE_SIZE
2064 || bitsize
== SHORT_TYPE_SIZE
2065 || bitsize
== INT_TYPE_SIZE
2066 || bitsize
== LONG_TYPE_SIZE
2067 || bitsize
== LONG_LONG_TYPE_SIZE
)
2072 /* Initialize the compiler, and compile the input file. */
2076 /* Don't do any more if an error has already occurred. */
2081 timevar_start (TV_PHASE_SETUP
);
2083 if (flag_save_optimization_record
)
2085 dump_context::get ().set_json_writer (new optrecord_json_writer ());
2088 /* This must be run always, because it is needed to compute the FP
2089 predefined macros, such as __LDBL_MAX__, for targets using non
2090 default FP formats. */
2091 init_adjust_machine_modes ();
2092 init_derived_machine_modes ();
2094 /* This must happen after the backend has a chance to process
2095 command line options, but before the parsers are
2097 for (i
= 0; i
< NUM_INT_N_ENTS
; i
++)
2098 if (targetm
.scalar_mode_supported_p (int_n_data
[i
].m
)
2099 && ! standard_type_bitsize (int_n_data
[i
].bitsize
))
2100 int_n_enabled_p
[i
] = true;
2102 int_n_enabled_p
[i
] = false;
2104 /* Initialize mpfrs exponent range. This is important to get
2105 underflow/overflow in a reasonable timeframe. */
2109 FOR_EACH_MODE_IN_CLASS (mode
, MODE_FLOAT
)
2110 if (SCALAR_FLOAT_MODE_P (mode
))
2112 const real_format
*fmt
= REAL_MODE_FORMAT (mode
);
2115 /* fmt->emin - fmt->p + 1 should be enough but the
2116 back-and-forth dance in real_to_decimal_for_mode we
2117 do for checking fails due to rounding effects then. */
2118 if ((fmt
->emin
- fmt
->p
) < min_exp
)
2119 min_exp
= fmt
->emin
- fmt
->p
;
2120 if (fmt
->emax
> max_exp
)
2121 max_exp
= fmt
->emax
;
2124 /* E.g. mpc_norm assumes it can square a number without bothering with
2125 with range scaling, so until that is fixed, double the minimum
2126 and maximum exponents, plus add some buffer for arithmetics
2127 on the squared numbers. */
2128 if (mpfr_set_emin (2 * (min_exp
- 1))
2129 || mpfr_set_emax (2 * (max_exp
+ 1)))
2130 sorry ("mpfr not configured to handle all floating modes");
2132 /* Set up the back-end if requested. */
2136 /* Language-dependent initialization. Returns true on success. */
2137 if (lang_dependent_init (main_input_filename
))
2139 /* Initialize yet another pass. */
2141 ggc_protect_identifiers
= true;
2143 symtab
->initialize ();
2144 init_final (main_input_filename
);
2145 coverage_init (aux_base_name
);
2148 invoke_plugin_callbacks (PLUGIN_START_UNIT
, NULL
);
2150 timevar_stop (TV_PHASE_SETUP
);
2156 timevar_stop (TV_PHASE_SETUP
);
2159 timevar_start (TV_PHASE_FINALIZE
);
2163 timevar_stop (TV_PHASE_FINALIZE
);
2167 toplev::toplev (timer
*external_timer
,
2169 : m_use_TV_TOTAL (external_timer
== NULL
),
2170 m_init_signals (init_signals
)
2173 g_timer
= external_timer
;
2178 if (g_timer
&& m_use_TV_TOTAL
)
2180 g_timer
->stop (TV_TOTAL
);
2181 g_timer
->print (stderr
);
2187 /* Potentially call timevar_init (which will create g_timevars if it
2188 doesn't already exist). */
2191 toplev::start_timevars ()
2193 if (time_report
|| !quiet_flag
|| flag_detailed_statistics
)
2196 timevar_start (TV_TOTAL
);
2199 /* Handle -fself-test. */
2202 toplev::run_self_tests ()
2205 /* Reset some state. */
2206 input_location
= UNKNOWN_LOCATION
;
2207 bitmap_obstack_initialize (NULL
);
2209 /* Run the tests; any failures will lead to an abort of the process.
2210 Use "make selftests-gdb" to run under the debugger. */
2211 ::selftest::run_tests ();
2214 bitmap_obstack_release (NULL
);
2216 inform (UNKNOWN_LOCATION
, "self-tests are not enabled in this build");
2217 #endif /* #if CHECKING_P */
2220 /* Entry point of cc1, cc1plus, jc1, f771, etc.
2221 Exit code is FATAL_EXIT_CODE if can't open files or if there were
2222 any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
2224 It is not safe to call this function more than once. */
2227 toplev::main (int argc
, char **argv
)
2229 /* Parsing and gimplification sometimes need quite large stack.
2230 Increase stack size limits if possible. */
2231 stack_limit_increase (64 * 1024 * 1024);
2233 expandargv (&argc
, &argv
);
2235 /* Initialization of GCC's environment, and diagnostics. */
2236 general_init (argv
[0], m_init_signals
);
2238 /* One-off initialization of options that does not need to be
2239 repeated when options are added for particular functions. */
2240 init_options_once ();
2241 init_opts_obstack ();
2243 /* Initialize global options structures; this must be repeated for
2244 each structure used for parsing options. */
2245 init_options_struct (&global_options
, &global_options_set
);
2246 lang_hooks
.init_options_struct (&global_options
);
2248 /* Init GGC heuristics must be caller after we initialize
2250 init_ggc_heuristics ();
2252 /* Convert the options to an array. */
2253 decode_cmdline_options_to_array_default_mask (argc
,
2254 CONST_CAST2 (const char **,
2256 &save_decoded_options
,
2257 &save_decoded_options_count
);
2259 /* Save Optimization decoded options. */
2260 save_opt_decoded_options
= new vec
<cl_decoded_option
> ();
2261 for (unsigned i
= 1; i
< save_decoded_options_count
; ++i
)
2262 if (save_decoded_options
[i
].opt_index
< cl_options_count
2263 && cl_options
[save_decoded_options
[i
].opt_index
].flags
& CL_OPTIMIZATION
)
2264 save_opt_decoded_options
->safe_push (save_decoded_options
[i
]);
2266 /* Perform language-specific options initialization. */
2267 lang_hooks
.init_options (save_decoded_options_count
, save_decoded_options
);
2269 /* Parse the options and do minimal processing; basically just
2270 enough to default flags appropriately. */
2271 decode_options (&global_options
, &global_options_set
,
2272 save_decoded_options
, save_decoded_options_count
,
2273 UNKNOWN_LOCATION
, global_dc
,
2274 targetm
.target_option
.override
);
2276 handle_common_deferred_options ();
2280 initialize_plugins ();
2282 /* Handle the dump options now that plugins have had a chance to install new
2284 handle_deferred_dump_options ();
2287 print_version (stderr
, "", true);
2290 print_plugins_help (stderr
, "");
2292 /* Exit early if we can (e.g. -help). */
2293 if (!exit_after_options
)
2295 /* Just in case lang_hooks.post_options ends up calling a debug_hook.
2296 This can happen with incorrect pre-processed input. */
2297 debug_hooks
= &do_nothing_debug_hooks
;
2298 /* Allow the front end to perform consistency checks and do further
2299 initialization based on the command line options. This hook also
2300 sets the original filename if appropriate (e.g. foo.i -> foo.c)
2301 so we can correctly initialize debug output. */
2302 no_backend
= lang_hooks
.post_options (&main_input_filename
);
2310 if (flag_self_test
&& !seen_error ())
2313 error_at (UNKNOWN_LOCATION
, "self-tests incompatible with %<-E%>");
2319 if (warningcount
|| errorcount
|| werrorcount
)
2320 print_ignored_options ();
2322 /* Invoke registered plugin callbacks if any. Some plugins could
2323 emit some diagnostics here. */
2324 invoke_plugin_callbacks (PLUGIN_FINISH
, NULL
);
2326 if (flag_diagnostics_generate_patch
)
2328 auto edit_context_ptr
= global_dc
->get_edit_context ();
2329 gcc_assert (edit_context_ptr
);
2332 pp_show_color (&pp
) = pp_show_color (global_dc
->printer
);
2333 edit_context_ptr
->print_diff (&pp
, true);
2337 diagnostic_finish (global_dc
);
2339 finalize_plugins ();
2341 after_memory_report
= true;
2343 if (seen_error () || werrorcount
)
2344 return (FATAL_EXIT_CODE
);
2346 return (SUCCESS_EXIT_CODE
);
2349 /* For those that want to, this function aims to clean up enough state that
2350 you can call toplev::main again. */
2352 toplev::finalize (void)
2355 rtl_initialized
= false;
2356 this_target_rtl
->target_specific_initialized
= false;
2358 /* Needs to be called before cgraph_cc_finalize since it uses symtab. */
2359 ipa_reference_cc_finalize ();
2360 ipa_fnsummary_cc_finalize ();
2361 ipa_modref_cc_finalize ();
2362 ipa_edge_modifications_finalize ();
2363 ipa_icf_cc_finalize ();
2365 ipa_prop_cc_finalize ();
2366 ipa_profile_cc_finalize ();
2367 ipa_sra_cc_finalize ();
2368 cgraph_cc_finalize ();
2369 cgraphunit_cc_finalize ();
2370 symtab_thunks_cc_finalize ();
2371 dwarf2cfi_cc_finalize ();
2372 dwarf2out_cc_finalize ();
2373 gcse_cc_finalize ();
2374 ipa_cp_cc_finalize ();
2375 ira_costs_cc_finalize ();
2376 tree_cc_finalize ();
2377 reginfo_cc_finalize ();
2379 /* save_decoded_options uses opts_obstack, so these must
2380 be cleaned up together. */
2381 obstack_free (&opts_obstack
, NULL
);
2382 XDELETEVEC (save_decoded_options
);
2383 save_decoded_options
= NULL
;
2384 save_decoded_options_count
= 0;
2386 ggc_common_finalize ();
2388 /* Clean up the context (and pass_manager etc). */