1 /* Top level of GCC compilers (cc1, cc1plus, etc.)
2 Copyright (C) 1987-2021 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"
79 #include "omp-offload.h"
80 #include "edit-context.h"
81 #include "tree-pass.h"
83 #include "ipa-fnsummary.h"
84 #include "dump-context.h"
85 #include "print-tree.h"
86 #include "optinfo-emit-json.h"
87 #include "ipa-modref-tree.h"
88 #include "ipa-modref.h"
89 #include "ipa-param-manipulation.h"
92 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
96 #ifdef XCOFF_DEBUGGING_INFO
97 #include "xcoffout.h" /* Needed for external data declarations. */
100 #include "selftest.h"
103 #include <isl/version.h>
106 static void general_init (const char *, bool);
107 static void backend_init (void);
108 static int lang_dependent_init (const char *);
109 static void init_asm_output (const char *);
110 static void finalize (bool);
112 static void crash_signal (int) ATTRIBUTE_NORETURN
;
113 static void compile_file (void);
115 /* Decoded options, and number of such options. */
116 struct cl_decoded_option
*save_decoded_options
;
117 unsigned int save_decoded_options_count
;
119 /* Vector of saved Optimization decoded command line options. */
120 vec
<cl_decoded_option
> *save_opt_decoded_options
;
122 /* Debug hooks - dependent upon command line options. */
124 const struct gcc_debug_hooks
*debug_hooks
;
126 /* The FUNCTION_DECL for the function currently being compiled,
127 or 0 if between functions. */
128 tree current_function_decl
;
130 /* Set to the FUNC_BEGIN label of the current function, or NULL
132 const char * current_function_func_begin_label
;
134 /* A random sequence of characters, unless overridden by user. */
135 static const char *flag_random_seed
;
137 /* A local time stamp derived from the time of compilation. It will be
138 zero if the system cannot provide a time. It will be -1u, if the
139 user has specified a particular random seed. */
142 /* Random number for this compilation */
143 HOST_WIDE_INT random_seed
;
147 /* When non-NULL, indicates that whenever space is allocated on the
148 stack, the resulting stack pointer must not pass this
149 address---that is, for stacks that grow downward, the stack pointer
150 must always be greater than or equal to this address; for stacks
151 that grow upward, the stack pointer must be less than this address.
152 At present, the rtx may be either a REG or a SYMBOL_REF, although
153 the support provided depends on the backend. */
156 class target_flag_state default_target_flag_state
;
157 #if SWITCHABLE_TARGET
158 class target_flag_state
*this_target_flag_state
= &default_target_flag_state
;
160 #define this_target_flag_state (&default_target_flag_state)
163 /* The user symbol prefix after having resolved same. */
164 const char *user_label_prefix
;
166 /* Output files for assembler code (real compiler output)
167 and debugging dumps. */
171 FILE *callgraph_info_file
= NULL
;
172 static bitmap callgraph_info_external_printed
;
173 FILE *stack_usage_file
= NULL
;
175 /* The current working directory of a translation. It's generally the
176 directory from which compilation was initiated, but a preprocessed
177 file may specify the original directory in which it was
180 static const char *src_pwd
;
182 /* Initialize src_pwd with the given string, and return true. If it
183 was already initialized, return false. As a special case, it may
184 be called with a NULL argument to test whether src_pwd has NOT been
188 set_src_pwd (const char *pwd
)
192 if (strcmp (src_pwd
, pwd
) == 0)
198 src_pwd
= xstrdup (pwd
);
202 /* Return the directory from which the translation unit was initiated,
203 in case set_src_pwd() was not called before to assign it a
219 /* Called when the start of a function definition is parsed,
220 this function prints on stderr the name of the function. */
222 announce_function (tree decl
)
226 if (rtl_dump_and_exit
)
227 fprintf (stderr
, "%s ",
228 identifier_to_locale (IDENTIFIER_POINTER (DECL_NAME (decl
))));
230 fprintf (stderr
, " %s",
231 identifier_to_locale (lang_hooks
.decl_printable_name (decl
, 2)));
233 pp_needs_newline (global_dc
->printer
) = true;
234 diagnostic_set_last_function (global_dc
, (diagnostic_info
*) NULL
);
238 /* Initialize local_tick with the time of day, or -1 if
239 flag_random_seed is set. */
242 init_local_tick (void)
244 if (!flag_random_seed
)
246 #ifdef HAVE_GETTIMEOFDAY
250 gettimeofday (&tv
, NULL
);
251 local_tick
= (unsigned) tv
.tv_sec
* 1000 + tv
.tv_usec
/ 1000;
255 time_t now
= time (NULL
);
257 if (now
!= (time_t)-1)
258 local_tick
= (unsigned) now
;
266 /* Obtain the random_seed. Unless NOINIT, initialize it if
267 it's not provided in the command line. */
270 get_random_seed (bool noinit
)
272 if (!random_seed
&& !noinit
)
274 int fd
= open ("/dev/urandom", O_RDONLY
);
277 if (read (fd
, &random_seed
, sizeof (random_seed
))
278 != sizeof (random_seed
))
283 random_seed
= local_tick
^ getpid ();
288 /* Set flag_random_seed to VAL, and if non-null, reinitialize random_seed. */
291 set_random_seed (const char *val
)
293 flag_random_seed
= val
;
294 if (flag_random_seed
)
298 /* When the driver passed in a hex number don't crc it again */
299 random_seed
= strtoul (flag_random_seed
, &endp
, 0);
300 if (!(endp
> flag_random_seed
&& *endp
== 0))
301 random_seed
= crc32_string (0, flag_random_seed
);
305 /* Handler for fatal signals, such as SIGSEGV. These are transformed
306 into ICE messages, which is much more user friendly. In case the
307 error printer crashes, reset the signal to prevent infinite recursion. */
310 crash_signal (int signo
)
312 signal (signo
, SIG_DFL
);
314 /* If we crashed while processing an ASM statement, then be a little more
315 graceful. It's most likely the user's fault. */
316 if (this_is_asm_operands
)
318 output_operand_lossage ("unrecoverable error");
319 exit (FATAL_EXIT_CODE
);
322 internal_error ("%s", strsignal (signo
));
325 /* A subroutine of wrapup_global_declarations. We've come to the end of
326 the compilation unit. All deferred variables should be undeferred,
327 and all incomplete decls should be finalized. */
330 wrapup_global_declaration_1 (tree decl
)
332 /* We're not deferring this any longer. Assignment is conditional to
333 avoid needlessly dirtying PCH pages. */
334 if (CODE_CONTAINS_STRUCT (TREE_CODE (decl
), TS_DECL_WITH_VIS
)
335 && DECL_DEFER_OUTPUT (decl
) != 0)
336 DECL_DEFER_OUTPUT (decl
) = 0;
338 if (VAR_P (decl
) && DECL_SIZE (decl
) == 0)
339 lang_hooks
.finish_incomplete_decl (decl
);
342 /* A subroutine of wrapup_global_declarations. Decide whether or not DECL
343 needs to be output. Return true if it is output. */
346 wrapup_global_declaration_2 (tree decl
)
348 if (TREE_ASM_WRITTEN (decl
) || DECL_EXTERNAL (decl
)
349 || (VAR_P (decl
) && DECL_HAS_VALUE_EXPR_P (decl
)))
352 /* Don't write out static consts, unless we still need them.
354 We also keep static consts if not optimizing (for debugging),
355 unless the user specified -fno-keep-static-consts.
356 ??? They might be better written into the debug information.
357 This is possible when using DWARF.
359 A language processor that wants static constants to be always
360 written out (even if it is not used) is responsible for
361 calling rest_of_decl_compilation itself. E.g. the C front-end
362 calls rest_of_decl_compilation from finish_decl.
363 One motivation for this is that is conventional in some
364 environments to write things like:
365 static const char rcsid[] = "... version string ...";
366 intending to force the string to be in the executable.
368 A language processor that would prefer to have unneeded
369 static constants "optimized away" would just defer writing
370 them out until here. E.g. C++ does this, because static
371 constants are often defined in header files.
373 ??? A tempting alternative (for both C and C++) would be
374 to force a constant to be written if and only if it is
375 defined in a main file, as opposed to an include file. */
377 if (VAR_P (decl
) && TREE_STATIC (decl
))
381 node
= varpool_node::get (decl
);
383 if (!node
&& flag_ltrans
)
385 else if (node
&& node
->definition
)
387 else if (node
&& node
->alias
)
389 else if (!symtab
->global_info_ready
391 || TREE_USED (DECL_ASSEMBLER_NAME (decl
))))
393 else if (node
&& node
->analyzed
)
395 else if (DECL_COMDAT (decl
))
397 else if (TREE_READONLY (decl
) && !TREE_PUBLIC (decl
)
398 && (optimize
|| !flag_keep_static_consts
399 || DECL_ARTIFICIAL (decl
)))
404 rest_of_decl_compilation (decl
, 1, 1);
412 /* Do any final processing required for the declarations in VEC, of
413 which there are LEN. We write out inline functions and variables
414 that have been deferred until this point, but which are required.
415 Returns nonzero if anything was put out. */
418 wrapup_global_declarations (tree
*vec
, int len
)
420 bool reconsider
, output_something
= false;
423 for (i
= 0; i
< len
; i
++)
424 wrapup_global_declaration_1 (vec
[i
]);
426 /* Now emit any global variables or functions that we have been
427 putting off. We need to loop in case one of the things emitted
428 here references another one which comes earlier in the list. */
432 for (i
= 0; i
< len
; i
++)
433 reconsider
|= wrapup_global_declaration_2 (vec
[i
]);
435 output_something
= true;
439 return output_something
;
442 /* Compile an entire translation unit. Write a file of assembly
443 output and various debugging dumps. */
448 timevar_start (TV_PHASE_PARSING
);
449 timevar_push (TV_PARSE_GLOBAL
);
451 /* Parse entire file and generate initial debug information. */
452 lang_hooks
.parse_file ();
454 timevar_pop (TV_PARSE_GLOBAL
);
455 timevar_stop (TV_PHASE_PARSING
);
457 if (flag_dump_locations
)
458 dump_location_info (stderr
);
460 /* Compilation is now finished except for writing
461 what's left of the symbol table output. */
463 if (flag_syntax_only
|| flag_wpa
)
466 /* Reset maximum_field_alignment, it can be adjusted by #pragma pack
467 and this shouldn't influence any types built by the middle-end
468 from now on (like gcov_info_type). */
469 maximum_field_alignment
= initial_max_fld_align
* BITS_PER_UNIT
;
471 ggc_protect_identifiers
= false;
473 /* Run the actual compilation process. */
476 timevar_start (TV_PHASE_OPT_GEN
);
477 symtab
->finalize_compilation_unit ();
478 timevar_stop (TV_PHASE_OPT_GEN
);
481 /* Perform any post compilation-proper parser cleanups and
482 processing. This is currently only needed for the C++ parser,
483 which can be hopefully cleaned up so this hook is no longer
485 if (lang_hooks
.decls
.post_compilation_parsing_cleanups
)
486 lang_hooks
.decls
.post_compilation_parsing_cleanups ();
488 dump_context::get ().finish_any_json_writer ();
493 timevar_start (TV_PHASE_LATE_ASM
);
495 /* Compilation unit is finalized. When producing non-fat LTO object, we are
496 basically finished. */
497 if ((in_lto_p
&& flag_incremental_link
!= INCREMENTAL_LINK_LTO
)
498 || !flag_lto
|| flag_fat_lto_objects
)
500 /* File-scope initialization for AddressSanitizer. */
501 if (flag_sanitize
& SANITIZE_ADDRESS
)
504 if (flag_sanitize
& SANITIZE_THREAD
)
508 hwasan_finish_file ();
512 output_shared_constant_pool ();
513 output_object_blocks ();
514 finish_tm_clone_pairs ();
516 /* Write out any pending weak symbol declarations. */
519 /* This must be at the end before unwind and debug info.
520 Some target ports emit PIC setup thunks here. */
521 insn_locations_init ();
522 targetm
.asm_out
.code_end ();
524 /* Do dbx symbols. */
525 timevar_push (TV_SYMOUT
);
527 #if defined DWARF2_DEBUGGING_INFO || defined DWARF2_UNWIND_INFO
528 dwarf2out_frame_finish ();
532 (*debug_hooks
->finish
) (main_input_filename
);
534 timevar_pop (TV_SYMOUT
);
536 /* Output some stuff at end of file if nec. */
538 dw2_output_indirect_constants ();
540 /* Flush any pending external directives. */
541 process_pending_assemble_externals ();
544 /* Let linker plugin know that this is a slim object and must be LTOed
545 even when user did not ask for it. */
546 if (flag_generate_lto
&& !flag_fat_lto_objects
)
548 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
549 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file
, NULL_TREE
, "__gnu_lto_slim",
550 HOST_WIDE_INT_1U
, 8);
551 #elif defined ASM_OUTPUT_ALIGNED_COMMON
552 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file
, "__gnu_lto_slim",
553 HOST_WIDE_INT_1U
, 8);
555 ASM_OUTPUT_COMMON (asm_out_file
, "__gnu_lto_slim",
561 /* Attach a special .ident directive to the end of the file to identify
562 the version of GCC which compiled this code. The format of the .ident
563 string is patterned after the ones produced by native SVR4 compilers. */
566 const char *pkg_version
= "(GNU) ";
569 if (strcmp ("(GCC) ", pkgversion_string
))
570 pkg_version
= pkgversion_string
;
572 ident_str
= ACONCAT (("GCC: ", pkg_version
, version_string
, NULL
));
573 targetm
.asm_out
.output_ident (ident_str
);
576 /* Auto profile finalization. */
577 if (flag_auto_profile
)
580 /* Invoke registered plugin callbacks. */
581 invoke_plugin_callbacks (PLUGIN_FINISH_UNIT
, NULL
);
583 /* This must be at the end. Some target ports emit end of file directives
584 into the assembly file here, and hence we cannot output anything to the
585 assembly file after this point. */
586 targetm
.asm_out
.file_end ();
588 timevar_stop (TV_PHASE_LATE_ASM
);
591 /* Print version information to FILE.
592 Each line begins with INDENT (for the case where FILE is the
593 assembler output file).
595 If SHOW_GLOBAL_STATE is true (for cc1 etc), we are within the compiler
596 proper and can print pertinent state (e.g. params and plugins).
598 If SHOW_GLOBAL_STATE is false (for use by libgccjit), we are outside the
599 compiler, and we don't hold the mutex on the compiler's global state:
600 we can't print params and plugins, since they might not be initialized,
601 or might be being manipulated by a compile running in another
605 print_version (FILE *file
, const char *indent
, bool show_global_state
)
607 static const char fmt1
[] =
609 N_("%s%s%s %sversion %s (%s)\n%s\tcompiled by GNU C version %s, ")
611 N_("%s%s%s %sversion %s (%s) compiled by CC, ")
614 static const char fmt2
[] =
615 N_("GMP version %s, MPFR version %s, MPC version %s, isl version %s\n");
616 static const char fmt3
[] =
617 N_("%s%swarning: %s header version %s differs from library version %s.\n");
618 static const char fmt4
[] =
619 N_("%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n");
621 #define __VERSION__ "[?]"
624 file
== stderr
? _(fmt1
) : fmt1
,
625 indent
, *indent
!= 0 ? " " : "",
626 lang_hooks
.name
, pkgversion_string
, version_string
, TARGET_NAME
,
627 indent
, __VERSION__
);
629 /* We need to stringify the GMP macro values. Ugh, gmp_version has
630 two string formats, "i.j.k" and "i.j" when k is zero. As of
631 gmp-4.3.0, GMP always uses the 3 number format. */
632 #define GCC_GMP_STRINGIFY_VERSION3(X) #X
633 #define GCC_GMP_STRINGIFY_VERSION2(X) GCC_GMP_STRINGIFY_VERSION3 (X)
634 #define GCC_GMP_VERSION_NUM(X,Y,Z) (((X) << 16L) | ((Y) << 8) | (Z))
635 #define GCC_GMP_VERSION \
636 GCC_GMP_VERSION_NUM(__GNU_MP_VERSION, __GNU_MP_VERSION_MINOR, __GNU_MP_VERSION_PATCHLEVEL)
637 #if GCC_GMP_VERSION < GCC_GMP_VERSION_NUM(4,3,0) && __GNU_MP_VERSION_PATCHLEVEL == 0
638 #define GCC_GMP_STRINGIFY_VERSION \
639 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION) "." \
640 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION_MINOR)
642 #define GCC_GMP_STRINGIFY_VERSION \
643 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION) "." \
644 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION_MINOR) "." \
645 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION_PATCHLEVEL)
648 file
== stderr
? _(fmt2
) : fmt2
,
649 GCC_GMP_STRINGIFY_VERSION
, MPFR_VERSION_STRING
, MPC_VERSION_STRING
,
656 if (strcmp (GCC_GMP_STRINGIFY_VERSION
, gmp_version
))
658 file
== stderr
? _(fmt3
) : fmt3
,
659 indent
, *indent
!= 0 ? " " : "",
660 "GMP", GCC_GMP_STRINGIFY_VERSION
, gmp_version
);
661 if (strcmp (MPFR_VERSION_STRING
, mpfr_get_version ()))
663 file
== stderr
? _(fmt3
) : fmt3
,
664 indent
, *indent
!= 0 ? " " : "",
665 "MPFR", MPFR_VERSION_STRING
, mpfr_get_version ());
666 if (strcmp (MPC_VERSION_STRING
, mpc_get_version ()))
668 file
== stderr
? _(fmt3
) : fmt3
,
669 indent
, *indent
!= 0 ? " " : "",
670 "MPC", MPC_VERSION_STRING
, mpc_get_version ());
672 if (show_global_state
)
675 file
== stderr
? _(fmt4
) : fmt4
,
676 indent
, *indent
!= 0 ? " " : "",
677 param_ggc_min_expand
, param_ggc_min_heapsize
);
679 print_plugins_versions (file
, indent
);
685 /* Open assembly code output file. Do this even if -fsyntax-only is
686 on, because then the driver will have provided the name of a
687 temporary file or bit bucket for us. NAME is the file specified on
688 the command line, possibly NULL. */
690 init_asm_output (const char *name
)
692 if (name
== NULL
&& asm_file_name
== 0)
693 asm_out_file
= stdout
;
696 if (asm_file_name
== 0)
698 int len
= strlen (dump_base_name
);
699 char *dumpname
= XNEWVEC (char, len
+ 6);
701 memcpy (dumpname
, dump_base_name
, len
+ 1);
702 strip_off_ending (dumpname
, len
);
703 strcat (dumpname
, ".s");
704 asm_file_name
= dumpname
;
706 if (!strcmp (asm_file_name
, "-"))
707 asm_out_file
= stdout
;
708 else if (!canonical_filename_eq (asm_file_name
, name
)
709 || !strcmp (asm_file_name
, HOST_BIT_BUCKET
))
710 asm_out_file
= fopen (asm_file_name
, "w");
712 /* Use UNKOWN_LOCATION to prevent gcc from printing the first
713 line in the current file. */
714 fatal_error (UNKNOWN_LOCATION
,
715 "input file %qs is the same as output file",
717 if (asm_out_file
== 0)
718 fatal_error (UNKNOWN_LOCATION
,
719 "cannot open %qs for writing: %m", asm_file_name
);
722 if (!flag_syntax_only
)
724 targetm
.asm_out
.file_start ();
726 if (flag_record_gcc_switches
)
728 if (targetm
.asm_out
.record_gcc_switches
)
731 = gen_producer_string (lang_hooks
.name
,
732 save_decoded_options
,
733 save_decoded_options_count
);
734 targetm
.asm_out
.record_gcc_switches (str
);
737 inform (UNKNOWN_LOCATION
,
738 "%<-frecord-gcc-switches%> is not supported by "
739 "the current target");
742 if (flag_verbose_asm
)
744 print_version (asm_out_file
, ASM_COMMENT_START
, true);
745 fputs (ASM_COMMENT_START
, asm_out_file
);
746 fputs (" options passed: ", asm_out_file
);
747 char *cmdline
= gen_command_line_string (save_decoded_options
,
748 save_decoded_options_count
);
749 fputs (cmdline
, asm_out_file
);
751 fputc ('\n', asm_out_file
);
756 /* A helper function; used as the reallocator function for cpp's line
759 realloc_for_line_map (void *ptr
, size_t len
)
761 return ggc_realloc (ptr
, len
);
764 /* A helper function: used as the allocator function for
765 identifier_to_locale. */
767 alloc_for_identifier_to_locale (size_t len
)
769 return ggc_alloc_atomic (len
);
772 /* Output stack usage information. */
774 output_stack_usage_1 (FILE *cf
)
776 static bool warning_issued
= false;
777 enum stack_usage_kind_type
{ STATIC
= 0, DYNAMIC
, DYNAMIC_BOUNDED
};
778 const char *stack_usage_kind_str
[] = {
783 HOST_WIDE_INT stack_usage
= current_function_static_stack_size
;
784 enum stack_usage_kind_type stack_usage_kind
;
790 warning (0, "stack usage computation not supported for this target");
791 warning_issued
= true;
796 stack_usage_kind
= STATIC
;
798 /* Add the maximum amount of space pushed onto the stack. */
799 if (maybe_ne (current_function_pushed_stack_size
, 0))
802 if (current_function_pushed_stack_size
.is_constant (&extra
))
804 stack_usage
+= extra
;
805 stack_usage_kind
= DYNAMIC_BOUNDED
;
809 extra
= constant_lower_bound (current_function_pushed_stack_size
);
810 stack_usage
+= extra
;
811 stack_usage_kind
= DYNAMIC
;
815 /* Now on to the tricky part: dynamic stack allocation. */
816 if (current_function_allocates_dynamic_stack_space
)
818 if (stack_usage_kind
!= DYNAMIC
)
820 if (current_function_has_unbounded_dynamic_stack_size
)
821 stack_usage_kind
= DYNAMIC
;
823 stack_usage_kind
= DYNAMIC_BOUNDED
;
826 /* Add the size even in the unbounded case, this can't hurt. */
827 stack_usage
+= current_function_dynamic_stack_size
;
830 if (cf
&& flag_callgraph_info
& CALLGRAPH_INFO_STACK_USAGE
)
831 fprintf (cf
, "\\n" HOST_WIDE_INT_PRINT_DEC
" bytes (%s)",
833 stack_usage_kind_str
[stack_usage_kind
]);
835 if (stack_usage_file
)
837 print_decl_identifier (stack_usage_file
, current_function_decl
,
838 PRINT_DECL_ORIGIN
| PRINT_DECL_NAME
);
839 fprintf (stack_usage_file
, "\t" HOST_WIDE_INT_PRINT_DEC
"\t%s\n",
840 stack_usage
, stack_usage_kind_str
[stack_usage_kind
]);
843 if (warn_stack_usage
>= 0 && warn_stack_usage
< HOST_WIDE_INT_MAX
)
845 const location_t loc
= DECL_SOURCE_LOCATION (current_function_decl
);
847 if (stack_usage_kind
== DYNAMIC
)
848 warning_at (loc
, OPT_Wstack_usage_
, "stack usage might be unbounded");
849 else if (stack_usage
> warn_stack_usage
)
851 if (stack_usage_kind
== DYNAMIC_BOUNDED
)
853 OPT_Wstack_usage_
, "stack usage might be %wu bytes",
856 warning_at (loc
, OPT_Wstack_usage_
, "stack usage is %wu bytes",
862 /* Dump placeholder node for indirect calls in VCG format. */
864 #define INDIRECT_CALL_NAME "__indirect_call"
867 dump_final_node_vcg_start (FILE *f
, tree decl
)
869 fputs ("node: { title: \"", f
);
871 print_decl_identifier (f
, decl
, PRINT_DECL_UNIQUE_NAME
);
873 fputs (INDIRECT_CALL_NAME
, f
);
874 fputs ("\" label: \"", f
);
877 print_decl_identifier (f
, decl
, PRINT_DECL_NAME
);
879 print_decl_identifier (f
, decl
, PRINT_DECL_ORIGIN
);
882 fputs ("Indirect Call Placeholder", f
);
885 /* Dump final cgraph edge in VCG format. */
888 dump_final_callee_vcg (FILE *f
, location_t location
, tree callee
)
890 if ((!callee
|| DECL_EXTERNAL (callee
))
891 && bitmap_set_bit (callgraph_info_external_printed
,
892 callee
? DECL_UID (callee
) + 1 : 0))
894 dump_final_node_vcg_start (f
, callee
);
895 fputs ("\" shape : ellipse }\n", f
);
898 fputs ("edge: { sourcename: \"", f
);
899 print_decl_identifier (f
, current_function_decl
, PRINT_DECL_UNIQUE_NAME
);
900 fputs ("\" targetname: \"", f
);
902 print_decl_identifier (f
, callee
, PRINT_DECL_UNIQUE_NAME
);
904 fputs (INDIRECT_CALL_NAME
, f
);
905 if (LOCATION_LOCUS (location
) != UNKNOWN_LOCATION
)
907 expanded_location loc
;
908 fputs ("\" label: \"", f
);
909 loc
= expand_location (location
);
910 fprintf (f
, "%s:%d:%d", loc
.file
, loc
.line
, loc
.column
);
915 /* Dump final cgraph node in VCG format. */
918 dump_final_node_vcg (FILE *f
)
920 dump_final_node_vcg_start (f
, current_function_decl
);
922 if (flag_stack_usage_info
923 || (flag_callgraph_info
& CALLGRAPH_INFO_STACK_USAGE
))
924 output_stack_usage_1 (f
);
926 if (flag_callgraph_info
& CALLGRAPH_INFO_DYNAMIC_ALLOC
)
928 fprintf (f
, "\\n%u dynamic objects", vec_safe_length (cfun
->su
->dallocs
));
931 callinfo_dalloc
*cda
;
932 FOR_EACH_VEC_SAFE_ELT (cfun
->su
->dallocs
, i
, cda
)
934 expanded_location loc
= expand_location (cda
->location
);
935 fprintf (f
, "\\n %s", cda
->name
);
936 fprintf (f
, " %s:%d:%d", loc
.file
, loc
.line
, loc
.column
);
939 vec_free (cfun
->su
->dallocs
);
940 cfun
->su
->dallocs
= NULL
;
947 FOR_EACH_VEC_SAFE_ELT (cfun
->su
->callees
, i
, c
)
948 dump_final_callee_vcg (f
, c
->location
, c
->decl
);
949 vec_free (cfun
->su
->callees
);
950 cfun
->su
->callees
= NULL
;
953 /* Output stack usage and callgraph info, as requested. */
955 output_stack_usage (void)
957 if (flag_callgraph_info
)
958 dump_final_node_vcg (callgraph_info_file
);
960 output_stack_usage_1 (NULL
);
963 /* Open an auxiliary output file. */
965 open_auxiliary_file (const char *ext
)
970 filename
= concat (aux_base_name
, ".", ext
, NULL
);
971 file
= fopen (filename
, "w");
973 fatal_error (input_location
, "cannot open %s for writing: %m", filename
);
978 /* Alternative diagnostics callback for reentered ICE reporting. */
981 internal_error_reentered (diagnostic_context
*, const char *, va_list *)
983 /* Flush the dump file if emergency_dump_function itself caused an ICE. */
988 /* Auxiliary callback for the diagnostics code. */
991 internal_error_function (diagnostic_context
*, const char *, va_list *)
993 global_dc
->internal_error
= internal_error_reentered
;
995 emergency_dump_function ();
998 /* Initialization of the front end environment, before command line
999 options are parsed. Signal handlers, internationalization etc.
1000 ARGV0 is main's argv[0]. */
1002 general_init (const char *argv0
, bool init_signals
)
1006 p
= argv0
+ strlen (argv0
);
1007 while (p
!= argv0
&& !IS_DIR_SEPARATOR (p
[-1]))
1011 xmalloc_set_program_name (progname
);
1015 /* Unlock the stdio streams. */
1016 unlock_std_streams ();
1018 gcc_init_libintl ();
1020 identifier_to_locale_alloc
= alloc_for_identifier_to_locale
;
1021 identifier_to_locale_free
= ggc_free
;
1023 /* Initialize the diagnostics reporting machinery, so option parsing
1024 can give warnings and errors. */
1025 diagnostic_initialize (global_dc
, N_OPTS
);
1026 global_dc
->lang_mask
= lang_hooks
.option_lang_mask ();
1027 /* Set a default printer. Language specific initializations will
1028 override it later. */
1029 tree_diagnostics_defaults (global_dc
);
1031 global_dc
->show_caret
1032 = global_options_init
.x_flag_diagnostics_show_caret
;
1033 global_dc
->show_labels_p
1034 = global_options_init
.x_flag_diagnostics_show_labels
;
1035 global_dc
->show_line_numbers_p
1036 = global_options_init
.x_flag_diagnostics_show_line_numbers
;
1038 = global_options_init
.x_flag_diagnostics_show_cwe
;
1039 global_dc
->path_format
1040 = (enum diagnostic_path_format
)global_options_init
.x_flag_diagnostics_path_format
;
1041 global_dc
->show_path_depths
1042 = global_options_init
.x_flag_diagnostics_show_path_depths
;
1043 global_dc
->show_option_requested
1044 = global_options_init
.x_flag_diagnostics_show_option
;
1045 global_dc
->min_margin_width
1046 = global_options_init
.x_diagnostics_minimum_margin_width
;
1047 global_dc
->show_column
1048 = global_options_init
.x_flag_show_column
;
1049 global_dc
->internal_error
= internal_error_function
;
1050 global_dc
->option_enabled
= option_enabled
;
1051 global_dc
->option_state
= &global_options
;
1052 global_dc
->option_name
= option_name
;
1053 global_dc
->get_option_url
= get_option_url
;
1057 /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages. */
1059 signal (SIGSEGV
, crash_signal
);
1062 signal (SIGILL
, crash_signal
);
1065 signal (SIGBUS
, crash_signal
);
1068 signal (SIGABRT
, crash_signal
);
1070 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
1071 signal (SIGIOT
, crash_signal
);
1074 signal (SIGFPE
, crash_signal
);
1077 /* Other host-specific signal setup. */
1078 (*host_hooks
.extra_signals
)();
1081 /* Initialize the garbage-collector, string pools and tree type hash
1085 input_location
= UNKNOWN_LOCATION
;
1086 line_table
= ggc_alloc
<line_maps
> ();
1087 linemap_init (line_table
, BUILTINS_LOCATION
);
1088 line_table
->reallocator
= realloc_for_line_map
;
1089 line_table
->round_alloc_size
= ggc_round_alloc_size
;
1090 line_table
->default_range_bits
= 5;
1093 /* Initialize register usage now so switches may override. */
1096 /* Create the singleton holder for global state. This creates the
1098 g
= new gcc::context ();
1100 /* Allow languages and middle-end to register their dumps before the
1101 optimization passes. */
1102 g
->get_dumps ()->register_dumps ();
1104 /* Create the passes. */
1105 g
->set_passes (new gcc::pass_manager (g
));
1107 symtab
= new (ggc_alloc
<symbol_table
> ()) symbol_table ();
1109 statistics_early_init ();
1110 debuginfo_early_init ();
1113 /* Return true if the current target supports -fsection-anchors. */
1116 target_supports_section_anchors_p (void)
1118 if (targetm
.min_anchor_offset
== 0 && targetm
.max_anchor_offset
== 0)
1121 if (targetm
.asm_out
.output_anchor
== NULL
)
1127 /* Parse "N[:M][:...]" into struct align_flags A.
1128 VALUES contains parsed values (in reverse order), all processed
1129 values are popped. */
1132 read_log_maxskip (auto_vec
<unsigned> &values
, align_flags_tuple
*a
)
1134 unsigned n
= values
.pop ();
1136 a
->log
= floor_log2 (n
* 2 - 1);
1138 if (values
.is_empty ())
1139 a
->maxskip
= n
? n
- 1 : 0;
1142 unsigned m
= values
.pop ();
1143 /* -falign-foo=N:M means M-1 max bytes of padding, not M. */
1149 /* Normalize the tuple. */
1153 /* Parse "N[:M[:N2[:M2]]]" string FLAG into a pair of struct align_flags. */
1156 parse_N_M (const char *flag
, align_flags
&a
)
1160 static hash_map
<nofree_string_hash
, align_flags
> cache
;
1161 align_flags
*entry
= cache
.get (flag
);
1168 auto_vec
<unsigned> result_values
;
1169 bool r
= parse_and_check_align_values (flag
, NULL
, result_values
, false,
1174 /* Reverse values for easier manipulation. */
1175 result_values
.reverse ();
1177 read_log_maxskip (result_values
, &a
.levels
[0]);
1178 if (!result_values
.is_empty ())
1179 read_log_maxskip (result_values
, &a
.levels
[1]);
1183 /* N2[:M2] is not specified. This arch has a default for N2.
1184 Before -falign-foo=N:M:N2:M2 was introduced, x86 had a tweak.
1185 -falign-functions=N with N > 8 was adding secondary alignment.
1186 -falign-functions=10 was emitting this before every function:
1189 Now this behavior (and more) can be explicitly requested:
1190 -falign-functions=16:10:8
1191 Retain old behavior if N2 is missing: */
1193 int align
= 1 << a
.levels
[0].log
;
1194 int subalign
= 1 << SUBALIGN_LOG
;
1196 if (a
.levels
[0].log
> SUBALIGN_LOG
1197 && a
.levels
[0].maxskip
>= subalign
- 1)
1199 /* Set N2 unless subalign can never have any effect. */
1200 if (align
> a
.levels
[0].maxskip
+ 1)
1202 a
.levels
[1].log
= SUBALIGN_LOG
;
1203 a
.levels
[1].normalize ();
1209 /* Cache seen value. */
1210 cache
.put (flag
, a
);
1214 /* Process -falign-foo=N[:M[:N2[:M2]]] options. */
1217 parse_alignment_opts (void)
1219 parse_N_M (str_align_loops
, align_loops
);
1220 parse_N_M (str_align_jumps
, align_jumps
);
1221 parse_N_M (str_align_labels
, align_labels
);
1222 parse_N_M (str_align_functions
, align_functions
);
1225 /* Process the options that have been parsed. */
1227 process_options (bool no_backend
)
1229 const char *language_string
= lang_hooks
.name
;
1230 /* Just in case lang_hooks.post_options ends up calling a debug_hook.
1231 This can happen with incorrect pre-processed input. */
1232 debug_hooks
= &do_nothing_debug_hooks
;
1234 maximum_field_alignment
= initial_max_fld_align
* BITS_PER_UNIT
;
1236 /* Some machines may reject certain combinations of options. */
1237 location_t saved_location
= input_location
;
1238 input_location
= UNKNOWN_LOCATION
;
1239 targetm
.target_option
.override ();
1240 input_location
= saved_location
;
1242 if (flag_diagnostics_generate_patch
)
1243 global_dc
->edit_context_ptr
= new edit_context ();
1245 /* Avoid any informative notes in the second run of -fcompare-debug. */
1246 if (flag_compare_debug
)
1247 diagnostic_inhibit_notes (global_dc
);
1249 if (flag_section_anchors
&& !target_supports_section_anchors_p ())
1251 warning_at (UNKNOWN_LOCATION
, OPT_fsection_anchors
,
1252 "this target does not support %qs",
1253 "-fsection-anchors");
1254 flag_section_anchors
= 0;
1257 if (flag_short_enums
== 2)
1258 flag_short_enums
= targetm
.default_short_enums ();
1260 /* Set aux_base_name if not already set. */
1263 else if (dump_base_name
)
1265 const char *name
= dump_base_name
;
1268 if (dump_base_ext
&& (len
= strlen (dump_base_ext
))
1269 && (nlen
= strlen (name
)) && nlen
> len
1270 && strcmp (name
+ nlen
- len
, dump_base_ext
) == 0)
1272 char *p
= xstrndup (name
, nlen
- len
);
1276 aux_base_name
= name
;
1279 aux_base_name
= "gccaux";
1283 || flag_loop_nest_optimize
1284 || flag_graphite_identity
1285 || flag_loop_parallelize_all
)
1286 sorry ("Graphite loop optimizations cannot be used (isl is not available) "
1287 "(%<-fgraphite%>, %<-fgraphite-identity%>, "
1288 "%<-floop-nest-optimize%>, %<-floop-parallelize-all%>)");
1291 if (flag_cf_protection
!= CF_NONE
1292 && !(flag_cf_protection
& CF_SET
))
1294 if (flag_cf_protection
== CF_FULL
)
1296 error_at (UNKNOWN_LOCATION
,
1297 "%<-fcf-protection=full%> is not supported for this "
1299 flag_cf_protection
= CF_NONE
;
1301 if (flag_cf_protection
== CF_BRANCH
)
1303 error_at (UNKNOWN_LOCATION
,
1304 "%<-fcf-protection=branch%> is not supported for this "
1306 flag_cf_protection
= CF_NONE
;
1308 if (flag_cf_protection
== CF_RETURN
)
1310 error_at (UNKNOWN_LOCATION
,
1311 "%<-fcf-protection=return%> is not supported for this "
1313 flag_cf_protection
= CF_NONE
;
1317 /* One region RA really helps to decrease the code size. */
1318 if (!OPTION_SET_P (flag_ira_region
))
1320 = optimize_size
|| !optimize
? IRA_REGION_ONE
: IRA_REGION_MIXED
;
1322 if (!abi_version_at_least (2))
1324 /* -fabi-version=1 support was removed after GCC 4.9. */
1325 error_at (UNKNOWN_LOCATION
,
1326 "%<-fabi-version=1%> is no longer supported");
1327 flag_abi_version
= 2;
1330 if (flag_non_call_exceptions
)
1331 flag_asynchronous_unwind_tables
= 1;
1332 if (flag_asynchronous_unwind_tables
)
1333 flag_unwind_tables
= 1;
1335 if (flag_value_profile_transformations
)
1336 flag_profile_values
= 1;
1338 /* Warn about options that are not supported on this machine. */
1339 #ifndef INSN_SCHEDULING
1340 if (flag_schedule_insns
|| flag_schedule_insns_after_reload
)
1341 warning_at (UNKNOWN_LOCATION
, 0,
1342 "instruction scheduling not supported on this target machine");
1344 if (!DELAY_SLOTS
&& flag_delayed_branch
)
1345 warning_at (UNKNOWN_LOCATION
, 0,
1346 "this target machine does not have delayed branches");
1348 user_label_prefix
= USER_LABEL_PREFIX
;
1349 if (flag_leading_underscore
!= -1)
1351 /* If the default prefix is more complicated than "" or "_",
1352 issue a warning and ignore this option. */
1353 if (user_label_prefix
[0] == 0 ||
1354 (user_label_prefix
[0] == '_' && user_label_prefix
[1] == 0))
1356 user_label_prefix
= flag_leading_underscore
? "_" : "";
1359 warning_at (UNKNOWN_LOCATION
, 0,
1360 "%<-f%sleading-underscore%> not supported on this "
1361 "target machine", flag_leading_underscore
? "" : "no-");
1364 /* If we are in verbose mode, write out the version and maybe all the
1365 option flags in use. */
1368 print_version (stderr
, "", true);
1371 fputs ("options passed: ", stderr
);
1372 char *cmdline
= gen_command_line_string (save_decoded_options
,
1373 save_decoded_options_count
);
1375 fputs (cmdline
, stderr
);
1377 fputc ('\n', stderr
);
1381 if (flag_syntax_only
)
1383 write_symbols
= NO_DEBUG
;
1389 if (debug_info_level
== DINFO_LEVEL_NONE
)
1391 debug_info_level
= DINFO_LEVEL_NORMAL
;
1393 if (write_symbols
== NO_DEBUG
)
1394 write_symbols
= PREFERRED_DEBUGGING_TYPE
;
1397 debug_info_level
= DINFO_LEVEL_NONE
;
1400 /* CTF is supported for only C at this time. */
1402 && ctf_debug_info_level
> CTFINFO_LEVEL_NONE
)
1404 /* Compiling with -flto results in frontend language of GNU GIMPLE. It
1405 is not useful to warn in that case. */
1406 if (!startswith (lang_hooks
.name
, "GNU GIMPLE"))
1407 inform (UNKNOWN_LOCATION
,
1408 "CTF debug info requested, but not supported for %qs frontend",
1410 ctf_debug_info_level
= CTFINFO_LEVEL_NONE
;
1413 if (flag_dump_final_insns
&& !flag_syntax_only
&& !no_backend
)
1415 FILE *final_output
= fopen (flag_dump_final_insns
, "w");
1418 error_at (UNKNOWN_LOCATION
,
1419 "could not open final insn dump file %qs: %m",
1420 flag_dump_final_insns
);
1421 flag_dump_final_insns
= NULL
;
1423 else if (fclose (final_output
))
1425 error_at (UNKNOWN_LOCATION
,
1426 "could not close zeroed insn dump file %qs: %m",
1427 flag_dump_final_insns
);
1428 flag_dump_final_insns
= NULL
;
1432 /* A lot of code assumes write_symbols == NO_DEBUG if the debugging
1434 if (debug_info_level
== DINFO_LEVEL_NONE
1435 && ctf_debug_info_level
== CTFINFO_LEVEL_NONE
)
1436 write_symbols
= NO_DEBUG
;
1438 /* Warn if STABS debug gets enabled and is not the default. */
1439 if (PREFERRED_DEBUGGING_TYPE
!= DBX_DEBUG
&& (write_symbols
& DBX_DEBUG
))
1440 warning (0, "STABS debugging information is obsolete and not "
1441 "supported anymore");
1443 if (write_symbols
== NO_DEBUG
)
1445 #if defined(DBX_DEBUGGING_INFO)
1446 else if (write_symbols
== DBX_DEBUG
)
1447 debug_hooks
= &dbx_debug_hooks
;
1449 #if defined(XCOFF_DEBUGGING_INFO)
1450 else if (write_symbols
== XCOFF_DEBUG
)
1451 debug_hooks
= &xcoff_debug_hooks
;
1453 #ifdef DWARF2_DEBUGGING_INFO
1454 else if (dwarf_debuginfo_p ())
1455 debug_hooks
= &dwarf2_debug_hooks
;
1457 #ifdef CTF_DEBUGGING_INFO
1458 else if (ctf_debuginfo_p ())
1459 debug_hooks
= &dwarf2_debug_hooks
;
1461 #ifdef BTF_DEBUGGING_INFO
1462 else if (btf_debuginfo_p ())
1463 debug_hooks
= &dwarf2_debug_hooks
;
1465 #ifdef VMS_DEBUGGING_INFO
1466 else if (write_symbols
== VMS_DEBUG
|| write_symbols
== VMS_AND_DWARF2_DEBUG
)
1467 debug_hooks
= &vmsdbg_debug_hooks
;
1469 #ifdef DWARF2_LINENO_DEBUGGING_INFO
1470 else if (write_symbols
== DWARF2_DEBUG
)
1471 debug_hooks
= &dwarf2_lineno_debug_hooks
;
1475 gcc_assert (debug_set_count (write_symbols
) <= 1);
1476 error_at (UNKNOWN_LOCATION
,
1477 "target system does not support the %qs debug format",
1478 debug_type_names
[debug_set_to_format (write_symbols
)]);
1481 /* We know which debug output will be used so we can set flag_var_tracking
1482 and flag_var_tracking_uninit if the user has not specified them. */
1483 if (debug_info_level
< DINFO_LEVEL_NORMAL
1484 || !dwarf_debuginfo_p ()
1485 || debug_hooks
->var_location
== do_nothing_debug_hooks
.var_location
)
1487 if ((OPTION_SET_P (flag_var_tracking
) && flag_var_tracking
== 1)
1488 || (OPTION_SET_P (flag_var_tracking_uninit
)
1489 && flag_var_tracking_uninit
== 1))
1491 if (debug_info_level
< DINFO_LEVEL_NORMAL
)
1492 warning_at (UNKNOWN_LOCATION
, 0,
1493 "variable tracking requested, but useless unless "
1494 "producing debug info");
1496 warning_at (UNKNOWN_LOCATION
, 0,
1497 "variable tracking requested, but not supported "
1498 "by this debug format");
1500 flag_var_tracking
= 0;
1501 flag_var_tracking_uninit
= 0;
1504 /* The debug hooks are used to implement -fdump-go-spec because it
1505 gives a simple and stable API for all the information we need to
1507 if (flag_dump_go_spec
!= NULL
)
1508 debug_hooks
= dump_go_spec_init (flag_dump_go_spec
, debug_hooks
);
1510 /* One could use EnabledBy, but it would lead to a circular dependency. */
1511 if (!OPTION_SET_P (flag_var_tracking_uninit
))
1512 flag_var_tracking_uninit
= flag_var_tracking
;
1514 if (!OPTION_SET_P (flag_var_tracking_assignments
))
1515 flag_var_tracking_assignments
1516 = (flag_var_tracking
1517 && !(flag_selective_scheduling
|| flag_selective_scheduling2
));
1519 if (flag_var_tracking_assignments_toggle
)
1520 flag_var_tracking_assignments
= !flag_var_tracking_assignments
;
1522 if (flag_var_tracking_assignments
&& !flag_var_tracking
)
1523 flag_var_tracking
= flag_var_tracking_assignments
= -1;
1525 if (flag_var_tracking_assignments
1526 && (flag_selective_scheduling
|| flag_selective_scheduling2
))
1527 warning_at (UNKNOWN_LOCATION
, 0,
1528 "var-tracking-assignments changes selective scheduling");
1530 if (!OPTION_SET_P (debug_nonbind_markers_p
))
1531 debug_nonbind_markers_p
1533 && debug_info_level
>= DINFO_LEVEL_NORMAL
1534 && dwarf_debuginfo_p ()
1535 && !(flag_selective_scheduling
|| flag_selective_scheduling2
));
1537 if (!OPTION_SET_P (dwarf2out_as_loc_support
))
1538 dwarf2out_as_loc_support
= dwarf2out_default_as_loc_support ();
1539 if (!OPTION_SET_P (dwarf2out_as_locview_support
))
1540 dwarf2out_as_locview_support
= dwarf2out_default_as_locview_support ();
1542 if (!OPTION_SET_P (debug_variable_location_views
))
1544 debug_variable_location_views
1545 = (flag_var_tracking
1546 && debug_info_level
>= DINFO_LEVEL_NORMAL
1547 && dwarf_debuginfo_p ()
1549 && dwarf2out_as_loc_support
1550 && dwarf2out_as_locview_support
);
1552 else if (debug_variable_location_views
== -1 && dwarf_version
!= 5)
1554 warning_at (UNKNOWN_LOCATION
, 0,
1555 "without %<-gdwarf-5%>, "
1556 "%<-gvariable-location-views=incompat5%> "
1557 "is equivalent to %<-gvariable-location-views%>");
1558 debug_variable_location_views
= 1;
1561 if (debug_internal_reset_location_views
== 2)
1563 debug_internal_reset_location_views
1564 = (debug_variable_location_views
1565 && targetm
.reset_location_view
);
1567 else if (debug_internal_reset_location_views
1568 && !debug_variable_location_views
)
1570 warning_at (UNKNOWN_LOCATION
, 0,
1571 "%<-ginternal-reset-location-views%> is forced disabled "
1572 "without %<-gvariable-location-views%>");
1573 debug_internal_reset_location_views
= 0;
1576 if (!OPTION_SET_P (debug_inline_points
))
1577 debug_inline_points
= debug_variable_location_views
;
1578 else if (debug_inline_points
&& !debug_nonbind_markers_p
)
1580 warning_at (UNKNOWN_LOCATION
, 0,
1581 "%<-ginline-points%> is forced disabled without "
1582 "%<-gstatement-frontiers%>");
1583 debug_inline_points
= 0;
1586 if (!OPTION_SET_P (flag_tree_cselim
))
1588 if (HAVE_conditional_move
)
1589 flag_tree_cselim
= 1;
1591 flag_tree_cselim
= 0;
1594 /* If auxiliary info generation is desired, open the output file.
1595 This goes in the same directory as the source file--unlike
1596 all the other output files. */
1597 if (flag_gen_aux_info
)
1599 aux_info_file
= fopen (aux_info_file_name
, "w");
1600 if (aux_info_file
== 0)
1601 fatal_error (UNKNOWN_LOCATION
,
1602 "cannot open %s: %m", aux_info_file_name
);
1605 if (!targetm_common
.have_named_sections
)
1607 if (flag_function_sections
)
1609 warning_at (UNKNOWN_LOCATION
, 0,
1610 "%<-ffunction-sections%> not supported for this target");
1611 flag_function_sections
= 0;
1613 if (flag_data_sections
)
1615 warning_at (UNKNOWN_LOCATION
, 0,
1616 "%<-fdata-sections%> not supported for this target");
1617 flag_data_sections
= 0;
1621 if (flag_prefetch_loop_arrays
> 0 && !targetm
.code_for_prefetch
)
1623 warning_at (UNKNOWN_LOCATION
, 0,
1624 "%<-fprefetch-loop-arrays%> not supported for this target");
1625 flag_prefetch_loop_arrays
= 0;
1627 else if (flag_prefetch_loop_arrays
> 0 && !targetm
.have_prefetch ())
1629 warning_at (UNKNOWN_LOCATION
, 0,
1630 "%<-fprefetch-loop-arrays%> not supported for this target "
1631 "(try %<-march%> switches)");
1632 flag_prefetch_loop_arrays
= 0;
1635 /* This combination of options isn't handled for i386 targets and doesn't
1636 make much sense anyway, so don't allow it. */
1637 if (flag_prefetch_loop_arrays
> 0 && optimize_size
)
1639 warning_at (UNKNOWN_LOCATION
, 0,
1640 "%<-fprefetch-loop-arrays%> is not supported with %<-Os%>");
1641 flag_prefetch_loop_arrays
= 0;
1644 /* The presence of IEEE signaling NaNs, implies all math can trap. */
1645 if (flag_signaling_nans
)
1646 flag_trapping_math
= 1;
1648 /* We cannot reassociate if we want traps or signed zeros. */
1649 if (flag_associative_math
&& (flag_trapping_math
|| flag_signed_zeros
))
1651 warning_at (UNKNOWN_LOCATION
, 0,
1652 "%<-fassociative-math%> disabled; other options take "
1654 flag_associative_math
= 0;
1657 /* -fstack-clash-protection is not currently supported on targets
1658 where the stack grows up. */
1659 if (flag_stack_clash_protection
&& !STACK_GROWS_DOWNWARD
)
1661 warning_at (UNKNOWN_LOCATION
, 0,
1662 "%<-fstack-clash-protection%> is not supported on targets "
1663 "where the stack grows from lower to higher addresses");
1664 flag_stack_clash_protection
= 0;
1667 /* We cannot support -fstack-check= and -fstack-clash-protection at
1669 if (flag_stack_check
!= NO_STACK_CHECK
&& flag_stack_clash_protection
)
1671 warning_at (UNKNOWN_LOCATION
, 0,
1672 "%<-fstack-check=%> and %<-fstack-clash_protection%> are "
1673 "mutually exclusive; disabling %<-fstack-check=%>");
1674 flag_stack_check
= NO_STACK_CHECK
;
1677 /* Targets must be able to place spill slots at lower addresses. If the
1678 target already uses a soft frame pointer, the transition is trivial. */
1679 if (!FRAME_GROWS_DOWNWARD
&& flag_stack_protect
)
1681 warning_at (UNKNOWN_LOCATION
, 0,
1682 "%<-fstack-protector%> not supported for this target");
1683 flag_stack_protect
= 0;
1685 if (!flag_stack_protect
)
1686 warn_stack_protect
= 0;
1688 /* Address Sanitizer needs porting to each target architecture. */
1690 if ((flag_sanitize
& SANITIZE_ADDRESS
)
1691 && !FRAME_GROWS_DOWNWARD
)
1693 warning_at (UNKNOWN_LOCATION
, 0,
1694 "%<-fsanitize=address%> and %<-fsanitize=kernel-address%> "
1695 "are not supported for this target");
1696 flag_sanitize
&= ~SANITIZE_ADDRESS
;
1699 if ((flag_sanitize
& SANITIZE_USER_ADDRESS
)
1700 && ((targetm
.asan_shadow_offset
== NULL
)
1701 || (targetm
.asan_shadow_offset () == 0)))
1703 warning_at (UNKNOWN_LOCATION
, 0,
1704 "%<-fsanitize=address%> not supported for this target");
1705 flag_sanitize
&= ~SANITIZE_ADDRESS
;
1708 if ((flag_sanitize
& SANITIZE_KERNEL_ADDRESS
)
1709 && (targetm
.asan_shadow_offset
== NULL
1710 && !asan_shadow_offset_set_p ()))
1712 warning_at (UNKNOWN_LOCATION
, 0,
1713 "%<-fsanitize=kernel-address%> with stack protection "
1714 "is not supported without %<-fasan-shadow-offset=%> "
1716 flag_sanitize
&= ~SANITIZE_ADDRESS
;
1719 /* HWAsan requires top byte ignore feature in the backend. */
1720 if (flag_sanitize
& SANITIZE_HWADDRESS
1721 && ! targetm
.memtag
.can_tag_addresses ())
1723 warning_at (UNKNOWN_LOCATION
, 0, "%qs is not supported for this target",
1724 "-fsanitize=hwaddress");
1725 flag_sanitize
&= ~SANITIZE_HWADDRESS
;
1728 HOST_WIDE_INT patch_area_size
, patch_area_start
;
1729 parse_and_check_patch_area (flag_patchable_function_entry
, false,
1730 &patch_area_size
, &patch_area_start
);
1732 /* Do not use IPA optimizations for register allocation if profiler is active
1733 or patchable function entries are inserted for run-time instrumentation
1734 or port does not emit prologue and epilogue as RTL. */
1735 if (profile_flag
|| patch_area_size
1736 || !targetm
.have_prologue () || !targetm
.have_epilogue ())
1739 /* Enable -Werror=coverage-mismatch when -Werror and -Wno-error
1740 have not been set. */
1741 if (!OPTION_SET_P (warnings_are_errors
))
1743 if (warn_coverage_mismatch
1744 && (global_dc
->classify_diagnostic
[OPT_Wcoverage_mismatch
] ==
1746 diagnostic_classify_diagnostic (global_dc
, OPT_Wcoverage_mismatch
,
1747 DK_ERROR
, UNKNOWN_LOCATION
);
1748 if (warn_coverage_invalid_linenum
1749 && (global_dc
->classify_diagnostic
[OPT_Wcoverage_invalid_line_number
] ==
1751 diagnostic_classify_diagnostic (global_dc
, OPT_Wcoverage_invalid_line_number
,
1752 DK_ERROR
, UNKNOWN_LOCATION
);
1755 /* Save the current optimization options. */
1756 optimization_default_node
1757 = build_optimization_node (&global_options
, &global_options_set
);
1758 optimization_current_node
= optimization_default_node
;
1760 if (flag_checking
>= 2)
1761 hash_table_sanitize_eq_limit
1762 = param_hash_table_verification_limit
;
1764 if (flag_large_source_files
)
1765 line_table
->default_range_bits
= 0;
1767 /* Please don't change global_options after this point, those changes won't
1768 be reflected in optimization_{default,current}_node. */
1771 /* This function can be called multiple times to reinitialize the compiler
1772 back end when register classes or instruction sets have changed,
1773 before each function. */
1775 backend_init_target (void)
1777 /* This depends on stack_pointer_rtx. */
1778 init_fake_stack_mems ();
1780 /* Sets static_base_value[HARD_FRAME_POINTER_REGNUM], which is
1782 init_alias_target ();
1784 /* Depends on HARD_FRAME_POINTER_REGNUM. */
1788 /* Depends on the enabled attribute. */
1791 /* The following initialization functions need to generate rtl, so
1792 provide a dummy function context for them. */
1793 init_dummy_function_start ();
1795 /* rtx_cost is mode-dependent, so cached values need to be recomputed
1796 on a mode change. */
1798 init_lower_subreg ();
1801 init_expr_target ();
1804 /* We may need to recompute regno_save_code[] and regno_restore_code[]
1805 after a mode change as well. */
1806 caller_save_initialized_p
= false;
1808 expand_dummy_function_end ();
1811 /* Initialize the compiler back end. This function is called only once,
1812 when starting the compiler. */
1819 init_inline_once ();
1820 init_varasm_once ();
1821 save_register_info ();
1823 /* Middle end needs this initialization for default mem attributes
1824 used by early calls to make_decl_rtl. */
1827 /* Middle end needs this initialization for mode tables used to assign
1828 modes to vector variables. */
1832 /* Initialize things that are both lang-dependent and target-dependent.
1833 This function can be called more than once if target parameters change. */
1835 lang_dependent_init_target (void)
1837 /* This creates various _DECL nodes, so needs to be called after the
1838 front end is initialized. It also depends on the HAVE_xxx macros
1839 generated from the target machine description. */
1842 gcc_assert (!this_target_rtl
->target_specific_initialized
);
1845 /* Perform initializations that are lang-dependent or target-dependent.
1846 but matters only for late optimizations and RTL generation. */
1848 static int rtl_initialized
;
1851 initialize_rtl (void)
1853 auto_timevar
tv (g_timer
, TV_INITIALIZE_RTL
);
1855 /* Initialization done just once per compilation, but delayed
1856 till code generation. */
1857 if (!rtl_initialized
)
1859 rtl_initialized
= true;
1861 /* Target specific RTL backend initialization. */
1862 if (!this_target_rtl
->target_specific_initialized
)
1864 backend_init_target ();
1865 this_target_rtl
->target_specific_initialized
= true;
1869 /* Language-dependent initialization. Returns nonzero on success. */
1871 lang_dependent_init (const char *name
)
1873 location_t save_loc
= input_location
;
1874 if (!dump_base_name
)
1876 dump_base_name
= name
&& name
[0] ? name
: "gccdump";
1878 /* We do not want to derive a non-empty dumpbase-ext from an
1879 explicit -dumpbase argument, only from a defaulted
1883 const char *base
= lbasename (dump_base_name
);
1884 const char *ext
= strrchr (base
, '.');
1886 dump_base_ext
= ext
;
1890 /* Other front-end initialization. */
1891 input_location
= BUILTINS_LOCATION
;
1892 if (lang_hooks
.init () == 0)
1894 input_location
= save_loc
;
1898 init_asm_output (name
);
1900 if (!flag_generate_lto
&& !flag_compare_debug
)
1902 /* If stack usage information is desired, open the output file. */
1903 if (flag_stack_usage
)
1904 stack_usage_file
= open_auxiliary_file ("su");
1906 /* If call graph information is desired, open the output file. */
1907 if (flag_callgraph_info
)
1909 callgraph_info_file
= open_auxiliary_file ("ci");
1910 /* Write the file header. */
1911 fprintf (callgraph_info_file
,
1912 "graph: { title: \"%s\"\n", main_input_filename
);
1913 bitmap_obstack_initialize (NULL
);
1914 callgraph_info_external_printed
= BITMAP_ALLOC (NULL
);
1918 flag_stack_usage
= flag_callgraph_info
= false;
1921 /* This creates various _DECL nodes, so needs to be called after the
1922 front end is initialized. */
1925 /* Do the target-specific parts of the initialization. */
1926 lang_dependent_init_target ();
1930 /* If dbx symbol table desired, initialize writing it and output the
1931 predefined types. */
1932 timevar_push (TV_SYMOUT
);
1934 /* Now we have the correct original filename, we can initialize
1936 (*debug_hooks
->init
) (name
);
1938 timevar_pop (TV_SYMOUT
);
1945 /* Reinitialize everything when target parameters, such as register usage,
1948 target_reinit (void)
1950 struct rtl_data saved_x_rtl
;
1951 rtx
*saved_regno_reg_rtx
;
1952 tree saved_optimization_current_node
;
1953 struct target_optabs
*saved_this_fn_optabs
;
1955 /* Temporarily switch to the default optimization node, so that
1956 *this_target_optabs is set to the default, not reflecting
1957 whatever a previous function used for the optimize
1959 saved_optimization_current_node
= optimization_current_node
;
1960 saved_this_fn_optabs
= this_fn_optabs
;
1961 if (saved_optimization_current_node
!= optimization_default_node
)
1963 optimization_current_node
= optimization_default_node
;
1964 cl_optimization_restore
1965 (&global_options
, &global_options_set
,
1966 TREE_OPTIMIZATION (optimization_default_node
));
1968 this_fn_optabs
= this_target_optabs
;
1970 /* Save *crtl and regno_reg_rtx around the reinitialization
1971 to allow target_reinit being called even after prepare_function_start. */
1972 saved_regno_reg_rtx
= regno_reg_rtx
;
1973 if (saved_regno_reg_rtx
)
1975 saved_x_rtl
= *crtl
;
1976 memset (crtl
, '\0', sizeof (*crtl
));
1977 regno_reg_rtx
= NULL
;
1980 this_target_rtl
->target_specific_initialized
= false;
1982 /* This initializes hard_frame_pointer, and calls init_reg_modes_target()
1983 to initialize reg_raw_mode[]. */
1986 /* This invokes target hooks to set fixed_reg[] etc, which is
1990 /* Reinitialize lang-dependent parts. */
1991 lang_dependent_init_target ();
1993 /* Restore the original optimization node. */
1994 if (saved_optimization_current_node
!= optimization_default_node
)
1996 optimization_current_node
= saved_optimization_current_node
;
1997 cl_optimization_restore (&global_options
, &global_options_set
,
1998 TREE_OPTIMIZATION (optimization_current_node
));
2000 this_fn_optabs
= saved_this_fn_optabs
;
2002 /* Restore regno_reg_rtx at the end, as free_after_compilation from
2003 expand_dummy_function_end clears it. */
2004 if (saved_regno_reg_rtx
)
2006 *crtl
= saved_x_rtl
;
2007 regno_reg_rtx
= saved_regno_reg_rtx
;
2008 saved_regno_reg_rtx
= NULL
;
2013 dump_memory_report (const char *header
)
2015 /* Print significant header. */
2016 fputc ('\n', stderr
);
2017 for (unsigned i
= 0; i
< 80; i
++)
2018 fputc ('#', stderr
);
2019 fprintf (stderr
, "\n# %-77s#\n", header
);
2020 for (unsigned i
= 0; i
< 80; i
++)
2021 fputc ('#', stderr
);
2022 fputs ("\n\n", stderr
);
2024 dump_line_table_statistics ();
2025 ggc_print_statistics ();
2026 stringpool_statistics ();
2027 dump_tree_statistics ();
2028 dump_gimple_statistics ();
2029 dump_rtx_statistics ();
2030 dump_alloc_pool_statistics ();
2031 dump_bitmap_statistics ();
2032 dump_hash_table_loc_statistics ();
2033 dump_vec_loc_statistics ();
2034 dump_ggc_loc_statistics ();
2035 dump_alias_stats (stderr
);
2036 dump_pta_stats (stderr
);
2039 /* Clean up: close opened files, etc. */
2042 finalize (bool no_backend
)
2044 /* Close the dump files. */
2045 if (flag_gen_aux_info
)
2047 fclose (aux_info_file
);
2048 aux_info_file
= NULL
;
2050 unlink (aux_info_file_name
);
2053 /* Close non-debugging input and output files. Take special care to note
2054 whether fclose returns an error, since the pages might still be on the
2055 buffer chain while the file is open. */
2059 if (ferror (asm_out_file
) != 0)
2060 fatal_error (input_location
, "error writing to %s: %m", asm_file_name
);
2061 if (fclose (asm_out_file
) != 0)
2062 fatal_error (input_location
, "error closing %s: %m", asm_file_name
);
2063 asm_out_file
= NULL
;
2066 if (stack_usage_file
)
2068 fclose (stack_usage_file
);
2069 stack_usage_file
= NULL
;
2072 if (callgraph_info_file
)
2074 fputs ("}\n", callgraph_info_file
);
2075 fclose (callgraph_info_file
);
2076 callgraph_info_file
= NULL
;
2077 BITMAP_FREE (callgraph_info_external_printed
);
2078 bitmap_obstack_release (NULL
);
2082 coverage_remove_note_file ();
2089 g
->get_passes ()->finish_optimization_passes ();
2095 dump_memory_report ("Final");
2098 dump_profile_report ();
2100 if (flag_dbg_cnt_list
)
2101 dbg_cnt_list_all_counters ();
2103 /* Language-specific end of compilation actions. */
2104 lang_hooks
.finish ();
2108 standard_type_bitsize (int bitsize
)
2110 /* As a special exception, we always want __int128 enabled if possible. */
2113 if (bitsize
== CHAR_TYPE_SIZE
2114 || bitsize
== SHORT_TYPE_SIZE
2115 || bitsize
== INT_TYPE_SIZE
2116 || bitsize
== LONG_TYPE_SIZE
2117 || bitsize
== LONG_LONG_TYPE_SIZE
)
2122 /* Initialize the compiler, and compile the input file. */
2124 do_compile (bool no_backend
)
2126 /* Don't do any more if an error has already occurred. */
2131 timevar_start (TV_PHASE_SETUP
);
2133 if (flag_save_optimization_record
)
2135 dump_context::get ().set_json_writer (new optrecord_json_writer ());
2138 /* This must be run always, because it is needed to compute the FP
2139 predefined macros, such as __LDBL_MAX__, for targets using non
2140 default FP formats. */
2141 init_adjust_machine_modes ();
2142 init_derived_machine_modes ();
2144 /* This must happen after the backend has a chance to process
2145 command line options, but before the parsers are
2147 for (i
= 0; i
< NUM_INT_N_ENTS
; i
++)
2148 if (targetm
.scalar_mode_supported_p (int_n_data
[i
].m
)
2149 && ! standard_type_bitsize (int_n_data
[i
].bitsize
))
2150 int_n_enabled_p
[i
] = true;
2152 int_n_enabled_p
[i
] = false;
2154 /* Initialize mpfrs exponent range. This is important to get
2155 underflow/overflow in a reasonable timeframe. */
2159 FOR_EACH_MODE_IN_CLASS (mode
, MODE_FLOAT
)
2160 if (SCALAR_FLOAT_MODE_P (mode
))
2162 const real_format
*fmt
= REAL_MODE_FORMAT (mode
);
2165 /* fmt->emin - fmt->p + 1 should be enough but the
2166 back-and-forth dance in real_to_decimal_for_mode we
2167 do for checking fails due to rounding effects then. */
2168 if ((fmt
->emin
- fmt
->p
) < min_exp
)
2169 min_exp
= fmt
->emin
- fmt
->p
;
2170 if (fmt
->emax
> max_exp
)
2171 max_exp
= fmt
->emax
;
2174 /* E.g. mpc_norm assumes it can square a number without bothering with
2175 with range scaling, so until that is fixed, double the minimum
2176 and maximum exponents, plus add some buffer for arithmetics
2177 on the squared numbers. */
2178 if (mpfr_set_emin (2 * (min_exp
- 1))
2179 || mpfr_set_emax (2 * (max_exp
+ 1)))
2180 sorry ("mpfr not configured to handle all floating modes");
2182 /* Set up the back-end if requested. */
2186 /* Language-dependent initialization. Returns true on success. */
2187 if (lang_dependent_init (main_input_filename
))
2189 /* Initialize yet another pass. */
2191 ggc_protect_identifiers
= true;
2193 symtab
->initialize ();
2194 init_final (main_input_filename
);
2195 coverage_init (aux_base_name
);
2198 invoke_plugin_callbacks (PLUGIN_START_UNIT
, NULL
);
2200 timevar_stop (TV_PHASE_SETUP
);
2206 timevar_stop (TV_PHASE_SETUP
);
2209 timevar_start (TV_PHASE_FINALIZE
);
2211 finalize (no_backend
);
2213 timevar_stop (TV_PHASE_FINALIZE
);
2217 toplev::toplev (timer
*external_timer
,
2219 : m_use_TV_TOTAL (external_timer
== NULL
),
2220 m_init_signals (init_signals
)
2223 g_timer
= external_timer
;
2228 if (g_timer
&& m_use_TV_TOTAL
)
2230 g_timer
->stop (TV_TOTAL
);
2231 g_timer
->print (stderr
);
2237 /* Potentially call timevar_init (which will create g_timevars if it
2238 doesn't already exist). */
2241 toplev::start_timevars ()
2243 if (time_report
|| !quiet_flag
|| flag_detailed_statistics
)
2246 timevar_start (TV_TOTAL
);
2249 /* Handle -fself-test. */
2252 toplev::run_self_tests ()
2255 /* Reset some state. */
2256 input_location
= UNKNOWN_LOCATION
;
2257 bitmap_obstack_initialize (NULL
);
2259 /* Run the tests; any failures will lead to an abort of the process.
2260 Use "make selftests-gdb" to run under the debugger. */
2261 ::selftest::run_tests ();
2264 bitmap_obstack_release (NULL
);
2266 inform (UNKNOWN_LOCATION
, "self-tests are not enabled in this build");
2267 #endif /* #if CHECKING_P */
2270 /* Entry point of cc1, cc1plus, jc1, f771, etc.
2271 Exit code is FATAL_EXIT_CODE if can't open files or if there were
2272 any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
2274 It is not safe to call this function more than once. */
2277 toplev::main (int argc
, char **argv
)
2279 /* Parsing and gimplification sometimes need quite large stack.
2280 Increase stack size limits if possible. */
2281 stack_limit_increase (64 * 1024 * 1024);
2283 expandargv (&argc
, &argv
);
2285 /* Initialization of GCC's environment, and diagnostics. */
2286 general_init (argv
[0], m_init_signals
);
2288 /* One-off initialization of options that does not need to be
2289 repeated when options are added for particular functions. */
2290 init_options_once ();
2291 init_opts_obstack ();
2293 /* Initialize global options structures; this must be repeated for
2294 each structure used for parsing options. */
2295 init_options_struct (&global_options
, &global_options_set
);
2296 lang_hooks
.init_options_struct (&global_options
);
2298 /* Init GGC heuristics must be caller after we initialize
2300 init_ggc_heuristics ();
2302 /* Convert the options to an array. */
2303 decode_cmdline_options_to_array_default_mask (argc
,
2304 CONST_CAST2 (const char **,
2306 &save_decoded_options
,
2307 &save_decoded_options_count
);
2309 /* Save Optimization decoded options. */
2310 save_opt_decoded_options
= new vec
<cl_decoded_option
> ();
2311 for (unsigned i
= 1; i
< save_decoded_options_count
; ++i
)
2312 if (save_decoded_options
[i
].opt_index
< cl_options_count
2313 && cl_options
[save_decoded_options
[i
].opt_index
].flags
& CL_OPTIMIZATION
)
2314 save_opt_decoded_options
->safe_push (save_decoded_options
[i
]);
2316 /* Perform language-specific options initialization. */
2317 lang_hooks
.init_options (save_decoded_options_count
, save_decoded_options
);
2319 /* Parse the options and do minimal processing; basically just
2320 enough to default flags appropriately. */
2321 decode_options (&global_options
, &global_options_set
,
2322 save_decoded_options
, save_decoded_options_count
,
2323 UNKNOWN_LOCATION
, global_dc
,
2324 targetm
.target_option
.override
);
2326 handle_common_deferred_options ();
2330 initialize_plugins ();
2333 print_version (stderr
, "", true);
2336 print_plugins_help (stderr
, "");
2338 /* Exit early if we can (e.g. -help). */
2339 if (!exit_after_options
)
2341 /* Allow the front end to perform consistency checks and do further
2342 initialization based on the command line options. This hook also
2343 sets the original filename if appropriate (e.g. foo.i -> foo.c)
2344 so we can correctly initialize debug output. */
2345 bool no_backend
= lang_hooks
.post_options (&main_input_filename
);
2347 process_options (no_backend
);
2351 do_compile (no_backend
);
2356 error_at (UNKNOWN_LOCATION
, "self-tests incompatible with %<-E%>");
2362 if (warningcount
|| errorcount
|| werrorcount
)
2363 print_ignored_options ();
2365 /* Invoke registered plugin callbacks if any. Some plugins could
2366 emit some diagnostics here. */
2367 invoke_plugin_callbacks (PLUGIN_FINISH
, NULL
);
2369 if (flag_diagnostics_generate_patch
)
2371 gcc_assert (global_dc
->edit_context_ptr
);
2374 pp_show_color (&pp
) = pp_show_color (global_dc
->printer
);
2375 global_dc
->edit_context_ptr
->print_diff (&pp
, true);
2379 diagnostic_finish (global_dc
);
2381 finalize_plugins ();
2383 after_memory_report
= true;
2385 if (seen_error () || werrorcount
)
2386 return (FATAL_EXIT_CODE
);
2388 return (SUCCESS_EXIT_CODE
);
2391 /* For those that want to, this function aims to clean up enough state that
2392 you can call toplev::main again. */
2394 toplev::finalize (void)
2396 rtl_initialized
= false;
2397 this_target_rtl
->target_specific_initialized
= false;
2399 /* Needs to be called before cgraph_c_finalize since it uses symtab. */
2400 ipa_reference_c_finalize ();
2401 ipa_fnsummary_c_finalize ();
2402 ipa_modref_c_finalize ();
2403 ipa_edge_modifications_finalize ();
2405 cgraph_c_finalize ();
2406 cgraphunit_c_finalize ();
2407 symtab_thunks_cc_finalize ();
2408 dwarf2out_c_finalize ();
2410 ipa_cp_c_finalize ();
2411 ira_costs_c_finalize ();
2413 /* save_decoded_options uses opts_obstack, so these must
2414 be cleaned up together. */
2415 obstack_free (&opts_obstack
, NULL
);
2416 XDELETEVEC (save_decoded_options
);
2417 save_decoded_options
= NULL
;
2418 save_decoded_options_count
= 0;
2420 /* Clean up the context (and pass_manager etc). */