Daily bump.
[official-gcc.git] / gcc / toplev.c
blob9a78af1e1cf3e48f6ed706f8a070ff67310dc599
1 /* Top level of GCC compilers (cc1, cc1plus, etc.)
2 Copyright (C) 1987-2020 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
9 version.
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
14 for more details.
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. */
25 #include "config.h"
26 #include "system.h"
27 #include "coretypes.h"
28 #include "backend.h"
29 #include "target.h"
30 #include "rtl.h"
31 #include "tree.h"
32 #include "gimple.h"
33 #include "alloc-pool.h"
34 #include "timevar.h"
35 #include "memmodel.h"
36 #include "tm_p.h"
37 #include "optabs-libfuncs.h"
38 #include "insn-config.h"
39 #include "ira.h"
40 #include "recog.h"
41 #include "cgraph.h"
42 #include "coverage.h"
43 #include "diagnostic.h"
44 #include "varasm.h"
45 #include "tree-inline.h"
46 #include "realmpfr.h" /* For GMP/MPFR/MPC versions, in print_version. */
47 #include "version.h"
48 #include "flags.h"
49 #include "insn-attr.h"
50 #include "output.h"
51 #include "toplev.h"
52 #include "expr.h"
53 #include "intl.h"
54 #include "tree-diagnostic.h"
55 #include "reload.h"
56 #include "lra.h"
57 #include "dwarf2asm.h"
58 #include "debug.h"
59 #include "common/common-target.h"
60 #include "langhooks.h"
61 #include "cfgloop.h" /* for init_set_costs */
62 #include "hosthooks.h"
63 #include "opts.h"
64 #include "opts-diagnostic.h"
65 #include "stringpool.h"
66 #include "attribs.h"
67 #include "asan.h"
68 #include "tsan.h"
69 #include "plugin.h"
70 #include "context.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"
76 #include "tree-vrp.h"
77 #include "ipa-prop.h"
78 #include "gcse.h"
79 #include "omp-offload.h"
80 #include "edit-context.h"
81 #include "tree-pass.h"
82 #include "dumpfile.h"
83 #include "ipa-fnsummary.h"
84 #include "dump-context.h"
85 #include "print-tree.h"
86 #include "optinfo-emit-json.h"
88 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
89 #include "dbxout.h"
90 #endif
92 #ifdef XCOFF_DEBUGGING_INFO
93 #include "xcoffout.h" /* Needed for external data declarations. */
94 #endif
96 #include "selftest.h"
98 #ifdef HAVE_isl
99 #include <isl/version.h>
100 #endif
102 static void general_init (const char *, bool);
103 static void do_compile ();
104 static void process_options (void);
105 static void backend_init (void);
106 static int lang_dependent_init (const char *);
107 static void init_asm_output (const char *);
108 static void finalize (bool);
110 static void crash_signal (int) ATTRIBUTE_NORETURN;
111 static void compile_file (void);
113 /* True if we don't need a backend (e.g. preprocessing only). */
114 static bool no_backend;
116 /* Length of line when printing switch values. */
117 #define MAX_LINE 75
119 /* Decoded options, and number of such options. */
120 struct cl_decoded_option *save_decoded_options;
121 unsigned int save_decoded_options_count;
123 /* Used to enable -fvar-tracking, -fweb and -frename-registers according
124 to optimize in process_options (). */
125 #define AUTODETECT_VALUE 2
127 /* Debug hooks - dependent upon command line options. */
129 const struct gcc_debug_hooks *debug_hooks;
131 /* The FUNCTION_DECL for the function currently being compiled,
132 or 0 if between functions. */
133 tree current_function_decl;
135 /* Set to the FUNC_BEGIN label of the current function, or NULL
136 if none. */
137 const char * current_function_func_begin_label;
139 /* A random sequence of characters, unless overridden by user. */
140 static const char *flag_random_seed;
142 /* A local time stamp derived from the time of compilation. It will be
143 zero if the system cannot provide a time. It will be -1u, if the
144 user has specified a particular random seed. */
145 unsigned local_tick;
147 /* Random number for this compilation */
148 HOST_WIDE_INT random_seed;
150 /* -f flags. */
152 /* When non-NULL, indicates that whenever space is allocated on the
153 stack, the resulting stack pointer must not pass this
154 address---that is, for stacks that grow downward, the stack pointer
155 must always be greater than or equal to this address; for stacks
156 that grow upward, the stack pointer must be less than this address.
157 At present, the rtx may be either a REG or a SYMBOL_REF, although
158 the support provided depends on the backend. */
159 rtx stack_limit_rtx;
161 class target_flag_state default_target_flag_state;
162 #if SWITCHABLE_TARGET
163 class target_flag_state *this_target_flag_state = &default_target_flag_state;
164 #else
165 #define this_target_flag_state (&default_target_flag_state)
166 #endif
168 /* The user symbol prefix after having resolved same. */
169 const char *user_label_prefix;
171 /* Output files for assembler code (real compiler output)
172 and debugging dumps. */
174 FILE *asm_out_file;
175 FILE *aux_info_file;
176 FILE *callgraph_info_file = NULL;
177 static bitmap callgraph_info_external_printed;
178 FILE *stack_usage_file = NULL;
180 /* The current working directory of a translation. It's generally the
181 directory from which compilation was initiated, but a preprocessed
182 file may specify the original directory in which it was
183 created. */
185 static const char *src_pwd;
187 /* Initialize src_pwd with the given string, and return true. If it
188 was already initialized, return false. As a special case, it may
189 be called with a NULL argument to test whether src_pwd has NOT been
190 initialized yet. */
192 bool
193 set_src_pwd (const char *pwd)
195 if (src_pwd)
197 if (strcmp (src_pwd, pwd) == 0)
198 return true;
199 else
200 return false;
203 src_pwd = xstrdup (pwd);
204 return true;
207 /* Return the directory from which the translation unit was initiated,
208 in case set_src_pwd() was not called before to assign it a
209 different value. */
211 const char *
212 get_src_pwd (void)
214 if (! src_pwd)
216 src_pwd = getpwd ();
217 if (!src_pwd)
218 src_pwd = ".";
221 return src_pwd;
224 /* Called when the start of a function definition is parsed,
225 this function prints on stderr the name of the function. */
226 void
227 announce_function (tree decl)
229 if (!quiet_flag)
231 if (rtl_dump_and_exit)
232 fprintf (stderr, "%s ",
233 identifier_to_locale (IDENTIFIER_POINTER (DECL_NAME (decl))));
234 else
235 fprintf (stderr, " %s",
236 identifier_to_locale (lang_hooks.decl_printable_name (decl, 2)));
237 fflush (stderr);
238 pp_needs_newline (global_dc->printer) = true;
239 diagnostic_set_last_function (global_dc, (diagnostic_info *) NULL);
243 /* Initialize local_tick with the time of day, or -1 if
244 flag_random_seed is set. */
246 static void
247 init_local_tick (void)
249 if (!flag_random_seed)
251 #ifdef HAVE_GETTIMEOFDAY
253 struct timeval tv;
255 gettimeofday (&tv, NULL);
256 local_tick = (unsigned) tv.tv_sec * 1000 + tv.tv_usec / 1000;
258 #else
260 time_t now = time (NULL);
262 if (now != (time_t)-1)
263 local_tick = (unsigned) now;
265 #endif
267 else
268 local_tick = -1;
271 /* Obtain the random_seed. Unless NOINIT, initialize it if
272 it's not provided in the command line. */
274 HOST_WIDE_INT
275 get_random_seed (bool noinit)
277 if (!random_seed && !noinit)
279 int fd = open ("/dev/urandom", O_RDONLY);
280 if (fd >= 0)
282 if (read (fd, &random_seed, sizeof (random_seed))
283 != sizeof (random_seed))
284 random_seed = 0;
285 close (fd);
287 if (!random_seed)
288 random_seed = local_tick ^ getpid ();
290 return random_seed;
293 /* Set flag_random_seed to VAL, and if non-null, reinitialize random_seed. */
295 void
296 set_random_seed (const char *val)
298 flag_random_seed = val;
299 if (flag_random_seed)
301 char *endp;
303 /* When the driver passed in a hex number don't crc it again */
304 random_seed = strtoul (flag_random_seed, &endp, 0);
305 if (!(endp > flag_random_seed && *endp == 0))
306 random_seed = crc32_string (0, flag_random_seed);
310 /* Handler for fatal signals, such as SIGSEGV. These are transformed
311 into ICE messages, which is much more user friendly. In case the
312 error printer crashes, reset the signal to prevent infinite recursion. */
314 static void
315 crash_signal (int signo)
317 signal (signo, SIG_DFL);
319 /* If we crashed while processing an ASM statement, then be a little more
320 graceful. It's most likely the user's fault. */
321 if (this_is_asm_operands)
323 output_operand_lossage ("unrecoverable error");
324 exit (FATAL_EXIT_CODE);
327 internal_error ("%s", strsignal (signo));
330 /* A subroutine of wrapup_global_declarations. We've come to the end of
331 the compilation unit. All deferred variables should be undeferred,
332 and all incomplete decls should be finalized. */
334 void
335 wrapup_global_declaration_1 (tree decl)
337 /* We're not deferring this any longer. Assignment is conditional to
338 avoid needlessly dirtying PCH pages. */
339 if (CODE_CONTAINS_STRUCT (TREE_CODE (decl), TS_DECL_WITH_VIS)
340 && DECL_DEFER_OUTPUT (decl) != 0)
341 DECL_DEFER_OUTPUT (decl) = 0;
343 if (VAR_P (decl) && DECL_SIZE (decl) == 0)
344 lang_hooks.finish_incomplete_decl (decl);
347 /* A subroutine of wrapup_global_declarations. Decide whether or not DECL
348 needs to be output. Return true if it is output. */
350 bool
351 wrapup_global_declaration_2 (tree decl)
353 if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl)
354 || (VAR_P (decl) && DECL_HAS_VALUE_EXPR_P (decl)))
355 return false;
357 /* Don't write out static consts, unless we still need them.
359 We also keep static consts if not optimizing (for debugging),
360 unless the user specified -fno-keep-static-consts.
361 ??? They might be better written into the debug information.
362 This is possible when using DWARF.
364 A language processor that wants static constants to be always
365 written out (even if it is not used) is responsible for
366 calling rest_of_decl_compilation itself. E.g. the C front-end
367 calls rest_of_decl_compilation from finish_decl.
368 One motivation for this is that is conventional in some
369 environments to write things like:
370 static const char rcsid[] = "... version string ...";
371 intending to force the string to be in the executable.
373 A language processor that would prefer to have unneeded
374 static constants "optimized away" would just defer writing
375 them out until here. E.g. C++ does this, because static
376 constants are often defined in header files.
378 ??? A tempting alternative (for both C and C++) would be
379 to force a constant to be written if and only if it is
380 defined in a main file, as opposed to an include file. */
382 if (VAR_P (decl) && TREE_STATIC (decl))
384 varpool_node *node;
385 bool needed = true;
386 node = varpool_node::get (decl);
388 if (!node && flag_ltrans)
389 needed = false;
390 else if (node && node->definition)
391 needed = false;
392 else if (node && node->alias)
393 needed = false;
394 else if (!symtab->global_info_ready
395 && (TREE_USED (decl)
396 || TREE_USED (DECL_ASSEMBLER_NAME (decl))))
397 /* needed */;
398 else if (node && node->analyzed)
399 /* needed */;
400 else if (DECL_COMDAT (decl))
401 needed = false;
402 else if (TREE_READONLY (decl) && !TREE_PUBLIC (decl)
403 && (optimize || !flag_keep_static_consts
404 || DECL_ARTIFICIAL (decl)))
405 needed = false;
407 if (needed)
409 rest_of_decl_compilation (decl, 1, 1);
410 return true;
414 return false;
417 /* Do any final processing required for the declarations in VEC, of
418 which there are LEN. We write out inline functions and variables
419 that have been deferred until this point, but which are required.
420 Returns nonzero if anything was put out. */
422 bool
423 wrapup_global_declarations (tree *vec, int len)
425 bool reconsider, output_something = false;
426 int i;
428 for (i = 0; i < len; i++)
429 wrapup_global_declaration_1 (vec[i]);
431 /* Now emit any global variables or functions that we have been
432 putting off. We need to loop in case one of the things emitted
433 here references another one which comes earlier in the list. */
436 reconsider = false;
437 for (i = 0; i < len; i++)
438 reconsider |= wrapup_global_declaration_2 (vec[i]);
439 if (reconsider)
440 output_something = true;
442 while (reconsider);
444 return output_something;
447 /* Compile an entire translation unit. Write a file of assembly
448 output and various debugging dumps. */
450 static void
451 compile_file (void)
453 timevar_start (TV_PHASE_PARSING);
454 timevar_push (TV_PARSE_GLOBAL);
456 /* Parse entire file and generate initial debug information. */
457 lang_hooks.parse_file ();
459 timevar_pop (TV_PARSE_GLOBAL);
460 timevar_stop (TV_PHASE_PARSING);
462 if (flag_dump_locations)
463 dump_location_info (stderr);
465 /* Compilation is now finished except for writing
466 what's left of the symbol table output. */
468 if (flag_syntax_only || flag_wpa)
469 return;
471 /* Reset maximum_field_alignment, it can be adjusted by #pragma pack
472 and this shouldn't influence any types built by the middle-end
473 from now on (like gcov_info_type). */
474 maximum_field_alignment = initial_max_fld_align * BITS_PER_UNIT;
476 ggc_protect_identifiers = false;
478 /* Run the actual compilation process. */
479 if (!in_lto_p)
481 timevar_start (TV_PHASE_OPT_GEN);
482 symtab->finalize_compilation_unit ();
483 timevar_stop (TV_PHASE_OPT_GEN);
486 /* Perform any post compilation-proper parser cleanups and
487 processing. This is currently only needed for the C++ parser,
488 which can be hopefully cleaned up so this hook is no longer
489 necessary. */
490 if (lang_hooks.decls.post_compilation_parsing_cleanups)
491 lang_hooks.decls.post_compilation_parsing_cleanups ();
493 dump_context::get ().finish_any_json_writer ();
495 if (seen_error ())
496 return;
498 timevar_start (TV_PHASE_LATE_ASM);
500 /* Compilation unit is finalized. When producing non-fat LTO object, we are
501 basically finished. */
502 if ((in_lto_p && flag_incremental_link != INCREMENTAL_LINK_LTO)
503 || !flag_lto || flag_fat_lto_objects)
505 /* File-scope initialization for AddressSanitizer. */
506 if (flag_sanitize & SANITIZE_ADDRESS)
507 asan_finish_file ();
509 if (flag_sanitize & SANITIZE_THREAD)
510 tsan_finish_file ();
512 omp_finish_file ();
514 output_shared_constant_pool ();
515 output_object_blocks ();
516 finish_tm_clone_pairs ();
518 /* Write out any pending weak symbol declarations. */
519 weak_finish ();
521 /* This must be at the end before unwind and debug info.
522 Some target ports emit PIC setup thunks here. */
523 targetm.asm_out.code_end ();
525 /* Do dbx symbols. */
526 timevar_push (TV_SYMOUT);
528 #if defined DWARF2_DEBUGGING_INFO || defined DWARF2_UNWIND_INFO
529 dwarf2out_frame_finish ();
530 #endif
532 debuginfo_start ();
533 (*debug_hooks->finish) (main_input_filename);
534 debuginfo_stop ();
535 timevar_pop (TV_SYMOUT);
537 /* Output some stuff at end of file if nec. */
539 dw2_output_indirect_constants ();
541 /* Flush any pending external directives. */
542 process_pending_assemble_externals ();
545 /* Let linker plugin know that this is a slim object and must be LTOed
546 even when user did not ask for it. */
547 if (flag_generate_lto && !flag_fat_lto_objects)
549 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
550 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, NULL_TREE, "__gnu_lto_slim",
551 HOST_WIDE_INT_1U, 8);
552 #elif defined ASM_OUTPUT_ALIGNED_COMMON
553 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, "__gnu_lto_slim",
554 HOST_WIDE_INT_1U, 8);
555 #else
556 ASM_OUTPUT_COMMON (asm_out_file, "__gnu_lto_slim",
557 HOST_WIDE_INT_1U,
558 HOST_WIDE_INT_1U);
559 #endif
562 /* Attach a special .ident directive to the end of the file to identify
563 the version of GCC which compiled this code. The format of the .ident
564 string is patterned after the ones produced by native SVR4 compilers. */
565 if (!flag_no_ident)
567 const char *pkg_version = "(GNU) ";
568 char *ident_str;
570 if (strcmp ("(GCC) ", pkgversion_string))
571 pkg_version = pkgversion_string;
573 ident_str = ACONCAT (("GCC: ", pkg_version, version_string, NULL));
574 targetm.asm_out.output_ident (ident_str);
577 /* Auto profile finalization. */
578 if (flag_auto_profile)
579 end_auto_profile ();
581 /* Invoke registered plugin callbacks. */
582 invoke_plugin_callbacks (PLUGIN_FINISH_UNIT, NULL);
584 /* This must be at the end. Some target ports emit end of file directives
585 into the assembly file here, and hence we cannot output anything to the
586 assembly file after this point. */
587 targetm.asm_out.file_end ();
589 timevar_stop (TV_PHASE_LATE_ASM);
592 /* Print version information to FILE.
593 Each line begins with INDENT (for the case where FILE is the
594 assembler output file).
596 If SHOW_GLOBAL_STATE is true (for cc1 etc), we are within the compiler
597 proper and can print pertinent state (e.g. params and plugins).
599 If SHOW_GLOBAL_STATE is false (for use by libgccjit), we are outside the
600 compiler, and we don't hold the mutex on the compiler's global state:
601 we can't print params and plugins, since they might not be initialized,
602 or might be being manipulated by a compile running in another
603 thread. */
605 void
606 print_version (FILE *file, const char *indent, bool show_global_state)
608 static const char fmt1[] =
609 #ifdef __GNUC__
610 N_("%s%s%s %sversion %s (%s)\n%s\tcompiled by GNU C version %s, ")
611 #else
612 N_("%s%s%s %sversion %s (%s) compiled by CC, ")
613 #endif
615 static const char fmt2[] =
616 N_("GMP version %s, MPFR version %s, MPC version %s, isl version %s\n");
617 static const char fmt3[] =
618 N_("%s%swarning: %s header version %s differs from library version %s.\n");
619 static const char fmt4[] =
620 N_("%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n");
621 #ifndef __VERSION__
622 #define __VERSION__ "[?]"
623 #endif
624 fprintf (file,
625 file == stderr ? _(fmt1) : fmt1,
626 indent, *indent != 0 ? " " : "",
627 lang_hooks.name, pkgversion_string, version_string, TARGET_NAME,
628 indent, __VERSION__);
630 /* We need to stringify the GMP macro values. Ugh, gmp_version has
631 two string formats, "i.j.k" and "i.j" when k is zero. As of
632 gmp-4.3.0, GMP always uses the 3 number format. */
633 #define GCC_GMP_STRINGIFY_VERSION3(X) #X
634 #define GCC_GMP_STRINGIFY_VERSION2(X) GCC_GMP_STRINGIFY_VERSION3 (X)
635 #define GCC_GMP_VERSION_NUM(X,Y,Z) (((X) << 16L) | ((Y) << 8) | (Z))
636 #define GCC_GMP_VERSION \
637 GCC_GMP_VERSION_NUM(__GNU_MP_VERSION, __GNU_MP_VERSION_MINOR, __GNU_MP_VERSION_PATCHLEVEL)
638 #if GCC_GMP_VERSION < GCC_GMP_VERSION_NUM(4,3,0) && __GNU_MP_VERSION_PATCHLEVEL == 0
639 #define GCC_GMP_STRINGIFY_VERSION \
640 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION) "." \
641 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION_MINOR)
642 #else
643 #define GCC_GMP_STRINGIFY_VERSION \
644 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION) "." \
645 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION_MINOR) "." \
646 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION_PATCHLEVEL)
647 #endif
648 fprintf (file,
649 file == stderr ? _(fmt2) : fmt2,
650 GCC_GMP_STRINGIFY_VERSION, MPFR_VERSION_STRING, MPC_VERSION_STRING,
651 #ifndef HAVE_isl
652 "none"
653 #else
654 isl_version ()
655 #endif
657 if (strcmp (GCC_GMP_STRINGIFY_VERSION, gmp_version))
658 fprintf (file,
659 file == stderr ? _(fmt3) : fmt3,
660 indent, *indent != 0 ? " " : "",
661 "GMP", GCC_GMP_STRINGIFY_VERSION, gmp_version);
662 if (strcmp (MPFR_VERSION_STRING, mpfr_get_version ()))
663 fprintf (file,
664 file == stderr ? _(fmt3) : fmt3,
665 indent, *indent != 0 ? " " : "",
666 "MPFR", MPFR_VERSION_STRING, mpfr_get_version ());
667 if (strcmp (MPC_VERSION_STRING, mpc_get_version ()))
668 fprintf (file,
669 file == stderr ? _(fmt3) : fmt3,
670 indent, *indent != 0 ? " " : "",
671 "MPC", MPC_VERSION_STRING, mpc_get_version ());
673 if (show_global_state)
675 fprintf (file,
676 file == stderr ? _(fmt4) : fmt4,
677 indent, *indent != 0 ? " " : "",
678 param_ggc_min_expand, param_ggc_min_heapsize);
680 print_plugins_versions (file, indent);
684 static int
685 print_to_asm_out_file (print_switch_type type, const char * text)
687 bool prepend_sep = true;
689 switch (type)
691 case SWITCH_TYPE_LINE_END:
692 putc ('\n', asm_out_file);
693 return 1;
695 case SWITCH_TYPE_LINE_START:
696 fputs (ASM_COMMENT_START, asm_out_file);
697 return strlen (ASM_COMMENT_START);
699 case SWITCH_TYPE_DESCRIPTIVE:
700 if (ASM_COMMENT_START[0] == 0)
701 prepend_sep = false;
702 /* FALLTHRU */
703 case SWITCH_TYPE_PASSED:
704 case SWITCH_TYPE_ENABLED:
705 if (prepend_sep)
706 fputc (' ', asm_out_file);
707 fputs (text, asm_out_file);
708 /* No need to return the length here as
709 print_single_switch has already done it. */
710 return 0;
712 default:
713 return -1;
717 static int
718 print_to_stderr (print_switch_type type, const char * text)
720 switch (type)
722 case SWITCH_TYPE_LINE_END:
723 putc ('\n', stderr);
724 return 1;
726 case SWITCH_TYPE_LINE_START:
727 return 0;
729 case SWITCH_TYPE_PASSED:
730 case SWITCH_TYPE_ENABLED:
731 fputc (' ', stderr);
732 /* FALLTHRU */
734 case SWITCH_TYPE_DESCRIPTIVE:
735 fputs (text, stderr);
736 /* No need to return the length here as
737 print_single_switch has already done it. */
738 return 0;
740 default:
741 return -1;
745 /* Print an option value and return the adjusted position in the line.
746 ??? print_fn doesn't handle errors, eg disk full; presumably other
747 code will catch a disk full though. */
749 static int
750 print_single_switch (print_switch_fn_type print_fn,
751 int pos,
752 print_switch_type type,
753 const char * text)
755 /* The ultrix fprintf returns 0 on success, so compute the result
756 we want here since we need it for the following test. The +1
757 is for the separator character that will probably be emitted. */
758 int len = strlen (text) + 1;
760 if (pos != 0
761 && pos + len > MAX_LINE)
763 print_fn (SWITCH_TYPE_LINE_END, NULL);
764 pos = 0;
767 if (pos == 0)
768 pos += print_fn (SWITCH_TYPE_LINE_START, NULL);
770 print_fn (type, text);
771 return pos + len;
774 /* Print active target switches using PRINT_FN.
775 POS is the current cursor position and MAX is the size of a "line".
776 Each line begins with INDENT and ends with TERM.
777 Each switch is separated from the next by SEP. */
779 static void
780 print_switch_values (print_switch_fn_type print_fn)
782 int pos = 0;
783 size_t j;
785 /* Print the options as passed. */
786 pos = print_single_switch (print_fn, pos,
787 SWITCH_TYPE_DESCRIPTIVE, _("options passed: "));
789 for (j = 1; j < save_decoded_options_count; j++)
791 switch (save_decoded_options[j].opt_index)
793 case OPT_o:
794 case OPT_d:
795 case OPT_dumpbase:
796 case OPT_dumpbase_ext:
797 case OPT_dumpdir:
798 case OPT_quiet:
799 case OPT_version:
800 /* Ignore these. */
801 continue;
804 pos = print_single_switch (print_fn, pos, SWITCH_TYPE_PASSED,
805 save_decoded_options[j].orig_option_with_args_text);
808 if (pos > 0)
809 print_fn (SWITCH_TYPE_LINE_END, NULL);
811 /* Print the -f and -m options that have been enabled.
812 We don't handle language specific options but printing argv
813 should suffice. */
814 pos = print_single_switch (print_fn, 0,
815 SWITCH_TYPE_DESCRIPTIVE, _("options enabled: "));
817 unsigned lang_mask = lang_hooks.option_lang_mask ();
818 for (j = 0; j < cl_options_count; j++)
819 if (cl_options[j].cl_report
820 && option_enabled (j, lang_mask, &global_options) > 0)
821 pos = print_single_switch (print_fn, pos,
822 SWITCH_TYPE_ENABLED, cl_options[j].opt_text);
824 print_fn (SWITCH_TYPE_LINE_END, NULL);
827 /* Open assembly code output file. Do this even if -fsyntax-only is
828 on, because then the driver will have provided the name of a
829 temporary file or bit bucket for us. NAME is the file specified on
830 the command line, possibly NULL. */
831 static void
832 init_asm_output (const char *name)
834 if (name == NULL && asm_file_name == 0)
835 asm_out_file = stdout;
836 else
838 if (asm_file_name == 0)
840 int len = strlen (dump_base_name);
841 char *dumpname = XNEWVEC (char, len + 6);
843 memcpy (dumpname, dump_base_name, len + 1);
844 strip_off_ending (dumpname, len);
845 strcat (dumpname, ".s");
846 asm_file_name = dumpname;
848 if (!strcmp (asm_file_name, "-"))
849 asm_out_file = stdout;
850 else if (!canonical_filename_eq (asm_file_name, name)
851 || !strcmp (asm_file_name, HOST_BIT_BUCKET))
852 asm_out_file = fopen (asm_file_name, "w");
853 else
854 /* Use UNKOWN_LOCATION to prevent gcc from printing the first
855 line in the current file. */
856 fatal_error (UNKNOWN_LOCATION,
857 "input file %qs is the same as output file",
858 asm_file_name);
859 if (asm_out_file == 0)
860 fatal_error (UNKNOWN_LOCATION,
861 "cannot open %qs for writing: %m", asm_file_name);
864 if (!flag_syntax_only)
866 targetm.asm_out.file_start ();
868 if (flag_record_gcc_switches)
870 if (targetm.asm_out.record_gcc_switches)
872 /* Let the target know that we are about to start recording. */
873 targetm.asm_out.record_gcc_switches (SWITCH_TYPE_DESCRIPTIVE,
874 NULL);
875 /* Now record the switches. */
876 print_switch_values (targetm.asm_out.record_gcc_switches);
877 /* Let the target know that the recording is over. */
878 targetm.asm_out.record_gcc_switches (SWITCH_TYPE_DESCRIPTIVE,
879 NULL);
881 else
882 inform (UNKNOWN_LOCATION,
883 "%<-frecord-gcc-switches%> is not supported by "
884 "the current target");
887 if (flag_verbose_asm)
889 /* Print the list of switches in effect
890 into the assembler file as comments. */
891 print_version (asm_out_file, ASM_COMMENT_START, true);
892 print_switch_values (print_to_asm_out_file);
893 putc ('\n', asm_out_file);
898 /* A helper function; used as the reallocator function for cpp's line
899 table. */
900 static void *
901 realloc_for_line_map (void *ptr, size_t len)
903 return ggc_realloc (ptr, len);
906 /* A helper function: used as the allocator function for
907 identifier_to_locale. */
908 static void *
909 alloc_for_identifier_to_locale (size_t len)
911 return ggc_alloc_atomic (len);
914 /* Output stack usage information. */
915 static void
916 output_stack_usage_1 (FILE *cf)
918 static bool warning_issued = false;
919 enum stack_usage_kind_type { STATIC = 0, DYNAMIC, DYNAMIC_BOUNDED };
920 const char *stack_usage_kind_str[] = {
921 "static",
922 "dynamic",
923 "dynamic,bounded"
925 HOST_WIDE_INT stack_usage = current_function_static_stack_size;
926 enum stack_usage_kind_type stack_usage_kind;
928 if (stack_usage < 0)
930 if (!warning_issued)
932 warning (0, "stack usage computation not supported for this target");
933 warning_issued = true;
935 return;
938 stack_usage_kind = STATIC;
940 /* Add the maximum amount of space pushed onto the stack. */
941 if (maybe_ne (current_function_pushed_stack_size, 0))
943 HOST_WIDE_INT extra;
944 if (current_function_pushed_stack_size.is_constant (&extra))
946 stack_usage += extra;
947 stack_usage_kind = DYNAMIC_BOUNDED;
949 else
951 extra = constant_lower_bound (current_function_pushed_stack_size);
952 stack_usage += extra;
953 stack_usage_kind = DYNAMIC;
957 /* Now on to the tricky part: dynamic stack allocation. */
958 if (current_function_allocates_dynamic_stack_space)
960 if (stack_usage_kind != DYNAMIC)
962 if (current_function_has_unbounded_dynamic_stack_size)
963 stack_usage_kind = DYNAMIC;
964 else
965 stack_usage_kind = DYNAMIC_BOUNDED;
968 /* Add the size even in the unbounded case, this can't hurt. */
969 stack_usage += current_function_dynamic_stack_size;
972 if (cf && flag_callgraph_info & CALLGRAPH_INFO_STACK_USAGE)
973 fprintf (cf, "\\n" HOST_WIDE_INT_PRINT_DEC " bytes (%s)",
974 stack_usage,
975 stack_usage_kind_str[stack_usage_kind]);
977 if (stack_usage_file)
979 print_decl_identifier (stack_usage_file, current_function_decl,
980 PRINT_DECL_ORIGIN | PRINT_DECL_NAME);
981 fprintf (stack_usage_file, "\t" HOST_WIDE_INT_PRINT_DEC"\t%s\n",
982 stack_usage, stack_usage_kind_str[stack_usage_kind]);
985 if (warn_stack_usage >= 0 && warn_stack_usage < HOST_WIDE_INT_MAX)
987 const location_t loc = DECL_SOURCE_LOCATION (current_function_decl);
989 if (stack_usage_kind == DYNAMIC)
990 warning_at (loc, OPT_Wstack_usage_, "stack usage might be unbounded");
991 else if (stack_usage > warn_stack_usage)
993 if (stack_usage_kind == DYNAMIC_BOUNDED)
994 warning_at (loc,
995 OPT_Wstack_usage_, "stack usage might be %wu bytes",
996 stack_usage);
997 else
998 warning_at (loc, OPT_Wstack_usage_, "stack usage is %wu bytes",
999 stack_usage);
1004 /* Dump placeholder node for indirect calls in VCG format. */
1006 #define INDIRECT_CALL_NAME "__indirect_call"
1008 static void
1009 dump_final_node_vcg_start (FILE *f, tree decl)
1011 fputs ("node: { title: \"", f);
1012 if (decl)
1013 print_decl_identifier (f, decl, PRINT_DECL_UNIQUE_NAME);
1014 else
1015 fputs (INDIRECT_CALL_NAME, f);
1016 fputs ("\" label: \"", f);
1017 if (decl)
1019 print_decl_identifier (f, decl, PRINT_DECL_NAME);
1020 fputs ("\\n", f);
1021 print_decl_identifier (f, decl, PRINT_DECL_ORIGIN);
1023 else
1024 fputs ("Indirect Call Placeholder", f);
1027 /* Dump final cgraph edge in VCG format. */
1029 static void
1030 dump_final_callee_vcg (FILE *f, location_t location, tree callee)
1032 if ((!callee || DECL_EXTERNAL (callee))
1033 && bitmap_set_bit (callgraph_info_external_printed,
1034 callee ? DECL_UID (callee) + 1 : 0))
1036 dump_final_node_vcg_start (f, callee);
1037 fputs ("\" shape : ellipse }\n", f);
1040 fputs ("edge: { sourcename: \"", f);
1041 print_decl_identifier (f, current_function_decl, PRINT_DECL_UNIQUE_NAME);
1042 fputs ("\" targetname: \"", f);
1043 if (callee)
1044 print_decl_identifier (f, callee, PRINT_DECL_UNIQUE_NAME);
1045 else
1046 fputs (INDIRECT_CALL_NAME, f);
1047 if (LOCATION_LOCUS (location) != UNKNOWN_LOCATION)
1049 expanded_location loc;
1050 fputs ("\" label: \"", f);
1051 loc = expand_location (location);
1052 fprintf (f, "%s:%d:%d", loc.file, loc.line, loc.column);
1054 fputs ("\" }\n", f);
1057 /* Dump final cgraph node in VCG format. */
1059 static void
1060 dump_final_node_vcg (FILE *f)
1062 dump_final_node_vcg_start (f, current_function_decl);
1064 if (flag_stack_usage_info
1065 || (flag_callgraph_info & CALLGRAPH_INFO_STACK_USAGE))
1066 output_stack_usage_1 (f);
1068 if (flag_callgraph_info & CALLGRAPH_INFO_DYNAMIC_ALLOC)
1070 fprintf (f, "\\n%u dynamic objects", vec_safe_length (cfun->su->dallocs));
1072 unsigned i;
1073 callinfo_dalloc *cda;
1074 FOR_EACH_VEC_SAFE_ELT (cfun->su->dallocs, i, cda)
1076 expanded_location loc = expand_location (cda->location);
1077 fprintf (f, "\\n %s", cda->name);
1078 fprintf (f, " %s:%d:%d", loc.file, loc.line, loc.column);
1081 vec_free (cfun->su->dallocs);
1082 cfun->su->dallocs = NULL;
1085 fputs ("\" }\n", f);
1087 unsigned i;
1088 callinfo_callee *c;
1089 FOR_EACH_VEC_SAFE_ELT (cfun->su->callees, i, c)
1090 dump_final_callee_vcg (f, c->location, c->decl);
1091 vec_free (cfun->su->callees);
1092 cfun->su->callees = NULL;
1095 /* Output stack usage and callgraph info, as requested. */
1096 void
1097 output_stack_usage (void)
1099 if (flag_callgraph_info)
1100 dump_final_node_vcg (callgraph_info_file);
1101 else
1102 output_stack_usage_1 (NULL);
1105 /* Open an auxiliary output file. */
1106 static FILE *
1107 open_auxiliary_file (const char *ext)
1109 char *filename;
1110 FILE *file;
1112 filename = concat (aux_base_name, ".", ext, NULL);
1113 file = fopen (filename, "w");
1114 if (!file)
1115 fatal_error (input_location, "cannot open %s for writing: %m", filename);
1116 free (filename);
1117 return file;
1120 /* Alternative diagnostics callback for reentered ICE reporting. */
1122 static void
1123 internal_error_reentered (diagnostic_context *, const char *, va_list *)
1125 /* Flush the dump file if emergency_dump_function itself caused an ICE. */
1126 if (dump_file)
1127 fflush (dump_file);
1130 /* Auxiliary callback for the diagnostics code. */
1132 static void
1133 internal_error_function (diagnostic_context *, const char *, va_list *)
1135 global_dc->internal_error = internal_error_reentered;
1136 warn_if_plugins ();
1137 emergency_dump_function ();
1140 /* Initialization of the front end environment, before command line
1141 options are parsed. Signal handlers, internationalization etc.
1142 ARGV0 is main's argv[0]. */
1143 static void
1144 general_init (const char *argv0, bool init_signals)
1146 const char *p;
1148 p = argv0 + strlen (argv0);
1149 while (p != argv0 && !IS_DIR_SEPARATOR (p[-1]))
1150 --p;
1151 progname = p;
1153 xmalloc_set_program_name (progname);
1155 hex_init ();
1157 /* Unlock the stdio streams. */
1158 unlock_std_streams ();
1160 gcc_init_libintl ();
1162 identifier_to_locale_alloc = alloc_for_identifier_to_locale;
1163 identifier_to_locale_free = ggc_free;
1165 /* Initialize the diagnostics reporting machinery, so option parsing
1166 can give warnings and errors. */
1167 diagnostic_initialize (global_dc, N_OPTS);
1168 global_dc->lang_mask = lang_hooks.option_lang_mask ();
1169 /* Set a default printer. Language specific initializations will
1170 override it later. */
1171 tree_diagnostics_defaults (global_dc);
1173 global_dc->show_caret
1174 = global_options_init.x_flag_diagnostics_show_caret;
1175 global_dc->show_labels_p
1176 = global_options_init.x_flag_diagnostics_show_labels;
1177 global_dc->show_line_numbers_p
1178 = global_options_init.x_flag_diagnostics_show_line_numbers;
1179 global_dc->show_cwe
1180 = global_options_init.x_flag_diagnostics_show_cwe;
1181 global_dc->path_format
1182 = (enum diagnostic_path_format)global_options_init.x_flag_diagnostics_path_format;
1183 global_dc->show_path_depths
1184 = global_options_init.x_flag_diagnostics_show_path_depths;
1185 global_dc->show_option_requested
1186 = global_options_init.x_flag_diagnostics_show_option;
1187 global_dc->min_margin_width
1188 = global_options_init.x_diagnostics_minimum_margin_width;
1189 global_dc->show_column
1190 = global_options_init.x_flag_show_column;
1191 global_dc->internal_error = internal_error_function;
1192 global_dc->option_enabled = option_enabled;
1193 global_dc->option_state = &global_options;
1194 global_dc->option_name = option_name;
1195 global_dc->get_option_url = get_option_url;
1197 if (init_signals)
1199 /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages. */
1200 #ifdef SIGSEGV
1201 signal (SIGSEGV, crash_signal);
1202 #endif
1203 #ifdef SIGILL
1204 signal (SIGILL, crash_signal);
1205 #endif
1206 #ifdef SIGBUS
1207 signal (SIGBUS, crash_signal);
1208 #endif
1209 #ifdef SIGABRT
1210 signal (SIGABRT, crash_signal);
1211 #endif
1212 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
1213 signal (SIGIOT, crash_signal);
1214 #endif
1215 #ifdef SIGFPE
1216 signal (SIGFPE, crash_signal);
1217 #endif
1219 /* Other host-specific signal setup. */
1220 (*host_hooks.extra_signals)();
1223 /* Initialize the garbage-collector, string pools and tree type hash
1224 table. */
1225 init_ggc ();
1226 init_stringpool ();
1227 input_location = UNKNOWN_LOCATION;
1228 line_table = ggc_alloc<line_maps> ();
1229 linemap_init (line_table, BUILTINS_LOCATION);
1230 line_table->reallocator = realloc_for_line_map;
1231 line_table->round_alloc_size = ggc_round_alloc_size;
1232 line_table->default_range_bits = 5;
1233 init_ttree ();
1235 /* Initialize register usage now so switches may override. */
1236 init_reg_sets ();
1238 /* Create the singleton holder for global state. This creates the
1239 dump manager. */
1240 g = new gcc::context ();
1242 /* Allow languages and middle-end to register their dumps before the
1243 optimization passes. */
1244 g->get_dumps ()->register_dumps ();
1246 /* Create the passes. */
1247 g->set_passes (new gcc::pass_manager (g));
1249 symtab = new (ggc_alloc <symbol_table> ()) symbol_table ();
1251 statistics_early_init ();
1252 debuginfo_early_init ();
1255 /* Return true if the current target supports -fsection-anchors. */
1257 static bool
1258 target_supports_section_anchors_p (void)
1260 if (targetm.min_anchor_offset == 0 && targetm.max_anchor_offset == 0)
1261 return false;
1263 if (targetm.asm_out.output_anchor == NULL)
1264 return false;
1266 return true;
1269 /* Parse "N[:M][:...]" into struct align_flags A.
1270 VALUES contains parsed values (in reverse order), all processed
1271 values are popped. */
1273 static void
1274 read_log_maxskip (auto_vec<unsigned> &values, align_flags_tuple *a)
1276 unsigned n = values.pop ();
1277 if (n != 0)
1278 a->log = floor_log2 (n * 2 - 1);
1280 if (values.is_empty ())
1281 a->maxskip = n ? n - 1 : 0;
1282 else
1284 unsigned m = values.pop ();
1285 /* -falign-foo=N:M means M-1 max bytes of padding, not M. */
1286 if (m > 0)
1287 m--;
1288 a->maxskip = m;
1291 /* Normalize the tuple. */
1292 a->normalize ();
1295 /* Parse "N[:M[:N2[:M2]]]" string FLAG into a pair of struct align_flags. */
1297 static void
1298 parse_N_M (const char *flag, align_flags &a)
1300 if (flag)
1302 static hash_map <nofree_string_hash, align_flags> cache;
1303 align_flags *entry = cache.get (flag);
1304 if (entry)
1306 a = *entry;
1307 return;
1310 auto_vec<unsigned> result_values;
1311 bool r = parse_and_check_align_values (flag, NULL, result_values, false,
1312 UNKNOWN_LOCATION);
1313 if (!r)
1314 return;
1316 /* Reverse values for easier manipulation. */
1317 result_values.reverse ();
1319 read_log_maxskip (result_values, &a.levels[0]);
1320 if (!result_values.is_empty ())
1321 read_log_maxskip (result_values, &a.levels[1]);
1322 #ifdef SUBALIGN_LOG
1323 else
1325 /* N2[:M2] is not specified. This arch has a default for N2.
1326 Before -falign-foo=N:M:N2:M2 was introduced, x86 had a tweak.
1327 -falign-functions=N with N > 8 was adding secondary alignment.
1328 -falign-functions=10 was emitting this before every function:
1329 .p2align 4,,9
1330 .p2align 3
1331 Now this behavior (and more) can be explicitly requested:
1332 -falign-functions=16:10:8
1333 Retain old behavior if N2 is missing: */
1335 int align = 1 << a.levels[0].log;
1336 int subalign = 1 << SUBALIGN_LOG;
1338 if (a.levels[0].log > SUBALIGN_LOG
1339 && a.levels[0].maxskip >= subalign - 1)
1341 /* Set N2 unless subalign can never have any effect. */
1342 if (align > a.levels[0].maxskip + 1)
1344 a.levels[1].log = SUBALIGN_LOG;
1345 a.levels[1].normalize ();
1349 #endif
1351 /* Cache seen value. */
1352 cache.put (flag, a);
1356 /* Process -falign-foo=N[:M[:N2[:M2]]] options. */
1358 void
1359 parse_alignment_opts (void)
1361 parse_N_M (str_align_loops, align_loops);
1362 parse_N_M (str_align_jumps, align_jumps);
1363 parse_N_M (str_align_labels, align_labels);
1364 parse_N_M (str_align_functions, align_functions);
1367 /* Process the options that have been parsed. */
1368 static void
1369 process_options (void)
1371 /* Just in case lang_hooks.post_options ends up calling a debug_hook.
1372 This can happen with incorrect pre-processed input. */
1373 debug_hooks = &do_nothing_debug_hooks;
1375 maximum_field_alignment = initial_max_fld_align * BITS_PER_UNIT;
1377 /* Allow the front end to perform consistency checks and do further
1378 initialization based on the command line options. This hook also
1379 sets the original filename if appropriate (e.g. foo.i -> foo.c)
1380 so we can correctly initialize debug output. */
1381 no_backend = lang_hooks.post_options (&main_input_filename);
1383 /* Some machines may reject certain combinations of options. */
1384 location_t saved_location = input_location;
1385 input_location = UNKNOWN_LOCATION;
1386 targetm.target_option.override ();
1387 input_location = saved_location;
1389 if (flag_diagnostics_generate_patch)
1390 global_dc->edit_context_ptr = new edit_context ();
1392 /* Avoid any informative notes in the second run of -fcompare-debug. */
1393 if (flag_compare_debug)
1394 diagnostic_inhibit_notes (global_dc);
1396 if (flag_section_anchors && !target_supports_section_anchors_p ())
1398 warning_at (UNKNOWN_LOCATION, OPT_fsection_anchors,
1399 "this target does not support %qs",
1400 "-fsection-anchors");
1401 flag_section_anchors = 0;
1404 if (flag_short_enums == 2)
1405 flag_short_enums = targetm.default_short_enums ();
1407 /* Set aux_base_name if not already set. */
1408 if (aux_base_name)
1410 else if (dump_base_name)
1412 const char *name = dump_base_name;
1413 int nlen, len;
1415 if (dump_base_ext && (len = strlen (dump_base_ext))
1416 && (nlen = strlen (name)) && nlen > len
1417 && strcmp (name + nlen - len, dump_base_ext) == 0)
1419 char *p = xstrndup (name, nlen - len);
1420 name = p;
1423 aux_base_name = name;
1425 else
1426 aux_base_name = "gccaux";
1428 #ifndef HAVE_isl
1429 if (flag_graphite
1430 || flag_loop_nest_optimize
1431 || flag_graphite_identity
1432 || flag_loop_parallelize_all)
1433 sorry ("Graphite loop optimizations cannot be used (isl is not available) "
1434 "(%<-fgraphite%>, %<-fgraphite-identity%>, "
1435 "%<-floop-nest-optimize%>, %<-floop-parallelize-all%>)");
1436 #endif
1438 if (flag_cf_protection != CF_NONE
1439 && !(flag_cf_protection & CF_SET))
1441 if (flag_cf_protection == CF_FULL)
1443 error_at (UNKNOWN_LOCATION,
1444 "%<-fcf-protection=full%> is not supported for this "
1445 "target");
1446 flag_cf_protection = CF_NONE;
1448 if (flag_cf_protection == CF_BRANCH)
1450 error_at (UNKNOWN_LOCATION,
1451 "%<-fcf-protection=branch%> is not supported for this "
1452 "target");
1453 flag_cf_protection = CF_NONE;
1455 if (flag_cf_protection == CF_RETURN)
1457 error_at (UNKNOWN_LOCATION,
1458 "%<-fcf-protection=return%> is not supported for this "
1459 "target");
1460 flag_cf_protection = CF_NONE;
1464 /* One region RA really helps to decrease the code size. */
1465 if (flag_ira_region == IRA_REGION_AUTODETECT)
1466 flag_ira_region
1467 = optimize_size || !optimize ? IRA_REGION_ONE : IRA_REGION_MIXED;
1469 if (!abi_version_at_least (2))
1471 /* -fabi-version=1 support was removed after GCC 4.9. */
1472 error_at (UNKNOWN_LOCATION,
1473 "%<-fabi-version=1%> is no longer supported");
1474 flag_abi_version = 2;
1477 /* Unrolling all loops implies that standard loop unrolling must also
1478 be done. */
1479 if (flag_unroll_all_loops)
1480 flag_unroll_loops = 1;
1482 /* Allow cunroll to grow size accordingly. */
1483 if (flag_cunroll_grow_size == AUTODETECT_VALUE)
1484 flag_cunroll_grow_size
1485 = flag_unroll_loops || flag_peel_loops || optimize >= 3;
1487 /* web and rename-registers help when run after loop unrolling. */
1488 if (flag_web == AUTODETECT_VALUE)
1489 flag_web = flag_unroll_loops;
1491 if (flag_rename_registers == AUTODETECT_VALUE)
1492 flag_rename_registers = flag_unroll_loops;
1494 if (flag_non_call_exceptions)
1495 flag_asynchronous_unwind_tables = 1;
1496 if (flag_asynchronous_unwind_tables)
1497 flag_unwind_tables = 1;
1499 if (flag_value_profile_transformations)
1500 flag_profile_values = 1;
1502 /* Warn about options that are not supported on this machine. */
1503 #ifndef INSN_SCHEDULING
1504 if (flag_schedule_insns || flag_schedule_insns_after_reload)
1505 warning_at (UNKNOWN_LOCATION, 0,
1506 "instruction scheduling not supported on this target machine");
1507 #endif
1508 if (!DELAY_SLOTS && flag_delayed_branch)
1509 warning_at (UNKNOWN_LOCATION, 0,
1510 "this target machine does not have delayed branches");
1512 user_label_prefix = USER_LABEL_PREFIX;
1513 if (flag_leading_underscore != -1)
1515 /* If the default prefix is more complicated than "" or "_",
1516 issue a warning and ignore this option. */
1517 if (user_label_prefix[0] == 0 ||
1518 (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
1520 user_label_prefix = flag_leading_underscore ? "_" : "";
1522 else
1523 warning_at (UNKNOWN_LOCATION, 0,
1524 "%<-f%sleading-underscore%> not supported on this "
1525 "target machine", flag_leading_underscore ? "" : "no-");
1528 /* If we are in verbose mode, write out the version and maybe all the
1529 option flags in use. */
1530 if (version_flag)
1532 print_version (stderr, "", true);
1533 if (! quiet_flag)
1534 print_switch_values (print_to_stderr);
1537 if (flag_syntax_only)
1539 write_symbols = NO_DEBUG;
1540 profile_flag = 0;
1543 if (flag_gtoggle)
1545 if (debug_info_level == DINFO_LEVEL_NONE)
1547 debug_info_level = DINFO_LEVEL_NORMAL;
1549 if (write_symbols == NO_DEBUG)
1550 write_symbols = PREFERRED_DEBUGGING_TYPE;
1552 else
1553 debug_info_level = DINFO_LEVEL_NONE;
1556 if (flag_dump_final_insns && !flag_syntax_only && !no_backend)
1558 FILE *final_output = fopen (flag_dump_final_insns, "w");
1559 if (!final_output)
1561 error_at (UNKNOWN_LOCATION,
1562 "could not open final insn dump file %qs: %m",
1563 flag_dump_final_insns);
1564 flag_dump_final_insns = NULL;
1566 else if (fclose (final_output))
1568 error_at (UNKNOWN_LOCATION,
1569 "could not close zeroed insn dump file %qs: %m",
1570 flag_dump_final_insns);
1571 flag_dump_final_insns = NULL;
1575 /* A lot of code assumes write_symbols == NO_DEBUG if the debugging
1576 level is 0. */
1577 if (debug_info_level == DINFO_LEVEL_NONE)
1578 write_symbols = NO_DEBUG;
1580 if (write_symbols == NO_DEBUG)
1582 #if defined(DBX_DEBUGGING_INFO)
1583 else if (write_symbols == DBX_DEBUG)
1584 debug_hooks = &dbx_debug_hooks;
1585 #endif
1586 #if defined(XCOFF_DEBUGGING_INFO)
1587 else if (write_symbols == XCOFF_DEBUG)
1588 debug_hooks = &xcoff_debug_hooks;
1589 #endif
1590 #ifdef DWARF2_DEBUGGING_INFO
1591 else if (write_symbols == DWARF2_DEBUG)
1592 debug_hooks = &dwarf2_debug_hooks;
1593 #endif
1594 #ifdef VMS_DEBUGGING_INFO
1595 else if (write_symbols == VMS_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
1596 debug_hooks = &vmsdbg_debug_hooks;
1597 #endif
1598 #ifdef DWARF2_LINENO_DEBUGGING_INFO
1599 else if (write_symbols == DWARF2_DEBUG)
1600 debug_hooks = &dwarf2_lineno_debug_hooks;
1601 #endif
1602 else
1603 error_at (UNKNOWN_LOCATION,
1604 "target system does not support the %qs debug format",
1605 debug_type_names[write_symbols]);
1607 /* We know which debug output will be used so we can set flag_var_tracking
1608 and flag_var_tracking_uninit if the user has not specified them. */
1609 if (debug_info_level < DINFO_LEVEL_NORMAL
1610 || debug_hooks->var_location == do_nothing_debug_hooks.var_location)
1612 if (flag_var_tracking == 1
1613 || flag_var_tracking_uninit == 1)
1615 if (debug_info_level < DINFO_LEVEL_NORMAL)
1616 warning_at (UNKNOWN_LOCATION, 0,
1617 "variable tracking requested, but useless unless "
1618 "producing debug info");
1619 else
1620 warning_at (UNKNOWN_LOCATION, 0,
1621 "variable tracking requested, but not supported "
1622 "by this debug format");
1624 flag_var_tracking = 0;
1625 flag_var_tracking_uninit = 0;
1628 /* The debug hooks are used to implement -fdump-go-spec because it
1629 gives a simple and stable API for all the information we need to
1630 dump. */
1631 if (flag_dump_go_spec != NULL)
1632 debug_hooks = dump_go_spec_init (flag_dump_go_spec, debug_hooks);
1634 /* If the user specifically requested variable tracking with tagging
1635 uninitialized variables, we need to turn on variable tracking.
1636 (We already determined above that variable tracking is feasible.) */
1637 if (flag_var_tracking_uninit == 1)
1638 flag_var_tracking = 1;
1640 if (flag_var_tracking == AUTODETECT_VALUE)
1641 flag_var_tracking = optimize >= 1;
1643 if (flag_var_tracking_uninit == AUTODETECT_VALUE)
1644 flag_var_tracking_uninit = flag_var_tracking;
1646 if (flag_var_tracking_assignments == AUTODETECT_VALUE)
1647 flag_var_tracking_assignments
1648 = (flag_var_tracking
1649 && !(flag_selective_scheduling || flag_selective_scheduling2));
1651 if (flag_var_tracking_assignments_toggle)
1652 flag_var_tracking_assignments = !flag_var_tracking_assignments;
1654 if (flag_var_tracking_assignments && !flag_var_tracking)
1655 flag_var_tracking = flag_var_tracking_assignments = -1;
1657 if (flag_var_tracking_assignments
1658 && (flag_selective_scheduling || flag_selective_scheduling2))
1659 warning_at (UNKNOWN_LOCATION, 0,
1660 "var-tracking-assignments changes selective scheduling");
1662 if (debug_nonbind_markers_p == AUTODETECT_VALUE)
1663 debug_nonbind_markers_p
1664 = (optimize
1665 && debug_info_level >= DINFO_LEVEL_NORMAL
1666 && (write_symbols == DWARF2_DEBUG
1667 || write_symbols == VMS_AND_DWARF2_DEBUG)
1668 && !(flag_selective_scheduling || flag_selective_scheduling2));
1670 if (dwarf2out_as_loc_support == AUTODETECT_VALUE)
1671 dwarf2out_as_loc_support
1672 = dwarf2out_default_as_loc_support ();
1673 if (dwarf2out_as_locview_support == AUTODETECT_VALUE)
1674 dwarf2out_as_locview_support
1675 = dwarf2out_default_as_locview_support ();
1677 if (debug_variable_location_views == AUTODETECT_VALUE)
1679 debug_variable_location_views
1680 = (flag_var_tracking
1681 && debug_info_level >= DINFO_LEVEL_NORMAL
1682 && (write_symbols == DWARF2_DEBUG
1683 || write_symbols == VMS_AND_DWARF2_DEBUG)
1684 && !dwarf_strict
1685 && dwarf2out_as_loc_support
1686 && dwarf2out_as_locview_support);
1688 else if (debug_variable_location_views == -1 && dwarf_version != 5)
1690 warning_at (UNKNOWN_LOCATION, 0,
1691 "without %<-gdwarf-5%>, "
1692 "%<-gvariable-location-views=incompat5%> "
1693 "is equivalent to %<-gvariable-location-views%>");
1694 debug_variable_location_views = 1;
1697 if (debug_internal_reset_location_views == 2)
1699 debug_internal_reset_location_views
1700 = (debug_variable_location_views
1701 && targetm.reset_location_view);
1703 else if (debug_internal_reset_location_views
1704 && !debug_variable_location_views)
1706 warning_at (UNKNOWN_LOCATION, 0,
1707 "%<-ginternal-reset-location-views%> is forced disabled "
1708 "without %<-gvariable-location-views%>");
1709 debug_internal_reset_location_views = 0;
1712 if (debug_inline_points == AUTODETECT_VALUE)
1713 debug_inline_points = debug_variable_location_views;
1714 else if (debug_inline_points && !debug_nonbind_markers_p)
1716 warning_at (UNKNOWN_LOCATION, 0,
1717 "%<-ginline-points%> is forced disabled without "
1718 "%<-gstatement-frontiers%>");
1719 debug_inline_points = 0;
1722 if (flag_tree_cselim == AUTODETECT_VALUE)
1724 if (HAVE_conditional_move)
1725 flag_tree_cselim = 1;
1726 else
1727 flag_tree_cselim = 0;
1730 /* If auxiliary info generation is desired, open the output file.
1731 This goes in the same directory as the source file--unlike
1732 all the other output files. */
1733 if (flag_gen_aux_info)
1735 aux_info_file = fopen (aux_info_file_name, "w");
1736 if (aux_info_file == 0)
1737 fatal_error (UNKNOWN_LOCATION,
1738 "cannot open %s: %m", aux_info_file_name);
1741 if (!targetm_common.have_named_sections)
1743 if (flag_function_sections)
1745 warning_at (UNKNOWN_LOCATION, 0,
1746 "%<-ffunction-sections%> not supported for this target");
1747 flag_function_sections = 0;
1749 if (flag_data_sections)
1751 warning_at (UNKNOWN_LOCATION, 0,
1752 "%<-fdata-sections%> not supported for this target");
1753 flag_data_sections = 0;
1757 if (flag_prefetch_loop_arrays > 0 && !targetm.code_for_prefetch)
1759 warning_at (UNKNOWN_LOCATION, 0,
1760 "%<-fprefetch-loop-arrays%> not supported for this target");
1761 flag_prefetch_loop_arrays = 0;
1763 else if (flag_prefetch_loop_arrays > 0 && !targetm.have_prefetch ())
1765 warning_at (UNKNOWN_LOCATION, 0,
1766 "%<-fprefetch-loop-arrays%> not supported for this target "
1767 "(try %<-march%> switches)");
1768 flag_prefetch_loop_arrays = 0;
1771 /* This combination of options isn't handled for i386 targets and doesn't
1772 make much sense anyway, so don't allow it. */
1773 if (flag_prefetch_loop_arrays > 0 && optimize_size)
1775 warning_at (UNKNOWN_LOCATION, 0,
1776 "%<-fprefetch-loop-arrays%> is not supported with %<-Os%>");
1777 flag_prefetch_loop_arrays = 0;
1780 /* The presence of IEEE signaling NaNs, implies all math can trap. */
1781 if (flag_signaling_nans)
1782 flag_trapping_math = 1;
1784 /* We cannot reassociate if we want traps or signed zeros. */
1785 if (flag_associative_math && (flag_trapping_math || flag_signed_zeros))
1787 warning_at (UNKNOWN_LOCATION, 0,
1788 "%<-fassociative-math%> disabled; other options take "
1789 "precedence");
1790 flag_associative_math = 0;
1793 /* -fstack-clash-protection is not currently supported on targets
1794 where the stack grows up. */
1795 if (flag_stack_clash_protection && !STACK_GROWS_DOWNWARD)
1797 warning_at (UNKNOWN_LOCATION, 0,
1798 "%<-fstack-clash-protection%> is not supported on targets "
1799 "where the stack grows from lower to higher addresses");
1800 flag_stack_clash_protection = 0;
1803 /* We cannot support -fstack-check= and -fstack-clash-protection at
1804 the same time. */
1805 if (flag_stack_check != NO_STACK_CHECK && flag_stack_clash_protection)
1807 warning_at (UNKNOWN_LOCATION, 0,
1808 "%<-fstack-check=%> and %<-fstack-clash_protection%> are "
1809 "mutually exclusive; disabling %<-fstack-check=%>");
1810 flag_stack_check = NO_STACK_CHECK;
1813 /* With -fcx-limited-range, we do cheap and quick complex arithmetic. */
1814 if (flag_cx_limited_range)
1815 flag_complex_method = 0;
1817 /* With -fcx-fortran-rules, we do something in-between cheap and C99. */
1818 if (flag_cx_fortran_rules)
1819 flag_complex_method = 1;
1821 /* Targets must be able to place spill slots at lower addresses. If the
1822 target already uses a soft frame pointer, the transition is trivial. */
1823 if (!FRAME_GROWS_DOWNWARD && flag_stack_protect)
1825 warning_at (UNKNOWN_LOCATION, 0,
1826 "%<-fstack-protector%> not supported for this target");
1827 flag_stack_protect = 0;
1829 if (!flag_stack_protect)
1830 warn_stack_protect = 0;
1832 /* Address Sanitizer needs porting to each target architecture. */
1834 if ((flag_sanitize & SANITIZE_ADDRESS)
1835 && !FRAME_GROWS_DOWNWARD)
1837 warning_at (UNKNOWN_LOCATION, 0,
1838 "%<-fsanitize=address%> and %<-fsanitize=kernel-address%> "
1839 "are not supported for this target");
1840 flag_sanitize &= ~SANITIZE_ADDRESS;
1843 if ((flag_sanitize & SANITIZE_USER_ADDRESS)
1844 && targetm.asan_shadow_offset == NULL)
1846 warning_at (UNKNOWN_LOCATION, 0,
1847 "%<-fsanitize=address%> not supported for this target");
1848 flag_sanitize &= ~SANITIZE_ADDRESS;
1851 if ((flag_sanitize & SANITIZE_KERNEL_ADDRESS)
1852 && (targetm.asan_shadow_offset == NULL
1853 && param_asan_stack
1854 && !asan_shadow_offset_set_p ()))
1856 warning_at (UNKNOWN_LOCATION, 0,
1857 "%<-fsanitize=kernel-address%> with stack protection "
1858 "is not supported without %<-fasan-shadow-offset=%> "
1859 "for this target");
1860 flag_sanitize &= ~SANITIZE_ADDRESS;
1863 /* Do not use IPA optimizations for register allocation if profiler is active
1864 or patchable function entries are inserted for run-time instrumentation
1865 or port does not emit prologue and epilogue as RTL. */
1866 if (profile_flag || function_entry_patch_area_size
1867 || !targetm.have_prologue () || !targetm.have_epilogue ())
1868 flag_ipa_ra = 0;
1870 /* Enable -Werror=coverage-mismatch when -Werror and -Wno-error
1871 have not been set. */
1872 if (!global_options_set.x_warnings_are_errors
1873 && warn_coverage_mismatch
1874 && (global_dc->classify_diagnostic[OPT_Wcoverage_mismatch] ==
1875 DK_UNSPECIFIED))
1876 diagnostic_classify_diagnostic (global_dc, OPT_Wcoverage_mismatch,
1877 DK_ERROR, UNKNOWN_LOCATION);
1879 /* Save the current optimization options. */
1880 optimization_default_node = build_optimization_node (&global_options);
1881 optimization_current_node = optimization_default_node;
1883 if (flag_checking >= 2)
1884 hash_table_sanitize_eq_limit
1885 = param_hash_table_verification_limit;
1887 if (flag_large_source_files)
1888 line_table->default_range_bits = 0;
1890 /* Please don't change global_options after this point, those changes won't
1891 be reflected in optimization_{default,current}_node. */
1894 /* This function can be called multiple times to reinitialize the compiler
1895 back end when register classes or instruction sets have changed,
1896 before each function. */
1897 static void
1898 backend_init_target (void)
1900 /* This depends on stack_pointer_rtx. */
1901 init_fake_stack_mems ();
1903 /* Sets static_base_value[HARD_FRAME_POINTER_REGNUM], which is
1904 mode-dependent. */
1905 init_alias_target ();
1907 /* Depends on HARD_FRAME_POINTER_REGNUM. */
1908 if (!ira_use_lra_p)
1909 init_reload ();
1911 /* Depends on the enabled attribute. */
1912 recog_init ();
1914 /* The following initialization functions need to generate rtl, so
1915 provide a dummy function context for them. */
1916 init_dummy_function_start ();
1918 /* rtx_cost is mode-dependent, so cached values need to be recomputed
1919 on a mode change. */
1920 init_expmed ();
1921 init_lower_subreg ();
1922 init_set_costs ();
1924 init_expr_target ();
1925 ira_init ();
1927 /* We may need to recompute regno_save_code[] and regno_restore_code[]
1928 after a mode change as well. */
1929 caller_save_initialized_p = false;
1931 expand_dummy_function_end ();
1934 /* Initialize the compiler back end. This function is called only once,
1935 when starting the compiler. */
1936 static void
1937 backend_init (void)
1939 init_emit_once ();
1941 init_rtlanal ();
1942 init_inline_once ();
1943 init_varasm_once ();
1944 save_register_info ();
1946 /* Middle end needs this initialization for default mem attributes
1947 used by early calls to make_decl_rtl. */
1948 init_emit_regs ();
1950 /* Middle end needs this initialization for mode tables used to assign
1951 modes to vector variables. */
1952 init_regs ();
1955 /* Initialize things that are both lang-dependent and target-dependent.
1956 This function can be called more than once if target parameters change. */
1957 static void
1958 lang_dependent_init_target (void)
1960 /* This creates various _DECL nodes, so needs to be called after the
1961 front end is initialized. It also depends on the HAVE_xxx macros
1962 generated from the target machine description. */
1963 init_optabs ();
1965 gcc_assert (!this_target_rtl->target_specific_initialized);
1968 /* Perform initializations that are lang-dependent or target-dependent.
1969 but matters only for late optimizations and RTL generation. */
1971 static int rtl_initialized;
1973 void
1974 initialize_rtl (void)
1976 auto_timevar tv (g_timer, TV_INITIALIZE_RTL);
1978 /* Initialization done just once per compilation, but delayed
1979 till code generation. */
1980 if (!rtl_initialized)
1981 ira_init_once ();
1982 rtl_initialized = true;
1984 /* Target specific RTL backend initialization. */
1985 if (!this_target_rtl->target_specific_initialized)
1987 backend_init_target ();
1988 this_target_rtl->target_specific_initialized = true;
1992 /* Language-dependent initialization. Returns nonzero on success. */
1993 static int
1994 lang_dependent_init (const char *name)
1996 location_t save_loc = input_location;
1997 if (!dump_base_name)
1999 dump_base_name = name && name[0] ? name : "gccdump";
2001 /* We do not want to derive a non-empty dumpbase-ext from an
2002 explicit -dumpbase argument, only from a defaulted
2003 dumpbase. */
2004 if (!dump_base_ext)
2006 const char *base = lbasename (dump_base_name);
2007 const char *ext = strrchr (base, '.');
2008 if (ext)
2009 dump_base_ext = ext;
2013 /* Other front-end initialization. */
2014 input_location = BUILTINS_LOCATION;
2015 if (lang_hooks.init () == 0)
2016 return 0;
2017 input_location = save_loc;
2019 if (!flag_wpa)
2021 init_asm_output (name);
2023 if (!flag_generate_lto && !flag_compare_debug)
2025 /* If stack usage information is desired, open the output file. */
2026 if (flag_stack_usage)
2027 stack_usage_file = open_auxiliary_file ("su");
2029 /* If call graph information is desired, open the output file. */
2030 if (flag_callgraph_info)
2032 callgraph_info_file = open_auxiliary_file ("ci");
2033 /* Write the file header. */
2034 fprintf (callgraph_info_file,
2035 "graph: { title: \"%s\"\n", main_input_filename);
2036 bitmap_obstack_initialize (NULL);
2037 callgraph_info_external_printed = BITMAP_ALLOC (NULL);
2040 else
2041 flag_stack_usage = flag_callgraph_info = false;
2044 /* This creates various _DECL nodes, so needs to be called after the
2045 front end is initialized. */
2046 init_eh ();
2048 /* Do the target-specific parts of the initialization. */
2049 lang_dependent_init_target ();
2051 if (!flag_wpa)
2053 /* If dbx symbol table desired, initialize writing it and output the
2054 predefined types. */
2055 timevar_push (TV_SYMOUT);
2057 /* Now we have the correct original filename, we can initialize
2058 debug output. */
2059 (*debug_hooks->init) (name);
2061 timevar_pop (TV_SYMOUT);
2064 return 1;
2068 /* Reinitialize everything when target parameters, such as register usage,
2069 have changed. */
2070 void
2071 target_reinit (void)
2073 struct rtl_data saved_x_rtl;
2074 rtx *saved_regno_reg_rtx;
2075 tree saved_optimization_current_node;
2076 struct target_optabs *saved_this_fn_optabs;
2078 /* Temporarily switch to the default optimization node, so that
2079 *this_target_optabs is set to the default, not reflecting
2080 whatever a previous function used for the optimize
2081 attribute. */
2082 saved_optimization_current_node = optimization_current_node;
2083 saved_this_fn_optabs = this_fn_optabs;
2084 if (saved_optimization_current_node != optimization_default_node)
2086 optimization_current_node = optimization_default_node;
2087 cl_optimization_restore
2088 (&global_options,
2089 TREE_OPTIMIZATION (optimization_default_node));
2091 this_fn_optabs = this_target_optabs;
2093 /* Save *crtl and regno_reg_rtx around the reinitialization
2094 to allow target_reinit being called even after prepare_function_start. */
2095 saved_regno_reg_rtx = regno_reg_rtx;
2096 if (saved_regno_reg_rtx)
2098 saved_x_rtl = *crtl;
2099 memset (crtl, '\0', sizeof (*crtl));
2100 regno_reg_rtx = NULL;
2103 this_target_rtl->target_specific_initialized = false;
2105 /* This initializes hard_frame_pointer, and calls init_reg_modes_target()
2106 to initialize reg_raw_mode[]. */
2107 init_emit_regs ();
2109 /* This invokes target hooks to set fixed_reg[] etc, which is
2110 mode-dependent. */
2111 init_regs ();
2113 /* Reinitialize lang-dependent parts. */
2114 lang_dependent_init_target ();
2116 /* Restore the original optimization node. */
2117 if (saved_optimization_current_node != optimization_default_node)
2119 optimization_current_node = saved_optimization_current_node;
2120 cl_optimization_restore (&global_options,
2121 TREE_OPTIMIZATION (optimization_current_node));
2123 this_fn_optabs = saved_this_fn_optabs;
2125 /* Restore regno_reg_rtx at the end, as free_after_compilation from
2126 expand_dummy_function_end clears it. */
2127 if (saved_regno_reg_rtx)
2129 *crtl = saved_x_rtl;
2130 regno_reg_rtx = saved_regno_reg_rtx;
2131 saved_regno_reg_rtx = NULL;
2135 void
2136 dump_memory_report (const char *header)
2138 /* Print significant header. */
2139 fputc ('\n', stderr);
2140 for (unsigned i = 0; i < 80; i++)
2141 fputc ('#', stderr);
2142 fprintf (stderr, "\n# %-77s#\n", header);
2143 for (unsigned i = 0; i < 80; i++)
2144 fputc ('#', stderr);
2145 fputs ("\n\n", stderr);
2147 dump_line_table_statistics ();
2148 ggc_print_statistics ();
2149 stringpool_statistics ();
2150 dump_tree_statistics ();
2151 dump_gimple_statistics ();
2152 dump_rtx_statistics ();
2153 dump_alloc_pool_statistics ();
2154 dump_bitmap_statistics ();
2155 dump_hash_table_loc_statistics ();
2156 dump_vec_loc_statistics ();
2157 dump_ggc_loc_statistics ();
2158 dump_alias_stats (stderr);
2159 dump_pta_stats (stderr);
2162 /* Clean up: close opened files, etc. */
2164 static void
2165 finalize (bool no_backend)
2167 /* Close the dump files. */
2168 if (flag_gen_aux_info)
2170 fclose (aux_info_file);
2171 aux_info_file = NULL;
2172 if (seen_error ())
2173 unlink (aux_info_file_name);
2176 /* Close non-debugging input and output files. Take special care to note
2177 whether fclose returns an error, since the pages might still be on the
2178 buffer chain while the file is open. */
2180 if (asm_out_file)
2182 if (ferror (asm_out_file) != 0)
2183 fatal_error (input_location, "error writing to %s: %m", asm_file_name);
2184 if (fclose (asm_out_file) != 0)
2185 fatal_error (input_location, "error closing %s: %m", asm_file_name);
2186 asm_out_file = NULL;
2189 if (stack_usage_file)
2191 fclose (stack_usage_file);
2192 stack_usage_file = NULL;
2195 if (callgraph_info_file)
2197 fputs ("}\n", callgraph_info_file);
2198 fclose (callgraph_info_file);
2199 callgraph_info_file = NULL;
2200 BITMAP_FREE (callgraph_info_external_printed);
2201 bitmap_obstack_release (NULL);
2204 if (seen_error ())
2205 coverage_remove_note_file ();
2207 if (!no_backend)
2209 statistics_fini ();
2210 debuginfo_fini ();
2212 g->get_passes ()->finish_optimization_passes ();
2214 lra_finish_once ();
2217 if (mem_report)
2218 dump_memory_report ("Final");
2220 if (profile_report)
2221 dump_profile_report ();
2223 /* Language-specific end of compilation actions. */
2224 lang_hooks.finish ();
2227 static bool
2228 standard_type_bitsize (int bitsize)
2230 /* As a special exception, we always want __int128 enabled if possible. */
2231 if (bitsize == 128)
2232 return false;
2233 if (bitsize == CHAR_TYPE_SIZE
2234 || bitsize == SHORT_TYPE_SIZE
2235 || bitsize == INT_TYPE_SIZE
2236 || bitsize == LONG_TYPE_SIZE
2237 || bitsize == LONG_LONG_TYPE_SIZE)
2238 return true;
2239 return false;
2242 /* Initialize the compiler, and compile the input file. */
2243 static void
2244 do_compile ()
2246 process_options ();
2248 /* Don't do any more if an error has already occurred. */
2249 if (!seen_error ())
2251 int i;
2253 timevar_start (TV_PHASE_SETUP);
2255 if (flag_save_optimization_record)
2257 dump_context::get ().set_json_writer (new optrecord_json_writer ());
2260 /* This must be run always, because it is needed to compute the FP
2261 predefined macros, such as __LDBL_MAX__, for targets using non
2262 default FP formats. */
2263 init_adjust_machine_modes ();
2264 init_derived_machine_modes ();
2266 /* This must happen after the backend has a chance to process
2267 command line options, but before the parsers are
2268 initialized. */
2269 for (i = 0; i < NUM_INT_N_ENTS; i ++)
2270 if (targetm.scalar_mode_supported_p (int_n_data[i].m)
2271 && ! standard_type_bitsize (int_n_data[i].bitsize))
2272 int_n_enabled_p[i] = true;
2273 else
2274 int_n_enabled_p[i] = false;
2276 /* Initialize mpfrs exponent range. This is important to get
2277 underflow/overflow in a reasonable timeframe. */
2278 machine_mode mode;
2279 int min_exp = -1;
2280 int max_exp = 1;
2281 FOR_EACH_MODE_IN_CLASS (mode, MODE_FLOAT)
2282 if (SCALAR_FLOAT_MODE_P (mode))
2284 const real_format *fmt = REAL_MODE_FORMAT (mode);
2285 if (fmt)
2287 /* fmt->emin - fmt->p + 1 should be enough but the
2288 back-and-forth dance in real_to_decimal_for_mode we
2289 do for checking fails due to rounding effects then. */
2290 if ((fmt->emin - fmt->p) < min_exp)
2291 min_exp = fmt->emin - fmt->p;
2292 if (fmt->emax > max_exp)
2293 max_exp = fmt->emax;
2296 /* E.g. mpc_norm assumes it can square a number without bothering with
2297 with range scaling, so until that is fixed, double the minimum
2298 and maximum exponents, plus add some buffer for arithmetics
2299 on the squared numbers. */
2300 if (mpfr_set_emin (2 * (min_exp - 1))
2301 || mpfr_set_emax (2 * (max_exp + 1)))
2302 sorry ("mpfr not configured to handle all floating modes");
2304 /* Set up the back-end if requested. */
2305 if (!no_backend)
2306 backend_init ();
2308 /* Language-dependent initialization. Returns true on success. */
2309 if (lang_dependent_init (main_input_filename))
2311 /* Initialize yet another pass. */
2313 ggc_protect_identifiers = true;
2315 symtab->initialize ();
2316 init_final (main_input_filename);
2317 coverage_init (aux_base_name);
2318 statistics_init ();
2319 debuginfo_init ();
2320 invoke_plugin_callbacks (PLUGIN_START_UNIT, NULL);
2322 timevar_stop (TV_PHASE_SETUP);
2324 compile_file ();
2326 else
2328 timevar_stop (TV_PHASE_SETUP);
2331 timevar_start (TV_PHASE_FINALIZE);
2333 finalize (no_backend);
2335 timevar_stop (TV_PHASE_FINALIZE);
2339 toplev::toplev (timer *external_timer,
2340 bool init_signals)
2341 : m_use_TV_TOTAL (external_timer == NULL),
2342 m_init_signals (init_signals)
2344 if (external_timer)
2345 g_timer = external_timer;
2348 toplev::~toplev ()
2350 if (g_timer && m_use_TV_TOTAL)
2352 g_timer->stop (TV_TOTAL);
2353 g_timer->print (stderr);
2354 delete g_timer;
2355 g_timer = NULL;
2359 /* Potentially call timevar_init (which will create g_timevars if it
2360 doesn't already exist). */
2362 void
2363 toplev::start_timevars ()
2365 if (time_report || !quiet_flag || flag_detailed_statistics)
2366 timevar_init ();
2368 timevar_start (TV_TOTAL);
2371 /* Handle -fself-test. */
2373 void
2374 toplev::run_self_tests ()
2376 if (no_backend)
2378 error_at (UNKNOWN_LOCATION, "self-tests incompatible with %<-E%>");
2379 return;
2381 #if CHECKING_P
2382 /* Reset some state. */
2383 input_location = UNKNOWN_LOCATION;
2384 bitmap_obstack_initialize (NULL);
2386 /* Run the tests; any failures will lead to an abort of the process.
2387 Use "make selftests-gdb" to run under the debugger. */
2388 ::selftest::run_tests ();
2390 /* Cleanup. */
2391 bitmap_obstack_release (NULL);
2392 #else
2393 inform (UNKNOWN_LOCATION, "self-tests are not enabled in this build");
2394 #endif /* #if CHECKING_P */
2397 /* Entry point of cc1, cc1plus, jc1, f771, etc.
2398 Exit code is FATAL_EXIT_CODE if can't open files or if there were
2399 any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
2401 It is not safe to call this function more than once. */
2404 toplev::main (int argc, char **argv)
2406 /* Parsing and gimplification sometimes need quite large stack.
2407 Increase stack size limits if possible. */
2408 stack_limit_increase (64 * 1024 * 1024);
2410 expandargv (&argc, &argv);
2412 /* Initialization of GCC's environment, and diagnostics. */
2413 general_init (argv[0], m_init_signals);
2415 /* One-off initialization of options that does not need to be
2416 repeated when options are added for particular functions. */
2417 init_options_once ();
2418 init_opts_obstack ();
2420 /* Initialize global options structures; this must be repeated for
2421 each structure used for parsing options. */
2422 init_options_struct (&global_options, &global_options_set);
2423 lang_hooks.init_options_struct (&global_options);
2425 /* Init GGC heuristics must be caller after we initialize
2426 options. */
2427 init_ggc_heuristics ();
2429 /* Convert the options to an array. */
2430 decode_cmdline_options_to_array_default_mask (argc,
2431 CONST_CAST2 (const char **,
2432 char **, argv),
2433 &save_decoded_options,
2434 &save_decoded_options_count);
2436 /* Perform language-specific options initialization. */
2437 lang_hooks.init_options (save_decoded_options_count, save_decoded_options);
2439 /* Parse the options and do minimal processing; basically just
2440 enough to default flags appropriately. */
2441 decode_options (&global_options, &global_options_set,
2442 save_decoded_options, save_decoded_options_count,
2443 UNKNOWN_LOCATION, global_dc,
2444 targetm.target_option.override);
2446 handle_common_deferred_options ();
2448 init_local_tick ();
2450 initialize_plugins ();
2452 if (version_flag)
2453 print_version (stderr, "", true);
2455 if (help_flag)
2456 print_plugins_help (stderr, "");
2458 /* Exit early if we can (e.g. -help). */
2459 if (!exit_after_options)
2461 if (m_use_TV_TOTAL)
2462 start_timevars ();
2463 do_compile ();
2466 if (warningcount || errorcount || werrorcount)
2467 print_ignored_options ();
2469 if (flag_self_test)
2470 run_self_tests ();
2472 /* Invoke registered plugin callbacks if any. Some plugins could
2473 emit some diagnostics here. */
2474 invoke_plugin_callbacks (PLUGIN_FINISH, NULL);
2476 if (flag_diagnostics_generate_patch)
2478 gcc_assert (global_dc->edit_context_ptr);
2480 pretty_printer pp;
2481 pp_show_color (&pp) = pp_show_color (global_dc->printer);
2482 global_dc->edit_context_ptr->print_diff (&pp, true);
2483 pp_flush (&pp);
2486 diagnostic_finish (global_dc);
2488 finalize_plugins ();
2490 after_memory_report = true;
2492 if (seen_error () || werrorcount)
2493 return (FATAL_EXIT_CODE);
2495 return (SUCCESS_EXIT_CODE);
2498 /* For those that want to, this function aims to clean up enough state that
2499 you can call toplev::main again. */
2500 void
2501 toplev::finalize (void)
2503 rtl_initialized = false;
2504 this_target_rtl->target_specific_initialized = false;
2506 /* Needs to be called before cgraph_c_finalize since it uses symtab. */
2507 ipa_reference_c_finalize ();
2508 ipa_fnsummary_c_finalize ();
2510 cgraph_c_finalize ();
2511 cgraphunit_c_finalize ();
2512 dwarf2out_c_finalize ();
2513 gcse_c_finalize ();
2514 ipa_cp_c_finalize ();
2515 ira_costs_c_finalize ();
2517 /* save_decoded_options uses opts_obstack, so these must
2518 be cleaned up together. */
2519 obstack_free (&opts_obstack, NULL);
2520 XDELETEVEC (save_decoded_options);
2521 save_decoded_options = NULL;
2522 save_decoded_options_count = 0;
2524 /* Clean up the context (and pass_manager etc). */
2525 delete g;
2526 g = NULL;