Fix PR ada/97504 on hppa*-*-hpux*.
[official-gcc.git] / gcc / toplev.c
blobcb4ae77fccb44769732f9677a65c96be6321c9fa
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"
87 #include "ipa-modref-tree.h"
88 #include "ipa-modref.h"
89 #include "dbgcnt.h"
91 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
92 #include "dbxout.h"
93 #endif
95 #ifdef XCOFF_DEBUGGING_INFO
96 #include "xcoffout.h" /* Needed for external data declarations. */
97 #endif
99 #include "selftest.h"
101 #ifdef HAVE_isl
102 #include <isl/version.h>
103 #endif
105 static void general_init (const char *, bool);
106 static void do_compile ();
107 static void process_options (void);
108 static void backend_init (void);
109 static int lang_dependent_init (const char *);
110 static void init_asm_output (const char *);
111 static void finalize (bool);
113 static void crash_signal (int) ATTRIBUTE_NORETURN;
114 static void compile_file (void);
116 /* True if we don't need a backend (e.g. preprocessing only). */
117 static bool no_backend;
119 /* Length of line when printing switch values. */
120 #define MAX_LINE 75
122 /* Decoded options, and number of such options. */
123 struct cl_decoded_option *save_decoded_options;
124 unsigned int save_decoded_options_count;
126 /* Used to enable -fvar-tracking, -fweb and -frename-registers according
127 to optimize in process_options (). */
128 #define AUTODETECT_VALUE 2
130 /* Debug hooks - dependent upon command line options. */
132 const struct gcc_debug_hooks *debug_hooks;
134 /* The FUNCTION_DECL for the function currently being compiled,
135 or 0 if between functions. */
136 tree current_function_decl;
138 /* Set to the FUNC_BEGIN label of the current function, or NULL
139 if none. */
140 const char * current_function_func_begin_label;
142 /* A random sequence of characters, unless overridden by user. */
143 static const char *flag_random_seed;
145 /* A local time stamp derived from the time of compilation. It will be
146 zero if the system cannot provide a time. It will be -1u, if the
147 user has specified a particular random seed. */
148 unsigned local_tick;
150 /* Random number for this compilation */
151 HOST_WIDE_INT random_seed;
153 /* -f flags. */
155 /* When non-NULL, indicates that whenever space is allocated on the
156 stack, the resulting stack pointer must not pass this
157 address---that is, for stacks that grow downward, the stack pointer
158 must always be greater than or equal to this address; for stacks
159 that grow upward, the stack pointer must be less than this address.
160 At present, the rtx may be either a REG or a SYMBOL_REF, although
161 the support provided depends on the backend. */
162 rtx stack_limit_rtx;
164 class target_flag_state default_target_flag_state;
165 #if SWITCHABLE_TARGET
166 class target_flag_state *this_target_flag_state = &default_target_flag_state;
167 #else
168 #define this_target_flag_state (&default_target_flag_state)
169 #endif
171 /* The user symbol prefix after having resolved same. */
172 const char *user_label_prefix;
174 /* Output files for assembler code (real compiler output)
175 and debugging dumps. */
177 FILE *asm_out_file;
178 FILE *aux_info_file;
179 FILE *callgraph_info_file = NULL;
180 static bitmap callgraph_info_external_printed;
181 FILE *stack_usage_file = NULL;
183 /* The current working directory of a translation. It's generally the
184 directory from which compilation was initiated, but a preprocessed
185 file may specify the original directory in which it was
186 created. */
188 static const char *src_pwd;
190 /* Initialize src_pwd with the given string, and return true. If it
191 was already initialized, return false. As a special case, it may
192 be called with a NULL argument to test whether src_pwd has NOT been
193 initialized yet. */
195 bool
196 set_src_pwd (const char *pwd)
198 if (src_pwd)
200 if (strcmp (src_pwd, pwd) == 0)
201 return true;
202 else
203 return false;
206 src_pwd = xstrdup (pwd);
207 return true;
210 /* Return the directory from which the translation unit was initiated,
211 in case set_src_pwd() was not called before to assign it a
212 different value. */
214 const char *
215 get_src_pwd (void)
217 if (! src_pwd)
219 src_pwd = getpwd ();
220 if (!src_pwd)
221 src_pwd = ".";
224 return src_pwd;
227 /* Called when the start of a function definition is parsed,
228 this function prints on stderr the name of the function. */
229 void
230 announce_function (tree decl)
232 if (!quiet_flag)
234 if (rtl_dump_and_exit)
235 fprintf (stderr, "%s ",
236 identifier_to_locale (IDENTIFIER_POINTER (DECL_NAME (decl))));
237 else
238 fprintf (stderr, " %s",
239 identifier_to_locale (lang_hooks.decl_printable_name (decl, 2)));
240 fflush (stderr);
241 pp_needs_newline (global_dc->printer) = true;
242 diagnostic_set_last_function (global_dc, (diagnostic_info *) NULL);
246 /* Initialize local_tick with the time of day, or -1 if
247 flag_random_seed is set. */
249 static void
250 init_local_tick (void)
252 if (!flag_random_seed)
254 #ifdef HAVE_GETTIMEOFDAY
256 struct timeval tv;
258 gettimeofday (&tv, NULL);
259 local_tick = (unsigned) tv.tv_sec * 1000 + tv.tv_usec / 1000;
261 #else
263 time_t now = time (NULL);
265 if (now != (time_t)-1)
266 local_tick = (unsigned) now;
268 #endif
270 else
271 local_tick = -1;
274 /* Obtain the random_seed. Unless NOINIT, initialize it if
275 it's not provided in the command line. */
277 HOST_WIDE_INT
278 get_random_seed (bool noinit)
280 if (!random_seed && !noinit)
282 int fd = open ("/dev/urandom", O_RDONLY);
283 if (fd >= 0)
285 if (read (fd, &random_seed, sizeof (random_seed))
286 != sizeof (random_seed))
287 random_seed = 0;
288 close (fd);
290 if (!random_seed)
291 random_seed = local_tick ^ getpid ();
293 return random_seed;
296 /* Set flag_random_seed to VAL, and if non-null, reinitialize random_seed. */
298 void
299 set_random_seed (const char *val)
301 flag_random_seed = val;
302 if (flag_random_seed)
304 char *endp;
306 /* When the driver passed in a hex number don't crc it again */
307 random_seed = strtoul (flag_random_seed, &endp, 0);
308 if (!(endp > flag_random_seed && *endp == 0))
309 random_seed = crc32_string (0, flag_random_seed);
313 /* Handler for fatal signals, such as SIGSEGV. These are transformed
314 into ICE messages, which is much more user friendly. In case the
315 error printer crashes, reset the signal to prevent infinite recursion. */
317 static void
318 crash_signal (int signo)
320 signal (signo, SIG_DFL);
322 /* If we crashed while processing an ASM statement, then be a little more
323 graceful. It's most likely the user's fault. */
324 if (this_is_asm_operands)
326 output_operand_lossage ("unrecoverable error");
327 exit (FATAL_EXIT_CODE);
330 internal_error ("%s", strsignal (signo));
333 /* A subroutine of wrapup_global_declarations. We've come to the end of
334 the compilation unit. All deferred variables should be undeferred,
335 and all incomplete decls should be finalized. */
337 void
338 wrapup_global_declaration_1 (tree decl)
340 /* We're not deferring this any longer. Assignment is conditional to
341 avoid needlessly dirtying PCH pages. */
342 if (CODE_CONTAINS_STRUCT (TREE_CODE (decl), TS_DECL_WITH_VIS)
343 && DECL_DEFER_OUTPUT (decl) != 0)
344 DECL_DEFER_OUTPUT (decl) = 0;
346 if (VAR_P (decl) && DECL_SIZE (decl) == 0)
347 lang_hooks.finish_incomplete_decl (decl);
350 /* A subroutine of wrapup_global_declarations. Decide whether or not DECL
351 needs to be output. Return true if it is output. */
353 bool
354 wrapup_global_declaration_2 (tree decl)
356 if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl)
357 || (VAR_P (decl) && DECL_HAS_VALUE_EXPR_P (decl)))
358 return false;
360 /* Don't write out static consts, unless we still need them.
362 We also keep static consts if not optimizing (for debugging),
363 unless the user specified -fno-keep-static-consts.
364 ??? They might be better written into the debug information.
365 This is possible when using DWARF.
367 A language processor that wants static constants to be always
368 written out (even if it is not used) is responsible for
369 calling rest_of_decl_compilation itself. E.g. the C front-end
370 calls rest_of_decl_compilation from finish_decl.
371 One motivation for this is that is conventional in some
372 environments to write things like:
373 static const char rcsid[] = "... version string ...";
374 intending to force the string to be in the executable.
376 A language processor that would prefer to have unneeded
377 static constants "optimized away" would just defer writing
378 them out until here. E.g. C++ does this, because static
379 constants are often defined in header files.
381 ??? A tempting alternative (for both C and C++) would be
382 to force a constant to be written if and only if it is
383 defined in a main file, as opposed to an include file. */
385 if (VAR_P (decl) && TREE_STATIC (decl))
387 varpool_node *node;
388 bool needed = true;
389 node = varpool_node::get (decl);
391 if (!node && flag_ltrans)
392 needed = false;
393 else if (node && node->definition)
394 needed = false;
395 else if (node && node->alias)
396 needed = false;
397 else if (!symtab->global_info_ready
398 && (TREE_USED (decl)
399 || TREE_USED (DECL_ASSEMBLER_NAME (decl))))
400 /* needed */;
401 else if (node && node->analyzed)
402 /* needed */;
403 else if (DECL_COMDAT (decl))
404 needed = false;
405 else if (TREE_READONLY (decl) && !TREE_PUBLIC (decl)
406 && (optimize || !flag_keep_static_consts
407 || DECL_ARTIFICIAL (decl)))
408 needed = false;
410 if (needed)
412 rest_of_decl_compilation (decl, 1, 1);
413 return true;
417 return false;
420 /* Do any final processing required for the declarations in VEC, of
421 which there are LEN. We write out inline functions and variables
422 that have been deferred until this point, but which are required.
423 Returns nonzero if anything was put out. */
425 bool
426 wrapup_global_declarations (tree *vec, int len)
428 bool reconsider, output_something = false;
429 int i;
431 for (i = 0; i < len; i++)
432 wrapup_global_declaration_1 (vec[i]);
434 /* Now emit any global variables or functions that we have been
435 putting off. We need to loop in case one of the things emitted
436 here references another one which comes earlier in the list. */
439 reconsider = false;
440 for (i = 0; i < len; i++)
441 reconsider |= wrapup_global_declaration_2 (vec[i]);
442 if (reconsider)
443 output_something = true;
445 while (reconsider);
447 return output_something;
450 /* Compile an entire translation unit. Write a file of assembly
451 output and various debugging dumps. */
453 static void
454 compile_file (void)
456 timevar_start (TV_PHASE_PARSING);
457 timevar_push (TV_PARSE_GLOBAL);
459 /* Parse entire file and generate initial debug information. */
460 lang_hooks.parse_file ();
462 timevar_pop (TV_PARSE_GLOBAL);
463 timevar_stop (TV_PHASE_PARSING);
465 if (flag_dump_locations)
466 dump_location_info (stderr);
468 /* Compilation is now finished except for writing
469 what's left of the symbol table output. */
471 if (flag_syntax_only || flag_wpa)
472 return;
474 /* Reset maximum_field_alignment, it can be adjusted by #pragma pack
475 and this shouldn't influence any types built by the middle-end
476 from now on (like gcov_info_type). */
477 maximum_field_alignment = initial_max_fld_align * BITS_PER_UNIT;
479 ggc_protect_identifiers = false;
481 /* Run the actual compilation process. */
482 if (!in_lto_p)
484 timevar_start (TV_PHASE_OPT_GEN);
485 symtab->finalize_compilation_unit ();
486 timevar_stop (TV_PHASE_OPT_GEN);
489 /* Perform any post compilation-proper parser cleanups and
490 processing. This is currently only needed for the C++ parser,
491 which can be hopefully cleaned up so this hook is no longer
492 necessary. */
493 if (lang_hooks.decls.post_compilation_parsing_cleanups)
494 lang_hooks.decls.post_compilation_parsing_cleanups ();
496 dump_context::get ().finish_any_json_writer ();
498 if (seen_error ())
499 return;
501 timevar_start (TV_PHASE_LATE_ASM);
503 /* Compilation unit is finalized. When producing non-fat LTO object, we are
504 basically finished. */
505 if ((in_lto_p && flag_incremental_link != INCREMENTAL_LINK_LTO)
506 || !flag_lto || flag_fat_lto_objects)
508 /* File-scope initialization for AddressSanitizer. */
509 if (flag_sanitize & SANITIZE_ADDRESS)
510 asan_finish_file ();
512 if (flag_sanitize & SANITIZE_THREAD)
513 tsan_finish_file ();
515 if (gate_hwasan ())
516 hwasan_finish_file ();
518 omp_finish_file ();
520 output_shared_constant_pool ();
521 output_object_blocks ();
522 finish_tm_clone_pairs ();
524 /* Write out any pending weak symbol declarations. */
525 weak_finish ();
527 /* This must be at the end before unwind and debug info.
528 Some target ports emit PIC setup thunks here. */
529 targetm.asm_out.code_end ();
531 /* Do dbx symbols. */
532 timevar_push (TV_SYMOUT);
534 #if defined DWARF2_DEBUGGING_INFO || defined DWARF2_UNWIND_INFO
535 dwarf2out_frame_finish ();
536 #endif
538 debuginfo_start ();
539 (*debug_hooks->finish) (main_input_filename);
540 debuginfo_stop ();
541 timevar_pop (TV_SYMOUT);
543 /* Output some stuff at end of file if nec. */
545 dw2_output_indirect_constants ();
547 /* Flush any pending external directives. */
548 process_pending_assemble_externals ();
551 /* Let linker plugin know that this is a slim object and must be LTOed
552 even when user did not ask for it. */
553 if (flag_generate_lto && !flag_fat_lto_objects)
555 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
556 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, NULL_TREE, "__gnu_lto_slim",
557 HOST_WIDE_INT_1U, 8);
558 #elif defined ASM_OUTPUT_ALIGNED_COMMON
559 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, "__gnu_lto_slim",
560 HOST_WIDE_INT_1U, 8);
561 #else
562 ASM_OUTPUT_COMMON (asm_out_file, "__gnu_lto_slim",
563 HOST_WIDE_INT_1U,
564 HOST_WIDE_INT_1U);
565 #endif
568 /* Attach a special .ident directive to the end of the file to identify
569 the version of GCC which compiled this code. The format of the .ident
570 string is patterned after the ones produced by native SVR4 compilers. */
571 if (!flag_no_ident)
573 const char *pkg_version = "(GNU) ";
574 char *ident_str;
576 if (strcmp ("(GCC) ", pkgversion_string))
577 pkg_version = pkgversion_string;
579 ident_str = ACONCAT (("GCC: ", pkg_version, version_string, NULL));
580 targetm.asm_out.output_ident (ident_str);
583 /* Auto profile finalization. */
584 if (flag_auto_profile)
585 end_auto_profile ();
587 /* Invoke registered plugin callbacks. */
588 invoke_plugin_callbacks (PLUGIN_FINISH_UNIT, NULL);
590 /* This must be at the end. Some target ports emit end of file directives
591 into the assembly file here, and hence we cannot output anything to the
592 assembly file after this point. */
593 targetm.asm_out.file_end ();
595 timevar_stop (TV_PHASE_LATE_ASM);
598 /* Print version information to FILE.
599 Each line begins with INDENT (for the case where FILE is the
600 assembler output file).
602 If SHOW_GLOBAL_STATE is true (for cc1 etc), we are within the compiler
603 proper and can print pertinent state (e.g. params and plugins).
605 If SHOW_GLOBAL_STATE is false (for use by libgccjit), we are outside the
606 compiler, and we don't hold the mutex on the compiler's global state:
607 we can't print params and plugins, since they might not be initialized,
608 or might be being manipulated by a compile running in another
609 thread. */
611 void
612 print_version (FILE *file, const char *indent, bool show_global_state)
614 static const char fmt1[] =
615 #ifdef __GNUC__
616 N_("%s%s%s %sversion %s (%s)\n%s\tcompiled by GNU C version %s, ")
617 #else
618 N_("%s%s%s %sversion %s (%s) compiled by CC, ")
619 #endif
621 static const char fmt2[] =
622 N_("GMP version %s, MPFR version %s, MPC version %s, isl version %s\n");
623 static const char fmt3[] =
624 N_("%s%swarning: %s header version %s differs from library version %s.\n");
625 static const char fmt4[] =
626 N_("%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n");
627 #ifndef __VERSION__
628 #define __VERSION__ "[?]"
629 #endif
630 fprintf (file,
631 file == stderr ? _(fmt1) : fmt1,
632 indent, *indent != 0 ? " " : "",
633 lang_hooks.name, pkgversion_string, version_string, TARGET_NAME,
634 indent, __VERSION__);
636 /* We need to stringify the GMP macro values. Ugh, gmp_version has
637 two string formats, "i.j.k" and "i.j" when k is zero. As of
638 gmp-4.3.0, GMP always uses the 3 number format. */
639 #define GCC_GMP_STRINGIFY_VERSION3(X) #X
640 #define GCC_GMP_STRINGIFY_VERSION2(X) GCC_GMP_STRINGIFY_VERSION3 (X)
641 #define GCC_GMP_VERSION_NUM(X,Y,Z) (((X) << 16L) | ((Y) << 8) | (Z))
642 #define GCC_GMP_VERSION \
643 GCC_GMP_VERSION_NUM(__GNU_MP_VERSION, __GNU_MP_VERSION_MINOR, __GNU_MP_VERSION_PATCHLEVEL)
644 #if GCC_GMP_VERSION < GCC_GMP_VERSION_NUM(4,3,0) && __GNU_MP_VERSION_PATCHLEVEL == 0
645 #define GCC_GMP_STRINGIFY_VERSION \
646 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION) "." \
647 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION_MINOR)
648 #else
649 #define GCC_GMP_STRINGIFY_VERSION \
650 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION) "." \
651 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION_MINOR) "." \
652 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION_PATCHLEVEL)
653 #endif
654 fprintf (file,
655 file == stderr ? _(fmt2) : fmt2,
656 GCC_GMP_STRINGIFY_VERSION, MPFR_VERSION_STRING, MPC_VERSION_STRING,
657 #ifndef HAVE_isl
658 "none"
659 #else
660 isl_version ()
661 #endif
663 if (strcmp (GCC_GMP_STRINGIFY_VERSION, gmp_version))
664 fprintf (file,
665 file == stderr ? _(fmt3) : fmt3,
666 indent, *indent != 0 ? " " : "",
667 "GMP", GCC_GMP_STRINGIFY_VERSION, gmp_version);
668 if (strcmp (MPFR_VERSION_STRING, mpfr_get_version ()))
669 fprintf (file,
670 file == stderr ? _(fmt3) : fmt3,
671 indent, *indent != 0 ? " " : "",
672 "MPFR", MPFR_VERSION_STRING, mpfr_get_version ());
673 if (strcmp (MPC_VERSION_STRING, mpc_get_version ()))
674 fprintf (file,
675 file == stderr ? _(fmt3) : fmt3,
676 indent, *indent != 0 ? " " : "",
677 "MPC", MPC_VERSION_STRING, mpc_get_version ());
679 if (show_global_state)
681 fprintf (file,
682 file == stderr ? _(fmt4) : fmt4,
683 indent, *indent != 0 ? " " : "",
684 param_ggc_min_expand, param_ggc_min_heapsize);
686 print_plugins_versions (file, indent);
690 static int
691 print_to_asm_out_file (print_switch_type type, const char * text)
693 bool prepend_sep = true;
695 switch (type)
697 case SWITCH_TYPE_LINE_END:
698 putc ('\n', asm_out_file);
699 return 1;
701 case SWITCH_TYPE_LINE_START:
702 fputs (ASM_COMMENT_START, asm_out_file);
703 return strlen (ASM_COMMENT_START);
705 case SWITCH_TYPE_DESCRIPTIVE:
706 if (ASM_COMMENT_START[0] == 0)
707 prepend_sep = false;
708 /* FALLTHRU */
709 case SWITCH_TYPE_PASSED:
710 case SWITCH_TYPE_ENABLED:
711 if (prepend_sep)
712 fputc (' ', asm_out_file);
713 fputs (text, asm_out_file);
714 /* No need to return the length here as
715 print_single_switch has already done it. */
716 return 0;
718 default:
719 return -1;
723 static int
724 print_to_stderr (print_switch_type type, const char * text)
726 switch (type)
728 case SWITCH_TYPE_LINE_END:
729 putc ('\n', stderr);
730 return 1;
732 case SWITCH_TYPE_LINE_START:
733 return 0;
735 case SWITCH_TYPE_PASSED:
736 case SWITCH_TYPE_ENABLED:
737 fputc (' ', stderr);
738 /* FALLTHRU */
740 case SWITCH_TYPE_DESCRIPTIVE:
741 fputs (text, stderr);
742 /* No need to return the length here as
743 print_single_switch has already done it. */
744 return 0;
746 default:
747 return -1;
751 /* Print an option value and return the adjusted position in the line.
752 ??? print_fn doesn't handle errors, eg disk full; presumably other
753 code will catch a disk full though. */
755 static int
756 print_single_switch (print_switch_fn_type print_fn,
757 int pos,
758 print_switch_type type,
759 const char * text)
761 /* The ultrix fprintf returns 0 on success, so compute the result
762 we want here since we need it for the following test. The +1
763 is for the separator character that will probably be emitted. */
764 int len = strlen (text) + 1;
766 if (pos != 0
767 && pos + len > MAX_LINE)
769 print_fn (SWITCH_TYPE_LINE_END, NULL);
770 pos = 0;
773 if (pos == 0)
774 pos += print_fn (SWITCH_TYPE_LINE_START, NULL);
776 print_fn (type, text);
777 return pos + len;
780 /* Print active target switches using PRINT_FN.
781 POS is the current cursor position and MAX is the size of a "line".
782 Each line begins with INDENT and ends with TERM.
783 Each switch is separated from the next by SEP. */
785 static void
786 print_switch_values (print_switch_fn_type print_fn)
788 int pos = 0;
789 size_t j;
791 /* Print the options as passed. */
792 pos = print_single_switch (print_fn, pos,
793 SWITCH_TYPE_DESCRIPTIVE, _("options passed: "));
795 for (j = 1; j < save_decoded_options_count; j++)
797 switch (save_decoded_options[j].opt_index)
799 case OPT_o:
800 case OPT_d:
801 case OPT_dumpbase:
802 case OPT_dumpbase_ext:
803 case OPT_dumpdir:
804 case OPT_quiet:
805 case OPT_version:
806 /* Ignore these. */
807 continue;
810 pos = print_single_switch (print_fn, pos, SWITCH_TYPE_PASSED,
811 save_decoded_options[j].orig_option_with_args_text);
814 if (pos > 0)
815 print_fn (SWITCH_TYPE_LINE_END, NULL);
817 /* Print the -f and -m options that have been enabled.
818 We don't handle language specific options but printing argv
819 should suffice. */
820 pos = print_single_switch (print_fn, 0,
821 SWITCH_TYPE_DESCRIPTIVE, _("options enabled: "));
823 unsigned lang_mask = lang_hooks.option_lang_mask ();
824 for (j = 0; j < cl_options_count; j++)
825 if (cl_options[j].cl_report
826 && option_enabled (j, lang_mask, &global_options) > 0)
827 pos = print_single_switch (print_fn, pos,
828 SWITCH_TYPE_ENABLED, cl_options[j].opt_text);
830 print_fn (SWITCH_TYPE_LINE_END, NULL);
833 /* Open assembly code output file. Do this even if -fsyntax-only is
834 on, because then the driver will have provided the name of a
835 temporary file or bit bucket for us. NAME is the file specified on
836 the command line, possibly NULL. */
837 static void
838 init_asm_output (const char *name)
840 if (name == NULL && asm_file_name == 0)
841 asm_out_file = stdout;
842 else
844 if (asm_file_name == 0)
846 int len = strlen (dump_base_name);
847 char *dumpname = XNEWVEC (char, len + 6);
849 memcpy (dumpname, dump_base_name, len + 1);
850 strip_off_ending (dumpname, len);
851 strcat (dumpname, ".s");
852 asm_file_name = dumpname;
854 if (!strcmp (asm_file_name, "-"))
855 asm_out_file = stdout;
856 else if (!canonical_filename_eq (asm_file_name, name)
857 || !strcmp (asm_file_name, HOST_BIT_BUCKET))
858 asm_out_file = fopen (asm_file_name, "w");
859 else
860 /* Use UNKOWN_LOCATION to prevent gcc from printing the first
861 line in the current file. */
862 fatal_error (UNKNOWN_LOCATION,
863 "input file %qs is the same as output file",
864 asm_file_name);
865 if (asm_out_file == 0)
866 fatal_error (UNKNOWN_LOCATION,
867 "cannot open %qs for writing: %m", asm_file_name);
870 if (!flag_syntax_only)
872 targetm.asm_out.file_start ();
874 if (flag_record_gcc_switches)
876 if (targetm.asm_out.record_gcc_switches)
878 /* Let the target know that we are about to start recording. */
879 targetm.asm_out.record_gcc_switches (SWITCH_TYPE_DESCRIPTIVE,
880 NULL);
881 /* Now record the switches. */
882 print_switch_values (targetm.asm_out.record_gcc_switches);
883 /* Let the target know that the recording is over. */
884 targetm.asm_out.record_gcc_switches (SWITCH_TYPE_DESCRIPTIVE,
885 NULL);
887 else
888 inform (UNKNOWN_LOCATION,
889 "%<-frecord-gcc-switches%> is not supported by "
890 "the current target");
893 if (flag_verbose_asm)
895 /* Print the list of switches in effect
896 into the assembler file as comments. */
897 print_version (asm_out_file, ASM_COMMENT_START, true);
898 print_switch_values (print_to_asm_out_file);
899 putc ('\n', asm_out_file);
904 /* A helper function; used as the reallocator function for cpp's line
905 table. */
906 static void *
907 realloc_for_line_map (void *ptr, size_t len)
909 return ggc_realloc (ptr, len);
912 /* A helper function: used as the allocator function for
913 identifier_to_locale. */
914 static void *
915 alloc_for_identifier_to_locale (size_t len)
917 return ggc_alloc_atomic (len);
920 /* Output stack usage information. */
921 static void
922 output_stack_usage_1 (FILE *cf)
924 static bool warning_issued = false;
925 enum stack_usage_kind_type { STATIC = 0, DYNAMIC, DYNAMIC_BOUNDED };
926 const char *stack_usage_kind_str[] = {
927 "static",
928 "dynamic",
929 "dynamic,bounded"
931 HOST_WIDE_INT stack_usage = current_function_static_stack_size;
932 enum stack_usage_kind_type stack_usage_kind;
934 if (stack_usage < 0)
936 if (!warning_issued)
938 warning (0, "stack usage computation not supported for this target");
939 warning_issued = true;
941 return;
944 stack_usage_kind = STATIC;
946 /* Add the maximum amount of space pushed onto the stack. */
947 if (maybe_ne (current_function_pushed_stack_size, 0))
949 HOST_WIDE_INT extra;
950 if (current_function_pushed_stack_size.is_constant (&extra))
952 stack_usage += extra;
953 stack_usage_kind = DYNAMIC_BOUNDED;
955 else
957 extra = constant_lower_bound (current_function_pushed_stack_size);
958 stack_usage += extra;
959 stack_usage_kind = DYNAMIC;
963 /* Now on to the tricky part: dynamic stack allocation. */
964 if (current_function_allocates_dynamic_stack_space)
966 if (stack_usage_kind != DYNAMIC)
968 if (current_function_has_unbounded_dynamic_stack_size)
969 stack_usage_kind = DYNAMIC;
970 else
971 stack_usage_kind = DYNAMIC_BOUNDED;
974 /* Add the size even in the unbounded case, this can't hurt. */
975 stack_usage += current_function_dynamic_stack_size;
978 if (cf && flag_callgraph_info & CALLGRAPH_INFO_STACK_USAGE)
979 fprintf (cf, "\\n" HOST_WIDE_INT_PRINT_DEC " bytes (%s)",
980 stack_usage,
981 stack_usage_kind_str[stack_usage_kind]);
983 if (stack_usage_file)
985 print_decl_identifier (stack_usage_file, current_function_decl,
986 PRINT_DECL_ORIGIN | PRINT_DECL_NAME);
987 fprintf (stack_usage_file, "\t" HOST_WIDE_INT_PRINT_DEC"\t%s\n",
988 stack_usage, stack_usage_kind_str[stack_usage_kind]);
991 if (warn_stack_usage >= 0 && warn_stack_usage < HOST_WIDE_INT_MAX)
993 const location_t loc = DECL_SOURCE_LOCATION (current_function_decl);
995 if (stack_usage_kind == DYNAMIC)
996 warning_at (loc, OPT_Wstack_usage_, "stack usage might be unbounded");
997 else if (stack_usage > warn_stack_usage)
999 if (stack_usage_kind == DYNAMIC_BOUNDED)
1000 warning_at (loc,
1001 OPT_Wstack_usage_, "stack usage might be %wu bytes",
1002 stack_usage);
1003 else
1004 warning_at (loc, OPT_Wstack_usage_, "stack usage is %wu bytes",
1005 stack_usage);
1010 /* Dump placeholder node for indirect calls in VCG format. */
1012 #define INDIRECT_CALL_NAME "__indirect_call"
1014 static void
1015 dump_final_node_vcg_start (FILE *f, tree decl)
1017 fputs ("node: { title: \"", f);
1018 if (decl)
1019 print_decl_identifier (f, decl, PRINT_DECL_UNIQUE_NAME);
1020 else
1021 fputs (INDIRECT_CALL_NAME, f);
1022 fputs ("\" label: \"", f);
1023 if (decl)
1025 print_decl_identifier (f, decl, PRINT_DECL_NAME);
1026 fputs ("\\n", f);
1027 print_decl_identifier (f, decl, PRINT_DECL_ORIGIN);
1029 else
1030 fputs ("Indirect Call Placeholder", f);
1033 /* Dump final cgraph edge in VCG format. */
1035 static void
1036 dump_final_callee_vcg (FILE *f, location_t location, tree callee)
1038 if ((!callee || DECL_EXTERNAL (callee))
1039 && bitmap_set_bit (callgraph_info_external_printed,
1040 callee ? DECL_UID (callee) + 1 : 0))
1042 dump_final_node_vcg_start (f, callee);
1043 fputs ("\" shape : ellipse }\n", f);
1046 fputs ("edge: { sourcename: \"", f);
1047 print_decl_identifier (f, current_function_decl, PRINT_DECL_UNIQUE_NAME);
1048 fputs ("\" targetname: \"", f);
1049 if (callee)
1050 print_decl_identifier (f, callee, PRINT_DECL_UNIQUE_NAME);
1051 else
1052 fputs (INDIRECT_CALL_NAME, f);
1053 if (LOCATION_LOCUS (location) != UNKNOWN_LOCATION)
1055 expanded_location loc;
1056 fputs ("\" label: \"", f);
1057 loc = expand_location (location);
1058 fprintf (f, "%s:%d:%d", loc.file, loc.line, loc.column);
1060 fputs ("\" }\n", f);
1063 /* Dump final cgraph node in VCG format. */
1065 static void
1066 dump_final_node_vcg (FILE *f)
1068 dump_final_node_vcg_start (f, current_function_decl);
1070 if (flag_stack_usage_info
1071 || (flag_callgraph_info & CALLGRAPH_INFO_STACK_USAGE))
1072 output_stack_usage_1 (f);
1074 if (flag_callgraph_info & CALLGRAPH_INFO_DYNAMIC_ALLOC)
1076 fprintf (f, "\\n%u dynamic objects", vec_safe_length (cfun->su->dallocs));
1078 unsigned i;
1079 callinfo_dalloc *cda;
1080 FOR_EACH_VEC_SAFE_ELT (cfun->su->dallocs, i, cda)
1082 expanded_location loc = expand_location (cda->location);
1083 fprintf (f, "\\n %s", cda->name);
1084 fprintf (f, " %s:%d:%d", loc.file, loc.line, loc.column);
1087 vec_free (cfun->su->dallocs);
1088 cfun->su->dallocs = NULL;
1091 fputs ("\" }\n", f);
1093 unsigned i;
1094 callinfo_callee *c;
1095 FOR_EACH_VEC_SAFE_ELT (cfun->su->callees, i, c)
1096 dump_final_callee_vcg (f, c->location, c->decl);
1097 vec_free (cfun->su->callees);
1098 cfun->su->callees = NULL;
1101 /* Output stack usage and callgraph info, as requested. */
1102 void
1103 output_stack_usage (void)
1105 if (flag_callgraph_info)
1106 dump_final_node_vcg (callgraph_info_file);
1107 else
1108 output_stack_usage_1 (NULL);
1111 /* Open an auxiliary output file. */
1112 static FILE *
1113 open_auxiliary_file (const char *ext)
1115 char *filename;
1116 FILE *file;
1118 filename = concat (aux_base_name, ".", ext, NULL);
1119 file = fopen (filename, "w");
1120 if (!file)
1121 fatal_error (input_location, "cannot open %s for writing: %m", filename);
1122 free (filename);
1123 return file;
1126 /* Alternative diagnostics callback for reentered ICE reporting. */
1128 static void
1129 internal_error_reentered (diagnostic_context *, const char *, va_list *)
1131 /* Flush the dump file if emergency_dump_function itself caused an ICE. */
1132 if (dump_file)
1133 fflush (dump_file);
1136 /* Auxiliary callback for the diagnostics code. */
1138 static void
1139 internal_error_function (diagnostic_context *, const char *, va_list *)
1141 global_dc->internal_error = internal_error_reentered;
1142 warn_if_plugins ();
1143 emergency_dump_function ();
1146 /* Initialization of the front end environment, before command line
1147 options are parsed. Signal handlers, internationalization etc.
1148 ARGV0 is main's argv[0]. */
1149 static void
1150 general_init (const char *argv0, bool init_signals)
1152 const char *p;
1154 p = argv0 + strlen (argv0);
1155 while (p != argv0 && !IS_DIR_SEPARATOR (p[-1]))
1156 --p;
1157 progname = p;
1159 xmalloc_set_program_name (progname);
1161 hex_init ();
1163 /* Unlock the stdio streams. */
1164 unlock_std_streams ();
1166 gcc_init_libintl ();
1168 identifier_to_locale_alloc = alloc_for_identifier_to_locale;
1169 identifier_to_locale_free = ggc_free;
1171 /* Initialize the diagnostics reporting machinery, so option parsing
1172 can give warnings and errors. */
1173 diagnostic_initialize (global_dc, N_OPTS);
1174 global_dc->lang_mask = lang_hooks.option_lang_mask ();
1175 /* Set a default printer. Language specific initializations will
1176 override it later. */
1177 tree_diagnostics_defaults (global_dc);
1179 global_dc->show_caret
1180 = global_options_init.x_flag_diagnostics_show_caret;
1181 global_dc->show_labels_p
1182 = global_options_init.x_flag_diagnostics_show_labels;
1183 global_dc->show_line_numbers_p
1184 = global_options_init.x_flag_diagnostics_show_line_numbers;
1185 global_dc->show_cwe
1186 = global_options_init.x_flag_diagnostics_show_cwe;
1187 global_dc->path_format
1188 = (enum diagnostic_path_format)global_options_init.x_flag_diagnostics_path_format;
1189 global_dc->show_path_depths
1190 = global_options_init.x_flag_diagnostics_show_path_depths;
1191 global_dc->show_option_requested
1192 = global_options_init.x_flag_diagnostics_show_option;
1193 global_dc->min_margin_width
1194 = global_options_init.x_diagnostics_minimum_margin_width;
1195 global_dc->show_column
1196 = global_options_init.x_flag_show_column;
1197 global_dc->internal_error = internal_error_function;
1198 global_dc->option_enabled = option_enabled;
1199 global_dc->option_state = &global_options;
1200 global_dc->option_name = option_name;
1201 global_dc->get_option_url = get_option_url;
1203 if (init_signals)
1205 /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages. */
1206 #ifdef SIGSEGV
1207 signal (SIGSEGV, crash_signal);
1208 #endif
1209 #ifdef SIGILL
1210 signal (SIGILL, crash_signal);
1211 #endif
1212 #ifdef SIGBUS
1213 signal (SIGBUS, crash_signal);
1214 #endif
1215 #ifdef SIGABRT
1216 signal (SIGABRT, crash_signal);
1217 #endif
1218 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
1219 signal (SIGIOT, crash_signal);
1220 #endif
1221 #ifdef SIGFPE
1222 signal (SIGFPE, crash_signal);
1223 #endif
1225 /* Other host-specific signal setup. */
1226 (*host_hooks.extra_signals)();
1229 /* Initialize the garbage-collector, string pools and tree type hash
1230 table. */
1231 init_ggc ();
1232 init_stringpool ();
1233 input_location = UNKNOWN_LOCATION;
1234 line_table = ggc_alloc<line_maps> ();
1235 linemap_init (line_table, BUILTINS_LOCATION);
1236 line_table->reallocator = realloc_for_line_map;
1237 line_table->round_alloc_size = ggc_round_alloc_size;
1238 line_table->default_range_bits = 5;
1239 init_ttree ();
1241 /* Initialize register usage now so switches may override. */
1242 init_reg_sets ();
1244 /* Create the singleton holder for global state. This creates the
1245 dump manager. */
1246 g = new gcc::context ();
1248 /* Allow languages and middle-end to register their dumps before the
1249 optimization passes. */
1250 g->get_dumps ()->register_dumps ();
1252 /* Create the passes. */
1253 g->set_passes (new gcc::pass_manager (g));
1255 symtab = new (ggc_alloc <symbol_table> ()) symbol_table ();
1257 statistics_early_init ();
1258 debuginfo_early_init ();
1261 /* Return true if the current target supports -fsection-anchors. */
1263 static bool
1264 target_supports_section_anchors_p (void)
1266 if (targetm.min_anchor_offset == 0 && targetm.max_anchor_offset == 0)
1267 return false;
1269 if (targetm.asm_out.output_anchor == NULL)
1270 return false;
1272 return true;
1275 /* Parse "N[:M][:...]" into struct align_flags A.
1276 VALUES contains parsed values (in reverse order), all processed
1277 values are popped. */
1279 static void
1280 read_log_maxskip (auto_vec<unsigned> &values, align_flags_tuple *a)
1282 unsigned n = values.pop ();
1283 if (n != 0)
1284 a->log = floor_log2 (n * 2 - 1);
1286 if (values.is_empty ())
1287 a->maxskip = n ? n - 1 : 0;
1288 else
1290 unsigned m = values.pop ();
1291 /* -falign-foo=N:M means M-1 max bytes of padding, not M. */
1292 if (m > 0)
1293 m--;
1294 a->maxskip = m;
1297 /* Normalize the tuple. */
1298 a->normalize ();
1301 /* Parse "N[:M[:N2[:M2]]]" string FLAG into a pair of struct align_flags. */
1303 static void
1304 parse_N_M (const char *flag, align_flags &a)
1306 if (flag)
1308 static hash_map <nofree_string_hash, align_flags> cache;
1309 align_flags *entry = cache.get (flag);
1310 if (entry)
1312 a = *entry;
1313 return;
1316 auto_vec<unsigned> result_values;
1317 bool r = parse_and_check_align_values (flag, NULL, result_values, false,
1318 UNKNOWN_LOCATION);
1319 if (!r)
1320 return;
1322 /* Reverse values for easier manipulation. */
1323 result_values.reverse ();
1325 read_log_maxskip (result_values, &a.levels[0]);
1326 if (!result_values.is_empty ())
1327 read_log_maxskip (result_values, &a.levels[1]);
1328 #ifdef SUBALIGN_LOG
1329 else
1331 /* N2[:M2] is not specified. This arch has a default for N2.
1332 Before -falign-foo=N:M:N2:M2 was introduced, x86 had a tweak.
1333 -falign-functions=N with N > 8 was adding secondary alignment.
1334 -falign-functions=10 was emitting this before every function:
1335 .p2align 4,,9
1336 .p2align 3
1337 Now this behavior (and more) can be explicitly requested:
1338 -falign-functions=16:10:8
1339 Retain old behavior if N2 is missing: */
1341 int align = 1 << a.levels[0].log;
1342 int subalign = 1 << SUBALIGN_LOG;
1344 if (a.levels[0].log > SUBALIGN_LOG
1345 && a.levels[0].maxskip >= subalign - 1)
1347 /* Set N2 unless subalign can never have any effect. */
1348 if (align > a.levels[0].maxskip + 1)
1350 a.levels[1].log = SUBALIGN_LOG;
1351 a.levels[1].normalize ();
1355 #endif
1357 /* Cache seen value. */
1358 cache.put (flag, a);
1362 /* Process -falign-foo=N[:M[:N2[:M2]]] options. */
1364 void
1365 parse_alignment_opts (void)
1367 parse_N_M (str_align_loops, align_loops);
1368 parse_N_M (str_align_jumps, align_jumps);
1369 parse_N_M (str_align_labels, align_labels);
1370 parse_N_M (str_align_functions, align_functions);
1373 /* Process the options that have been parsed. */
1374 static void
1375 process_options (void)
1377 /* Just in case lang_hooks.post_options ends up calling a debug_hook.
1378 This can happen with incorrect pre-processed input. */
1379 debug_hooks = &do_nothing_debug_hooks;
1381 maximum_field_alignment = initial_max_fld_align * BITS_PER_UNIT;
1383 /* Allow the front end to perform consistency checks and do further
1384 initialization based on the command line options. This hook also
1385 sets the original filename if appropriate (e.g. foo.i -> foo.c)
1386 so we can correctly initialize debug output. */
1387 no_backend = lang_hooks.post_options (&main_input_filename);
1389 /* Some machines may reject certain combinations of options. */
1390 location_t saved_location = input_location;
1391 input_location = UNKNOWN_LOCATION;
1392 targetm.target_option.override ();
1393 input_location = saved_location;
1395 if (flag_diagnostics_generate_patch)
1396 global_dc->edit_context_ptr = new edit_context ();
1398 /* Avoid any informative notes in the second run of -fcompare-debug. */
1399 if (flag_compare_debug)
1400 diagnostic_inhibit_notes (global_dc);
1402 if (flag_section_anchors && !target_supports_section_anchors_p ())
1404 warning_at (UNKNOWN_LOCATION, OPT_fsection_anchors,
1405 "this target does not support %qs",
1406 "-fsection-anchors");
1407 flag_section_anchors = 0;
1410 if (flag_short_enums == 2)
1411 flag_short_enums = targetm.default_short_enums ();
1413 /* Set aux_base_name if not already set. */
1414 if (aux_base_name)
1416 else if (dump_base_name)
1418 const char *name = dump_base_name;
1419 int nlen, len;
1421 if (dump_base_ext && (len = strlen (dump_base_ext))
1422 && (nlen = strlen (name)) && nlen > len
1423 && strcmp (name + nlen - len, dump_base_ext) == 0)
1425 char *p = xstrndup (name, nlen - len);
1426 name = p;
1429 aux_base_name = name;
1431 else
1432 aux_base_name = "gccaux";
1434 #ifndef HAVE_isl
1435 if (flag_graphite
1436 || flag_loop_nest_optimize
1437 || flag_graphite_identity
1438 || flag_loop_parallelize_all)
1439 sorry ("Graphite loop optimizations cannot be used (isl is not available) "
1440 "(%<-fgraphite%>, %<-fgraphite-identity%>, "
1441 "%<-floop-nest-optimize%>, %<-floop-parallelize-all%>)");
1442 #endif
1444 if (flag_cf_protection != CF_NONE
1445 && !(flag_cf_protection & CF_SET))
1447 if (flag_cf_protection == CF_FULL)
1449 error_at (UNKNOWN_LOCATION,
1450 "%<-fcf-protection=full%> is not supported for this "
1451 "target");
1452 flag_cf_protection = CF_NONE;
1454 if (flag_cf_protection == CF_BRANCH)
1456 error_at (UNKNOWN_LOCATION,
1457 "%<-fcf-protection=branch%> is not supported for this "
1458 "target");
1459 flag_cf_protection = CF_NONE;
1461 if (flag_cf_protection == CF_RETURN)
1463 error_at (UNKNOWN_LOCATION,
1464 "%<-fcf-protection=return%> is not supported for this "
1465 "target");
1466 flag_cf_protection = CF_NONE;
1470 /* One region RA really helps to decrease the code size. */
1471 if (flag_ira_region == IRA_REGION_AUTODETECT)
1472 flag_ira_region
1473 = optimize_size || !optimize ? IRA_REGION_ONE : IRA_REGION_MIXED;
1475 if (!abi_version_at_least (2))
1477 /* -fabi-version=1 support was removed after GCC 4.9. */
1478 error_at (UNKNOWN_LOCATION,
1479 "%<-fabi-version=1%> is no longer supported");
1480 flag_abi_version = 2;
1483 /* web and rename-registers help when run after loop unrolling. */
1484 if (flag_web == AUTODETECT_VALUE)
1485 flag_web = flag_unroll_loops;
1487 if (flag_rename_registers == AUTODETECT_VALUE)
1488 flag_rename_registers = flag_unroll_loops;
1490 if (flag_non_call_exceptions)
1491 flag_asynchronous_unwind_tables = 1;
1492 if (flag_asynchronous_unwind_tables)
1493 flag_unwind_tables = 1;
1495 if (flag_value_profile_transformations)
1496 flag_profile_values = 1;
1498 /* Warn about options that are not supported on this machine. */
1499 #ifndef INSN_SCHEDULING
1500 if (flag_schedule_insns || flag_schedule_insns_after_reload)
1501 warning_at (UNKNOWN_LOCATION, 0,
1502 "instruction scheduling not supported on this target machine");
1503 #endif
1504 if (!DELAY_SLOTS && flag_delayed_branch)
1505 warning_at (UNKNOWN_LOCATION, 0,
1506 "this target machine does not have delayed branches");
1508 user_label_prefix = USER_LABEL_PREFIX;
1509 if (flag_leading_underscore != -1)
1511 /* If the default prefix is more complicated than "" or "_",
1512 issue a warning and ignore this option. */
1513 if (user_label_prefix[0] == 0 ||
1514 (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
1516 user_label_prefix = flag_leading_underscore ? "_" : "";
1518 else
1519 warning_at (UNKNOWN_LOCATION, 0,
1520 "%<-f%sleading-underscore%> not supported on this "
1521 "target machine", flag_leading_underscore ? "" : "no-");
1524 /* If we are in verbose mode, write out the version and maybe all the
1525 option flags in use. */
1526 if (version_flag)
1528 print_version (stderr, "", true);
1529 if (! quiet_flag)
1530 print_switch_values (print_to_stderr);
1533 if (flag_syntax_only)
1535 write_symbols = NO_DEBUG;
1536 profile_flag = 0;
1539 if (flag_gtoggle)
1541 if (debug_info_level == DINFO_LEVEL_NONE)
1543 debug_info_level = DINFO_LEVEL_NORMAL;
1545 if (write_symbols == NO_DEBUG)
1546 write_symbols = PREFERRED_DEBUGGING_TYPE;
1548 else
1549 debug_info_level = DINFO_LEVEL_NONE;
1552 if (flag_dump_final_insns && !flag_syntax_only && !no_backend)
1554 FILE *final_output = fopen (flag_dump_final_insns, "w");
1555 if (!final_output)
1557 error_at (UNKNOWN_LOCATION,
1558 "could not open final insn dump file %qs: %m",
1559 flag_dump_final_insns);
1560 flag_dump_final_insns = NULL;
1562 else if (fclose (final_output))
1564 error_at (UNKNOWN_LOCATION,
1565 "could not close zeroed insn dump file %qs: %m",
1566 flag_dump_final_insns);
1567 flag_dump_final_insns = NULL;
1571 /* A lot of code assumes write_symbols == NO_DEBUG if the debugging
1572 level is 0. */
1573 if (debug_info_level == DINFO_LEVEL_NONE)
1574 write_symbols = NO_DEBUG;
1576 if (write_symbols == NO_DEBUG)
1578 #if defined(DBX_DEBUGGING_INFO)
1579 else if (write_symbols == DBX_DEBUG)
1580 debug_hooks = &dbx_debug_hooks;
1581 #endif
1582 #if defined(XCOFF_DEBUGGING_INFO)
1583 else if (write_symbols == XCOFF_DEBUG)
1584 debug_hooks = &xcoff_debug_hooks;
1585 #endif
1586 #ifdef DWARF2_DEBUGGING_INFO
1587 else if (write_symbols == DWARF2_DEBUG)
1588 debug_hooks = &dwarf2_debug_hooks;
1589 #endif
1590 #ifdef VMS_DEBUGGING_INFO
1591 else if (write_symbols == VMS_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
1592 debug_hooks = &vmsdbg_debug_hooks;
1593 #endif
1594 #ifdef DWARF2_LINENO_DEBUGGING_INFO
1595 else if (write_symbols == DWARF2_DEBUG)
1596 debug_hooks = &dwarf2_lineno_debug_hooks;
1597 #endif
1598 else
1599 error_at (UNKNOWN_LOCATION,
1600 "target system does not support the %qs debug format",
1601 debug_type_names[write_symbols]);
1603 /* We know which debug output will be used so we can set flag_var_tracking
1604 and flag_var_tracking_uninit if the user has not specified them. */
1605 if (debug_info_level < DINFO_LEVEL_NORMAL
1606 || debug_hooks->var_location == do_nothing_debug_hooks.var_location)
1608 if (flag_var_tracking == 1
1609 || flag_var_tracking_uninit == 1)
1611 if (debug_info_level < DINFO_LEVEL_NORMAL)
1612 warning_at (UNKNOWN_LOCATION, 0,
1613 "variable tracking requested, but useless unless "
1614 "producing debug info");
1615 else
1616 warning_at (UNKNOWN_LOCATION, 0,
1617 "variable tracking requested, but not supported "
1618 "by this debug format");
1620 flag_var_tracking = 0;
1621 flag_var_tracking_uninit = 0;
1624 /* The debug hooks are used to implement -fdump-go-spec because it
1625 gives a simple and stable API for all the information we need to
1626 dump. */
1627 if (flag_dump_go_spec != NULL)
1628 debug_hooks = dump_go_spec_init (flag_dump_go_spec, debug_hooks);
1630 /* If the user specifically requested variable tracking with tagging
1631 uninitialized variables, we need to turn on variable tracking.
1632 (We already determined above that variable tracking is feasible.) */
1633 if (flag_var_tracking_uninit == 1)
1634 flag_var_tracking = 1;
1636 if (flag_var_tracking == AUTODETECT_VALUE)
1637 flag_var_tracking = optimize >= 1;
1639 if (flag_var_tracking_uninit == AUTODETECT_VALUE)
1640 flag_var_tracking_uninit = flag_var_tracking;
1642 if (flag_var_tracking_assignments == AUTODETECT_VALUE)
1643 flag_var_tracking_assignments
1644 = (flag_var_tracking
1645 && !(flag_selective_scheduling || flag_selective_scheduling2));
1647 if (flag_var_tracking_assignments_toggle)
1648 flag_var_tracking_assignments = !flag_var_tracking_assignments;
1650 if (flag_var_tracking_assignments && !flag_var_tracking)
1651 flag_var_tracking = flag_var_tracking_assignments = -1;
1653 if (flag_var_tracking_assignments
1654 && (flag_selective_scheduling || flag_selective_scheduling2))
1655 warning_at (UNKNOWN_LOCATION, 0,
1656 "var-tracking-assignments changes selective scheduling");
1658 if (debug_nonbind_markers_p == AUTODETECT_VALUE)
1659 debug_nonbind_markers_p
1660 = (optimize
1661 && debug_info_level >= DINFO_LEVEL_NORMAL
1662 && (write_symbols == DWARF2_DEBUG
1663 || write_symbols == VMS_AND_DWARF2_DEBUG)
1664 && !(flag_selective_scheduling || flag_selective_scheduling2));
1666 if (dwarf2out_as_loc_support == AUTODETECT_VALUE)
1667 dwarf2out_as_loc_support
1668 = dwarf2out_default_as_loc_support ();
1669 if (dwarf2out_as_locview_support == AUTODETECT_VALUE)
1670 dwarf2out_as_locview_support
1671 = dwarf2out_default_as_locview_support ();
1673 if (debug_variable_location_views == AUTODETECT_VALUE)
1675 debug_variable_location_views
1676 = (flag_var_tracking
1677 && debug_info_level >= DINFO_LEVEL_NORMAL
1678 && (write_symbols == DWARF2_DEBUG
1679 || write_symbols == VMS_AND_DWARF2_DEBUG)
1680 && !dwarf_strict
1681 && dwarf2out_as_loc_support
1682 && dwarf2out_as_locview_support);
1684 else if (debug_variable_location_views == -1 && dwarf_version != 5)
1686 warning_at (UNKNOWN_LOCATION, 0,
1687 "without %<-gdwarf-5%>, "
1688 "%<-gvariable-location-views=incompat5%> "
1689 "is equivalent to %<-gvariable-location-views%>");
1690 debug_variable_location_views = 1;
1693 if (debug_internal_reset_location_views == 2)
1695 debug_internal_reset_location_views
1696 = (debug_variable_location_views
1697 && targetm.reset_location_view);
1699 else if (debug_internal_reset_location_views
1700 && !debug_variable_location_views)
1702 warning_at (UNKNOWN_LOCATION, 0,
1703 "%<-ginternal-reset-location-views%> is forced disabled "
1704 "without %<-gvariable-location-views%>");
1705 debug_internal_reset_location_views = 0;
1708 if (debug_inline_points == AUTODETECT_VALUE)
1709 debug_inline_points = debug_variable_location_views;
1710 else if (debug_inline_points && !debug_nonbind_markers_p)
1712 warning_at (UNKNOWN_LOCATION, 0,
1713 "%<-ginline-points%> is forced disabled without "
1714 "%<-gstatement-frontiers%>");
1715 debug_inline_points = 0;
1718 if (flag_tree_cselim == AUTODETECT_VALUE)
1720 if (HAVE_conditional_move)
1721 flag_tree_cselim = 1;
1722 else
1723 flag_tree_cselim = 0;
1726 /* If auxiliary info generation is desired, open the output file.
1727 This goes in the same directory as the source file--unlike
1728 all the other output files. */
1729 if (flag_gen_aux_info)
1731 aux_info_file = fopen (aux_info_file_name, "w");
1732 if (aux_info_file == 0)
1733 fatal_error (UNKNOWN_LOCATION,
1734 "cannot open %s: %m", aux_info_file_name);
1737 if (!targetm_common.have_named_sections)
1739 if (flag_function_sections)
1741 warning_at (UNKNOWN_LOCATION, 0,
1742 "%<-ffunction-sections%> not supported for this target");
1743 flag_function_sections = 0;
1745 if (flag_data_sections)
1747 warning_at (UNKNOWN_LOCATION, 0,
1748 "%<-fdata-sections%> not supported for this target");
1749 flag_data_sections = 0;
1753 if (flag_prefetch_loop_arrays > 0 && !targetm.code_for_prefetch)
1755 warning_at (UNKNOWN_LOCATION, 0,
1756 "%<-fprefetch-loop-arrays%> not supported for this target");
1757 flag_prefetch_loop_arrays = 0;
1759 else if (flag_prefetch_loop_arrays > 0 && !targetm.have_prefetch ())
1761 warning_at (UNKNOWN_LOCATION, 0,
1762 "%<-fprefetch-loop-arrays%> not supported for this target "
1763 "(try %<-march%> switches)");
1764 flag_prefetch_loop_arrays = 0;
1767 /* This combination of options isn't handled for i386 targets and doesn't
1768 make much sense anyway, so don't allow it. */
1769 if (flag_prefetch_loop_arrays > 0 && optimize_size)
1771 warning_at (UNKNOWN_LOCATION, 0,
1772 "%<-fprefetch-loop-arrays%> is not supported with %<-Os%>");
1773 flag_prefetch_loop_arrays = 0;
1776 /* The presence of IEEE signaling NaNs, implies all math can trap. */
1777 if (flag_signaling_nans)
1778 flag_trapping_math = 1;
1780 /* We cannot reassociate if we want traps or signed zeros. */
1781 if (flag_associative_math && (flag_trapping_math || flag_signed_zeros))
1783 warning_at (UNKNOWN_LOCATION, 0,
1784 "%<-fassociative-math%> disabled; other options take "
1785 "precedence");
1786 flag_associative_math = 0;
1789 /* -fstack-clash-protection is not currently supported on targets
1790 where the stack grows up. */
1791 if (flag_stack_clash_protection && !STACK_GROWS_DOWNWARD)
1793 warning_at (UNKNOWN_LOCATION, 0,
1794 "%<-fstack-clash-protection%> is not supported on targets "
1795 "where the stack grows from lower to higher addresses");
1796 flag_stack_clash_protection = 0;
1799 /* We cannot support -fstack-check= and -fstack-clash-protection at
1800 the same time. */
1801 if (flag_stack_check != NO_STACK_CHECK && flag_stack_clash_protection)
1803 warning_at (UNKNOWN_LOCATION, 0,
1804 "%<-fstack-check=%> and %<-fstack-clash_protection%> are "
1805 "mutually exclusive; disabling %<-fstack-check=%>");
1806 flag_stack_check = NO_STACK_CHECK;
1809 /* With -fcx-limited-range, we do cheap and quick complex arithmetic. */
1810 if (flag_cx_limited_range)
1811 flag_complex_method = 0;
1813 /* With -fcx-fortran-rules, we do something in-between cheap and C99. */
1814 if (flag_cx_fortran_rules)
1815 flag_complex_method = 1;
1817 /* Targets must be able to place spill slots at lower addresses. If the
1818 target already uses a soft frame pointer, the transition is trivial. */
1819 if (!FRAME_GROWS_DOWNWARD && flag_stack_protect)
1821 warning_at (UNKNOWN_LOCATION, 0,
1822 "%<-fstack-protector%> not supported for this target");
1823 flag_stack_protect = 0;
1825 if (!flag_stack_protect)
1826 warn_stack_protect = 0;
1828 /* Address Sanitizer needs porting to each target architecture. */
1830 if ((flag_sanitize & SANITIZE_ADDRESS)
1831 && !FRAME_GROWS_DOWNWARD)
1833 warning_at (UNKNOWN_LOCATION, 0,
1834 "%<-fsanitize=address%> and %<-fsanitize=kernel-address%> "
1835 "are not supported for this target");
1836 flag_sanitize &= ~SANITIZE_ADDRESS;
1839 if ((flag_sanitize & SANITIZE_USER_ADDRESS)
1840 && ((targetm.asan_shadow_offset == NULL)
1841 || (targetm.asan_shadow_offset () == 0)))
1843 warning_at (UNKNOWN_LOCATION, 0,
1844 "%<-fsanitize=address%> not supported for this target");
1845 flag_sanitize &= ~SANITIZE_ADDRESS;
1848 if ((flag_sanitize & SANITIZE_KERNEL_ADDRESS)
1849 && (targetm.asan_shadow_offset == NULL
1850 && !asan_shadow_offset_set_p ()))
1852 warning_at (UNKNOWN_LOCATION, 0,
1853 "%<-fsanitize=kernel-address%> with stack protection "
1854 "is not supported without %<-fasan-shadow-offset=%> "
1855 "for this target");
1856 flag_sanitize &= ~SANITIZE_ADDRESS;
1859 /* HWAsan requires top byte ignore feature in the backend. */
1860 if (flag_sanitize & SANITIZE_HWADDRESS
1861 && ! targetm.memtag.can_tag_addresses ())
1863 warning_at (UNKNOWN_LOCATION, 0, "%qs is not supported for this target",
1864 "-fsanitize=hwaddress");
1865 flag_sanitize &= ~SANITIZE_HWADDRESS;
1868 /* Do not use IPA optimizations for register allocation if profiler is active
1869 or patchable function entries are inserted for run-time instrumentation
1870 or port does not emit prologue and epilogue as RTL. */
1871 if (profile_flag || function_entry_patch_area_size
1872 || !targetm.have_prologue () || !targetm.have_epilogue ())
1873 flag_ipa_ra = 0;
1875 /* Enable -Werror=coverage-mismatch when -Werror and -Wno-error
1876 have not been set. */
1877 if (!global_options_set.x_warnings_are_errors
1878 && warn_coverage_mismatch
1879 && (global_dc->classify_diagnostic[OPT_Wcoverage_mismatch] ==
1880 DK_UNSPECIFIED))
1881 diagnostic_classify_diagnostic (global_dc, OPT_Wcoverage_mismatch,
1882 DK_ERROR, UNKNOWN_LOCATION);
1884 /* Save the current optimization options. */
1885 optimization_default_node
1886 = build_optimization_node (&global_options, &global_options_set);
1887 optimization_current_node = optimization_default_node;
1889 if (flag_checking >= 2)
1890 hash_table_sanitize_eq_limit
1891 = param_hash_table_verification_limit;
1893 if (flag_large_source_files)
1894 line_table->default_range_bits = 0;
1896 /* Please don't change global_options after this point, those changes won't
1897 be reflected in optimization_{default,current}_node. */
1900 /* This function can be called multiple times to reinitialize the compiler
1901 back end when register classes or instruction sets have changed,
1902 before each function. */
1903 static void
1904 backend_init_target (void)
1906 /* This depends on stack_pointer_rtx. */
1907 init_fake_stack_mems ();
1909 /* Sets static_base_value[HARD_FRAME_POINTER_REGNUM], which is
1910 mode-dependent. */
1911 init_alias_target ();
1913 /* Depends on HARD_FRAME_POINTER_REGNUM. */
1914 if (!ira_use_lra_p)
1915 init_reload ();
1917 /* Depends on the enabled attribute. */
1918 recog_init ();
1920 /* The following initialization functions need to generate rtl, so
1921 provide a dummy function context for them. */
1922 init_dummy_function_start ();
1924 /* rtx_cost is mode-dependent, so cached values need to be recomputed
1925 on a mode change. */
1926 init_expmed ();
1927 init_lower_subreg ();
1928 init_set_costs ();
1930 init_expr_target ();
1931 ira_init ();
1933 /* We may need to recompute regno_save_code[] and regno_restore_code[]
1934 after a mode change as well. */
1935 caller_save_initialized_p = false;
1937 expand_dummy_function_end ();
1940 /* Initialize the compiler back end. This function is called only once,
1941 when starting the compiler. */
1942 static void
1943 backend_init (void)
1945 init_emit_once ();
1947 init_rtlanal ();
1948 init_inline_once ();
1949 init_varasm_once ();
1950 save_register_info ();
1952 /* Middle end needs this initialization for default mem attributes
1953 used by early calls to make_decl_rtl. */
1954 init_emit_regs ();
1956 /* Middle end needs this initialization for mode tables used to assign
1957 modes to vector variables. */
1958 init_regs ();
1961 /* Initialize things that are both lang-dependent and target-dependent.
1962 This function can be called more than once if target parameters change. */
1963 static void
1964 lang_dependent_init_target (void)
1966 /* This creates various _DECL nodes, so needs to be called after the
1967 front end is initialized. It also depends on the HAVE_xxx macros
1968 generated from the target machine description. */
1969 init_optabs ();
1971 gcc_assert (!this_target_rtl->target_specific_initialized);
1974 /* Perform initializations that are lang-dependent or target-dependent.
1975 but matters only for late optimizations and RTL generation. */
1977 static int rtl_initialized;
1979 void
1980 initialize_rtl (void)
1982 auto_timevar tv (g_timer, TV_INITIALIZE_RTL);
1984 /* Initialization done just once per compilation, but delayed
1985 till code generation. */
1986 if (!rtl_initialized)
1987 ira_init_once ();
1988 rtl_initialized = true;
1990 /* Target specific RTL backend initialization. */
1991 if (!this_target_rtl->target_specific_initialized)
1993 backend_init_target ();
1994 this_target_rtl->target_specific_initialized = true;
1998 /* Language-dependent initialization. Returns nonzero on success. */
1999 static int
2000 lang_dependent_init (const char *name)
2002 location_t save_loc = input_location;
2003 if (!dump_base_name)
2005 dump_base_name = name && name[0] ? name : "gccdump";
2007 /* We do not want to derive a non-empty dumpbase-ext from an
2008 explicit -dumpbase argument, only from a defaulted
2009 dumpbase. */
2010 if (!dump_base_ext)
2012 const char *base = lbasename (dump_base_name);
2013 const char *ext = strrchr (base, '.');
2014 if (ext)
2015 dump_base_ext = ext;
2019 /* Other front-end initialization. */
2020 input_location = BUILTINS_LOCATION;
2021 if (lang_hooks.init () == 0)
2022 return 0;
2023 input_location = save_loc;
2025 if (!flag_wpa)
2027 init_asm_output (name);
2029 if (!flag_generate_lto && !flag_compare_debug)
2031 /* If stack usage information is desired, open the output file. */
2032 if (flag_stack_usage)
2033 stack_usage_file = open_auxiliary_file ("su");
2035 /* If call graph information is desired, open the output file. */
2036 if (flag_callgraph_info)
2038 callgraph_info_file = open_auxiliary_file ("ci");
2039 /* Write the file header. */
2040 fprintf (callgraph_info_file,
2041 "graph: { title: \"%s\"\n", main_input_filename);
2042 bitmap_obstack_initialize (NULL);
2043 callgraph_info_external_printed = BITMAP_ALLOC (NULL);
2046 else
2047 flag_stack_usage = flag_callgraph_info = false;
2050 /* This creates various _DECL nodes, so needs to be called after the
2051 front end is initialized. */
2052 init_eh ();
2054 /* Do the target-specific parts of the initialization. */
2055 lang_dependent_init_target ();
2057 if (!flag_wpa)
2059 /* If dbx symbol table desired, initialize writing it and output the
2060 predefined types. */
2061 timevar_push (TV_SYMOUT);
2063 /* Now we have the correct original filename, we can initialize
2064 debug output. */
2065 (*debug_hooks->init) (name);
2067 timevar_pop (TV_SYMOUT);
2070 return 1;
2074 /* Reinitialize everything when target parameters, such as register usage,
2075 have changed. */
2076 void
2077 target_reinit (void)
2079 struct rtl_data saved_x_rtl;
2080 rtx *saved_regno_reg_rtx;
2081 tree saved_optimization_current_node;
2082 struct target_optabs *saved_this_fn_optabs;
2084 /* Temporarily switch to the default optimization node, so that
2085 *this_target_optabs is set to the default, not reflecting
2086 whatever a previous function used for the optimize
2087 attribute. */
2088 saved_optimization_current_node = optimization_current_node;
2089 saved_this_fn_optabs = this_fn_optabs;
2090 if (saved_optimization_current_node != optimization_default_node)
2092 optimization_current_node = optimization_default_node;
2093 cl_optimization_restore
2094 (&global_options, &global_options_set,
2095 TREE_OPTIMIZATION (optimization_default_node));
2097 this_fn_optabs = this_target_optabs;
2099 /* Save *crtl and regno_reg_rtx around the reinitialization
2100 to allow target_reinit being called even after prepare_function_start. */
2101 saved_regno_reg_rtx = regno_reg_rtx;
2102 if (saved_regno_reg_rtx)
2104 saved_x_rtl = *crtl;
2105 memset (crtl, '\0', sizeof (*crtl));
2106 regno_reg_rtx = NULL;
2109 this_target_rtl->target_specific_initialized = false;
2111 /* This initializes hard_frame_pointer, and calls init_reg_modes_target()
2112 to initialize reg_raw_mode[]. */
2113 init_emit_regs ();
2115 /* This invokes target hooks to set fixed_reg[] etc, which is
2116 mode-dependent. */
2117 init_regs ();
2119 /* Reinitialize lang-dependent parts. */
2120 lang_dependent_init_target ();
2122 /* Restore the original optimization node. */
2123 if (saved_optimization_current_node != optimization_default_node)
2125 optimization_current_node = saved_optimization_current_node;
2126 cl_optimization_restore (&global_options, &global_options_set,
2127 TREE_OPTIMIZATION (optimization_current_node));
2129 this_fn_optabs = saved_this_fn_optabs;
2131 /* Restore regno_reg_rtx at the end, as free_after_compilation from
2132 expand_dummy_function_end clears it. */
2133 if (saved_regno_reg_rtx)
2135 *crtl = saved_x_rtl;
2136 regno_reg_rtx = saved_regno_reg_rtx;
2137 saved_regno_reg_rtx = NULL;
2141 void
2142 dump_memory_report (const char *header)
2144 /* Print significant header. */
2145 fputc ('\n', stderr);
2146 for (unsigned i = 0; i < 80; i++)
2147 fputc ('#', stderr);
2148 fprintf (stderr, "\n# %-77s#\n", header);
2149 for (unsigned i = 0; i < 80; i++)
2150 fputc ('#', stderr);
2151 fputs ("\n\n", stderr);
2153 dump_line_table_statistics ();
2154 ggc_print_statistics ();
2155 stringpool_statistics ();
2156 dump_tree_statistics ();
2157 dump_gimple_statistics ();
2158 dump_rtx_statistics ();
2159 dump_alloc_pool_statistics ();
2160 dump_bitmap_statistics ();
2161 dump_hash_table_loc_statistics ();
2162 dump_vec_loc_statistics ();
2163 dump_ggc_loc_statistics ();
2164 dump_alias_stats (stderr);
2165 dump_pta_stats (stderr);
2168 /* Clean up: close opened files, etc. */
2170 static void
2171 finalize (bool no_backend)
2173 /* Close the dump files. */
2174 if (flag_gen_aux_info)
2176 fclose (aux_info_file);
2177 aux_info_file = NULL;
2178 if (seen_error ())
2179 unlink (aux_info_file_name);
2182 /* Close non-debugging input and output files. Take special care to note
2183 whether fclose returns an error, since the pages might still be on the
2184 buffer chain while the file is open. */
2186 if (asm_out_file)
2188 if (ferror (asm_out_file) != 0)
2189 fatal_error (input_location, "error writing to %s: %m", asm_file_name);
2190 if (fclose (asm_out_file) != 0)
2191 fatal_error (input_location, "error closing %s: %m", asm_file_name);
2192 asm_out_file = NULL;
2195 if (stack_usage_file)
2197 fclose (stack_usage_file);
2198 stack_usage_file = NULL;
2201 if (callgraph_info_file)
2203 fputs ("}\n", callgraph_info_file);
2204 fclose (callgraph_info_file);
2205 callgraph_info_file = NULL;
2206 BITMAP_FREE (callgraph_info_external_printed);
2207 bitmap_obstack_release (NULL);
2210 if (seen_error ())
2211 coverage_remove_note_file ();
2213 if (!no_backend)
2215 statistics_fini ();
2216 debuginfo_fini ();
2218 g->get_passes ()->finish_optimization_passes ();
2220 lra_finish_once ();
2223 if (mem_report)
2224 dump_memory_report ("Final");
2226 if (profile_report)
2227 dump_profile_report ();
2229 if (flag_dbg_cnt_list)
2230 dbg_cnt_list_all_counters ();
2232 /* Language-specific end of compilation actions. */
2233 lang_hooks.finish ();
2236 static bool
2237 standard_type_bitsize (int bitsize)
2239 /* As a special exception, we always want __int128 enabled if possible. */
2240 if (bitsize == 128)
2241 return false;
2242 if (bitsize == CHAR_TYPE_SIZE
2243 || bitsize == SHORT_TYPE_SIZE
2244 || bitsize == INT_TYPE_SIZE
2245 || bitsize == LONG_TYPE_SIZE
2246 || bitsize == LONG_LONG_TYPE_SIZE)
2247 return true;
2248 return false;
2251 /* Initialize the compiler, and compile the input file. */
2252 static void
2253 do_compile ()
2255 process_options ();
2257 /* Don't do any more if an error has already occurred. */
2258 if (!seen_error ())
2260 int i;
2262 timevar_start (TV_PHASE_SETUP);
2264 if (flag_save_optimization_record)
2266 dump_context::get ().set_json_writer (new optrecord_json_writer ());
2269 /* This must be run always, because it is needed to compute the FP
2270 predefined macros, such as __LDBL_MAX__, for targets using non
2271 default FP formats. */
2272 init_adjust_machine_modes ();
2273 init_derived_machine_modes ();
2275 /* This must happen after the backend has a chance to process
2276 command line options, but before the parsers are
2277 initialized. */
2278 for (i = 0; i < NUM_INT_N_ENTS; i ++)
2279 if (targetm.scalar_mode_supported_p (int_n_data[i].m)
2280 && ! standard_type_bitsize (int_n_data[i].bitsize))
2281 int_n_enabled_p[i] = true;
2282 else
2283 int_n_enabled_p[i] = false;
2285 /* Initialize mpfrs exponent range. This is important to get
2286 underflow/overflow in a reasonable timeframe. */
2287 machine_mode mode;
2288 int min_exp = -1;
2289 int max_exp = 1;
2290 FOR_EACH_MODE_IN_CLASS (mode, MODE_FLOAT)
2291 if (SCALAR_FLOAT_MODE_P (mode))
2293 const real_format *fmt = REAL_MODE_FORMAT (mode);
2294 if (fmt)
2296 /* fmt->emin - fmt->p + 1 should be enough but the
2297 back-and-forth dance in real_to_decimal_for_mode we
2298 do for checking fails due to rounding effects then. */
2299 if ((fmt->emin - fmt->p) < min_exp)
2300 min_exp = fmt->emin - fmt->p;
2301 if (fmt->emax > max_exp)
2302 max_exp = fmt->emax;
2305 /* E.g. mpc_norm assumes it can square a number without bothering with
2306 with range scaling, so until that is fixed, double the minimum
2307 and maximum exponents, plus add some buffer for arithmetics
2308 on the squared numbers. */
2309 if (mpfr_set_emin (2 * (min_exp - 1))
2310 || mpfr_set_emax (2 * (max_exp + 1)))
2311 sorry ("mpfr not configured to handle all floating modes");
2313 /* Set up the back-end if requested. */
2314 if (!no_backend)
2315 backend_init ();
2317 /* Language-dependent initialization. Returns true on success. */
2318 if (lang_dependent_init (main_input_filename))
2320 /* Initialize yet another pass. */
2322 ggc_protect_identifiers = true;
2324 symtab->initialize ();
2325 init_final (main_input_filename);
2326 coverage_init (aux_base_name);
2327 statistics_init ();
2328 debuginfo_init ();
2329 invoke_plugin_callbacks (PLUGIN_START_UNIT, NULL);
2331 timevar_stop (TV_PHASE_SETUP);
2333 compile_file ();
2335 else
2337 timevar_stop (TV_PHASE_SETUP);
2340 timevar_start (TV_PHASE_FINALIZE);
2342 finalize (no_backend);
2344 timevar_stop (TV_PHASE_FINALIZE);
2348 toplev::toplev (timer *external_timer,
2349 bool init_signals)
2350 : m_use_TV_TOTAL (external_timer == NULL),
2351 m_init_signals (init_signals)
2353 if (external_timer)
2354 g_timer = external_timer;
2357 toplev::~toplev ()
2359 if (g_timer && m_use_TV_TOTAL)
2361 g_timer->stop (TV_TOTAL);
2362 g_timer->print (stderr);
2363 delete g_timer;
2364 g_timer = NULL;
2368 /* Potentially call timevar_init (which will create g_timevars if it
2369 doesn't already exist). */
2371 void
2372 toplev::start_timevars ()
2374 if (time_report || !quiet_flag || flag_detailed_statistics)
2375 timevar_init ();
2377 timevar_start (TV_TOTAL);
2380 /* Handle -fself-test. */
2382 void
2383 toplev::run_self_tests ()
2385 if (no_backend)
2387 error_at (UNKNOWN_LOCATION, "self-tests incompatible with %<-E%>");
2388 return;
2390 #if CHECKING_P
2391 /* Reset some state. */
2392 input_location = UNKNOWN_LOCATION;
2393 bitmap_obstack_initialize (NULL);
2395 /* Run the tests; any failures will lead to an abort of the process.
2396 Use "make selftests-gdb" to run under the debugger. */
2397 ::selftest::run_tests ();
2399 /* Cleanup. */
2400 bitmap_obstack_release (NULL);
2401 #else
2402 inform (UNKNOWN_LOCATION, "self-tests are not enabled in this build");
2403 #endif /* #if CHECKING_P */
2406 /* Entry point of cc1, cc1plus, jc1, f771, etc.
2407 Exit code is FATAL_EXIT_CODE if can't open files or if there were
2408 any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
2410 It is not safe to call this function more than once. */
2413 toplev::main (int argc, char **argv)
2415 /* Parsing and gimplification sometimes need quite large stack.
2416 Increase stack size limits if possible. */
2417 stack_limit_increase (64 * 1024 * 1024);
2419 expandargv (&argc, &argv);
2421 /* Initialization of GCC's environment, and diagnostics. */
2422 general_init (argv[0], m_init_signals);
2424 /* One-off initialization of options that does not need to be
2425 repeated when options are added for particular functions. */
2426 init_options_once ();
2427 init_opts_obstack ();
2429 /* Initialize global options structures; this must be repeated for
2430 each structure used for parsing options. */
2431 init_options_struct (&global_options, &global_options_set);
2432 lang_hooks.init_options_struct (&global_options);
2434 /* Init GGC heuristics must be caller after we initialize
2435 options. */
2436 init_ggc_heuristics ();
2438 /* Convert the options to an array. */
2439 decode_cmdline_options_to_array_default_mask (argc,
2440 CONST_CAST2 (const char **,
2441 char **, argv),
2442 &save_decoded_options,
2443 &save_decoded_options_count);
2445 /* Perform language-specific options initialization. */
2446 lang_hooks.init_options (save_decoded_options_count, save_decoded_options);
2448 /* Parse the options and do minimal processing; basically just
2449 enough to default flags appropriately. */
2450 decode_options (&global_options, &global_options_set,
2451 save_decoded_options, save_decoded_options_count,
2452 UNKNOWN_LOCATION, global_dc,
2453 targetm.target_option.override);
2455 handle_common_deferred_options ();
2457 init_local_tick ();
2459 initialize_plugins ();
2461 if (version_flag)
2462 print_version (stderr, "", true);
2464 if (help_flag)
2465 print_plugins_help (stderr, "");
2467 /* Exit early if we can (e.g. -help). */
2468 if (!exit_after_options)
2470 if (m_use_TV_TOTAL)
2471 start_timevars ();
2472 do_compile ();
2475 if (warningcount || errorcount || werrorcount)
2476 print_ignored_options ();
2478 if (flag_self_test)
2479 run_self_tests ();
2481 /* Invoke registered plugin callbacks if any. Some plugins could
2482 emit some diagnostics here. */
2483 invoke_plugin_callbacks (PLUGIN_FINISH, NULL);
2485 if (flag_diagnostics_generate_patch)
2487 gcc_assert (global_dc->edit_context_ptr);
2489 pretty_printer pp;
2490 pp_show_color (&pp) = pp_show_color (global_dc->printer);
2491 global_dc->edit_context_ptr->print_diff (&pp, true);
2492 pp_flush (&pp);
2495 diagnostic_finish (global_dc);
2497 finalize_plugins ();
2499 after_memory_report = true;
2501 if (seen_error () || werrorcount)
2502 return (FATAL_EXIT_CODE);
2504 return (SUCCESS_EXIT_CODE);
2507 /* For those that want to, this function aims to clean up enough state that
2508 you can call toplev::main again. */
2509 void
2510 toplev::finalize (void)
2512 rtl_initialized = false;
2513 this_target_rtl->target_specific_initialized = false;
2515 /* Needs to be called before cgraph_c_finalize since it uses symtab. */
2516 ipa_reference_c_finalize ();
2517 ipa_fnsummary_c_finalize ();
2518 ipa_modref_c_finalize ();
2520 cgraph_c_finalize ();
2521 cgraphunit_c_finalize ();
2522 symtab_thunks_cc_finalize ();
2523 dwarf2out_c_finalize ();
2524 gcse_c_finalize ();
2525 ipa_cp_c_finalize ();
2526 ira_costs_c_finalize ();
2528 /* save_decoded_options uses opts_obstack, so these must
2529 be cleaned up together. */
2530 obstack_free (&opts_obstack, NULL);
2531 XDELETEVEC (save_decoded_options);
2532 save_decoded_options = NULL;
2533 save_decoded_options_count = 0;
2535 /* Clean up the context (and pass_manager etc). */
2536 delete g;
2537 g = NULL;